From a37c87d9c8729aad2dffcb1af1b0e389a7917666 Mon Sep 17 00:00:00 2001 From: Alexander Hess Date: Fri, 5 Aug 2022 00:05:05 +0200 Subject: [PATCH] Add programming files - add the code files provided by the instructor - the programming/files folder with the data files is NOT included here due to its size - add a .gitignore file to exclude the data files' folder --- .gitignore | 1 + lectures/programming/README.md | 9 + .../Introduction_Container_Datatypes.py | 270 ++++ .../Introduction_Regular_Expressions.py | 447 ++++++ .../Introduction_SciKitLearn_20220327.py | 485 +++++++ .../introductions/NLTK_Sentence_Tokenizer.py | 52 + .../introductions/NLTK_introduction.py | 137 ++ .../Text_Introduction_Regular_Expressions.txt | 19 + .../introductions/regression_data_scikit.csv | 1201 +++++++++++++++++ .../solutions/Problem_10_Complex_Words.py | 76 ++ .../Problem_11_determine_file_size.py | 53 + .../Problem_12_Most_Frequent_Words.py | 167 +++ .../solutions/Problem_13_Stemming.py | 96 ++ .../Problem_14_Jaccard_Similarity.py | 287 ++++ .../Problem_17_Ridge_LASSO_text_data.py | 161 +++ .../solutions/Problem_1_Fun_with_Python.py | 121 ++ ...blem_2_SEC_Filings_Part1_Identification.py | 72 + .../Problem_2_SEC_Filings_Part2_Download.py | 95 ++ ...oblem_4_Application_Regular_Expressions.py | 144 ++ .../solutions/Problem_5_Clean_SEC_Filing.py | 209 +++ .../solutions/Problem_6_Clean_10-K_Sample.py | 356 +++++ .../solutions/Problem_7_Tone_Analysis.py | 114 ++ .../Problem_8_Tone_Analysis_Positive_Words.py | 130 ++ .../solutions/Problem_9_Words_per_Sentence.py | 111 ++ .../templates/NLTK_Sentiment_Analysis.py | 189 +++ .../Problem_11_determine_file_size_form.py | 55 + .../Problem_12_Most_Frequent_Words_form.py | 150 ++ .../templates/Problem_13_Stemming_form.py | 83 ++ .../Problem_14_Jaccard_Similarity_form.py | 101 ++ .../Problem_17_Ridge_LASSO_text_data_form.py | 159 +++ .../programming/templates/Problem_1_form.py | 88 ++ ...2_SEC_Filings_Part1_Identification_form.py | 72 + ...oblem_2_SEC_Filings_Part2_Download_form.py | 103 ++ ..._4_Application_Regular_Expressions_form.py | 121 ++ .../Problem_5_Clean_SEC_Filing_form.py | 164 +++ .../templates/Problem_7_Tone_Analysis_form.py | 117 ++ ...lem_8_Tone_Analysis_Positive_Words_form.py | 131 ++ .../Problem_9_Words_per_Sentence_form.py | 70 + 38 files changed, 6416 insertions(+) create mode 100644 .gitignore create mode 100644 lectures/programming/README.md create mode 100644 lectures/programming/introductions/Introduction_Container_Datatypes.py create mode 100644 lectures/programming/introductions/Introduction_Regular_Expressions.py create mode 100644 lectures/programming/introductions/Introduction_SciKitLearn_20220327.py create mode 100644 lectures/programming/introductions/NLTK_Sentence_Tokenizer.py create mode 100644 lectures/programming/introductions/NLTK_introduction.py create mode 100644 lectures/programming/introductions/Text_Introduction_Regular_Expressions.txt create mode 100644 lectures/programming/introductions/regression_data_scikit.csv create mode 100644 lectures/programming/solutions/Problem_10_Complex_Words.py create mode 100644 lectures/programming/solutions/Problem_11_determine_file_size.py create mode 100644 lectures/programming/solutions/Problem_12_Most_Frequent_Words.py create mode 100644 lectures/programming/solutions/Problem_13_Stemming.py create mode 100644 lectures/programming/solutions/Problem_14_Jaccard_Similarity.py create mode 100644 lectures/programming/solutions/Problem_17_Ridge_LASSO_text_data.py create mode 100644 lectures/programming/solutions/Problem_1_Fun_with_Python.py create mode 100644 lectures/programming/solutions/Problem_2_SEC_Filings_Part1_Identification.py create mode 100644 lectures/programming/solutions/Problem_2_SEC_Filings_Part2_Download.py create mode 100644 lectures/programming/solutions/Problem_4_Application_Regular_Expressions.py create mode 100644 lectures/programming/solutions/Problem_5_Clean_SEC_Filing.py create mode 100644 lectures/programming/solutions/Problem_6_Clean_10-K_Sample.py create mode 100644 lectures/programming/solutions/Problem_7_Tone_Analysis.py create mode 100644 lectures/programming/solutions/Problem_8_Tone_Analysis_Positive_Words.py create mode 100644 lectures/programming/solutions/Problem_9_Words_per_Sentence.py create mode 100644 lectures/programming/templates/NLTK_Sentiment_Analysis.py create mode 100644 lectures/programming/templates/Problem_11_determine_file_size_form.py create mode 100644 lectures/programming/templates/Problem_12_Most_Frequent_Words_form.py create mode 100644 lectures/programming/templates/Problem_13_Stemming_form.py create mode 100644 lectures/programming/templates/Problem_14_Jaccard_Similarity_form.py create mode 100644 lectures/programming/templates/Problem_17_Ridge_LASSO_text_data_form.py create mode 100644 lectures/programming/templates/Problem_1_form.py create mode 100644 lectures/programming/templates/Problem_2_SEC_Filings_Part1_Identification_form.py create mode 100644 lectures/programming/templates/Problem_2_SEC_Filings_Part2_Download_form.py create mode 100644 lectures/programming/templates/Problem_4_Application_Regular_Expressions_form.py create mode 100644 lectures/programming/templates/Problem_5_Clean_SEC_Filing_form.py create mode 100644 lectures/programming/templates/Problem_7_Tone_Analysis_form.py create mode 100644 lectures/programming/templates/Problem_8_Tone_Analysis_Positive_Words_form.py create mode 100644 lectures/programming/templates/Problem_9_Words_per_Sentence_form.py diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ea0f9b6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +lectures/programming/files diff --git a/lectures/programming/README.md b/lectures/programming/README.md new file mode 100644 index 0000000..0c24d45 --- /dev/null +++ b/lectures/programming/README.md @@ -0,0 +1,9 @@ +# Programming Files + +This folder holds various programming files provided by the instructor: +- introductions to programming techniques +- problem sets +- solutions for the problem sets + +In addition, the instructor provided various data files + that are too big to be stored in this repository. diff --git a/lectures/programming/introductions/Introduction_Container_Datatypes.py b/lectures/programming/introductions/Introduction_Container_Datatypes.py new file mode 100644 index 0000000..0952bb6 --- /dev/null +++ b/lectures/programming/introductions/Introduction_Container_Datatypes.py @@ -0,0 +1,270 @@ +# -*- coding: utf-8 -*- +""" +Created on Tue Jul 11 09:19:54 2017 + +@author: Alexander Hillert, Goethe University Frankfurt +This version: February 22, 2019 + +This is an introduction to two data containers: lists and counters. + +Python has several built-in data containers, e.g., sets, dictionaries, and lists +In addition to these containers, there are further types. +For textual analysis application counters are helpful. + +This introduction covers lists in the first part. +The second part introduces the basics of counters. +""" + +# for counters, you need to import collections +import collections +import re + +############################################################################### +# Introduction on data containers +############################################################################### + +################################# +# Part 1: lists +################################# +# Create an empty list +empty_list=[] + +# Create non-empty lists +string_list=["a", "b", "c"] +mixed_list=[1, "ab", -4,"hello"] + +print(mixed_list) + +# Call items of a list +print(string_list[0]) +print(string_list[2]) +print(string_list[-1]) + +# Length of a list +length=len(string_list) +print("The length of the list is: "+str(length)) + + +# ADD ITEMS TO A LIST +# ALTERNATIVE 1: insert -> you can specify the position +string_list.insert(1,"d") +# you cannot add multiple elements with the insert command +# You can try, but it will not work +# 1st try +string_list.insert(3,"e" "f") # -> the new element is "ef" +print(string_list) +# 2nd try +try: + string_list.insert(3,"e", "f") +except: + print("Wrong syntax. If the command were executed without the try-except "\ + "you would get the error TypeError: insert() takes exactly 2 arguments (3 given)'") +# 3rd try +string_list.insert(3, ["e", "f"]) +# check length +print("The length of the list is: "+str(len(string_list))) # -> only 6 and not 7 +print(string_list[3]) +# So element 3 of the list is another list +# You can call the elements of the sub-list +print("First element of sub list: "+string_list[3][0]+" and second element of \ + sub list: "+string_list[3][1]) + +# Reset string_list to keep things easily tractable +string_list=["a", "b", "c"] + +# ALTERNATIVE 2: append -> items are added at the end +string_list.append("d") + +# Try to add multiple items +# 1st try +string_list.append("e" "f") # -> the new element is "ef" +print(string_list) +# 2nd try +try: + string_list.append("e", "f") +except: + print("Wrong syntax. If the command were executed without the try-except "\ + "you would get the error 'TypeError: append() takes exactly one argument (2 given)'") +# 3rd try +string_list.append(["e", "f"]) +# check length +print("length of list is "+str(len(string_list))) # -> only 6 and not 7 +print(string_list[len(string_list)-1]) +# -> element 3 of the list is another list +# You can call the elements of the sub-list +print("First element of sub list: "+string_list[len(string_list)-1][0]+" and \ + second element of sub list: "+string_list[len(string_list)-1][1]) + +# Reset string_list to keep things easily tractable +string_list=["a", "b", "c"] + +# ALTERNATIVE 3: extend -> items are added at the end +string_list.extend("d") + +# Try to add multiple items +# 1st try +string_list.extend("e" "f") # -> Two elements are created -> works!!! +print(string_list) +# 2nd try +try: + string_list.extend("e", "f") +except: + print("Wrong syntax. If the command were executed without the try-except "\ + "you would get the error 'TypeError: extend() takes exactly one argument (2 given)'") +# 3rd try +string_list.extend(["e", "f"]) +print(string_list) # -> also works!!! +# check length +print("length of list is "+str(len(string_list))) # -> it is 8 and should be 8 + + +# DELETE ITEMS FROM A LIST +string_list.remove("a") +print("List after deletion of 'a' "+str(string_list)) +# What happens if an element occurs multiple times +string_list.remove("e") +print("List after further deletion of 'e' "+str(string_list)) +# --> only first occurence of "e" is deleted + + +# FURTHER OPERATIONS WITH LISTS +# Accessing parts of a list +# Remember the first element is [0]! And the upper bound of the range is not +# included, i.e. [0:3] means [0], [1] and [2]. +print("Sublist from beginning to third element: "+str(string_list[0:3])) +print("Sublist from beginning to third element: "+str(string_list[:3])) +print("Sublist from second(!) to third element: "+str(string_list[1:3])) +print("Sublist from fourth(!) to fifth element: "+str(string_list[3:5])) +print("Sublist from fifth(!) to the end: "+str(string_list[4:])) + +# Search in lists +position=string_list.index("b") +print("Position of 'b' is: "+str(position)) +# Searching for an element that is not part of the list +try: + string_list.index("a") +except: + print("Error message. If the command were executed without the try-except "\ + "you would get the error 'ValueError: 'a' is not in list'") +if "c" in string_list: + print("'c' is at position: "+str(string_list.index("c"))) + +# Sort list +string_list.sort() +print('Sorted list: '+str(string_list)) +string_list.sort(reverse=True) +print('Reversely sorted list: '+str(string_list)) + +# What happens when sorting mixed (i.e. integers and strings) lists? +try: + mixed_list.sort() +except: + print("Error message. If the command were executed without the try-except "\ + "you would get the error 'TypeError: unorderable types: str() < int()'") + + +################################# +# Part 2: counters +################################# +''' +A Counter is a dictionary subclass for counting hashable objects. +It is an unordered collection where elements are stored as dictionary keys and +their counts are stored as dictionary values. +''' +# Creating a counter +counter_obj=collections.Counter(["a", "b", "c", "d", "a", "b", "a"]) +print('The counter object is: '+str(counter_obj)) +# The previous command is equivalent to +counter_obj=collections.Counter(a=3, b=2, c=1, d=1) +print('The counter object (2nd command) is: '+str(counter_obj)) + +# Add objects to a counter +counter_obj.update(["e", "f", "e"]) +print('The updated counter object is: '+str(counter_obj)) +# Alternative command +counter_obj["g"]=4 +print('The updated updated counter object is: '+str(counter_obj)) + +# Length of the counter +length=len(counter_obj) +print('The length of the counter is: '+str(length)) + +# Loop over the elements of the counter and their frequency +i=1 +for element in counter_obj: + print("Element "+str(i)+" of the counter: "+str(element)) + print("Frequency of Element "+str(i)+" of the counter: "+str(counter_obj[element])) + i=i+1 + +# .elements() provides an iterator of all individual elements of the counter +counter_elements=list(counter_obj.elements()) +print('Elements of the counter: '+str(counter_elements)) + +# APPLY COUNTERS TO TEXTS +sentence1="This is the first sentence." +sentence2="This is the second sentence, which is longer." + +# Split sentences in words +sentence1_words=re.split("\W{1,}", sentence1) +print("The last element is: "+str(sentence1_words[len(sentence1_words)-1])) +# The last element is empty -> delete it. +sentence1_words.remove("") +print("The last element is: "+str(sentence1_words[len(sentence1_words)-1])) +# -> now okay +sentence2_words=re.split("\W{1,}", sentence2) +print("The last element is: "+str(sentence2_words[len(sentence2_words)-1])) +# The last element is empty -> delete it. +sentence2_words.remove("") +print("The last element is: "+str(sentence2_words[len(sentence2_words)-1])) +# -> now okay + +# Counter words +sentence1_counter=collections.Counter(sentence1_words) +sentence2_counter=collections.Counter(sentence2_words) + +print(sentence1_counter) +print(sentence2_counter) + +# OPERATIONS WITH COUNTERS +# add counters +add_counters=sentence1_counter+sentence2_counter +print("You can add counters: "+str(add_counters)) + +# subtract counters +subtract_counters=sentence1_counter-sentence2_counter +print("You can subtract counters: "+str(subtract_counters)) +# Each time a new Counter is produced through an operation, any items with zero +# or negative counts are discarded. --> only first appears in subtract_counters + +# Intersection of counters +intersection_counters=sentence1_counter & sentence2_counter +print("You can determine the intersection of counters: "+str(intersection_counters)) +# -> takes the minimum of occurences; again elements with zero frequency +# are not included. + +# Union of counters +union_counters=sentence1_counter | sentence2_counter +print("You can determine the union of counters: "+str(union_counters)) +# -> takes the maximum of occurences + +# MOST FREQUENT WORDS +# Determine the three most frequent words in the add_counters set. +top_3_words=add_counters.most_common(3) +print("The top 3 words are: "+str(top_3_words)) + +# Identify the two most frequent words with the top 4 words in the add_counters sample. +top_4_words=add_counters.most_common(4) +# The first [] refers to the line, i.e. is it the second common, second most +# frequent word. +# The second[] refers either to the word itself [0] or to the frequency of the word [1]. +# the most frequent word +top_word=top_4_words[0][0] +top_word_count=top_4_words[0][1] +print("The top word is '"+str(top_word)+"', which appears "+str(top_word_count)+" times") +# the second most frequent word +top_2_word=top_4_words[1][0] +top_2_word_count=top_4_words[1][1] +print("The second most frequent word is '"+str(top_2_word)+"', which appears "+str(top_2_word_count)+" times") + + +print("Completed") diff --git a/lectures/programming/introductions/Introduction_Regular_Expressions.py b/lectures/programming/introductions/Introduction_Regular_Expressions.py new file mode 100644 index 0000000..99a9643 --- /dev/null +++ b/lectures/programming/introductions/Introduction_Regular_Expressions.py @@ -0,0 +1,447 @@ +# -*- coding: utf-8 -*- +""" +INTRODUCTION TO REGULAR EXPRESSION + +@author: Alexander Hillert, Goethe University Frankfurt +This version: June 3, 2019 + +What are regular expressions? + +Regular expressions allow you to search for general patterns in texts. The +standard string commands like .count("search_term") and .replace("old_word","new_word") +can only count and replace one specific word, respectively. They cannot search +for general patterns like all words that consist of three or more letters. +Assume that you want to identify all numbers in a text or that you search for +the year of birth in bios of corporate executives. In the examples, you need a +search tool that can process broad patterns --> you need regular expressions. +Consider the second example, i.e. you would like to automatically identify +people's year of birth from their bios. You know that the number must have four +digits and that the first two digits must equal 19. Of course, you could +hardcode all possible years (1900, 1901, ..., 1999), but this is unnecessarily +complicated and slows down the program. Therefore, it is better to learn +how to use regex. + +Useful online resources: +1. https://regex101.com/ +On this webpage, you can enter a text and a regular expression. +The webpage highlights the matches and provides explanations for +every part of the regex pattern. +Caution: click on "Python" in the left menu (the default language is php)! + +2. https://docs.python.org/3/library/re.html +The offical documentation of regular expression in Python 3. + +""" + +# To be able to use regular expressions you need to import the re package first. +import re + +# Select the directory where you saved the accompanying txt-file. +directory="C:/Lehre/Textual Analysis/Programming/Files/" + + +# In this introduction, we use the accompanying txt-file "Text_Introduction_Regular_Expressions.txt" +# open the file +text_file=open(directory+'Text_Introduction_Regular_Expressions.txt','r',encoding='cp1252') +# read its content +text=text_file.read() + +# Let's start with the example from the beginning and search for people's years of birth. +# The standard search command for regular expressions is re.search. It searches +# for the FIRST match of the expression in the text. +# First try +match=re.search("19[0-9]{2}",text) +# This command searches for four digits of which the first is a 1, the second a 9, +# and then there are two further digits which can be any digits. +# [0-9] refers to any digit. Equivalently, you can write \d which also refers +# to any digits. +# The {2} specifies that there must be exactly to digits. + +print(match) +# match contains information on the match: +# span is the position in text where the match starts and ends; here 226 and 230 +# furthermore, the matched text is shown. Here, the first match is 1956. +# You can use the positions to print the text before the match, after the match, +# and, of course, of the matched text. +start=match.start() +end=match.end() +print("From beginning of the document to the match: \n"+text[:start]+"\n\n") +print("The match itself: \n"+text[start:end]+"\n\n") +print("From end of match to end of document: \n"+text[end:]+"\n\n") + +# To access the match, you can also use the command .group(0): +print("Alternative way to access the matched text: \n"+match.group(0)+"\n\n") + +# CAUTION +# If no match is found the variable match does not exist. +# Example: search for a ten digit number that start with 19 +match=re.search("19[0-9]{8}",text) +# The command start=match.start() returns the follwoing error: +# "AttributeError: 'NoneType' object has no attribute 'start'" +# SOLUTION +match=re.search("19[0-9]{8}",text) +if match: + # match found, the start .start() is now conditional on the existence of match + start=match.start() + print("Match found. Starting at position "+str(start)) +else: + # no match found + print("No match found") + +''' +Information on Syntax, Special Characters in Regular Expression + +Character Meaning +[] Indicates a set of characters +\[ Matches the actual [ +\] Matches the actual ] +^ negation; the symbols listed afterwards are not allowed in the match + E.g., [^0-9] will not match any numbers but all other symbols. +\d Any digit, i.e. 0, 1, 2, ..., 9. Equivalent to [0-9] +\n Linefeed/newline, the start of a new line. +\s Any whitespace, i.e. a tab, a space. + CAUTION: \s matches also the newline (\n). This property of \s + can lead to unintended matches. + RECOMMENDATION: to match whitespaces only use [ \t], i.e. a space + and a tab (\t). +\S Any non-whitespace symbol. +. Any character (digit, letter, symbol [!,?,%,etc.], spaces) but + NOT the newline, \n. +\. Matches the actual dot. +\w Matches word characters, i.e. [0-9a-zA-Z_] + The underscore (_) is defined to be a word character. +\W Matches any non-word characters, i.e. [^0-9a-zA-Z_] +| Or condition (for an example see line 272) +() Like in math: parentheses indicate which characters of an expression + belong togehter. (For an example see line 272.) +\( Matches the actual ( +\) Matches the actual ) + +(?i) Performs the regex case-insensitive. Must be put at the beginning + of the regex. E.g. re.search("(?i)TeSt",text) will match + TEST, test, Test, etc. +re.IGNORECASE Performs the regex case-insensitive. Must be put at the end of + the regex as an option. E.g. re.search("test",text,re.IGNORECASE) +''' +# Examples of character sets +# 1. [0-9]: numbers +match=re.search("[0-9]","ABC abc 123") +print(match) +#2. [a-z]: any lower case letter +match=re.search("[a-z]","ABC abc 123") +print(match) +#3. [A-Z]: any upper case letter +match=re.search("[A-Z]","ABC abc 123") +print(match) +#4. [cde]: lower case letters c, d, and e. +match=re.search("[cde]","ABC abc 123") +print(match) +#5. [^A-Zab]: all symbols except captial letters and a and b. +match=re.search("[^A-Zab]","ABC abc 123") +print(match) +# you don't see any character because the match is the first white space before abc + + +''' +Quantifiers for regular expression: +n and m refer to non-negative integers (0, 1, 2, ...), where m>n +Quantifier Meaning +{n} The preceding pattern must be found EXACTLY n times. +{n,} The preceding pattern must be found AT LEAST n times. +{,n} The preceding pattern must be found AT MOST n times. +{n,m} The preceding pattern must be found AT LEAST n but AT MOST m times. +{n,}? The ? tells the regex not to be "greedy" (see lines 211 for details) + +There are alternative notations for commonly used quantifiers: +* is equivalent to {0,}, i.e. 0 or more repetitions of the preceding pattern. ++ is equivalent to {1,}, i.e. 1 or more repetitions of the preceding pattern. +? is equivalent to {0,1}, i.e. 0 or 1 repetition of the preceding pattern. +''' + +# re.search() returns only the first match: How to get all matches? +# Alternative 1: use a loop. +text1=text +i=1 +match=re.search("19[0-9]{2}",text1) +# Repeat the following commands until no more matches are found. +while match: + print("This is match number "+str(i)+": "+match.group(0)) + # Check whether there are further matches after the end of the previous match + end=match.end() + text1=text1[end:] + match=re.search("19[0-9]{2}",text1) + i=i+1 + +# Alternative 2: use re.findall +# The syntax is identical to re.search +list_of_matches=re.findall("19[0-9]{2}",text) +print(list_of_matches) +# the individual matches can be called by list_of_matches[i], where i ranges +# from zero to the number of matches minus one. +# Remember: the first element of a list has the position 0 +for i in range(0,len(list_of_matches)): + print("This is match number "+str(i+1)+" using the re.findall command: "+list_of_matches[i]) + + +# When you read the text you will observe that there are only six years of birth +# in the text and not eight -> there are two mismatches -> adjust filter to +# get only the years of birth and not all years. +text1=text +i=1 +# Check whether the word born appears before the year. The distance between +# born and the year must be smaller or equal 15 (plus the two white spaces) +match=re.search("born .{,15} 19[0-9]{2}",text1) +while match: + print("This is match number "+str(i)+": "+match.group(0)) + # Extract the year + match1=re.search("19[0-9]{2}",match.group(0)) + print("The year of match number "+str(i)+" is: "+match1.group(0)) + # Check whether there are further matches after the end of the previous match + end=match.end() + text1=text1[end:] + match=re.search("born .{,15} 19[0-9]{2}",text1) + i=i+1 + + +# The quantifiers introduced above are "greedy". For example, if a pattern matches overlapping +# text parts of different length, the regex will return the longest match. +# Example: search for the first sentence in a text. You know that sentences +# end with period in this example. +text2="This is the first senctence. This is the second sentence. And so on" +# Search for a positive number of occurances of characters followed by a period. +# Remeber that the dot is \. in regex. The . will match any character. +match=re.search(".{1,}\.",text2) +print(match.group(0)) +# -> the regex returns the first and second sentence. +# To get the first match that fulfils the regex, put a ? after the quantifiers. +# This makes the quantifier "non-greedy", and only the first occurance will be matched. +match=re.search(".{1,}?\.",text2) +print(match.group(0)) + +# You will often have situations where there are multiple versions of the same +# pattern. How can you include all of them in one regular expression? +# Example 1: search for the word "losses" in the following sentence: +text3="X Corp's soda division returned significant losses in the last quarter. Losses will be reduced this quarter." +# the first letter of "loss" can be upper or lower case +print("Example 1: Loss and loss") +text4=text3 +i=1 +# A set of characters [] is matched if at least one of the components of the +# set is found in the text. This works only for a single letter/number/symbol +# but not for sequences of multiple letters/numbers/symbols. +match=re.search("[Ll]oss",text3) +while match: + end=match.end() + print("This is match number "+str(i)+": "+match.group(0)) + # Check whether there are further matches after the end of the previous match + text4=text4[end:] + match=re.search("[Ll]oss",text4) + i=i+1 + +# Alternatively +list_of_matches=re.findall("[Ll]oss",text3) +print("Alternative using re.findall: "+str(list_of_matches)) + +# In this example, you could also simply perform a case-insensitive match. +print("Case-INsensitive matching using re.IGNORECASE") +text4=text3 +i=1 +match=re.search("loss",text3,re.IGNORECASE) +while match: + end=match.end() + print("This is match number "+str(i)+": "+match.group(0)) + # Check whether there are further matches after the end of the previous match + text4=text4[end:] + match=re.search("loss",text4,re.IGNORECASE) + i=i+1 +# Or equivalently +print("Case-INsensitive matching using (?i)") +text4=text3 +i=1 +match=re.search("(?i)loss",text3) +while match: + end=match.end() + print("This is match number "+str(i)+": "+match.group(0)) + # Check whether there are further matches after the end of the previous match + text4=text4[end:] + match=re.search("(?i)loss",text4) + i=i+1 + + +# Example 2: search for the expressions "profits declined" and "profits decreased" +# in the following sentence: +text3="X Corp's profits declined in 2010, while Y Inc.'s profits decreased the year before." +# Here, [] no longer works because we need to match terms consisting of several +# characters and [] matches only one character. -> use the OR-operator | +print("Example 2: profits declied and profits decreased - First try") +text4=text3 +i=1 +match=re.search("profits declined|decreased",text3) +while match: + print("This is match number "+str(i)+": "+match.group(0)) + # Check whether there are further matches after the end of the previous match + end=match.end() + text4=text4[end:] + match=re.search("profits declined|decreased",text4) + i=i+1 +# Problem: regex interprets the entire set of characters before the | as one +# alternative. +# Solution: use parantheses to define the boundaries. + +print("Example 2: profits declied and profits decreased - Second try") +text4=text3 +i=1 +match=re.search("profits (declined|decreased)",text3) +while match: + print("This is match number "+str(i)+": "+match.group(0)) + # Check whether there are further matches after the end of the previous match + end=match.end() + text4=text4[end:] + match=re.search("profits (declined|decreased)",text4) + i=i+1 + +# Alternative: does re.findall work? +list_of_matches=re.findall("profits (declined|decreased)",text3) +print(list_of_matches) +# -> No! Because there is a major difference between re.search and re.findall +# in the way they treat parantheses (). +# re.search follows the general regular expression syntax that is also used in +# other programming languages. +# To use re.findall you have to write down the full text before and after the |. +list_of_matches=re.findall("profits declined|profits decreased",text3) +print(list_of_matches) + + +# More information on the difference between re.search and re.findall +# Example 3: let's search for the numbers in the second part of the txt file +# and compare what the two commands do. +# Get the second part +match=re.search("Here are some numbers:",text) +text4=text[match.end():] +print(text4) +match=re.search("[0-9]{1,}([0-9]{3}|,){0,}\.{0,1}[0-9]{0,}",text4) +# What are the individual parts of this pattern? +# [0-9]{1,} There has to be at least one digit. +# ([0-9]{3}|,){0,} The first digit can be followed by combinations of three +# digits and commas (as thousand separator). +# \.{0,1} There can be zero or one period as decimal separator. +# [0-9]{0,} There can be multiple decimal places. + +i=1 +while match: + print("This is match number "+str(i)+": "+match.group(0)) + # Check whether there are further matches after the end of the previous match + end=match.end() + text4=text4[end:] + match=re.search("[0-9]{1,}([0-9]{3}|,){0,}\.{0,1}[0-9]{0,}",text4) + i=i+1 + +# Can we obtain the same result by using re.findall? +match=re.search("Here are some numbers:",text) +text4=text[match.end():] +list_of_matches=re.findall("[0-9]{1,}([0-9]{3}|,){0,}\.{0,1}[0-9]{0,}",text4) +print(list_of_matches) +# Does not work! +# One has to put "?:" in the part that captures the repetition of the thousands. +# This tells re.findall to return the full match and not subpatterns. +list_of_matches=re.findall("[0-9]{1,}(?:[0-9]{3}|,){0,}\.{0,1}[0-9]{0,}",text4) +print(list_of_matches) + +# TAKE AWAY: The matching of re.findall does not always match that of re.search +# Be careful when using re.findall!!! + + +# How to delete or substitute parts of texts? +# Alternative 1: identify the beginning and end of the matched text part and +# remove it from the overall text. +# Example delete all numbers in the text +text4=text +print("Original Text:\n"+text4) +match=re.search("[0-9]{1,}(,[0-9]{3}){0,}(\.[0-9]{1,}){0,1}",text4) +while match: + # Remove the match + text4=text4[:match.start()]+text4[match.end():] + # Check whether there are further matches in the remaining text + match=re.search("[0-9]{1,}(,[0-9]{3}){0,}(\.[0-9]{1,}){0,1}",text4) +print("Text without numbers using re.search:\n"+text4) + +# Alternative 2: use re.sub (sub -> substitute) +# syntax: new_text=re.sub(pattern, replacement, old_text) +# replacement is some string. Regular expressions are only allowed in the pattern +# but not in the replacement. +text4=text +text4=re.sub("[0-9]{1,}(,[0-9]{3}){0,}(\.[0-9]{1,}){0,1}","",text4) + +print("Text without numbers using re.sub:\n"+text4) +# re.sub is the more efficient way. +# Furthermore, re.sub can not only delete text but also replace text. +# Example +text4=text +text4=re.sub("[0-9]{1,}(,[0-9]{3}){0,}(\.[0-9]{1,}){0,1}","NUMBER",text4) +print("Text where numbers are replaced by the word 'NUMBER':\n"+text4) + + +# Make sure you get the right match --> importance of word boundaries. +# When you search for a word it can happen that the word is part of a different +# longer word. For example, searching for "high" would also match "highlight". +# To avoid such mismatches you can either include word boundaries in the search +# (Alternative 1) or split the text first by word boundaries into single words +# and perform standard string search operations afterwards (Alternative 2). +# Alternative 2 does not return the individual matches but tells you for example +# the number of matches +# Example: search for the word "is" +# Alternative 1: +match=re.search("is",text) +print("Searching without word boundaries yields: '"+match.group(0)+\ +"' But the surrounding text is: '"+text[match.start()-1:match.end()+1]+"'") +match=re.search("\Wis\W",text) +print("Searching with word boundaries yields: '"+match.group(0)+\ +"' and the surrounding text is: '"+text[match.start()-1:match.end()+1]+"'") +# You see that the preceding and subsequent word boundaries are also matched +# and saved as the matched term. However, often you want the match to include only +# the actual word without its boundaries. +# Solution: use so called "look ahead" and "look back" conditions. + +''' +Look ahead and look behind/back conditions + +Regex requires that the parts of the pattern that are classified as look ahead +or look back/behind are present in the text but does not include them in the match. + +Syntax: +positive look ahead: (?=) Example: X(?=\W) requires that there is a word + boundary after X +negative look ahead: (?!) Example: X(?!\W) requires that there must NOT + be a word boundary after X. +positive look back: (?<=) Example: (?<=\W)X requires that there is a word + boundary before X +negative look back: (? Yes, the approach also work with re.findall. + +# Alternative 2: +# Use re.split(), which is similar to split() but more powerful. +text_split=re.split("\W",text) +print(text_split) +# Problem: there are elements in the list that are not words, e.g. ''. These +# elements are created because there can be a series of non-word characters (\W), +# e.g. ' (' in 'Balmer (born'. +# Solution: treat a series of wordboundaries \W as a single split character +text_split=re.split("\W{1,}",text) +print(text_split) +# Now, you do not need to include word boundaries and can use standard string +# operations. +number_matches=text_split.count("is") +print("Using standard string operations, we get "+str(number_matches)+" matches.") +# -> same result. diff --git a/lectures/programming/introductions/Introduction_SciKitLearn_20220327.py b/lectures/programming/introductions/Introduction_SciKitLearn_20220327.py new file mode 100644 index 0000000..28b886c --- /dev/null +++ b/lectures/programming/introductions/Introduction_SciKitLearn_20220327.py @@ -0,0 +1,485 @@ +# -*- coding: utf-8 -*- +""" +Created on Mon Mar 21 09:38:32 2022 + +@author: Alexander Hillert, Goethe University Frankfurt +""" + +''' +This script introduces you to linear models using the sklearn package. +Besides sklearn, we will use pandas to work with data sets as well as +numpy to perform computations. + +The introduction consists of 10 parts: +1. linear regressions using a toy data set +2. linear regressions using a "real" data set +3. linear regressions using standardized variables +4. Ridge regression basics +5. Ridge regression with training, tuning, and testing sample +6. Ridge regression with cross-validation +7. LASSO regression basics +8. LASSO regression with training, tuning, and testing sample +9. LASSO regression with cross-validation +10. Compare the results from Ridge and LASSO + +''' + +import pandas as pd +import numpy as np +# For OLS regressions +from sklearn.linear_model import LinearRegression +# for Ridge regressions +from sklearn.linear_model import Ridge +# for computing mean squared errors +from sklearn.metrics import mean_squared_error +# for plotting the MSEs for different levels of Lambda +import matplotlib.pyplot as plot +# for Ridge regressions with cross-validation +from sklearn.linear_model import RidgeCV +# for LASSO regressions +from sklearn.linear_model import Lasso +# for LASSO regressions with cross-validation +from sklearn.linear_model import LassoCV + +# adjust the directory to your folder!!! +directory="C:/Lehre/Machine Learning/Data/" + +############################################################ +# Part 1. Basics: linear regressions in Python using sklearn +############################################################ +print("\nPart 1: Run an OLS regression on a sandbox data set\n") + +# create a random number from a normal distribution with mean 0 and standard deviation 1. +random_number=np.random.normal(0, 1) +print("A random number is: "+str(random_number)) + +# you can also create a vector or matrix of random variables +# the parameter size(# of rows, # of columns) specifies the number rows and columns +# For example, a (10,1) vector +random_number_vector=np.random.normal(0, 1, size=(10,1)) +print("The vector of random numbers is:") +print(random_number_vector) + +# create the independent variable x as a vector of random numbers +x_vector=np.random.normal(0, 1, size=(10,1)) +print("The vector of the independent variable x is:") +print(x_vector) + +# create the dependent variable y as +# y = 2x + epsilon, where epsilon is the random error term from above +y_vector=np.dot(x_vector,2) + random_number_vector +print("The vector of the dependent variable y is:") +print(y_vector) + +# perform a standard OLS regression with intercept. +# The command takes x (independent variable(s)) first and then y (dependent variable) +# Note that the default is that the intercept is included. So, strictly speaking, +# the (fit_intercept=True) option is not needed. +regression_1=LinearRegression(fit_intercept=True).fit(x_vector, y_vector) + +# display the intercept and the beta coefficient on x +print("The intercept is: "+str(regression_1.intercept_)) +# to get it as a scalar/number not an array, use +regression_1.intercept_[0] + +print("The coefficient on x is: "+str(regression_1.coef_)) +# to get it as a scalar/number not an array, use +regression_1.coef_[0][0] + +# R2 of the regression +print("The R2 is: "+str(regression_1.score(x_vector, y_vector))) + + +############################################################### +# Part 2: linear regression using a "real" data set +############################################################### +print("\nPart 2: Run an OLS regression with a real data set\n") + +# import the data for this problem +# The data set consists of 200 independent variables (x1 to x200) and +# a dependent variable (y). +# There are 1,200 observations in total. In the later parts, we will +# use the first 1,000 observations for training and the last 200 for testing. +# The data are simulated using the following process: +# y = 0.5*x1 + 0.5*x2 + ... + 0.5*x100 + random error (mean 0, std. dev. 4) +# The x101 to x200 are not directly related to y but are correlated with +# the x1 to x100. More specifically, +# x101 = 0.7*x1 + random error (mean 0, std. dev. 1) +# x102 = 0.7*x2 + random error (mean 0, std. dev. 1) +# x200 = 0.7*x100 + random error (mean 0, std. dev. 1) +data_frame=pd.read_csv(directory+"regression_data_scikit.csv",sep=";") + +# to get any idea about the data, display the first five data points +data_frame.head(5) + +# split the data frame into the independent and dependent variables +# the independent variables(x1 to x200) are columns 1 to 200 +x_variables=data_frame.values[:,:-1] +# the dependent variable (y) is column 201 +y_variable=data_frame.values[:,-1:] + +# run a standard OLS regression +regression_OLS=LinearRegression(fit_intercept=True).fit(x_variables, y_variable) +# You can double check the results by reruning the regression in Stata or R. + +# display the intercept and the beta coefficients on x1 and x51 +print("The intercept is: "+str(regression_OLS.intercept_[0])) +print("The coefficient on x_1 is: "+str(regression_OLS.coef_[0][0])) +print("The coefficient on x_51 is: "+str(regression_OLS.coef_[0][50])) + +# R2 of the regression +print("The R2 is: "+str(regression_OLS.score(x_variables, y_variable))) + + +################################################################## +# Part 3: standardize the data to have mean zero and unit variance +# and rerun the regression +################################################################## +print("\nPart 3a.: Standardize variables\n") + +# standardize x and y to have mean zero and unit variance +# axis=0 (axis=1) means that the computation is executed column (row) wise +x_variables_mean=np.mean(x_variables,axis=0) +# ddof=1 means that we use n-1 to compute the standard deviation +x_variables_standard_deviation=np.std(x_variables, axis=0, ddof=1) +x_variables_standardized=(x_variables-x_variables_mean)/x_variables_standard_deviation + +# do the same exercise for y +y_variable_mean=np.mean(y_variable,axis=0) +y_variable_standard_deviation=np.std(y_variable, axis=0, ddof=1) +y_variable_standardized=(y_variable-y_variable_mean)/y_variable_standard_deviation + +# rerun the regression using standardized data +regression_OLS_standardized=LinearRegression(fit_intercept=True).fit(x_variables_standardized, y_variable_standardized) +# results are identical to a regression in Stata with beta coefficients. + +# display the intercept and the beta coefficients on x_1 and x_51 +print("The intercept is: "+str(regression_OLS_standardized.intercept_[0])) +print("The coefficient on x_1 is: "+str(regression_OLS_standardized.coef_[0][0])) +print("The coefficient on x_51 is: "+str(regression_OLS_standardized.coef_[0][50])) + +# R2 of the regression +print("The R2 is: "+str(regression_OLS_standardized.score(x_variables_standardized, y_variable_standardized))) +# The R2 is identical to the one from Part 2 -> good! + +####################################################################################### +# CAUTION: be careful using the "normalize=True" option in the LinearRegression module! +####################################################################################### +print("\nPart 3b.: Regression with 'normalization'\n") +# Normalizer works on the rows, not the columns! +# By default, L2 normalization is applied to each observation so that the +# values in a row (!) have a unit norm. Unit norm with L2 means that if each +# element were squared and summed, the total would equal 1. +regression_OLS_normalized=LinearRegression(fit_intercept=True,normalize=True).fit(x_variables, y_variable) + +# display the intercept and the beta coefficient on x_1 and x_51 +print("The intercept is: "+str(regression_OLS_normalized.intercept_[0])) +print("The coefficient on x_1 is: "+str(regression_OLS_normalized.coef_[0][0])) +print("The coefficient on x_51 is: "+str(regression_OLS_normalized.coef_[0][50])) +# The coefficients are different from the ones above highlighting that the +# "normalize=True" option does not do the same as "normal" standardizing +# R2 of the regression +print("The R2 is: "+str(regression_OLS_normalized.score(x_variables, y_variable))) + + +####################################################################### +# Part 4: Ridge regression on the full sample (no training and testing) +# This part is to learn the syntax. +# We are using the standardized variables to have the same penalty +# for a given effect of x on y. +# Remember: if the independent variables are measured on very different +# scales, the beta coefficients have different sizes (e.g., market cap in +# thousand USD vs. past stock returns as a decimal number) and, thus, +# the panelty would be applied inconsistently. +####################################################################### +print("\nPart 4: Ridge regression - learning the syntax\n") + +# the parameter alpha corresponds to the penalty parameter Lambda from +# the notation that is typically used. +# the default is that the intercept is included, so you do not need the +# "intercept=True" parameter. But it is good to keep in mind what +# specification you are using. +regression_Ridge=Ridge(alpha=10,fit_intercept=True).fit(x_variables_standardized, y_variable_standardized) + +# display the intercept and the beta coefficient on x1 and x51 +print("The intercept is: "+str(regression_Ridge.intercept_[0])) +print("The coefficient on x_1 is: "+str(regression_Ridge.coef_[0][0])) +print("The coefficient on x_51 is: "+str(regression_Ridge.coef_[0][50])) + +# R2 of the regression +print("The R2 is: "+str(regression_Ridge.score(x_variables_standardized, y_variable_standardized))) + +# How to compute the mean squared error (MSE)? +# 1. get the predicted values +y_variable_standardized_predicted=regression_Ridge.predict(x_variables_standardized) +# 2. determine the MSE +print("The MSE of the prediction is: "+str(mean_squared_error(y_variable_standardized, y_variable_standardized_predicted))) + + +####################################################################### +# Part 5: Ridge regression using a training, tuning, and testing sample +####################################################################### +print("\nPart 5: Ridge regression - Application with training, tuning, and testing data\n") + +# Create a training, tuning, and testing sample +# we split the data into a training, a tuning, and a testing set +# training data are the frist 800 rows +# In the brackets, the first range (before the comma) indicates the rows, the second the columns. +x_variables_std_train=x_variables_standardized[:800,:] +y_variable_std_train=y_variable_standardized[:800,:] +# the tuning data are row 801 to 1000 -> 200 observations +x_variables_std_tune=x_variables_standardized[800:1000,:] +y_variable_std_tune=y_variable_standardized[800:1000,:] +# testing data are the last 200 rows +x_variables_std_test=x_variables_standardized[1000:,:] +y_variable_std_test=y_variable_standardized[1000:,:] + + +########################## +# find the optimal Lambda +########################## +# we store the MSE of the training/tuning data for each Lambda +mse_train_list=[] +mse_tune_list=[] +# Again, Lambda and Alpha refer to the same thing. +alpha_list=[] + +# we iterate from 0.1 to 100 increasing Lambda=Alpha by 0.1 in each step. +alpha=0.1 +while alpha<100: + # train the model + regression_Ridge_train=Ridge(alpha=alpha,fit_intercept=True).fit(x_variables_std_train, y_variable_std_train) + # add the alpha to the list of alphas + alpha_list.append(alpha) + # predict y in the training sample + y_variable_std_train_predicted=regression_Ridge_train.predict(x_variables_std_train) + # predict y in the tuning sample + y_variable_std_tune_predicted=regression_Ridge_train.predict(x_variables_std_tune) + # compute the MSE in both samples + mse_train=mean_squared_error(y_variable_std_train, y_variable_std_train_predicted) + mse_tune=mean_squared_error(y_variable_std_tune, y_variable_std_tune_predicted) + # append the MSEs to the two lists + mse_train_list.append(mse_train) + mse_tune_list.append(mse_tune) + # continue with the next alpha + alpha=alpha+0.1 + +######################################## +# plot the MSEs for the different alphas +######################################## +# MSE in the training sample +plot.scatter(alpha_list, mse_train_list) +plot.show() +# higher Lambda associated with higher MSE + +# MSE in the tuning sample +plot.scatter(alpha_list, mse_tune_list) +plot.show() +# there is an optimal alpha with the lowest MSE + +###################################### +# determine the optimal Lambda +###################################### +# what is the smallest MSE? +minimum=min(mse_tune_list) +print("The smallest MSE is "+ str(minimum)) +# get the position of the minimum MSE in our list +index_min_MSE=mse_tune_list.index(minimum) +# choose the corresponding alpha +alpha_optimal=alpha_list[index_min_MSE] +print("The optimal alpha is "+str(alpha_optimal)) + +############################################################# +# What is the out-of-sample performance of the optimal model? +############################################################# +# take the full training data set (1000 observations, i.e., training + tuning set) +x_variables_std_train_total=np.concatenate((x_variables_std_train, x_variables_std_tune), axis=0) +y_variable_std_train_total=np.concatenate((y_variable_std_train, y_variable_std_tune), axis=0) +# train the model with the optimal Lambda on the training and tuning data +regression_Ridge_optimal=Ridge(alpha=alpha_optimal,fit_intercept=True).fit(x_variables_std_train_total, y_variable_std_train_total) + +# Mean squared error +# predict y in the full training sample +y_variable_std_train_total_predicted=regression_Ridge_optimal.predict(x_variables_std_train_total) +# predict y in the testing sample +# Remeber: we have not used the testing data yet. Firewall principle!!! +y_variable_std_test_predicted=regression_Ridge_optimal.predict(x_variables_std_test) + +print("The MSE in the full training data is: "+str(mean_squared_error(y_variable_std_train_total, y_variable_std_train_total_predicted))) +print("The MSE in the testing data is: "+str(mean_squared_error(y_variable_std_test, y_variable_std_test_predicted))) + + +############################################################# +# Part 6: Ridge regression with k-fold cross-validation +# Implement the cross validation using a package +############################################################# +print("\nPart 6. Ridge regression - Using cross-validation\n") + +# the default for cv is the leave-one-out cross-validation +# here we apply five-fold cross-validation +regression_Ridge_cv=RidgeCV(alphas=alpha_list, fit_intercept=True,cv=5).fit(x_variables_std_train_total,y_variable_std_train_total) + +# get the optimal lambda +alpha_optimal_cv=regression_Ridge_cv.alpha_ +print("The optimal alpha is "+str(alpha_optimal_cv)) + +# Mean squared error using the cross-validated model +# predict y in the full training sample +y_variable_std_train_total_predicted_cv=regression_Ridge_cv.predict(x_variables_std_train_total) +# predict y in the testing sample +y_variable_std_test_predicted_cv=regression_Ridge_cv.predict(x_variables_std_test) + +print("The MSE in the full training data is: "+str(mean_squared_error(y_variable_std_train_total, y_variable_std_train_total_predicted_cv))) +print("The MSE in the testing data is: "+str(mean_squared_error(y_variable_std_test, y_variable_std_test_predicted_cv))) + + +########################################### +# Part 7: LASSO regression +# on the full sample -> to learn the syntax +########################################### + +print("\nPart 7: LASSO regression - learning the syntax\n") +# the parameter alpha corresponds to the penalty parameter Lambda from +# the notation that is typically used. +# the default is that the intercept is included, so you do not need the +# "intercept=True" parameter. But it is good to keep in mind what +# specification you are using. +regression_Lasso=Lasso(alpha=0.1,fit_intercept=True).fit(x_variables_standardized, y_variable_standardized) + +# display the intercept and the beta coefficient on x1 and x51 +print("The intercept is: "+str(regression_Lasso.intercept_[0])) +print("The coefficient on x_1 is: "+str(regression_Lasso.coef_[0])) +print("The coefficient on x_51 is: "+str(regression_Lasso.coef_[50])) + +# R2 of the regression +print("The R2 is: "+str(regression_Lasso.score(x_variables_standardized, y_variable_standardized))) + +# How to compute the mean squared error (MSE)? +# 1. get the predicted values +y_variable_standardized_predicted=regression_Lasso.predict(x_variables_standardized) +# 2. determine the MSE +print("The MSE of the prediction is: "+str(mean_squared_error(y_variable_standardized, y_variable_standardized_predicted))) + + +#################################################### +# Part 8: Create a training, tune and testing sample +#################################################### +print("\nPart 8: LASSO regression - Application with training, tuning, and testing data\n") +# we use the same training, tuning, and testing data as in part 5. +# -> no need to redefine the data sets. + +################################# +# find the optimal Lambda +################################# +# we store the MSE of the training/tuning data for each Lambda +mse_train_list=[] +mse_tune_list=[] +# Again, Lambda and Alpha refer to the same thing. +alpha_list=[] + +# we iterate from 0.0001 to 0.25 increasing alpha by 0.0001 in each step. +alpha=0.0001 +while alpha<0.25: + # train the model + regression_Lasso_train=Lasso(alpha=alpha,fit_intercept=True).fit(x_variables_std_train, y_variable_std_train) + # add the alpha to the list of alphas + alpha_list.append(alpha) + # predict y in the training sample + y_variable_std_train_predicted=regression_Lasso_train.predict(x_variables_std_train) + # predict y in the tuning sample + y_variable_std_tune_predicted=regression_Lasso_train.predict(x_variables_std_tune) + # compute the MSE in both samples + mse_train=mean_squared_error(y_variable_std_train, y_variable_std_train_predicted) + mse_tune=mean_squared_error(y_variable_std_tune, y_variable_std_tune_predicted) + # append the MSEs to the two lists + mse_train_list.append(mse_train) + mse_tune_list.append(mse_tune) + # continue with the next alpha + alpha=alpha+0.0001 + +######################################## +# plot the MSEs for the different alphas +######################################## + +# MSE in the training sample +plot.scatter(alpha_list, mse_train_list) +plot.show() +# higher Lambda associated with higher MSE + +# MSE in the tuning sample +plot.scatter(alpha_list, mse_tune_list) +plot.show() +# there is an optimal alpha with the lowest MSE + + +###################################### +# determine the optimal Lambda +###################################### +# what is the smallest MSE? +minimum=min(mse_tune_list) +print("The smallest MSE is "+ str(minimum)) +# get the position of the minimum MSE +index_min_MSE=mse_tune_list.index(minimum) +alpha_optimal=alpha_list[index_min_MSE] + +print("The optimal alpha is "+str(alpha_optimal)) + +############################################################# +# What is the out-of-sample performance of the optimal model? +############################################################# +# take the full training data set (1000 observations; training + tuning) +# use the same variables as in Part 5. + +# train the model with the optimal Lambda on the training and tuning data +regression_Lasso_optimal=Lasso(alpha=alpha_optimal,fit_intercept=True).fit(x_variables_std_train_total, y_variable_std_train_total) + +# Mean squared error +# predict y in the full training sample +y_variable_std_train_total_predicted=regression_Lasso_optimal.predict(x_variables_std_train_total) +# predict y in the testing sample +y_variable_std_test_predicted=regression_Lasso_optimal.predict(x_variables_std_test) + +print("The MSE in the full training data is: "+str(mean_squared_error(y_variable_std_train_total, y_variable_std_train_total_predicted))) +print("The MSE in the testing data is: "+str(mean_squared_error(y_variable_std_test, y_variable_std_test_predicted))) + + +############################################################# +# Part 9: Implement the cross validation using a package +############################################################# +print("\nPart 9: LASSO regression - Using cross-validation\n") + +# the default for cv in LassoCV is the 5-fold cross-validation +regression_Lasso_cv=LassoCV(alphas=alpha_list, fit_intercept=True,cv=5).fit(x_variables_std_train_total,y_variable_std_train_total) + +# get the optimal lambda +alpha_optimal_cv=regression_Lasso_cv.alpha_ +print("The optimal alpha is "+str(alpha_optimal_cv)) + +# Mean squared error using the cross-validated model +# predict y in the full training sample +y_variable_std_train_total_predicted_cv=regression_Lasso_cv.predict(x_variables_std_train_total) +# predict y in the testing sample +y_variable_std_test_predicted_cv=regression_Lasso_cv.predict(x_variables_std_test) + +print("The MSE in the full training data is: "+str(mean_squared_error(y_variable_std_train_total, y_variable_std_train_total_predicted_cv))) +print("The MSE in the testing data is: "+str(mean_squared_error(y_variable_std_test, y_variable_std_test_predicted_cv))) + + +##################################################################### +# Part 10: Compare the betas from the Ridge and the LASSO regressions +##################################################################### +print("\nPart 10: Comparison of Ridge and LASSO coefficients\n") +# To set to what extend the results of Ridge and LASSO are similar, we +# write the coefficients from the cross-validation tasks (Parts 6 and 9) +# to a csv files. + +output_file=open(directory+"comparison_coefficients_Ridge_LASSO.csv","w",encoding="utf-8") +output_file.write("index;coefficient_Ridge;coefficient_LASSO\n") + +# get the list of coefficients +for i in range (0,200): + output_file.write(str(i)+';'+str(regression_Ridge_cv.coef_[0][i])+';'+str(regression_Lasso_cv.coef_[i])+'\n') + +output_file.close() + +print("Completed!") diff --git a/lectures/programming/introductions/NLTK_Sentence_Tokenizer.py b/lectures/programming/introductions/NLTK_Sentence_Tokenizer.py new file mode 100644 index 0000000..1810976 --- /dev/null +++ b/lectures/programming/introductions/NLTK_Sentence_Tokenizer.py @@ -0,0 +1,52 @@ +# -*- coding: utf-8 -*- +""" +Created on Sat Jul 17 17:09:50 2021 + +@author: ahillert +""" + +from nltk.tokenize import sent_tokenize + +print("\nExample 1\n") +text_1="The S&P 500 rose 43.44 points to 4,159.12. The Dow Jones industrial average " \ ++"added 188.11 points, or 0.6 percent, to 34,084.15. The tech-heavy Nasdaq fared " \ ++"better than the rest of the market, climbing 236 points, or 1.8 percent, to 13,535.74" + +sentence_list_1=sent_tokenize(text_1) + +for i in range(0,len(sentence_list_1)): + print("This is sentence "+str(i+1)+":\n"+sentence_list_1[i]) + +# -> good performance + +print("\nExample 2\n") +text_2=text_1.lower() + +sentence_list_2=sent_tokenize(text_2) + +for i in range(0,len(sentence_list_2)): + print("This is sentence "+str(i+1)+":\n"+sentence_list_2[i]) + +# -> poor performance +# For the NLTK tokenizer it makes a difference whether text is lower or upper case. + + +print("\nExample 3\n") +text_3="On Sept. 16, 2020, the U.S. president appointed John D. Smith as head of the F. B. I. " \ ++"While Jane C. Taylor became the president of the S. E. C. " \ ++"On Jan. 5, 2020, J. C. Penny filed for bankruptcy. Michael T. Brown - reporting from Washington D.C." + +sentence_list_3=sent_tokenize(text_3) + +for i in range(0,len(sentence_list_3)): + print("This is sentence "+str(i+1)+":\n"+sentence_list_3[i]) + +# -> good performance + +print("\nExample 4\n") +text_4=text_3.lower() + +sentence_list_4=sent_tokenize(text_4) + +for i in range(0,len(sentence_list_4)): + print("This is sentence "+str(i+1)+":\n"+sentence_list_4[i]) \ No newline at end of file diff --git a/lectures/programming/introductions/NLTK_introduction.py b/lectures/programming/introductions/NLTK_introduction.py new file mode 100644 index 0000000..d9e8396 --- /dev/null +++ b/lectures/programming/introductions/NLTK_introduction.py @@ -0,0 +1,137 @@ +# -*- coding: utf-8 -*- +""" +Created on Tue Jul 11 17:43:45 2017 + +@author: Alexander Hillert, Goethe University Frankfurt +""" + + +# import modules +# if you need to download the nltk packages 'punkt' and 'stopwords' you can use +# the following three commands: +#import nltk +#nltk.download('punkt') +#nltk.download('stopwords') + + +from nltk.tokenize import word_tokenize, sent_tokenize +from nltk.corpus import stopwords +from nltk.stem import PorterStemmer +import re + +################ +# 1. Tokenize +################ +# Create a test text to see how well nltk.tokenize performs +test_text="Microsoft Corp. announced they would acquire Yahoo! for $3.4 to prevent Google Inc. \ +from taking over Software Ltd. headerquartered in St. Louis. XYZ S.A. is located in the \ +U.S. and run by Dr. John P. Smith, who likes short-term risk-based calculations." + +# Tokenize sentences +sentence_list=sent_tokenize(test_text) +print("This is the list of sentences:") +print(sentence_list) +# looks good. Only the split after "Yahoo" is incorrect. The tool correctly +# recognizes "Mr.", "Dr.", "Inc.", etc. -> good performance + +# Tokenize words +word_list=word_tokenize(test_text) +print("This is the list of words:") +print(word_list) +print(len(word_list)) +# --> word_tokenize also includes symbols and numbers as words. + +# How to delete the elements that are not real words? +word_list_1=[] +for word in word_list: + if re.search('[A-Za-z]',word): + word_list_1.append(word) +print("This is the edited list of words. There should be only 'real' words:") +print(word_list_1) +print(len(word_list_1)) + +# Alternative +test_text1=re.sub('[^A-Za-z\s\n]','',test_text) +word_list_2=word_tokenize(test_text1) +print("This is the edited list of words. There should be only 'real' words:") +print(word_list_2) +print(len(word_list_2)) + + +################ +# 2. Stop Words +################ +example_sentence = "This is an example showing off stop word filtering." +stop_words=set(stopwords.words("english")) +print("This is the list of stop words from NLTK:") +print(stop_words) +# --> the stop words are all lower case +print(len(stop_words)) + +# Split example sentence into words +word_list_example=word_tokenize(example_sentence.lower()) +# Create list for filtered words +word_list_filtered=[] + +# filter out stop words +for word in word_list_example: + if word not in stop_words: + word_list_filtered.append(word) + +print("Example sentence after stop words have been deleted:") +print(word_list_filtered) + +# How does the example from above look like? +test_text_filtered=[] + +# filter out stop words +for word in word_tokenize(test_text.lower()): + if word not in stop_words: + test_text_filtered.append(word) + +print("Test text after stop words have been deleted:") +print(test_text_filtered) + + +################ +# 3. Stemming +################ +# define an abbreviation +ps=PorterStemmer() + +example_words_1=["play", "player", "players", "played", "playing"] + +for word in example_words_1: + print(ps.stem(word)) + # the full syntax without the abbreviation would be: + print(PorterStemmer().stem(word)) + +# adjectives and adverbs +example_words_2=["high", "higher", "highest", "highly", "height"] +for word in example_words_2: + print(ps.stem(word)) +# --> comparative and superlative are not reduced to the stem/regular adjective +# neither are adverbs + +# Let's see how the stemmer deals with irregular words. +example_words_3=["good", "better", "best", "well", "God", "Goodness"] +for word in example_words_3: + print(ps.stem(word)) +# --> upper case words are also transformed to lower case. + +# Stem the test text from above +# Approach 1: stem word by word +test_text_stemmed=[] +for word in word_tokenize(test_text): + test_text_stemmed.append(ps.stem(word)) + +print("Stemming word by word: test text after it has been stemmed:") +print(test_text_stemmed) + +# Alternative approach: stem entire text +test_text_stemmed=ps.stem(test_text) +print("Stemming entire document: test text after it has been stemmed:") +print(test_text_stemmed) +# -> does not work + +print("End of nltk introduction!") diff --git a/lectures/programming/introductions/Text_Introduction_Regular_Expressions.txt b/lectures/programming/introductions/Text_Introduction_Regular_Expressions.txt new file mode 100644 index 0000000..f521984 --- /dev/null +++ b/lectures/programming/introductions/Text_Introduction_Regular_Expressions.txt @@ -0,0 +1,19 @@ +This is the text for the introduction to regular expressions. + +In the first example, we search for the year of birth of current and former CEOs. +These are sentences that I made up: +Microsoft's former CEO Steve Balmer (born in 1956) graduated from Harvard in 1977. +Michael Dell was born in 1965 in Houston and founded Dell Inc in 1984. +Walmart is currently run by Doug McMillon, who was born in 1966. + +The following three examples are taken from the Wikipedia pages of the three people. +Steven Anthony "Steve" Ballmer (born March 24, 1956) is an American chief executive who is the former chief executive officer of Microsoft from January 2000 to February 2014, and is the current owner of the Los Angeles Clippers. Source: https://en.wikipedia.org/wiki/Steve_Ballmer, June 22, 2017. +Michael Saul Dell (born February 23, 1965) is an American business magnate, investor, philanthropist, and author. He is the founder and CEO of Dell Technologies, one of the world’s leading providers of information technology infrastructure solutions. Source: https://en.wikipedia.org/wiki/Michael_Dell, June 22, 2017. +Carl Douglas "Doug" McMillon (born October 17, 1966) is an American businessman and is the president and chief executive officer (CEO) of Wal-Mart Stores, Inc. Source: https://en.wikipedia.org/wiki/Doug_McMillon, June 22, 2017. + +Here are some numbers: +1,234,567 +8,901 +34 +56.82 +539,234,353.41 diff --git a/lectures/programming/introductions/regression_data_scikit.csv b/lectures/programming/introductions/regression_data_scikit.csv new file mode 100644 index 0000000..7ea5ed8 --- /dev/null +++ b/lectures/programming/introductions/regression_data_scikit.csv @@ -0,0 +1,1201 @@ +x1;x2;x3;x4;x5;x6;x7;x8;x9;x10;x11;x12;x13;x14;x15;x16;x17;x18;x19;x20;x21;x22;x23;x24;x25;x26;x27;x28;x29;x30;x31;x32;x33;x34;x35;x36;x37;x38;x39;x40;x41;x42;x43;x44;x45;x46;x47;x48;x49;x50;x51;x52;x53;x54;x55;x56;x57;x58;x59;x60;x61;x62;x63;x64;x65;x66;x67;x68;x69;x70;x71;x72;x73;x74;x75;x76;x77;x78;x79;x80;x81;x82;x83;x84;x85;x86;x87;x88;x89;x90;x91;x92;x93;x94;x95;x96;x97;x98;x99;x100;x101;x102;x103;x104;x105;x106;x107;x108;x109;x110;x111;x112;x113;x114;x115;x116;x117;x118;x119;x120;x121;x122;x123;x124;x125;x126;x127;x128;x129;x130;x131;x132;x133;x134;x135;x136;x137;x138;x139;x140;x141;x142;x143;x144;x145;x146;x147;x148;x149;x150;x151;x152;x153;x154;x155;x156;x157;x158;x159;x160;x161;x162;x163;x164;x165;x166;x167;x168;x169;x170;x171;x172;x173;x174;x175;x176;x177;x178;x179;x180;x181;x182;x183;x184;x185;x186;x187;x188;x189;x190;x191;x192;x193;x194;x195;x196;x197;x198;x199;x200;y +-.18761332;-.607059;1.1784477;-1.2956858;1.0624505;-.72979718;.83869976;-.91776437;-1.4373943;.8457942;.83463615;-.11305267;.00019224049;.61768645;-.52216232;-.24798281;-.22878978;-.46555054;-.12976493;-1.320639;-1.0856304;-1.705345;-.085508585;-.91897625;.99408489;-.74148244;-.047328625;.27069822;1.8876946;1.4879428;.60455006;1.3441477;.52506441;.22623932;-2.5282643;-.090414487;.018733382;1.6946558;-.15100166;-.19768988;.3920199;.38754892;-.044204868;-1.009284;-.84574986;-.40520892;.60853201;-1.1006106;-.13643242;.30569056;5.2391734;-1.0245402;3.618309;.78259099;.35879269;3.6973886;1.5322342;5.1838655;.49753347;-1.2507087;4.1620483;1.2941238;-2.0916972;2.6966012;2.5264802;4.0738897;1.2811668;3.1851962;.020031322;.39978278;-.12539023;2.7807097;4.0944614;3.0254464;2.0987995;1.6404374;4.9681554;-2.364151;2.3798501;-1.7550336;2.9438426;2.4371955;3.1707957;3.6134903;2.5511422;.23449412;4.8117847;2.6474152;3.9143298;3.5686526;3.9801819;4.1171861;1.0057375;-4.2212753;2.5176587;2.6548748;2.9383402;-1.6020813;2.5915375;6.2409968;.86987644;-1.292964;.24889299;.30573171;-.29055685;.7869333;2.3884239;-.29977858;-.88255596;.50997508;1.2489293;.30022094;1.362044;.76937795;-.37285084;-1.5196544;-.47062886;-.11821038;-1.5850521;-.73322815;-1.8638678;-1.9623152;-2.0114815;-1.2558507;1.4694244;-3.6057312;-.9386124;1.4029151;1.9416162;-.034195431;.48649815;1.9648284;.87937188;-.74168193;-2.426115;-1.1507012;.045444228;1.4119476;.10378842;.15086196;1.4856542;.666273;-1.4672554;-1.3712435;-.95560718;-.76668221;.88219285;-3.3522735;-2.4667029;.92093736;4.0983801;-3.2137599;3.4343524;.72379833;1.9762034;2.3462839;.5385341;3.1013706;-2.4863687;-1.1497204;4.1908784;1.3299133;-.51260149;1.4993385;1.0237923;2.0192816;2.2031748;1.8291732;.10184681;.57487041;-1.4199655;2.2680781;1.5466212;3.1532905;2.8209348;.25106919;3.1639411;-.91760164;-.040472593;-2.9034038;2.9627147;2.862489;2.4185963;3.4302347;2.7118294;-.61430323;3.6758051;1.9711111;3.1959174;.25123847;3.5119681;3.094382;.90715295;-2.8231704;1.6219877;2.3502998;2.9745314;-1.1012747;3.4246328;2.836494;53.476215 +-1.7754443;1.1802537;-1.4657704;-1.373796;.53498238;.81209761;2.9944618;-.77567303;.75715876;-.23765635;-.91882348;-.45424506;2.7314489;-.88361192;.075721219;.41439682;-1.556252;-.75685221;.7988224;1.1691493;-2.1558726;-1.570779;1.3137282;-.23199987;-.04590679;-.30376109;-.41776502;-.76675642;.23089124;.23943485;-1.8905742;-1.0599459;.74376601;.9902848;1.2419693;-.61971915;.21022342;-.31030977;1.1379424;-.91640419;-.71881789;-1.7589651;-.97443271;-.53956342;.37861416;-.67616129;-.91848016;-1.6769251;-.11016267;-.3105773;-1.973219;1.4126803;5.796689;1.0832986;2.1492352;4.9955988;-3.0997283;3.5131094;-.88297498;-1.163486;2.7991478;1.1131593;1.8870825;1.5818774;4.8551006;3.053735;2.1516879;.92777258;2.7649872;.95149463;-.94555521;-.40492272;.40013352;3.8195529;3.7137001;1.3501996;2.464987;-.20993638;-.32210347;4.6541343;3.0508528;-.060572304;-1.4533039;3.5024309;-.74603057;3.0235221;-1.2432163;-.64914525;3.0020239;1.4283192;-.29648045;-.81609482;3.9386642;1.8689747;2.8346286;1.3436377;4.2793961;1.7161947;-2.0412996;4.9832001;-2.3062711;.20276394;-3.115015;-2.23247;2.1493344;1.6302164;1.5107211;-1.617939;-.33700046;-1.2158396;1.6477562;1.3014517;.96656626;-2.084115;.30178517;-.2478736;-1.8288279;.81179994;.45897251;1.7364564;-1.4949684;-.20825776;-1.1369663;-1.4437075;-1.0407653;-.16532068;.80398345;-.65505952;.32888272;2.2851422;-.27160287;.19614929;.85289782;1.4651395;.7073108;-.34322804;.2144945;-1.2306476;.29484013;.76587993;.7761907;-.57486248;-2.3365009;-1.4197731;.3840774;-1.3537546;-.35565731;-2.9547641;.9525649;-1.2198597;.29278547;.48849142;5.3214178;-.22785164;.435619;4.5334864;-1.7926753;2.5624783;-.92565823;-1.1130989;.67180061;.090007402;1.0364763;1.7425199;3.5748148;1.9894946;1.8603446;1.4548833;2.1491454;.18549766;-1.6749916;-.44177297;1.4434373;2.7702818;3.8615968;-.21182576;1.6888225;-.18274388;-1.7350763;1.2194659;4.2044392;-.14766161;-.63141114;3.2236538;-.63564473;2.7379277;-2.2682939;.078063913;1.5500115;2.7804842;1.2748055;-.62989557;.77579248;1.5253732;.7689361;-.52086157;2.0716338;3.0976348;-2.895932;2.1633129;30.041248 +.58940071;-.56397933;1.6701576;-2.7034895;-1.9235528;-.17695875;1.3639452;-.686921;.67642528;1.0023685;-1.4431672;.74713469;.029949835;.49226367;-1.9129665;-1.2062346;.7221033;1.6940154;.42173249;-.69917005;-1.6380475;1.5251014;-.33650237;.13461581;-.55336618;-2.0351677;-.5639593;2.1619668;1.7832495;-.85724086;-1.9408242;.07093291;-.62573725;.14144053;-.17724943;1.0530199;-.84923673;-.339178;2.5963449;-.47959489;.89604765;-1.8942024;1.7629421;-.5746243;-1.9102923;-.035556629;-.010739967;-.15999213;.34307095;1.051783;2.4228976;.42692575;2.0400429;2.6720576;4.4445047;3.7732286;-.49124658;2.1198678;4.2358851;6.1369972;.94213647;5.0500932;.35053536;2.2717531;2.6689129;2.2347479;1.8202609;4.8717175;2.7559171;.29675892;5.4244022;6.5053396;.13868238;2.9622149;3.9300547;.90127635;-1.3774353;2.4889612;1.523797;.65077728;-1.4610478;2.5073917;1.1066984;3.1532173;-.38262033;4.6723714;5.8172531;1.3635916;1.9362315;.028885696;2.8153365;4.3024774;1.6457928;4.1577783;-2.4058454;.50938261;-3.2186832;3.8512106;.1011645;4.8729119;.78714371;-.15559961;.22427839;-2.7967784;.54992574;-1.4414111;1.7266424;-.63914293;1.5172744;.72424215;-1.032774;.26781896;.57084936;.75897795;-2.7775981;-.56296414;.76980805;1.6036732;-.093684345;.17490229;-1.2578945;1.1198105;-.072153896;.75009036;-.068045758;-.76701951;-.42007861;1.2340351;1.9774331;-.96466684;-2.1546104;-.82292354;.35524249;.098499276;-1.5850712;1.8031285;-1.7299091;-.44797024;1.0513157;.31356129;-1.1909657;-3.8259552;-.33649069;-.54845589;-1.4824257;.58849305;-1.1181647;-2.1545129;-.97119182;.68212891;2.1233394;2.4151888;3.3759055;1.2136415;2.8608015;1.0960371;-1.2962695;1.9611748;2.8630602;3.6055672;-.50177127;3.1704276;1.4419094;1.9027886;1.6977919;1.2713689;1.5112737;3.459518;1.4755867;1.1504058;4.4992709;6.1425714;.82290459;2.8856683;3.416424;1.9187111;-.32481709;.70384771;1.5154876;1.6588241;-.29572579;.22494859;2.1555741;-.41359419;1.0625722;2.6230154;4.06428;2.636476;-.12054783;-.036458109;2.2344584;3.6706507;2.8484251;4.4821372;-.88275057;.50833178;-2.6551762;3.3883023;-1.0820518;2.7554116;47.148369 +1.1103234;-1.0524309;1.4341913;.37877131;-.6129173;.92218649;1.4969971;2.0369556;-1.4324635;-.087424949;-.097372398;-.37371144;.27265596;1.7933133;-.93860853;.41417739;-.88213485;.078647524;.27816865;-1.8589382;.69720161;-.91598797;-2.7678573;-1.46671;-1.7533658;2.0393116;.67395669;-.53359634;-.7768997;-1.1745403;-.95555341;1.4520453;1.0333892;1.5650119;.74600744;-.044649206;-.65652591;.00011111387;1.5305172;-1.1119328;-.35043058;-.35201806;-1.5324143;.24995288;.06754259;1.0359111;1.6326603;-.50335997;-2.668555;.46938151;3.7355893;1.7430634;.30618352;5.3398104;4.3167925;3.5000961;1.9997925;.36172113;2.6146281;-1.8987094;1.8617903;.89636487;3.1357193;.41716185;1.3878026;1.281662;.78764081;-1.7484672;3.496259;1.2983253;-.067489766;.90637761;.15930535;3.8751926;2.288296;3.7610946;1.9285399;4.8947473;.36622831;3.0393374;1.764213;1.9408072;.35893381;.69201744;1.4509662;1.5145255;.92732924;.33333486;2.3434043;3.9216671;.38521442;5.1236563;-.019183714;3.1814125;2.6709285;-1.9776976;-.15614389;3.8832884;.43500954;-.48521954;1.123174;-1.0182498;1.3657004;.50590813;-.35615182;1.4447759;.41608819;1.6389415;-.074442856;-.16913691;1.4280971;.27277982;-.29312187;.55796307;-1.069797;-.89768386;-.19117011;1.8461792;-.17511255;.29706448;-.76052541;-.89468825;-2.1310461;-.40212253;-1.0895009;1.3900646;1.005342;-.077047765;-.22115009;-1.8346397;1.0964501;2.0475504;.58148068;1.1708752;1.6288775;-1.8920053;-1.9625819;.21544194;-.49938798;-1.9257345;.63653028;.99734676;-1.3153541;.32309774;.409798;.84165514;-1.2668899;.19878645;-2.2960339;1.0837458;2.7148509;1.660331;.82878572;3.466573;2.4941769;3.8216031;.80486661;.97758561;2.0045776;-.2900047;2.2440124;-.011863075;.030437009;.3746874;.59135664;1.0357912;1.7290714;-1.1979313;1.2542449;1.4684485;.25151122;.10031486;.92467195;5.0604563;2.5270519;2.7498999;1.6224775;5.3547497;1.5281972;3.2054746;.7811929;2.0684745;-.95858282;-.30102476;-.012021268;1.4161419;.14039315;.48409989;2.3204503;1.9728055;.077246465;4.2578845;1.7786205;2.7661726;1.6248199;-.97690386;.71056885;4.5723786;2.9831743;.13315499;44.894409 +.8562299;.012039246;-.38172394;1.7571971;-.28202763;-.016754838;-.47616524;-.7740708;.23090324;-.12787534;.17133529;-1.2872316;.0422948;-.36073348;1.1579734;-.34665036;-1.6619018;-.45541686;.37977913;.33075494;-.14442556;-1.7743219;-.79641038;-.4286859;-1.3536644;.37068254;-.085963391;.62881809;.98162651;.013670947;.31045279;-2.5747018;1.014845;-.88354737;.4289664;-.00065184361;1.3596829;-.48691091;-.30320957;-2.271832;.9728052;.89686888;1.8521833;-.010914469;.5894587;1.0375673;-.091590896;.25581217;-.14289403;.92387658;2.0503607;2.9275758;2.4140253;2.6672695;.29033652;1.7215683;1.1906829;2.3748939;2.7474413;.80486578;1.0137024;3.3629401;4.1926889;1.6139091;4.3155103;1.8449023;.27478349;2.1974385;1.0314364;-.96710354;.56692761;1.5196236;3.0803018;2.9932983;.12392717;1.8208407;1.1985432;1.4617673;2.9699559;3.1490967;4.9350457;1.8512278;2.3703074;4.1467323;1.1675582;4.9091249;1.5809861;1.6949867;-1.8104552;.3935121;-.25163931;-.15398833;1.3317744;2.8734353;2.2204037;2.3790691;6.1215482;6.3050027;.1781648;-1.8278687;.54775232;1.7407857;.73581398;.62265652;.00088092603;-1.7111646;-.63648051;-1.6981543;-.13915889;2.2123771;2.2315452;.05121468;.30640668;.84178555;1.0168169;-.13512136;-2.7630382;.40585577;.17895377;.43497205;1.2324238;-2.317157;-.50477278;1.1542605;-.64941764;-.15528579;-.63751155;.87080532;1.6207076;.73309201;1.5873415;-.21334112;-.80441964;-1.5906578;.46727386;-.41284183;.44926041;.5119155;.077069715;-2.096837;.25634399;.92856377;2.3931847;-.060589302;1.3842134;-1.3506438;.54372287;-.76014227;-.4109042;-1.409676;1.0998299;1.9824412;.023074312;.58801121;-1.1177745;2.2018309;.1763005;2.3715053;.81166989;-.058897335;-.31707796;2.5394647;3.6448634;1.4156597;2.8595164;2.9510162;1.4187775;.37683144;-.96301496;-.35651168;-.14258274;.88170111;.89803922;1.7211258;-1.5786687;1.5219774;-.46639076;.79821515;1.7743576;3.2338428;4.3804641;-.25295308;2.5958047;2.0379739;2.7530177;4.9400291;.6764127;1.67456;-2.9804142;.77207619;-.81450808;-.28025556;1.1873473;.69502276;3.4052026;2.3039548;3.3381279;4.7327404;1.1266518;-1.1023959;37.049343 +-.8973667;1.6538472;-.57561892;.13219656;-1.3904752;.50667751;.98041242;1.130394;.3162106;.5188694;.20458381;.61236638;.64329153;.41321447;1.6626092;.57643861;.14505011;-.4651989;1.3937584;1.5208137;-.39925209;.82888955;-.30017;-1.8823386;-.13192651;-.3548677;.73812568;-.55164409;-.80439317;1.7977536;-.77070731;-.92088622;.63758516;.2431275;-.75467366;-.54572123;.54375064;-.10002125;-.64501864;-.94456416;-1.194947;2.0682759;.08618325;.32134494;.36797044;-.024663622;-1.6956561;-.85731244;.10029642;1.2909869;-.49883911;3.5908082;.62175214;1.9269902;4.0465617;2.3577359;2.2676566;2.2184727;3.5851381;2.7116294;.38733959;-1.0393994;.22682764;2.3251708;3.7792463;5.9233861;-.21211402;1.4318632;-.8300944;1.6358851;-4.040195;4.6850553;2.6723797;.45416003;1.0369925;2.0881534;-.071614526;.28967813;4.423883;4.507947;.0020881826;1.2899362;-1.2114938;2.6232746;2.7642806;2.0950396;2.9760292;2.0822151;2.5986402;3.1644254;2.2872012;1.0228614;2.5735173;3.8608036;3.5786648;3.2834575;2.2552333;3.6424432;6.9504895;.4181987;-.77883613;2.3888009;-.94615859;-.98474395;-.65950179;1.8119612;2.1001201;.77215916;.81472242;2.5969396;.65544504;.60056031;-2.0341649;.36448944;.44367984;1.4133214;.093645163;-1.9723338;3.7668827;-.081677333;-1.2233191;.72030193;-1.3300421;-1.7297927;-1.8569074;-.13877882;1.4691776;1.4559507;-.12803857;1.3695263;-.45731613;-2.2927244;1.023304;.92546409;-1.343441;-1.9751925;-.19330865;-.59032845;-.35061964;-1.6379999;-1.3441997;1.4114707;.45961979;.48179573;1.5748627;-1.0922098;-.21982366;-1.4739068;2.5986018;2.3669631;-.78328162;2.1390376;.68314236;.31136101;2.5410807;2.1237347;.45370835;2.0630713;3.0746017;2.7712772;-.25774249;-1.4637963;-.06718152;.046424177;2.1285088;4.5681744;-.53152043;-1.5697664;-1.9621394;.75010943;-3.3096597;3.4908712;2.5507071;-.033590332;2.6986825;2.4699821;1.7093891;.83418548;2.0336916;4.0531597;-1.2823244;.18263403;-2.6006615;1.2141182;1.085173;2.752645;1.173582;2.7084215;1.8182327;4.1920862;2.4862158;-.67515361;.77955914;3.2325056;3.1369786;2.6814897;3.1628585;2.7819004;6.1865144;-1.2763729;52.894547 +-.21705863;-2.9971042;1.0302992;-.53062683;.4890857;-.52294856;1.9214442;-.2335676;-1.3051127;.29971847;.53717208;.98872411;-.98161811;-.26980567;1.4398332;-1.3869114;.43042356;.054935448;-.86414289;-1.3531183;-.73021656;.68674046;.71481848;.47492513;-.64549863;.16490501;.70464337;-.80944836;.21319425;-.6670267;.50554436;-1.0781076;-.32127815;-.55920029;.69299942;-.73080665;.10645062;-.35292548;-.72100043;-.065864757;-.27102053;-.0093097761;-.36250916;-.20560257;.24321403;.037541896;-.2522133;.53559482;1.3367897;.37806708;-.80898732;2.853754;3.1472347;1.5318987;1.7935776;5.9855809;3.46471;.54321223;3.2288692;-.33697721;3.6017246;5.4217124;4.6831541;3.390476;2.6344178;1.290092;4.5993123;3.6342905;2.025882;-.0073484583;2.7277939;1.0268412;1.8950597;.27177349;4.4712701;1.5337099;3.4913139;.79223108;4.4094553;.70364851;.80819255;-.73408931;.96773237;3.432457;-.93296677;6.1867881;.1016278;1.4501508;1.1538761;2.8729391;1.3973788;2.6153147;1.6935074;2.4327531;2.4819176;.14468271;2.3352427;-1.0595249;4.5823135;3.0960832;.33571029;-1.3434497;.90071762;-.13399719;.083863109;.97642708;1.2962284;-.0055238027;-.49373573;-.452371;.82514763;1.3100406;-.25969639;-1.0547339;3.0038126;-.48091909;-.080002293;-.70534265;-.99487877;-1.6470366;-.4628706;1.8645118;.035013851;1.1362033;-.94741416;-.12529528;-.79293031;-1.0445052;.20907396;.9042803;-.97345042;-1.9951674;-2.9409056;.60962379;1.0616078;1.2078593;-.19501315;-1.1843306;-1.7642666;-.34644437;.58769798;.12494358;-.071894556;-.19913413;-.67371309;.71902108;2.9199789;-.5103159;.95882124;1.0234677;-2.0615985;1.7782655;2.1582336;.32951918;1.1186936;4.7369213;1.4245499;-.44305313;2.8181508;-.95820373;1.8229662;5.2503424;3.1263928;1.5144227;2.3010211;-.9130125;4.0280495;3.7203565;.17960139;-2.3853056;2.2956033;.14806533;.76795083;.8583135;4.7576857;1.452238;2.3850567;.64000344;1.2125247;.81486225;.88166326;-.30574667;2.2986634;2.4700344;-.60994548;3.1759486;1.6371952;.34944797;.76759142;1.6836067;-.33241609;.97850955;-.39309618;1.7309966;.58922333;.2479421;-.11714406;-2.7325335;3.8519914;2.7898974;54.5093 +.94077492;1.2048266;1.3080142;-1.2864467;-.5065273;-.033503018;-.72232372;-2.2462535;.3594076;-1.1175696;.067000791;.62048441;-.63676304;-1.2035658;.78650063;.83399308;-1.3625319;.19774109;.11035966;-.87447178;2.3101888;2.2171848;-.68855226;.36786065;1.7463701;.090767808;.49828163;.89511615;-.58075047;-.031484183;-.0036274591;-1.2964194;-.20859894;.11216153;.36101067;.25738069;-.33949959;.10869327;-.31709597;1.4728799;.045124736;-.2902419;-2.2451849;-.73545724;1.0646057;.84388494;-.73217303;.24859332;-.65945941;-.95524848;2.3991475;1.1767935;3.1091819;3.2518549;-.69724584;2.1804085;3.07214;.98138756;4.7695379;-1.9742484;2.8517339;3.7294421;3.1397102;1.6840656;2.5267534;3.2564068;1.4854642;-.42437169;3.6223578;2.5375819;2.8700478;6.0634418;1.7370085;3.3999748;2.7153831;2.0667741;6.7889576;.98312062;3.8071158;.91361773;3.7586029;1.0219952;.39450118;4.5283198;5.483284;2.2507131;3.4121861;2.2917836;-1.8517176;3.6439912;5.611186;5.1351676;-.75333834;-.88676375;2.0090349;-2.0428596;5.4579453;4.00595;1.8629642;1.5764019;1.7105029;1.435634;.72381043;-1.4907613;.54564995;1.3600484;.10314;1.6984919;.44861576;-1.7322031;1.0806882;1.2847717;.74172193;.50998819;.11346781;2.4392323;-.14750193;.34714469;-.68509614;.199762;.55126369;2.1133134;-.70025843;.76193523;2.7429371;1.0919247;1.3925816;-.039639454;-.71175343;-.91334301;-.82865465;-.77918321;.56018877;-.81856209;-.43043688;.70165986;-.55439109;-1.2399673;-.49055469;-.26751933;1.1147894;-.98696506;-.91466498;-.47230178;-.81803417;1.121238;.33117566;.29453313;-1.359737;-1.0073801;4.976717;-.75455856;.26179731;1.9058962;-.36843815;.50397861;1.7208837;.80895436;2.2467172;-2.845067;.86580455;2.97293;1.8895115;2.6781929;2.792851;2.6434581;2.5618258;-3.1924963;3.1337113;2.1212933;2.5874815;3.5541391;2.2481227;3.6380248;1.2325591;.6142211;5.8065629;1.5841533;2.4233146;.96350563;3.0759163;2.6161199;-.083993725;5.0596485;4.620163;2.2211194;2.6251056;-.0077870279;-.41721848;3.367151;4.162612;4.2333398;-.41768038;.49053732;.91209358;-1.5790336;1.9368012;3.0195463;.72900987;1.3818383;56.911461 +-.90643919;-.2897546;-1.3722608;.28259826;-.26711565;.71479112;1.5025089;-2.1712143;-.70036501;-.10034212;-1.0644298;-1.6317315;.85303342;-1.5979971;-.65894896;-.12462062;-.39633504;-.067868054;-1.1323618;.30792996;-1.1263888;-.64893621;.75232869;-.53218329;-.36484575;.041308451;-1.887343;-.64666617;.56792825;.60545802;-.18604113;-.20452431;1.0306721;-.16319019;.80247784;.34742269;.445077;-.31288183;.15682904;-.79372054;-.23823193;-.96160579;.21656188;-.065063633;-.95668155;.094520032;-.25561327;-1.1226771;.6900667;.23453537;1.6912994;3.4924624;2.7964871;2.4156156;1.6501833;3.5903144;1.1549144;1.7534202;-3.1796954;4.5309582;1.6128119;2.7227187;-.81821001;1.9780321;.77256751;3.1947794;4.7746105;1.8636745;1.4186147;5.1243153;3.634841;2.8548293;3.8895566;4.0652428;2.0241954;-1.2251444;-2.4635088;3.0804708;.78886038;.31470662;-.84642357;3.2053623;-.1927498;3.6416414;.2135637;1.1460794;2.4429646;4.1282129;2.442399;-.74901295;.50937474;2.3920517;3.3962288;1.3564461;-.30950326;.89084136;-1.4635175;2.6181829;3.4592679;2.1370771;-.73247623;-.2352221;-.67487109;-.68998456;.40182984;.20639125;2.0078635;-1.2632611;.27880952;-.21611005;-3.4704411;-2.6322958;3.2024801;.32533339;-.88062972;.19878419;2.2162957;.49554607;.33785415;-.97631758;-.87808371;-1.5183309;-1.891065;-.35501549;.13990131;.21544529;-2.2346604;-.92462534;-.37341863;.95676798;.89404166;-.87131637;.63440257;-.43790299;1.932362;-.10612359;-.4824641;-1.2542343;.7362293;-2.4408357;.72837865;-1.2482685;1.3498337;-.10012738;-1.5435964;.43405843;.98149741;.26004988;.55200922;2.3440359;-1.1779613;3.3595338;1.3420237;1.5128814;.052256759;1.6857316;-1.0694495;1.6696337;-1.1198992;3.5877335;.5813939;1.2811553;-.87297523;-.26147681;.12379293;1.1706908;4.6497064;1.3063366;.8440156;4.3682342;1.5135418;3.6775284;2.529413;3.3740821;-.32027513;-1.214624;-1.7457235;1.7215991;1.1440446;1.8436571;.3226212;2.893549;1.5794779;1.3812252;1.4362372;.60172969;2.1110296;.20808829;.88839197;-1.6794883;1.4692593;2.055922;3.9794643;-.58341813;.53373903;.4101063;-1.3245178;3.5246568;1.6310061;.71724111;40.557846 +.20148651;-.57787412;.074688546;-.5916962;.18936305;-1.6354573;-.69431573;1.3042374;-.4354884;-1.477071;.38564998;-2.2602053;-1.9919947;1.0097694;-.2477235;-.17990211;-1.8257074;-.49765086;.78671438;-.97781795;-1.0917747;.41961282;-.034529343;.74385285;.17429174;.23410468;-.15767331;.60126358;-1.0953426;.019582938;1.1464477;.94446915;.18978661;1.6250473;-.9473592;.15537891;-.60765451;.11626448;-.72497898;.58948547;2.0679646;-.12867963;.37062261;.88319451;-.43391865;-1.174849;1.3406929;-.64230502;-.68863404;-.223309;2.6334598;4.5330477;1.3229934;1.780668;2.1518741;1.1741309;.22347692;4.3288956;2.2000561;-.53897256;-.95493048;-.82451159;2.1796689;2.8256021;2.9620695;3.7379615;2.9977012;2.2964585;2.2393558;1.5394694;1.7945;-1.0275609;-1.5242516;-.30883902;4.3331509;-1.6761899;-1.5649279;4.8608174;2.6450272;.4595834;-1.7419603;4.4510584;1.5569658;2.0831423;4.7131119;.69855142;5.5273967;3.3745208;.047088042;-.17614947;2.9926524;5.2465835;5.9957852;1.7027777;.63887274;3.4803505;2.6647308;2.6882524;1.6935616;1.3055555;2.7975831;-2.8586402;-1.7625803;-1.5969115;-.40858075;-.27900881;-.26303384;1.0865686;-.87707508;1.9994779;-.53157681;-.21079372;-1.53558;1.5426519;-2.1813688;.51768202;-.43256131;-1.8025835;.020496266;.92827582;-.2805042;.65423107;-.94686049;-.092845015;.85302037;-.90596128;.8894695;1.3227546;-.5884102;-.78079873;-.30398917;-.020313106;.11197789;-.72390878;-.57948869;.26510137;.012326295;-.82196367;-3.5018978;1.3802958;2.0951941;.6247164;-.17023686;.43347284;-.77780581;-.39643496;1.4464629;-.34260857;-.17941873;1.5042945;1.890196;3.5726159;2.6893072;-.59206086;1.0322841;-.11838676;-.56440836;2.8921473;1.5442903;-1.9541711;.076295987;-.038093705;1.0038923;3.3554773;3.8859863;2.2304661;2.6955063;2.0821896;1.0616847;.0050719385;1.7719867;1.8296664;-.95371169;.4968732;3.7108865;.48264441;-1.3758025;3.8895714;.89313853;-1.0631882;-1.1501312;2.8868766;1.4078872;.77713943;3.0469308;.27656597;3.4854069;1.4373735;.49075791;-1.0365382;1.5988989;4.0765634;4.5923367;2.1494615;-.64898705;2.5667946;1.6665298;2.1034961;2.04669;.53046674;47.34692 +-1.9998506;-1.1818122;-.18863776;.45249683;-2.0008729;.64048582;-.39081523;.81039393;-1.6302134;.63081247;-.53274059;-.36491552;.79031503;-.11123079;.10760909;-.67682326;.20629042;-1.0750285;1.1509361;-1.9595265;-.32653135;.092800573;.56611431;.4208518;-.074169815;1.6253151;.27412686;.69321877;.46346274;-.22737657;-.28913793;1.7173241;-1.6963061;-1.7404022;-1.1120112;-.21216199;-.092565283;1.5516165;.09080442;.11937156;.19983028;-.93350339;-2.8918803;-.46764734;.17704412;-.79320538;-.51310331;1.4163932;2.7555749;-.23020862;.62630719;3.8679028;3.407953;-.8394652;3.4640741;1.988501;.89586538;3.9142077;2.3318989;1.4839833;2.738549;-3.2728994;2.7011745;.59496933;2.3017092;-2.6370008;2.4975905;1.5995774;3.6315041;2.1996601;3.9326115;3.2873907;3.0565791;2.9196894;2.6477559;1.3895627;2.4508948;.057798233;1.8198239;4.52073;-2.023386;5.8198538;3.2442265;2.5063748;2.0360253;.0011684829;1.7503771;3.2315159;7.7761784;.88207173;-2.0848038;5.3818612;3.3885357;4.211;1.9634539;2.3478618;2.3627758;2.5991528;1.4885815;2.525115;-1.5662013;-.91464108;-.33675864;.50270736;-.095454089;2.3279529;-.68736982;-.019958161;-1.5244896;-.54353017;-.94972378;.47400805;1.6093737;.50206691;.36921057;1.4699355;1.4214987;.59005761;-.41289282;-1.3665701;.65805227;-.89928675;1.2520553;1.411039;-.86094457;1.4202893;-1.4115812;2.0757153;1.1775582;-.4592703;-1.676687;1.2110955;-.88409477;-3.0611949;-.65418202;-.31710783;-.64688706;.36108145;-1.2534276;-.53619564;.9037798;-1.1137575;-1.0907415;.21912499;1.3371645;-1.0735826;1.9495806;.20743237;1.0995656;-1.0651009;-1.0069898;2.7329364;3.1084676;-.50513333;1.4148425;2.6728287;-.033982102;2.813138;1.5000075;1.356347;1.2757322;-2.6843197;.88249785;-2.0256724;.92450416;-3.5505517;1.2493892;-.051169012;1.969296;2.3450537;3.8818293;1.0727924;.7939052;2.1351445;.75092918;.63594908;1.5336386;1.0403395;1.3633202;4.3151293;-3.034703;2.8533347;1.9754016;1.4760914;3.5133154;-.60127521;1.6330854;.73765588;5.5419374;-.17346232;-2.210736;4.0420408;2.26284;3.7276716;2.6901062;1.7593386;2.8669703;.79936057;.3293851;2.9906554;54.727627 +-.79095644;-.99438959;.20066586;-.24990679;-1.0050942;-1.8639897;1.425511;1.0586154;.96826923;1.6942083;.42485422;-1.5772038;.76625907;1.8532408;-2.457823;-1.3764575;-.2863892;.65152556;-.76634949;1.665005;-1.8368291;.10658976;1.6217818;.030346889;-.64048064;-.33934119;.12145565;-.21695966;.5974645;.8741371;-.85541862;-.12657323;-2.5337017;.15989609;-.50742012;.05065231;.85488278;-2.0150046;.54883051;1.731298;-.35058317;-1.428408;.25720391;-.18080547;-.11701147;1.8496494;-1.364117;-1.5186284;-.28072089;.62248361;.71168137;4.1818914;2.5548935;2.0319645;1.4289254;.48490241;4.2182913;4.6872325;-1.3479575;.79744679;5.0848022;7.4632378;2.3104937;1.1325063;4.3122663;4.8095813;1.9893315;.84656596;-.06460125;1.7579211;1.4316605;5.6145267;3.2190607;.2907517;2.6420949;.75755644;3.8471735;-1.4492247;1.8894024;3.6024745;2.526799;2.3840823;4.0831914;.663441;2.5939126;1.2813913;2.51192;1.5663989;3.6130264;2.573617;-.48643401;2.6983552;.94197965;3.6440916;6.0385361;3.0504797;1.2058107;3.2705293;3.6314273;2.3079083;-.10324164;-.67975837;.57282931;-.50744122;-1.9232838;-1.5969477;1.9366062;-.39954966;1.020137;2.0186689;-.63781226;-2.5615876;.24703914;2.167897;-.1485994;-.11234751;1.4654225;1.31933;-.51391059;1.3491502;-1.4543114;.49317378;-.77959573;.16813283;-1.7788043;-.2190005;-.58004177;1.4854574;2.6167548;1.1376691;-.38069087;.34619015;-1.9904935;.042823508;.48944539;-.77678365;.064346254;-1.4429439;.41804233;2.3954892;-.90068656;1.5797149;-.86662179;.32875207;.99336863;1.5734793;-2.6892636;-3.3435419;.1208754;-.71456677;-.43935791;3.0157979;.17118058;1.9509909;1.1296296;.71225721;5.5209584;.54912329;-.79087001;-.0080128703;3.0310223;4.3784895;2.1553774;.36174762;2.7268353;.9106698;.91446441;.70605159;-.081490964;.76463145;1.6329162;4.2393236;3.284456;1.4142785;2.3031211;.66898447;3.5217929;-2.0102229;1.9072105;1.8884982;1.4272523;1.4331062;4.3424654;.014187342;1.5650303;.54356986;2.239917;2.2087309;4.0256882;1.8239903;-.070713274;.35033607;-.25626245;3.0965569;4.49121;1.6391135;-.01182068;2.0407977;1.9738684;3.3733592;53.091946 +-1.2570434;-1.1294242;.64778852;-.45249662;-.38606709;2.5279806;-1.589293;1.1627631;-1.1367564;-.88148451;-.85741985;-.80616647;.26863182;-1.1044947;-.064395048;-.053382143;.81232589;-.19259243;-.16054516;2.6501737;.7362929;1.5246379;.39910117;1.9980893;-.20727891;.41347894;-.47358972;.46240896;.84436709;-.22749464;.54619634;1.6137;-.2329898;.96165115;-.20808625;-2.7122223;.17433016;.16547942;-.65632898;-.34373707;-2.2682641;.32401553;-.61392105;-1.2428784;-.11642371;-1.9264998;-.1600052;-.7685582;.53003198;1.0958959;-2.146163;3.8813469;.058879901;.24492455;3.6754599;2.2637026;.46350706;1.8022578;.11106176;1.3580227;-1.3184347;2.791405;-.64512169;2.3538973;-3.6598594;2.134747;-.26144242;3.2014151;1.4278082;.84385329;-1.8448212;-1.0829611;3.3451023;1.8469251;2.5589783;.10032622;1.2524072;-1.6553404;-1.284773;.19811134;2.6271925;2.4453599;.92554432;3.7456799;-.11691866;1.6541722;2.847281;1.1936976;2.5272331;2.201246;2.0862827;-.70701903;1.7006118;3.9583228;.86377537;6.1643767;-.20695554;2.3569782;1.4713378;3.5407727;-1.5649039;-2.1032426;1.0282845;-.38300946;-.73216504;1.3034126;-.97209609;-.46894938;-3.3364642;-.76833582;1.4560279;-.62647367;1.0085195;-.58683634;-.041166708;1.4337504;.88660312;-1.8474779;-.3073391;2.5981531;.17764801;3.1894798;.79215342;.65753818;-.85968369;1.5858774;-1.0445641;.51540798;.94873047;-.75053716;-1.3365005;.81404126;2.2826662;.37392527;1.4104137;-2.4324005;1.6145699;.30406231;-1.1444916;-1.4597144;-.98863983;.87571502;.80269474;-1.946104;1.2794241;.21662237;1.1681279;.89878041;.23946452;-.034735899;-2.3579116;3.9423928;-.4901177;-1.8011597;2.3080621;-.17715135;1.0233241;1.8326266;-.40979961;.10516904;-1.180286;.92490613;-.94142509;2.8346062;-1.6678934;2.597286;2.1664715;2.5072691;1.6003128;-.93602669;-3.3445778;-1.7461056;3.4290993;2.0289893;1.25822;-.72383016;1.5867177;-2.0613737;-.034348872;1.0751143;2.5194809;3.1062865;.5890938;3.4598734;.69895482;.2093955;3.3173618;.37336639;1.9752382;.29165062;-.5175814;-1.7058991;1.3353276;2.0791564;-.076887704;3.0737934;.60843718;1.3973515;2.395772;2.5243161;32.695179 +-.91391689;.61299944;-1.9552573;-.11833796;.24620447;-.39222899;.84606916;-.034760993;.69182938;.85573238;-.54091603;-1.6237502;-.16624458;-.09705893;-1.3140424;.79898512;.66700757;.071299925;.09733554;-.76532257;-.39011395;-2.1606443;-1.3411469;-.4119136;-.3716957;.73361278;-.77697486;-.76384431;-.55489939;1.1028157;-.84078711;-.23031588;-.071623251;-1.1991662;1.9849583;-.71023625;.49902964;1.6607547;1.1373416;-1.1194562;-.27886602;-.90465689;.18515328;-.85592031;-.2813282;-.043588236;-.5691334;1.2595481;-.91128463;-.099199921;3.0315943;1.9651798;.0096629951;1.8630424;5.3661027;2.8055453;6.3440456;-1.768896;.11585088;4.6823311;4.7003503;3.2896783;2.8001475;3.1894209;1.8873662;4.3286209;1.561268;3.6239386;2.2712677;3.88817;1.3198109;3.1549535;1.2120861;-1.2014956;3.1809905;4.1963096;2.5767903;-.61171031;.70946139;3.0256066;-1.1696346;3.0803926;2.4402208;2.8558998;.40716076;2.881665;2.2665734;2.2341185;.1112768;1.8953401;-.62274569;3.2818959;3.0595903;1.3770705;3.0285473;3.9306526;3.4541669;2.0106373;.7457642;1.6624969;-.82926244;1.5296946;-1.9294863;1.1216828;.20726329;-.99233478;-.47203034;-.24263394;1.7282754;.32254612;-.46856183;-2.4869161;-.64688206;-.77067554;-1.3271885;2.0941756;.66696298;2.1399512;-1.4867789;-1.475063;-.77733994;-.45837227;-1.9666624;-1.0070789;.010690636;-.21040614;-2.0182796;.33968061;-.58638644;.055646203;-1.3531214;1.2463003;.25928426;-.83833319;3.9362588;-.5135023;1.2137078;1.4175048;.35227576;-.77626866;-3.4479115;1.2124788;-.1246096;-1.6957473;.50728571;.95395529;.38554621;1.8650001;-.1847197;-.5676859;1.205889;3.2112153;-.20300536;.94523495;2.7547731;.049227897;3.6360595;-2.8480606;-1.1408288;4.6192994;1.9940645;2.3911128;.94314629;1.5372543;.3810038;3.8321013;.045934133;2.2199385;1.3076724;3.123461;2.0517352;2.0954399;.52319193;-1.7675751;2.0682592;3.1744654;2.8622379;-.7391488;-.67443019;1.2661875;-.53044659;4.0599279;1.1617695;.027603999;.41181073;2.4859254;1.0051579;1.0245038;-.99264652;.65044892;-.068772703;2.8586674;.9287852;2.854425;2.8534865;2.4001024;2.3072143;2.6507845;1.4215435;.61355042;51.522118 +-.046572171;-.93450391;.65939736;-.541731;-1.0967478;-.50636679;.1320318;-.78221744;.13397156;-.75668305;.90536922;.017843839;1.5018288;2.7587755;.34716535;-.91679657;-.95113271;1.0349232;-.088773765;.84293336;.40062693;-.036520965;.8767094;.10532162;-1.8871075;-.814412;-1.2209979;.86269999;.10323514;-.74380678;.14093934;.74421299;-.99698699;-1.236923;-1.0045592;-1.2480961;-1.1861829;-1.8039986;-.51872092;-1.034647;-.073223792;-.77876884;.47122288;.29853126;.80580205;-1.6113921;-.33170855;-1.5444787;-.2769396;-.42742378;2.563086;4.1253514;1.362311;3.740376;2.0151908;4.8415675;2.5871322;-2.0957751;1.8940392;.99484408;4.0515985;6.7239108;-.55585134;-1.0914507;2.1531439;-.058795538;-.80988854;-.61981237;3.6853323;2.6796739;1.0451699;2.6989317;.97655314;-.93109322;.7887221;4.1132002;1.5444878;.37372753;1.4191989;4.2398815;3.0498915;6.1410179;.056096911;3.5274155;2.6615267;4.5061102;2.919889;1.6908951;5.306725;1.4147961;.89042932;-.6339671;4.2549744;.82188028;4.4043689;4.6304393;-.44028181;2.9678218;.56727588;3.1755111;.63338453;-.14247125;-.10105275;-.5491277;.40649891;.40163273;1.0284477;-.056063343;-.19998416;-1.3674822;1.336816;-.7649619;3.0791976;1.7666824;.21824785;.089557275;.073532626;.45556024;-.018249504;.048325557;-.26658663;1.0543519;.68234706;1.6063374;-2.4567082;.32926717;-2.3327205;.67744112;-.44930837;.62200582;-.92420924;.54544085;1.2922599;-2.3768592;-.62793046;-1.766497;-1.435173;-1.6741885;-1.1104034;.30038965;.19791643;-1.1166664;.74822414;.81059903;-.33246523;-2.1636586;.092168741;1.1577133;-.33321267;.92488438;2.5668333;2.4294972;.50321126;1.3361357;3.1593883;2.9073446;3.3426356;-.1778788;-.30928257;-1.5265197;2.72295;6.1718621;.76692903;-1.4442816;2.0243754;-1.7975774;.7254588;-.63652366;1.8192462;2.2814147;-.098683573;1.1161317;-.31056049;-1.3543272;.68562865;1.1496149;.97905636;-1.050074;1.1333116;3.4309387;2.1238091;5.9306488;.49326983;1.480305;3.2489529;2.9195507;2.4998846;.80636567;3.3308854;.083159953;1.3173243;-1.4023274;.78410298;.80230922;2.3199458;2.6018362;-1.6233833;3.5909803;-.33445466;2.6792691;52.930553 +.69236827;-.76499629;.10990354;1.0187263;-.55966353;.43823808;-.3512837;-.46372089;.15040398;.35253221;.016670112;-1.1890908;-1.6321645;2.3045256;.32584518;-1.5765581;.1573603;-.52719861;-.79720098;-.81773436;.15245175;-1.5634047;.18871315;-.1701514;-.77948534;-1.581233;-1.5804539;-1.4470056;.21108924;1.0289022;-.34627044;-.16751128;-1.3493743;-.83374912;.3219786;-.99808472;-.14509358;.97196817;-.19424179;-.56794858;-1.6491305;.42618677;1.0356232;-1.4838091;.5108096;-1.420173;.39178088;-.26520708;.66570485;1.1766468;-.017236253;1.8236132;-.12531069;.85506696;-2.6619256;3.7307343;1.5172274;-.79452997;2.6542408;-.78230321;1.4952669;2.0670977;-.56359452;2.2103918;2.2247257;5.8420157;2.7495811;.038276207;2.5315349;.97129965;5.2106814;.051069252;.31724313;3.1719079;1.0875796;-.32623777;1.2212176;-.65464634;6.2407293;.72118592;1.9412626;2.0964272;2.2438715;-.94746131;-.63249815;3.3928511;-.94437277;3.9372468;3.5281656;1.8291198;1.4783322;2.9002328;-.71680236;3.5378375;1.6708082;3.4454732;4.5469532;1.2123436;5.1627226;.32229629;.69787961;-.12209564;.4575704;1.2750771;1.4066511;-1.7882835;-.5710724;-.95476937;.092234708;-1.1309931;-1.612501;-.041003972;-.83539593;.10127501;.80492806;-.7678811;2.3566551;-.29311395;-1.4406297;-1.4042565;1.0044546;-1.1085922;-1.8050537;.5782063;-1.3287688;-2.3871007;-.30293015;-2.1800635;1.1455891;.026811266;.40761733;.072865926;.3588278;-.89841449;1.7441283;-1.1361321;-1.3758689;-.74649262;-1.0293423;.51385707;-2.0038555;.45345232;1.4924612;-1.1591707;.012139016;-2.5490208;-1.6612757;-2.3437324;1.175693;.87480009;.2245582;.25639394;-.80919749;-1.5896257;-2.2578416;2.1903577;1.5871066;-.48435211;.2486559;-.14205521;1.9159952;1.6984196;.40805119;1.2722329;2.2201579;4.1089911;2.5351431;-.9567008;.31746954;1.1702185;4.2994866;.38352102;-1.18453;2.6065125;.4607437;.72514427;1.871992;.34808353;3.923104;1.4477105;2.7918863;2.3753316;.48860112;-2.1780543;.11699162;2.4043207;-.46525437;3.1276207;.46943912;1.5752345;.87927359;1.0015941;-.23906453;3.0377288;2.5130091;3.1257608;2.8958137;-.89133257;3.2053459;-.081803195;39.952969 +1.2159353;1.3255459;-.64288777;-1.9343656;1.4489485;-.40036798;.50350666;-.43015635;-1.1520371;1.1263894;.36448595;-.26096705;-.98635942;-.91908926;-1.0477835;2.5539818;-1.148572;.86617309;-.25329652;.22371037;-.029196179;.41713083;-.047970418;-.75420189;1.5422732;.26009461;-1.0222394;-1.906189;-.64320099;-.21895494;.63140148;.69769251;-.43886679;-2.2485251;-.11095677;1.129566;-.1737662;-.449485;-1.1596462;.25076684;-.32636827;-.0062679276;.47702092;-.2722944;1.5207053;-.36172459;-.010675295;-.13607965;.091691099;-.90670252;1.3399607;2.3583326;1.7474524;.853082;4.0868416;2.0660713;.46586698;.43050373;4.1544099;.59690642;3.551146;3.6518285;.24791259;2.5011051;.46744406;1.4695209;.79057747;3.4804835;3.9854245;2.9251502;2.0575829;3.6216133;2.3461013;.81474972;3.8262429;-.29344627;1.332057;3.4291346;.91629881;4.3877158;2.2715776;1.8215977;2.9423218;-.29185355;2.60991;4.2669997;2.2363455;1.9442787;-1.0504591;1.0037475;-.22895052;-1.4150263;3.7464778;1.1508946;4.4112453;.77454829;.89712101;3.3205097;1.0899889;1.6240528;.21079752;1.4874521;-.22598124;-1.2309674;.38323233;-.17371592;-.27584836;1.2231525;-1.4884648;1.0920769;-.53259921;-2.3851814;-1.1634067;-.27603698;-1.9686404;1.8737133;-.73501402;.3371641;-.29233837;-.48890173;.43520433;.13849325;.90303731;-.37389737;.98023409;.70071244;-1.1345023;-2.2733517;-.22236109;-1.1645229;1.7567456;.26019678;.46057799;-3.3694422;-.41667822;.95366853;.15012194;-.59452689;-1.1273913;.55046695;.33028594;.79526925;-.054888412;1.9940948;2.1185813;.74462658;.021248659;-.16056959;-2.7146251;-.58327204;2.0728281;1.5173426;2.5457506;.576922;4.33358;.91117609;1.048888;.16853409;2.4698491;.54591197;2.2825711;2.4141455;-.01201517;1.9424701;.53528953;-.96930605;.027135361;1.4803611;3.7673693;3.1601486;2.5447829;3.2667665;2.258383;-.57890683;3.1835139;-1.7205402;-2.5176203;1.9622996;.27715489;3.126497;1.8773082;1.4804254;2.7726195;-.34034166;2.3305163;2.2577305;1.5967774;.78016281;-1.4621483;.12837075;-.72373188;.61014545;2.4750857;1.7234229;4.6438513;.76312155;.7462694;.30679747;-.97357035;.72456586;50.622177 +.15718499;.24892136;2.1246059;-1.5584891;.96058273;1.9406213;.88489103;.33605871;.44730231;.42393619;-1.5164368;-1.1267017;1.1609145;.47889918;1.216707;.88533258;1.7038091;.44783756;1.6405071;.31825143;-.90251505;-.083219528;.18681425;.65263259;.74074435;-.0049860701;-.17244115;.79633868;.06128072;-.94848573;1.3106921;.17187013;1.9904925;.65622061;-.89757478;-.52995217;.84992981;-.21918656;.81877083;-1.4689623;.92144352;-1.1199265;-.79096794;1.2085096;-.23475918;.12147685;.043057244;.80346119;-1.6172163;1.3530775;1.037582;4.2057519;1.5975471;2.8107414;2.2380819;3.1306682;.59489739;2.0068154;1.5350862;1.1832381;-2.018214;3.3739729;2.5681458;2.129473;-.032770056;-.13811265;2.0106988;5.5518699;.85524058;3.479728;-.36163235;3.2968864;-.57978249;2.6726918;4.5182405;2.8870888;.55466521;1.8144537;2.1502626;2.4504485;1.0940609;.27775124;3.9124944;3.1548114;2.4931686;6.3708119;3.4887567;3.0119443;3.9631665;2.0783854;-.14776869;6.6263742;.04638911;.49214581;1.7997675;1.5778966;.15243423;1.516812;4.1998963;1.6653494;.31938511;.11348118;2.6437719;.98964334;1.8630683;4.5079889;-.058603693;1.6687901;1.7118417;-.98436981;.19093625;-1.5793815;1.5687462;1.0082269;1.4908684;1.076319;2.6156492;.99567091;2.0297096;1.3580151;-.92611641;1.1354327;-.48625907;1.4477895;1.3558929;-.023306157;-.33833098;1.3028461;1.3296425;.10723267;.25116444;-.78113705;1.3283256;1.364055;-1.2982273;-2.1792998;.28039241;1.5942612;1.3043877;-.76458937;1.688203;-2.3909154;.0026262631;.7579121;-2.2134964;-1.7380916;-.078042813;-.48021039;-1.5199307;1.4526377;-.83494699;3.2433498;-.2085294;.22976276;1.8467084;2.3099427;.63371259;2.1523216;.38383165;-1.1782484;-.66242528;1.1638256;.2851032;.60570955;1.2631837;-.1570577;1.0256536;3.0583012;.97012788;1.7666371;-.44577336;1.9829763;-1.4994664;1.0846874;2.7608507;1.5386778;.54768687;.7122851;2.0257373;.42859554;.54525858;-.19839874;1.2668841;-.71147484;1.5076319;3.6577895;2.9419839;1.1101353;2.0303295;.83373475;-.64609766;3.7795098;1.1490874;.63539493;2.8904092;1.6229595;1.1863858;1.9485507;1.0164756;.84653026;59.555954 +-1.6831679;.039509289;1.2371335;1.3721544;.46086863;-.63436276;.81526899;.61699927;1.9275788;-.85066432;.040762711;.65712082;-.80591971;.42899039;-.79084343;-.27110082;-.18877225;1.7307019;-1.1212553;1.720414;.55105418;1.1365809;.11098482;1.2434036;1.4612954;.50396585;1.8904163;.21990643;-.29786965;1.5225222;-.7956863;-1.9911816;.82025111;-.55480033;-.083908275;1.758703;.079316854;-.92644298;1.0600742;-.79410177;-.48996934;1.0901104;1.1020751;.47139451;-2.0446022;.92448509;-.52074325;-.79486555;-.1905494;-.97471428;1.9387867;2.2749586;2.1730459;4.4066992;1.5850724;-.32473376;1.4293095;1.8498875;5.3616061;1.7131127;1.4216028;-.79048562;-2.7298319;1.9293872;4.4742517;2.7183161;4.2230077;2.2009945;4.1105261;2.5452461;.22701897;-1.0213799;1.3837857;-1.3400182;1.4087934;4.5913033;2.013531;.21459663;-2.144958;1.8762808;5.6829205;2.4107118;6.5774174;.65170264;1.0045578;5.7964597;-.36021897;2.2238772;6.5850019;-.13738453;.173207;2.7845864;5.2754269;-.75780672;5.9198017;4.6896811;4.2280407;5.5740323;2.8350825;3.2797177;-.34034497;.5377894;-.1003254;1.3017559;1.3646754;-.77790761;.42745748;.93026799;3.7665498;-1.0605756;.3834337;1.3033799;.45048493;.39008752;-.46448591;.10811619;-.99480569;1.1590897;-1.0849767;1.899839;-.70122689;1.7089676;1.2277025;.82869571;-.38451466;-.41682345;.53002262;-1.6727247;-.88122064;.95624673;-1.3458083;-1.7128184;-.063533679;.074362993;-.40256646;.96665484;-1.0378481;.24092165;1.0115111;-.077517338;-.083692953;-.19345179;1.2845768;2.3559389;-1.9320227;.6307916;-.8025369;-2.8856397;-.61319947;-1.4362612;2.9608617;1.2710415;1.0309405;5.0459199;1.6382082;.0402763;1.0419153;.27459952;3.8718557;.30998993;-.14206743;-.77426356;-2.7525249;.5326215;2.8452969;3.0622885;3.0725944;2.165535;2.563647;2.6492944;.7242294;-.080320776;1.1395149;.026821921;.98546273;2.3876717;2.2912285;1.6564416;-1.401109;.097511664;5.4157968;3.1341567;3.8862085;-.81592786;-.77212054;.99690562;-.31591034;3.3747504;3.9621942;-.76401675;-.77020758;2.7112536;4.7267733;-.14539872;5.3799548;2.3414428;2.4613256;3.7576456;1.0481601;.96302384;61.708065 +1.1897924;-1.3106346;.025437774;-1.3533758;-.022835298;.69763488;-1.1186186;-1.1000621;.64940983;.15206732;.96145171;.26879588;1.8310715;1.902216;.03253492;-1.9042587;.83965379;-.015750816;-.95005572;-.58884358;.067998387;1.5075769;-.069712028;.86012721;2.3428233;.97224838;.44860718;.50705063;.53466928;-.67119366;1.7997077;-.29328284;.30237931;-.83751547;.96144283;-.11528363;.77970213;.56162059;-.16112654;-.6526739;-1.7982243;.82487333;-.76895201;-.25626928;-.85899794;-1.0194397;-.99201542;.76528597;.30330318;-.33583245;-.72858435;-.23835753;3.0645316;.46538121;2.2927804;2.3145993;-.63495928;-.13633381;3.9801478;4.0008421;2.277317;3.5496268;-.40971056;4.4096594;2.9394662;7.6801891;3.4938841;-.33752382;1.3413022;-.47203961;5.3334541;1.3999524;.14375678;.13704915;3.3459969;4.4498081;4.554841;1.0994329;2.2450738;2.0464396;-1.9422468;4.1834316;3.0958669;2.1267684;4.7534418;-.50844425;2.8120003;-.45542195;1.2272649;4.3606839;-3.8629253;.64366663;.23350424;3.4835193;4.4975605;-.89169556;.47481444;-.57757187;2.5506108;.76287079;.18588406;-1.6003795;1.7960482;-1.0333916;-.55794048;.11592796;-.52356082;-1.6648738;2.0002871;.91160405;1.7394251;-.47075585;1.8928785;2.0249748;.74117059;-3.556519;.50882608;.57071817;1.0069857;-.11101992;1.2461334;.92458993;-1.5977141;1.7312988;-1.6039879;.74034804;-1.1607929;-.23438224;1.1068089;-.23649718;1.2005646;-.71866292;1.2138256;.83226919;.60301644;1.4986639;-.20847075;.2052408;.23704156;.32877266;-1.7684541;-.37158388;-1.6762475;-.62556326;.20382117;-.1541816;-.34207606;2.6465292;.66042697;.178018;-2.1058156;-.4449726;1.5707502;-.88017124;2.4218125;3.0227184;.47827038;-.55467707;2.0390131;3.435147;1.4896446;1.0336204;-.85211474;3.5923829;3.4926975;5.5666356;3.4900296;-2.7955403;2.7115412;1.6121916;4.0412798;1.1068034;.98336267;-1.6838059;1.6743026;3.3309669;2.718075;1.1826339;1.5234896;.58948463;-2.0583756;5.3398571;.53039843;2.6116443;3.3991058;-.36270446;1.1498351;-.93129724;2.4567251;.79806095;-4.3843427;-.86961931;-.91110617;2.5901253;2.4052253;1.1907164;-.22741948;.84372103;.97588211;.69776726;43.220673 +.99257618;1.3592595;-.064867981;-.74722636;.25027516;-1.0254191;-.28178427;1.1813378;1.6060668;1.5537195;-1.1825061;.73296928;-.1776583;-.29195651;-.63635868;-.8327471;-.14795718;.24491993;1.3481148;-.9145214;.91053295;-1.4923184;-.52110225;.19348107;.89892495;.62590766;.18073533;-.40912592;.79567677;.074461989;-2.5213585;-.53524327;.10240906;-.51572442;-.093968876;-1.7451513;-.11968871;.31499344;-.8885842;-2.1645854;-.29334119;-.10813498;.62327498;.77947474;-.85277212;-1.1929485;-.01823391;-.046524867;2.2241747;-.29029456;5.2768836;3.8962104;2.3279915;1.4887358;1.3391612;6.4222469;4.3592038;5.8054366;1.9212048;1.9567292;1.8497021;-1.6587853;1.7558442;1.3554921;.83921546;.21625671;-1.184333;-.37984955;1.9968451;4.2684898;3.1197038;5.3059192;1.9270928;-.31860313;.49227551;-1.1278334;6.1696916;-.42079121;1.1803988;1.9742186;-1.7994497;2.1227646;-.23711565;.81926101;-1.6743264;-.028719362;.7422601;-1.5496652;4.6160483;3.4547725;4.2852931;1.0334382;2.2624369;2.2795255;3.3790488;5.1582689;-1.4070802;.5766567;4.426043;4.9127436;.4495385;-.72597009;.41916123;-.40535474;.27121782;-1.9052535;-1.0843014;.40305963;.60991591;.06700284;-.80438423;1.4064003;-.53895402;.66812414;-.59396052;-1.6034442;-1.519852;1.2966928;1.5856333;-1.3010103;1.3705071;-1.1455817;.36171681;-2.0643468;.24837136;1.1579566;-.397899;.32248729;-.21943805;-.032184649;-3.5221629;-.9259727;-.41049358;-.69664478;1.303584;-1.1527612;.94600767;.22072774;.62716115;-1.8213079;.22058772;-.55120188;.10975307;-.042616706;-1.8673221;-1.680249;.38121733;-1.4433845;1.2576928;-.6955477;2.7026596;3.2304797;.58144403;.58136809;3.6882951;3.8334558;2.7686279;4.149817;.84442616;2.2393329;.19129668;-.87138963;.48795962;1.1317497;-.66966331;1.1700104;-.3248862;1.0255725;1.4555215;3.8335299;.093953699;5.0622687;.90202391;-1.5797344;1.8290296;.14861985;5.926239;-1.7956022;1.1815317;1.7837503;-1.2821699;1.2840517;-.87098664;1.4863318;-.95954329;-.18567391;1.8455842;-1.6684759;4.327136;1.4410932;.89899635;1.3020433;2.219095;-.064489156;1.8148957;2.6493201;.4235543;.35664865;1.0942;3.202029;49.717857 +-.78032631;1.2444293;-1.0241278;-1.1516435;.44784743;-1.135221;1.1458864;1.6996113;.1673377;-.43568695;.52682471;-.5283224;1.6993929;-.97999901;1.6655827;-.45124289;.056460816;-1.3179132;-.26188499;.14881656;-.33873227;1.0148551;-1.5647137;-.79072541;-.38168654;.53666443;1.5088718;-1.4631279;.67181599;1.0818354;-.91157162;.91288751;-.013133412;1.6444588;-.37080386;-1.0393282;-.65199602;.88712054;1.5674406;-.14123154;-.026671411;.27186424;.41580629;1.9619383;1.0509125;.73316491;.33123562;-2.0787032;-1.5676444;-.017012043;3.537291;.95481557;-2.7315474;2.8693132;2.6569037;.11667606;-.050953012;2.5616975;.42941707;.066945821;6.2108369;4.2534037;3.051187;-1.2334417;1.4650321;2.830164;-1.0926697;2.9668608;2.3528821;1.662948;.25070974;2.0657625;-1.4479284;2.8990541;-1.3139538;1.3220621;4.1458049;2.525244;-.103594;-.65953571;3.4591982;1.7217789;3.5799339;.9222613;5.942163;-1.3548878;2.9535596;4.9377279;.11063442;5.4969907;-.16393492;1.1816716;3.9442933;3.5437772;1.3167328;3.7595391;4.0493145;4.5855718;1.4775697;.76340562;-.71244818;1.8243492;-1.5610132;-.61804622;1.1671888;-2.109664;.039969783;2.9879017;-.058509432;.39184898;1.1585032;1.2490871;3.1904168;-.094125524;-.086409755;-.30478504;-2.932461;-.44303453;.48586816;-.82099634;-3.6780622;.45535648;-2.014384;-2.6227391;-.93233389;.049446139;2.4225614;-2.3696916;.95045882;1.8632741;.034397747;-.96137905;.83491457;2.7901559;.44302461;-1.0789306;-.37872335;.9715544;1.599826;-.19025695;1.4378668;.91725397;.0017042081;.88198668;.79387176;1.8830419;-.35662255;-.44409549;-1.7532301;2.3824065;1.7376066;1.0941274;-1.9694617;-.10744865;1.6658235;.080446653;.30359384;.76766992;1.1855365;1.1821218;4.3658361;2.6842549;2.0992157;-1.4569204;.39735225;2.6333587;.39585108;.90718383;1.5827273;1.0994332;.23722805;1.1540383;.52235627;3.423568;-2.1035726;1.1885353;3.5401051;2.4806426;-.76102698;-.64866531;1.3896489;.93263835;2.9763377;-.17201407;5.1712418;-1.9529155;2.4550419;3.1074595;2.6570835;2.2869413;.74148214;.14018887;3.4000535;1.1960521;1.6446875;1.7605166;1.7302663;2.4340286;.56663811;-.76577163;49.294575 +1.5071141;.015225695;1.5659406;-.86005336;.21333894;.54621923;.9314819;-.11922704;-2.8235478;.025027608;-.36360881;-1.2257359;-.32629585;-.25545019;.66989547;.053008549;-.96799058;-1.0057441;-.41998121;-1.6742655;.24293196;-.85525131;-.59952664;-.84581745;-.55740225;-.75609404;-.60529709;.25328556;2.235543;-.67170423;-.89433974;.092520945;-1.4519929;-1.9343462;1.9473226;.52400762;.84211755;1.357554;1.1565051;.69474435;-.027234642;-1.2838277;-1.6890724;-.24739257;-.061683211;.42470092;-.65948552;-1.3649786;-.35342556;-.77442563;-.69633508;2.6944871;2.3572378;.33582449;3.0371273;4.9328442;.34160659;1.3531542;.56481028;3.5153685;-.74750483;2.7647953;1.2935019;-1.6013398;1.9479841;5.7879477;2.130316;1.4614736;5.8540988;3.9139693;5.0054293;1.6425456;4.4241886;3.2091558;6.1175165;1.5713522;3.9833701;2.8676476;.53550738;3.6061068;3.3557453;1.5967572;-.36304772;6.5691853;3.2324021;1.9851868;3.9857795;-3.9176464;5.2205281;4.8187499;-.48408175;4.4958982;1.7364123;1.4045852;2.0082669;-.41724971;1.2253245;2.0530033;2.4462948;2.6193058;1.7740837;1.4665073;2.2604249;-.3509945;1.5089037;.14456946;-.040292408;1.1628925;-2.4704683;-.63773561;1.0005752;.02925822;.39294776;-1.3593034;-.60644782;1.0084059;.034896143;-1.3135753;-1.1277307;-1.2472222;.3199808;-1.2948493;-2.2915337;-.52740878;-.65864992;-.80167621;-.53533238;-.18645069;2.6099892;1.1841589;.51284307;-1.5028249;-.14169459;-1.6872301;1.0368353;-.11422083;.69370705;1.0164988;.17896432;.36486083;-.81450611;.008193328;-1.1917847;-.88594347;-.31513453;-.04592488;-.41041657;-.12757243;-1.0957824;-2.0674357;-.039061494;4.2725229;2.0579591;1.0179625;.80493104;3.6659837;.2521733;-.61000359;1.970277;2.488955;.3837156;2.3237185;.39392132;-.42383525;3.2249181;2.6860352;.66455758;.97150397;5.1160812;4.1935635;4.8343582;1.2006691;2.2827713;1.1755359;3.8026474;2.2890229;4.5167794;3.2848456;-.2622523;2.489907;.28193092;1.2436821;-1.8884432;4.0414181;2.1275346;1.9536277;2.325479;-1.8661991;2.6619413;2.190129;-1.9662259;2.4538901;.56857944;.9649272;1.1100106;.99461031;3.0413265;1.4950045;.59569585;1.5926737;51.456028 +.35345158;1.2425969;.49031973;-.52378756;.37801605;-.87158442;-.40592903;-1.2686865;.10243043;-1.7752372;.96423882;.74156171;1.6594718;.13331415;-.26869518;1.1441226;-1.0579748;-.060921807;-.26646715;.45041764;1.7450631;-.023475843;-.18752183;-.9471187;-.80109257;.45893291;-1.2927052;-.96734703;.017609591;-1.1700675;-1.8255861;1.0420356;-.1155505;.07869754;-1.2403513;1.4009365;1.4429158;-1.7207941;-.35301974;-.75568122;.46305615;-.87663597;-1.5729506;.39044085;1.4842706;.82283807;.25622755;1.9316149;-.25757897;-.17571948;-1.66505;.73482513;.40252838;2.4819832;5.338572;-3.3934512;1.2824841;1.0448267;2.2024579;3.042202;2.6958554;4.5633307;2.0890005;4.5120583;3.9177086;1.1538315;1.555017;1.5762829;.68185389;5.4066639;3.5110486;2.4690108;3.8431435;1.9186459;1.4003088;1.5784543;3.0401762;1.3988771;5.0048342;3.1090374;6.6210675;.86533272;2.1834779;2.0080757;2.5927784;1.1525717;-1.0622663;3.0693462;3.7877953;-1.0783629;2.7989306;3.9065616;.78112096;4.5087714;1.582763;3.3530691;4.6312809;3.2817194;1.5212855;-.40605289;-.96564513;-.11373495;1.2963526;1.208684;-.16844611;-.67652613;.21205579;-.19681901;-.42610028;-1.4816655;.84041923;.77031499;.21574754;-.35941243;.021281997;1.4322976;.60650742;-2.0153682;.38148177;.096311681;1.0964401;-.6244188;.87125647;-.029646663;-1.2130085;-.6922307;-1.595837;-.086229816;.035844486;-.80558997;-1.35399;.44406673;1.1845812;-.21396114;.90604407;2.4306998;-.23842637;.38455698;-.51087171;.45274755;1.8702798;.26257673;-1.4896381;-.72044009;-1.3260471;.18194959;.84608501;2.2228377;-.88848269;1.3050442;-.095866218;1.1010475;-1.8542608;1.7686024;2.8486795;-1.3415484;1.1903514;1.6734414;1.7267174;3.9686141;2.1514709;4.4590092;1.7894006;4.6028438;4.3030658;-.1885929;1.3352072;-.21335311;.67334592;4.1306992;1.6762595;1.4745871;2.5110056;2.0077245;1.2784716;1.2284397;1.8445537;.35029465;3.9620874;1.1774203;4.6684985;.084335811;1.6832863;1.183308;1.0863001;1.1878084;.81060052;3.0165482;1.8393527;-.26258543;1.5449083;2.0842319;.38861066;2.0405931;2.1776183;.87353635;2.1405263;5.1339345;.45236516;.28949735;54.842934 +-.028438661;-1.2357941;.031993791;.28981483;-1.008037;-1.1113837;.46134326;-.70974922;.50189131;-.30605814;-2.0267093;.41368157;-1.1355435;-.69576359;-.11143922;.69100654;2.1366723;.82913172;.8853752;-.28122887;1.4568621;-.38834283;-.22568449;1.3448809;-.07077194;-.13960877;-.94217515;-.6754781;-.2983059;-1.6960472;.95811701;-.99881887;1.2962257;-.42329624;.39495668;-.54479855;-1.8043048;-1.6629307;-.47572303;.20988819;1.5066087;.051387955;-.01456172;.083476581;.34150833;.13883938;.65902776;-.19852374;.87309074;1.1376451;3.6359093;3.6684251;5.0917153;3.3950593;3.4454491;1.3804957;.92739141;2.7051246;.28005511;1.0513922;1.8761035;1.7113109;-1.0481082;4.8605738;2.4854155;-.15177923;3.6772132;4.5580688;4.4908462;.49679887;3.6239078;2.3324583;1.426278;5.7336373;1.2852814;2.7099543;5.3536062;.15993556;1.6784294;3.1402819;.48432958;.8940478;1.441794;1.9935454;-2.2747636;-.20584194;4.3775191;.48105571;2.3954921;4.4343996;-.34140456;-1.4132305;-.11923762;3.315383;1.0190763;1.8329324;4.6269102;1.1082861;2.9111514;3.5670369;.18735453;.46134546;-.10194021;.24148859;-.68314213;-2.1976299;.25609556;-.11967212;-.97351354;2.1557138;-1.4710529;2.5923193;-1.7197975;.82183361;.17967057;.54630232;1.4386853;-.024921777;.90534556;.129722;.78198671;-.19266042;1.17;1.6726781;.46442422;-2.2347763;.32992265;-.68340498;-.39213783;-1.1002501;2.581356;.37570843;.65250373;.31783709;.097831696;-.4879778;.618801;-1.4137453;-1.0519513;-.74474245;2.515465;.833507;-2.1545093;-.81092882;.067932092;-.9718495;-.90334415;-1.2359382;-.54586828;-.27407038;3.3620434;2.8685703;3.9922714;4.6972413;1.5156317;1.8390471;-1.1921922;3.3178394;-1.85144;1.0275912;1.1471801;2.887058;-.60260993;3.9647334;1.4292759;.50112253;1.9885149;3.855196;3.3973234;1.1822268;1.8349823;.19054247;-.098048262;5.0909939;1.1645929;2.6297712;2.7517016;1.6075357;1.3964947;2.0645502;-.89379615;-.91841865;.082986534;.13712773;-.51777834;.0063785794;3.4389114;.28400663;1.7182027;2.7141716;-.75787938;-1.1416225;-.096641093;4.3088202;.55308127;1.711763;3.4592824;1.0560685;1.2382134;2.2782421;49.513264 +-.39888737;-.33227783;.25749496;-1.2403218;-1.1632086;1.7669339;-.6536665;.29193634;3.3119292;-.053138494;.19335972;-.83218724;-.89933991;.012812654;1.0200622;-.21881546;2.334697;-1.3795617;.7744242;1.6203353;-.66613442;-.89152956;-1.6984212;1.4429581;-1.3607656;.43990538;.69062936;-.53916365;.24710041;.12096988;.45007336;-.0051447679;-.58539218;-1.1875994;.40207252;.27099094;-.72484052;.73704672;-1.1229782;-.62083697;.48629504;1.2895424;-.61474049;-.38119888;-1.0248913;.8024714;-.27684745;-.46464506;.76443666;.7297923;1.1803705;4.3019342;3.8397989;.80604661;3.6255517;5.2657003;5.0323596;3.0696008;1.9296207;1.350521;3.3477468;.14203158;2.2607775;1.7809453;3.6890156;2.5546832;-1.109754;5.0847616;.28538731;2.3544753;5.4505143;4.0625019;-.21885404;.035859041;2.0513008;.71317989;3.287358;2.2769907;-1.0284866;-.8999781;3.0844004;.78632617;.24746139;3.023227;1.6425642;5.7408266;4.6499734;.14441146;-3.2447701;1.671382;4.2267346;2.8160481;4.2795167;3.1771903;1.2721311;-.74379182;5.7389584;-.42424965;.61595082;-.9590438;-.94746482;-.30335635;1.3742818;-1.6947572;-.62796295;.60744154;-1.6834084;-.69247913;3.7076249;-1.1011518;1.3614631;.2231342;-1.4729606;-.1007949;.34377253;-.050548736;1.4885492;-.82640618;1.6445179;1.3399022;.015869046;-1.0999513;-2.7018368;2.2274768;.45631906;.53627044;-.39667663;-.90352058;.74531603;.76572859;-.92077279;.25199449;-.59755945;-.99019063;-1.5312421;.00054629974;-.40266022;1.8679892;-.69810814;-.97575802;1.4265263;-.12286024;-.15364034;-2.8733096;-1.5751985;-1.1192212;.037856139;-1.7176318;-2.5962775;.22929506;-.083656944;3.4239633;2.6652522;.018466461;2.8479512;1.8673872;3.9211118;-.49242607;1.2945385;2.1966255;2.8459587;-.61333168;3.4155009;1.6887754;1.5416411;.2294828;-2.0533631;2.8738568;.81540197;1.9440757;2.6553159;3.4070075;-.48553711;1.3651692;2.3865335;1.3116076;1.7956764;3.5944257;.63661426;-.9851073;1.1368107;-.59099627;.34190547;.15487769;.69802999;3.4582684;3.7920988;-.3697792;-.83391315;1.3189266;2.9862487;2.1275525;3.6823504;1.0293251;1.9530127;-1.4236794;3.808033;-.1769768;-1.1032978;-.86696786;55.830597 +.49384588;-.62652308;.30080259;-.036421571;.077069446;-.65010142;-.47525865;.91061014;1.1773952;-1.6177213;.60561675;-1.2776537;1.1700604;.42224163;-.34955081;-1.3543279;-.10315584;1.4553154;-.54575247;-.36203137;.78901523;-1.8673797;.73988855;-1.2123344;.28715038;.30540708;-.33091518;-.72752768;.47897306;-.4719438;-1.1696141;-.33115715;2.2446647;-1.463045;-1.2088975;-1.2476438;-.58835238;-.22919171;1.4403667;.36658597;.17429323;-.40462497;-.44836253;.48501825;.906995;-.35256618;.24515958;.071087286;-1.7391586;.61626369;2.2832699;2.7447834;4.3684936;1.6210209;2.2929196;-.97657424;1.4424214;5.1125751;6.2911038;2.0791893;1.7764407;1.9106157;3.8905725;-.33790475;1.351492;3.0502493;3.4210899;1.8829179;4.6269321;-3.4288878;3.1833756;1.2243398;5.3801966;2.4668162;2.4403219;3.170131;.69313073;2.8862941;2.3503082;5.9403934;.24390259;3.4323387;5.3855848;6.1925774;2.0064428;2.4788988;.049634356;.32642335;3.9773614;5.2423244;2.8180084;1.9222292;3.1558735;2.5252025;6.2226052;3.1378267;1.9823763;1.3661804;3.5323622;2.8862357;.66777015;-.75815642;-1.1891342;1.0711677;.82835346;.31942657;1.3251741;.42194974;1.1566561;-.62159604;-2.1784353;-1.1764216;1.9256797;-.48681942;-1.4659164;-1.0211252;.54335004;.74070561;-.54203284;-.60468942;.90662444;.46869355;1.4552935;.44651622;1.0662543;1.3781298;-1.6028661;-1.6580502;.98365009;-.077408701;-2.5377083;-.81828076;1.3066853;-1.3219771;-1.3391423;-2.5404205;-.026697887;-.36650038;.28564313;-1.470937;.77091628;.41339692;.13269739;.20308624;.52237332;-.93360341;1.4304826;.50827557;-1.341262;-1.730177;3.2325883;1.6211133;3.6861317;-.0032363471;.76867014;-.6852417;-1.4883628;2.5562265;6.0692511;1.2687699;2.4055648;1.4088914;2.0428405;-.61177886;1.8261428;2.657135;3.1176767;.8383007;4.7172318;-4.0103674;1.8019748;.88864911;4.4023619;2.1158237;.68363702;1.9288223;1.3727527;1.6239625;2.2137609;4.9506989;-.30727291;2.8861737;2.3584511;2.802669;2.3713653;1.9279493;-.54795909;.0060503241;2.7806077;2.5738919;.080536038;1.3072362;1.7067111;1.307152;3.7397997;1.2221671;1.9436477;-.4595364;3.0761266;.42258659;65.965553 +.9157396;-.3396205;-.85220611;-.24583417;1.2770317;.6054796;-.96463376;-1.3479114;-.77842671;1.2906489;.33059588;-1.0250843;-1.2251066;1.2215271;-.53200799;.45781893;.1660165;.037052367;3.2402322;-2.749522;-1.1595662;.67323291;-1.508692;.085505769;.062242199;.57371825;.67665291;.77060866;-.95850098;.5182699;-.053155389;.053083636;.41717651;.058505442;-.92846775;1.9764006;.76952779;-.44100556;.34270343;-1.2396443;1.0606885;1.1070542;.56836802;1.1755487;-.67133987;-.38555336;-2.4402261;-1.1081583;.98655611;-.12456021;1.0540103;7.4640255;4.9702983;4.0512977;4.9577475;.79644495;-.59940118;-.84402663;3.5654764;3.1946959;1.9673073;.44175962;1.85558;.42524791;1.7145512;2.9270453;1.6310887;-.65352696;-.19690172;3.1365259;3.0666451;2.8026047;.15746051;-.58963448;1.0042875;1.5316004;-1.5143055;.77267122;3.1266193;1.5541929;3.5982735;2.0503223;1.9189439;.1045872;.79341656;5.0577521;6.2662024;1.2681769;2.8822393;2.8517628;2.3439078;3.2193401;1.7391268;4.6235132;3.187341;.78657943;-.78902858;3.2560732;-2.5708148;3.5360804;-.18655743;.12692076;-.14946444;-1.7237835;2.355365;-.54677761;-1.0533319;-.75749487;-.75446248;.19633552;-.16976947;1.4228824;-.66185409;1.3198369;-.5137378;1.1591127;-1.3537637;1.3494096;1.8076653;-1.3263816;-.038707525;.9289242;.43421471;.32632118;.68439871;.22257103;1.2531711;-.777771;-1.568704;-1.2994689;1.7138406;-.63544554;-.51901776;-.80377966;.71827418;.52438867;.38652897;2.2257352;.80013233;-.77120239;-.20602904;-.06547948;-.91648215;.68456972;-.27327093;-.92987514;-1.2893901;-.41858175;1.5259405;-1.7860839;.73403907;5.438179;3.6461499;2.8630559;3.3905137;1.5390047;-.62149471;.1472218;3.1063161;3.2572455;1.0024241;1.2638849;.26080346;.29123724;2.5344369;2.3773761;1.7984641;-1.7828621;-1.879598;3.172123;2.6733615;1.9828491;-.18855995;-2.1057885;1.3699408;1.3654613;-1.6726944;-.75614882;2.8599098;1.1261483;1.333724;3.1415713;1.6328411;-.83301669;.41826299;5.8716974;5.934123;-.086424738;1.1267143;.56355608;2.8409951;1.4807791;2.2905753;2.4179323;3.8170254;1.3296286;1.0761318;3.5657086;-2.1565289;4.4241419;46.040211 +1.7459033;-.25242329;-.9217065;.52588832;.19239448;1.210683;1.6796496;-1.4187695;-.64845085;2.0585523;.06616459;-1.0155734;-1.0745286;.2648685;-.94918513;1.08386;-.14780857;2.8698318;-.48263192;-.7394641;-.51675427;2.5574396;-1.011916;-.66174895;-.75479567;-.53407884;-1.6466535;1.0281336;.86291718;-1.1715133;1.4101415;-1.0801061;.75350523;.60363108;1.129331;-.32854316;.0378922;.10937667;-.22122942;-1.1278722;-.57183456;.63027418;1.8483225;1.202202;-1.2201858;1.8303115;1.0696837;.036690399;2.2615495;.38298967;.98843813;4.8995061;.84240061;4.7418036;2.3271224;3.4127295;5.0501513;4.7398419;2.6183124;-.20522015;3.2855363;1.2142882;1.2876543;4.742662;3.5212188;4.7428331;-.8388567;3.4235137;1.096933;-.83049411;3.4397843;-1.5924402;-.85417318;4.493988;3.3567152;-.25376645;-1.8655933;2.2344453;2.6192386;1.9234388;3.9819098;5.2858858;3.4293602;.282547;1.3334432;4.2720771;5.0217075;.070258543;2.6966772;.27391145;4.4911518;2.4999907;1.0119702;1.9117137;4.1235266;3.3422799;4.7213831;.61741102;2.3161623;2.0196722;1.5803555;1.1757374;.67576331;-.47548595;1.1510526;-.10272;3.0942752;-2.5956178;1.3593043;3.798099;-.2294897;-.79027849;-.949211;-1.3612792;-.37881029;.10803489;-1.4366919;1.4375014;.37027636;.16532983;.41094676;1.103882;-2.1998124;-.37482229;.59164226;-.051004659;-1.0831279;1.1841444;.58018178;-2.107842;.19725762;-.71849209;.95304292;-.40335533;1.9339001;-1.4435066;-1.3893825;-.040957358;.16848162;-.55130231;-.13639984;-.44675961;.09112528;.4748266;-.30908585;2.0261834;.19922636;-1.944555;1.9819378;2.017143;-.22328597;3.4612558;1.3775916;4.3806686;.92894185;3.0760639;3.6008129;3.1234434;2.1274061;.44762734;2.5670674;1.3714405;.92321122;2.6984911;2.9518847;3.1847308;-1.5572795;1.9147193;.53446108;-1.1674488;.44066015;.23150238;-.5367986;3.6125708;2.6023259;-.33890963;-1.1601607;.23847422;.91119874;3.2878556;2.2443576;4.0505724;3.2491033;2.5418189;3.0987985;3.2198722;4.1086416;.04235157;1.7941408;.44913048;2.6850076;4.0938168;.8028869;1.8750458;4.6791196;3.3067925;3.2434101;-.91841078;1.8126454;.34630924;71.376816 +.049685728;1.4354199;.35675639;1.4209039;1.9008311;1.6627113;-1.0308008;-.71545768;-.52035683;1.5071499;-1.4341906;.75191033;-2.4390945;-.35409746;-.31618881;-.89629376;1.9038911;.93092799;-2.1671233;-1.6603007;-.85641605;.55457479;-1.5298642;-2.2249796;-.017024588;-.42289248;-.0044738473;-.21496283;-.88374603;-.42805308;-.79513413;2.225847;-.94435203;.20127504;1.4289482;1.0273193;-.91147512;-.24849747;-2.1304076;.90604496;.84682906;-.62952554;.24554868;.75332659;1.1090465;-1.3755637;-1.0209391;-1.0886794;-1.7306917;-.14212523;2.1866252;2.5638337;3.3319054;2.3110321;1.9209141;5.9946318;-.54891568;.45599711;2.5583785;1.1458617;4.1781092;3.5984695;2.4235134;.25478393;1.8778003;.18601753;2.9038255;5.3791327;3.2262022;4.3015027;6.317821;2.2327178;2.0992882;2.0450099;3.8772438;1.6408799;2.6865926;1.6572603;4.0290065;.040249798;-.9514187;3.072571;3.7242138;2.4353058;.84564704;1.3614786;1.002925;-3.7836387;-1.2561622;2.8142221;.87263906;1.7315614;-1.8831432;2.1567156;5.5492978;5.0557227;3.646754;4.3006034;1.1734962;1.7998297;-1.022797;.46338826;-.48487568;2.2845342;.083309449;3.6143501;-1.4608417;-.12431667;.4481909;-.53357732;-1.7075037;.83420569;-.53299558;.63296151;-1.2086;-.6719929;1.965589;1.2367942;-1.0426468;-.62341565;-1.2412579;1.2628241;-1.1369488;-2.7584021;.71279222;1.1729406;.34505141;.99680805;.95275217;.82739729;-1.198722;.75356841;.05027125;.83577156;2.6175318;.49380159;.2823061;.5314526;-2.6053643;.43864086;1.475834;-.23795374;.38534939;2.1836843;1.5765572;-.88716704;.49589586;-.50698161;-.043813553;-.850299;.00023246517;1.1883591;2.4542577;3.0998838;1.9857754;3.0938313;-.6090464;-1.2479705;2.5954747;.71634591;2.2703958;3.2752051;3.0655074;-.036748432;.6227901;1.5470914;1.4081511;4.7331662;3.1783118;2.5590453;4.1753159;2.3585708;1.3248565;2.0040772;2.8080463;2.4233322;1.6491709;.022927796;1.6956511;.68833518;-.78868365;2.9410884;2.4084458;3.0036769;.64327687;.68933082;1.2205256;-1.1627672;-2.460037;2.1974192;1.7255098;.41755077;-.89047086;1.2171072;4.1790009;3.2729833;2.6258879;1.599393;.7370798;-1.2623444;50.745346 +.020529233;.71442723;-1.0858768;-1.1175599;1.6514056;-1.8494238;-.95662087;-.67928702;-.09476316;.68585497;.0950597;-.65740532;1.8072362;-.0028358356;-.69012624;-.4598588;.66837496;-1.8426486;.98916483;-.90019137;-.45036811;-1.5498405;.70132673;.31386438;.22705981;-1.212559;.82385856;-.54631931;-.20350708;1.2889035;.26080713;-.72238177;1.5432036;-.16094643;.3383123;-.92282331;.055123858;.48248971;.59944868;-1.0074475;.72258329;-1.6620419;-.86500061;.084395744;.66640776;-.83315575;-.11008022;-.29505926;-.32646281;-.1073293;2.8426354;3.3106105;1.6338524;.74217415;2.14485;2.8350384;5.3107438;-.38079843;4.7393742;2.5071445;2.6090724;-1.5549229;3.5973594;.89942896;3.1252844;-.37067065;4.3291483;.23566897;-1.5693966;4.0788984;1.918564;2.7376888;1.7479421;4.2089252;1.8252703;.32010952;3.7661064;3.2499857;.89740521;4.5335155;-.74654043;1.8821834;.69468993;4.8289485;5.6093459;.33174673;2.3326461;1.0020769;1.1791492;1.5329598;.95717108;.079722658;-.98395634;1.963124;1.9189733;-.87555414;1.7476473;.93881571;2.5039175;.86221224;.68194324;1.0782946;-1.9309944;-.029775821;3.1355464;-2.1171231;-.6710639;.069387011;.92325431;-.31606105;-.48316988;.399407;3.1196313;-.40101457;-1.5555422;.18797185;.92824149;-1.321758;.091988765;.24340834;-1.6910144;-1.5517724;.88610756;1.2674149;.042275324;-2.4597161;.12534796;-.094063081;-.57286161;.9040454;.77563363;-1.7671334;.0062385951;-.14938414;-.23126835;-1.1777546;-1.2844077;1.0157065;1.0046005;-1.2218302;.26742116;-2.2084982;-.41502282;.1064837;.010404362;-2.6214702;.14789289;.23781697;-.96755612;-.60994422;2.6001945;2.7523241;2.0555775;.88556969;1.1433277;.91760772;3.1966679;-.49599144;1.9929067;1.2523502;1.5537778;-1.1468822;4.8801742;2.6627479;2.796416;.056340098;3.7224905;-.0018951355;-2.5386233;1.9325283;3.5700784;.024988603;-1.1082072;2.6805184;1.1362034;-.033410843;3.1190455;3.1666214;.15628351;4.72647;-1.3531032;.28059399;1.9214516;2.8030422;3.7719626;.064341672;3.6865392;1.3031478;.14860252;1.4197196;2.3805554;.57763422;.25648344;1.2704763;1.9794939;-.76584983;-.65643978;-.23416154;2.2860222;-.24244572;48.859016 +-3.19065;.25772807;.33358893;.6811735;1.3760642;.541502;1.0473861;.19197619;-1.0479504;1.8278948;1.3650324;-.34213439;-.074902698;.0090406658;-.50474781;1.3092625;-1.930391;.68386406;-.59808725;-1.0370073;-.50122374;-.35103172;-.28343269;-.6441403;1.6189272;1.1352412;.63937277;.89324278;-.062712818;2.1835124;.40713453;1.670751;-.62081361;.85893905;-1.866989;-1.6192468;.10144114;.92880082;.15024444;-1.6711004;1.2756847;.35303387;-.025376925;.64747947;-1.3079906;1.7334014;1.0090151;-1.5240557;.70248324;-1.1963202;5.00808;3.0550165;3.3856416;.56661749;2.1161563;5.0016255;5.7510223;3.1719205;-1.1687639;.28602639;4.3517299;1.8771145;-1.2829084;5.3215489;-.34789357;1.513292;3.684927;3.2048726;1.8300061;4.7982593;4.588625;2.5478098;1.36621;1.8969687;2.4034479;3.7734692;2.963244;3.5435622;1.4408089;-.15931518;2.9366105;2.5268638;-3.2481241;3.4843464;4.5522122;1.7882339;2.1326084;3.7269673;-.37066203;2.3769822;3.6223083;.12909991;4.1474471;1.6802006;-.02595493;1.6777813;3.2592483;2.4974954;2.2328329;1.2031459;-1.2202053;.68640268;.58822507;-.44813526;1.1632718;-.11641876;.73030072;-.033487801;1.0066675;1.5378731;1.3293331;.20366392;-1.1430492;.50221312;.88683254;-.67966503;-1.9527863;1.9220606;.40734637;-.39852434;-.68866462;.011318693;-1.7454581;-.68561947;1.9748508;.57781309;.95135981;-.63781065;.66879725;2.1042838;.0044378168;1.2676281;.40342343;-.76973832;-3.1695776;-2.4679046;.34936136;1.7416835;-.19615746;-2.0362308;1.2122585;.38148856;.30065843;.85304648;-1.3309132;-1.0731922;.76514786;-1.520246;1.3053087;.033051174;3.2295127;2.6172667;.32445291;1.312148;1.9705542;1.868539;4.6930532;1.0028081;-.64520037;-.96533144;2.8301501;2.6464365;-1.9922414;2.9855299;.43559119;2.1441872;4.2314138;3.6112902;1.2143362;3.3327155;3.7081687;2.3626301;.13472827;1.4411473;2.4330444;1.7988846;.27545914;3.765064;.81232113;.059999198;1.5661801;2.2591772;-1.6258342;4.0919671;3.8769453;.14230241;1.4111165;2.1698408;-1.5757955;1.4850187;2.9069917;-1.3794618;4.1202674;.44280794;-.4966557;2.9529274;1.408775;-.76464218;2.9921808;.96344209;64.02906 +-1.7023951;-1.2113613;-.43725094;.75209987;.16367514;.24111551;1.5356722;-.55569863;-1.045505;.61045122;.37803119;1.9628148;-.46196455;.5964548;-.40313944;1.3886973;.22877504;-.66109359;-1.1666847;.82674891;.63235497;.8255266;-.51753014;.37350488;.55055511;-.18637729;.22716351;.40251076;-.6410442;-.1856683;-.44459173;-.43061364;.68302572;.37554637;.93184721;1.7731262;-.35243732;.46412861;1.5428652;.59662491;.85542107;.40076852;.1724976;-.89287668;-.33441457;.87684649;1.5173099;.17749262;.023584427;.41553771;-.28698277;-3.2718825;-2.2849662;1.5184853;3.4896312;2.7975733;1.2963561;.035007544;3.7354114;5.1665325;4.0599675;2.4977694;2.4114416;3.0257914;4.1852651;3.4192851;.48575312;2.6596289;.16739468;6.248271;1.0503091;3.9604521;-.12896797;1.4560075;3.8374865;.049208593;1.0140469;3.19996;3.8716173;-.0074109025;3.7378719;.7479313;.61673862;-.67640185;.84973705;3.6558874;.28915054;2.6415565;4.7978406;-.76571304;.30493227;4.4876647;2.6787546;2.7558582;2.8260441;5.430305;1.9306961;.59636182;2.6534491;3.7301049;-.34399402;-2.0339916;-1.3926048;.93426663;.19976832;.54199761;1.9979142;-1.8322316;-.4982644;.7503655;1.2517375;1.4687787;-.16141619;.53213966;.41573974;1.1056882;-.93686378;.18778406;-1.2727295;-.0043709381;.19192174;.45265052;.46189037;.42154729;.26992631;-1.4253517;1.0022184;-1.1406847;.022861468;.12936819;1.580013;-.64417452;.082659967;1.0306665;-.48493969;.94387019;1.3315308;.8874802;.91150695;1.309014;-.41553664;.16026948;.40094531;.63669848;-.21024048;.26029518;1.1044016;-.86308885;.071023613;.53256303;-.21867025;-2.0516503;-1.9876063;2.7214541;2.0108922;1.5593613;.16025446;.40411612;2.9856;3.1580806;3.3042066;1.1957424;.7197699;4.4500489;3.9518044;2.6362731;-.15958264;2.1411798;-.82256091;5.8631792;.39251247;3.2709384;-2.3921642;1.1944275;4.4478459;-.96992928;2.4501297;3.1468787;2.5873158;1.4270105;1.7174994;2.8909035;-1.5985345;-.64448476;.48113152;1.6590559;.77312028;1.7962341;3.1067703;1.4999871;-.80596697;3.5532951;1.0531884;1.6628566;1.2464072;2.7761714;1.0213403;-1.0200356;.0967694;2.2300246;50.128311 +.49641946;.068146564;.41067815;1.0854695;.93037635;1.0403649;.57639903;.92914701;-.038252372;.86106342;1.1130021;-.20972532;-1.0327259;-1.0709478;1.678936;1.2282804;-.74146336;-1.4095678;.54757732;-.20308615;.21012737;.7187801;.033979468;.21330009;.4845652;-1.6541626;.39166874;1.2667938;-.30500981;-.8282032;-.85676533;1.4250188;1.4177004;1.0709918;.19927342;-.33455694;-.14296179;-.13958173;.022171885;-.35042655;1.8048289;.55898124;.61321282;.87431854;-1.6206274;.44381097;.61979675;.98706555;.48726761;2.0636036;4.0219135;-.89676929;2.2641459;1.5934558;5.6951118;3.4766021;4.8258562;2.234709;1.8804418;2.9731226;3.4656203;4.5371313;3.5954404;2.2266359;.011361557;-.51780778;3.4328246;-.51229632;3.1804795;.5943225;2.6179945;1.8801665;5.3983097;3.8189914;3.2403595;5.2898555;.68343425;1.5187082;3.4914472;-.98021793;-1.5820918;.81172419;4.1307158;-1.2096363;1.4783427;1.5608478;1.218805;3.5896561;4.5990419;2.1205659;3.9644356;2.1513693;1.7443031;3.0132947;.51771683;.96050298;-1.5441216;2.8168638;-.62738943;-.13156971;.62622535;-.75592691;1.3067852;2.7461214;1.8625715;1.9166232;1.1515188;1.7225838;.49577358;.69864911;.65924454;.039804205;-1.139017;-.96576375;.73900717;1.5463849;-1.0028507;-.97832566;.60493678;.052044746;-.055210136;1.6066461;-.62680537;-.67911482;2.4127049;-.43454489;2.2745953;1.5810053;2.1151247;-.07872618;.52154315;.5699299;2.9310479;.31746995;-.69887418;2.6701479;-1.3848602;-.095486224;-1.0500402;-.3689805;2.8805625;.85402793;.88034618;.63056451;-.98237908;.85723197;-.95872998;1.3730954;-1.2530119;2.0130701;4.1463666;-.86722004;2.517107;2.8692882;4.379981;.141582;4.1141543;-.20919183;.97628343;1.3344802;2.5704498;2.8259535;2.7873092;-.83905721;.71891016;-1.3930199;2.5840266;-.14541663;2.1407807;-.28972614;1.8257685;1.9555924;5.2647519;4.0760975;2.5645335;4.5907373;.37056419;1.7261059;4.1690187;1.6018473;-1.1818477;1.3702141;2.2524962;.38055533;1.4083755;.59035885;2.0293269;3.1965668;3.4187133;2.6177912;2.9198475;-.13190246;1.9003956;2.2500467;1.3886998;1.3786746;-2.4603071;2.9250462;-1.0658965;-.84471816;58.107666 +-.062298037;1.2022636;1.8027774;-.10079914;.25649437;1.3163961;.79847687;.31688517;.37874043;-2.0231183;-.20379028;1.2257049;.55661511;.18684925;-1.0331752;-.16153379;.0034103314;-.4840107;-.39607534;1.5406288;2.8590763;.90959847;-3.058069;.67018932;.12601903;.05337812;-1.4167646;.080252916;-.14171878;-1.3407168;-.95474702;3.0955465;-.92853791;-.58830333;-.0077429987;-2.4206767;.86185175;.97808832;.193657;.69165498;.24476032;-1.0914663;-.56264186;-.60867;.11446271;-.2469959;-.28104654;-1.0624022;1.6871846;-.10031244;4.247179;5.1627498;5.0057111;1.6490606;2.1020846;1.4122397;1.9317122;3.5279067;4.9136987;-.32591641;3.264611;1.4802867;-.022612227;2.7453055;2.4426172;2.6805403;1.7160581;.14536883;.91270047;3.0102551;3.7413645;2.7790403;2.4551516;4.4104939;1.1621313;-.71727008;3.6337605;2.3096159;-1.7329266;-.41888943;7.7609544;3.2329819;4.435595;2.0087626;5.6931839;-2.2390339;1.4932971;-1.4331023;2.9741468;1.974895;1.803187;3.1234605;-2.8400633;3.062788;4.8966036;1.4889661;3.2759511;.95984471;.78627938;1.3238417;.074010149;.83914077;1.3551913;.32667246;-.18698364;1.1043406;1.6805136;1.1656603;-.3259654;-.21199158;-.18293552;-.40837872;.73129147;.3767646;.17644635;-.81050628;.31942174;1.0201527;-.48496875;-.20112263;2.3524432;1.1579281;-1.5608681;1.0722821;-.42551285;.79354656;-.61330426;.35097742;-.076908037;-1.2044491;-1.7886425;2.1249206;-2.7710001;-.65902925;.061027121;-1.3370625;1.9423966;-.07612779;-.47112516;.50975043;.99260288;-1.6263894;-.15028673;-2.3283904;.58766353;.449485;-.55464697;-.47432438;-.30016476;-1.0101583;1.9603941;2.431711;4.2215528;-.21300979;.80550134;.54312247;2.13937;2.8379333;5.658916;-1.0247526;2.3028033;.28925481;-.32765099;1.0785841;1.2603493;2.6460533;1.432076;1.4774152;2.0051737;3.785269;2.8449669;.4666782;1.2867368;4.0678015;.31137824;-.68392289;1.7440459;1.6249777;-.24197556;-.10959233;4.3772426;2.1664512;4.2387319;1.5015074;4.6349101;-3.1622148;.75954819;.10399709;3.1501493;.45239979;1.5000404;1.1705018;-1.8684684;1.4804461;2.2727225;2.2193787;.37812835;1.4437822;1.6109898;1.8696922;62.98967 +-.48926857;.48011056;-1.4619588;2.8342512;-.44942024;-1.3550297;2.1464193;-.3802923;-1.0635109;.63455528;-.62101477;1.6515344;-.71018881;.86134571;-1.9022288;-.97434783;-1.1335899;.83796203;-2.4937181;.16734838;1.8053471;1.3801287;-.054813571;-1.523825;.31245199;.60693777;.40022883;-.62901336;-.78483325;-.49522173;-.80881298;.71790332;.69381022;1.0542696;-1.1259972;-.86846781;.2843698;-.40535676;-.14240487;.9713369;-.43821079;.6762377;1.0946558;-.10573962;.69812763;.9686684;1.8145777;1.3861713;.78874236;-.028494535;.5600493;4.2671418;3.2217073;-1.3954837;2.1709268;1.7382904;5.740871;1.014719;1.0134689;1.5570573;-.9892711;5.6967707;1.5462028;1.5663778;-.30128911;.15139252;-3.2069199;.39978057;3.3555689;3.4424381;3.3470235;.93167663;1.8728164;-2.3666632;5.3710408;.14114186;2.5486042;1.0423203;3.2846994;2.4515584;4.723001;-.21985264;2.2269137;3.3089027;2.5830586;1.0895908;-.68832368;.17319885;2.6623359;2.9395905;-.6088441;-.40081221;3.1588418;-.061697219;-.14251949;.21218857;2.8131545;4.8900671;.091275021;5.3517423;-2.786768;-1.8227806;.55957663;3.3542144;1.9322301;-.25723872;.90394235;-1.3451383;-.19493987;2.009021;.40985635;1.4253767;.86832172;1.3838392;-.8728832;2.6165147;-.92618185;2.4628234;-3.2233577;.020645872;.60135877;2.0749443;.59638846;.065898925;.51936179;-.31799477;-1.2059437;-.77606267;-.67057681;-.58495671;-1.1108966;.32903409;.71071237;.74175692;-1.9026875;-.72137856;-.20681441;-.52800685;1.4251192;.085902005;-.78928566;-.3673515;2.6603284;-1.3033133;.34117794;1.1685313;.70656323;.30095121;2.1830041;.4355472;-.85559273;2.350374;1.2936351;-.92449653;-.23489079;.7822842;4.4350286;-.062639229;.86706632;.94665533;-.88856655;4.0706248;.43074411;1.9192487;-.65579528;.76274782;-1.9324657;.21367544;2.2424943;3.516618;1.2506787;-.061922111;.68178093;-.56976801;2.6963952;-.22732686;2.8171868;2.6715276;2.6550472;1.3058743;3.2949646;-1.813725;.17620079;2.050833;1.6049476;1.0343645;-.67279172;-.56473774;3.8662937;2.3958137;-2.3207288;-.50666445;.70304531;1.8965849;-1.0940216;2.8450873;.67060399;3.3406222;-.61184907;2.6021147;44.934532 +-.59304816;.20845589;-.2107349;-.43191579;.95270908;1.6316967;.74712026;.34140962;1.7375646;1.2952248;-.65601027;-1.2639002;-.4724873;-.30570054;-.16871813;1.0770077;.65054655;-1.1033916;-1.4141991;-1.946445;1.1880542;-.85593653;.78578943;-.49111536;1.6638808;.18477711;-.58050615;1.267302;.33839417;.25053254;-.96968877;.14273301;-.30572975;1.0919498;.52192539;.56476742;.25790608;-.44451976;-1.2904115;.97491521;1.0259477;.91565889;-.11443977;-1.169539;.64323217;.012758013;-.25615549;.46077085;-.42126709;.23991629;2.5508709;2.4607472;4.7424622;2.0633473;1.2051365;2.4286859;5.1336088;.73283935;.18536416;-.91344869;1.1164125;3.5236578;1.8739574;-1.5251802;-.31999242;1.3815101;2.0017331;2.6251974;-1.8867393;3.290498;1.0403067;4.6528125;2.8399613;3.2450764;3.9461489;.24878196;2.0910914;4.5401092;2.4288862;.066902764;-.032692123;4.0233474;-1.0339509;1.2621996;4.0379615;.69103312;2.0889504;2.1344306;2.1513104;1.1659191;1.3047661;-1.3195316;2.5440731;3.2269745;2.2914937;.0033229112;3.37553;2.4183669;3.7711594;4.2649541;-1.0324062;-.73398465;-1.7015424;-.53109622;1.7113912;1.1769898;-.29696456;.89172435;.24049374;-.71331847;-.76361388;-.68744236;-.67974746;-.62301332;.25485232;1.5870301;.10950231;-.61083394;-1.2237239;-1.2257572;2.3343322;-3.0236251;-.011464406;-1.6658549;2.1297011;.53328288;.79714096;1.7363434;-1.9636228;1.7933899;-1.1821152;1.6202856;2.0050907;.10076837;2.119767;.2513406;-.55287421;.072372012;-.28379822;1.765588;2.965729;.2669805;.5804134;-.23473534;1.575146;-.044673428;-1.9389272;1.663636;-2.446229;1.5759454;3.4252172;.56951559;2.7206585;.41982782;.42667222;.40666401;2.4672713;.36297378;.95555246;-.72844279;-.50946397;.68974775;2.3970668;-2.2101893;.12881699;3.2517872;.6178624;1.2532512;-.56429756;2.1683168;1.1327693;3.7196729;2.239892;1.8675283;3.6192727;2.3195181;2.9885397;3.6459694;3.7363949;1.5035101;.23577058;2.5735195;.40957782;.51820755;3.8798189;.97805387;2.168195;2.5989251;4.3294053;-.027153837;1.3328202;-1.9118083;1.6880338;2.0231347;1.1262155;.33320281;.75142932;.65645683;3.1507494;3.1380372;46.945068 +.45079646;-.028618149;1.2207268;-1.7152936;-.82166255;-1.6937696;.45198944;-1.7396343;.20756295;-.65731096;1.9428667;.068762928;.31988621;.10983523;1.1957284;-.66847992;.68480808;2.3132982;-.36290801;.51077724;.3769429;-1.1421741;-1.9496694;1.6252851;.68396026;-1.3630048;.47008231;-.034338374;1.769793;-.35713971;1.6120899;1.0159457;-.18110327;.91501367;-1.0565569;-1.53425;.32790551;1.9431132;-.55717766;.70034182;-.17278031;-1.6547594;.59392029;2.003479;.0073388363;.81553674;1.6081374;-.85402292;-.060322188;-.12017724;2.4005234;2.7905271;1.3279754;-.68591219;2.626261;6.4267979;.48541483;-.77668291;1.0483387;2.1079917;4.5279422;-2.5569911;1.7782558;3.3559914;.055321127;2.1582465;2.9240954;2.6201568;.76752484;1.9983617;1.7037596;1.0621462;1.406202;1.5207011;1.0866327;1.1310749;5.1491413;4.2108932;1.9700843;1.6109525;-.83121479;4.3444347;-.052640177;2.9918077;.15126044;2.2915339;3.1687472;3.9932556;3.1064577;2.2685547;1.4990962;1.3694739;4.0023146;2.1997805;.38265225;3.9402678;-.60868776;1.3935667;1.3234209;-.16573672;-1.1435809;-.1547922;.79406869;-1.9745555;-1.1197959;-1.9015974;1.8218393;-.35346389;-.85442001;-.7744382;1.4319642;-2.1288652;.92849135;.66615313;1.1992288;-.81564254;.88456231;1.961221;-.89311266;1.1244428;2.2876441;-.9718014;-.63916087;1.2578228;1.3873208;-.57579815;.75123435;-1.1361585;1.6386372;-.013411532;-.0012388973;.39623708;-1.5147687;.23825251;-.88499659;-1.8464453;.057795949;.84351456;-.2548067;-.076662935;-.9961372;-3.5412068;1.3380272;.88300031;-.78322178;1.0250918;2.1295598;-.99581224;-.50194097;-.062014621;3.4669685;2.2751625;1.3409081;.39091024;2.5444875;4.9450355;-.41184482;-1.6697369;1.6438;2.8908155;1.0597767;-2.7919154;.53359318;3.3734746;-1.918263;1.5194962;3.7352841;1.4357725;1.1465856;.62757581;-.021188315;1.1928058;.99478287;.91110474;-.011656871;2.5736623;4.85428;1.6685729;1.0651624;2.0358899;-.38063478;3.9675503;-2.4471292;3.2821164;-.86382103;1.6490473;1.0916643;3.3589308;2.7942646;.091934346;1.3094413;1.0631877;1.0872833;1.0653968;1.4833004;2.3798811;-.22627786;1.9563057;2.6674342;1.486738;50.50013 +-.15854459;.39313394;-1.286863;1.7299944;-1.0526252;.98460859;1.1867027;-.39077723;-.97738963;.87896419;-.12907237;2.4412766;-.054285001;-.57996398;.53471041;.61087799;-.93786502;-.43280718;1.2808491;-.19490433;.93290448;.71630621;-.90004432;.17311126;-2.2818654;.79673904;1.123755;-1.6563488;1.3029013;.48058584;1.6424521;-2.0721307;-.66446567;-.45556083;1.2899724;-1.0435842;-1.2937843;-.55142808;.73296988;.38033068;1.5344459;-.47301346;-.33664554;.82057065;.62759596;1.7672094;-.19433235;.90319788;-1.2184259;-.35214642;6.2386656;3.1829;3.0833719;.76178986;1.2021784;-1.3423628;3.7222288;4.1461744;.40294236;2.3847799;3.3474846;-2.144156;3.0346813;2.0988598;2.3994126;4.3923712;2.4614012;2.4622049;.8025561;4.5238347;1.410875;3.9379914;3.1333144;1.7235231;-.10967813;4.9484982;2.8939943;-2.2796125;1.2813238;.22258602;2.307477;1.0219882;7.973;.97806507;7.3658404;1.4993501;1.8346123;-.69154769;4.0863266;2.2001789;2.3671136;1.902823;1.735716;4.3372879;.58918643;1.8397771;5.988337;3.844738;.22930069;-2.0934961;1.0411321;.52331144;-1.9646167;1.4842319;-1.7105616;1.1278143;.26862359;-.36240393;-1.4187441;1.4975998;1.3434111;1.6482702;-.16464429;.2029417;1.3622279;-.36791724;1.3860512;-.64292586;1.6611587;1.8125043;-.3750878;-1.2971307;-1.4332021;-.51563781;-2.5178151;.41486964;.69442743;-2.9719861;2.0349038;-.72450167;.44737861;-1.9843482;.024334459;-1.6576533;.61426711;-.59689993;.91874015;-1.208375;1.2867798;-.39656806;.19008273;-.69982737;.10023531;-.39358449;.79553998;1.0306526;.89465213;.05961059;-.15244399;-.51099926;4.8346996;3.2623124;2.1485164;.602162;1.1038545;.34926108;2.7188694;5.6126542;.7847929;.46361679;5.9510841;-.033503514;.6938017;1.1266582;2.0460799;2.4286172;2.6745446;-.12830946;2.1380317;2.2131624;1.4629251;3.2698634;2.8748221;2.1747169;.4172979;3.4362755;.94182569;-.99236673;.28771856;.052240908;1.113757;-.53765112;6.0034814;.23414627;4.8513956;.78819644;1.1329482;-.27153939;2.8758681;1.8114374;.50008595;2.0389395;.88795483;2.6883733;.51920485;1.2816042;5.1793857;2.5754941;.75786889;-.3001067;57.55555 +-.1392615;-.2398151;-1.2098382;-.32548523;.18788278;.34882903;-1.0610449;-1.011155;-.56937641;-1.203939;-.21403581;-.16695088;-.27068514;.32350424;.69642979;.071420453;.70116699;1.2402807;.12459457;-.90028584;-.1307267;-.36749661;.93045127;-.53961116;.48674449;-.80269825;-2.1433594;1.0334717;.44906107;-.3770726;1.401831;1.8019624;-.97606659;.62890965;-1.2023392;.44093001;-1.408583;-.7127015;-.45219398;-.073076531;1.1454213;.86608922;-.36256102;.069699988;.24584241;.96650064;1.3802069;.35082871;-.0046669231;-.36269957;.42887402;3.7019711;2.8543079;.38126433;3.4964473;-2.5660133;.73762214;3.3884907;2.9550848;-.20576407;3.2768643;2.8894892;-.34631005;-.40646985;3.8889837;.29219797;2.0777595;1.4596959;-.57690567;.14060585;4.5654154;2.8843768;3.005441;-2.9502783;2.3551702;3.0825336;-.70430446;1.6272401;-1.7722238;-.22793511;.96004075;4.1658769;6.5210629;.34723854;2.1814756;4.4455285;5.5554299;2.0494666;-.93878168;1.3628095;-.26112556;3.118197;5.5264602;2.7591269;-.78069705;5.7216616;.66013676;6.8622727;7.4433813;.8232407;1.4060175;-.96311003;-1.7972358;-.53333563;-1.8144679;-.12556663;-1.7382772;.01590189;-1.1906992;-.12590685;1.1477771;-.41083062;.58756852;.95558667;3.2461426;.86750257;.32462722;1.161641;.38853705;-.71866322;.18333308;-2.4742908;-.3069483;.31399062;-1.2057766;.65765947;-1.1734078;.75683361;-.098784529;-1.2552664;-.24518426;.90364939;.43733472;1.4217492;.51132041;.54548657;-.63441157;-.5826394;1.6292453;.10748579;2.892952;1.3213183;.79777962;-1.715295;.17662747;1.7756209;2.1021314;1.7818991;-.58285779;.41027421;.45322353;3.1029098;3.5092146;1.0157249;1.3448505;-1.707267;.47810146;1.935226;-.65587038;-.27913481;1.7693924;1.305889;-.82526594;-1.98392;4.6110544;-.4084968;.42310768;1.3239179;1.3047556;1.5819142;2.0553296;.95278084;2.4293673;-2.6935313;2.2229855;1.5180792;.028123785;1.3223358;-1.061748;.50525492;.99599916;2.1145205;4.0091844;-.24676363;.80567229;2.9614682;3.4569962;-.28517795;.65353954;1.2273947;-.65965879;2.195581;2.1205814;2.7159111;.27021137;5.4425545;.043245081;5.7724123;4.9314423;1.5296313;49.97522 +-1.7387183;-.57078373;.58092576;.30833101;1.845513;.42970482;-2.065609;-.85293758;-2.5185452;1.7570434;-2.875304;.69078153;-.39618891;-.18435389;-.84082681;.78184253;-.97961861;.44103369;1.1433939;-.5974859;-1.432657;-.76390821;1.0988743;.49071109;-1.8036025;.29840553;.22937196;-1.2508132;-1.8264132;.64289194;.091665447;-.013860997;-.27470505;.24638191;-.21428648;-.90887892;2.4602702;-.98713309;1.3706372;.79003114;.72327584;2.6845369;-1.4371181;-.67408884;-1.8286986;2.7251511;.24503398;.65427178;.75431752;-.29654536;-2.7589512;.70105386;4.3552246;.1464166;4.2570229;.97566009;1.1280687;-2.1654053;.15458649;1.1654649;4.2634134;-.92363429;6.3865781;3.3154278;.40505773;5.2589922;2.4790916;5.1958299;.48122999;.55141282;2.1454117;4.3584723;.10052282;.90806931;.65669143;1.049276;.79841214;-1.365556;4.8693805;1.4372727;-.38023135;2.4133289;4.928195;4.1567488;3.6369913;2.7888215;1.5656354;4.9445305;2.5099549;2.1208282;.53347379;1.9578104;1.4263263;2.6952744;1.545141;4.3648996;4.2475963;-.00080616062;7.6007395;4.2444983;-1.4690473;.77889609;.29245499;1.831749;1.7736595;.70384908;-1.3954576;-.25396881;-.92565972;.37396166;-1.2293231;.00080943468;-1.6792433;-.98133129;.63031924;1.7047013;-1.1836197;.89797944;-.42166102;-1.2249334;-1.8448621;.63015431;.5600397;-1.2374811;.94770002;3.5077181;-.3884275;-1.3767197;-.66478705;-.4381856;.52506101;.058154639;.046240181;-.90524286;.97735739;-.64849049;1.9392576;.055434186;.52505708;-.048640639;1.2570128;3.2561874;-2.7414036;-.8761757;-1.42817;.63811433;-2.2425933;-1.1723686;-1.0151706;.46788186;-1.0759215;.45289919;3.498487;1.8699814;2.4348323;1.1191348;.069633387;-1.4239632;-.70370281;1.2644675;3.5492668;-.14101049;5.7181277;3.5452735;-.30142853;5.2215552;2.2476065;2.8208075;-.57023007;.078053392;1.2103493;2.9075935;.8025499;.095784105;1.2739952;-.16893214;.72221071;-2.0890551;2.8447123;.66368639;-.42274657;-1.5853527;2.4226155;3.7791383;3.5059223;1.6580764;1.4261388;2.8054349;2.7290111;-.13634884;.20350319;2.1431537;-.65463746;1.2688733;1.6057388;3.675483;1.4656144;.47550341;5.0798478;.78307348;61.737652 +-.37202156;.51522732;.51012361;-.29762983;-.068369754;-.1514661;.85061991;-1.4804237;-.50339729;-.98716378;1.0117393;.24020915;1.3891133;-1.6395799;1.6854827;1.1205646;-.15574728;1.1424938;.67487657;.60144365;-.86132622;.70749551;.96376723;-.88295555;-1.1315432;-.091586351;-.15162809;-.69341421;.4140344;-.53733671;.49090475;.84430802;-2.2776582;1.2656494;.45084661;-.68157846;-.84851199;.85759127;1.0375434;-.64999664;-.59382671;1.6091681;1.5321393;.58920532;1.4949754;-1.1323978;-.014252082;.051673271;.4456889;.75764549;-2.1337576;-1.9279211;2.3031492;-.86219132;3.8223033;.13713458;2.186733;2.3208373;2.147547;3.7307074;2.9177392;3.3385897;5.0746155;2.1183131;4.0670452;-.61859179;4.4086437;-.44794261;4.7440767;1.5020092;4.9863062;3.5950699;3.2937279;1.5523767;1.1122385;4.0201297;1.0662851;-.54391605;2.3141663;3.4141848;.73542905;-.26314905;2.7438474;-1.2661376;2.0961971;1.290634;4.0323286;2.1917799;2.7123747;2.5561557;3.1742303;.93468165;1.9797341;-2.1264937;5.1172094;.21843477;1.0748568;.30954495;6.4465508;.39888951;1.1770774;.18706273;-1.6310654;.95315033;1.0433887;.21280801;-.16622673;-.94543737;.088734403;-1.5170292;.26366898;-.011995557;1.2833829;-.69466126;.73723191;.16169907;.8681758;3.0065231;-1.3270861;-.27796271;-.93522978;.84191698;-.1000753;-.35758457;-1.1749594;2.2306385;1.0775727;-2.7718878;.64093411;.01885049;2.1534462;.85760421;-2.1932409;.58813745;.83352035;-.42540926;.10573541;1.4087178;.79673946;-1.6095351;-.29590914;.48978928;3.5590599;1.4057683;-.2955777;-.53925818;.78637213;-1.0061476;-.51075327;1.5647284;-2.8279006;-.62301606;2.7022223;.163904;4.0917597;-.65500373;2.127192;2.4478209;1.6137927;2.1141946;.55530328;3.1215835;2.3175681;2.289922;2.7405608;.73701483;4.0930781;-.90703869;3.0748248;1.7983418;4.6631331;2.1071794;3.1395123;.11464757;1.8891088;1.1635826;.57914495;1.1567069;1.2939211;2.4985108;2.1914892;-.71056807;2.2565639;-1.7213013;1.2350991;.2753357;2.9047081;-.027221218;1.9857312;1.3835855;1.3679553;2.9331429;4.1259775;-1.1652057;3.7012651;-.41112763;.27237105;-.38227716;2.6784225;-.027865356;56.804577 +.4109011;-1.1490088;-.93995732;2.1083748;-.0017473431;-.10856176;.073679477;-.1143635;-.61245549;-.93762958;-1.6163375;.87913263;.73853701;1.624354;1.309419;1.1290854;-1.5618906;-.55479509;.043364614;-1.0381248;-.69571;.86217374;-2.3659151;-.023162171;1.1566006;.28403696;-.43008265;-1.2307535;1.2582474;2.0742621;-.24246669;.93587965;-.52862161;-1.3413843;.50009018;-.096205227;-1.9235419;-.29189458;-.92498422;-.35044158;1.3714511;1.1044539;.46407649;.49770534;-.84285003;1.6801548;-.078234591;-1.920712;.018668657;.53158796;.57675976;-.72193807;3.15272;.96324259;4.9166908;1.9365172;2.7824514;-.13814783;2.3713818;2.9149415;2.4002376;-.81778944;4.7820282;-2.079478;1.4837368;1.6058214;-.6982767;4.7087193;5.2098541;-.64819443;1.3349243;2.8735602;-1.1949564;2.9340503;2.1704798;.32016277;2.3216145;.4141477;-.97044921;-.15844873;.95741045;-.97583151;1.9292526;1.6300439;3.2615645;2.700726;3.614238;3.1644576;-2.6060627;.86907732;1.3355432;.98157662;5.803247;1.8313212;3.7792337;2.8496633;.78329325;1.2864763;1.4938768;3.0583205;1.161207;-.6482892;-1.0846781;-.3958368;-.34519532;-.45026264;-.19175203;-1.6103765;1.1247172;.53396046;-1.8120226;1.1845376;.23652278;-1.095956;.48210546;.93515676;-1.9253662;-.16456509;.23120412;-2.5281374;1.1477484;2.6114094;-1.6578122;-1.8625137;.082381971;-.2047167;1.0085795;-.57651186;1.7385387;.4144437;-1.576098;.032246444;-2.4457209;-1.7709725;-.5123046;-1.498294;-.24847493;-.2434818;1.9388508;-.76941144;.12901929;.27523795;1.1044875;.75162923;.87219006;2.4817731;.36142737;-.30609164;.702878;1.5169593;.47189236;-1.8376468;1.3909911;2.1499734;2.9976439;3.2211566;1.9963566;-1.3044584;1.5480922;1.7218995;.77172232;.39462301;4.7543521;-.41918507;.9854666;1.0665406;1.0846517;2.9268341;3.2028222;-.44994807;.35559791;1.9682175;-1.467337;4.4924531;2.5166805;.98057616;.27298391;.61257863;-3.076257;.60151196;.33883992;-1.2833163;.42571521;.16436706;1.8456639;3.2134378;1.9226973;2.4912724;-2.4522724;.85556358;.42591494;-.49323738;2.1090543;-.35583192;1.4350562;2.9419391;1.4593942;1.2518351;1.2009779;2.1282279;39.000076 +-.074607521;-.84148705;.092350788;-.86341584;.50687748;1.307559;.90005428;1.1419796;-.57452017;-.2489783;-1.5002877;1.6941985;-.30668771;-.29753941;.81001109;-.41006321;.43966958;2.0968821;1.0927415;.13623276;.050669882;1.5383903;-2.0454347;-.71916229;.57566583;.36339816;-.092023283;-.016322257;1.32162;1.328487;.48718926;-.054045666;-.16383822;.67150617;-1.5448813;-.0020881451;1.8013114;1.3692803;.0091503458;.12283359;-.78324836;-.23471063;-.041758563;-.33053371;1.1602995;-.26828623;-.7649405;-1.3453645;-2.3689954;1.3190701;-.13804495;-.46307588;4.5377831;-.35450801;.78797746;-1.8462998;3.0587232;4.7204423;2.3153632;6.7019997;2.7046895;-.51483136;3.1603394;3.3081117;1.1210458;.20818558;2.4904292;-1.011693;5.0491638;2.5962462;.66452968;3.5959582;1.4284629;2.9084623;-.1170975;2.2135105;.12245001;-.05865059;6.1590276;2.0710106;2.1783614;5.0508866;5.6690059;3.0143971;4.3663931;2.8203404;-.26226643;.86971605;2.2796299;-.28128394;1.1424533;-.014129195;1.106215;5.1537828;3.3635218;4.2267294;2.3317952;.11651286;-1.5346519;3.1678596;-1.3260796;-.80079913;1.0942576;-.4691653;.017612781;-.7828899;.56450289;1.5779315;.96095163;-.29887336;-.44897988;.69200158;.55794895;.21287939;-.033981614;-.75430584;-.21425419;1.4262438;1.9167787;.7978043;-.42040589;2.5189104;-1.6864183;-.99004328;-2.0583415;-.089202128;.98805845;1.7435294;1.0902479;-.61371559;.21703202;-.84880018;.11481698;.34317797;-.96547526;.81319839;1.2423284;.20143338;.08298137;.61404997;-.080410771;-.35607114;-.31228387;.30035171;.77097851;-.043118637;-.88351274;.19006863;-2.0570014;1.3689836;-2.2429891;.51333815;4.3103414;.71999198;1.6132106;-1.2687432;1.6835679;5.5086622;1.1099979;4.5449014;-.95685869;.78120667;2.2947299;1.8616797;.1839644;-.7062487;2.076803;.51045054;4.1067805;.60562307;-.8449477;3.6552289;2.2834592;1.0640414;1.2353857;2.8159814;.41490233;-.3078914;3.8424196;.0025754147;1.4629482;1.7344794;4.9015989;.34977657;4.1033621;.69804633;1.8322508;.84309191;.40763578;-.18845344;.24360843;.43153155;1.4514322;5.0223503;2.731751;3.4128611;2.6171963;1.8166695;-1.2643927;1.3060088;56.038609 +.61092538;.1279359;1.4169916;-.089653708;1.7818677;-.28330523;-.77231115;-.78859568;-1.832659;.77792525;.87571716;1.5545632;.36582577;.092199832;.82166588;.092537813;.062198073;-.70597214;1.5269184;-.45517349;-.19113772;-.65122759;.36431432;-.6409393;-1.7659081;.61649704;1.7849174;-.33016941;-.9796623;-.022431178;1.0408624;-.93505192;.74132591;.23236465;.10859311;1.7366778;.18418436;-1.0279083;.94603217;-1.5889153;-.24077868;.32237104;.060921371;-2.9834306;1.7049929;1.5100801;.41640532;.91181254;.64708197;-1.603659;3.2184722;1.4381816;4.8617969;-.47302392;-.15533774;2.9577708;-1.1116109;4.0173721;1.6298344;.96502191;4.2437716;2.1445572;-.22083239;-.35747212;-.72700995;6.0389132;3.4044855;.065631427;-.059002478;-1.0692549;1.5568665;1.700495;2.3172348;3.8786209;3.8002827;2.098798;4.4446273;2.7214661;1.1060033;.9639402;1.8809979;1.3866813;2.9481938;-.083778404;5.5636725;-1.1894767;3.4727776;2.0965664;.93773073;.74126559;1.196393;-.91334724;5.8313746;1.9396147;3.4899669;.75965059;-.51634675;-1.3152355;.33070755;5.8910131;.82547998;1.0703168;1.8068836;.46938956;1.833253;-2.2306046;.66346842;-1.2857722;-.36459184;1.4900838;1.10815;.60681534;.48677033;.54769838;-1.4899036;.43178195;.7515133;-1.07718;.57283902;-.62554759;-.28971794;.038853485;-1.0537769;-.38049838;-.21935798;.97317058;.84863549;1.974934;.30454078;-.052018449;.78141993;-.96558738;-.87199998;.15486677;1.0288477;1.2903048;-.080298133;.29828832;.89105821;-1.2432917;.13481784;.41413388;-.091621079;-2.2887144;2.3752925;.97149116;-.99018532;-.96784794;1.2951448;1.4606723;2.5624166;2.6770914;3.3974464;-1.5815034;-1.0914252;3.7433324;-.79827231;2.0400443;1.5838974;2.0622311;1.7586442;2.2152872;.38166842;-1.4855285;-1.5963774;5.0250297;1.7647586;-.18082769;-.14739926;-1.8283436;3.8353705;1.7055732;.39048412;4.3147988;2.3700037;1.9980363;2.8895056;.49569979;-.066883273;2.3066776;.9019435;1.4223667;1.8749571;-.914002;2.9040971;-1.0477179;3.9308462;1.4012073;.51321131;.69019997;.24555396;-.73330289;4.168076;2.5441148;2.1448014;1.851928;-.42222801;.28051007;.16229841;2.0374355;51.304039 +1.2140167;-.58048129;.59483647;.80935878;-.86624396;-.32687423;.31490028;1.7787184;-.40274456;.080637142;.073501498;-.75302917;.0018982607;-1.1102948;-1.0282354;-.58618391;1.1616048;-.98256755;-1.0009704;1.0061911;1.3714631;.25972289;.24838986;-.35851881;1.2954395;.44357941;-1.5792053;-.10872075;-1.5765675;-1.8522664;-1.311221;.023188772;.392005;.94819498;-1.1527667;.33476752;.97886187;.33999291;.70713264;.10348883;-.14060825;.939803;-.58315015;-.05111501;-.0015358526;.11879867;-2.6542432;-.14399321;.88525856;-.52784282;-1.4092171;3.0226398;3.0412414;2.6974614;-1.3734373;2.4803824;3.7139902;1.6129514;2.3967586;2.2161279;-1.0406942;5.9120998;.53655946;3.5198219;4.9850364;2.4511514;-.14774619;.97187549;2.4894016;4.0659757;1.0418537;.15623118;.8197695;2.2526152;-.30486599;2.6847699;-.38307726;2.0801668;-1.360919;3.0812993;2.1157055;2.6983774;.60440606;2.2607107;.62924629;4.8157716;1.9966601;5.5681238;2.5141687;3.3845532;1.0532285;.13562469;2.4821043;.86177939;1.0144385;.75092542;1.4641443;1.3794198;2.0717347;2.7204866;2.2215614;-1.7291726;.1164536;.58601767;-1.1354461;-.86160719;.57180893;2.3160386;1.2483916;.33001667;.36590433;.85028172;-.25407723;-1.601552;-.19515844;.6311726;-.10717377;.17146237;-1.4736347;.74641508;-.71098608;-1.8999594;1.4928329;-1.1785259;-.48386672;-.50745505;-.68511248;-.93521023;-2.5316913;-.81602502;-1.7533178;-.36691564;-.42079136;-.1838678;-.2873407;-.78243172;-.30602852;1.8205799;.96102321;2.6023972;-.0044217249;-.41510975;.70574784;-.13888948;-.47783196;.6212945;-1.1787001;.86101443;.45228326;-1.7926615;-2.0123827;.075735018;-.087328926;2.391398;-.15505913;2.5904315;2.9529481;1.0368062;2.0920918;1.9012282;-.94157404;4.0215583;1.0441968;3.6257551;2.3729627;1.1948282;-1.4188911;1.8042459;1.0966339;2.3934689;2.3160355;-.080379643;1.5383284;-.58186656;.017184373;1.5468758;-1.2568862;2.6707661;-1.3646142;1.0140116;3.0830386;.64453006;1.3897802;2.8562577;-.79024696;3.6154802;.37581694;3.3219526;2.5362847;3.8187411;-.68900096;1.2215298;1.4909942;-.44429326;2.2703729;-.12951303;.75932735;1.1039414;2.0392864;1.4156095;44.30307 +-.6917702;-.488148;.3017092;1.3458258;-1.5394351;-1.2468219;-.15713976;-.64563966;-.28638443;-.79545295;.69405597;.1760772;-1.3150592;.53996348;1.3955628;1.4244047;-1.1520997;.03805586;-.38633779;-1.9667665;-.49397522;-.37310001;.40065593;-.94141001;-1.5081477;-1.2305512;1.1177114;.86781532;-.70513189;-.2210288;1.5471224;-.34897444;-.10483311;2.0766199;.69193685;-.59439248;-1.1173077;1.1206927;.10127362;-1.8195475;-1.094732;-.069031373;-.59137386;-.6572699;.039820209;.2487897;.80229455;.25940719;.73371255;2.0221956;4.9130864;.13102873;1.2950696;1.3875451;.42079633;3.8831394;3.1880691;5.4100976;-1.7376127;-.92243659;.37720555;3.4241016;2.4298508;3.6793272;4.1372609;2.8992271;.30249476;-2.6788893;-.020377202;3.3636148;.69947076;1.4055226;1.6448032;.26407003;1.7709302;-.89597183;-1.0908955;3.4032822;.30978009;5.4928389;-1.2765883;3.8166523;.1027006;.21748406;1.2316127;3.0690768;-1.5193757;1.5405669;3.7924497;1.1191292;1.3315754;2.9872551;-2.0088892;2.5251296;.46433929;2.7396774;2.6946764;4.9690661;1.8031602;4.4412861;.27854833;-.39666587;1.1205144;1.3243425;.75895369;.62966567;-.19318908;-.74120718;-3.0032585;-.52825451;1.0863932;-.072935589;.041759133;-1.6726793;.13171686;.50677896;-.4780629;-.90579897;.10356583;-.44100115;.72972226;-.81743401;.69327694;.26236102;-2.3791835;-.4199065;-.14369431;.91255474;-.72399384;-1.0797524;1.1988816;-.052462753;.3401807;1.0373461;.86137789;-1.497402;-.93854231;.7300235;-.50916022;-2.9080322;-.70677179;-.72793877;-1.2848085;-2.1592104;.3495639;1.1255326;1.536276;.76853907;-.59053993;1.5422915;3.8058865;.11395738;1.4654948;2.3259358;2.1352537;2.2047954;2.1503873;1.5737942;-.5905304;.81547701;-.31412041;2.956851;2.5545311;1.9406716;2.8268402;2.8048735;-1.0091889;-1.1266365;-.91910446;2.4109373;1.3187665;1.2871668;2.1010113;-.16563582;1.1389576;-1.7405144;-.16926733;1.3915645;-.15227595;3.6759763;.54822791;4.4870086;1.281944;.0034880985;3.1900125;2.9820349;-.6256175;2.0187957;2.3771076;1.4524747;2.920634;2.4607954;-4.0414791;1.2797959;-.11236317;3.0736763;.82462281;2.4222472;-.88287848;3.0681293;39.624451 +-.037909806;-.18626449;.77835178;-.051099841;.47713885;-.35870183;2.1720026;-1.300935;1.2806408;1.1780465;-.38728085;-.37967405;-.82082117;-2.4873531;.22265872;-.58052391;1.2977697;1.438804;-1.4308766;-.46089026;-.63668811;.2845788;.60581291;-1.1622846;2.0296183;.014807689;1.0400326;-.6949051;-.18537122;-.9555366;-.36685914;-1.4781154;.24752925;.097047217;-.9426924;-.14510474;-1.3389536;-1.4669248;.22887792;.045835488;.69641936;1.2088901;-.33903974;1.4691803;1.1917558;-.46378508;.66406119;-.68163139;-1.9779421;-.21416593;4.0386744;1.7066127;-.074610658;2.1498015;3.3900907;1.1671343;.53988314;1.2791076;1.2462167;2.4678247;1.9936343;2.5071051;4.066061;-1.3322341;5.129034;.9903636;1.2875354;4.7276998;-.48332375;3.6187608;.34525609;1.4845521;.8580386;-.37095964;3.0948622;4.4660521;2.0150154;2.3032887;5.0929313;3.7271593;.75200886;.92242634;.36651739;1.6726817;2.4205148;3.9491904;3.4305325;1.8051105;-.42635664;2.7057779;.37286362;3.0477364;4.1685696;5.8184891;.96498108;2.4410491;-3.5623052;-.58314246;-.32903227;4.4393048;.45595667;-1.9111446;1.186438;-1.2994853;.34229121;-.30188391;1.5511988;-3.0162046;-.16309573;1.960453;.2045982;-1.8924732;-1.6697218;-2.2538633;-.083485045;-.67192936;.63854569;-.0049628052;.64109218;-.32107222;-.38691708;1.2571721;.36383548;.16005237;2.6855309;2.6902092;.91132694;1.0939903;-.13951689;-1.2108063;-.23561807;-.078210816;.51154584;1.5932219;-3.2235715;.080479473;-1.414543;-.78291422;.061891824;.91797966;.16634692;-.37536836;-.35647151;1.6065124;1.8281425;.58136672;.85174143;.44340286;-1.671919;-.28010872;2.6746314;2.4092524;-1.4220372;2.7323935;.19031532;-.70584905;-1.4971131;1.0410994;.54298466;1.0657352;1.858767;-.32297871;3.6275227;-1.8167399;3.34852;.79182696;1.871827;1.3771279;-.32553035;3.0697689;.23046885;1.5786713;.77679777;-1.8883417;1.3402879;3.8782549;1.3730592;2.3753414;2.9955273;1.5532444;1.147258;.020318836;-.5484615;2.7274606;2.5266566;5.421608;2.8750846;1.7002926;-.20447388;1.7033074;1.0231125;1.4695652;2.7531745;5.31638;2.1377344;3.191298;-2.5009949;-1.4417757;-.040206727;1.6418107;48.294075 +.71008104;-.17489173;.43392313;-.40401196;-1.1611112;1.1982542;-.78822875;.24014939;.92273039;-.76599127;.16666786;-.27076694;-.40509382;-1.2412354;1.0639905;1.1543784;-.61851114;1.6712517;.53010494;-2.0671613;.20435715;-.32049188;-.76567572;.35975948;-1.1883097;.047358595;.01111106;1.5261022;-1.8491809;.22002693;.39873439;.338514;.56269026;-.82653171;-.048021622;-.17092744;-.21454053;.61174774;-.13375777;-.53233755;.10797179;-.15484796;-.88227165;.25576672;-.22314933;-.076426387;-1.1087691;1.319541;-.27202159;.71244866;2.2088456;.14740118;.75273573;-2.0624783;.11057508;2.2386158;-.89707649;1.041451;1.3234904;-2.8659067;.90884691;-.6773957;-1.8073391;1.9258548;-.58685917;1.9831411;2.5059121;.50842506;4.8615003;7.3418274;.19392183;1.6954786;-1.3664973;1.2717386;-.1623679;1.5068036;.60769707;5.4765029;4.1489615;3.9628744;-.1653865;.73058504;2.1273818;2.4185412;4.6334376;-.61765122;3.4715831;-2.7244599;-.080192171;5.4998364;1.718556;.29264665;2.8611209;1.8362209;-.47489631;5.2153635;3.3099265;1.9896946;2.5790017;1.5298367;1.1492083;-.99310732;.63078052;.38830677;-2.1020072;-.44819012;-.70634973;.18173243;-.53546447;.30336931;.075215995;-.54906482;-.47969469;-1.3240099;-.39665395;.84435546;-.79220515;-.97949761;-1.8764498;-1.5237985;-2.2171092;.64104486;-.78281158;-.98687375;-1.4484147;1.6629548;.65920663;1.974806;-.87686068;.99184072;.13785912;.83435047;2.4739816;-1.1964374;.79681051;1.4593545;1.8139626;.84902561;-.53122413;-1.2686467;.020229073;.2838524;-.61040312;-1.9853418;.33300093;-.66836464;-.80587238;.025506832;.13357495;1.7680932;.80656874;1.1292862;1.5603263;-2.7327335;-.011400285;1.3213243;-1.5163894;1.614777;2.1387396;-3.7878096;.42443469;-.84234494;-1.8128132;1.8430433;-.49645329;2.232846;1.9054275;.91091269;3.5793517;5.8710251;-.27527091;1.3837011;-2.4867184;2.1410563;-1.6805184;1.2596581;.35419461;2.6364429;2.6403117;2.2882917;.49090004;1.4071399;1.6701375;-.54078364;3.371989;-1.285977;2.0659676;-3.2068141;.40363187;3.6282797;.30447683;-.8620559;2.0801919;2.2212851;-.68996495;3.3092082;2.1005867;-.95711404;.83405584;1.7686768;39.467133 +-.064724833;-.11135798;-1.5646359;-.8612566;2.087136;-.47604549;-.70120257;-.057760399;.18553509;-1.8220998;.81002009;-.11578473;-.112253;-1.7078576;-1.0273687;.58467406;.77272058;.74218857;1.8366001;-2.0263016;-.46449438;1.4817944;-.37675864;-1.0676806;.82468116;-.66381299;-.044376768;-1.7810947;.18367137;-.30915967;.64457959;.43538061;.20730427;1.0142978;-1.3328021;.30421048;.090314768;1.0868759;-1.9978948;.094291225;-.45462662;-.6337043;-.72908568;-.47670263;.17341715;1.2725934;.38560274;.24297532;-.51004773;-.48289484;1.922997;1.5957462;1.7219352;1.6500404;2.7794247;1.3269491;-1.183313;-1.8033237;1.2622591;-.37394983;-1.0279582;1.8109711;3.5207233;3.1441364;-.85271192;4.5714231;2.0415535;-.022056127;-.47990757;-.12887765;3.2333655;3.351536;4.0778818;4.3335819;1.3877575;3.7042372;.23189063;-.018966017;-.19011174;1.1275223;1.3813066;2.182462;.75363851;4.2227817;1.3621365;-.24610016;3.2061188;.076749556;-1.5349263;3.4304044;-.18151379;.7105;6.0033956;-1.0418763;2.3568709;-1.1082448;.22265819;1.9987957;-1.228928;2.8579295;-1.1638577;.86316609;.32025549;-1.2720883;2.0772679;-.51762861;.29549679;-.096005403;.40619019;.27181011;1.1441334;.34657407;-.13773723;-2.2259579;-.92764908;-.94375741;.1511115;.85932976;2.7013383;-1.7236118;-1.3095644;.81954932;-.81503576;-.83555233;-.76460272;-.1560915;-1.2122527;-.96598995;-.30941021;.23411933;-.63303667;-.35058087;1.0349604;1.5776809;-1.0452889;1.2338414;-1.4193715;1.2979823;-1.1002469;-.65293539;-1.0401207;-.78831357;.15404545;-.90185118;-.96639985;1.4602075;.4421553;1.2126189;-.32023439;.51650482;.20357974;.38984948;1.7093017;2.1249347;1.7256255;-1.3747277;-.84476596;-1.1492846;-.39955395;-.036943901;-2.3425622;2.206243;3.8852351;2.38921;-1.4643806;3.763972;2.8477259;-.20581281;.43746337;.31704924;1.1389854;3.1170855;3.627744;1.4202192;.84174252;.4061361;-.32077238;-1.6178015;.38790426;1.3266991;.56996602;1.3620312;1.3259927;4.2058849;.77887714;-1.4502941;3.3033664;.084033825;-1.7052932;2.8753676;-1.8178304;.89120245;3.3612962;.9384135;2.2442825;-.57055849;.29624942;.82829905;-.11841366;2.210834;35.191803 +-1.0141891;-1.0523578;-.67042881;.2865243;.057684552;-.5067023;.82254481;-.38029781;-.012366832;1.2703527;-2.6345482;-.033286072;-1.690137;.45771146;-1.5836775;.0062224646;.14820898;.38159046;1.3229172;1.0407807;1.1726099;-.47313422;.43220389;-1.9614023;2.3524575;.78692406;.5871104;.93144667;-.99183476;-.20280246;-1.2085983;-.55983734;-1.3226951;.2595281;.45868975;.63432908;-.40148881;-.52133441;.20669885;1.309911;-.71871758;1.0249887;-.29298893;-1.2331228;-.90476662;.41241223;1.7297542;.45802689;-1.0720778;-.78903997;4.2470016;2.2430415;-.24245943;-.22117896;4.8519998;2.4296365;1.1702778;.51639688;1.1761836;3.2928078;3.0549972;1.4524802;2.4954326;.19494566;2.3865707;1.0291353;2.3441162;2.02721;4.1589541;2.7800131;2.9406018;1.7279555;2.6939235;-.17813611;3.5244381;6.2362227;3.2856905;-.25186729;1.0805916;-.60964477;5.8321891;1.7267549;1.2142422;1.9502444;2.963388;1.0546124;1.5832249;.29038218;4.5647483;2.589433;4.1975026;-1.1468723;.30967116;1.7773081;.49608099;2.0163605;3.7958133;2.0413055;3.2031224;3.4147112;.85764813;.010325687;-.9541766;-1.0429567;-1.0591537;-.62382221;.57389253;.60215694;.74291313;-.27311769;-.65588135;.87994307;-2.4421799;.31989238;-1.3442192;.85250664;-.96733475;.37997204;.96997678;-.25060877;-.98919183;-.84432489;-.22760694;-.7417919;2.4225852;1.0544008;.35652745;.12220333;-1.10563;-1.4316905;-2.3973713;.79677653;-1.0520781;-.058496382;.26615673;-.68919206;1.1803015;-.22795111;-1.3811413;2.4006009;-1.4464297;1.0372856;.88725162;-.78841132;-1.3687458;-.26635629;1.1680648;.37519553;-.052405253;-1.0199951;1.7676613;.86654627;1.2603115;-.2778579;3.1013174;1.1249002;1.3594898;-.20615608;2.7677598;.66114366;2.061779;.38529289;1.3807039;-.81919783;.059168715;.80681598;1.2492189;2.3394942;4.4428396;2.2754846;1.4089174;2.4406962;2.2087672;1.0205258;3.2027566;5.6986852;2.9135804;.21477132;-1.1909804;.16900562;4.1969104;2.9073923;1.6930969;1.4231994;1.221083;.74254858;.40171772;.39266056;4.0638738;2.5602999;2.484093;.081802189;-.044524103;-.82774639;1.407227;.98981071;2.2758188;.18730085;1.5242237;1.9151284;56.048218 +-.35133827;-.18139924;-.88943958;-1.1753672;-.2474197;-1.2816916;-1.0274041;-2.579036;.8011241;-.56767642;-1.1286293;.16330674;-.30554038;-.014768076;1.0826329;1.2766402;1.0031059;-1.1595643;.94060552;.10548998;2.2079089;-.37207639;-.028647479;.30943257;-.085786045;.68937218;.55190331;1.6709577;.28044346;1.0600576;-.51850283;-1.022135;1.2251335;.42966133;.54714906;-.39249566;-.82613999;-1.7132254;-.57006025;.38232863;.54163128;-.43346399;.25915265;-1.1649766;1.9811362;1.4622276;1.1692336;.38887259;.19095467;1.2978302;1.4019803;3.7598202;.68365228;1.5324836;-.50127399;.84412414;.24548027;-.25666222;2.4695837;.93716329;-.13836998;1.3666745;-2.1430626;1.2631693;3.4560018;1.7202783;1.1267339;2.100035;2.4216046;3.0660045;3.8960748;2.3924694;3.584203;.3861759;2.1927519;4.5635419;2.0251317;.84202969;3.1662793;3.7089298;3.3721488;.80573708;-1.1768111;-.68232214;-1.1619041;-.38782945;4.4580727;2.9054749;6.1303997;2.9849946;-.045244515;.12850603;2.3049021;-3.0972679;1.9986662;.97486734;3.388175;-1.8725708;1.8850077;2.2635431;-.73353457;-.11873703;-1.0093385;-2.5203524;.71848148;-.039473336;-.8331942;-2.854507;.37011743;1.2697895;-.88019985;-.48273277;-.28401798;-.67413658;.11817275;2.0033925;1.8971426;-1.3717418;-.015502883;-.52888155;1.6617172;1.0626876;.66830516;-.76229858;-1.5395361;.62519795;-.17422928;-.23453861;-1.485927;.54565871;-1.3922473;-1.5820116;1.6426411;-.63513279;-.24542917;-.72608292;-.40852138;-1.1153668;-.047266196;-.56421715;-.63613188;-1.8553493;-.74640411;-.79736036;-.27757481;-.74303842;.83198684;.76817083;-1.51531;.37280631;1.0225872;2.5157411;-.47935605;1.3034248;.95272052;.90486783;1.0957208;-.28544518;.14252207;-.63738388;-1.0471658;-.12756941;-2.3444331;.15715647;3.1102049;1.8892466;.24548297;2.2683971;2.9038768;2.1576657;3.0986946;2.0720873;2.3688078;-.20405608;2.6736772;3.2385933;2.1032906;2.3657317;1.4129494;1.6806576;2.0483663;-.39568073;-2.2315712;.37482238;-1.4374354;-1.4961349;1.9814126;2.0624216;2.643615;2.5828991;1.8722601;.21357472;3.226908;-2.0378916;2.4079692;.52224422;2.7209976;-2.7457151;2.690062;1.2779214;44.547592 +-1.1234274;.59554219;.18004306;-1.518719;-.75065315;-2.7296143;-.3629351;-.14747335;.27413511;.15701348;-.53832394;-.080111377;.60665655;-.99089342;.96226585;-.68737119;1.4130527;.21106441;2.0390687;-.89330727;-1.1392242;1.7536763;-.40498126;1.742087;1.1366495;-1.4909688;-.23400936;.50590318;-.078260213;-.64298391;-.55209386;.33693305;-.86108154;.32673967;-.42038614;.13476571;-.07509312;1.6247604;.68425524;.51263714;-.2188185;-.899979;.25223294;.11885892;.23791268;.86645293;-1.3090636;-1.1478624;1.5241126;-.35775736;-.63497955;2.0321283;1.3639367;4.1986589;3.1224763;.97632962;1.2677402;2.5953615;5.2764049;1.9368138;4.2803679;.205578;1.9245681;-1.0632179;5.1929321;1.4813293;-1.6909375;1.3322918;4.7453938;1.8744082;.72007281;2.6240375;.9062075;1.4753292;-.32508352;1.0158761;3.648958;2.6365571;1.0734401;-.55891663;4.4851055;-.12888815;.33340272;5.5391073;1.2289788;3.6848643;3.5194302;1.3823662;1.1108009;-.39072073;3.9031384;.46878651;1.0689936;.58642381;1.8270681;1.4280362;1.8795695;2.5904515;.59013802;-.61080217;-.91989899;.0086442195;-.28825763;-.73367673;-2.2327087;-1.177264;-1.1438549;.20441344;-.078147866;-.15619098;.35692161;-.068703547;.56390679;.6604262;2.3809376;-.29604092;1.5680394;-1.1329732;-.043139677;.85601223;.53916109;.86193436;.63236654;.83535635;-.27383158;-2.2804182;.75860697;.90583158;2.2203207;-1.0252165;-.79720622;-.68364012;-1.7781829;2.7024741;.43552962;-1.3418323;1.0318565;1.634385;1.4665979;-.73386252;-1.0104586;-1.0565109;-2.2917666;-.26487261;.71846855;3.0927835;-2.2116942;-1.4076872;2.427763;.67996085;-.64224195;2.4392903;.90619159;2.5705826;1.6562065;1.047973;.60745448;1.2605261;2.3101826;3.054369;1.9275309;-1.5806626;.64215362;.21264178;3.3032761;.24486928;-1.7672169;.13473313;3.1005301;1.8043507;1.3561897;.25029635;.99590868;1.5806168;-.14549854;.3709569;3.0287561;2.6205328;.085776202;-1.8023875;3.284281;-.8834942;-.099265397;3.8342249;2.1458621;3.1544027;1.6466793;-.71744186;-.30184019;.69676256;3.8064942;1.3556529;.53890556;1.036834;2.4626567;1.0107442;.21640503;2.4095459;.97451812;-.39330438;38.777992 +.036775827;-.73816776;-1.3274394;-.34395203;-1.3608496;.13077438;-.95211655;-1.4213144;-.72666031;-.3057861;-1.3756614;.28646719;.88979375;-.3105481;1.7830507;.47626048;-.33238277;1.0089376;-1.2489406;1.0951077;.36669701;.27578786;-.18671922;.31515166;-.21955761;-.22120053;-1.4175111;-1.0888759;-.25263137;.84510905;-.12865305;.51526356;-2.4153419;1.0376284;-.74170935;-.071144886;-1.8332006;-1.3842235;-.66649193;-.49368101;-.30139375;.4973318;1.1237202;-2.1379843;-.9779762;.32131365;.89803153;-.24442427;1.3111228;-1.648595;4.2425609;-.099599354;2.3271816;2.6374826;3.472985;1.5508039;2.2877316;3.5103724;1.8100935;6.7319689;3.0966921;1.6341442;1.2416282;3.4724684;2.1029491;2.687957;1.5196005;1.4632436;.22671592;3.1460781;.63686007;3.634398;-.584373;.58127314;.43692717;5.1249685;2.1661272;.75784111;7.3101492;2.99317;-.55601567;2.4175656;2.3810282;-1.7549417;3.6809075;2.9338481;5.7516484;-.72141641;5.5721211;.81421983;.75778097;3.2829826;1.5746703;3.3133125;-1.3050593;.95800495;2.1779108;1.4045867;.66650236;-3.0138381;.16673014;.20709786;-.97905678;2.0875981;.77278626;-.59446287;-.36465663;-2.7778893;-.44493881;-2.1755199;.85836262;-2.1598985;-1.2926496;-.6949991;1.475907;-.0020263353;.74751693;2.3050885;-1.9190658;.55805731;-.6491074;-.69785321;.82652009;-1.3823619;-.14677319;-.1029821;-.39052948;.38542727;.61855322;-2.0998678;-.89520425;-.51737511;-.81993312;.97903413;-2.6543252;.45468363;-1.765432;-1.1784376;-1.7136962;-.32124421;-1.2784568;-.37313011;.99966145;-1.1805637;-1.3174047;-.052470777;1.1017127;-1.2284243;2.411974;-2.3918931;4.8128991;.35124055;.42952147;-1.3985391;2.7283921;.16409774;1.8316994;2.5379643;1.678106;2.8719425;1.7544651;1.3957933;.45000297;4.09934;1.6734114;3.2156007;.88970375;-1.2218159;-.88410306;3.0719187;.43516427;3.6457105;.49147028;-1.3975997;-.55933863;3.315268;1.3091416;1.8346429;4.6146898;1.9899404;-.93829066;.41238835;3.4217618;-1.1938155;1.7628146;2.3364763;4.1324639;-.69547397;5.7475109;.60975468;1.2021801;1.8109791;.95231169;1.2287939;-1.3840414;-1.8891929;1.9010227;2.2128325;.53053612;-2.8811886;43.770348 +-.038253263;-.70416015;-1.2508417;-1.9907362;-.90822887;-.93387228;-.24301122;.65410948;.56959087;.063076876;.73394346;-.23486888;2.0058694;-.25763831;-.37823105;-.39550099;.45313236;-1.0312551;-1.3645855;1.7572713;-1.3094169;.10883702;-2.4118435;.30327079;1.4693049;1.2264365;1.1563799;-.39694974;-1.5314567;-1.3211408;1.9091216;1.1494354;.89917964;-.0085989451;-.57700169;.31047216;-1.7482198;-.0052312189;-2.2883387;.81116486;1.0188457;-.56484324;-.4966194;.12791134;2.3278792;-1.4837193;-.20876756;1.1373744;.46630907;-.22008117;2.8541875;6.9162817;2.4157984;3.8009934;4.2653913;2.0349498;-1.057889;.82023406;3.8496339;6.2327695;.3989723;3.4789159;.098825775;3.6746764;.37914598;1.7610765;.6316995;.38714316;1.4032264;.34667644;.49618244;.22149995;5.7178268;-.11609317;3.6032956;2.4683414;-1.1513953;2.2627814;4.3781347;6.3371186;-2.7666383;5.6495533;-.15587632;4.4376655;3.5534503;2.9384291;2.2630632;.67973262;3.9141004;4.7026587;1.8153579;1.2335745;.13491407;2.4420164;1.3279623;5.4430261;.87047774;2.4002707;3.102278;4.7875924;1.282495;-2.0772471;-1.7966301;-1.9682695;-.14777534;-.22379257;.62855929;.44649419;.19400769;1.463268;-.23435149;1.5346831;2.3751769;.79078192;-.89476389;-1.4304316;.44307533;-2.301518;-2.1850567;1.868469;-.71464342;-.14705104;-1.3065386;.57667798;.5963307;1.7640321;-.76671195;-.35486156;-.17837884;-1.0975573;1.2944326;1.8485935;1.9792432;2.537782;-.78029919;.5551213;-2.5608323;-.30959222;-.13605431;1.428741;.68148559;1.0532526;-.06768091;.82607412;2.289608;-1.262621;-1.6706319;.91509163;.13694763;.79159182;.23000881;6.2081084;.38904461;2.3264892;1.9890735;-.63194358;.066699758;.2062415;4.9014745;4.4043517;2.2342489;3.1649485;1.0954585;4.7789569;-1.340443;1.9198725;-.40234461;-.43138245;2.6804755;.55658644;2.4150643;.4196125;3.962002;.62428963;1.8757936;1.3590918;-.5591495;1.4099823;4.3955832;5.0758471;-2.5259426;3.7499597;-.92853814;5.0713801;.7600615;2.8232107;1.8929262;.7660324;2.4422512;3.184051;-.98619962;2.7263165;-.0021567834;1.4425175;-1.9984082;2.9396648;2.0934489;1.5835112;1.6218901;3.2476721;54.891804 +-1.0425231;4.5088782;-.13721807;.43972936;-.81075186;.11435556;-2.0993199;.66791743;-.44663316;.12678839;1.0835065;-.45266697;-.54268575;.059773088;-1.2852798;-1.6366946;.082567059;.010859946;.98456436;-.67427886;-2.0291994;1.6033289;2.8708594;-1.0864912;1.4824322;1.0021238;-1.2776822;-2.0798166;.079958335;1.5065693;-.14590353;-.25654671;.52580297;.049894992;1.0788664;-.32697749;.80173045;.55868465;1.5890377;-1.1978958;-.52593768;-1.0885206;-.1994487;1.7502073;1.1639917;-1.2079152;-.13973357;-1.048406;-.1929663;.12417394;2.3272884;-1.4029331;.38758349;1.097918;4.6818705;.0048688347;1.5375202;1.462536;.94292688;3.0121484;3.4550376;1.1203053;3.925277;1.8152462;-.093581997;-.97818911;-.44368047;3.6529143;3.2177558;3.1449656;2.8994517;2.6765597;3.8164084;2.7010086;3.0345626;1.914271;.83357477;4.5200038;2.233701;1.7645382;.53664446;.52073312;3.4783018;1.7020566;3.2095606;1.1655518;1.5328314;2.3702905;1.9496188;2.6231928;1.1630974;4.3871136;2.9627097;-.94586962;6.2006598;5.5261736;-.96200198;1.1174726;4.3721299;2.5533285;-.069081806;3.1207952;-.75043768;1.7009975;-3.0615399;2.3937354;-3.4280314;1.5515018;-.38242456;-.3340342;.13626581;-.22468889;-.55349278;.13151024;-1.1058695;-1.0039144;-1.9513688;1.0586609;-.70767915;.90827608;1.754632;.72594219;2.0042744;-.35878706;1.2721931;.17674857;-.96914274;-.76986247;.055919454;1.1166431;.8168056;.13366826;.28421456;-.71419328;.31188706;-1.2144755;-.25033087;-1.6241695;1.1865312;-1.1651832;-1.0150472;-1.3507359;1.7755307;2.8857691;.98681653;-2.455548;-.98327023;.67932802;-.31256238;.099730581;1.4940822;.55341959;-.25531366;.8107872;2.7217517;-.76871008;.53351891;1.4693929;.055097502;1.5461626;2.7495182;1.2995056;2.1914573;1.3905399;-.62912059;-1.9295975;-1.7332104;4.0105295;3.3244736;3.1866548;2.1517656;1.6640483;2.9019058;1.9732473;3.0571945;1.3786765;-.83365637;4.0395641;1.6529959;1.810125;-.29439279;.18335506;1.5312415;.48095572;2.3075981;.22375023;.94493264;1.0391263;1.7660043;1.1327677;-.37452906;4.0101819;1.1413494;-.23138684;4.5875874;4.8255482;-.29762581;1.9243975;2.4058034;2.1393712;50.59481 +-.26612085;-.14694487;.52735174;-.61749899;.39599159;-1.2526046;.042890113;.29178074;.34938154;.53860939;-1.6121205;1.2551535;-.14136241;.31069392;-.055724282;-1.5405518;.077941842;.1615255;1.6825291;.34050497;1.2362273;-1.0012304;.42979982;-1.1195903;.93176389;-1.7982669;-.99539304;-2.4923246;-1.5100142;.74942499;1.6231531;.2240317;.76303357;-.42332411;1.9289013;.022418557;.55762589;.05125216;-.080791064;-.068166494;1.3875539;-.58241504;-1.5243863;-.163801;-.67391276;-.67595434;.4048695;-.6365785;-1.2583901;-1.9220121;1.6821706;4.0549502;2.1055744;3.2997026;2.1149337;.23670699;1.7996747;-.14588539;-.71457374;1.1922748;1.0993353;1.4277831;2.8493369;6.1566801;3.0146589;.39263082;-1.1863974;2.7858815;2.5663857;1.4165093;2.5440876;2.3749475;6.6749067;1.9981064;1.5623256;2.3524163;3.6912169;3.6687787;3.3060651;.45113984;-.56147969;-.94191366;.58693641;-2.9724629;3.5124736;-.65325075;2.7316976;1.6345199;3.7251456;2.8346992;3.0213847;3.5224628;2.5392981;-.14785872;-1.109068;3.4143717;1.1530734;3.5944705;-2.1176572;1.694755;-.51438481;1.2745504;-.38243169;-.088727683;.47843271;-2.1547401;1.4010262;-1.6191136;-1.4619972;.55358881;-.35680145;.056521568;-.59521514;.66269886;.030589733;-1.9261298;-1.4631966;-1.5556184;1.8566566;.074225999;-.46360523;-.81459707;.44917798;-.44372764;.67856413;-1.3548183;-.18160383;-1.5041934;-.79692483;.73029441;-.13627169;-.20684364;-.61862421;.6260367;.1737977;.48261833;.66314399;-.87366593;-1.5761249;.47758618;1.9799765;-.64320701;-.44239944;-.48250818;-.29764959;.57276791;2.2256567;-.24938118;-.23443983;-.86252099;.52188134;2.3744967;1.9597514;1.6549368;3.2126777;1.0774697;.039788906;-1.1574974;-1.1224998;1.0676481;.42326364;-1.2543321;2.0920031;4.5714293;3.9624834;.45144433;-.90451199;3.5389426;1.6334013;-.084766909;2.9420023;-.70090532;6.1334782;2.6838579;2.5672507;1.6876533;2.8221211;4.8934703;1.4965601;1.9381284;.04135355;-2.7415509;.47497311;-2.6778975;5.4433966;-1.6493208;1.0340655;3.3469827;2.6971531;2.2798827;2.5101373;1.1631259;1.4283687;1.4494981;-.72631699;3.1775861;.48635575;.96420377;-1.1804965;1.3530686;42.082687 +.011125609;-.60245198;.008503871;.31283444;-.87621856;.41854;1.2121361;.76492304;-.78563976;.47478306;.16558295;.76796114;1.0071048;-1.5677685;-.46250629;-.19901156;.97751462;1.9404032;.95967185;1.3975786;-.040851548;.33979368;.89484972;-.44149449;.048422553;1.7511107;-1.1837575;.81798446;.18277673;.56603545;3.0067103;-.32500732;-1.018921;-1.3909155;2.4583504;-.14634629;.49251324;.77191681;-1.6788164;1.0832039;1.3669796;-1.3380367;-.21749808;-.87787992;.42331246;-.89205819;-.31926662;.71239728;-.46667066;.63428003;4.4240322;3.5992894;.43506303;.69849527;2.4269757;-3.1806738;2.9396818;-1.2693821;3.5361879;2.196805;2.6408551;1.4132524;.51855481;3.5862339;3.2009354;5.1426148;-.59227753;1.8894726;2.0063901;3.8796487;2.9694326;5.0326319;-1.8115557;3.3464272;3.1472237;-3.3966007;.90264684;2.5873423;2.7487619;3.0244768;1.6721729;-1.0808504;1.2603017;1.820568;4.4404941;2.2664957;.1440656;.89873391;1.7107633;4.6234379;3.4453671;-.7023598;1.7394191;.93454665;-.54666489;3.2321253;.71813339;3.9108617;-.69353527;1.7769977;-.60670173;-1.4923298;.9830296;-1.7359675;-.31766;.50422752;1.0766774;-.30117044;-.047409009;-.35360318;-.42659286;-.21167696;.99252993;.40947378;-.92405844;-1.3748975;3.2203455;.73520929;2.9280815;1.2454559;.62121922;1.6993856;-1.2489408;.0054361336;.91887718;1.2343396;1.0531358;3.0667214;-.51741225;1.2063271;1.2914957;-.39718601;1.1511976;.20565617;.52752596;-.79392946;1.1374185;.074749172;-.67162502;-.022928955;.47369313;-.24428259;-.68764973;-1.321909;.83086443;-.47463509;-.25765133;-.12016544;-.67829424;.82947022;3.4822552;3.1605778;1.1289244;.39764056;2.276475;-2.7659452;2.8880217;.25539389;3.4155335;.99682838;3.8157384;.12345383;.81155556;1.3732671;1.609448;5.4512105;-.40784264;.58784962;.38372615;4.1970849;1.4639232;4.1793456;-.31013957;3.0843298;-.89630198;-1.6229609;-1.6334219;1.0166407;2.8367312;2.1645122;.71016556;-.11906448;.99355382;.55167615;3.4177785;.32079005;-.89958912;3.1731057;1.5694461;3.4401526;3.3468237;-.9729805;.71194994;.28278372;-.97113526;2.5875454;.97470552;3.7831829;-1.1455539;.69692367;45.867317 +.27195174;-.29031765;.18579465;.18316571;.6139679;.30276802;-.15790927;.84019744;.32374606;-.63152802;-.90749085;-.39410695;-.22787817;.10009613;-.71252835;1.2193943;-.30950886;-1.0593622;-.98006415;1.0863518;.10966094;.35225525;-.36873907;-.3489072;-.83799922;.56761968;1.2293699;2.6257119;.69978142;-1.32566;.67514026;-.1154394;-.41303709;1.912824;-.36786342;1.0291933;-1.2142495;-1.2598377;.26443425;.60248917;1.3593676;-.5390985;.019843398;1.0775914;-.046987817;.75061387;.30130175;.47156048;.055957902;-.75341648;-.46769851;4.2012639;3.2894242;-.90857404;.87709337;-2.5408006;2.4129183;2.1543272;.93274021;4.1487417;-.87501574;1.0134038;3.1688197;3.7247622;-.75426376;-.25391245;1.8623976;1.0195006;2.8397067;2.0309961;3.5229366;2.7920051;4.1747875;.73595989;3.4630525;1.6918298;4.937603;.40067741;2.0952141;2.1310728;2.3423781;.45954227;1.5075728;5.232204;2.2672498;6.2151814;2.3141897;3.4648945;.37164187;2.2611117;3.3224835;1.6896091;2.3863978;.022358261;-1.8221892;-1.1761872;3.6563311;2.5481722;.81486082;1.833654;3.6593237;-.30602455;1.7004431;-.45299363;1.8003645;.19678071;-1.2808489;.43498513;-.4265008;1.2772748;-.057277389;-1.8125576;-.035577934;.1046663;-.97748333;.97735763;1.3953668;-.91634977;-2.7184963;3.2153692;-1.2590361;.19913535;.3805263;-.27937692;-2.1870019;1.0568321;3.0090971;.087082841;-.35614866;-1.1553546;1.5270656;-1.6461376;-1.5783738;2.4248888;1.3229597;.29264557;-.37378794;-1.7969406;-1.1501254;.98433745;.92235476;-.49501979;-.018506682;-.43657926;-.4769128;-1.9213951;.7161299;-.58800834;-.30257571;-.27814993;-.33849907;3.158504;2.2474654;.84785128;.33592367;-1.3805649;.740951;1.9058961;.64070314;4.1999102;-1.0392143;1.3922153;4.1316786;1.459803;-.62018377;-.34457189;1.374247;-.65297949;2.635778;1.4508979;1.5279596;.33924827;2.6479161;.38953945;.32494077;.50546235;2.3709838;1.4159687;1.5871243;.54185283;3.2203815;.64197338;.23860309;3.292417;2.847461;4.3082442;1.0770746;2.3891482;.5205918;.98138624;1.768682;2.1345253;1.578755;-.067746729;-1.2232727;.39053977;3.5324798;3.1984296;-.27389672;1.2954255;46.840107 +-1.6304253;-1.5529966;.91117638;.21490321;-.027746081;.634606;-.05048978;-.95356953;-1.4144169;2.749351;-1.6217535;1.5131075;-.98043478;.55108649;.83423048;1.7907612;.037125241;.92498565;-.68285811;1.2047009;-.49121651;-.37272254;-.83610642;-.6299603;-1.6674063;.45216647;1.5329123;-.28840324;.91745061;.87932318;.43626979;-.41215646;.74109483;.91437697;-.62864852;2.1042361;-.25715393;-.17125629;-1.9074858;-1.3410053;-1.9925216;1.3517566;-1.2972949;-.0037191247;1.149796;-.19464788;.78025883;.81044394;.28808269;1.3532528;6.8797307;5.7602692;-.027617959;4.7787948;5.2023983;1.3402326;-2.9200089;2.5760729;.9001314;3.2348621;2.868094;4.457016;.87126744;-1.1023602;2.9685285;3.8365712;2.0335646;2.2446384;.79190493;.42727762;4.1126728;-.066511653;3.0212114;2.8796337;3.5858901;3.3880577;.49881923;-.19902948;4.2342877;2.3697464;1.5814331;-.13463652;3.6798232;-.33663878;2.7438581;4.1481166;1.0683125;.16335279;2.7495303;1.8069971;2.9613135;-1.5928006;3.7096536;.0040301727;2.2098966;-3.4329376;6.7796655;1.0161209;3.318938;3.5110526;-2.2719133;-1.1344671;-.4985317;.60042077;-.37351114;1.0444247;-.046373878;-1.7907124;.38985866;1.5511376;-.55241764;.25732881;-1.1462427;-.19416101;1.5093845;-.3701961;.32655069;.8753382;-1.1939265;-.77214849;-.72265708;-1.566298;-2.0432699;-1.5273863;-2.6605415;.012148788;1.6190642;1.7347925;1.5923681;-1.2351098;.065647326;-.45102021;1.7420173;-.01073751;-1.7975252;.61642903;.41024759;-.1107854;-.5364663;-.81240278;-1.9910785;.61314523;-1.306286;-1.1751676;-.64564312;.027104057;.50477701;-.60430831;2.7019663;1.0961376;4.1053729;3.4610186;-1.7807932;2.2373395;2.3264129;1.4401855;-1.5644245;1.4962631;.6073786;2.3045342;2.2559462;4.4124861;.011346738;-1.5875798;2.3761458;2.4010324;1.5866067;1.0177683;2.9397814;1.2043142;2.68436;.9128198;.33587185;1.6649578;1.6071249;3.9485676;1.9833241;.86932307;4.00178;3.1725986;2.0091305;-.30797851;1.1923628;.48807856;3.746022;1.7272617;.20014147;-.64135867;2.9159284;.32806024;1.6938059;-.87867033;4.1339698;-.043985754;.43873894;-1.9821521;5.164351;.14713262;.86996287;4.1180935;48.638973 +1.5415242;-.19178919;-2.1302025;-.54375726;.51746649;.069217026;1.5413589;.082680747;.41725248;-.4894411;.7837463;1.2051435;-1.1745429;.27006325;.73497438;.07481204;-.0083939349;.59747708;.636545;-.92497575;-2.1188884;-.36737397;.66728002;-1.2180693;1.5050203;.51902205;-.76787639;-.33497193;-1.5398293;-1.2232059;1.0389807;.60764927;.77447188;.089975648;.95405865;1.1258218;.10607607;1.1730281;1.1291116;-.46186182;-1.1063886;-.36759987;1.8959925;-.19112128;-.52034909;-.897686;.28488868;.35699388;.26218703;-1.3047928;1.9065211;3.3126452;-2.3006988;3.1838825;.65846175;1.2823436;3.5666082;3.1676805;-1.4552515;5.903008;-1.3182492;3.7513013;2.5458126;1.6038998;2.0040781;1.2822982;1.2019786;3.2277243;-1.8635389;3.7351687;-1.6804216;-2.0953493;3.569459;4.0451956;3.9720724;-.57650691;2.513514;4.6086125;2.6569004;.57991636;-3.1049852;-.78391737;2.0271227;4.617415;2.8671801;3.971729;5.3824348;1.925676;5.5941586;.64034784;.2898888;.68082148;1.5929737;.66408503;1.2942864;3.8573761;2.5484097;4.5494995;2.6552396;2.6819232;1.377759;1.6048251;-2.6511228;1.2772702;2.8860652;-.01663604;-.4383752;.053959433;-.035277288;1.7560955;-.61082423;1.3302256;-.096423373;-.37931785;.63320023;-1.0086544;3.5639079;.45023394;.85667127;.66118908;-1.6562264;-.48236471;1.9396135;-.054980826;-.055101648;1.9182037;.40850475;.054573245;-.10972375;-.25984281;.94726509;-2.3172145;-.64462847;-.14251125;.051132083;.23991483;.10014929;-.45827743;.24403287;-1.2421035;-2.9726577;-.083594359;2.1491868;-1.8960645;-2.8704088;-1.8207852;1.0709945;1.2595376;.048164424;-2.2029021;2.0708797;2.2334146;-2.5190828;2.6164441;.14744925;.63877773;2.7559972;1.8405441;-1.9315174;3.786499;-1.6720227;3.4085269;1.7146983;.92665374;.94338167;1.2220166;-.55560625;2.1010604;-2.9179306;3.8013794;-.55950105;-2.4354308;3.859623;2.0941496;2.8797903;-.19266701;1.4082541;4.6056271;2.9923787;.22342907;-.67939699;-1.2707003;.36237282;.95871431;1.4393326;2.4937091;2.5973043;1.9704149;5.1196556;.29251957;1.6809212;1.4094363;.65024573;-.13351275;.46323222;3.1659951;2.4273729;3.7076411;2.7160137;1.999355;47.047699 +.34799224;-.4120014;.21440639;.20407042;-.90328044;-.18833612;.25075209;-.73607147;-.49971971;.68475819;.95824915;-.78918517;-.62880027;-.36867362;-.57408166;.10566565;.93149918;.72773886;.016332282;.98340505;-1.0924776;1.4954505;-1.4920256;-2.8958716;.33081594;-.051477574;.41989258;-.69101322;.1462764;1.6583134;-1.3819852;-1.0446889;2.4792683;.20334484;-.091307774;.85729349;.17759377;.21650818;1.0481811;1.3126624;-1.0593565;-2.2852259;.61958641;-.37501284;.78986222;.39559358;1.1136862;.2116963;-2.3377497;-1.616685;.49189094;4.6526027;1.4526252;6.4237843;4.1252236;3.4802749;2.4477301;.40222609;-.40259248;2.1112823;1.7955427;2.6688232;1.4192331;.74704236;.94987851;-.65202057;4.2654119;2.6644456;5.8937397;3.3713086;3.1122279;3.6577477;6.2245708;3.7671237;8.2166538;2.4140015;3.3834798;-.24823627;1.5390029;-.093849115;1.6362809;1.3804725;5.4352951;1.1578082;1.6044389;3.2508974;3.6955712;1.2352618;2.6562052;3.237947;.37456805;2.3203683;4.8421879;-1.9189693;1.2579556;2.5543716;3.202527;-1.8047919;2.2590694;.038234789;-1.7024194;-.16275892;-1.3753062;.20246103;-.2322813;-.18254536;.36895853;-.65186816;-1.4566954;.13399477;1.5642117;.277886;-1.4952906;-1.2787976;.13142695;-1.4962189;-2.2614596;-.86661065;-.67559355;.83806825;-.28539252;-.16412318;-1.7882581;-.90058589;1.2720064;1.7895906;-.27104923;.3834466;-.62795079;.75791389;.07888972;-1.8939188;1.5050877;-.64577371;1.7658055;-.32207504;1.4051856;1.0856599;.94431019;2.7370851;-1.0191621;-1.9140279;1.1214768;.34284607;2.1256254;-.19025443;1.1645992;.49598479;-3.2141523;-1.2249664;.61909819;4.9497185;.69205099;5.5815601;1.9104658;3.0036597;1.6500061;.3650651;-.5397222;1.167456;.80644995;.19713482;3.4611332;1.3416864;1.3759625;.068412274;2.1321273;1.4956869;3.3130677;2.4976246;2.3495333;2.7180583;3.7605278;3.6317325;5.9358706;1.5188563;3.53423;-.58591545;-.33557129;-.30176678;1.1577171;-.52230251;3.0845706;-.59974879;1.3329197;1.0421199;3.4369819;.27088192;3.5115201;3.1719928;.9193781;.44184849;1.758214;-.57554674;.58719027;1.1933538;3.6906176;-2.3308363;1.0567609;-1.4721017;53.097771 +1.1106484;-.37701046;.45726195;-.19265406;-.49307472;.79943097;.34391439;-2.2808416;1.5677441;-.057708852;.17473079;.37962151;-.24131054;-.3053371;.88017309;1.3037673;.097116716;1.3745675;-2.7968979;-1.1199918;-.390659;1.3934563;-.43254903;-.65480274;.58084732;1.7174592;-.27189857;1.2848424;-.89469016;2.4353023;-1.6339128;-.612885;-.86896014;.32204697;1.0572156;.62950617;.30787426;1.0339998;.951621;-1.7549154;-1.5857046;-1.1115649;.77322406;.71994573;.65189159;.53084469;1.5096128;-.75861418;-.20441903;1.0737346;.0068559949;3.5220275;1.8548647;.79013842;2.2638848;.39153111;1.21921;4.0291519;-.44377285;4.7792845;-.34634051;1.4229076;1.2733893;3.5693209;-.070253804;4.8163424;3.470566;2.7841709;2.8106816;3.5599749;1.0396844;.026654735;3.1609974;.73046356;2.4161623;-.80799669;.44757986;2.1441288;.44584695;4.100461;1.5443919;.10995874;2.3276544;.48382801;-.86806756;7.8109217;1.9098239;4.1056123;2.6031868;4.9112864;.39357579;.91559803;4.7692409;.37352565;-2.4027903;3.2995641;.26252338;3.6978436;3.2665393;1.1310375;1.0706321;1.883768;.49672571;-1.6783841;-1.2623999;.49338061;.23946673;-2.3886857;1.6053207;.89806199;1.7695982;-.0034026438;.36332622;-1.4378606;.11979567;1.6166284;.37565199;-.57997286;-3.8319888;.21626659;-1.5143958;-.066791996;-1.3387343;.077242516;.60496074;1.6178594;.0099337315;.49013543;-.83871782;.90759575;-.44122952;.77398807;1.1958512;.74321073;1.1806602;1.6893914;-.28962418;-.63923144;.44780296;-1.3555186;1.1720554;-.23441154;.091995701;.27985182;.817828;-.55731696;1.0662038;-1.3237591;.16822743;.57315093;.2302594;3.6384053;1.1982543;.4625023;1.523554;.60978073;3.753078;3.0935047;.24798831;2.2642806;-1.4545836;-.01279721;1.0987762;3.0938585;.74112922;2.4770641;3.6006181;.25387076;1.4372313;2.1591797;1.2319345;-.72673547;3.4733353;.71419114;1.4629292;-.97351402;1.3040435;1.3972806;.88487101;1.4362011;.37667137;.13361225;1.6246088;.071870416;-.81606525;5.601223;.81253535;4.4592919;.58087951;3.4136796;-.62016761;-.553626;4.359818;.099306434;-1.5718855;1.2011446;-.53424174;1.8726318;1.4280363;-1.7454231;53.228626 +-.085301399;-.057338037;.012589433;-1.4536618;-.29150918;-1.130264;-.94741464;.26197118;.92970276;.48769915;1.1763045;1.7995526;1.6847467;-1.4839648;1.2447202;1.1468325;-1.1361582;.59173548;.58462006;.34069276;-.84079731;.93504649;-.62987638;-.36915347;1.0153728;1.4750514;1.8533541;1.9398007;.6290226;-.46986461;.70830309;.13818704;1.0186393;1.0152168;-.16299765;-1.1996216;.0042336825;.27275023;1.0897213;.33391434;.35988912;.57493061;-.56670088;-.67263651;-.91356438;-.24999388;-.68071604;-.58190084;-.08063259;1.0201888;-.39200833;3.7264874;4.2647853;1.7581429;4.8681617;1.9824358;4.0095992;5.6937766;3.287667;2.9317951;2.4540193;.25466233;2.0332792;2.0056684;.31698358;5.0397782;.56556284;5.8573442;1.5485904;2.515065;1.7508354;-1.0852104;2.2773345;4.7907262;4.054893;2.7532704;1.9704537;-1.6321771;1.1811949;4.6633162;3.4200828;3.0638933;.070033647;1.3961294;.7186873;3.0384681;2.7662609;3.0442858;-1.2362841;3.0067787;.094971381;.28616327;2.2721269;.032143302;3.1542261;1.8526207;.10118712;-1.5966228;-1.5757005;5.3328085;-.079161376;-1.0547359;-.15657584;-1.4801214;.10747787;-1.4086729;-.81523627;1.3578569;2.2890382;1.7856913;.95243037;.60214388;2.0723968;-1.1143531;1.1996754;.79337806;-.57676214;1.9417433;.58943647;.084927171;-.60498172;1.837707;-1.3017209;-.46044126;1.1250831;1.2915796;2.3839922;.54677874;-.3322686;-.57638377;1.4283162;1.4241114;.80078769;-1.1139901;-1.2532753;-.69277406;-.02435476;.078337789;-.011042734;1.5546057;-.14332801;-.62912107;-1.3508165;-1.6130496;-1.3574386;-.026366495;1.1424382;1.6178708;1.2634581;.46687171;-1.6510888;3.0923254;2.4886723;3.6347761;3.670398;1.3591622;3.7656159;2.7938612;1.5067948;1.0540419;1.5515015;1.0997324;-.45164976;1.7031193;.25442341;1.4034644;.14880314;3.6790607;1.5411711;1.9177079;1.2093554;-1.7974024;.57640451;3.0915833;2.901125;4.0997982;1.8318094;-.94534701;-.012141755;4.1350222;1.6188121;2.0874887;1.1522671;.77682495;3.2780876;2.9973242;1.3920332;1.9128355;-.40786928;2.4230056;-.22786726;2.2899668;2.9944272;-1.6789598;2.1205537;2.0997305;-.050823264;1.2833228;.2788299;2.1294222;60.210754 +.82371461;1.9286661;-.62296975;1.2983023;.70946109;-.74055976;.6808666;.16066378;.65606683;-.5249601;.63203734;.77259308;-1.1907767;1.1776621;-.12078301;1.155112;-1.5097225;1.8028482;-1.6146489;1.419384;-1.5868446;2.6590397;-1.3929243;-.48774114;-.18158604;.43425816;-1.9194545;.74707687;1.0674018;1.3302059;-.015356864;-2.101244;-.080583453;.88676047;1.1749766;.72854942;.69317472;-1.0900058;-1.003459;.44451535;-.51996416;.019088866;.21428974;-1.0505011;.055082705;.24878216;-1.2502861;.51576245;-.00059262756;1.6197182;1.1518807;1.1591436;1.9960024;.70652121;1.5583783;6.1939321;3.1423712;3.1750989;2.1489682;.67537981;3.7648644;1.7333224;3.0865738;1.8515247;1.6585321;3.8963976;1.2234842;-.51396424;-.75732273;2.0854042;-1.2822338;1.4738864;2.6617379;.48735711;3.3489583;3.2077053;2.7966337;3.8769984;1.4259864;3.6593521;2.9205256;3.0012088;3.3901606;2.4032207;2.5941002;.79330003;2.1148589;6.433558;3.2387791;4.0539908;1.4052967;-1.15228;4.0341573;3.1989346;.89496058;1.4174663;-3.3462782;.23680551;2.8303235;-.30556294;-.07201875;1.0095525;1.5021704;2.0696054;1.1217124;-2.214546;1.0651429;-.30667406;.39235702;-1.5887299;.86831039;.42583448;.71846378;1.9940646;1.2135729;.8374815;-.52139729;3.1013405;-2.9396188;1.2877914;-.95622337;.78022522;-.36071172;-.34588978;-.0047473358;2.3509362;-2.69415;-.27718115;1.0648086;.063703559;1.1212022;-1.336193;-1.3111705;-.89947712;1.5887774;.87957275;1.2619255;-2.3559167;-.019162269;.48992902;-1.4456141;1.1656886;.63709474;.16865517;.55281311;1.3496509;-.83843523;.31045759;.25373703;1.7261078;-.16571754;1.5203868;1.9034015;1.3025216;.27309486;4.0717087;.76180834;2.4566121;1.0064758;1.3631549;3.2590315;1.1439329;3.4434383;1.206427;.2661463;3.0612986;-.74847454;-2.3086312;-1.3465521;-.2272203;-1.2589384;2.0414608;.63135737;.14313811;2.491786;2.580508;4.1848927;2.1584723;1.2987558;3.709074;4.2064853;2.9122157;2.2753582;-.68776798;3.9010124;.52996957;2.9844365;3.7287169;2.921124;4.4685454;.44789681;-1.0813074;3.3216097;3.9727468;.022309273;.92443717;-2.6371949;-.90197641;.033706397;.4896667;59.543606 +-1.5679787;.13832743;-1.0080526;-.12325552;-.24497391;.26721826;-1.1487091;2.5045052;.73592502;.84604722;-.011064077;.96037966;1.1236353;-.52708656;1.2247474;.91381079;-1.5896363;-.16854377;.2517449;-.20507778;-.017792616;-1.2381623;1.2041997;-1.3941482;-.21042782;-1.2217661;-.17540537;.25785187;1.110371;-.6336773;-.63680845;.91180468;-.81758302;1.5222151;1.3051057;1.1474046;-1.6776929;-.54754579;.032527048;1.3994672;.98470992;.95464712;-1.2053977;.71334106;-1.271252;.059376925;.39951763;-.01596057;-1.3984479;-.15169601;4.3877707;1.8596369;4.6374855;1.1101995;1.51993;-.31168637;5.0961161;4.0613446;4.1764688;.94339794;.71937817;4.514472;.93768257;2.4690378;2.9668307;-2.1037409;1.7024893;2.4909861;-1.1302601;2.3052123;.22825505;.26706845;-.98745406;2.6078751;.34633252;.65990579;2.7103891;2.6808591;-1.4497821;2.6269104;1.962236;1.8143076;3.3699374;2.647378;2.79164;1.0890403;1.0064363;.094167404;2.8627155;.45203;3.3647361;1.1732643;1.3219033;5.082375;3.7299287;-.98138851;.00029552382;1.148417;4.0051203;3.5188265;-1.4437876;.98240542;-.85223037;1.2627242;-1.090564;-1.2718151;-.039911028;.40941688;-.22526783;.86206108;-.93732798;-.81009811;-1.9412631;-1.7747246;.7498256;1.7700312;-1.2086277;.64261013;-.84358817;-.31569418;-1.256809;-2.0139048;1.3455769;-.04631193;.38766414;-.65879589;.41708261;-.45561817;1.7388263;-1.2403729;-1.9072144;1.5820338;.31224349;-1.1198199;1.810917;1.0182673;-1.120219;-.30785412;-.47092271;.95451015;-.50255871;-1.5994495;1.2381568;.35125762;-1.1851301;1.7904813;.72604007;-2.8573303;-.9196673;.8703748;2.1915519;.72837633;5.3981528;-.18052773;1.7205894;-1.1804231;2.2158828;3.0203552;2.8799479;1.6943766;-.64158183;3.468673;-.12287444;1.4417784;1.6224908;-1.8907233;-.34397739;1.8763144;.23842844;2.4382567;1.5983105;.68517441;-.7370469;3.2690554;2.2782602;.11544008;1.4060576;3.1630855;.56767905;3.4003546;1.8612013;2.5258887;2.5236995;1.8213463;2.6566656;1.065781;.025499374;1.5579984;.99703765;-.18486069;1.3385043;.23553726;.1535939;3.6030974;2.1718047;1.4506762;1.7619936;1.8015487;3.4692152;2.5263107;37.076923 +-1.6086887;-.29571435;.52223557;-1.0060537;1.1619607;-1.4785011;.14700733;-1.6297922;.29150584;-1.6219683;.066323392;2.0025687;-.1754669;-1.5808892;-.47568747;-.34989962;-1.3880523;.60409755;-.5171116;.66616064;.007697674;-.97364902;-.082768396;-.25761876;-.019635297;1.2822362;1.0872886;-1.1122792;.88485271;1.2362844;-1.7823833;-1.1541289;-.27175212;-.19636843;.62784779;-1.6180054;.71943259;-.6002565;.63498348;-.863585;1.0635421;-.5327301;.55542409;.00096626038;1.1785029;1.1085795;.11195808;1.4280061;.65828007;-.74633634;-.98366594;3.6348672;1.98719;3.4280381;4.1588702;1.9584217;4.2085257;.60716176;.24863042;-1.7894031;5.0500746;-.2571584;1.1543516;.81983042;3.0757227;1.3153771;3.58972;.95034134;-1.5913724;5.3521523;.37709019;2.7628891;3.4683342;2.6535721;4.3223796;1.2220488;2.5474715;2.6830935;2.3098605;4.9088058;1.3828076;.960006;.47183707;1.627189;1.32945;3.3143191;.26423386;2.3569009;5.2099538;3.8295801;1.317257;-1.8815511;5.4428163;-.24050713;4.2913766;2.3263807;2.3148162;-1.3258543;1.7721012;-.034440007;-1.2561976;-.44513914;1.2430822;-.35034752;2.07164;-.86470181;1.3509818;1.0855782;-.30721343;-.7149809;.31864613;.47501835;2.3389728;-1.7368098;.2413477;1.0011907;-.61165529;1.1222901;-.43205205;.12692821;.87205493;-1.0470741;-1.8514268;.7942999;-.074122399;-1.31626;.25932947;-1.5717465;1.5284834;-.17892022;-.047995187;.55597818;-1.3642521;1.3226893;.22654887;-1.7620597;-1.6347394;-1.0664732;-.82781065;.033085924;.76435786;1.0964031;.86559975;-.95171523;-.74083698;-.048419725;-1.4747082;1.3918741;2.063205;-1.223991;-1.7061796;2.1563051;3.1288068;1.8660529;3.7657628;1.4399304;1.7218695;.52618504;1.2861074;-2.2542884;2.9649696;1.0846608;.65753555;1.1517171;1.8109704;1.1010239;2.8554034;.95657849;-.33248299;4.7783084;1.948579;.66416669;2.1498847;2.1798017;1.3741313;2.2516143;1.6998843;1.413048;1.0728391;3.4385238;1.9183342;2.6425176;-1.6469991;.13646738;1.8277417;3.4308486;.7727949;1.1631615;3.4530449;1.5710524;1.1147304;-.70197886;1.7283565;-.65437943;3.9351823;2.8073475;1.8488479;-.67967373;1.4142134;-.22408494;50.980217 +-.66150016;1.4448049;1.785796;.15030183;1.1725763;-.44172522;.037695482;-1.3640871;-.038305704;.27580827;-.41589084;.48728216;1.1257256;-.5917781;2.0060933;-.4471831;.4552983;.069429561;.2585139;.18407249;-1.3917859;-.87224364;1.6378672;.9930048;1.484668;-.0070486595;.21309951;.38120899;.53687084;.33600789;-.22947021;1.1829509;-.042232402;-1.1358763;-.37415206;1.6370866;-.71272427;-.64380354;.43671098;.24465463;.24013028;.28946811;-.65733647;-2.1486731;-1.0728841;-1.6368446;-.60554653;-.2279378;-2.0172677;-.25617397;2.4097893;2.4163611;3.7703872;6.1555462;.25753495;3.7854888;-2.2055733;3.2650094;.40400696;-.98108387;-.32482064;-2.0533576;-.43724686;2.085212;-1.0436534;.88752413;-.67961973;4.1842842;5.2642255;3.9155338;3.5236189;.59128201;2.8971539;.76806229;5.2568803;1.684695;2.893105;1.2866037;-.87176621;3.9463549;1.4529537;5.0434661;3.2196069;-1.8230851;1.2546927;4.7086296;4.962954;3.0798843;2.0913835;5.69453;-1.0957686;2.6232815;.64221215;-1.2420433;2.2922537;3.3757234;-.28278235;1.7866968;4.0801563;2.3944724;-1.9658003;1.165297;2.2745934;-1.0074327;2.6981287;.27796888;-1.1021892;-2.6642356;.77809614;-.97405362;-.98140603;.67215484;1.6161145;1.6159167;.64347422;.35083157;.29897386;.58110088;1.2573519;1.1117136;-2.126653;.31609377;2.2167385;.92797506;.044981573;-.37998185;-1.2762281;-1.4462752;1.3602747;.11136947;-.22333521;1.4242628;-.79557741;.50644666;.13494658;.10718935;-.43081939;-1.0713873;.075192951;1.0289181;-.73513228;-.22999121;.26800445;-.56627119;.33356407;-1.9373641;-.50781298;.52159512;-2.4463611;-.063301675;1.9293108;2.8745332;2.7046144;4.087328;-.61417145;1.7097428;-.28825796;4.3453541;-.9039315;-1.6295718;1.7174717;-2.7146199;-.95229483;.71516514;.11735638;-.23598905;.38620847;3.1183565;2.5285788;2.2402201;2.1084571;-.78005487;-.28294966;1.8920621;4.0127006;.78981537;1.0296775;1.5115728;-.75061679;1.4924816;2.2097313;3.2129436;2.5590496;-1.8574946;.84871209;2.9784689;2.0554166;3.177691;-1.3551327;5.7400289;.15158091;1.4723028;-.41545054;-1.6116505;-.42092526;2.6161571;1.4160849;-.085506216;4.3676062;2.6328402;49.949238 +.99960518;-.76779616;.43533781;1.45577;-.42991099;-.38256726;.91164225;-1.2275734;.447797;-.26380557;.10585794;-.82828766;-2.7453277;.46206543;-.87833548;.18334343;-.50376898;-.015851077;-2.7748213;.94618189;-.19901487;1.0432155;.58258092;-.46596736;-.96922654;.23496513;-1.4272848;1.3291266;-1.434745;1.5720358;1.6808224;.46352047;-.59541345;-1.0274392;1.7709751;-.72540283;-.7313838;2.7706769;.64556378;-.21791263;-1.6624728;1.6519066;.25514156;-.83057737;.17421329;-.61797249;-1.3591533;.91152596;-.19960922;.014394349;.59915876;9.0367346;2.0088665;1.6822555;3.7484295;.24803267;.40073255;6.7485514;5.8009171;1.3832504;3.5408132;2.123816;.4176487;1.6702052;-1.3006922;-1.2696915;1.2708427;1.9653634;1.3914269;-.87483263;-2.3890049;3.8967192;3.8252137;-1.5875926;4.6473165;.5054726;2.0249171;-.79373235;.99601489;3.3728344;-1.2629843;1.0905275;.14253443;-.22186686;3.4827576;1.4047893;3.6305909;.51447076;2.4973805;.84239745;4.1072507;3.7318139;1.7214537;.4643383;-.070057586;.92270517;1.5562013;-.14316474;2.3521986;1.8620148;.81922752;1.24558;.86151308;2.7156053;-.68785352;-.44812033;1.5565549;-.96797705;1.5608805;-.34955886;-.53093094;-.53756469;-.8278867;1.3835377;.40581474;-1.7386302;-1.5087436;-1.7651432;-1.1495681;1.798112;-.18561374;.31826729;.035951458;-1.3504447;-.12718542;-1.6597549;-.66568631;1.4835647;-1.4134635;2.6396143;1.6310195;.66596001;-1.7699224;-.125025;1.6498548;-.52597278;-1.2853618;.70027012;1.3926661;-1.2638284;-1.5752823;.51104456;.68563175;-.34249243;.0093922066;-.75411922;-1.447664;-.28974426;-.3904255;-1.5788958;.17966266;5.5798631;-.59700966;.7086249;1.980978;.55945796;-1.2821114;5.102181;3.4024019;.78706294;3.3847666;2.5314565;1.440352;-.13487552;.33877784;.35551289;2.6527004;1.1726997;-.40197641;-.16665757;-1.1905849;2.7655942;2.4975872;-2.0242579;3.531141;2.0731654;1.1574497;-.28402793;.85381234;2.6514559;-3.2684894;.94751781;.23750193;-.16772726;2.5926414;.7658087;1.5513015;-.69178617;1.7849383;-1.8563536;4.3091836;2.8164153;2.387079;-.50877541;2.6731462;1.6823447;3.0959513;.7331658;.28446186;2.7113681;47.400879 +.46817437;-.2520057;1.7415226;-.21599407;-1.0262522;-.79002917;.51194298;-.245235;.96193975;-1.5513552;1.635662;.77446175;-.042699527;.093365073;1.2521422;-.81586546;.78613985;1.315838;.90766853;-.083513163;-3.0844998;-.80495507;-.71666187;.19049677;.11623018;-.83413464;-1.1226331;-.091404647;.030659648;.073954485;-.48274866;.18362349;.59342879;-1.9875897;1.4340663;-1.3469537;.36442485;.27982613;.52411366;-.051117193;-.39466834;-1.5852127;1.4912256;.35842198;.44494981;1.499887;-.15375608;1.3446755;-.19764619;.47369036;.78601116;6.1337395;4.1901474;5.1269393;.92102116;3.5094461;.61964345;-1.0540799;-.59259129;.82796031;.95968843;1.4949975;3.7063386;3.9151344;3.733907;.54250741;2.7682576;2.161253;3.9994245;2.167043;5.040277;2.5368974;2.0720928;-.50855625;4.4235682;1.8514493;2.753927;-1.5603778;5.9273109;.50718153;1.2859138;3.4050202;3.6399996;4.4354568;.54009378;.70331407;3.2578287;4.2962971;-.74017489;1.9742292;4.8558521;4.828876;1.3338444;2.300112;5.1530213;-.10117078;2.4709198;1.5467424;1.2170844;5.2248392;1.0929705;.53784418;.37120247;.058056105;-.85466927;.33810711;-.55867475;1.2384734;1.677235;-.99799466;1.0157313;.95735294;1.1194066;.1695751;1.6305034;1.6822491;.13906693;.5612905;.94707721;.27796504;-.94787788;.3324852;.19961138;.53631514;.90538633;-.20141163;-1.713923;-1.8208363;1.2583307;-.27085993;.743038;.93754035;-.11907271;-2.9094872;.85432512;-1.8339375;.80677974;1.5094302;-.51625139;2.2162423;-.35668945;-1.8496706;.76889867;-.37786642;.7176438;.53427917;1.8245249;.091306716;-.69839573;1.4750237;.13207476;3.2278361;3.2125957;2.7316024;.59107703;2.2016268;-.30873451;.26769191;.59230387;-.47493154;1.4870107;2.187885;1.3136712;1.6170582;3.1234899;-.24567343;3.5671992;-1.1407872;.78992182;1.004828;4.9279256;4.3988867;1.2635043;-1.85234;2.5483916;.7477653;2.2181592;-1.3659163;3.7809765;1.2871934;2.1760464;2.6781397;1.0406605;3.3829455;-.72934312;.95548165;1.5840515;1.1683013;-.45908231;.89793295;2.6332886;2.504323;1.0677999;1.8912531;3.2664747;2.4486141;1.7660296;2.1388321;-.31383803;5.0573525;61.332195 +-1.4081852;1.8169247;-.51228279;.23425026;.36470696;-.69187778;.011112244;-.7815975;-1.1111327;.036832582;.68060052;-.65672153;.93764752;.32659364;-.52549201;1.2788767;-.24598542;1.0695233;.33294123;.38761318;-.049200207;-.5192138;1.1702485;.6806798;-.054738555;.58324188;-1.0821431;1.9940801;-.27931666;-1.0403959;-.67379373;1.854452;-.26165035;-.094988592;-1.3043661;1.1005824;.071003094;1.0144838;.25170377;-1.5930519;2.0669823;-.91277122;2.2903752;.37372923;1.3336302;1.0538843;.72738248;-.13844219;-1.0108908;1.3148618;4.9261556;3.6179774;1.1156771;4.1096382;5.9783483;-3.2834816;1.0720062;3.4725442;4.669467;.86871731;-.67549574;2.2590129;4.5312414;-2.1172924;2.4025819;.7088362;4.1139693;4.0890169;-2.8560274;1.3094909;4.630374;2.3500812;2.2826328;1.582039;2.6755383;1.9923874;-.3342697;.92698169;3.78701;1.7965364;5.4187293;3.6771307;1.3401769;1.1395319;1.3028463;2.3538194;-.25279808;-.0083138179;2.5322919;-.86612368;3.6966062;5.5886631;-.42369011;.0080781216;2.966233;1.3279886;.89476126;-.10411435;1.307503;-.51742971;-.29917458;1.3883264;-1.6445167;.22922021;1.3674794;-1.2628686;-.65648544;.72820562;-.17514138;-1.2070818;-.47764131;-.036891796;.21477076;-.33464962;-1.0797008;1.1143708;-1.5841255;.071947351;.72316653;.09315297;2.0736864;-1.9061097;1.4653357;2.29983;.11311872;1.5834593;-1.1714408;1.1555483;-.11354777;-1.0607319;-.76913464;.57704353;-.54993808;-1.0199142;-2.5051517;-.44375008;-.39173794;-.66427118;.72472918;-.67722529;2.736618;-.68980962;3.3225465;-.26554954;2.1905267;1.3156301;.69334519;-.57176101;-2.8207996;.20792761;5.5861139;2.9879947;1.027819;2.8095367;2.5403407;-3.1008561;-.63860542;2.7987382;3.4928958;-.77597177;-.43656725;2.6358778;3.2024899;-1.7251836;-1.5526836;-.28989992;3.6291361;1.2514985;-1.8674486;.4118855;3.072649;2.3562486;2.3197191;.78893977;.78453374;2.1404772;-1.7787802;.13345768;3.2294421;.77524829;3.4512305;2.4137635;1.0444796;.4958486;1.3095607;2.9143345;.94324797;.90563345;2.2469313;-1.4247009;2.9821424;4.1310077;-.94722873;-.32733274;.44282141;2.6302552;1.4024416;.32471028;.63315874;-1.0578288;52.162773 +.34235927;.050300144;2.25632;1.37898;.05738344;-.13674128;-1.1105168;.19191299;-.87381643;.74362886;1.4794903;-.88961506;-.035559136;.77915615;-.83196819;.70450747;-1.8796784;-.77739793;-.37010673;.89874291;1.1178992;1.1061069;-.98668212;-.53033942;.44178566;-.84756094;-1.1439945;-.043088734;-2.0690374;-.056535203;.32772306;.47473827;.035971083;1.6259468;-.29729953;1.8771638;.70161712;.56565493;1.399453;1.0842086;.74047256;-1.4234811;.87105989;.42276156;-.50550687;.94159049;.055129178;-.2590794;.046756323;.29772887;-.47958213;2.9152431;2.5022068;4.202353;3.3263493;2.2982867;4.1389575;1.4741764;-.051560897;-.88978565;1.7847089;1.1813581;.92313635;2.6973393;2.9140828;2.4587553;.66217446;5.8299251;.87271219;1.9679267;-.20665123;2.5863509;5.3217096;3.5459244;.16801935;5.1137657;5.1461191;-2.2849002;-.15498285;4.4974294;5.3849301;.35129601;3.8934257;3.4951437;3.2278025;2.7859261;.81226814;-.20370352;4.4601841;-.64311957;1.2130708;.48051101;2.8550324;2.0631251;2.4158063;1.1633179;-.27981016;-.79955405;2.1126683;3.0770416;.26993662;1.2392803;.046035033;.46531644;-.82868391;.25429448;-.30264643;1.2209367;-1.1003107;1.3840703;-.022920184;-.53759301;-.11250661;.45608896;-.28024137;1.4236038;.026796781;1.3225404;-.01141192;.68952531;1.8059553;.46307185;.75381964;-.0097403629;1.3247013;-.19298194;-.18125774;.97657222;-.086757161;-.3098051;.061575208;2.1141331;-.94302815;.41412431;-.90934473;.78019577;2.2750204;-1.0088143;1.4001735;2.2378631;.47899178;-.6853931;1.9505113;1.0937378;-.93435907;-.72686076;-.61473078;.50291866;1.3204448;.18094942;.21974215;3.3657019;1.9134587;1.1082625;.97039288;.83094108;1.4358109;2.3260093;.66035467;-.81362265;1.076287;-.43222913;.71217626;1.2483439;1.039345;2.1899774;1.0766697;2.7438645;1.5216987;2.2870195;2.294801;2.2236753;2.6857119;2.3822258;1.1315017;3.8052659;4.4906225;-.65728605;.53711259;3.721869;4.7807126;1.4273459;3.7134345;2.8042252;2.1880114;1.2841903;1.163218;.56541014;4.0706339;-1.33059;1.9229363;.9415037;2.4735658;1.0553173;1.5725225;1.0860176;.013737477;.44212323;1.4664521;.29733849;58.422642 +.30583599;-.0086291684;.90041363;-.82073617;1.7035031;.44850147;-.46273485;-1.0187924;.37814793;1.3813953;-.48570177;-.57875162;.14039105;-1.2933087;-.18444267;.052369419;1.7449843;-.79552215;1.4594822;.28487724;1.5940176;-.76439369;.80301166;.0052760118;-1.1352136;-2.1426809;1.0128126;.12927341;-1.7544286;-.25945643;-.94639683;.49058777;-.66621226;-1.8205131;-.38441074;1.0490007;-.81714857;.76692647;-.39013156;.31265429;.50630999;.94459093;.24485648;-.99309111;.12107301;.76925647;.6445322;-.73804158;2.0795391;-.11878377;1.4104854;2.3548021;-1.7235984;1.2070786;1.1371087;2.3815227;1.5391502;4.2279391;2.0674458;.8220017;1.736698;-3.8259115;1.222561;1.6693754;.32068592;.60878313;.37243855;3.1337228;1.8984395;4.7123728;2.6113968;3.1039507;1.1480496;.01643022;1.0088891;4.6498089;.31023005;5.6322718;1.7546339;1.8227609;3.6464872;1.6117635;-.68947297;2.1450887;2.671047;1.3771307;1.1608548;.36880112;-1.7451376;3.5544627;-.11791576;2.769377;1.1519815;-3.7258041;4.2638817;.66560316;1.9412366;2.8581362;1.1366315;3.296772;1.2955638;-.51531118;1.9714043;-.23549294;1.0949261;-1.291777;.82023758;-1.8674433;-.35686344;2.051795;-.052134;.3023665;-.12581912;-.70754331;-1.0797836;-.86167145;.3672463;-1.1553222;1.1148818;-.069802172;.50164086;-.010818029;.17335591;-1.4836528;-2.3852732;-1.5075594;.63364124;-.33531457;.72952336;-.23315619;-.49150425;-.092105299;-.02316674;-1.5832421;-.78940952;-1.2563573;.54053432;.77684051;-1.0480472;-.22394571;.0027069084;-.8659097;-.1098477;-.81859058;1.5208015;1.5681925;-.55098206;-1.0460756;1.7578202;1.4753655;-.75562257;1.1332855;-1.509109;2.2959518;1.3448131;2.6928146;.98253822;3.5233765;.48588547;2.4345999;1.6133528;-2.3805888;-.25540543;.78189456;.0022023241;.84506142;.46064773;3.2131641;1.8569205;3.6181118;1.2980388;1.5465915;1.202004;2.1295788;-1.1221092;3.3703187;1.1655422;5.6640348;2.9047849;1.330799;3.7682195;-1.3300025;-.5999108;-.92407852;.13996771;1.125658;1.5796245;1.9222344;-1.809394;2.6507132;-.49822703;2.5811224;1.2713002;-3.1813416;.87698752;1.0138584;1.6025903;2.4128354;-.19734253;1.6127447;41.10899 +.24275491;-1.1407061;1.2235643;-.62751108;-.12096686;-2.130049;-.40160581;-.35753503;-.72348243;.37497768;-1.4041964;-1.3402214;.8177374;-.18411128;.3154735;-1.2267916;-.69680917;-.49606472;-.82572728;.38917339;-1.2681231;.7826612;.62448001;.92654514;1.1151112;-1.6968509;-.047279254;1.3029642;.2624599;-.091891833;.81747013;.40858185;-1.1620455;-.63927597;-.20699847;1.0739777;-1.3308495;-.91128874;.65454268;1.4296747;-.096009284;-.33331898;-.39580962;.71914077;.74384856;.86465311;.33682269;-1.813373;-.48673618;1.6198866;3.3497214;1.1941133;4.4755683;1.9862001;4.0207367;-2.8135188;2.001298;.6399706;2.5730596;-3.4960511;4.2318401;5.9591899;4.7273064;-.25350589;.4200756;.12851393;2.2189288;-2.2433093;2.8088717;.71916014;-.30630866;2.3559926;3.5940249;1.0711013;2.0899386;3.9113572;2.8823798;5.6426134;1.3843702;3.080498;1.8217207;2.980201;-1.5372579;1.443927;-.61307102;-1.8571715;3.2981689;4.143856;2.2782419;2.5345442;3.8563585;5.2245674;-.82255048;-.52020425;1.1425381;1.4548036;-.70180976;4.2706666;5.1955895;3.6512759;.69341141;-.52888542;.92878038;-2.4156461;.45589796;-.6897825;.34113431;-.34642074;.12456677;.8326655;-1.0819634;-2.8649182;-.12136996;.81128234;.067526251;-.65363419;-.74137032;-1.8882648;-.17618571;.5038957;-.36132941;.97072363;.33161855;.62764728;1.3392494;-1.752923;.2659463;.52044976;-.61911112;-.71912169;1.6002287;1.3790108;-2.3144889;-1.1524462;-.52580351;1.5292042;-2.2620192;-1.6623219;-.84811467;.93954724;-1.2003404;1.3979766;1.0100228;1.4094567;.59395874;-1.1799793;-.87147462;-.49524999;-.2450553;-.80420071;2.335968;-.025666146;3.7478039;.50339597;3.8566117;-2.8182423;2.5538013;.012691337;2.3503301;-2.0439548;1.9717413;3.6966157;3.5319505;-.64193559;-.96042907;.21163025;3.2134318;.39460126;2.7931221;.83937335;-1.8338501;.8287822;4.1235366;-.098801889;2.2007139;.62710917;1.6469294;4.4345388;1.0308704;3.3478284;2.0033174;2.0568454;-1.2343469;-.2980977;-1.7708369;-.94702709;3.0193269;3.552465;1.2425171;2.1955667;3.4397597;2.8179488;-.95705789;-.24759236;-.30146343;.62997288;.33581036;1.8661175;4.3358183;4.1785975;42.988182 +.18345596;-.80058551;.88747758;-.22674297;.35665873;-.270641;.49787059;-.79676193;-.14155477;2.0355711;-1.7749392;-1.6951604;-.53912818;.96344209;-.57290381;.014430202;.69223255;-.49155226;1.8323337;.21375383;.17174444;-.92152208;-.029616116;.52062488;1.0585558;-.95046222;.46179804;1.8160086;1.3173229;.19110543;.49347949;-.50707638;-1.2807285;.5013063;-1.3584261;.52736735;.96345478;.35886815;-.85361105;.4937661;.98887169;-.63163954;-1.4015434;-2.343154;-.6997391;1.1735784;1.0232389;1.6845695;.3310869;-.75761414;5.3070612;3.122463;.85498333;3.4026203;3.4153624;1.1648538;.22040886;-.40462559;1.5790536;3.0171871;1.091507;3.7043636;2.3808296;3.2372355;2.2223644;2.8202639;1.9501594;2.1393504;3.0151911;-.065226398;5.7611632;-.24860865;1.5003823;-1.2692001;1.0975871;-.15031995;4.3214793;3.7674899;1.2982295;5.9308004;1.0690293;2.2913494;-.20968549;4.0391407;3.2315657;1.7362444;1.3487409;1.2144617;1.8877164;2.8696585;-1.0254287;1.9005355;4.0141363;3.897254;.99549264;3.2065761;4.3572531;4.1862726;-2.4754946;4.9871712;.18665275;-1.2547615;2.4338818;.28825381;1.9098377;-.17065342;.75342101;-.93763375;-.13989678;2.3539321;-1.4776716;-.77771795;.44989815;-.45307037;.25223711;.15187778;1.017477;.99099284;.55962849;-2.4122617;.65089351;-1.4596727;1.1254063;-.64568383;-.81537306;-.22687644;1.8010103;1.6432035;-1.4329904;-.73343927;1.2165115;-.94039547;-1.2937288;.25833514;-.4895919;.88724506;1.2214724;-.035061214;.075559609;1.0927637;.82588983;.17438129;-1.884195;-1.1735141;-.422838;.78547788;2.9522076;2.2604215;.023850968;-.45189747;2.7018428;1.90011;-.72630554;4.0454574;2.1985726;.33286753;.52957857;-1.0713654;1.093914;.59630865;1.8630555;2.8396096;1.30792;1.3654116;2.4081097;3.2486446;1.7325724;.34343645;3.1245825;2.0913377;4.5644546;.78874987;3.1124632;-.73766994;-.68093878;-.42942938;2.7550874;1.9599338;.88761127;5.0004792;-2.3831005;-.12946223;.0472674;2.8870475;2.000459;.63175762;.29474345;-.12193253;-.026089242;1.0824255;-2.6437225;.9136312;2.9074268;2.1269121;.030714115;2.5156527;3.5917819;4.6503639;-1.7000853;4.6824422;52.988281 +-.30307594;-.073240787;.36337617;-.23731916;-.58448112;.3664619;-.53448212;1.4464746;.5015381;.92015433;-1.6412431;-.29972893;-.10989013;-2.1103623;-1.1720704;-1.0487469;.86317277;.72623539;-.59755486;-.47003889;-1.5202771;-2.2107108;-.58241415;1.3760735;-.26650822;-.57793999;.85139757;.7778917;-1.2683372;.65430015;-.47746241;-2.2328691;.23594083;-1.7264508;.94475466;-.87253737;.4987784;1.367849;.64553076;1.2105818;-.73422742;-.19695978;1.1181686;-.56449193;-1.8570176;-.58167541;-.57918704;1.2905917;.22643568;-1.3330814;.63698328;.45522964;8.3680153;2.0751636;2.3526142;3.0092282;-.013910447;1.9021863;4.7439127;-.56539994;2.1327887;1.2912986;1.0303178;.77666897;1.3719853;3.8781598;1.1865984;-.66220176;-.26331648;2.5679238;.5090909;-.031244287;1.388559;.49592435;-1.1401303;5.1515064;.70741123;5.6827731;.54748744;5.8601236;2.6704931;-2.7048676;.522888;3.1184638;2.3752089;1.7239053;-.50877661;1.0472391;-.71631491;1.6733203;1.3615776;.79462665;1.8913052;3.0817823;-.22044143;-.050365437;1.9497509;4.9268799;5.0147467;1.7877368;-.30999234;1.8848511;-.094338939;.96002936;.61458534;1.2265954;-.17092575;.14951862;-.88726979;.83215737;-.43462583;-1.0392798;-.052572146;-1.2944143;-2.1068988;1.0975958;.0083932327;-.014806121;-1.733303;-1.5673895;.39772534;-1.9592487;-.55387092;4.1715059;-.40005112;.23979563;-.057360344;-.88127488;-1.3000362;-.079369672;.48132902;-1.9987391;-.12008466;-2.880919;-.08244478;-1.1146611;.23310891;.17466348;1.4449078;1.631361;-.48258466;-2.4170063;-.036066115;-.69934356;-1.440887;-.026864694;.22297181;1.5450244;-1.0334067;-2.6410952;1.0269938;-.10861215;5.5964103;1.7433233;1.6720523;1.51271;1.9596319;1.2568204;1.7550929;.23321205;1.3138381;2.2345154;1.8638999;.56400257;-1.2019113;2.4215746;-.16690354;1.332522;-.51433343;1.4538922;1.06551;-1.4499228;-.65334314;-.96577358;-.67971873;4.8676271;2.0355875;4.069387;.12571011;3.2041616;.2608248;-.41882229;.25290892;.088426679;1.7557923;-1.0750372;-2.4828072;.26640618;-1.0355898;2.5808299;.60888809;2.0376618;-.37594941;1.7292045;.34787899;-1.0526955;2.4714975;4.6330299;5.263618;1.6653733;34.06488 +-.03849807;-.55327338;2.0184503;-.41643927;-1.3095953;-.14290389;1.5794177;-1.5673435;-.26464549;-1.7726396;-.46635306;.14204355;-.52753425;-1.1170862;.30935997;-.9727332;.56723589;-1.3916018;1.1661619;.33560437;-.27425453;-.076782033;-.31633091;-.63760358;.31718057;-1.2599058;-.087729342;.44906172;1.7306399;-1.0338066;2.4182315;.10180898;-.8551175;.01308832;-1.8416878;-.7277115;-.5868445;1.1482472;1.113395;.088107489;-.55277187;-.15740459;-1.0385917;.85088736;.51499695;-.32764655;-2.2708411;2.5641308;-.94098461;.48374331;3.1039524;1.4529612;1.05103;1.3482518;1.6349244;4.1168642;2.286145;-.90271705;.34302503;.87212551;.68740219;1.0790585;5.0112972;.25717273;1.1581839;4.2276011;-.12163054;1.7095317;4.2072449;1.3317716;1.9817412;1.8642658;2.1280065;5.369657;1.4215444;3.2056379;2.0419672;3.793421;.50376213;3.6310887;.39754954;1.3360347;6.0243325;4.5830135;2.0270929;3.0904999;6.356904;4.6723347;.068582341;.2765567;.78387922;2.3974705;.31074238;.82874489;5.4064531;-1.1235751;3.9822333;.65922391;1.7974653;2.7288702;-.67461884;-1.7022622;1.9547334;.74743742;-2.337862;.27469581;1.2173516;-1.6335112;-.40978548;-3.4548891;-.71547061;-.01843882;-.68693686;-.64136285;.12749165;1.9727381;-.19996375;-1.5957286;1.3899848;-2.2496691;-.62721604;-1.665751;.42225504;-.20938461;-.61153483;.033798594;.90534747;.20981263;.95412982;.50721514;2.2879939;-.86690599;-1.6044331;-.24099562;-1.6509993;-.051951341;.19982849;-.411643;.71761549;-.093504719;1.0466578;1.1977499;-1.4709938;1.0622197;-.86119425;.23840104;-2.9614353;2.221554;-.086166769;-.060674686;.23168172;2.3838782;1.2612995;1.4998451;-.37790641;1.2334805;.39247683;-.3408713;.48123085;-.55687499;.51522762;1.0522261;4.6650963;-.4161475;.43237877;2.5237226;-1.7055362;1.5969207;4.1757746;2.6590533;2.0155833;.77384615;.56858659;3.2990479;2.393472;2.3965657;.27189347;2.7448728;1.7604517;3.6994629;1.5824847;1.3761454;3.3072078;3.546952;1.4501566;2.8896053;5.1261311;2.2249076;.48896578;.09501823;1.612671;1.8229926;-.68891609;1.320073;5.1285696;-1.0749394;1.0223703;1.7797282;2.1562891;1.0611063;56.470821 +.20026685;-.25521669;1.4985504;-1.1316726;-1.1201035;-.14853837;.19708338;.33702272;-.85702509;.39593711;.7109493;.61445236;-.49734974;-.29642946;-1.3979986;-.254498;-1.0464758;.90721172;-.84898913;.52890629;.055234112;-.47886467;-1.094909;.64401656;.7240985;1.6578125;-.44579563;-1.8785241;.041854847;.078531444;1.1861248;.93999946;.74011874;.83326358;.23219763;1.0421662;.86328942;.12012317;-2.1366887;-.61754817;-.67713827;-.050079927;.018705945;.787893;-.55841768;-1.1732093;-1.0449179;-.6765399;-.45004535;-.36601809;2.4514134;1.0472057;1.4955628;2.4352543;2.8924866;.88094711;1.1635213;3.5902631;3.0402763;1.528495;-.33926973;.41722918;.65519702;1.9902903;2.5445795;1.3914863;-.13998178;2.2994065;4.2851515;-.13326184;2.3432884;-.0038529993;-1.2227371;-.72086555;4.0617833;4.5154614;-.90446979;2.6026046;1.6995544;5.084969;3.2850561;2.5990744;5.5996919;-2.2677984;1.3878959;.49845299;-.11863206;3.6250248;-2.1768692;2.1346397;.38642383;2.0874534;.44510528;-.20437782;2.8348866;2.3239014;1.2884829;3.3968625;2.7731926;3.0172014;-.5364446;1.2211851;.37023869;.19302274;.072774991;-.14388704;.44214505;2.1754768;.025184223;1.7638651;-.45816708;1.2738471;.20975824;-1.0905517;-1.3777124;.10294235;-.015098765;.7447899;-.29101852;-.10118458;1.2260188;1.5362929;-.78890014;2.1604841;-.30885404;-.34432894;-.91509753;-3.7810121;.72632414;1.4130342;.2464733;1.4654391;-.73743677;2.3252718;.41521099;.17749348;2.1029127;.74326324;-2.4890854;.35566765;-1.4235035;1.5719413;.24714462;.85756969;-1.7083105;.66569453;-.99506605;.27175987;-1.0122968;-1.2472405;2.5031953;.50369418;.89206243;1.0229934;1.6309009;1.8905895;1.8153032;1.3775499;2.435112;1.2243243;.78394568;.70377421;.45736125;2.8920887;.52755398;1.644271;-1.4192158;.15452121;4.5806293;.78251034;1.847742;-1.3677521;-.85584426;.31846508;4.8761845;2.9786284;-1.3734018;2.5638895;1.2488415;4.4562449;3.7547443;2.2440162;4.1126642;-.77942687;.44853243;-.30383146;.42732182;2.6667387;-1.8641613;2.0881763;.5428564;3.3481503;-.6764853;-1.5806829;1.9237007;-.53939408;-.25827688;1.8906721;3.572351;.58691388;34.34795 +-1.2114711;-.25234818;.98598301;1.3469003;-1.9339249;-2.4950216;1.2097437;-1.0300874;-.90649045;.71218091;-1.5458491;.14923297;.64504951;-1.1691059;.16224432;-1.6400297;.10271904;.24042279;.65264177;1.1945487;-1.6814376;-1.2517996;.55850941;1.5859799;-1.4614835;.77610958;-.29214874;.82785511;1.3049606;-.69402879;.9260956;-1.3003329;-.36072296;-.27120113;.27561331;-2.2858052;-.051619239;1.026903;-.45304134;.54468441;-1.0440377;.41173336;-.12376427;-1.830359;-.16813342;.13455555;-.78568208;-.54922777;.62310016;-2.224175;1.3284568;1.7199783;1.0055895;1.9680421;-1.1358699;-.46377629;-.98639894;2.9963615;.55710667;4.0988784;2.8443303;-.86101788;4.4107456;3.4823;-.2000989;4.5418601;1.9684719;3.0368402;1.1162608;1.3558211;2.8418527;-3.4899769;1.4918013;.62273341;1.2709198;1.5915171;4.7818713;1.6061857;.86624998;4.8539929;1.5087506;1.7170509;.38802129;2.0555694;1.0807022;1.441702;2.0786929;4.0924664;2.5123665;1.6339194;1.5323536;3.9699712;1.8366953;2.6132064;-1.55358;3.1117413;2.0477684;-.3539772;5.7808552;2.7041194;-.68934739;.098214008;.65096772;1.1646712;.053803537;-1.2390904;.54760313;-1.5797539;-1.0575895;.92435259;-1.9702686;-2.4426425;.2708987;-.52975637;.80762523;-.81075293;-.81713897;-.17263013;1.2963685;.98984516;-.29946154;-.94828326;.27997205;2.8471026;-2.2634547;.97757477;-1.0095112;2.482985;-.086288787;.12260026;-.52533776;-.16784327;.70965594;-.74315351;-.23383583;-1.406836;1.1330876;1.0284203;-1.6504138;.7524631;.19436198;-.41967845;.86769754;-2.1188045;.069130853;1.8632673;.0092248302;.24748975;.28085634;-1.9223489;2.6918869;2.1815403;1.4750719;-.30740643;.5644955;-.94296569;-.16989006;1.9353803;.75907302;2.5078633;1.8379639;1.5128615;2.1107321;1.6033427;1.0937004;3.9308825;3.2783666;3.1074224;1.2414675;.21885051;3.748708;-2.9444201;1.9318297;-.55180353;1.1613816;.98557693;1.6941297;.039817818;.40469441;4.0263758;.32843527;.49299791;1.1150528;.40000233;1.2705451;.92547566;2.3905959;2.4408417;2.0815487;.67240089;1.2752711;4.7039046;1.9941807;1.8129354;-1.0540525;3.5124712;1.9642266;.16419299;3.1288214;1.4080746;36.662437 +.81593317;-.91190445;.34848458;-.7244662;1.0808898;-.19625627;-1.1555653;.1285198;.13472289;.012679268;-.85532069;-.28833115;.75876248;-.8341307;.63782591;.82770646;.05768745;-.081262991;-.346239;.2284556;-.81622034;.76093429;.24831797;.10690454;.19676754;-.12099895;-1.6604829;2.149338;1.3666232;.095675722;-.62280869;-1.1057624;-.024410514;.73091125;-.69695503;-.8093043;.86382025;1.4395685;2.2973933;.72833496;-.83825594;1.6114923;-.12137752;-.10719126;1.1978925;.77060705;-.18923715;-.92962813;-2.0249434;-.79562896;1.1973737;1.8536345;.54781157;-.12774628;3.7395594;-.3903276;2.2941246;3.5179377;3.4801123;3.7969193;1.3902724;3.4725697;3.6073992;3.2678809;-1.180833;-.72343558;2.5505071;4.1913524;2.6850653;4.2125292;.48761562;5.2324362;1.0716789;-1.3639376;3.4561961;2.3139842;.47841367;3.9788864;1.3771883;6.1806149;1.5674146;-.4844906;3.4176431;.29605436;4.8315086;3.4230807;2.1983089;3.4730406;3.2188036;3.3156676;3.5069723;-3.8957076;-1.0183847;3.9515133;-2.820462;2.9536757;.74561071;2.8679359;-1.8532854;1.0638815;2.1749723;-2.8393524;-.32200497;-1.6864716;.5771482;1.0906516;-.42071971;-.014861704;-1.5419711;-1.0442921;-.86264598;.1164859;.54106057;-2.4703391;2.3852634;1.500048;.86423182;-.7561506;-.94860184;-.081732661;-.78126955;1.9878582;.32541871;-.81781101;.69270921;.12499652;-2.4157922;2.6877608;.26060486;1.8275713;-.99932098;-1.1394182;-1.386016;-.56821549;.84053028;-.032553561;1.3135974;1.1640985;.088899136;-.14580183;.37725893;1.104947;.35760373;.92927396;2.0998337;.59042615;.84731227;-1.3159163;-1.2834606;-.63115489;1.4002869;2.100945;1.366307;-.65863246;3.0479126;-.78569376;1.0410072;1.4484286;1.4498416;1.8089576;2.331409;3.1355121;1.8622241;1.2486366;-1.2288291;-.8298018;1.6070982;2.7879741;1.8814834;-.045928571;.46243602;3.4303565;1.4631245;.28736731;.43832642;2.3187103;-.50350535;1.5828874;.78714782;5.0304465;1.3758396;-.061038531;4.0526452;.80754459;6.7198124;1.0827998;1.8021066;2.2988451;.54557705;2.5169237;1.885689;-2.9209406;-.28858179;3.9162753;-2.5994804;1.6906605;-.46533686;2.4011905;-1.0769442;3.0008852;45.071926 +-1.9715912;.36415687;.01147981;-.53013873;.49582139;.1119455;-.85233808;.020951863;-.82845598;.32784927;.096080281;-.55415553;-.10092495;.26454547;-.1030277;.18908574;1.577879;-.47372168;1.209222;-.78041327;1.3678678;-.6298281;-.70988935;.61341447;-1.1908287;-.84479207;-.72896701;.35660371;-1.6914605;-.16032435;.67962658;.5562644;.38346505;-.22752939;-1.032977;-.82820481;.70505756;.94945222;.66348755;-.70552433;-.011514654;1.3440471;-.10213806;-.17377739;1.1936423;-.29976285;.92903453;-1.469005;1.2665404;.93664455;3.4858241;2.7795188;3.6867125;.25794923;3.8228536;-.23908047;-.42001221;1.4208324;-.098797008;-.048686929;-.11070525;4.5509667;6.5265355;2.1376147;1.5659647;1.4867575;-2.1839387;3.3948858;.54707557;5.0271883;1.9700629;.039385624;7.4247608;3.5111184;-1.1247724;1.3522187;-.56201321;2.8804522;3.1887388;3.6651683;1.6568722;.59634477;5.35184;3.2720497;.11358009;5.4258828;2.9257348;2.572494;1.6745077;-.28238875;2.4333546;4.6417027;1.7646054;.8457759;1.1295615;1.9393818;2.6222296;1.0903941;4.1402235;.72491699;-2.7476618;.53743106;.34323514;.39017817;.67599678;.16545853;1.1762418;-.40895897;-.81488717;1.1126665;-.7583946;.44693854;.33943716;2.9659774;-.064820662;.32620683;-.071370482;1.7268223;1.1328298;-1.519477;.33383408;.21812494;-.35914063;-.88801944;-1.2958589;2.1831145;-.78795946;.92227411;-1.5532998;-.51614529;.27025607;.6171363;-1.9691786;-.5679155;-1.2267035;.38579333;.15131278;.60894966;.42708892;.36787513;.30107754;.6789363;1.5243601;1.2406776;1.2357931;-1.0403099;-1.0726632;-1.5430183;.32782191;-.049442299;2.1592546;.64364135;1.9177457;.56156242;1.6719877;-1.7738384;-2.5950816;1.7158877;-.035069983;.96583372;.096179061;2.9316125;4.1446824;1.5619179;2.4227445;.91862857;-.86532426;.20773335;1.6033367;2.5237322;2.6751306;2.9179902;4.1210985;-.21041669;-1.0836298;2.001586;-.80689996;3.43151;-.26221025;1.3051137;-.18610688;-.47448936;4.8667574;1.2842107;2.1190963;5.1109772;2.0148313;1.9795313;.74018764;-.75239748;1.0457346;4.8653412;1.4338458;-1.1462408;3.0683758;1.2140673;2.4645669;-1.4465163;4.1835384;.2368422;53.818996 +1.8269756;.79421133;-.70541102;-1.1085706;.30525103;1.4670168;-.35206795;1.2321844;.24769732;-.68807125;-.69259769;-1.125735;1.3989974;-.048576783;-1.9114649;.68246663;2.1452253;-.59326679;-1.4914292;-.87048423;1.1711714;-.36344931;1.593508;-.32387519;-1.9275032;.10409912;-.78911346;.7251913;-.18058993;.32826948;.62783927;.18508625;1.3282804;-.27696621;.58099061;.091718614;.35286394;.072863914;-1.2036576;-2.1241469;-.055113532;-1.2454342;-1.3179152;-.15954615;.97881943;-.79517251;.23288727;-.45003748;-.28248918;.18183549;6.9436574;1.933488;.15195271;4.6153345;2.7523034;3.4745893;5.8617058;2.4022629;2.2415926;4.2108288;6.5939264;3.7078137;1.2515881;4.3571758;.34174606;4.3496122;-.60611975;2.0983183;.36658049;3.3430443;6.633317;-1.5505939;.22833633;2.5332603;2.7691157;.59300947;4.0582099;1.9999938;-.20977397;.54652512;4.2697387;-1.0341079;1.2381544;-2.2234619;3.4201033;.59383118;2.4285784;4.05266;2.885844;4.3937645;2.070488;-1.3887435;3.7978752;2.7451313;5.8299203;-1.2394364;2.5871415;3.5418801;3.9127204;-.20567225;2.284838;1.5408586;-.46398398;-2.442961;-1.8569745;1.5148445;-1.8984685;-.46047464;1.5711066;.7427628;-.27188519;-1.0996848;2.5980556;-.92216641;-.14800492;.4061116;1.2216495;-1.2692168;-.47430471;-.64905989;-.048663232;1.098266;1.0453905;-1.0547422;-2.4216564;-1.4825647;.29407647;1.3911623;-1.2627834;-1.3339561;1.7550052;.62066257;2.1798508;-.97289407;.013237102;1.3370334;-1.3994941;.6304301;-1.7239722;-1.8916132;-1.0243593;.5229333;-.84012282;-.40945688;1.0405689;-.98354673;.87689394;-1.2382562;.69199032;.45984331;4.4816279;.63910902;.39087987;3.0938926;3.2593706;2.3520947;3.5912137;2.1166019;2.6141739;2.4158676;4.8396835;3.271112;1.4198339;2.4520898;-1.1708705;2.3530979;1.9375671;1.6618547;.99977028;3.8918402;5.2095075;-.97129482;.065095976;3.1730599;2.8274758;.73093462;3.0738633;.85855812;1.1571631;.91524738;2.5110352;.021474857;-.024756784;-.34067112;2.9471486;1.2744894;1.7161708;3.2825112;4.4441013;2.2422597;-.096968062;.84098452;2.946228;2.7573242;2.8758085;-1.0804391;2.271564;3.0524688;.79912627;.14252996;57.507191 +.48843953;.84728026;-.65983278;-.28031832;.82528734;-.59456247;1.4685073;-.80631;-.63681728;-.10468041;.41988599;-.73754859;.2412819;-.2110834;.60380316;.1057125;.073537238;1.0111798;.58620167;.52754688;.58603489;2.0422132;.61786598;.41361728;-1.3213843;.66302621;-.57631493;-2.5085511;-.23228964;1.3472955;-.035846699;.11579078;-.48673394;-.87095094;-1.7702446;.97518396;-.46494219;-1.2622107;-.27104858;-.3443397;-.87092596;.19166531;-.48201278;1.1251467;.35338262;-2.1272564;-.20800988;.82159942;-.37630957;-1.7971313;.95987093;4.2006431;6.1493859;2.9311161;.74966383;1.2966541;1.5866774;3.7848966;5.8913569;-.6163463;.7932809;5.1249299;3.5411582;4.7531385;-1.8512336;2.2455885;.22526889;-1.1905848;2.0695553;2.6959085;.040576581;.47897956;3.0714343;1.503487;.28602007;-.14028558;3.141372;3.9954052;2.3607478;2.1797638;1.7305864;2.8888812;-.9195466;5.37712;2.5284965;-1.2821653;5.7145023;-.083423853;1.7070866;5.1589456;1.0470153;3.9280851;1.7828766;4.240056;-1.0305026;3.3016775;-2.2103944;1.8877078;.80315775;2.3027601;.20878685;.83053213;1.0047387;.26725209;1.2520063;-1.4471076;1.1148832;1.0725272;-.83900636;.85070086;.67928749;.3139708;-.21471477;2.0410199;2.1533203;-.99957526;.11532044;1.3455033;.75771224;.34907305;.58615738;2.2357626;-.56281793;1.6694748;.2976768;-.10212809;-.048828028;-.34541741;-1.9667933;-.36279738;-1.9099261;-.40742719;.14561383;-.089535452;-2.1738691;.70679784;-.84785831;-.22778726;-.1182251;-.13353446;-.42639318;1.0771161;-.41844842;1.3267324;1.7859355;-3.1508377;.162449;1.2844516;1.1049495;-.78980935;.43049595;3.3888252;3.003551;3.2946236;-.6799196;.70907241;1.8552592;4.0613933;6.2579498;-1.5418733;.52243543;3.4616427;4.1355143;3.017643;-.54638326;3.4631362;-1.5931253;-1.3471806;-.33797291;2.5493429;-1.412323;.55248469;1.1927828;2.4618156;.49843737;-1.5859896;3.2991307;4.6352501;1.4121206;1.7567123;-.012084983;3.010432;-.73517668;3.3049641;3.1316991;-1.5895957;2.5791245;-1.3053932;.20780186;2.3447876;.19684133;2.4665806;1.7846149;2.1927888;-.76147109;3.4343326;-1.5087024;2.4349554;.701554;1.8049703;46.982986 +-1.6206893;1.106326;-1.5608932;-.8615461;-.60587871;.35959011;-.49461102;-.86530876;.65174007;.40031475;.68532759;1.0277585;.57527721;-.07413061;-1.5396556;.92328423;.57050169;-1.2701917;.037610676;.3781679;.77861011;.63983172;-.33736613;1.1265061;.032818213;.014177695;1.25436;-.71039981;.91053444;2.0376985;.46036378;-.45523655;-.37897173;.0094546489;.40262452;1.1159918;1.7900631;-2.3196537;-.90994686;.16688946;-.27065051;.66094398;-.62349552;.39725155;-.15966862;-.84398812;-.24282986;-1.5849217;.72483468;.7014153;1.5331668;2.880038;5.6153293;4.2512569;5.7832417;1.8748211;-1.3284426;-.040558726;3.7197978;2.9328082;-.15519854;4.189436;.5076043;2.8561182;1.9722706;-1.4244599;3.2108986;1.6293137;5.2468734;2.0787802;2.4428611;.85171145;2.3210602;.80082583;2.1485081;1.1538907;.88373017;1.0634758;3.7742307;.41493848;-.40259728;1.43294;3.2877266;4.451685;1.0830437;3.7868314;1.4578323;2.6804757;5.9141712;6.5913987;-1.0652107;.44645301;3.2025061;2.2082043;-2.3688612;.3608861;-1.5487355;2.1386197;3.8657415;.9488129;-1.7347188;.99041378;-.7382195;-.65141201;-.65497726;-1.2296702;.29711998;-.080431528;1.028255;-.54426271;-.1128638;.96932071;-.90268338;-1.0997959;-2.1042695;-.10740353;.36175239;-1.9505092;-2.1039011;-1.2662133;2.7073967;-.49227235;-1.9156792;.011302796;1.6537849;-.45267481;-.37268418;1.1353887;1.2820826;.13226701;.29199252;-.25253278;.94436735;.15705521;-2.0661092;.65560359;1.3007735;-1.2621888;-.84963918;-.6615656;.0047236318;1.7334884;1.2884874;.067142501;.87908459;-.98767424;.3717567;-.70383757;.56715709;1.2237875;1.0698426;3.0060012;4.0206213;3.129072;5.5602937;.94336009;-.39743119;-.0064312965;3.7070348;2.9215899;.46797681;2.3046317;1.2192189;1.8562489;.71364796;-1.6420707;4.0266552;-.34231395;4.0495443;.94547838;2.1790118;-.049317732;.77616602;.7555722;.51849151;-.53715491;1.6819102;2.5019813;1.9860629;.5741235;-.93365288;1.0622858;.82011998;4.0133939;1.256937;1.6018029;-.25544193;1.417505;4.2421613;4.4231186;-.33838427;3.4668705;3.0345712;.39188296;-.23283672;-1.3168621;-2.212621;2.4333627;1.1229166;1.0713402;53.053371 +.65550339;1.307886;.10006046;.76972604;.25493437;.51106852;.64148456;.4789288;.10909104;.75700909;-.96476465;-.46660021;.13228948;.16804036;-.044255957;.15720885;-1.5404135;.40847003;1.7599239;.63760787;-1.3519764;1.3182305;-.011478649;-.95172006;-.062405437;.79495221;.22313794;-.27984917;.36530513;.93382215;1.9877371;.25907621;.52056164;.63947189;-.53567737;.637806;-.97402292;1.7183797;-.60346663;1.3395305;-.22365086;.72551149;.5332278;-.71978247;.9104706;.28521362;1.3122591;1.6950005;-.47782838;2.394289;1.5628042;-1.2112684;3.0254862;4.1328068;.79150724;2.9774621;-2.3013272;2.9993463;2.5198364;2.0345378;.44341436;.42225748;2.1248419;3.3756733;3.1560752;.74799585;.42693967;3.7991474;1.6531368;3.2683303;1.8110939;.39730424;3.5605385;2.3546369;2.9865813;5.7952623;-.81651175;4.404398;.85690159;7.2599425;.67423218;-.32770586;2.7049172;1.2967509;.7570917;4.5672779;2.9054229;7.4611316;-1.7877134;1.2440547;2.3267312;.20055278;2.7885623;5.9453011;6.9150238;-2.146857;1.1998353;1.7619263;4.1926546;2.6333792;.096017174;.37998816;1.0181441;1.1833916;2.6541071;2.5553432;1.527586;.11353628;1.4311229;.99631089;-.72222143;.81438094;.38267776;.62662667;-1.9817128;-.12780267;-1.5104487;-1.7652605;.9151482;-1.0620129;-.98331314;1.2632709;1.7856798;-1.0565152;.36314085;.55959713;1.0014333;.19556178;-1.9714004;.029947003;.6223532;-.44209808;.87712753;.89066964;-.65128809;-1.1876235;.0046697627;1.1463997;-.088071115;.33525401;-1.6726136;2.1704726;-1.6280655;1.681284;1.6834271;-.77006912;-.28934777;1.1096902;.62054616;3.1982169;1.4792526;.90989017;2.096313;3.1827078;-.1381481;2.1783526;-.93033034;2.9416931;1.062351;-.60736436;2.1349075;-.87730813;.019492356;2.8131232;2.9530094;-.85455775;.34063175;3.0166578;.72002971;3.0332675;1.7815037;-1.4186991;2.0415955;2.1746004;2.2774823;5.3830204;.25181779;3.3457565;1.1390158;5.8212385;-.017918261;-.30960688;.44844282;1.0399901;-.39943528;1.0960412;.074157991;2.8943367;-1.8058492;.56381822;3.2219584;.68568259;.75871098;4.4554009;6.9254646;-2.0430746;1.8306804;2.1701839;1.4481238;.86417693;64.830124 +2.4671979;-.47495577;-.2456522;.28254285;1.1045659;1.4835703;-1.6695223;-.89931524;-1.9651814;.27586594;.73400235;-.0023402546;1.012599;-.22656319;.16676019;-.91143578;-1.8239433;1.0801637;.96301001;-.13305654;-.91858816;-.7377311;.3710793;-1.456682;-.50481164;.59896362;-.072121337;.16508223;1.718166;-.07720004;-.0059739575;-.37412009;-.92977637;-.28793034;-.27688608;.78042769;-.96491706;.35252053;-1.4719334;1.5203757;.59959304;-1.0693343;-.78025037;1.182662;.21420772;.85155702;-.24805604;-.93801844;.24376887;.15116745;.39003068;1.0438256;-1.7085042;2.6402333;2.7514753;1.5807816;3.3500888;1.6183803;1.0040338;1.9971404;2.3635559;1.0764832;.18631853;3.5719483;4.9471889;1.3943408;4.2457438;2.5749829;.96455091;2.3612838;2.370981;1.1190906;1.1228468;-1.3431294;2.1786861;.87423843;3.1684024;5.1513929;3.4732547;.8822462;1.0800972;.36320731;2.2534864;.77243018;4.2130065;2.3476896;2.5108473;2.8147988;1.7684722;2.2461598;3.2124102;4.4716215;1.3599141;.060078774;-.70349056;4.3494172;1.771687;4.1470385;-4.688807;3.3813212;1.851137;-1.8963614;-2.4093831;-1.3131568;.94180322;2.1614063;-2.8715658;-.43700859;-1.2802442;-.32275233;-.092883445;-.74046695;1.6634064;1.038149;-.28003627;-.55583304;-.33731645;.10751117;.62177676;-1.5329096;.055887278;.48154432;-.26047426;-.46205312;1.789173;-.078893073;-.88725102;2.0098896;2.8594348;.92607141;.28007731;-.37832612;-1.0698369;-.14987049;.081777252;-.54758173;-.29638815;1.196951;.56127101;1.6027304;.51903164;-.9475739;-.72061771;.61447275;.70115525;-1.1053382;-1.3059384;-1.3703707;-1.4922471;-1.1986214;.085595839;-.27443373;-2.3750029;2.9068823;1.3933361;1.6440487;2.1659267;.98842335;1.0830555;2.0145512;1.7416568;.60118574;1.8963861;3.9168522;5.0256243;2.6831443;4.5062056;.12269142;.042239159;2.0513284;1.042258;.95734638;1.6209122;-1.9773817;1.3317807;.87884456;2.6474593;3.3611348;1.9255652;2.6223013;.17088859;.02005871;.54445308;-.11365445;2.3016534;1.863081;2.1294296;1.1472555;1.1530364;1.7141364;4.1768289;3.2820723;.56702918;.63596231;-1.0216582;3.2543252;1.1195238;3.2229059;-4.7814083;3.5322485;49.874481 +-2.3054333;-.57432193;.2524634;1.2097054;-1.1349819;.44995746;1.0544039;-1.1154778;-.48450139;-.13751341;.52967978;2.0693443;-.46038204;2.2353415;.37758818;-.32194006;.059826545;-2.1338151;.041788384;-.40195367;.76897818;-.25975028;1.2099943;-1.0581794;.73702413;.82210612;-.77483481;1.853115;.13424852;-.35001761;.16312492;.77675724;1.0017741;-.17090845;2.592916;.65930402;1.8604251;.59695131;.90257967;.91489738;.68314439;-.50092804;-.2758413;.54498249;-.59365863;.77521116;-.41919166;1.1691885;-.52149874;-.74104887;3.18683;-.12539312;3.3096471;-1.1382102;3.2921524;-.37938359;2.2914755;3.2623646;2.2180035;4.8629017;2.7494195;2.0273507;.13211901;4.4238853;3.7363226;-2.8658271;.13652492;2.5869005;3.8753221;1.9562476;4.715106;2.0375059;3.3983514;6.1545672;.37748745;5.6498194;.54798877;6.0470767;4.7628102;2.0223784;.85778594;-.61723691;1.8838329;.42275655;-1.1028452;5.1718726;3.5690269;-1.521675;.90546024;1.2880801;2.3464806;4.1153297;4.8815694;.61326176;-.057733059;3.0081863;-1.4255335;.095371686;2.1302581;.77789009;-1.1050187;.026638525;1.7957158;1.4111313;-1.2620773;1.1714324;1.320071;-1.7510194;-.19498689;.76602376;.041231431;.035605486;-1.9704725;2.3765218;1.7349824;-.30077991;-.52453977;-1.2452209;-.18457592;.59690046;1.2873654;-.34578076;-.053966016;-.49773085;-.011980922;2.0037014;-.69742876;.4800427;.86715096;1.8655357;.48266667;1.3724868;.73104876;-.62329245;1.4840169;-.1047385;1.8957623;-.38737631;.21095589;1.0506234;.3837499;.32818434;-1.5519134;1.7898114;-1.3435119;1.0636237;-1.0706358;-.28392559;-1.5277224;-1.5059061;2.5356762;.92052865;2.5989003;-.58309168;3.78789;-1.144004;.9750402;1.4497747;.31084785;4.5049276;2.396394;2.1950083;-.61778629;3.80252;2.7654266;-2.9322445;-.060856286;1.7527915;2.2027209;2.3378599;2.3511851;.17941169;2.3099842;5.9906473;-.029136257;3.6515515;.51478237;4.6310716;1.8837544;2.3207757;1.5620781;-1.0522649;1.9218637;-.94477266;-.66295302;2.352879;2.0930381;-1.461442;-1.1523468;3.1212115;.93232888;3.1358628;2.0414417;-.57337826;-.26267025;4.1052237;-2.2991934;-1.3778423;2.7720871;.85792845;56.250202 +-1.4095249;-.12999143;2.5642803;.75291395;.33840677;1.2565713;.58145571;-1.597986;-.53915185;1.7003632;.15187511;.59525859;-.18179889;.74997354;.65594906;-.78649241;-2.7688911;.27919662;-.21666133;.29754314;-1.3426902;1.2765396;-.38678566;-1.2204052;.64552402;-.39564511;-.83523291;1.4632534;.61069345;-.24484791;-.63931841;.50052875;.6897223;2.413023;-.09157531;.10088236;1.5296384;1.1557899;-.64641398;-.47276586;1.1881318;-1.5938902;.65871519;1.3182118;.92823482;-.30844;-.87763852;.87220484;.23169392;2.5310245;1.3748678;1.1882302;1.7177018;4.9166422;-.73443645;3.0836823;.59494233;-.40823111;5.7236667;1.061519;-.27735353;4.5035043;4.4476013;.62336564;.27597928;.41962102;3.9741166;.26170725;4.2233224;3.4627941;-3.4970596;-.23421827;.1291922;2.2262731;.42706752;4.9679356;1.8546408;5.6578436;2.4778626;2.8610673;4.0667524;6.195622;1.76832;-2.3802261;1.9335489;2.0885351;-.028839767;.58975005;-.23433049;.781349;2.1056905;-.4038527;1.4509778;2.0410669;-.65440077;-1.9220412;3.3587937;2.2831142;1.1560843;.060555015;-.95008713;1.4846151;1.7511685;-.44963595;.6909613;.7499578;-1.2325268;-.81216067;-.98179036;.70167583;-.8219927;.24764541;.76873678;.53780007;-.56594855;-.76503867;-1.7174919;.42046738;1.4766113;1.2937608;-.54822773;1.7236791;1.2922728;-1.354493;-.98360324;.14929627;-2.0269327;2.2424262;.44121605;2.1406898;-.23620358;1.575085;1.6812012;.77642381;.12812592;.62044585;.97142929;.24697107;-.33786339;.16948462;-.23272648;-3.2786613;-.78499454;1.6685405;2.7314124;.18812947;-1.3613524;.1570563;.19584453;2.856981;1.1266575;1.7506675;.6887688;3.4812644;-1.5222933;1.3839084;.9546141;-.7564525;3.0584853;1.567736;-.85216737;2.7520077;3.7450795;.87873751;.23688839;.37710086;2.8245034;1.3671575;3.0829258;2.2253499;-1.769471;.3636227;-1.7512816;-.066245995;1.3699381;3.415144;1.7555852;2.6139233;2.6302998;2.3384147;3.2976105;5.2445512;2.2308559;-.29858556;1.8028339;2.7086043;-.076904267;-1.3286006;-.41516811;-1.0433091;1.1046606;.97787231;1.1498233;2.8309584;-1.5687792;-1.2556385;2.0234396;1.0282887;.60854006;1.1040548;43.199062 +-.53796476;-.85603499;.031598955;-1.2954936;-.22003174;.2112871;.25055522;.26598054;1.5249976;-1.4146153;.75668454;-.39697811;-.40656263;1.9999312;-.78589606;.48001388;1.0369833;.16184144;.56953233;-1.641265;-1.193289;-.65521365;-.33816493;.054959901;-1.224728;.048657309;2.1194072;-.95197469;.73424387;.4473125;-1.5507914;1.5193403;-.11368552;-.9865005;1.1051645;-.76263696;-.091199242;.013724799;-.36183739;.42386782;.88988203;1.522203;2.0371099;.31084624;-.81344795;-1.7110767;.2110486;-.67888892;.25175127;.56258345;2.6015782;5.6847548;3.5082774;1.1904958;3.5729816;5.6768785;3.5780442;5.2095199;2.169066;6.6775002;4.7333269;-1.7383348;-4.1599064;2.213742;-1.9546877;.91718268;1.8153765;2.4962947;2.886256;-1.2418158;.34238827;1.8861423;2.133785;6.5323415;1.9552084;2.047982;.62932342;1.3301253;.092318296;-.11651081;3.3065889;1.2065146;2.076601;7.2372255;2.7557087;3.6317716;-1.0206867;1.05448;1.5540948;1.8046759;4.2812009;.67911392;1.7610176;3.0096903;-.52386904;2.6200516;3.1749659;3.9664402;3.3338232;1.1910715;-.89642835;-.27018261;.92343509;-1.6977473;-.3085241;1.4332391;.14487045;-.75260055;1.732839;-.86683393;-.419018;-.82651651;-.8764661;1.4075305;.43380126;-1.1155561;.98784792;-.5398199;.62575406;-1.9835267;-.33885059;.7526269;.20189708;-.16236302;-2.4092939;-1.1440016;1.3287107;-1.080443;-.087446161;-.34092847;-1.4114847;.87438172;-.97594708;-2.5465572;-.56669766;-1.4752321;.20378621;2.152894;.4983094;1.1831237;1.5873079;.73825485;2.0237348;.11569538;-.022664189;-.83075947;1.01557;-1.5909851;-1.7380267;-.13907769;1.5854843;5.2715397;3.6026154;-.32144594;1.5118682;4.5029469;2.935957;5.0340662;1.59427;4.3666511;2.4516788;-.76270092;-2.7829101;.23097551;-2.9257245;-.69741815;1.3024788;1.8543503;2.9197648;-.84160447;.58603024;1.4556841;2.0882165;4.5148935;1.1117356;-.023452388;-.17157882;1.2599373;-.012896538;-.13094901;4.2140651;1.776432;2.3198831;6.0941849;2.1078253;2.7444744;-1.29212;1.3232533;1.6036664;.65711719;2.0442607;.36560133;.68332225;.18690082;.17802033;.64358503;1.3379565;2.5520327;2.6467311;.47661838;52.522999 +-1.0023738;-1.7558786;-.6196965;-.85625392;-.52236569;-.8708545;-.064600073;.61485302;-.58248395;-1.2615889;-.57698369;-.4647547;.32513866;-.47947735;.29114321;.3934975;-1.2136198;-2.0280051;1.7579291;-.82103276;.042532805;-1.0406957;-.078787483;-1.9715704;-.0043344828;1.5034708;1.2792125;1.0091171;.46105757;.4242112;.36477393;.089273334;.49552616;.59457433;-.14040671;-.1918494;-1.2802042;1.2269942;.89691263;-1.5912859;.3257494;-.035895895;.73085958;2.0924571;-1.6094046;.3807942;-.83686411;-.14528571;.1343201;.4963713;-1.6388899;-.9337973;1.1527812;1.6166223;-.21420118;1.7954077;1.5382202;1.1299233;3.5958552;2.1977782;3.5979142;2.0376163;1.3934616;4.056993;3.5865736;-.40991676;.30784371;1.9052435;2.8365784;-.41865733;.71592236;2.1777461;.36292759;3.129663;2.8148451;2.2574015;3.1552942;4.1167603;-.74269462;3.6809831;2.0255406;.43588701;3.3558776;3.1931007;-1.0963882;4.28053;-1.9561809;.84463787;5.2775755;1.8100381;3.7238257;2.2845726;.7320959;3.5074048;.3848967;4.5192442;1.7664219;.063290082;2.2877417;4.6055675;-.56927556;-.21280833;-1.9221715;-1.1682515;-.45965818;-1.3848662;.10433581;1.1582217;-.90358108;.94163579;.073516235;-1.8339849;1.7550777;.24397096;1.0379802;.40764883;-.78765154;-1.7695419;.99920577;-.10927734;.86808705;-1.7614331;.4094148;-2.2688296;.96349263;-.089603394;-.52632982;.45817783;2.2846303;.68538105;-1.203759;-1.3512286;-.49824214;.38449967;-.67255586;-1.1004717;-.58514273;2.2927823;.067079425;-1.2549845;-.31669652;.35112241;-.67314541;2.267875;.040233262;-1.3486388;-.91244149;-1.8050256;.7195909;1.4222953;-.74662936;.28835845;1.3581734;2.1398356;-1.8699336;.99247539;1.361334;2.0899172;2.796535;-.21132058;2.0143359;.89024204;-1.9783907;.696091;2.7257104;.39794898;1.4691917;.1131601;1.804489;-.070541181;-.33245763;2.9193075;1.5463271;1.8628143;1.4306906;.14889789;1.4844018;2.4017448;-2.3031542;2.5820582;1.8659111;2.8272312;2.9794605;3.4327538;.49160758;4.4307895;-1.8303599;-1.1225327;3.6733227;.22153385;2.4062266;2.3967943;1.4852364;2.0653656;.29535225;2.3409691;.094252549;.71294016;.40554908;2.6014943;46.872196 +-.71510887;-.53335547;.31075132;-.5030843;.4635489;-.46186414;-.61189467;.52529818;-.43827817;-.96708167;.019241463;-1.1320986;-1.0484401;2.3600981;.61697668;.34831911;.45621318;-.19054881;.56161314;.28947976;.51224291;-.49617505;1.5915942;-.70571476;-.64019406;.20291258;.51780915;1.0039128;-2.6871786;-.74086297;-.73908484;.014401128;-.89484054;-1.0715218;-.42328233;.29800096;.43217751;-.20172466;-.9787606;1.5387444;-.99245179;2.6668832;-1.4916494;-.11281724;.95760214;.057160124;.42692327;-.0080047147;-.63202482;.83303607;-.35355863;2.4206502;2.2434101;3.7566068;2.9908583;.65581685;5.3904524;-.93229598;-1.1019077;-2.3823502;1.9501942;5.8730316;2.7390766;1.3434515;1.2041552;1.5107416;1.9560494;-.082459025;2.7619438;1.9202623;2.9791434;1.3198612;1.0441569;-.058903027;4.8668747;2.3562064;-1.6763489;3.1920271;1.6198189;1.708915;1.3857229;-2.1214077;2.5380516;1.6182969;1.4534464;3.6224146;5.3965249;1.9913324;-1.9081463;2.7591047;1.152203;1.3276948;3.3937123;2.0404656;3.0226862;2.5500884;3.5826545;.6794824;.92427623;-.6633355;-.56458783;.15248878;-.62592053;.087057218;-.69699442;.19866724;-1.4497025;.23183154;1.2794042;-.30597675;-.60349858;.10134239;-1.1496763;1.0529702;.40570068;1.1461825;-.2337563;-.0017110615;-.092417553;1.4455606;.13792436;.42231902;1.5827392;-1.5025207;.11745536;-1.313436;.31829417;2.5250795;-1.0298607;1.5685211;-.54428184;1.486812;-.82968098;.44778466;.93520111;-2.7983534;1.0205541;-.3365072;.74607992;-.17268203;.13965301;2.4185827;-.54899377;-.097724803;.03946637;.67976278;.11249275;-.5021435;-.89454329;1.5154651;-.87768441;2.6700613;.16288434;2.9294825;2.1964271;1.7155628;4.7293692;.41821671;-3.1630578;-.76585084;.22719155;2.1693814;-.21723931;.84633541;.12959389;.83803689;.98377067;-.041041818;3.0632954;1.4118477;2.3287561;.79116946;1.0106781;.40608901;3.3131709;-.0051360107;-.67549598;4.3219714;3.5642769;2.051054;.071338035;-1.278509;3.2630193;.59029174;.073794283;2.2591934;5.2029152;1.9203355;-1.7296795;1.0302747;.60016221;1.5642216;2.900033;1.5407989;2.4997602;1.6324956;2.9812899;-.46783671;1.3648306;.24334982;38.140743 +-1.450147;-1.3728529;1.2626264;-.79994518;-2.1899087;-.010409583;-.8393659;-.83778632;1.5069847;-.2347956;-.97233641;-1.1082169;.42234728;-.20146056;.86557186;.63196981;-.62548792;.23801465;.45938954;-.20401198;.49076912;-.35777333;.85281742;-2.1688087;.10837711;.85390717;-.74321592;-.78160727;1.8380897;.78312278;-.11306611;2.4875584;.18905893;.55739903;.78769779;-.40576103;-.14304206;-.39659795;1.3344995;.17900446;.50481158;-1.2632298;-1.6718642;-.26735905;-2.2001624;.83601952;-.66993695;.42337269;.2825959;-1.0059985;1.3044906;4.5330563;2.1705918;-.67349386;6.5308704;1.0720754;2.7272911;-.060762603;-.74865741;1.6200916;2.3315616;1.6472887;.23218353;1.9090706;.54444158;4.164628;-.079927489;3.4807744;3.5650749;.08720433;-1.3049139;.96961612;.61525697;3.7339809;1.5388706;1.6460435;1.5738775;3.3788359;-1.0351384;2.6933839;1.2077003;-.37561718;3.5383646;-.038312785;-.92384052;1.1365849;.6167717;-1.3310994;4.817771;-1.249126;1.6164061;3.1223135;.62166321;1.8260398;2.6571102;-.90259176;3.1764746;6.4099631;1.5444974;-.077073097;-.38436481;.13541311;1.3409115;-.18170238;-2.5754819;.87371498;1.1976151;.84188122;.32847768;-1.0450789;-.69625312;-.18275057;.018166117;-.14110012;1.2371479;.16249198;-.82351524;1.6746688;.77892357;-.65150648;.40140849;2.2369962;-.19849548;.32196596;-.50375205;-.16839691;-.64429557;-.49822536;2.3520648;.37123001;-.42003006;.15593472;.63708264;.61192763;-.3835361;.96574396;.78101242;-.065703414;-.14813863;1.282913;.73406702;-1.1895121;-2.0998702;.96430451;-.0035179465;-.61118531;-2.6472554;2.7175918;.61401576;-1.1129242;.60319114;2.2269881;.44868857;1.1905396;5.7777596;-.26648009;.56170738;-.47237223;-1.445303;-.38894513;.3974956;.90207243;-1.5563371;1.8262985;-1.4598136;2.2481751;.0016411897;3.5294945;2.2672491;-.61778969;-.76876986;1.618435;.24416871;1.4274049;1.4230554;1.2074083;1.351477;1.5259346;-1.1611032;2.3857288;.61436117;1.8324438;1.6189125;1.7186508;-.4474121;1.9171636;-.47780085;-2.0151265;2.9565263;1.0237461;2.9964473;1.354641;-1.0698689;1.7233644;2.926759;.28664079;3.1552453;5.7377543;.7614193;-.16797215;25.977808 +-2.0276134;.40363926;.34756655;.065162733;.37143904;-1.2009296;-.40233278;.62021446;1.962014;-.55734688;-.97597283;.58170533;.25244299;-1.2009982;-.16668789;.67297274;.055355866;-1.5241634;-.26969436;.535788;.068334393;.57351875;-.81811619;-.18125805;1.3180225;1.4431963;.21687053;.77471095;-.88854456;-.3626233;-.44790834;-1.2379829;-.16203205;1.3857715;.01870355;.41187912;-.98935658;1.07995;1.2105865;1.0165986;-.20730706;-1.3176571;.79824227;-1.9534246;.86191815;-.10719753;.099137291;.63150334;-.21228936;-.61716425;.10385333;.21543857;3.9954348;1.6152047;.1408208;-.57924879;4.7438393;.35772735;2.0898633;4.4856534;1.4877546;4.0243068;4.0787749;-.3799966;3.652699;1.6475114;-2.3112428;2.9664156;1.9866133;.2355434;2.4105067;-.70648724;3.4009974;-1.9081957;4.3486533;2.0384803;1.0798768;3.9307854;-1.4413954;6.4921088;1.5056838;5.0337086;.18253531;3.3065464;.057825223;.18840502;1.1245395;.038455449;2.5067122;.75828004;4.0265231;.8973031;2.251827;2.4426451;1.6629709;2.0018747;5.3274426;3.4575372;2.8234277;.023550227;-3.7212727;1.1308154;1.1562427;-1.1635951;1.0062701;-.567375;.6433115;-.43692335;.20260419;-.052415665;.056743801;1.2994692;-.93465912;.56442618;-1.3856202;.75869882;-.60714328;-.57862145;-.32226133;-.24651541;-1.0032573;.27399135;-.34096959;-.72468972;.27466738;2.0367274;-1.4413763;.9580881;-.18420511;-.75118738;2.2304049;-1.4816928;-.7530973;2.0022221;-.094696157;-.17819576;.52652317;1.0050937;3.3365743;1.2588289;-1.2948554;-1.2546651;.14338976;-1.6279124;2.8992617;-.67363888;.74388891;-.25737095;.86174661;-1.7890761;.24887975;-.31225845;5.0381074;.11880986;.6189605;-1.1676757;2.0803897;-.14754735;2.5444372;5.045732;1.5857601;3.0887377;2.7862566;-1.3617836;.40048325;1.146803;-1.1967896;-.059270181;1.140105;-.3475152;1.9089713;-.22239754;1.9556031;-2.3964193;4.6209006;.39253867;.63514745;1.8253471;-3.4901228;3.3408313;1.365906;1.9747608;.178716;2.6355748;-2.6608288;.58345604;-.40199146;-1.302551;2.1287098;.66845977;1.7795401;1.412865;1.9600987;1.6728979;1.6895379;1.6231445;3.0203214;3.7821009;3.6647696;-1.3546035;52.579056 +-.23279996;1.1805404;-.27177921;1.0483528;-.38309532;.18744771;1.3075817;-.52736175;.47215867;.036391675;-.80623525;.3349281;.031737659;.20419547;.73708051;-.4268131;.22935669;-.76176906;-.39760914;.063916378;1.8008329;.62570256;.78344822;.0033914552;-.48121119;.49482393;-.7275613;.99126375;.32053015;-1.0252715;1.3568734;-.49457422;1.3485239;2.0437064;1.1219836;1.5266743;-.79611015;.31471607;-.56961477;.12825318;-.80209035;.98414445;-1.0434051;.59375173;.259435;1.2040246;-.16030991;-.50880384;1.0589881;-1.7284938;2.4384489;3.1477709;.82404327;3.1140218;.67863703;-.73506135;1.6667246;2.2647552;3.3274968;3.1900568;.59804773;2.7711806;3.6525056;.16590445;.90104884;2.1209352;2.6302562;1.5467461;2.7789886;.75366056;.79384881;4.5056825;3.1533175;2.069644;1.0168753;2.4683409;-1.6909671;-.08829172;-1.4754989;1.0654222;3.4924955;-.33914873;3.1715932;.6945498;1.8435673;2.5506072;2.1053004;-1.8427768;1.717795;4.1000676;3.0890527;3.4093039;-.49039853;.46821004;5.797564;2.3562784;1.1394407;3.0522528;3.6069052;2.8867729;1.2326502;1.5606825;-1.093659;2.0518372;-.00050938531;-1.0134292;.38715041;-1.542809;1.6702434;-.78356194;-1.2028093;2.3890781;-1.0275357;1.765075;.39895681;-1.3705926;-.86917096;-.81701529;1.3856421;-.6188876;1.0748638;1.5376232;.88450742;1.1819105;-1.6634281;.4859488;-.66044146;1.8608249;1.5735537;-.31220838;1.0587609;-2.0268652;3.35166;1.6879661;.9423818;2.3511407;-1.7846205;-.3990131;.34988153;-2.1927774;-.55196106;.50471526;.45879546;-.091596961;.34723035;1.8228616;.11416779;-2.1287882;2.411778;-.68958634;.69048512;2.3972037;.83682901;1.9647778;1.1897624;-.83769625;.65165508;1.3715308;2.4785459;3.9196246;.83140928;1.128561;3.45208;.36961031;1.3681465;.68360096;2.1778698;-.13139179;1.7252396;.18911453;-.25064394;2.9070232;1.6658473;1.6339824;-.40178168;1.1161135;-2.5496452;-1.8603595;-1.2437863;-.47215292;1.8680097;-1.5634711;1.9039886;.28071216;.42481411;2.262687;1.6554056;-.34453556;-.97664982;3.3380995;2.2710526;3.0231483;-2.0917997;1.7126997;3.7079058;2.0192897;3.7072749;1.8765351;1.7956575;.97911781;50.307743 +.88899076;-.50934201;.39866096;.049481448;-.15398833;-2.5005648;-.49569753;-.083669893;-.76448005;-1.4967185;1.2265315;1.1995742;.11206958;-.38921517;.99961418;1.0199561;-.41969961;-.15602052;2.6848366;.021073963;-.57128507;-.68539757;-1.0077177;.81475085;.48652837;-.16549736;-.40264922;1.4350133;-1.0423191;-1.5462738;-.5984292;-.29446474;.25024876;.1382287;-.74747807;.14905135;.031750623;-1.3210474;-.32197404;.43202493;-.72149026;.13492879;-1.5486369;.10624278;-.092059165;-1.2242768;-.026641103;1.6925627;-1.1756274;.52747756;1.6381831;2.5503142;.09369915;3.0360765;-.0016569761;.92003042;2.7835577;-.77959108;2.0419471;2.0320513;1.1112735;2.8892787;2.5016127;-.82908732;4.4009304;1.2705415;.052606784;1.4241031;2.0774353;.10406482;1.9024029;.26327237;2.2906299;4.7042713;1.4148964;2.9764037;3.5096397;1.6217996;4.7175875;1.9857187;7.3267221;3.2255936;-1.6390141;-1.9339058;1.2867781;-.64519304;2.5797567;1.5141568;.13719328;-2.7360115;2.1501994;1.404669;4.4669538;.22117008;2.3728523;1.2978305;1.3624806;1.4810417;3.823875;.014747535;.27561003;-2.6011634;-.94044882;.7371102;2.4191675;-1.1640376;-1.1900883;.22553417;1.4324024;-.15098585;.6367563;1.2932121;-.34767997;.18367375;.81024206;1.091239;-1.5744778;.45041582;2.2600248;-1.2947063;-.62310088;-.43551323;-2.2071564;.50493366;-.78237474;-.34817284;-.4944787;-.13282472;-1.127057;.68138081;.0039806655;-.59843814;1.0664159;-.21644539;-1.6401873;1.4054061;.34011349;-.0047437605;.20953456;.40732688;-.9541291;.83302134;-1.5075573;.63731903;.028165855;-.84201992;-.20670465;2.109545;.32486868;2.7520397;2.5179448;1.5216439;.68589401;1.5526484;.74668622;.47647113;1.6274307;-.10712168;1.8072042;1.8983467;1.7392602;2.2977684;1.8268423;-1.2882401;3.5547185;.24247868;1.2353104;3.1291232;2.5641694;-1.033818;-.38525847;.96700495;1.2238636;1.9243624;-.20172016;1.7958674;2.8122349;.92118955;4.0481844;2.4661648;7.4181542;1.4123851;-1.7893817;-1.5726367;-.071251668;-1.6690016;1.4966829;.64014786;2.0282123;-3.0303164;.44170004;.21246064;3.832494;.37702766;2.987639;.92509705;1.7223344;3.5898206;2.6537883;.86146605;37.954823 +.11916827;1.4888716;-1.0496615;1.5002949;-.097686015;-.13982975;-.54309613;2.1724651;-1.8035947;-.64427155;.061655577;.49951598;.34119731;-.063241668;.98244458;.24705783;.28092644;1.865953;.19054718;.14339574;.44059181;-.097738788;-2.1493001;1.4518383;.56355828;1.5389096;1.3040435;-.047313698;1.1036983;.50722271;.99208212;-.21770297;-.72321063;.57873291;-1.6984125;-.20742543;.43846884;-1.8648131;1.1241186;-1.3513741;-1.4896924;-.33209971;1.3606074;-.18976808;1.8497308;-.40717515;1.1736382;.54964614;-2.0680616;.85828847;2.043834;1.4098384;2.5680699;3.051435;3.0894027;-3.1329992;.65084529;1.8866243;6.0041938;.21038146;2.0716465;5.1992841;.44527829;4.5035133;-.03421944;4.485105;-.90237933;3.4061253;-1.4909222;3.4786024;.88266218;1.9851451;4.6160531;-.31842878;1.3711857;2.7488236;3.4833987;1.7950407;2.9400942;4.2911763;.52957869;-2.2318683;.90593469;-.29238194;-.11255586;3.3558106;3.5286765;.76045632;1.4273026;2.2405453;1.4677566;.83136749;.78650892;1.258062;2.7189126;4.3394871;1.1562009;2.9010217;.41202149;3.9706619;.10899875;2.6037254;-2.1356421;.64147156;-1.3429184;-.16857533;1.0516;1.6610825;-.87086755;.72891957;1.7008723;1.6936698;-.82504952;-.54527718;.28750035;.98870701;-.85539478;2.3783472;-2.3814096;-.39107713;1.3698422;-.10611629;-.84186357;1.647576;2.1653013;.45559207;1.6461515;-.52424365;.7241925;1.9697626;.63957047;-1.0245908;.88644266;-.35101312;1.0520678;1.0759085;1.1937394;1.359691;1.6299406;-2.4005547;-.74841899;.55738378;1.2918338;-1.1902694;1.220935;-1.6858315;2.4105375;-.20854484;-1.0646614;.11956498;2.8222849;.89165711;2.4273384;1.6321614;1.5513711;-2.5375814;.83222723;-.71125257;3.3639758;-.83939397;.53090328;3.1808465;1.9542423;3.2000902;-.44627643;3.3354714;-1.8516713;2.0205081;-1.7752597;.89054865;.72501671;3.4875648;1.6674569;.92750835;2.4956257;2.6504433;2.432303;-.077933587;3.1764886;3.4450371;-.022412594;-.31553048;1.3511595;2.2232528;-.91242659;.9279272;2.9895554;.27450666;1.4783846;1.3609946;.67803627;1.1058615;-.93152195;1.0615314;1.4128976;3.5206103;.005229861;2.3919044;-.60798275;3.4671454;50.487144 +-.4335452;-1.0908154;-.48808956;.024197541;-.64537328;-.49546349;.46178749;.80770743;-.074592017;1.0993681;-.7025426;-1.1574464;.091415405;.015290314;-1.6092738;.069677263;.56665379;-.72687328;.19750272;1.8758923;1.3852286;-.40007904;.89864534;-1.9357017;-.38417447;.45551148;.77390188;-.91558856;.61506724;-1.4132773;-.21064882;.13048267;-.070907205;2.15905;-1.6922437;-.18391784;-.80396807;-1.3044844;1.2488644;-1.4513525;-.8923865;.13771009;1.8352058;.4084793;-1.4342518;-1.6246364;-1.5724311;.57191056;-1.3403934;-.79245764;3.5479591;2.2532599;2.2876201;-1.3547293;4.1945753;2.484019;2.123487;3.5208251;-1.381196;-.67897075;-3.0237923;2.9801619;2.3320258;1.7223763;3.3247664;-.67321444;1.5483767;2.6805151;5.0184693;3.6005893;2.0531785;1.6266479;3.6407232;-.043000452;1.4404626;1.9753238;2.6039958;.1412439;2.2112701;3.3967836;-.23890051;2.5701175;2.5986547;1.0117637;2.2639148;2.1213837;2.4402187;3.864418;2.8714151;-.29523891;2.2870622;1.6083446;1.5856668;.32371387;2.1824567;.59491569;-.098969787;.30574894;.92005908;-.023610873;-.40157899;.1530188;-2.2157965;-.33208495;-2.1910264;-1.6874804;.17906278;-.55235058;-1.0006678;1.9912094;-1.7691561;-.77591908;1.9808304;.12632465;-.96272546;.59939331;2.5618312;.21554288;-.40346944;.11846738;3.0424273;.38160396;1.0059251;-.87508774;-1.3228992;-.37458986;.39008725;-1.4666598;1.7944927;-.728863;.61426318;-.066756859;.627262;1.8199378;-.21094579;-.098169215;-2.0512393;-1.7495263;1.5533208;-.83481568;.59451985;.88956887;.39295307;1.2736887;-2.9274328;-1.820842;-2.3678377;-2.3424621;-1.6866541;-1.6316701;3.8910518;.96126699;1.6070009;-1.6188872;2.7455645;3.1019313;1.3507613;3.2528715;-1.3204658;1.4517174;-1.0932555;3.5116534;.65081412;2.5220628;1.5318424;.43274114;.4001078;1.9450663;4.0129089;4.0037303;1.4023353;1.8585109;3.5216274;-1.000808;3.4558215;1.5523272;1.6435003;-.024264218;.78988421;2.3880994;-.92164427;1.9824247;2.8403797;1.8892268;1.912413;1.7537762;1.995324;3.2021103;2.5213778;-.4148598;2.2390382;-.10346361;1.0870382;.76349777;2.0360131;.42059112;1.6443884;.3965891;.56582224;1.453811;28.30699 +.84638298;.098830335;.96078259;-.056457806;-1.6769924;-1.8614547;-1.5413058;-.0038563812;.78335238;1.3079535;-.64490283;.50192457;-.13244596;-.80516183;-1.7532244;.80006033;.70347726;-1.225437;-.88835317;-.77248323;-.36479345;1.2467495;-1.0196098;-.33589423;-.58946526;-.35540712;-1.9181594;.60085648;-.9268434;.81835812;1.6237996;-.20186493;.89667016;1.355637;-.25626007;.042921748;.98150796;-1.1272249;1.6578776;2.1377306;-1.1469011;-.80332512;.63760245;-.2738941;1.1448522;-.10170148;1.2454816;2.4464645;-.31541386;.11660457;5.384542;-1.899462;-1.3793044;1.8876595;3.2116349;2.187531;1.3676755;4.7816677;.66310132;1.5810585;1.0410815;2.8196259;2.568912;.070159249;2.9286211;4.681304;2.4906399;.93985832;4.4069653;2.2897727;.98017752;1.8217292;4.6441593;1.7074625;2.0318148;-.94485176;6.1762905;2.3297968;-.23485421;1.8256811;1.2782588;4.179687;2.2063808;-.065351702;-.35216662;.67040378;1.6982414;2.4375525;1.8816279;1.2032608;.98814952;-1.2814325;1.5174747;-1.2892976;-1.5575364;.95272654;2.3923118;7.2534699;1.8119361;-.83152509;1.4198055;.36030024;1.2390281;1.7237252;-2.4306738;-1.4681163;-1.5814743;.40478483;2.1659286;.68641967;-.68826783;-1.0631129;-.65174097;-.45325598;-.76032764;1.7728621;.12401495;-2.2492194;.77553177;.70162302;-.45961007;-.23831494;.06526386;-.33686832;-1.0227242;.33319926;-.57013506;1.086877;.060853597;.020030051;.63591015;-.0067691579;1.883415;.46043435;.42433685;.1424838;1.6336532;-.1812157;.3358897;1.955047;-1.3444605;-.92596442;.87294447;1.2413098;-.36045462;1.4076693;-.096872516;2.466536;1.6785083;-1.4485264;3.9392107;-1.3584832;-2.4543946;1.9245136;3.8987894;.56951147;.35444945;4.3284183;-.52920294;1.1730512;1.2864354;.11640229;3.9036002;-.71657944;2.900703;1.3416812;1.207339;1.979416;4.8773003;1.2948135;.17391424;-.80071497;3.115793;1.767312;.57632703;-.6034801;4.6131501;2.5136707;.7677663;.73901099;-1.5416847;1.8429947;2.4221752;2.366349;-1.8488835;-.6297251;2.5760725;-1.2875185;2.0695403;.78522342;1.5971018;.3705456;2.672971;.6482023;-1.7096889;1.3248626;2.1464386;3.2057734;1.1368911;-.14255229;40.940845 +-1.8233905;-.14475164;1.2871684;.57114285;.20465474;-1.6589893;1.0095831;-.40621543;-.83584172;-.74733418;-.0070202127;.32957497;.012759772;.18584174;.99851382;1.1756269;-.17845166;.53667861;-1.8948976;1.0844809;1.0831878;.54002339;.014582709;.19519822;-.37597188;-.36703709;.6925571;-.66975611;.094397269;-.69937545;-.067883536;.82148564;.65479171;-.29304481;-1.4397482;1.0059779;.57122219;-.12195817;-.76545507;1.4353778;-.36619094;.92758858;1.4728336;-.20830677;1.6834346;.67551339;-.47344375;.53760487;-.1671005;-.10106983;5.2614207;1.5965478;2.8590961;.23054391;1.0369228;-1.0620307;.22896469;1.0776029;1.1070007;3.2200089;-.47834051;3.1664829;3.5629256;1.9151009;-.57873398;2.8857729;4.8132014;3.9340465;3.3803174;3.2450638;.63979828;1.4504346;2.1056187;.20085581;2.0085027;-2.4945731;.046159003;2.4032485;4.1542864;.70381927;.47883934;5.9665494;2.7549977;2.0390656;3.3871388;.31119043;1.2377524;2.5611267;.79019529;.79474843;-.47536743;5.0629668;2.7978294;6.1875939;-.60782164;2.382725;5.422895;2.6415002;4.5225682;.96884137;-1.3232296;-.96960312;.49584946;1.6993954;-.017731708;-.81197286;1.6352589;-.50091082;-1.6679779;-.19211453;-1.2872579;-1.4651964;-.015023253;.53131843;-.027763249;1.0384321;-2.4516957;.15255705;.19699237;1.7841476;2.5806947;.74845153;-.81156862;.1833107;-2.0862067;-.06591481;-.14985795;.008216165;-.74007618;.033605039;1.2094102;.4138684;1.0387653;.31714296;-1.5053774;.92171139;.85776639;-.60644644;-.95190823;.6899966;1.2689149;-1.0052733;1.4162265;-.34668866;.20919421;.62848043;-1.3100337;.49115437;-.34710696;.27074942;2.8857133;.88538927;.85758251;-.16435744;1.615363;.13041551;.15663482;1.5838927;1.0692074;2.4378405;-1.1130347;2.3043101;1.6168689;.66375238;-.2185521;1.9927177;2.9333689;.65194201;1.4496783;.94184339;.098040417;1.9367323;1.5596278;.67966735;2.4136875;-1.7568007;1.2792314;2.4215593;3.3154132;.16096406;.37226999;2.3895237;1.9941573;1.4844204;2.7665849;-1.4316649;.80083472;1.7424097;.81608534;.35134411;-.22462296;3.1815472;2.6016631;1.4913069;.37066481;1.0903773;2.7474139;.62911403;2.8799131;-.69975042;48.579536 +.33677688;-1.2904499;-.02055781;-.47907144;-.020165721;.17405653;-.66995382;-1.367749;.67783982;-.13361484;-.010320958;-.1104973;.50497055;1.6123469;-.71757126;.38515648;-1.8210691;-.49353087;.26321241;.84497803;-.22092277;-.049521871;.68860543;-.34172243;.63771617;-1.0998975;-1.0823066;-.15667453;.44026271;-.38924342;-1.4542899;1.4882852;.33210653;-1.7544011;-.38484097;-.94967842;-1.4079382;.089214161;-1.6846485;.54016858;.41106459;.70622039;.65405399;-.26050904;.19157921;.1773873;.84182191;-.42291978;-1.9795426;1.6306137;5.2906327;.20829509;1.8122803;1.4977125;.707003;1.0469682;3.4576623;-.68386132;.65621167;2.7721939;2.0453997;-1.2293872;.71217531;1.4732167;2.7441068;3.9247224;-1.707365;.95537567;-1.7515671;1.8019012;-1.3815085;4.1074824;3.1508176;.19661956;.31672606;2.5617714;3.3068695;2.2494719;6.2377396;3.4151473;6.5825529;6.9126763;3.837281;1.2628036;4.6499062;3.8123603;2.299547;4.5744524;5.579957;4.7562947;.90319538;5.0307174;1.1326221;-2.9161193;1.3527004;4.6176906;4.7804112;.87944317;2.5533299;3.7379246;-.33711502;-.29754248;.06697692;-1.1003002;-.79366177;.22053167;-2.252985;-1.677394;1.6065083;1.0210041;.1564475;.54362881;.03320438;.83937687;.17159361;-.27948859;-1.3172718;1.1931726;.96510726;-.74209332;1.6595401;-.10682958;.29860646;-.31187847;.27280334;-.91388923;1.3797814;1.2046484;-1.117391;-.59837222;-2.1648283;.68668276;1.1892316;-1.7819527;-.27235657;.048415281;.28584141;-1.036683;-1.9867412;.18939726;-.71308798;.62737006;.15689944;-.041955683;.31168824;-1.8085142;1.5981678;-2.2944736;-1.3535935;1.3060217;5.0249705;-.48904189;2.0911787;1.2588139;-2.1369462;.57774818;2.3948553;-.19476983;-.3715077;3.8493798;2.0664504;-.90601873;-.72327149;1.4358881;1.5245963;1.7214938;-3.6141183;.65184617;-1.9651395;.37301913;-.94497287;2.7393725;2.4029441;-.78951478;-.028346209;1.9969765;2.4138086;.8105309;2.953424;1.4240125;3.8248789;5.2776561;3.1725614;.64887619;3.3554354;3.6144843;1.1906638;4.6667776;3.5650399;3.9615769;1.2470196;2.2898414;1.468067;-1.6684625;1.2156891;4.7189131;5.8145933;2.1030912;1.6668793;3.2368667;51.144775 +-.26953802;.73770833;-1.2045304;.37765723;.35358465;-.39772597;.3142873;.52024686;.092911102;.44026005;2.2991078;.98966062;1.394825;.3335;-.0035981487;.3864305;1.3819674;-1.198922;.26551399;.35789114;.92947924;-.58266896;1.8391393;.077964328;1.0767856;3.2504482;-2.1542943;.1932026;.14218231;.29079542;.066914812;.45269245;.84863913;-.84734148;.97213036;1.0279219;.34673399;.55017883;-1.4113555;-.29285535;-1.7333231;.44266543;.017193986;-.30693662;.2787126;-.34531215;1.3182601;.51957583;1.198644;1.5030248;.55028647;3.2670221;.45063943;5.2874908;2.1434402;2.5612216;.10946143;1.3609697;4.0419855;1.3329349;.8919872;5.0381818;4.541678;2.6896081;-.11281784;4.0830703;1.2470921;3.8031323;3.5582078;-2.7862082;-1.2963493;.31200778;-.39112028;1.0982387;3.1946914;3.3559349;4.7472773;-.44882271;3.456382;8.3323154;.72196531;.12057704;.67168248;.74938619;3.1805892;-2.3583238;1.5314965;2.8032155;1.0371678;3.5055323;2.0453024;.35117248;.14405371;3.9341726;5.2543569;1.8691847;2.2255557;2.6255693;2.9343259;1.7163271;-.99836022;-.25209874;-.82409179;.75474316;.68295497;-1.5679291;-.028923389;.67832673;1.438278;.59481066;-.73284262;3.0459425;-.759547;-1.566842;-.66888142;.23726696;1.0203753;-.065150276;-.0076475497;-.99640489;.24517943;-.71929193;2.0944126;.19756529;-.071290389;1.4099751;-3.1421747;1.883172;-.9918583;.91742772;-.12482256;-.12100288;-.15718178;-.32679337;1.5999316;-.12307669;.82402855;.074507087;-.37727997;-3.7937486;-1.9932152;.52728164;.22230186;.78454173;-.15122323;.083360657;1.0760778;-.81209189;.51185024;-.77608722;-.68895417;1.579021;.84277773;1.3851568;.27782279;.54475075;-.27051276;.04738405;3.0747123;.38060245;1.551464;3.1998956;.88824552;.78213835;.10448635;1.3160905;.13196543;2.8311012;1.8537993;-1.5310355;-1.9423594;.20121032;-.42411941;1.0613618;2.3857567;2.0658095;4.1842918;-1.4657047;2.6593592;4.679059;1.8122619;.42548433;-.19039403;.38563123;.60589921;-2.449229;-.83237237;2.6913016;1.5858951;4.3331585;1.4747431;1.580763;-.2396114;4.0030899;5.9937305;3.1498308;.8012647;1.4595716;1.3581094;1.4914311;53.138783 +.25521389;.76653427;.10678495;-.50957161;-.17916517;1.394927;.84080392;2.9441395;.51332706;-.95750773;-.864043;-1.6494067;.71590555;.023010109;-.1966784;-1.4585611;-.31424528;1.1198009;.015116911;.9009285;-.42126456;2.4955804;1.8539567;.70376873;-.46192122;.49356362;.53144395;-.86562234;.60596162;.71113372;-1.0304832;1.4182637;-.78191906;.18931201;.23419926;.10822229;1.5982099;1.1959302;-1.245278;1.0863519;.92563981;.11645764;-.21004418;.40532535;.34517646;1.5394291;.64231128;-1.5531461;-1.1922228;-.40918663;-.89336222;1.951623;3.0722015;5.0952673;-1.1158522;4.1020412;-1.0156937;-.32558072;.55167788;.27629721;1.684672;-.80390114;3.5146613;1.1196978;-.0069317846;4.5938802;4.8593273;4.0684366;1.7288982;3.6127529;4.252008;4.1567006;-.2878598;4.8995471;6.5854421;2.1600986;.32195887;3.677207;2.5379281;.68619335;.64727968;2.4461145;3.0308986;4.3623223;3.0180936;7.3507571;.54160219;2.3514926;5.9000926;3.6266584;2.1860597;3.4166899;.49104318;.56063491;3.403486;1.0694224;2.0844893;-.72629029;3.2869921;3.3685412;1.1149266;.39007509;.45391315;-.070816435;-.62789184;-.093752854;.0195577;2.6875193;-.10581434;-.62736499;-.42801782;-1.6701847;.8249588;2.3830669;-2.0289636;.62815666;-1.6879771;1.86446;-1.0069721;-.78910244;-.040613193;1.2615117;2.8391006;-.61174822;-1.8511348;.73219907;1.6140058;-1.1413994;-.61013019;.86183345;.20584637;-.75102359;-.48955747;.95249295;-.41772866;-1.1051065;2.654726;1.1982166;-.29685187;.739434;.42588121;1.0632993;-1.1516161;-.026875876;1.5834709;2.1933677;1.7938586;.25494635;.60975009;-1.225612;.2550703;1.8737524;3.9890499;4.6534691;-.56677401;1.6507803;-.54918927;-.28824827;.49987662;-.67712218;1.6641442;-1.016816;1.5154316;.89226812;.050256029;4.9466858;3.3796477;2.342387;2.2568593;.011633498;2.7401917;3.5561366;-.1114714;3.9773064;5.2232337;.32431591;-.42938042;.99598658;.73638797;.41165912;.31787598;.955028;2.0294528;2.4354777;2.6806662;5.3470483;-.32386065;.55135053;7.4608612;2.6392081;2.3961065;2.2883866;-1.9570616;.60372114;3.0679159;.54461539;2.534508;.045195393;2.5166337;2.0072029;64.421982 +-.62179846;.90486795;-.10477744;-1.2317283;.46517935;-1.2313595;-1.1648569;.53546339;-1.0978072;.43098316;.19805166;-.96521091;-.99272591;-.31444326;-.74608469;-.51746333;.89314091;-.32544577;.80980653;.53758109;-.68116045;1.5244414;.35136092;1.428254;-.32354704;.55113095;-.73304713;.65249163;.28822201;-.11329865;-2.2321725;.18920118;1.2636554;-1.1067071;.68065649;1.6472217;-.079270735;-.3359957;.0067507369;-1.8840808;-.53433633;-2.3077128;1.9607728;-1.6677713;-1.2933381;.3551662;-1.1651238;-2.8022771;-.014097438;-.92509282;-1.1056714;2.5708675;5.6687365;3.1083307;2.3510094;-.26301265;.47881809;-1.4057131;2.7156165;5.2047224;1.6730062;1.2301066;2.366704;1.2041724;2.635987;1.3328217;-.55445933;5.3862743;-.50249666;4.0553765;1.0865605;1.3728625;2.5688031;.067440614;1.0102797;-.23817387;.45605534;3.612087;1.7697232;4.1548891;1.9455925;-.47518367;-1.3866996;3.6344264;1.0837379;-.91575497;-.77129132;4.184454;2.7564266;1.7868408;3.8007183;.42525193;5.173594;2.0676885;3.5474579;1.6718233;-.35391429;1.0665468;1.6062323;.058191754;-1.9620396;-.44999021;.68523401;.10568503;-.13339058;-2.4797781;-.56934351;.52996951;-.48996392;.63295776;-.18105765;-1.4075015;-.76658475;.62629652;-.68026233;-.94502103;-.62482816;-.085500583;1.0800385;-1.2660427;-.032335021;-.33328685;1.4949402;-.10187778;.34125745;1.1365132;-.21177611;1.0563236;.090386592;-1.2648126;-2.8437374;-1.2440443;.80653912;-.96213841;.25451547;1.4653922;.71611285;-.20172578;-.59870034;-2.3930869;-1.0989782;-3.1675329;.48103195;-1.3307445;-1.1958989;1.7580997;-1.8992959;-2.160969;1.3539398;1.0351635;-1.5398437;4.299367;2.9589953;1.5609772;2.6894548;-.37270734;2.7875242;-.83005446;.70211804;2.4496012;.99929559;.98367614;.89135635;.97964531;.94328195;.12108929;1.3784015;4.8330569;2.2234411;2.0709956;1.4526337;2.1129827;3.6839073;-.63081062;.23688696;-.508048;-.27814507;4.1139483;1.0740014;2.80443;.85387671;-1.4231285;-1.2472214;3.1389828;1.0133665;-1.2772089;-.93653822;2.4839396;3.0245738;1.8701637;3.3032274;2.3387725;1.2713718;3.346518;2.4808481;1.5195421;-1.0817449;2.9233241;.780976;.10335335;37.647583 +-2.4887798;-.83320266;-1.5161811;1.8976634;1.0039797;-.28895292;.038145158;.81676632;1.0063591;-1.693594;-.63312781;-.041750789;1.1985497;.46146616;-.27612224;-.22866045;.46140438;-.82076901;.32327938;.80743992;1.7098759;-1.1261948;-1.5892634;-2.0103838;-1.3354049;-.30713713;-2.5218408;-1.3377359;1.24879;.88580424;1.1573734;.5183357;.077825248;.30880079;.35450783;.65757161;-.58096367;-.89210826;.038484357;1.9175818;-2.5429966;-1.5994204;.46304768;-.75865132;-.25735888;-1.0840739;.55956054;-1.0395757;.044549551;.29851508;.43916699;.59514564;2.468055;3.5126657;4.9732881;1.2848946;-.071043052;-.69161958;-.41228893;2.3348074;3.0716903;-1.4989548;1.5779158;1.9353042;-.010332602;4.7773108;5.337605;5.969079;1.4246047;3.1474457;4.39009;.37588191;-.6826061;2.9115789;-2.9143765;3.8056996;-1.6373007;2.0361621;4.6256342;.43459496;.059451666;5.1355963;2.3889992;2.2720423;.59210926;-1.9637978;1.6566354;-.28597775;3.6236074;2.4895072;-.22019443;3.6605825;2.4012191;1.0595858;1.2702961;.2699196;3.4912515;1.7780826;3.0381401;6.1186547;-.89875704;-1.8520133;-2.2043977;1.0310972;-.38565275;-.26535362;.14870821;-.6901893;.52936941;-1.7609669;.66218454;.061519507;-.57662779;1.8172679;-1.9835336;-.21570273;.93553305;-1.0294201;1.2269855;.07738255;1.2102753;-1.1212294;-2.1813633;-.46073908;-.12023716;.05307132;-.80679667;-2.0091765;-.61806637;-.64641958;.1199839;-2.0574241;.57248247;.81335825;-1.8857574;.47805637;-.61390662;-.25368869;-.4998343;2.6919351;-1.4395761;-1.1313307;-.0042228303;-1.3898083;1.4718055;-1.3357866;.7461285;.8018229;-.084705077;-.48561394;1.8080961;1.8749731;3.0572321;3.0351577;2.7131073;1.0504242;-1.1398762;-.58428711;.1765158;1.9756441;1.3456131;-1.2043917;.60199243;.98649651;-.615794;2.9420547;4.9264412;3.4030516;.95497894;2.2640214;3.7634356;-1.0610697;-.47019789;2.9510887;-1.2529079;.55585867;-2.4176011;.49327594;3.8838353;.72395831;.34071907;2.6076863;2.5019717;2.2600749;-.3682037;-1.9362139;1.0341297;-.32300067;3.6676986;1.9644388;-1.4333725;2.779376;.90933239;.82427955;.26211387;.028696556;.84794396;2.2457869;3.7515676;3.7214575;36.604717 +1.0390556;-.19087318;.24567461;-.070301674;1.2793843;.81764144;.15718462;-.977386;.43317765;-.16367848;-1.3693191;-.56410688;1.3434228;1.276438;-.65940833;.34472328;-.1741561;-1.5793242;.83920562;1.6639855;1.5282505;2.0495493;.40111491;-.75120807;-1.6965845;-.94906735;1.8356789;.037190378;-1.6668872;1.182364;-.68046033;-.43225911;.78230488;.16081628;-.9394806;-1.934979;-.26891962;-1.5183882;-1.2328818;-.04249217;.13582361;-1.8082104;-.48932788;-.71680236;.3451471;-1.0099159;-.18818833;.68680805;-1.4829437;-.17199805;5.918108;1.8896866;1.2674942;1.203629;3.223706;1.7514697;2.2019241;1.0596676;.053824451;.56907099;6.3581066;.58855647;-.25975654;6.2390151;3.9002452;-.47610247;1.7938409;1.4771233;1.123363;-.59897876;2.7751641;1.3985112;3.2639678;1.543762;.96665043;3.6297698;2.1821108;2.5256815;.74610394;.53980273;1.6764344;.56120402;.69004405;-.34523618;1.2954057;.60109967;3.2213428;4.4547739;-1.9663857;.21741885;4.2132988;1.544237;2.6946449;.83309841;.75355923;2.1848078;3.1597471;1.849914;1.4146411;2.0291977;-.027550917;1.1015438;1.7724289;-1.3043157;1.7745652;1.5352606;-.04054502;-.72372127;-.23225781;1.0728719;1.4894527;.54866874;1.1075681;.21804619;-1.1427639;1.7451097;-.71062362;2.1285985;-.033160985;1.9146018;.80194259;-.0061878175;.35135737;-2.7147162;-2.7995391;-.61456966;1.7691238;-.07942678;-.87412184;1.1038125;-.086903095;-1.289257;.20649262;-.23936526;-1.1705478;-2.6109796;1.2156081;-.86034465;-1.2672716;-.11295669;1.363529;-1.0348743;-1.4947292;1.1202166;-.50316525;-.93199456;1.3485582;.096748739;-1.6056939;-1.9934223;3.5351734;.89679307;.61487091;.08097852;4.1053081;.052579541;3.6509347;1.0168306;-.61301714;-.049527224;4.805707;1.2641386;.87306148;4.1370583;3.2309337;-.33600438;3.4695537;.91232604;.9241547;-.99724221;3.1495719;-.77299255;2.0836985;1.3253412;1.0897871;3.6618168;1.6246296;2.8020205;1.2932225;.2793003;-1.3691193;-.99445814;1.7192836;-.10783627;1.5117856;-.49604863;2.6025629;4.0748162;-.54093015;.64891022;3.9326282;1.8600787;2.1376793;.90958434;.83873916;-.19190459;1.7642151;1.9388499;-1.0960474;1.8458987;45.740627 +.93600345;1.7024554;-.40964568;.76065326;-.199616;.84196836;.93700862;-.72681338;-.11099905;.24833147;.73609942;-.26403362;-.68613386;-1.6702281;.91817629;-.96580809;-.9075368;.87593156;.30258697;-1.3134086;-.83387029;-1.0103087;-.90033215;.79576087;-1.2901798;.45873463;1.7755274;1.0914948;1.3924462;1.5170168;-.46616277;-1.0376567;-.90408862;-.1776472;.2679666;-1.2287089;-.31635544;.37619284;-1.1850078;.026981328;.45267862;-2.1861515;.73838055;-.12250324;-.69938844;-.89984429;1.1086454;.81999522;-.68399584;.036771089;4.3673234;1.0894755;5.6092906;.65026975;3.5724804;2.8869715;1.2136873;.26608402;3.9129026;.29643744;.38168359;-4.1784649;2.4623418;.62323153;3.7767558;5.2572937;5.4713335;4.4205613;1.7540327;1.3991598;4.8911333;3.0832629;4.4324951;-.75557417;4.1249113;3.3877397;3.4886138;2.9067698;.97649652;3.7956977;1.4855607;2.2939413;-1.0506604;.78983498;3.7816217;1.2815976;-1.1768676;3.1810224;3.2480416;.68824309;-1.5532066;2.3491738;3.6176851;.56492054;4.0992017;5.6472144;2.2589357;5.1762543;-.88680983;-1.496892;1.8927172;1.3782715;-1.7383581;.60986859;-.35330257;1.641803;1.2988912;-1.7694798;-.61439234;-1.5354415;-1.2495548;.61637408;-.15129298;-2.0774953;1.4075038;-.53680199;-1.233587;2.2380202;1.5182558;-.58726585;.41746446;-1.3131719;-1.4396933;1.5347918;-1.9589942;-.65249056;1.1848823;1.9083211;1.1531839;1.9747851;-.59388274;-1.7496281;-1.676823;1.4285694;-.20980632;-.060261916;-.24477133;.34657249;-1.7186645;-.88834745;.4676342;-1.3928802;.21552263;-.30485305;-.32725006;-.25374904;2.1326022;-.30633974;-2.5372412;.1785669;3.5346215;.87250942;2.0007775;2.1277308;2.4168906;-.66336727;-.38853598;2.4697363;2.0637755;.82247168;-.54567021;-2.8220859;3.2906852;.79385912;2.876858;2.488245;3.2756054;3.1659908;-.91949362;.96189857;3.6462412;1.4690135;5.1819763;.56559867;2.5681391;1.9807082;2.0840464;1.3423023;.99989247;3.5697806;.39098725;.70969856;-1.4253522;1.4221025;3.131254;.25497246;-1.4961692;.71925265;1.3079169;-1.808116;-.60901147;2.8260376;.42648819;.29941404;3.0334487;3.230638;-.44815025;4.7337646;-.51165706;-2.152106;50.886009 +.65141976;.54815143;.42719543;-.31439197;.53171211;.75721508;-.56453407;.91917461;-1.4415832;.14153184;-1.3061948;.34949231;1.9282304;1.2595183;-1.3331486;-.94435787;-1.3356725;.073608175;-.74679607;.58988917;1.5285329;.87823725;.18542475;-.44655564;-.75573307;.92990643;.33737034;.061732415;1.8318156;-.16108461;-.035017822;.80411416;.0082081733;1.8113444;1.5336077;.9635911;-.44925612;.0059151365;.52209502;.12346869;.042988967;.29670751;-.16994849;-.56971997;-.062103759;-1.173753;-.67124027;-1.0513206;-.44420764;.20113733;4.3354282;.7549156;4.6833878;1.551134;2.0753706;4.41573;1.2550021;1.3165156;-1.8300174;.97780299;2.1900852;1.4828901;2.453738;3.8541653;3.2788274;2.0723114;.80632961;3.6579645;2.4249778;3.5629447;2.1588092;-1.2486404;-.20046781;.03150811;1.609869;1.0217149;4.4875407;2.0175192;4.6899614;4.930644;-.73043889;5.1692877;3.4817789;1.7479124;5.3877053;5.2929287;2.8402746;.18547538;4.909749;-1.8298017;3.3655818;1.7812864;4.8670983;.70603871;2.7299564;4.321435;1.4499805;6.3442659;4.0123324;2.3679345;1.465766;.74204862;2.2100065;-.0052826665;1.9707094;.71209049;-.77573943;2.3676283;-.76234812;.24511917;-.47807679;.55240685;2.9047546;.796987;-1.8543791;-.45154333;-1.1823683;2.299597;-2.5123968;-.95041353;1.5238851;.066227436;.75551009;-.62369096;1.6175553;-.61914521;.022395018;-.60285652;1.0492508;-.20424947;-.32690966;1.7621126;-.97029042;-.0026254933;.93414801;-1.8086917;-.3167558;-.14125285;-.23804894;1.8002539;-2.5316455;1.4937899;.13352011;-.028041452;1.3401911;-.70088595;-.68696302;-1.326521;-.12197232;-1.4763515;2.6779747;1.1770598;3.8882494;-.70352376;1.146452;2.6945283;1.232717;1.4642404;-1.6303399;-.23846751;.29568794;1.257767;1.9447119;2.1307216;3.238735;2.2720864;-.95835501;3.5261936;1.44137;3.1969306;.0034273136;.067370467;-1.3428288;-.0074658785;2.8089738;.41073248;1.4517359;1.3545922;2.5076566;3.7082312;-.92191082;3.601088;2.2398002;2.3119869;3.6050947;3.7274396;1.0102657;-1.2683387;3.8899426;-1.237613;.040746137;1.536431;3.305321;1.1297574;1.9981979;3.3986843;1.1819644;4.8828144;3.5170135;.23033944;65.316109 +-.20927276;.56004751;-1.1443475;-.15113881;.65438282;.82383001;.31836727;.029849017;-.67951453;-.31182143;.27613029;-1.5845469;1.3061526;-.83682323;-.46462485;.26254195;-1.9235584;-2.8939445;-1.3837007;-.18120852;-.78831428;.94430637;-.67004228;-1.297209;.32133928;-.21250397;-.19443443;.28108209;-1.1089402;.97312504;-.34699142;-.48058957;.11182159;.42631713;-.47367543;-.88260204;-.16957352;-.66719621;.13953;.62049919;-.55874211;-.79287219;1.0277401;-.13039325;-.36263123;-.2352687;-.37485522;-1.3340412;-.27545631;.70322192;2.327297;2.0790794;.34874228;1.9602903;3.6839955;-.96740115;.19116157;1.6416007;1.6470323;3.2109311;2.7037513;1.6023461;.22891985;1.1463171;3.4213333;.62646598;2.9672911;2.4968054;.83879441;.7697441;2.5366197;.54705244;5.0267692;7.1073556;4.8024354;2.6343191;.27716437;-1.3899783;.039488565;3.1479936;1.7781897;3.1151066;2.5042281;2.158936;1.3735262;-.66760939;1.4950539;.6552633;.19117385;2.4466364;2.4230621;2.8643029;4.5828004;.11193886;-.44808832;-.82728118;.314428;3.8036056;.26192358;1.5494674;-.31616196;-.6252467;-.45827225;.90433627;.21690693;1.3830111;1.5783514;1.2123568;.32044506;-1.1449344;1.3339821;-2.2178035;-.74870807;-1.0827153;-1.7978641;.25878415;-.061954223;-3.1431916;-.87226582;.095840707;.19598621;-.79203391;.83575934;-1.1988025;.39603844;1.1267678;-1.0277865;-.12980996;-.95922267;.93619406;-1.9268558;-2.4401278;.63136643;.19781485;-1.2064865;1.5752497;.53505582;-1.0868065;1.0484748;-1.036806;-.85324055;-.9381206;1.0671372;1.3471646;-1.1750469;-.10744371;-1.7875441;.35348719;-.049673147;-.18575048;1.1304547;1.6538737;.32147685;2.4452376;2.8456759;.37662435;-1.517969;2.1621819;-1.1896197;2.035764;2.2667835;1.4070315;-.37914616;-.6012643;1.5359035;-.10739944;1.238366;1.3061316;1.1822162;-.28767213;2.757668;-.38649166;3.0322444;4.3163342;3.8075042;1.601428;.071673617;.47925767;-.94464958;2.8758507;1.9535174;3.4345288;1.4131802;1.8234519;1.3277725;1.1175934;1.9669095;-.0848912;-.048091616;2.1846855;-.96313339;1.8450305;2.0332246;1.1861762;1.7598912;-.75128478;-2.4912474;4.3988109;-.067829318;1.5212493;39.804089 +-1.1643013;-1.2586348;.81320721;-.8422491;-.78073883;-.54021657;-.040994141;.35389408;.71352971;.85898775;-.47520584;-1.7956846;-.35410258;-.74443346;-.28784338;-1.8809536;-2.9018698;.77445072;1.4299498;.32813919;.15791599;-1.0833549;-1.817394;.47635072;.73762423;.59455824;.65396208;-.1594287;.053355955;-.045288954;.26163575;.82417327;-1.4598424;-1.3183147;-1.4963698;-.57538235;.42940328;.64822537;.39393157;.78846616;.27368751;-.53557539;.15466098;-.94599855;.045331039;-.46429083;-.0036440804;-.51506102;-.35049698;-.043528315;3.5454807;-.93257868;1.9197918;.92525792;1.1979225;-.50918299;5.0646801;.9145602;-2.1283953;2.4381342;1.1771882;-.90528154;1.5417484;4.4557767;1.4861476;4.8354497;2.5271547;-.79071796;1.844023;-.80116844;4.3571911;.95513964;1.6519718;1.5862763;2.6257718;4.261745;1.2630644;5.6276407;.25055805;1.0503995;2.7391975;.63864517;3.3551788;2.0030339;1.2188138;3.7883973;4.5770054;.46819019;1.2582163;-.88237429;-2.8526516;-.5495699;.035225686;.88546765;2.1876216;1.4400476;2.0686481;.75029659;2.1432898;2.548924;-1.2432506;-1.0385846;1.3303269;-.17264992;.743581;-.55608416;-1.3640074;.81522566;1.3241166;2.1630161;-.37949398;-.59720147;-2.4806256;-.13502266;1.7845223;-2.6988721;-1.9809498;1.0407337;-.6608972;1.2267834;.28800011;.27787331;-4.0502048;-.09411148;2.327332;.94771409;1.2883909;.84742504;1.3304806;1.3330343;.93952769;.39499578;-.7366395;-1.9955341;-1.0613707;.55394602;.99973905;-.22597459;1.1943532;-.66149634;1.1661233;-1.4271448;.81245399;-.3736811;.14992392;-.19383855;.064137392;-1.2717848;.45007899;.40585893;3.098321;.42287296;.61015344;.45994967;.33716825;-1.0206615;2.5383501;1.6940299;-2.8832037;1.6207427;.52133858;.1837288;2.025775;2.7915447;2.1172473;3.1616158;1.7224724;-1.14656;1.2563977;1.1047959;3.7668152;1.0219719;-.0003532246;.51289439;1.1853193;2.4600894;.97838801;2.9187806;.81154746;1.1170187;1.3487207;1.2558255;3.2490349;2.4775872;.78764534;3.2840993;3.3268697;.93790817;1.7537415;-1.684238;-1.6662778;-.43816417;.30732909;1.2208471;1.6755748;.45871344;3.967768;.052976485;.67140275;1.3048258;31.79525 +.18434604;-.011392161;1.1830136;1.1040459;-.63672823;-.28083545;-.46295342;-.4824256;-.6953916;-.12643975;-1.4755771;-.21530943;1.1113818;1.1024235;-.36540532;-1.2809215;.11610285;-.22329529;1.3061279;1.0223496;-.49119022;-1.2316985;-1.714771;-1.5835434;-.89147061;.14427784;2.2380352;1.6765571;1.5197446;.1141906;1.1888052;-.86706156;1.8201914;1.3599707;.022060854;3.0765138;1.5351506;.92206627;2.3893502;.5453096;.6158905;.88482469;-1.3848763;-.97772777;-.35124344;.43454278;-.198062;-.78196043;-.19263828;-.014813872;-6.0415244;.87068188;.42561075;.11698543;3.4318671;.2651816;2.4439666;2.0220788;1.4602065;3.1552062;4.9990878;3.1517494;1.7532705;4.7897382;.86282027;4.3605275;3.8562856;.58028567;2.5671062;-.47387615;-.24115057;4.3328519;2.0410068;1.2675419;2.8582895;-.25336868;1.3135481;1.6296067;2.0057797;-3.4786644;4.1992459;1.689483;.85271829;-.029117549;1.1887898;-.95962381;1.0596946;-2.1090004;1.0014507;3.2753987;1.089357;2.1602256;2.5136034;-.097517759;.91227686;.635876;.55086499;1.099566;2.337729;1.9168051;.90215611;.97656518;.97094816;3.1130562;.25151908;-.25497389;.26926371;1.3902466;-.6333093;.39814338;-2.140949;1.1565537;.94281995;.31998622;2.0186164;-.057079419;-.5984081;.47755805;1.550644;-.037923694;-.58876348;-1.059445;-1.9786143;-.93668312;.99140829;-.18109025;.28352398;1.5788386;2.499336;-1.2054502;-.23605143;-1.2844819;2.0494149;1.3575237;-.27574474;2.2857285;-.022361206;.59421325;2.314878;1.3969949;1.334263;-1.3427545;.19883439;.094686367;-2.0371745;1.5737612;2.7473719;.32754388;.40912712;.72246289;-5.1342831;.17201087;1.2246327;.058199879;3.8160734;.5684635;1.8928452;1.9320601;.71828973;2.6548963;4.9306045;2.3546464;2.2641294;4.395927;2.6957719;3.5556071;3.5863712;.59907287;2.226223;-1.137257;.57553494;4.4623103;3.1831532;1.336254;1.9662881;-.62860346;.76797587;1.8410473;3.6237197;-4.6499162;2.3574355;-1.3145118;.60611343;-.93975627;1.6786202;.070530795;1.5207282;-.80531484;1.6810809;3.7808676;-1.007247;.1867816;1.1909937;-.796969;-.77734941;-.21954623;.13291831;2.6764901;3.0300426;1.838183;35.447678 +-.77929479;-1.0441235;-.085880846;-.63583457;1.6000818;.053894565;-.57302415;.057799671;-.055232666;-.94076747;1.3961864;1.0174651;-1.1410307;.20789859;-.26477656;-1.1631205;-.60285479;.047808059;-.89413124;.8244707;-.76701736;-1.3489846;-.41973135;-.75793523;-.049087942;.99929953;.8654688;2.1385283;.41383672;1.1653963;-.1888615;-.51462299;.066981763;.053533487;1.2194339;1.4810717;.015879871;-.72298032;-.22554401;.012513619;.27596515;.1756641;.034640659;-1.2694298;.50278461;-.82014555;-.9963308;2.3032627;.36357081;-1.2026951;5.2933149;-.87477952;4.4252539;-1.9180969;3.7383654;1.8171091;-.47227722;2.6856017;2.742486;.36771587;.46220002;4.1439285;3.2886829;2.54248;1.9872206;5.0750093;3.7262981;1.3210864;1.5983899;2.1677454;1.1062545;1.1081823;.62440693;.96041006;3.0544925;.59636497;.10490388;-.37602863;5.3379316;3.6598563;2.5465763;2.5801246;-.1831793;1.3824106;-.16815962;3.6283538;2.8094742;4.1772752;3.3473043;1.7384489;-.18536997;4.2126951;1.8578316;5.7646441;4.2182007;8.082037;1.1855739;4.4307876;2.1978326;3.3951871;1.002228;-.5797177;.83595353;.21156985;1.6098965;.079908587;-.31106442;-2.141603;-.57952809;-1.0030751;-.68164289;.029883632;-.76290405;1.3425853;-1.2686601;-.24851841;.35624576;-.28185415;.52889913;1.2274771;-1.9107218;.090207957;-1.7493548;-1.0256763;1.4952826;-.45388669;.30248559;-.097578868;-.18342215;1.0808702;-1.607044;.52013922;1.4748685;-.69979334;-.05481749;.88689244;-1.9919271;-1.3090515;-.44197407;1.3679904;-.42558002;-1.3978242;.39876094;-1.0330811;.3710843;.09512227;-.89418191;1.4937845;.061434358;-1.1709058;3.4320347;-1.7332981;2.9308863;-1.7089081;.71035653;1.5540093;.49724272;1.6373369;2.844527;.9647491;.7642318;.6536262;2.0723114;1.6775448;2.5878038;4.3690596;1.7925572;1.7440861;1.3200439;1.9097532;.90011334;1.0971128;-1.2118697;1.5094942;1.4414561;.062570982;1.2140694;-2.4103506;4.6180038;3.0915911;1.972299;1.8239377;-.67099816;.48227054;-1.8980368;3.6507394;1.801846;2.0307345;2.2300329;.96380031;.26535413;3.0857372;-.14072455;6.3507056;4.6496959;4.1427231;1.2446862;3.2012045;2.0353222;1.8021147;62.076015 +.20415273;.35461402;.3495574;-1.0117636;.28659075;-.69164801;.13255462;-.71879989;2.3840699;-2.2075033;1.0175574;.7871474;1.1299529;-.016966369;-.33359507;1.6121451;1.2000651;-.57428116;-1.7436497;.17712119;.37768042;1.0253341;2.298394;-.27200314;.22634004;-.71542978;-.68879235;.22247146;.18389128;-.27562037;.46720201;.39585447;.57284319;.063275471;-.7191329;-.5040893;.90797985;-.55124432;-2.1278689;.033524573;-.44747016;-1.17026;1.1751846;-1.279229;-.07016407;.047835;-.27519256;-1.1197354;.38891277;2.7042084;2.5950317;5.1852503;1.2700285;4.8469977;.12883294;2.0461552;-.42865646;5.8798575;2.0499563;3.856817;.29639116;.18779792;1.3112301;2.5833051;-.44674361;1.3185099;.23827706;2.3266201;-.4064362;-.60820472;-2.0904646;.62498051;.21080567;4.1590409;-.59647095;-.35167021;3.4864273;1.1185488;1.5645556;.023743041;3.7734828;3.1078966;1.6240221;1.5231175;4.3216467;4.7390656;3.1734421;-.29322618;2.5699675;2.6308193;1.1569921;.2680454;-1.3538835;-.3305653;4.3934221;.0054173712;1.4523983;1.883042;.29905027;.24656647;1.471916;-1.70824;.4162668;-.86977565;-.57582211;-2.5167689;-.32634425;1.7918023;1.8489685;-.51540595;-.60525697;-.70296794;.4895412;-.29649109;1.1881179;1.3180399;2.8595085;.68813211;-1.9268955;.54951626;.13811037;-.19398816;-.03965861;.016565122;.14739272;.015803073;1.4147378;-.46204552;-1.6552659;1.2448933;.18117747;-.58990973;.20304702;-1.6201308;-.27177563;.70391673;.91696054;-3.0892384;-.13018811;1.1553515;1.2986684;-1.5433218;.56028897;-1.546326;-.1786599;.81976146;-.72933447;.40802294;-1.1205857;1.9270688;2.7748103;1.5982454;.95923275;1.7668449;.013370144;.78412735;1.9208915;4.5139203;2.6710575;2.5943902;-.67993104;.17661822;.83312654;-.0019886268;-.036928311;2.0573626;-.69388497;1.4691073;-1.3215047;.68433315;-.91009134;.45747033;.69208848;4.2357731;-.29612514;.25388455;3.6268308;-.66350311;-.1733965;.70299983;2.0321996;2.8516481;1.4227494;-.15973762;3.6648672;3.7419145;1.6240867;-1.0766407;.65530062;2.0192249;1.0074253;-1.4994879;-1.29342;.069366343;4.0195971;-1.2532557;2.21769;.1649619;.78016055;1.3901676;38.732079 +-.96905655;1.2603941;.77657628;.080596738;.26313406;-.5757097;-.02535414;1.0217901;-1.0357803;-.72168511;1.0990766;.5679695;-.026952928;-.28894669;.61487591;1.8506289;.067142338;-1.0675977;-1.9301802;1.3054025;-1.9418349;.44599828;1.4856895;-.77390265;-.89710748;1.5280284;.70989811;-1.2739973;.61526597;.29685926;-.13181072;1.908101;.13077781;.59716862;-.28420442;-.18440935;-1.0695586;.0048600053;.35156992;-.24792506;.10912781;.58530337;-.01270044;.72531348;.95744103;-1.5960485;-.26035091;-.37726638;-.10813328;.70510709;2.2139058;-2.5072324;.024295049;.98948455;.85788971;1.6145117;3.2248657;3.7839375;3.035109;1.9179208;5.7847581;-.96585637;3.8285115;1.8534611;3.8481734;.4852857;2.7579067;2.1686277;1.5735167;.13923733;2.3374233;3.0877683;4.3911982;4.5185876;2.6098371;5.2982001;-.7461068;4.344461;2.1945825;-.30089086;.65961379;5.2385015;1.7755914;5.686729;.80783075;1.4031944;2.3525014;5.677155;5.2695699;.41762853;3.4401882;2.3403242;-1.0308574;2.150749;1.7569706;2.2585218;1.3145562;.47291616;-.55468559;1.9763093;-1.375911;1.3597664;1.5909611;-.66395539;1.9937845;-1.3573475;.59320748;1.9491154;-2.8956265;-1.5786848;1.8091329;-1.2915931;-.37025118;-.58766031;-2.1005588;-1.4476607;.26063523;-1.897494;-2.1864855;.77004355;-.92540252;.12363425;1.0839514;.53453654;-1.7752674;.61710179;-.6436016;-.067720354;1.7769865;-1.3373506;-1.4516945;-.03114761;-.39149204;1.8213905;-.29831344;.7158969;-.61870778;.32584774;1.1044189;-.094156273;-.11065549;1.6243036;1.5422323;-.57617611;.88701934;-.56368017;.38045245;-1.4952474;-1.4013255;-1.7242502;2.0205674;-.54424638;1.5261562;2.3421266;1.521176;-.99160379;3.3161302;3.9764767;3.0249794;.6349355;4.0113044;-2.6306434;3.4769835;1.9371245;2.2761986;1.260486;1.368576;-.079831496;1.6899083;.4071739;.10193659;1.8150958;5.4892282;2.562741;1.664591;5.6822329;-.319933;3.0161815;1.4979427;.37999609;.21211146;4.5019016;-.4989908;4.6253552;-.13022208;1.337926;1.5850142;4.4175897;4.5722237;.1951991;2.8470025;3.3615117;-1.2359694;1.5436213;.8784017;2.7526629;2.0835032;2.0888834;.69891518;.72364473;51.161381 +-.7499606;-.099627085;1.1939595;-.76869953;.17437103;-1.1013942;-1.9621861;-.38328528;-.56343073;.59749311;-.16193302;-.92235571;.034235377;.98038465;-.031649597;-.90233183;-1.1423588;-1.259608;1.0734777;-.38493422;-.38107011;-.66580439;-.40794849;.46958742;-1.6849768;-1.4845128;.5722208;-.96464866;1.2009622;-1.6427265;.39659294;.070438273;1.1372524;-.72373396;1.9746981;.20646647;.60515743;.10453936;-.059534196;-.26965356;.38901675;.48449424;-.15534982;-.37034297;-.35450289;.13738252;.011897207;.061783493;.81436306;-1.257526;4.2256141;-.78325754;3.4936976;.57978678;3.7977405;2.0667362;5.8562675;.71455526;5.3818474;3.8818395;3.5653851;3.2558465;2.5456576;3.5281832;3.6328576;-.66413456;3.1995113;.33443445;2.1346889;2.7517841;1.3603908;2.0238261;2.620738;4.2305226;2.8667393;4.267549;3.7734962;2.7650235;2.6879265;5.3864803;2.5080948;-3.419589;3.3821177;.21985762;-1.6637207;1.0430849;2.247165;-.88712394;.68175447;-.77069563;3.0497978;2.2112839;3.4957464;.034983687;6.4738097;-1.8289596;2.1089532;.39111906;3.5026433;2.9335577;-1.0001103;1.6654676;1.020404;-1.8336236;1.5164394;-1.7612501;-1.8435849;-.87220305;-.8531099;.49433714;1.0256675;1.204839;-.67351109;.68386257;-.19420399;-1.9995747;-.35530651;-.70077282;.98425025;-1.9506378;-.85733157;.42563659;-1.9247758;.44881007;-1.6088287;-1.7638831;.71000743;1.3733703;.73073882;-1.247274;.50675792;.40326732;1.6475663;-.61622363;1.7375394;-.62659085;.18245883;1.0169307;1.6750118;.00069731422;.74573922;-1.223085;-1.478367;.10780022;-.84513307;-.34880078;.29323494;.40578172;-.17261338;.44916549;2.5598042;-.95630413;1.0333086;.061617333;3.5272584;.65021533;4.7691197;2.9704778;4.9932232;4.2864428;2.7330134;.73531681;1.6024626;2.6811304;3.8099527;1.2753055;3.7727149;-.29100013;1.0967171;1.597612;.81488079;2.2784517;1.2088414;1.8030411;.99210191;2.9895327;2.3037634;1.083429;2.0292554;3.8685017;1.5657867;-.56943083;4.2177577;.058589414;.018978557;1.1898799;-.39940581;-.76656002;.94337046;.0047143581;3.0726843;1.8160795;2.6573939;.84661198;4.2700605;-.64913803;2.8876092;-.12829973;3.1337247;3.9546895;41.209915 +.64826274;.67668617;-.82097524;.15801544;-1.4806751;-1.6837047;-.028602803;-.20827125;-.36200923;.11687625;-.53093642;-.31623408;.57348984;-.17376138;1.1078882;-.83342302;-.25711513;-.95055926;.86676615;.62500566;.39912423;1.145704;.029518776;.47288334;1.086189;-1.9312625;.98438388;-.47144455;1.99389;-.17912576;1.3496239;2.0244241;.74407518;-1.6277419;-.46239749;.86743379;1.3045281;-1.1187876;.13199058;-.81239074;.89908099;-2.1878731;.1961209;.54793608;-.33523652;.33622384;-.85915154;-2.0361607;-.16748422;1.3403114;2.4711199;-.75220239;-.014871696;1.8846259;-.92929465;.88744748;.0011259709;4.9000669;1.6356236;3.5411203;3.1326082;-.10039474;3.6278088;-.99888653;1.2698305;2.5026011;1.4554808;2.6686256;2.9397333;6.1625462;.90181214;3.5900929;2.0162816;-.86307847;5.0809054;2.4200258;4.2211514;.96707839;-1.0193677;-1.6073023;5.5737143;3.9745436;5.8395386;-.12329082;3.3784306;4.1080031;.077990875;3.0390353;-5.2277513;-.16788149;3.3545606;2.1495695;2.7720735;1.8274111;1.305658;2.1275358;-.73011863;2.1408818;-1.9518121;4.9310546;.13877694;.3448076;-1.8198723;.25582415;-1.5374159;-.87559175;.2037835;.15360028;-2.7331684;-.60015333;.44134068;-2.4274325;-.76772815;-1.6239768;.70554996;-1.4576691;-.98134935;-.98444295;.66522855;-2.8852904;-2.1464555;.039585032;.07307215;.30808756;.90678889;-.6751861;.76338422;.32415318;1.7047639;-.79730338;.86180961;-.080045693;.91279644;-.26193416;.58513886;.014155608;.47052383;-.98142534;.18883391;.54375005;-.37691075;.24114114;1.1731385;-.017527288;-.40143082;-.047771763;-.040435061;-.56683546;-1.2780946;2.7070546;2.7764201;-.50056136;-.41312742;2.3841243;-.3718476;.64863533;-.33657044;2.4471154;.12506554;.11611166;2.320905;.49835634;2.7700102;-1.1552346;.1145421;1.2996296;.7037459;.92641079;1.0142066;4.5464969;2.767185;3.9508257;3.2327824;-.99156094;1.7433563;2.4096713;2.6174276;-.019435313;-2.2956607;-1.4818124;3.4400165;3.2142024;4.3044739;-.58896381;-.041928906;4.8706465;-1.6747922;2.791656;-4.6348991;-1.4874862;1.896528;1.0993453;-.93413877;.73773098;2.1430886;.93595505;-.98389745;.90814656;-.12515707;1.4458522;48.523319 +-.52492905;-.97628158;-2.8293996;.95469278;-2.090075;-.47962046;-.49868545;1.4718202;.061019275;-.008369511;1.7773685;-1.0343963;-.87339491;.13491522;-.22383033;.58217537;-.33442283;-.50976056;-.15113896;-1.1059126;-.66830879;1.0370781;.03457449;.74724615;1.0259246;.020216372;-.7248593;-.81093794;-.6014778;-1.7302023;-1.2411786;-.32307655;.95613068;-.2561695;-.36147687;-.93810797;.027813328;2.2777224;.64564234;.036109231;-.65168196;.41626894;.85910642;.33095634;-.006841355;1.4770284;-.71160918;.8980388;.79508662;.18846603;1.8850677;2.9310756;3.0502181;2.5045953;-.925762;3.3264732;2.9825006;6.9734235;1.7216644;3.193758;6.9030905;3.6794987;6.5697765;2.4342799;.42999187;.065613896;2.3774939;-1.3035139;1.5326692;1.0919261;1.3570986;3.8117423;1.9458445;.60146594;-.74866349;1.2216524;-.70855069;3.1632633;3.3637109;2.9671135;1.7169216;5.3322759;.73901111;-.16654892;4.1254935;1.7525595;.71068168;.87646264;-1.3738792;1.1556312;-.15262452;1.2918769;5.2768121;1.0446728;1.1442808;5.7946362;1.4091706;2.0780666;2.7691479;1.2052865;.15998077;-.97867459;-2.408529;1.4731896;-3.030128;-.91481125;-1.2860254;.82052737;1.5286139;1.1396867;1.6074046;.8508414;-.42013443;.64323205;-.59714407;-.66016096;-.48723611;-1.8318965;-1.2906173;.099581927;.099504821;-.46504682;-.91528022;-.0089523178;1.7970904;.38540727;-.38991293;.83353215;.33182979;-.55166852;-.38328126;-1.3606091;1.2393444;-.97727036;1.3980216;-1.6282849;-.59696019;1.0744972;-.46029335;-.82756633;-2.1485574;-.46353644;.78900456;-1.257026;-.0070302826;.65148973;1.4585027;.62196428;-.1813359;-1.8913504;1.733681;-.37794468;1.6307321;2.5520446;1.3326291;-.11611442;2.3804748;3.5360303;2.0702186;.6405524;4.8676972;.45803645;4.9869394;-.3636243;-.22230804;1.4030133;1.5892965;-.33328441;1.6732142;.24082862;-1.1969888;.73826039;1.0401015;1.7024649;-1.5951526;1.4419465;1.9053452;3.5569587;1.1080688;4.3773947;1.5942014;1.781103;2.3190348;.80017561;3.9318202;-.08075422;.32736254;1.6774453;-.53174669;2.8149836;-.52393979;1.1588942;4.9047241;1.4286894;-.060020484;1.4437872;.3463386;2.1947608;3.058754;.6479696;50.422886 +.36143947;-.73403239;-.90855205;-.58414394;.28667861;-.91285551;1.3209232;.54748732;-.51553327;-.19286714;-.46144712;.511428;-.78124481;-.53673929;1.3620034;.71390963;.74686742;1.264806;2.3031719;.4860214;-.56307447;-.41348335;.27157089;.13603619;-1.5324605;1.1446344;1.103166;.61551201;.8934778;1.5604339;-.31794333;.91225231;1.0585024;1.8220087;.75435919;.24287061;.35648033;.17635633;1.7777342;.66332078;1.4211961;1.4722943;.78123176;1.8250809;-1.9241179;-.98300791;.88735616;.17304642;-.77823764;-.30989486;2.7223554;-.072696552;2.503406;5.9860835;2.9720769;2.3232195;-.57589144;.53531802;-2.2655585;2.4832325;-.88859916;4.7305317;1.9493837;1.9278903;3.6514304;-.65821362;2.2968309;1.4657193;1.8914888;3.9066746;5.6344762;-.79372519;5.5278001;-.44618237;3.577333;2.1622508;2.3882935;3.1202226;2.3315322;4.5572262;3.6465418;3.2066441;1.6079493;4.1619;3.2619293;1.8252987;2.6052272;-1.8692888;2.2932627;2.0010681;1.98507;5.8003178;3.1028848;-1.9292409;1.0328869;3.2251792;-1.7298822;4.3828559;3.8603296;1.1614748;1.2426862;-.85494602;-.38634136;-1.3324698;-.81489909;-.5773558;1.4665009;1.8708992;-.25536308;-2.2994156;-1.0260277;1.7049977;.94459182;-1.345432;2.9729488;.84110785;.25093785;-.43975887;1.4599048;2.1180172;-.70550537;.50240725;-.27361867;.95038927;-1.3963195;1.0014566;2.6449063;-.0066888197;.6294468;1.7186157;-.59772402;.20253217;2.7457013;1.879289;1.3609637;1.3405211;-.2823056;2.1449053;2.5277731;.56162947;-.4726322;1.5729054;2.1979535;1.5783535;-2.6011193;-1.7739002;-.73560488;.55606478;-1.7081854;-1.0800503;2.2086797;-.78961927;1.5911427;5.1040535;3.684943;.45287785;.5739398;.23786594;-.54634035;.49965501;-1.5431925;2.3537531;1.5192616;1.5386581;3.8461475;-.85157704;2.6522746;.53390872;1.0259442;3.7511148;4.7605076;1.5281315;2.1087291;-.5433138;2.636271;1.8859597;1.690299;4.5837655;.6232298;2.9229553;1.2280222;3.0381901;.2798771;5.1468654;1.7585281;.2833834;3.0369391;-2.8458107;1.9959681;1.0102342;3.5785689;4.3496509;2.620976;-1.7773361;2.3522115;.91643345;-.26576713;4.4611526;2.1931734;1.7132876;66.053787 +1.6267014;1.4773628;1.3245819;1.1916339;-.92044151;.91730571;.41722274;.88436025;.34371874;-.63823605;.145206;-.46971416;.6004113;.56164956;1.1761436;-.22674045;-.35548592;-.32292804;-.74613142;.094991148;.8619014;.35643652;.26169783;-.41097873;-1.8201613;-1.9876436;-.50028348;-.77040738;-.29168248;.5910064;-.24938193;-1.4928647;-1.6810887;-1.2813734;1.8155524;.69496816;-1.3891609;.24677476;.092492223;-.22774853;.54561871;.63332981;-2.034688;-.44854218;.63563937;.85102123;1.0188197;.40193814;.58870536;-.58678061;-.80254251;1.7618206;-.19385777;.53700948;-1.5250421;4.7369103;2.2399518;3.1671863;5.8796415;.38612497;3.0174158;4.2705626;1.3932024;2.365993;2.4383333;.065704986;5.3462424;2.4741354;7.0142708;-.63408947;.84569108;1.0269641;2.4219871;-3.1200421;1.8608446;3.5495975;.42852914;4.4279685;1.6748343;-1.6289446;2.4865112;1.3102723;2.6011305;4.8743029;4.5464115;-1.1384093;2.1057847;.40566751;1.3937292;-.69024241;2.4114368;.49650881;4.2943087;-.98921531;.041150827;1.7219243;3.9707272;3.608309;.95171326;-.78344727;1.2941811;-.3971535;.57946962;.073503092;-1.2981906;.52955216;.6435886;.060917664;-1.7132995;-1.9353244;.18394822;-1.0414212;-1.3594712;.17926025;1.6984266;.2259564;-.90012431;-.9195528;-.73674995;.64637852;1.7793282;.065509602;-1.4930238;-2.4612346;1.2877887;-.40151227;-.70061868;-.90128303;1.6275234;2.2355623;-2.8669548;-1.6196581;-1.5351095;-.26826245;.8105914;-.30794397;-2.8301566;.39046609;.18462871;.27195099;1.2110603;-.41334054;-1.8264401;-.38346547;.84906656;1.0483133;.11216769;1.8316939;1.7291765;-1.1407075;-1.694351;.70192713;-.62289357;.69756371;-2.0430665;2.4271531;.3219445;2.1642101;3.8168437;-.0056828712;2.3631368;3.3481081;-.063458972;.1756124;1.1161997;-.80225521;3.6959577;1.5344012;4.7933636;-.75713229;.11743289;1.5520797;2.0664306;-2.1927679;.86592948;2.0335605;-1.9294945;3.4853897;2.0947449;-.84412158;2.8334482;.12650476;1.1261292;2.3799715;1.3726047;-.93643433;1.451283;-.050089028;1.490793;-.92524523;1.0603604;.94590425;3.4503999;.36687165;1.3393836;.98213983;4.55688;1.9868382;.45644119;1.1926217;43.215229 +.49837488;.52497119;.4169763;.093093641;-1.0830537;1.2071456;1.1642097;-.53389102;-.55402511;.63620567;-.40765327;-1.0187297;-.53298056;.11326564;.96409351;-2.2590714;.25485468;1.04427;-.63851404;-.037052713;1.079042;-1.5904353;-.11450744;1.6022291;-.32060373;-.39481258;-.10774343;.076997958;.45698774;-.24176203;.088358849;-.61533111;1.0707071;-.60517138;-1.5917711;.72842771;-1.2492826;-.46659002;.42819345;-.3149977;1.619094;.94497716;-1.7760103;-.32880551;-1.710852;.29942209;.019161297;-.18749999;.069909252;-.41820082;-.44845295;2.1157243;4.5226388;3.453964;1.5350333;2.2971904;2.4718704;.39075896;5.5418706;3.0460322;5.2851071;.11610326;2.4343758;4.0746131;-.17384471;.76660055;1.8030771;4.3512096;.075782254;.23742144;-.73912382;5.0068107;-.9224267;1.2413248;2.9359806;3.6495144;2.4524593;2.7646008;1.2018951;-.040875416;.38074288;.39510685;3.589395;.022194974;-.88404936;4.2278223;.089880057;-1.3566005;3.5999405;2.2072403;.33054742;1.9295005;2.7040145;4.2993717;2.0723219;2.696903;.2173916;1.6107367;1.6552951;5.4344096;1.3283355;1.9965924;1.4849641;1.0186061;-1.3574126;1.1048445;-1.5045125;.4647705;.13067341;1.3880385;-2.2161739;-.30575705;.85872132;-.03604199;-.66546208;-2.0126073;.036060482;1.3568528;-.18708232;-.97514194;1.8773423;-.21882428;-.25514793;2.4949098;.19709738;-.60237604;-.84436566;-1.8717141;.78945267;1.5209532;.085183837;.30367458;.98281068;.025910284;-.88442153;1.5373744;-2.8104389;1.1737766;1.4691089;.055482723;3.2928438;1.4743164;-1.3626459;-1.2301232;.15222622;-.60630059;-.23345874;.11965035;-1.5825652;-1.5186512;-.53534114;1.4834681;3.4601595;.98265392;.21719043;2.570359;3.498579;-1.9149283;5.375237;2.7990518;5.290134;.063545696;1.7218149;2.3553078;-.41584194;-.69482535;-.37816533;3.078635;-1.0064927;1.6032574;-1.7993679;2.4911461;-1.2749989;1.0579249;2.9780779;2.7486448;1.1562648;.0021015399;-.79964614;-.8017906;.92635846;-1.4722946;1.3642385;-.47449002;-.0058829705;3.1840076;.73211694;-1.2390141;1.0974792;.21603684;.024851555;-.078818321;1.5816735;2.6323059;2.7950201;1.258579;1.0819423;1.9562609;1.0343829;2.9034693;39.463688 +-.0068215588;-.00017724055;.11742125;.10896739;.7145682;-.001515963;.18686652;.57048362;-1.7957354;-.38919696;.29860929;-1.0211692;-1.1288636;1.9315034;-.18358552;-.17476586;.58252817;.50816596;.88845855;-.58388972;-.39335123;.1910302;-.62098753;-.64845854;.60133326;-.14171414;1.0773952;-2.6922104;1.3374981;-.20935372;.11106709;-2.1766217;-.92399853;-.47046867;-.017236078;-.27783394;.99485749;-.96636242;.87865049;1.0333863;.86350757;-.30591416;.093875051;-1.011928;.52546006;-.40319383;-1.221612;.72387362;-1.1956679;-.009809792;2.4461908;3.16395;1.2181602;1.6929537;3.06442;4.2572794;1.1994381;.55386174;.49914673;.48473212;4.8136492;3.3100364;2.1214683;-1.8163795;2.4347661;1.6535619;2.9173784;2.3827338;3.7789614;4.2337942;2.016109;2.0894947;-.77081698;2.0649879;3.835443;1.1773815;5.7610621;2.3598974;6.411787;1.8674924;1.4683002;3.8886988;1.8595712;7.6338139;2.0938046;4.5534487;4.4656405;4.0306287;.84890682;-1.1069763;4.0324559;4.1261096;4.208384;-.76688695;-.97219622;1.5664792;2.6003962;3.2900317;2.690253;.75690579;.31089643;2.4983292;.0569226;.93579042;.047635507;1.327376;.59765553;.55617696;-3.0099518;-.92576921;.10546912;.009665045;2.569638;1.7112832;-.017171128;.42174983;.8471663;.2375626;2.9104638;-1.4270297;-.095675051;-1.0388726;.65794361;-.061163064;.2718758;.26613992;1.2425694;-3.651736;1.7493563;-1.2246324;.69752866;-1.9700816;.53935218;.0040231808;1.3617402;-.44007099;-.35656035;-2.0015774;.39754555;2.3917141;2.861016;.10026117;.68235135;-.95368063;-.15890938;-.61331946;-3.0734122;.73260838;-.94989443;-3.1833658;1.2437581;1.0896299;1.7262111;1.5096232;3.9228637;2.0992122;1.3464513;1.0241688;.44418278;-.23572737;4.1793737;3.1449974;1.5167384;-1.9041336;2.6395798;1.5312426;2.3312783;.92914802;2.671432;4.2268558;1.7236321;1.2006271;-1.3293594;1.9046667;3.323494;.49076539;3.8980319;.22204421;5.0712442;2.1613903;1.8239888;4.3523588;2.0779216;5.861609;1.142531;2.7641997;1.6027148;4.7724457;.06143197;-1.0604829;3.0408878;3.155705;2.5267966;-1.738102;-.057084318;1.4039235;1.8858343;2.7007978;1.4810408;.57688636;63.817818 +.77476281;.74793488;.055425897;-.087885439;.31054446;.48879063;.1130714;-1.5763181;-1.3884186;-2.097656;-1.0028404;-.13676155;-.41558006;-.43646634;-.22794376;-1.900812;.89390367;-2.5087202;.14362362;-.7409482;-.21685711;.55267775;-.22541887;-.016307177;-1.1308235;-1.1124386;.87825429;-1.1098919;.093414441;.28375193;.97411245;1.2109462;-1.1111603;.34363213;.66027033;-.10289576;-.60674405;-2.2756989;-.33153903;.21009587;.49609685;-.39979276;.23083945;.4936651;-1.3985786;.49972561;-.27711904;-.032581892;.2601932;.17011219;3.2887819;.21608001;1.3373466;1.3860064;1.782643;.67496765;2.7560346;2.4193673;-.43178883;.37050462;1.2619258;2.3871591;1.5309404;.65800041;1.1889811;3.5351388;2.9123375;-.18664345;4.6596208;.52387851;1.4388185;.42975244;1.2979358;.81097674;4.8316536;4.0613031;2.1158626;2.0295627;2.0286927;5.6918807;1.2087219;5.4638767;2.6052356;-.16175699;4.4273691;3.2017074;1.8841947;5.940084;.76539224;1.5975865;2.4909215;7.0894332;2.0293732;2.5902524;-.47685623;1.2754674;2.9166994;4.1316009;4.700984;.12596162;-.1081346;.17481314;-.43957943;.001919121;1.9080429;1.1157084;-1.0082647;-1.0567095;-1.1301407;.48081142;-.41119558;-1.3009801;-.15947992;-2.4620378;.41472608;-1.3661605;-.99999499;-2.4209802;.012976936;-1.9776663;-.5973708;.99337488;-1.4671117;.52692324;.07764782;-2.1744773;-2.3040986;.6346904;-2.1596014;1.7974854;-1.562369;.019876156;-.56119722;.050222963;-.35345441;-.37759233;-.40437436;.25243974;-.39687148;1.1734781;-.60212308;2.1100597;-1.3532883;-.42266011;-1.0510558;.06717667;.63013238;-.052413043;-.39098245;.56475788;1.2665884;1.8089069;1.5332141;1.4675324;.34943402;1.9752892;1.2813855;2.8104935;-1.4759041;-.33023238;.48325107;2.6502569;1.9472097;-1.2675164;1.1040299;2.86922;1.3135966;-.3524535;3.0323477;.610717;1.6378798;.44923964;.79021341;2.800689;2.8548403;2.324455;2.2632377;.35045972;.8568868;3.8755577;-.45876327;3.8943956;.65410888;-.22134662;3.7397008;1.5700136;1.6697084;4.8002229;1.6708235;.16437918;1.9089895;3.3702145;1.9028226;1.0794638;-1.3486117;-.4598389;1.1387497;3.4517195;2.17612;.70147645;52.077576 +-2.0013859;-2.2525213;-.16611114;-.073991984;.3096621;.780388;-.06235313;-.74296087;1.0896593;-1.5925232;.26107407;-2.1151953;1.3135868;.095505528;-.23120756;.90341896;2.3082051;.87371004;-1.5893012;-2.0867207;.67257273;-.46251324;-.092970766;.37646917;-1.3343302;.85561192;.93208003;-.3111667;1.6489638;-2.7106729;-1.2408128;.020301888;-1.0553788;.23382513;.20371839;-.26777142;1.5466446;.62030786;-.44071412;-1.9526178;1.6745232;-.55399173;1.0535692;-2.0480669;-.76503628;.90785819;-.14766279;-.67203438;1.5607272;.026265297;-.93475407;1.7104874;1.7672437;-.079155296;2.3235381;2.4287031;3.5765712;3.1313705;2.1771266;1.3216124;4.9510536;3.49159;4.1570597;1.3352273;3.5346065;4.4853206;3.3415954;-.53629792;.8530277;-1.1149981;4.8645954;2.7601836;-.86519033;-.17900746;-.84474725;-1.523254;.82593685;4.6551905;6.0156236;1.6348903;.16581804;6.2649827;.78942013;2.6225848;5.6072888;5.6295772;5.0214872;1.0661173;3.1362536;.97118753;1.6950693;2.9694397;5.8184953;.79132766;-.70227665;3.6315446;1.6143551;2.5114539;2.6174316;1.0129703;-2.1806481;-2.1859417;1.2421937;.96432412;.51711166;.94834375;-.81309938;-1.2475698;.34730026;.77704078;-.39151233;-1.5342177;.89907181;2.3282781;-.30369163;.15508841;1.1213627;1.7161645;-.83469397;-1.9134676;-1.0062133;-.10563847;-.39210558;-1.2731206;-.66021705;1.1782089;2.3099585;-.30247036;.73047662;-3.1122606;-.11247498;.73724449;-.20203616;.11804304;-2.0291696;-1.1469753;2.4192245;1.8226272;1.441047;-2.2811112;1.5860324;.19285257;.51423198;1.0018449;-.6867069;-.27538311;.65135109;-.69906336;-.21788219;2.2935867;-2.1501369;.85061544;-.086713918;1.9314653;2.3358254;.91893721;1.9869971;1.8656191;.8005752;2.3586202;4.2095885;1.7226079;4.6695933;.15750274;.51958674;1.4820237;2.7221646;1.3383954;.7913183;1.039439;4.234643;3.0487664;-1.7812326;-1.3565228;-1.5148839;-.0094703715;-.75612921;2.553544;2.6721447;.71118098;-.67057228;3.6727827;1.7701113;2.2706132;2.5145283;4.7742901;3.7638724;.37889749;1.0775369;2.9491236;.064411268;.93273258;2.7060533;-.10591239;-1.5231884;2.4932964;.61423504;1.6562064;2.5771186;1.7378786;49.046448 +.86513448;.45676073;1.0524664;.52910978;.20112903;1.0132996;-.18828726;-.74117559;.97482431;.97653729;.48315823;-.79031509;.60650045;-.12975392;.80141956;1.8518472;1.4346306;.44775543;.91361094;-.89280432;.4073745;-.15267494;-1.0378996;.57309788;-.76043802;1.9046919;-.23713849;-.47204936;-1.3197947;-2.3612003;.18174823;.48844922;-1.1104289;-.52822703;1.2918255;.12998429;-.40333661;-.51568133;-.5848847;.14181978;2.3379922;1.1448481;.87074369;1.1365577;-.04795653;1.0939277;-1.2878802;1.3999529;1.076352;-1.9955513;.87489444;3.4375415;4.3722396;-.2097277;.21530584;2.2842612;.57275432;1.6965655;2.8716319;4.6845469;2.6349547;2.0511055;4.5464225;.044148482;2.6737154;-1.0335851;3.5150008;-1.0957831;5.011034;1.7841568;1.0956933;-.85833514;-.43916696;1.0854728;.95368695;4.7378154;-1.7730231;-.84547383;4.4537535;2.2094603;.51259512;-.022354024;.27433714;2.3401926;2.0691965;3.1845276;.30731484;1.2820036;2.1788974;1.880702;1.216715;1.5761333;2.7986467;1.1666287;3.8629372;.3199839;-.85532385;1.3018364;1.0967863;.1472277;.34278297;3.2265551;-.75769049;.76167238;-.54271781;.47706211;.1563137;-.87416071;.82559931;-.44773787;-1.5827824;.20750244;.26731342;.98145664;1.4301727;1.9519826;2.2563546;.0029416292;1.496848;-.88318294;.10770967;2.5533803;1.1179333;-.33908147;-.77552795;.24186455;.14439093;.53493631;-.74329841;-.84285909;-.90205294;-.13657841;-.19526584;.032011494;-.70850235;.92005312;1.526155;.84879154;-2.1198797;-.40423498;1.8370367;.9154231;1.198652;.028740928;-.09908773;1.3860871;-2.8689239;-.26983842;1.6608411;-3.1685653;1.5477247;2.1198909;2.1388004;.87989688;-.38626823;2.3569391;-1.142246;.53109115;.4703736;3.5376823;2.6755011;2.8501873;2.8984809;-1.3250912;.94368625;-.61210579;2.3537993;-1.0775131;4.7177377;2.1009748;.69512677;-1.8300875;-1.0378728;.25179848;2.5061238;2.589792;-2.6487236;-2.2953649;1.9933298;1.6512734;-.65029281;-.28465876;.4523674;2.256566;3.0099063;3.0076315;-1.2586161;1.0595301;3.7917671;3.5936484;1.3725134;1.8241047;2.4543436;.15226126;1.8791325;-.70352399;-.028041711;.37189505;-.65718597;.70355064;43.065071 +1.5047536;-1.7468188;-.4960092;-.71502459;1.0275097;.62788647;.26334691;-.82879072;1.5354819;1.8679545;.59939671;-.45222741;-1.5926208;-.29849505;-.008252969;.76788622;-2.0685897;.44812876;-.74289632;.71924859;1.0165005;.27417633;-.29807043;-.065871745;1.7727454;.7012676;-.68346369;-.95921081;-.43046099;1.3383397;1.6222336;1.0186796;-.63655001;-.099735364;-1.7973975;.422966;-.93789804;.80826682;1.025771;-.23041469;1.9186752;.85613811;.52650768;.89957696;.82763261;.04817516;-.27837044;.46196967;-1.9701647;.55687964;2.6707604;3.8322735;3.1769221;-.25911397;4.034359;-1.0550424;.3835825;4.573349;-.62168169;.062234037;.93273467;1.186246;3.7175314;.48860556;-.26549745;5.284863;.58018035;4.6693964;3.7988365;.87907499;.16369632;4.7598515;-1.5625396;-2.3851352;2.7449222;.83580983;-1.9911948;2.3053093;1.3358538;1.0342922;2.4901936;3.1706576;2.6774521;2.8487866;2.4091671;3.8160703;3.4298997;3.7167728;2.6350117;2.4367976;2.4974072;3.7325385;2.6276815;3.0062497;4.8671703;3.0124085;2.3153436;3.6484883;.98799205;1.6353711;.56792384;-.53374201;-1.6887187;1.2948796;1.8362268;.40661681;1.2318764;.12135815;.010848687;1.7855169;1.8218728;1.5155705;-.013184977;.423801;.2193774;2.0772302;.02475985;.3698377;-1.5371975;.26807764;1.1510653;.60011369;-.79288584;.0048790602;1.0092611;1.0479587;-.78985339;-1.0220616;-.86833155;2.4770753;1.3738368;.13634564;-.27666995;1.8730381;-.7568574;.51770747;-.38386828;2.8073652;.40703166;-.38067606;1.5559683;.6436311;-.77872539;.7873013;-.43198678;-.67880726;-1.3786882;.6904909;-1.0721005;.62377632;2.8860974;3.6150081;2.121944;.40644807;1.886337;-1.2890401;1.1453301;2.0718119;-.89819145;-1.788682;1.1877795;-.8864125;2.4048407;.59600568;1.5869508;6.2481771;-.78629553;3.2079999;2.5089817;3.1463714;.84426343;3.3564725;-3.274188;-.76375514;-1.1488621;-1.0775875;-3.1987696;2.4533808;2.1610234;1.3347369;1.8690474;.81440115;2.1184509;.83135486;1.0938392;3.3397293;3.4231009;2.2531648;.83272451;.080416106;.7945255;2.3704824;1.0326141;2.120542;3.8528466;1.4917601;.61519176;3.1923182;2.6567254;1.1874188;55.290237 +1.6551756;-.038823251;-1.4759868;-.58556217;.39811459;.54270881;-.72901583;-.10702469;-.97805345;-.88908994;.088316202;.65374917;-.90910465;-.85143161;-.035208501;-1.0046719;-1.9957788;-.86819851;-.64767987;1.678974;.70468849;-1.0634078;.65433252;.73959661;.11741737;-.27984786;1.3754226;.9227699;-1.0786314;-.50214934;-.027090494;-1.9185865;-.82618392;-.47835806;-.4851695;-.46055606;-.54922545;.40645963;-1.0456576;.50729364;1.4782246;-.34806111;1.3284578;1.7040026;1.3963379;-.5240159;-.59078819;-1.2507679;.93493354;-.42364183;2.5079043;3.5672677;2.2194018;2.4296894;1.5436639;-.22300605;.95487219;3.1747389;3.7076445;-.88245285;.79303628;4.4513617;.81518883;3.6437664;.56806368;2.6789351;1.2668924;4.1638675;.30365154;2.7321942;1.3545327;5.9564066;-.12937993;3.2391014;2.0969772;-3.2990623;2.6619134;1.9166838;-.92911553;1.8002472;.83125991;4.8011804;3.4016461;5.4707074;.79302269;3.9860201;.60043925;1.6241637;.1926228;.22411448;3.6506126;1.9034528;3.1326067;3.1764238;-2.879287;-.44871828;3.6726723;6.2442369;1.4303176;.27149072;1.2257992;.74830127;-.75782412;-.87946248;.70121217;1.8926133;.20249878;-.3458893;-.63957095;-.32546499;-.46938133;2.0629749;-1.4113243;-.37764433;-.37356231;.72988856;-1.9347068;-.47383267;-.75277704;1.1509374;-.26677257;-1.5599799;-.048794191;.26190054;-.42934453;-.21096948;1.5970101;.016402025;.22913767;.36074722;-.18371166;-.034059055;.47825387;2.1429136;-.23166454;-.20849209;1.3541938;1.3861367;.26716754;-1.2176;1.4668132;.063341685;-1.0331016;.92579478;-.76450312;-.27189669;-.183475;-1.1498848;2.2174125;1.0894926;2.2133327;3.6771519;1.5732466;1.2979441;1.1505257;.22916892;.10118566;3.248523;4.5166245;-.98351318;-.61950988;2.8698878;.64702952;1.7328972;-1.1223381;1.9541303;.29054949;1.911417;-.77607495;3.7588482;1.1893636;4.0966802;-1.0579196;1.7068645;2.0413685;-3.344511;.80414754;1.5956082;-1.0582103;2.4990194;-.32182845;2.3191257;1.5758108;3.5738151;1.6464813;3.4414241;1.0216684;1.8350586;1.1736634;.43210897;3.6963685;2.4869075;2.3482854;2.4931152;-.93479592;-.011067646;2.0280433;4.8482428;3.1407533;.79908454;45.010132 +-.69348782;-1.1243439;-.43384409;1.2828064;1.0892999;-1.5140398;.19290099;-.13730317;.32472908;2.3609364;.17597629;-1.5585346;.061662719;.39741689;1.1343193;.15937014;-1.0960253;.095386639;.51594228;-.52075422;.28113413;-.53117472;-.76238853;-.85511929;-1.0139691;-1.9967678;.68750429;.0086373836;-1.8505033;-.091466457;-.79073888;-1.3540332;1.0010723;-1.7457349;2.6999629;1.8954598;-.42729485;-.59088546;-.55309433;-1.3311315;-.8530274;-.90653694;-.91878211;-.0017194976;.83814442;-2.2076762;.10818464;-.29999498;.59630185;-.32046217;1.3426539;3.6740239;2.9808111;-.42990044;1.3155276;-.07705874;1.3339039;-1.4655384;.97419381;.94055563;3.5501513;1.480929;3.3713579;.14040223;4.3396006;1.3203585;2.3430128;.19614397;.61153746;1.6452255;4.6778045;3.8579056;-2.2980437;3.3312554;-1.5288734;-.6632219;1.9609725;3.0136812;2.1112289;-.55421269;.32023495;1.7661434;.83754569;3.0348451;2.2916684;.10758036;2.5253732;5.0108008;.20892648;.95274317;-2.2285054;3.2186639;-2.1876926;3.8213613;.6897065;-.10722815;2.103035;-2.6909268;1.5207299;1.5277594;-2.2269361;.62217391;-1.5699866;.69898933;.11447008;-2.4239473;.77056766;.54228723;-.40799865;2.1154785;.15261282;-2.2442896;1.1332225;.076290406;.76154977;.45189801;.2572774;1.4508308;.82702565;-2.5980186;.22854881;-1.1075929;-.72816229;-.17110507;-.50591666;-1.3232203;-1.6974447;-1.05913;-1.6912205;.10685254;1.0530869;-2.2100523;-1.1620698;-1.4729551;2.531857;1.5891856;.56939173;1.4858614;-1.7501491;.20584162;-.46459854;.23554681;.64266306;.4051702;2.492662;-2.6788223;.19963276;.082354791;.28798273;.12599604;1.742142;2.684402;2.8616259;-.36925137;.22057006;1.1111677;-.88404506;-1.1832249;1.4437011;.75433195;2.7231941;.47710997;3.0983686;.2071062;3.5976708;1.0238465;2.3448577;-1.1869662;-1.2158154;.63560826;2.7484646;2.9704216;-2.095823;1.3627956;-.95506513;-1.2675208;1.406739;1.9268707;2.0010045;-.099405043;-.041781571;1.6897099;1.1883804;3.3599966;1.2132828;.33218014;2.3480735;4.5180306;.91924012;2.4548171;-4.6940141;2.0087006;-1.1048782;3.3958132;2.3212984;-1.0116906;.67697239;-1.7862194;1.2792906;.741965;27.292545 +1.073603;-.20078215;-.26846123;-1.6867551;-.82587159;.71170509;.27633861;-.093479611;1.6279358;.35988545;-.2086775;-.20293786;1.6437145;1.9142491;.049614895;1.6985193;-1.0573132;.91339517;1.4982259;.2442749;-.21862507;-1.2190282;.90704989;.79738915;.28059912;-.48481581;1.4821184;-.71572572;-.12794273;.20211865;.43579981;-.85019624;-.096565075;.49451068;-.36797091;.60705328;1.0876448;-.39637363;.54202062;.40940493;-1.07384;-.088761158;.28590757;.67100924;-.9780522;-1.2857356;1.4092717;-.27237606;.27963081;-.43377247;-2.3392062;2.2421505;-.0081686787;.42308539;4.9169016;2.4932196;1.1858845;1.1177694;2.2083502;3.2339132;1.6869682;4.6937876;3.6683786;2.2399364;4.3036547;.16142894;3.135087;.6537587;4.0957608;2.5525746;2.1941929;3.2089491;-1.4514731;1.6379323;1.0752563;-1.5649024;1.13332;.98528552;-2.4890273;.84737986;3.0124373;3.7534952;-.81463879;1.2808547;1.3858647;3.1173205;5.7734246;4.9580612;-.28929999;1.1461217;3.816941;2.6660545;4.853334;2.5003691;5.2823911;1.5940132;-1.5540563;1.5769973;-.43943536;.59032935;1.6959263;-1.1358165;-1.4181319;-1.8428217;-.8908425;.17405821;1.3473208;.74960059;2.6404946;-.10029142;-1.8519003;1.9858468;.38339883;1.2822392;-.6942063;1.0804446;-.38385284;-1.4195299;1.4460739;-.12348799;-.075934663;-.035003949;.50813407;.99515349;-.45791164;-1.4226315;2.1814141;-1.1450691;-2.427387;-1.7220266;.26160336;-.71960831;-.92568195;-.47495431;-.15433946;-.48935175;1.6466668;-.17588435;-.24470234;-.21553876;.065364294;.067084052;-.84506118;-1.6820898;-.93915719;-1.726819;.52462924;-.27171153;1.1965686;-.72700053;-1.6772823;1.4440554;.11044452;-1.2730457;3.1609988;1.6825545;1.145467;-.34963572;2.6542976;1.757787;.22793861;2.5796871;1.9883006;1.9013042;2.2351065;-.66574293;-.48188269;-.6837104;4.8446002;.71045798;.50006843;2.8145201;-.85265458;1.6483284;-.68174911;-.84736317;-.0029565974;1.1374369;-.87218982;-1.0073001;1.9360882;4.2509575;-1.617465;.39201096;.22392406;2.4502354;3.4885368;2.6981075;.44633114;1.2089015;2.8749335;2.7798402;3.3396285;1.3383929;3.7258739;1.1394461;-2.2947741;1.6376638;-2.1386335;.73138255;53.391323 +-2.8330698;1.6026875;-.55377668;-1.6940546;.69995028;1.0667442;1.1124864;.21957421;.65738362;.52036756;-2.085278;1.0273309;.15307514;-.26177806;-.11035406;1.3063775;1.3525478;.40981635;-.70606995;-1.1232491;.88885468;.45380294;-.25755784;-.12905222;.79098809;-.48523507;.0050570206;.41103739;1.3088586;1.9427493;-.79448324;.38864028;1.0357355;.77477711;-1.1729461;.12792017;-.42820409;.23471791;-1.4789325;1.3444144;-.50879622;.53383762;.3950738;1.0471877;.72435665;.20363027;-.071185671;.10117011;.22914633;.43867958;2.8076298;1.2189572;-1.0675284;2.0003557;2.756129;3.0756457;4.5738745;4.3653049;3.6707561;2.8800871;1.4988328;4.8350687;3.9844871;2.7786429;5.0743513;2.3730016;2.7400236;-.62604219;.56485057;3.315212;3.8181024;.194519;2.5026274;3.7507925;3.1713352;-1.3683943;2.2412934;.38228357;5.4585357;-2.2787538;1.3602927;.99727595;.013263951;3.5139053;2.1726637;3.5745029;2.9035568;3.9816833;.72929937;1.2538582;-.36357164;2.5675263;1.2036846;2.283375;.6334427;4.0896363;1.932759;-1.0876563;.49797699;3.8225877;-2.9577868;1.3494381;.13968891;-.10418652;.96089739;2.7597272;.32542872;-.44990602;1.9423249;1.378323;-1.186783;1.2337338;-1.896639;-1.6753013;1.2516876;.82429892;1.0841138;.2749308;-1.5460346;-.22806267;.9144004;-.099086843;-2.4422421;.45555824;1.21498;-.64512002;.47222093;1.2104127;.50516677;2.3136053;-.66993475;1.607204;2.2024403;-.96364498;-.72713155;-.48352048;-.67599684;.83789349;.15724835;.64727503;-.32822695;-.037186716;-1.9071413;1.5858061;.99351257;-1.3084052;1.0072809;-.97138107;.55560434;-1.6327416;1.7349253;1.4707031;-1.8676598;1.1343967;2.1833794;2.6466904;3.5110657;2.6967523;3.4641781;2.2483721;3.1158869;1.0910504;2.4806557;.77942437;2.9936705;3.0478716;.35127157;-.54332125;1.2062105;1.1905299;2.7157948;-1.4247403;1.60702;4.1326976;1.4613523;-.64823991;3.4202232;.81710821;4.9657078;-.13478175;.66695398;1.2134993;2.9234664;1.7770309;1.614677;2.0704844;.32402161;2.6685812;-.49640903;1.8357996;-1.7691104;2.2673612;.18670553;1.8604908;2.5607255;2.7893984;1.1108947;-1.199351;.59890985;3.4933994;54.692249 +2.4145899;.71641028;-.60944176;-1.4334743;1.121931;1.58874;-.72814023;-.33516461;1.034789;-2.3218036;.85654032;.53521878;-.88428164;.75298351;-.21128559;1.3861103;-.94859594;2.0128865;.70658952;1.2924174;-.031677425;-.083382741;1.893851;-.77535969;-2.0973737;-1.1443127;-1.3310442;-1.7111354;-.62239301;-.89431554;.43566689;-.46184206;-.73177654;-.25290301;-.69663447;1.070555;-.33089653;-.0653027;.0017552812;-2.2408218;.42757437;-.14048232;-1.2138094;.73314703;-.1926948;.49312142;.64178079;.56399095;.15918702;-1.2138577;.41910642;1.8030257;1.508491;-1.0244596;1.6510178;2.3256073;4.5468698;.056774773;-1.437361;1.0854244;-.57380337;-.12689888;4.8516612;-.55861092;4.2018485;.25615239;3.0696485;2.6501129;4.0663714;.55837762;-.73008412;-.1785769;3.5135937;2.5056679;4.6059651;1.1142869;3.2274365;1.49755;4.7243328;1.3681885;.91358483;.47075427;2.9443822;2.2852173;2.2078707;2.3988636;3.1345873;2.5687265;3.4588695;-1.1886269;1.9984932;1.9270812;-1.3622205;1.1449056;1.5854144;4.1892514;2.7515013;2.7958667;.48724234;1.084069;-.8542853;1.9795288;-.64980382;-.5299958;.11765411;.78713357;-.043616239;-1.0459996;2.2029271;-1.1273371;.63703591;2.1790791;2.2607043;.82523894;-.13133588;1.5227923;-2.8040972;.75677794;1.1296958;.62111276;.63976461;1.7615052;.77687597;-.88415724;-1.0601126;-.40162879;-2.9684167;-1.9931593;-1.3023;-1.2138506;-.29600698;-2.6560445;-.66058868;.53563643;-.065005451;.016843252;-.30163172;-.73083848;-.99380976;-.79455715;-.64958918;.04861661;.55967528;1.1866921;-.68762088;-1.6030636;1.6224015;.42227066;.0051947408;-2.3438387;2.1790845;2.5074918;.52911705;-.62539393;1.8651867;1.5288752;3.5461829;-.51027977;-.44374102;.94354182;.015421863;.27001092;2.7832961;-.58181816;5.1650014;-.42775539;4.7157292;1.8129281;3.036175;1.9216628;-2.9452214;-.036123909;2.0538397;2.1216252;4.9190235;1.5765239;3.0061669;.53712875;3.6420372;4.8204136;2.3766072;-1.6815937;1.6680659;.97342008;.0011383931;.67243403;4.6617765;.93865234;1.746074;-2.277915;1.88107;2.2324495;-1.7807503;1.3468294;2.2121718;4.1054811;2.1332071;3.2764771;.35908964;.75835305;53.679928 +-.95902723;.25647146;-2.0940745;-2.9864876;-1.6130549;1.669464;.073831476;1.4732339;.36533406;.12675859;-.69178951;-1.9600345;-.30732244;1.0521916;.47612378;1.4090512;.0011003404;.39297566;.41787252;-1.8232815;-.84387678;2.2304809;.19613674;-1.9346559;-1.2377411;1.046147;-.69932592;1.2771217;.15307543;-.41795945;-.091967195;-1.3010958;.93157357;.076272704;-.7447198;-.88041836;-1.2951405;.15121348;.69251513;-.5307948;-.96632516;-.34431952;.50860667;-1.3010604;.75433874;-.21954757;-.035334077;.4599964;-.85215068;-2.1649768;.66578221;-1.710114;-2.2151206;1.8776387;1.4222219;1.3377035;1.2236094;1.3163255;3.5419953;1.7649215;.96167892;3.3340282;1.260625;2.079659;-.13045402;-.15912251;4.89855;-.019705787;-.33781952;3.8758209;2.5823748;3.3645577;2.3620927;5.5250421;2.525692;2.1547651;.40944639;.89623791;2.4957809;4.1751699;2.1316998;4.0884314;1.819676;3.8041198;4.4108295;4.6341624;1.9063627;2.8334835;.18324186;4.5894361;.17590298;2.8149717;1.7392571;2.7799568;3.8973947;-.031027891;2.7752626;.38308164;1.5270262;5.1114964;-.46313578;.9739781;-2.4550939;-1.9537526;-2.9481754;2.6214495;2.4782212;1.5584863;-.12128203;-.52551603;-.4814308;-1.5521665;-1.4991102;-.41293135;-.18363765;1.3341426;.90637308;-.95461434;-2.6213305;-1.209188;.088053457;.28069201;-1.6431093;-.73438317;-1.0217443;2.0044966;1.9923978;1.364046;.71065271;-1.8834667;.34896335;.2565209;.92923003;-.36099991;-.89877284;-.17058876;-1.5241734;.28081971;1.1471659;.83635199;-.60210699;-.79546756;-.75207037;-1.9969755;1.3804111;.72524589;1.2124305;.08366926;-2.4802141;-2.5653777;-.35894805;-.65245044;-2.4871902;1.1023318;2.7082641;.69221824;-.33397588;1.0429329;2.7905989;2.269747;.31267524;1.4646991;-.4297199;1.1020049;1.1458153;.63142776;3.7853231;1.4243929;.9812696;2.020016;2.2740121;2.0237274;2.6135032;4.4201369;1.4591091;.77595776;-1.7310582;-.6047405;1.273301;.41812164;2.6572223;3.6063051;1.6798459;3.2212894;1.3655173;2.8787277;-.46410233;.28747591;2.5050631;3.9509516;.079471171;1.2052734;1.37141;.29732469;2.0345705;-.48051384;.4153699;.52786642;2.0252159;2.2134647;48.186298 +1.5650288;-.35932025;-.9886539;-.43767348;.64789617;.022121763;-1.1186379;1.1241623;-.59538543;-.47252548;-1.4659939;-.22652313;-1.2443799;-.377069;-.34515128;-.048545077;.26035663;.7098071;-.35250881;-.84251672;-.80340981;-1.5081403;-1.0390712;3.3619218;.23963681;-1.5350912;-.40165186;.40249157;-.44317704;.20139846;.95857835;-.25184554;-2.8503196;.97214758;-.1733731;-.88842309;.39585114;.70525414;-.38098401;-1.5060822;2.1100686;.5225693;.64316654;-.26474494;2.0528572;.29288501;-.0062422063;-1.4885041;.091939464;2.3516154;4.4270592;4.47296;4.1374559;3.8196743;-4.5009012;3.5490086;-1.7811044;3.3261502;.96482342;2.6468222;.0622967;-2.08564;.76909512;-3.1542535;-.57565922;.59401941;3.351326;.66218293;3.4942274;1.34048;2.0897903;3.5200925;3.0551221;.1276274;3.6415298;3.6476846;-1.4683359;4.1294608;2.5782177;1.2814592;5.1654549;-.15295169;1.148639;-.48302418;.32136098;1.2723736;-1.195822;.23951051;5.7322435;2.6922119;2.8021846;-.4225519;2.4612896;2.3724909;4.1813383;-.18467554;-.19340761;3.9143503;1.4611512;4.5739698;.52842873;-.72393024;-.49719787;1.8965397;-.023589214;.66778624;-.69573867;1.5202324;.95239127;-.56333572;-1.6235303;-.94335526;-1.7502018;-1.2470748;1.6263565;.71107811;-.6611051;-.93105739;-.92961949;-2.5283992;-.36916289;-1.3951068;-.58854085;2.9596643;.07432922;.36727622;-1.0516707;.80718517;-.52478021;1.2410318;-.21274726;1.5400236;-3.0382872;1.2452662;-1.039124;-.13669887;-.60589361;.26494983;-.34295255;-1.6190891;1.9088204;.56298;-.13067487;-1.009338;.64826608;-.36484012;-1.0180571;-.34758416;1.2154319;2.1904383;3.119348;3.7913206;2.9690788;2.975296;-4.6176047;1.919098;-.37458736;1.5574665;-.9295662;.61888319;.90143776;-1.8536708;.16696537;-1.3495971;-3.0953481;-.69041348;.075999491;.78823435;2.6335258;-.08835452;1.2645024;2.5379713;2.0486248;-.52513498;3.3418217;3.7869759;-.56374389;2.4675717;2.3052924;1.6045479;3.6991112;-.85740244;-.38346025;.78595632;2.0775833;-.36257362;-.25804543;-1.0217297;4.0122752;2.3817019;1.5950414;.28323624;1.4940227;2.267087;4.3713603;-1.5747199;.066997245;2.7073081;1.4178127;3.3137012;40.250259 +-1.2935858;.046622917;2.2137222;-.91718709;-.62148494;1.6796336;1.1761222;1.2828958;1.3661325;.54252934;.3284077;.03431588;-.35967761;-1.3475161;-2.5379519;-.85273302;-.68306422;-.21478173;2.1409581;.091961205;.19396518;-.21079974;-1.2897389;.79842818;.23079641;-.89250189;-.85843492;-.81869817;.26169518;-.90684569;2.8986919;-.67090958;-.2915841;1.1314561;.93056417;-1.7740457;-.83104455;.54893792;-.19867335;.047134075;1.6505646;-.89278948;.69947594;.25658193;1.3563548;-.0075348318;-1.9149108;-.2639809;.28041342;.16375563;-.38487867;-.43581522;.21242735;-1.7803059;-2.6743798;4.4098959;2.1324835;2.4137716;3.6494637;3.6826072;2.861877;2.4841721;3.372504;1.2701232;2.1565394;3.0571516;1.5191835;2.380785;1.1933776;4.434988;3.4456515;-.308689;-2.1119981;4.9448099;.16251031;.3774403;.865282;1.8947556;6.5531688;-1.5136765;-.39133972;.67810178;3.9481318;-1.0195632;2.2044792;2.8616593;-.52940983;3.2181842;1.3452942;3.0909243;3.1024103;1.1933529;.13274121;.8327809;1.3627845;3.7469079;1.7537723;-.11846642;-1.8373054;1.4181463;1.0409783;-.22321492;2.2362273;-.94618469;-.77711827;-.52747309;.82256377;.5146907;-.50477177;.88169545;.6788736;-1.317994;-.11883468;-1.5962175;-2.5166867;-.1831284;-.37872514;.4172554;-.011133154;-1.0205892;.38450891;-.46265015;-.77879882;-1.120702;3.6598542;.34613314;-.10417896;1.3362107;.031514175;.55672032;.36940771;-.90969312;.10422216;.81722003;3.1071339;-1.4714068;-1.5245179;.36176029;-2.0990083;-1.4747419;2.0240531;-1.2011184;1.1875479;1.0922524;1.0995524;.76799047;-2.0901682;-.84616148;-1.147642;.54925334;-1.797168;-.65663439;-.083393067;-1.1900542;.08334507;3.7491956;2.3904755;1.4342579;1.580402;3.8824787;2.0731032;1.939471;2.4140882;-.05460418;.53892708;1.6551707;2.161865;1.3277218;-.65438896;2.348341;3.3441133;-1.5626196;-1.1312858;3.0241344;-.58725846;1.2977828;1.0583166;1.779887;5.1983337;.42163372;.75742;-.42455781;2.1222677;-.13235094;2.3889508;2.4913454;1.6649007;3.848896;1.9798545;2.4797435;1.4290268;1.1969334;-1.6983244;1.9462364;1.4361153;1.475633;1.4302833;-1.5144625;-1.3277142;1.4840182;50.654594 +-1.0890101;-1.3193855;-.0096426671;.30165598;-.53710985;1.8228441;-1.0854672;.54090005;-1.0531156;-.36025527;.57838076;.064973637;-.37852338;-.73146194;1.6100304;-.046441462;-2.6161964;.9401992;-1.1678526;-.25758922;1.5413879;1.6113703;-.31851205;1.0798002;.21071038;1.2747537;-.055544972;-1.3239262;-.39462009;-.85678256;.18212108;-1.0238295;1.0479705;.035668928;-1.0644962;-.5332936;1.4405059;-.33232045;.26496634;.83192134;.00011755524;-1.8757186;-.088579014;-.1058138;-1.4577211;.19616605;-.86746961;2.460645;-.10788173;-.36108059;.95207816;2.5596025;3.8692317;4.4933167;4.3847027;1.5422428;3.364552;.65570748;4.2921991;2.8529348;2.7175558;-1.6477535;2.4688461;2.9519219;.31765378;.50205934;1.574625;2.3889341;.37354255;4.2495732;3.3927336;1.8858832;4.2896409;-1.9110163;2.3503168;1.2969748;1.8076483;.97328597;2.1305866;-.91669488;-.86793971;4.2967181;3.7485325;3.1365018;1.2082247;1.2342846;1.9076422;-.32424676;-1.918115;3.4800739;1.2977138;2.4297771;1.1832588;3.7850838;-1.5572414;2.1940696;.63046753;3.3336935;.58557492;3.5646253;-2.2905529;-.56827819;.81544065;1.3464788;-.10685987;-1.2414502;-.68580037;.25878322;-1.0660479;.55611843;-1.0355756;1.2781354;.69866914;.12685706;1.7173833;.72629124;-2.1457331;-1.4229865;-.038660154;1.6210138;1.6000608;.92574596;-1.675612;1.7842754;.53301334;1.3221878;-1.0009156;-1.6689296;.023445867;-1.3564798;1.881218;1.9448674;.87690282;.072715193;1.0178;-.019301649;2.1945944;-1.3255678;-.72123283;2.0594368;-.18340683;-1.8531296;-1.7130591;1.3374214;-1.394277;.53742963;-2.6361887;1.0636318;.042666256;.32941979;1.0827159;2.1668005;4.4926577;5.1290321;3.2113955;3.0746562;4.6676893;.91382152;2.6013732;2.933337;1.1316397;-1.7172335;-.11010535;2.2365689;.7250101;-1.0800397;-.50822872;.86339438;-.88257682;3.3377078;1.2397636;.47911057;3.533066;-1.8720723;.14776908;-.20757762;3.3487518;-.15471324;1.3618397;-1.1815257;-1.03379;3.7934623;2.6425173;3.1196504;1.4341608;-.21270077;.64610678;.13944259;-1.6891307;1.4448456;1.9495115;2.2988629;1.1045803;1.5652413;-3.1248069;.13497855;-1.5703126;1.8990576;.80829585;3.1754713;39.474083 +.92999381;-.021151287;-.43709099;1.4705057;-.88301009;-.80905086;-.26637158;.25821468;.84631211;1.2062359;-.52218342;1.5323855;2.1549113;-1.2747425;-.41527507;-2.9043009;-.61167818;-.89039963;-.42607126;-.051514436;-.96446264;-.34846452;-.88004065;.23411551;.34014297;.70730591;.67594737;-.25903353;.84129661;.84002411;-.10579783;.97773314;1.0490994;-2.3850775;-.75886071;.90504766;-.31503093;.37280762;-.12844911;.12058734;1.1749271;1.9192889;-.1876092;1.4430108;-.36953086;.66419315;1.9145871;.015103882;-1.5635481;.7448855;1.1445292;.55440527;1.0173109;.22576873;.39879534;2.6983232;.6368283;1.8692348;2.3353064;1.2203211;3.3409824;.41934848;1.8176925;2.6782446;4.6828909;.81929523;1.7516856;3.2466056;-.21929654;2.0152509;2.4550419;3.6540966;2.9663413;-.10900005;.93823689;3.3504827;1.8482023;1.8940794;3.5121791;.18123351;5.2426438;2.0077789;1.8835038;1.7604822;1.9174101;.15537344;2.8441403;4.9728518;3.4949403;4.0700183;1.1837305;2.4292386;.52409029;2.7225752;2.0635979;3.9342477;3.1441805;6.3641305;3.9003649;5.2728524;-.27057484;-.10501187;-.093378529;.36543763;-.67599273;-1.7291287;-.94626909;-.11760534;.94390732;1.1266618;.08414679;2.8556955;.50249785;-1.0206306;-2.8084722;-1.7636536;-.41271254;2.0930331;-2.1308715;.26697335;.11941963;-1.0375068;-.48050356;-.26481569;.53164822;1.3162608;1.1614599;-.15210694;-1.0942386;-.60462809;.74603832;.072101139;1.3382075;.72964168;-.91987646;.93531895;-.5464052;-1.8156085;1.8874052;2.0845346;1.9626333;1.2275062;.79443485;-.64002609;-.83942974;-.90810925;1.2353199;.56164581;-.47962055;.9104231;1.5662605;1.0790006;1.7491876;-.92601418;-.35818478;3.7265937;1.0460759;1.5152266;-.64792609;2.1096404;2.5990953;-.48880211;1.4119842;2.324311;3.8664522;-.018495331;1.7085415;2.9290433;-.89607894;.28262886;1.0007825;1.4561751;.59551483;-.18017428;2.4945183;2.4874506;1.7812511;2.2940543;3.7026513;.62741607;5.3252573;1.905375;2.0186172;.8213523;1.3484724;.24333632;.89471096;3.9099646;1.7254674;2.2671216;1.8307916;3.2754135;-.01932363;1.1663679;1.1360538;3.4751499;1.6731002;5.2410631;4.3879943;2.9252126;61.918026 +-1.234694;1.6894433;.10926296;.0061477344;1.2041451;-1.0563558;.9163819;-2.8122315;.97551644;-.076731481;-1.2577097;-.16834515;-.68388224;-1.2497685;-1.1384008;-1.0802369;-1.5174507;1.3914932;-1.3779511;-.26648182;-1.2112944;.44049415;.14465544;.82614481;-1.7775567;-.32334381;1.7151616;1.2062464;-.22910355;-1.3124818;-.76630598;-1.445856;-.23905045;-2.0059071;.077485569;-1.0423833;2.0195448;.4104721;-.082644179;.23004992;-.41426417;-1.3313347;-2.2109222;-.42777541;-1.1109306;.71981239;-.25742099;-.12373354;-1.3636448;-.24174824;3.1981194;-1.5615965;1.6926764;2.2498136;3.4516876;4.4515777;.06992352;1.8074468;3.3197429;-1.1953733;-.71768206;4.3540111;-.045110554;-.56928456;1.0482855;3.4306436;.70065713;4.3956709;3.6844714;-.01516175;2.7628098;-1.7938435;3.7893612;-.57314599;3.3734577;.48733342;.80315822;1.3183794;4.1754065;.35593188;2.5810645;1.9468718;1.2808646;2.1473365;3.6535552;.27315083;1.95407;1.1278597;1.9748602;.88012075;2.5679178;-1.8532125;-2.7037997;2.6043446;2.6598334;3.010118;.12034781;1.2163068;1.1234597;-1.1426426;-1.6554351;1.2457598;.38793781;-1.0682006;1.485142;-1.4999723;2.7327523;-2.2683468;.46313751;.59822494;-1.5306931;.73477095;1.5267105;-.47101551;.67956722;-1.0320636;-1.2070431;1.859126;-2.1202006;.10328797;-1.7946045;-.27949774;-1.1523887;.6751942;-1.9906516;.89399642;-.33608603;-.074120581;.39736181;-2.1623023;-.80441505;1.7444564;-.65974385;-.98340708;2.3315623;-.41101676;2.3205264;1.6548061;1.7596954;1.3907708;-1.5589285;-.62353736;-.41752493;-1.978755;-.59752238;.98895377;-.32975245;.49051282;-1.5198662;-.54639661;2.1908567;.19731347;.28333744;.25649306;2.4795921;1.8423918;1.2853366;2.8421154;3.3640287;-.692442;-.20513494;4.4960642;-.79432803;-.88562661;-.52258688;2.9419203;-.54956782;3.0325465;3.1785564;-.5056147;3.6908827;-.17396154;3.0675187;-1.0935682;1.1497914;.016004294;.16115859;.21882463;2.7338879;-.018891297;1.9817759;1.5869424;1.2169377;.40401548;1.5678198;.79776388;.33146083;1.4241269;1.1787851;1.3437148;.80938542;-1.616383;-2.0512035;2.180264;3.0715969;2.7980044;-.3841714;-.17400046;-.47651866;-.24170201;22.730667 +.54871696;.085538462;.3526054;-.19340509;-1.2579204;-1.2179035;.10721056;-.59809732;-.40141338;3.1014419;-1.675591;-.93489105;1.0722544;-.50939161;-.8056621;1.5879691;1.1810253;.22271477;1.6935151;1.0465553;-.98956889;1.4636899;.4711009;2.0004437;-.62900984;1.0289465;.43959281;-1.3578718;-.24162064;-.77942908;-.87616283;1.1903946;.23958142;.10753769;.20241256;.61311191;-.097045757;1.6859487;.097455017;-.57035869;.40834349;-.56156611;.82329077;3.0706933;1.0439054;1.7897364;.12361545;-.6088199;-1.2319558;-.12304914;-.6853143;-.16160768;4.9994497;3.1995821;4.3909969;5.6164184;4.9945345;2.4144001;.030092077;2.2587981;3.7878842;1.3906507;.76858169;1.9538264;4.1135569;2.0692203;1.3023473;5.7746072;-1.6616836;4.4299641;3.2364352;4.9441714;-.3708069;1.3737799;2.4520807;4.9775953;.23921482;-.38606775;3.2689505;1.2480639;.86478931;-.59255594;.56675154;1.7350124;1.241389;1.5384432;-1.0024992;4.5747385;7.2655425;3.1398709;4.4029546;2.088052;.08470457;3.150691;2.183064;-.13750954;-.90117967;2.4415009;2.6664112;2.0475922;-.94240761;1.363706;1.4124429;-.018506851;-1.9204479;-.66417795;.2679323;-1.280852;.78326672;1.8886809;-.92372566;-.234862;1.5505589;-.62764078;.78501439;1.1682192;3.0325689;.84469306;3.1482503;.73190415;.027183993;-.40224019;.14190938;-.15050882;-1.4201522;.520356;2.9305997;-1.1692369;.38782275;-.64749932;-.0074647078;-.1186238;.054790355;1.7148964;-.099966474;.66310591;.51961696;.42255104;-.40595132;-.85892683;.85447127;-1.6634551;.85536671;1.0839868;.7668938;2.0876639;.42210323;.97686505;-.35830274;-.62319201;-.28469664;.99216211;2.8017087;1.7534631;3.7962186;3.6241999;3.2001531;3.0604792;.61729032;1.002753;1.6166708;1.9696455;-.36460665;1.7253419;3.4351082;1.0593835;1.8233528;3.4700325;-3.5955107;3.3348241;1.6623036;3.470628;-1.1820362;.32387367;-.58542293;2.5916286;.28247279;1.8132383;3.4172459;2.2652805;1.8063962;.87699753;-.057786971;2.1952448;-.29091355;.61749136;-.88515335;4.5426183;3.4272766;3.8893645;1.3779768;.87483239;.93010712;3.2370381;1.8869981;.73560399;.078127399;2.3210576;.29723427;-.36746895;59.573483 +-.10459246;-1.6580745;-.21638118;.63159949;1.1256291;-1.5610029;-.46235773;.42174155;.25356698;.2857796;-.51866943;.20237143;1.0865191;-.18351008;1.2129849;-1.1303828;1.3324269;-.18286252;-1.9460706;.23563798;.062339615;1.1224324;-1.470564;-1.706442;1.3835564;.86178535;1.1759034;.27989992;-1.3725988;.013176828;-.440456;-.27359867;-.79430538;1.7841376;-.1288918;.90969843;-1.1351138;.16777751;-1.7482716;-1.2012625;.57806641;.11690304;.8996169;-1.8331196;-.3672801;-1.1950033;1.1612527;1.9525908;-.099017903;.10039413;3.4603512;1.6515622;1.5427835;.65586609;.81784636;-1.9914706;2.6495788;4.0251098;2.5345204;1.5346966;-1.74178;2.3297234;4.0679369;1.7791995;3.4521375;5.1561146;-1.8303921;1.5841202;2.9508193;.90808624;1.8236363;-1.706252;1.8518236;1.0061759;.80745292;-1.2562511;-.83936429;-.93502444;5.2506571;2.596746;4.7168803;-1.5725828;3.939003;2.1718597;3.2323937;-.1848373;.51972425;.88967878;1.257871;3.1023378;.62770867;1.2146349;-1.3947775;.32187104;2.774874;2.5128057;.7687546;2.2683325;-.21098299;-.17859989;-1.2830203;.61054617;1.4376441;1.9860263;1.4473848;.43691525;-1.1471293;.8309384;.47907528;-.47834107;-.71590102;-1.1296799;1.868646;1.1270157;.51541013;-1.1167986;1.2413986;-.77327174;-.019807568;-1.5886838;.40377057;.52913737;-.89386553;-2.3310091;-.64837736;1.5872024;1.6234071;-.12396903;-1.8199545;.24914192;.43015438;-.17143251;-1.7089578;2.2976186;.92951167;.76611453;-.85057628;.21290635;-.27121198;-.4239845;1.8302437;-.45178124;.17664827;-1.7434256;-.57986671;-.96451706;-.43281189;1.4023719;.71942836;-.52156633;2.0628724;-.24274279;2.1543076;1.2618674;1.1535401;-1.0725479;1.2087777;3.0004776;1.010715;2.627903;-1.0710672;2.319484;2.6144331;.28950721;3.1397407;2.5208902;-1.3350565;1.2109232;2.6298969;.070675999;.00054169266;-1.5459217;1.0227424;.21374141;.56555945;-1.1903553;-3.4542313;-.21573901;4.1178021;2.280225;4.1285524;-.97727972;2.652818;2.5903647;2.8772683;.55654025;.67393273;.55456156;2.4091823;3.4594703;1.3431458;1.4477106;-1.0330977;.1747427;.37751147;.54755831;2.059988;3.1946929;.010809806;1.702175;32.28688 +.53725964;.46893394;1.308596;-.073890485;-.74591434;.20254399;1.5843352;1.1600188;-2.6033719;-.84678918;.20920122;.21075247;1.628877;-.11142404;1.0712273;-.033683568;-.65972406;1.6755416;-.75429255;1.428229;.18599342;-.98426998;.60515362;.68288982;-.19339055;-1.8356463;-.32678077;-.096242517;-.67655623;-.54456866;-.049033768;.11977085;-.82321292;-1.1416619;.66874582;-1.8949796;1.0439101;1.0959724;-1.0364294;.66888827;-.90663701;-1.4878757;1.0407277;-.19168265;.66669077;-.11703568;-.079819165;.66164863;-.14031611;-2.9827771;.071401909;-.83759046;.29230645;3.5817111;3.4750307;2.2707469;1.7521019;4.0086932;.99641705;3.2308657;-1.9096478;1.1077818;2.5281363;1.1939311;5.4210286;1.5018172;.22537692;-.48304784;2.006489;-.62479728;.63304532;3.0468986;2.6266191;1.0682809;-.048433788;1.9942325;5.8309646;2.0278296;3.2546296;-2.6324422;1.7907078;2.4860361;2.4482193;-1.5549462;-.04469033;.97347736;.57189101;-.96846479;2.3383937;.52736098;5.6859384;4.5114841;1.6953348;.4283627;5.8124413;5.5954399;.71922827;6.2270861;-.95635325;2.4447565;-.61820537;.01973567;.90607166;-.34732658;.76031077;1.27396;1.4764618;1.8241179;-3.1074042;-.17274378;.21426329;-1.141052;.98313922;1.8992957;.17291293;.41050977;.22894655;1.2339851;-1.8838502;.7853955;-1.2267873;-.35588264;-1.0193793;1.9142771;1.2190795;-3.2907593;-.43688968;-1.0875865;-.80196142;-.5463317;1.1124505;1.6778076;-.15937707;-2.6181812;-1.4046935;-.5437851;1.5606245;-.31664988;-.71354115;-.22784171;-.94818711;-1.5273192;2.5774055;-1.1358345;.026500028;-.40571067;.92731041;.66027087;-.331357;-.60722458;.61107934;-1.6025592;.70891947;2.8724225;4.0417438;3.436511;2.5290103;2.4668388;.93204916;1.6430016;-1.971688;.43683696;1.4061626;.90640539;2.2365353;1.6092955;-.18926719;.82410854;1.4532717;-.91844475;2.2900128;3.0051823;1.2086816;-.1158436;-.27397475;1.496084;3.6261735;1.1028826;3.7229497;.04325724;.30997205;.66447741;1.3086593;.22469662;-.44794905;-1.6849276;.96645957;-1.7555999;1.2130462;-.33952537;4.7525854;2.8030181;.024080493;.72065663;4.5234685;4.3140078;.069820501;4.2572665;.44920832;.34628457;47.274853 +-.83592314;.88445026;-.94865358;.32795444;.62385178;-.60504007;.38646224;.88441157;-.3604418;1.7765152;1.4646839;.83423197;1.7106571;.99334115;-1.4439354;-.84600419;-.58998662;-.81551659;-1.1335363;-.083635114;.64789611;-2.127991;-.89129478;1.028106;-.78823322;.70932758;-.25599194;-.81223178;-.76274496;-2.514194;-1.1527289;.87709469;1.6132718;-1.3579223;.42662367;-.96670932;-1.6700952;1.6715859;-.50572479;.0076809344;1.0046118;-1.2173212;1.3725003;-.47508711;-1.173775;.63387597;-.56121898;.78068888;.036065944;-1.2841381;1.1274155;4.586627;-.34443662;1.2271577;3.0873697;-1.5788093;.93381798;6.0866737;-.26083043;2.804105;1.5831861;2.0999401;-1.5940157;.734043;3.5119472;2.5025303;2.7127957;-1.0687993;3.5619576;3.2256658;.91634196;2.6611187;-.3249976;1.1083238;2.8936937;2.2961454;2.8810375;4.4042363;2.5332832;3.4111214;2.6784174;1.9654819;-.13722131;4.2682824;2.0597804;1.1497059;2.0951478;3.8866158;.25276119;1.9998239;1.2332351;1.5897177;1.6306131;-.45547053;1.9727454;6.279088;4.1309528;-1.2234799;1.4507347;.12823309;-.41775125;.54780287;-1.8433045;-.55622059;-.63400066;.61669242;1.2782063;-.088117033;-1.1175131;.10045887;.78847641;2.0266721;.70969856;.12000468;.76274371;.08832112;.52956575;.061887678;-1.4172198;-.85703278;-1.7637635;-.92040408;-.097263888;1.1050118;-1.9842311;1.0614393;1.8329715;-1.2976122;-1.1797984;-.61004162;-1.5851345;-.34164074;2.070039;-1.3498743;-.4118453;-.79035181;.5346365;-.27491888;-1.6435285;.17204651;.37626505;-2.3297808;3.0463212;-.58227855;.6728704;-.12105584;.11291622;-.020515036;-.2764869;-1.9532719;1.1439019;4.5253839;-.42679903;1.8714641;2.2976005;-1.4867713;1.4587827;4.5881481;.69899714;1.2617315;1.7867886;2.5504832;-2.3035529;-.3962844;2.4267812;3.7976916;2.2873867;.095841393;1.4475608;3.0453603;1.4640501;3.2810974;-.99515009;1.3000371;2.0892813;1.4273188;1.9562029;4.4837031;2.9570014;2.408947;1.5142771;.51246732;.30418381;2.0512722;.60769397;-.31003079;1.8418697;2.9964163;1.5934469;.38530552;1.8365425;.44865137;.33539686;.17071068;.5665406;4.1266966;3.9938183;-1.1955916;2.0534613;-1.2159703;46.835037 +1.7298988;.30704647;-.95976788;-1.2976614;-.33662674;1.0245063;-.77903676;.9107222;.0051308884;-.96572971;.52668977;-.94034183;-.38649023;-1.1761895;.58115703;-.89866787;.00078171946;-1.2945161;-.76333594;1.9572973;-.55210209;-1.5921029;.20265828;-.27954856;-.51065987;.1980162;-1.3229824;1.7437584;-.62001628;.99255061;.052319773;.46001706;-.063898496;.15320027;-.18125947;.58207637;.75446033;.98313493;.32758456;-1.2144834;.3872039;-1.4810454;.27880129;-1.3685311;1.6886196;1.2939106;.26393023;2.7869856;-1.5601577;.56038111;3.616807;3.1335683;-1.1306025;.54179966;5.5169983;.4382273;1.0776843;4.7561421;2.5216975;4.6461763;-.88783115;1.6067467;2.963624;2.664191;1.5368661;2.8869545;1.574428;2.2151468;1.7535576;-.33879825;2.49054;1.4102521;-.31320357;1.9293108;2.2418973;6.0174284;1.3979895;2.8600905;.65461707;3.4416878;2.2341838;5.5201578;2.3206429;2.4528887;1.7302756;1.2826807;1.5581412;.071557768;.96884638;4.1568637;-4.1842494;.62385994;1.358501;1.8733671;6.1629272;2.4489267;2.6825559;4.1595306;1.5465353;3.3528447;1.4713454;.34509775;-.17121904;.96121478;.76761162;-.65673155;-.011177612;2.0891581;.5705719;.74905837;.57345146;-2.3590214;.89994144;.86003655;.95933145;1.7383716;1.1706352;-.060799029;-.38063326;1.0882452;-.16391355;-1.0208447;.84503764;-1.7359228;-.128894;.73598605;-.071853451;1.8635702;-1.6667635;.19945978;1.693373;-.086723685;-.28826797;-1.3790754;1.0183403;1.1853576;-1.2968286;-.63067806;-.1686267;-.50608605;1.7378275;-.2273062;.32161081;-1.7282344;1.449559;-.73605812;-.59753227;.84478557;-.55977952;.1616776;3.6523523;1.4241967;-.081162557;.604693;2.8361554;1.3751874;.55857116;3.3623297;-.12224703;3.7645137;-.39853171;-.022141989;1.426291;1.7522932;2.6024337;1.5087277;.22169957;-.95336509;.34596911;-1.7741938;.55982822;1.0063615;-1.0890418;2.0534182;2.6084399;3.3377385;1.7966732;2.4483089;.29473749;2.8889463;.87697834;4.607986;1.9688294;1.7544291;2.0641925;.27473569;1.6256691;.52745968;-.097077854;1.7716366;-4.985497;.32477933;1.6628505;2.453356;5.4443984;1.9758414;2.0533526;1.9283905;2.0130379;2.3800166;45.283276 +.083781257;.5942086;1.1425407;.67706859;.66979921;-1.2534803;1.8315167;.97492546;.48561585;1.8456358;.30174345;1.3853195;-.79690403;-.27475449;.26387271;1.0274631;-.63549244;-.32089874;1.6831551;-.16462873;1.3020259;-1.1734213;.52497232;-.60589671;-.47623536;1.2645481;-.31881741;.085305952;-1.03032;.93106151;.027368527;.39297777;1.0078621;.27008793;1.3264933;.89941871;.46559685;-.80531156;.45682016;1.9586971;-1.2029228;.15949392;-.73803914;.86660725;.74667054;-2.4459081;-.58409381;1.2202431;1.4708617;.24943656;7.060863;1.5007539;1.9592798;-1.0078617;3.7816436;1.7571206;3.4196641;1.3081758;3.524967;1.1331286;3.5716329;2.7104828;1.4430182;-.28286549;.68553776;5.6781993;3.0712316;3.2290134;3.4419961;.19672982;-.64428574;1.9002966;2.8671653;5.4571548;4.4238386;2.2182493;1.1398237;1.5963892;2.2244918;2.4800057;-1.7881501;-.83856606;.044250526;3.6619897;4.1748204;1.5709798;4.2669024;1.8357775;2.1834407;.16329062;2.2989688;3.5190759;2.435678;1.8095056;3.50857;4.2585263;-1.1699643;3.15274;4.4660106;2.8069553;1.7358222;-.26714119;-.091992401;.15317126;.61091584;-2.0676985;1.0413936;1.9056387;.35452756;1.7953016;2.38485;1.115737;-1.4369463;-.044381194;.2480565;.75288874;-.13492322;.48650706;-.79170889;-.028659187;1.043553;-1.4642512;.020929039;-1.159665;-.62245917;.2095796;-.9570545;1.1550004;-.23249114;.081516139;-.35104862;-.31760818;.68687201;1.5461745;-.86213315;2.0966682;.17184244;-1.0630705;.78664321;.29347649;-2.8346784;-1.2925196;-.79504824;1.0816482;1.8022696;-2.0123403;-2.0208406;1.049422;.67520559;.88719809;6.2582898;1.1579481;2.6943986;.77173823;2.3011923;1.0125449;2.6042094;.4262602;3.0805662;.37949759;3.0604846;1.4738821;1.4319121;-1.4893103;-1.1782633;3.5002217;2.7204764;2.7273345;2.2795951;.86862797;-.7672019;2.7598679;2.1385045;4.9754229;3.2918081;1.1434913;1.3745024;.88318807;2.6880534;1.73201;-1.8049608;-2.1691682;.79640782;2.6093392;4.12467;1.7136934;3.6804826;.08587566;3.3105147;-.1849315;3.0311735;3.0026557;1.9349145;2.2537551;1.2922632;.7894817;-.56630439;2.5172291;1.9618707;1.763487;65.010818 +.76588565;.78513438;.64708376;-.41568664;-.65771252;-1.1718445;.63088036;-.45201957;2.4404685;1.0039566;1.5674407;.68140262;.3671622;.038858056;.40719005;.86310315;-.8547712;.15509585;-.10701755;-.70797729;-.354424;-.22009218;-.29279745;-.54442298;-1.2072757;1.8301367;.50304055;.31220326;-.23650144;-.22116488;1.4606727;.88175535;-1.4566935;-1.3296005;2.7768254;.26189679;.072626114;-.41960862;.38532031;-1.1712422;.20982134;1.2931795;1.0754274;-2.0553608;1.2267931;.20535344;.39852312;-.14660589;1.4444678;1.5795203;5.0986366;-1.612219;.20378974;1.6240438;3.9811659;1.6041846;2.399595;4.4469128;1.8597535;2.7472427;3.5418198;2.6973224;1.9203687;2.0366268;3.1084404;.053900205;.59259087;.35559294;4.8200769;-2.5641816;.81799716;1.0569693;.36091986;2.8813941;4.6649189;5.4998012;.72953153;.43475565;5.2219834;1.2199522;6.0666962;1.9284023;3.9861629;1.5891756;1.110073;3.1373434;4.3105226;-.18813768;4.79775;2.9562864;3.0700145;1.3280678;3.3322341;2.6895249;-.94945252;2.0764432;3.6100125;.90175879;3.7836795;3.4687152;-2.1358628;1.7817752;.87888104;.079392999;-.89417392;-.67317641;1.4345075;-1.3809866;2.4159477;-.11491622;.45416442;-.56606781;-.42127785;1.4425459;.67567086;-.1204285;.37001744;-.62720102;-.37383223;-1.3601984;-.44545963;.18523006;.38579211;-1.7744669;-.81606197;1.8013591;-1.3696575;1.8183595;.51877302;-.45306551;.62810171;2.2564254;1.2029711;-.76941842;2.6838849;.7553705;-.053390797;-.8804087;-1.4020814;-.89648527;-.75466686;-.16113509;2.9443429;-2.1013598;.60256624;.52103639;.70503759;.89719319;-.18520769;3.1147895;3.1225462;-2.6058779;.60149157;.13362962;2.3220429;.60662079;1.5613295;1.9369193;2.3121819;1.8278059;3.0453286;2.4844089;2.0892355;2.878135;2.3409894;.18000345;.5036571;1.0129366;3.4249532;-1.6716919;1.3681719;1.1427851;-.32755575;3.3743074;3.9451475;2.8506162;-.20812327;-.53686494;3.3584812;-.57579768;3.2710762;2.579031;3.0500112;1.1755049;1.6819856;2.3359921;3.2655587;-.29998088;3.0264604;2.3886769;1.5392791;1.9275366;3.6163666;3.3845251;.36156783;2.105993;4.056951;.590913;1.301419;3.1916525;62.573742 +-.15759288;1.2954751;.53904319;-.64721513;-.19363855;.35589263;.50385308;-.19765717;-.21231431;-1.1579447;-.97109127;.12362358;.28678438;-.79238379;.94649315;.45007429;-1.3734977;1.4105442;.067393005;.55245852;-.6644451;-1.1152108;.77597851;.16377248;.67718881;.48903829;-.82792091;-1.4148376;-1.0367504;.28207475;.11116012;-.17644937;.43160123;-.85294378;.34013954;-.08438535;-.064030565;.91398853;-.73595566;.49769577;-1.09549;.81831747;.31451878;.80058557;-.70524579;1.2831559;-1.0732015;-.21212637;1.1780912;.50298196;1.3597133;5.7620058;3.9515264;2.4338932;-1.0644426;2.76194;2.5467122;4.1126418;4.1902227;.70318466;1.4478208;2.5205164;.36162847;-.62286049;3.2802548;-.055551577;-.56885993;.96153533;-.53384751;3.6810012;-1.6334637;4.80093;-1.0663148;1.8050982;-.45088965;1.3533746;.62334919;.40935293;-1.3343177;-.53952628;5.4978986;2.4868402;2.6183786;1.8591822;2.1894021;3.1178691;3.7335608;2.7032664;3.7020972;-.80838931;1.5331839;4.8827701;-.055753823;2.4803083;3.1409252;1.5322834;1.6377075;3.9607155;-.68093479;1.2291906;.92883188;-.24429233;1.3997295;-1.6270171;1.0966612;1.5172642;.08217933;.41339278;-1.3410031;-.082485609;.20573322;-.37914765;.86410904;-.51060146;1.1261533;-.9137755;-1.4726681;.55886465;.27002591;1.2379045;-1.7609229;.11877731;.45252451;.27093586;-.0094966926;.25709113;-1.02873;.042052124;.39450994;-.36524305;.23478013;.085050836;.55236644;-.79464686;-.7282846;-.36419675;1.0775115;-.15454374;-1.2257727;.89065921;-2.2392406;.78089213;.068339214;-1.7315277;-2.0518003;.78239018;.79589212;.9272818;2.9587896;-1.2557068;3.5434797;2.9403017;3.3042839;2.5256677;-1.2746316;2.8380356;1.4631873;2.6490905;2.9655616;-.049973506;-1.1943501;3.039885;-1.5168717;-.22777419;2.1468542;-.67998123;-.071605064;.82830042;-.72467971;3.6099143;-1.8799289;1.2748785;.85601819;-.48620522;-2.1778452;2.0703704;.25756121;-1.3003795;-.85655439;.68455994;3.6871128;1.5766135;3.2785702;2.0338628;2.2199187;1.5708632;1.9604403;2.4004612;3.0020075;.25932455;1.0107495;1.6090831;-.59716022;2.8030038;.78698969;.23786794;2.1831684;2.3629401;-1.0152498;.83229429;43.93153 +.738976;1.2791274;-.46244571;-1.5152764;-1.7601686;1.0622203;.059665184;-.68002599;1.3473648;.30716044;-.23641294;-.80698472;.48121363;-.21505971;-.86650568;.20342982;-.48300603;.66497749;-1.2233522;-.50543678;.24721661;.48798802;-1.4996508;1.9027181;.29219335;1.3077915;-.53071481;1.8492721;.83901465;.3857522;-.92745572;1.1064546;1.5651116;.1356532;-.36238575;-.45918792;2.0299838;.51735055;-.5948838;.39054292;-1.1166534;.0076337876;.31793141;-1.4232849;.89578742;-.30769947;-.1748406;-.4467203;.99035251;-.36425316;-2.4350841;2.3793886;2.6852241;1.3120987;2.6247473;4.3932962;2.0502033;3.4955478;1.6602564;.1274168;.82988632;.766599;.98934126;3.6368198;3.5968547;2.8029296;2.9318159;3.7636023;-2.3463228;.9008882;.42101675;3.0239406;2.6548226;.57461923;6.2034149;2.10813;1.0105299;2.0830047;-.5876056;3.685205;-.27762279;4.6403861;5.3971868;-.96128494;2.0059314;2.3014376;4.7745962;3.4757557;-.96666974;2.100702;-.53556937;4.5169754;-.065186821;1.0385473;1.4982054;2.3345191;3.5725768;2.8230567;-.29610536;4.1183653;-.30042747;1.3542013;-1.5998979;-.89574414;-1.9847715;-.37867606;.38876596;-1.0235727;1.0980979;.059466261;1.308239;1.3797023;1.9989694;.31734982;-2.1984804;.52896088;-.30689001;-.40837696;-2.4023137;-1.6933382;1.7774861;.53192598;-.99863738;2.506176;-.29464775;2.74928;.42810324;1.8486754;-1.1264513;.86773801;-.012234883;1.0367253;2.3014271;1.1710106;-.1565502;.25307828;1.5067894;-.45119038;-1.1569809;-.4928835;-1.0899991;.78933209;.12481409;-.8380239;.26241562;-.69463426;2.3631811;-.93072909;.2237052;-.0013413029;.16416711;-.1036201;2.1740863;1.2191741;2.3013473;3.1141572;.24080768;3.8609769;.87670773;.63357639;.52491117;.25091165;1.7104938;2.609817;1.0612855;1.4989058;1.1341072;1.8133286;-1.2725569;1.2555993;.93342227;.58677989;1.2455021;1.5303911;4.1365256;1.797156;1.1750841;2.1444607;-1.6067615;4.0039668;1.069496;3.9840889;3.7843192;-1.7043214;.79270899;.69179058;4.0393462;2.5136483;-2.4127698;1.7351514;-1.3107821;4.5610247;-.78271025;2.433321;1.7884738;2.5093651;2.6709473;1.8724536;-1.2993377;2.8739173;46.636742 +.14699717;-.20326062;.1631438;-.44417238;-2.5705395;-1.1203127;-1.1113838;1.5578599;-.86664283;.46742007;.33363187;-.060166787;.84329236;.82018864;1.3749925;2.4381359;-.13282692;-.21670003;1.0148102;-.61734527;1.461848;2.2389412;.54462117;-.37559265;.97738802;-1.7047532;-1.1589305;.33632296;-.43371364;-.92709202;.24767178;-.91735232;-.4110139;-.16176932;-.038886599;.36834139;.74878377;-.62604213;.72681791;-.97517264;1.608971;1.6562366;-.64372635;.48809567;-.24316788;1.5837545;.85517073;-.56026083;-.53067797;-1.5631129;-1.1389065;.53453779;3.7285962;5.1006951;3.0730674;1.9550494;4.870698;.65310127;3.1883311;3.0080869;2.2202809;-.5117082;-.049985684;4.5023322;2.8720345;2.4031217;5.2275;3.8398986;.010431043;4.8253641;-.64655536;4.6769371;-.74963498;1.0994706;1.8019878;.3574599;-.65575176;4.7641587;.86924601;.51505345;1.4670368;1.1869444;3.7768991;3.9214342;.65760517;2.5236225;-.015467336;1.9514083;.96361178;1.6944507;.55553895;2.9756248;2.6583757;.4077096;-2.6663334;3.6333625;2.7879298;1.5385435;2.5300248;5.6417584;-1.370447;-1.2862395;-.75615877;.47363761;-1.6648484;-1.1129355;.66530806;1.0620347;-.85924387;.55945778;-1.2903301;-2.9040861;.93544811;.83827555;-.4104411;2.9852583;-.89481533;.73109865;.030610314;.16356173;.62824732;1.1870779;.3548905;-.035023537;.37411761;-.26576766;-.91034269;-.45259088;2.6077979;.13651405;.59917021;-.91252613;-1.6320993;.3388404;-1.6841515;.069531664;.72765929;.3027924;-2.2066393;.08040455;-.42591155;-.0401108;.13120376;-.47988862;-1.2595395;2.8664098;-.26757398;-.52315557;-.51816559;1.2660873;-1.0618141;1.8748266;2.5246458;4.8752093;1.0433873;2.0585248;5.7164679;-.39216611;1.9869981;1.115437;1.7087824;-.40954155;-.13316447;3.6874831;2.4744878;3.0251763;4.4171338;2.6700215;.49277285;4.158843;.025226627;3.2069569;-1.0050341;2.1005726;.83902055;-.80256277;1.224713;4.5065594;.75164801;-.34270078;1.2098048;.25562426;3.3502352;3.0789251;.68401986;1.8148328;.41824067;2.3202417;.49227542;.57435465;-1.9394473;3.1595073;1.7714634;2.4371862;-2.8134491;3.8575637;1.5638654;2.5037;2.1924088;4.1582551;54.870689 +-2.413409;-.93647772;.74851441;.30289179;.54205513;.73435885;-.21397677;1.7458556;.81097686;-.65739071;1.2639271;-.9962458;.095251784;.84275824;1.582546;.35375434;-.93621927;.21403387;-1.1210924;.32565761;.77456075;.62955642;-.56457525;-.31547382;-1.4541574;.62804675;.33421403;-.2066846;2.0727289;-.36758369;-.24959072;-.12192125;1.1601353;.21469134;.36835513;.53059083;-.57109594;-.68289554;.48210394;1.8247068;.10757629;-.38544568;-1.298162;-.52516884;-.15123144;-.53127813;1.0483593;-.84464812;.41485128;.76348382;-1.2934115;-.81672597;3.0619509;4.8961415;1.3478168;-.44068831;5.3262835;-1.2697562;.89880359;3.5372694;3.782619;2.5395186;.1730397;3.1269326;2.853816;.67579329;-.46043763;3.0581632;3.9312243;1.5654831;3.4297504;1.7740527;3.1164393;-.6667729;2.3658922;-.90379459;4.7563024;-.90535825;5.4155145;.77106929;4.0996175;-2.0258956;2.474045;2.8701084;2.8789921;2.4128776;.62132257;2.5393019;4.1298227;.24120584;1.5443685;2.5599556;2.7857602;1.1002085;4.1413689;3.4926677;2.3641407;4.0857315;3.8435183;-.030077498;-2.4919844;-.58115083;1.7905748;-1.1430981;1.9602942;.93766207;-.36637893;.45369726;.57799625;-1.4697818;1.1691395;-1.8060919;-1.317359;-.29887882;.14325421;1.1647646;-1.0798571;-.46089903;-.86019391;-1.4967139;.32571861;.16689087;-.83453858;-1.1052465;-.55365723;-.50564885;-.03910704;.93816048;1.0841994;1.0347644;-1.3552613;.6307227;.18551491;.28235674;.61358947;-.20784403;.38856438;-1.0206052;1.7304114;.91275007;.19384566;.29027951;-1.675372;-.86872053;.072863109;1.387105;2.2694635;-.78355247;1.4022781;-.75668401;-1.5188818;.21324083;.82976007;2.8532443;1.744423;-1.6232351;5.071135;-.014030123;1.588215;1.7591803;2.1640806;3.0163867;-2.3254151;2.3446722;2.950151;.15552746;.74303091;2.5775242;.91582316;.39113483;1.9889451;1.8825442;1.0823498;-.48100308;.34908494;.13192461;4.2506533;-.71110374;4.0418096;1.3229856;1.2111677;-2.0116496;1.1674607;.16451481;.83993137;1.4525135;1.7003093;.96137118;3.095973;.87199479;.79825819;1.6537932;1.6041235;.016628446;2.6122451;-.20047136;.85205245;1.9807378;.74654031;-.63807327;57.910595 +-.62382263;1.0597638;2.2170641;-.28603277;-.22404891;-.0040042335;.15166934;-.96322542;-.46497166;.51214856;-1.5888186;.49964282;-.37871626;-1.1185981;1.5039748;-.39985463;-.084291786;-.573865;-1.2095392;-.5220542;.28916577;-.29779214;.068962522;-1.2346153;-.10863712;-.69239002;.19582352;.35663265;.21742944;-.12192442;-1.1314856;1.1974825;.35547262;1.4728575;-2.340589;.14381722;.32570541;-.22262761;.82717109;.2311438;-.16898757;-.45092678;-1.6026179;-.0062592961;-.24757211;1.2552725;1.3146969;1.3586009;-.57432181;.0047999434;4.2837353;.032924164;4.4834805;2.4526756;-.12323821;1.3910003;3.8626747;.80935466;.071784779;.67842656;1.1135675;.65838802;1.2393903;-1.4195338;2.5061088;-.24642891;.78554887;4.0681;.97861791;3.8621264;4.3902111;2.050688;6.3258457;4.3472657;2.6715634;.012556181;3.0104871;5.3139687;3.3055074;-1.4790132;3.608259;3.4047606;2.3894067;1.9784445;2.95573;3.8938701;.58360547;-2.1166749;.66577142;.73243839;-.27902696;-1.1120317;2.895416;-.054366976;1.383299;2.2505732;1.9464662;2.0550873;.81182712;1.5714327;2.6334229;1.2747836;3.8625538;1.1012105;-.42228681;-.87455153;-1.0137229;-.84432817;1.0936552;-.011812611;-1.4686552;.62063628;-.20559683;-.40272045;1.0779148;.4929288;1.4538788;-1.976658;.45168155;-.50383145;.70743549;-.66280848;.54446566;-.40743145;.69973719;-.12769397;.62424654;.21237238;-.94746298;-1.0051425;1.383291;1.5651788;.90711957;.45030177;-1.2415484;-1.8736799;1.117839;-1.3759223;.25838593;-.83742279;-.18795274;-.66387647;-.49342635;-.98432755;1.7706114;-.58935177;.332008;1.9086109;.044206262;-1.4773098;3.4172289;-.18447392;2.4954195;2.1267228;-.83425719;-.11712341;1.7135999;1.5096313;.78907233;1.6043484;.25861913;-1.0220197;2.369931;.45386642;2.1986301;1.3419946;1.3631563;3.2010114;.023907023;2.1261933;2.2082696;.29401529;4.1913958;3.8600087;2.9074471;-.69325161;2.0915205;4.5312967;1.4585387;-1.0693543;2.1487601;3.6897562;2.621619;1.8589487;2.8066363;2.0284913;-.3050946;-.18559133;-1.4801927;-.46379951;-.51690996;1.4030762;3.2027524;1.3999554;2.4310198;2.7943137;-.63046104;1.7829635;.56165117;.629933;44.696812 +-.22797531;1.3086072;.80323082;.46956065;.24373396;-.055270333;-1.4589564;-.39549649;.18441649;.097275116;.050892435;-1.41062;.53731918;-1.4774768;-.62859082;-2.1705973;-2.1674533;-.53027761;-.044609699;-.64429921;-.27233422;.82319409;1.60991;2.0201697;.8853116;-1.2810892;.010171488;.019149235;-.54894352;.57655936;.850564;-.88540232;-.17504847;-1.5164179;-.83908916;.86149561;.060921315;1.0318677;-.66599619;.38417867;.63084459;.42895636;-.76491809;-1.0839409;.56114888;1.8369448;1.9885436;.66959578;-.59752542;-2.4527829;-.45237625;2.5397661;-1.4168355;5.6788349;2.2790537;2.0312922;5.1212969;.053826667;1.1558774;-1.37951;2.2592115;6.2311997;-.87348461;.55754679;4.8458414;3.7815948;2.8070815;3.7439888;2.0597618;-1.3061471;4.2258177;4.968832;1.7570937;1.0442003;2.99155;1.9224992;4.1220512;.71911013;1.2670097;3.7490344;2.1420329;-.41612974;4.0874324;7.9722486;3.5899351;3.4041495;3.8253117;.71726227;.58189142;-.028996149;-1.0280626;1.5981967;1.1872535;1.5989884;5.5669479;2.998476;1.4430579;.12842147;-.60970092;2.5958033;.39528248;1.8985287;.42479983;-.90650922;-.72619581;.5443182;.63921934;-.045750029;-.92064112;.58048451;1.9706622;-.93831855;1.7753086;-1.2561126;-.045629784;-2.6130815;-2.371717;-.85640508;-1.2952442;1.0322319;1.2949507;1.5800247;2.5649831;2.7679226;.72176301;-.71258742;-.052014958;-.31942484;1.1619456;1.5853927;.60787165;-1.8979251;.49410328;-.89537984;.51741892;.29198864;.81199169;.28113931;-2.136724;-.22899005;.44846171;.020583317;-.83884805;.48944366;-.23936357;.50640488;-.31297141;.72858715;1.4019204;-3.6541841;-1.037729;.4263531;-3.5794637;5.1073895;-.015696578;3.3900008;3.9643679;-2.3040717;-.6198265;-1.3462838;2.4795077;3.9691451;-.32066485;.15467711;5.1447997;2.6716537;2.7237034;-.32200924;1.6799302;-2.4854364;3.5544677;3.5621858;.57372934;-.53445232;2.1815979;2.2757146;2.9781592;.17239328;.95002687;3.4324086;2.9799583;.45181173;2.42296;4.3934169;3.010505;1.3973546;2.6685314;.90060526;.1038432;1.367699;-.79776579;1.6163416;.75245965;1.4266888;4.385026;2.3321066;2.0545697;1.5756282;1.1864196;.81574404;54.077202 +.034038089;2.6448791;.059054039;-.39009899;-2.1961963;.23650432;.72665173;1.3534477;-.42762071;-.047903791;.69287235;.33497974;-.12851425;-.50626594;-1.0696354;-.2926062;2.16611;.59833139;1.2089075;.99975693;.30862445;-.32718894;-.57197481;-.79361004;-1.7022104;-1.0711457;-.69062668;-.074663348;-.27184725;1.1839861;1.1720127;-1.1729467;-.83749694;.26092288;.93098229;-2.9854829;-1.2100505;.77997077;-.30723521;-1.0763074;.60851616;.7239393;.11878449;-1.3231045;-.51126403;-.86248469;1.3983985;1.6490291;-.37905833;-.28080854;3.3386497;.57779092;3.5431781;-.82084012;3.0606642;2.4420719;4.5214391;2.8396099;4.0885429;.50189024;3.0035291;2.028127;1.725467;5.3203831;4.983263;-.89070612;.077227287;1.0987754;-2.6359138;3.133311;5.0118237;3.2464364;-.85162675;1.8696091;.17548208;2.2992487;2.5163198;.56553763;.66405141;2.9878652;.043745801;-1.0184487;1.4017613;1.6075282;.08641877;-1.9722952;2.3562338;6.0321956;2.2217009;1.884064;3.6458752;2.2969716;1.7109786;2.1807745;3.2445819;2.1407287;.039485794;-1.4659518;4.2666817;3.2921722;-.82310033;1.1687449;-1.327502;1.6848841;-1.626593;1.735932;1.4551382;-1.0009075;-.06710773;-.0029115165;.86246121;-.31152934;.9987992;.6720826;-.010822937;-1.8428862;1.4680127;-.85011375;1.4319725;.88455045;2.1858175;.15484729;-.32564166;-.87800294;-1.1994364;.50283742;.68078953;-.62050557;.27650017;-.53444147;-.87601227;-2.4807248;-.6550405;-1.2206795;.50616199;-2.0773902;-.85046983;1.6408468;-3.1186059;-.27542296;-.12170338;-.66316622;-.21887499;-1.3125023;-.23296212;-.64289117;1.6440936;-.27482986;-1.7963834;-.21806911;1.2464452;-.63367689;2.8308465;.085493587;2.584815;2.0292311;3.9980075;2.997122;2.8755975;2.0509877;2.9752276;.56201261;.78546995;4.1761694;2.4418516;1.0292624;-.072453551;1.0699909;-2.9388688;2.6476231;2.0167789;3.663096;-.86397207;1.3235528;1.1289366;.62999845;1.995038;-.50077569;.65836102;.40667784;-.49357229;-.22651958;.57905251;1.8459364;.82988626;-3.3250413;2.5702114;4.6836534;2.2315865;1.3064369;1.6392674;1.053862;.7042889;2.4567573;1.2789516;1.0077583;1.6027602;.60758007;4.2668281;4.6901565;44.801529 +-1.7177025;-.4983331;.56207168;1.2888843;-.01755967;.49058166;-.65683973;-1.1965405;.18398717;-.95095158;-.89720815;-.34529307;.29355884;-.13318996;-.9310841;.11744585;.16121899;.81524593;2.7989285;.83377635;.004730545;-1.1280054;1.1949919;-1.6821159;.2958875;-.6871953;-.12940872;.28127709;1.6435949;-.7651149;.69434434;-1.6742775;.27248728;-.69747728;-.65694946;-.25519663;1.0248843;.043332066;1.0660095;-.11798187;.44770601;-.42335531;-.37368971;-2.1254847;-1.4539957;-.14364386;.017144727;-.64286095;.41278893;1.1882037;-.86927646;.17216055;3.6402383;2.9192674;4.3312621;2.3930936;1.344611;2.6100929;2.9684575;2.1190195;2.476404;1.9096922;2.6455071;1.5731363;-.18007006;3.3358746;2.1327438;.25511572;2.0199225;.89236897;1.3257459;2.7744684;.69674903;2.8983459;3.2890437;6.5599566;1.8998176;-3.176903;1.0000503;-1.1693041;-.0069735064;2.0247247;5.4272709;2.0349686;3.4433439;3.9988232;-.12739564;-.096253008;.58100176;4.1430998;-.74728793;2.1180894;.65124601;1.5321914;-.54563421;-1.9465035;.78637189;4.3532181;.27039376;2.8590167;.28195709;-1.1592978;1.3076308;.0032476301;.56179172;1.1217152;1.216435;-.12533447;3.0855994;-.88447189;.89154124;-.29834253;-.60876042;-1.6349503;-.47242117;-1.2434061;.23463969;-.18235488;1.3454881;1.0327007;.71347564;-1.7729042;-.17049906;-1.7496748;.26388547;-.2849364;.10572594;1.8411431;.63685358;-2.0306978;.011751709;.34726489;-1.8620682;-1.6502734;-1.1682352;-.3498475;-.60628331;-1.5427047;-.55733722;-1.5031929;.50469422;.99024332;.75731152;-.18224421;-2.1808097;-.37054393;.53103828;.84176207;1.0331101;.70432991;-1.6521469;-2.4775021;2.7141724;1.8759099;3.9950595;2.0514548;2.8332443;.96336782;3.8364873;.1103064;1.7060114;3.3553588;1.7508239;-.65842664;1.4337307;2.6692207;1.6312721;-.75587845;.5541833;1.4706446;1.6848084;2.1993682;1.0213274;2.4870594;1.0740819;4.770721;1.149022;-2.5998223;1.6508801;-1.3272867;-.36811563;1.6657444;2.9725978;.47566885;2.1657012;3.1360965;-.7921778;-1.0383151;.27899873;2.9785101;-.94791245;-.41159868;-.1072796;1.9986804;-1.3185654;.37270963;.69634199;3.2973008;.6275456;.8962822;49.72681 +-.3955422;-1.3617586;1.2351071;-.70294511;.6585592;-1.2494006;-1.608211;3.4502418;.40733477;-.30815139;-.099662498;-2.5845556;-1.1877073;-1.7899311;1.5375918;.61720622;-1.71725;-.31579739;-.63327879;1.053671;.33166337;-.044461798;-.39041135;-1.1361945;1.012959;-.92822337;-.39213359;.13230936;1.1036232;-.4203971;.074702233;-.16147077;1.1297237;.60178798;-.33782867;.071255267;-.80583251;.66242641;1.8086538;-1.5808462;-.6859659;.7639249;1.105924;.34253246;.21764903;1.0485355;-.53000718;-1.0388986;.2000833;.30504027;.28542596;7.536067;-.047784876;4.8896856;.14315122;2.8103402;6.1707487;2.1188731;-1.2954801;3.3279214;-.95970517;1.6464992;3.5859418;-.87104946;5.5103083;.25324023;-1.3097359;.41971731;1.671954;1.416006;-1.3801533;-1.247264;.18356836;3.7684367;-3.6424847;.026139773;1.7133392;2.1852891;-2.9407227;1.3179922;4.0349321;-2.0876656;.93242222;5.3947601;1.8323492;.15883859;1.2817494;-1.3098739;1.782045;4.3155003;-.32643133;3.4298556;4.8106084;2.5040643;4.1957121;2.8104248;4.0563445;5.9492059;1.1959609;3.4378016;1.0582346;-1.1093159;.3968403;-.43626881;-1.2056577;-.32965252;-1.7942219;1.9481028;-.44629771;-.69733036;1.2885659;-1.6896956;.46402293;-1.109143;.99328357;-.7613675;-.14098004;.43143541;-.3622483;2.9918849;-.2070948;-.2671724;-.15655473;-.86042702;.82994872;.56714422;-1.3010528;-.7788313;1.6846365;-1.1269642;-.005158321;.52046913;-.029655794;1.0546489;.023352405;.5405795;-.26464427;.3168934;1.5009124;-.21583956;-.43236792;1.059479;.44767979;-.3785508;-1.0141323;.8450799;.23570879;-.019894201;2.1007984;-.65326047;-.1198421;6.2376428;-1.3509718;4.9452801;1.8217108;.33711839;3.1555569;1.1078849;-.12789623;2.1958017;.67792749;1.9822321;3.2670736;-.89022112;3.6415992;-.60210955;.26830122;1.7750078;3.8429625;.79483581;.3116048;-.56191599;-.14610845;1.4595358;-2.7907958;2.6883888;2.321651;1.9309126;-3.333688;.074151069;2.9085939;-1.2485877;1.4776038;3.3820875;1.1251595;.11734044;2.5424712;-.3689611;2.2986989;3.4316976;-.68292809;2.277936;1.9929129;.54638124;3.1197863;.38164139;2.7465861;4.8762231;-.1769259;2.8475232;41.373299 +-.39115444;.39107022;-1.07512;.60418057;-.61934143;-.33121631;-.79264009;.29045117;-1.008444;-.18003854;2.0148005;1.7396328;-.60201222;-1.0807172;.73240221;-.19874647;.55429351;1.2861484;-1.4142833;.0027476985;-.73086274;.21636705;.71870613;.78992462;.54398149;.6136933;.23198508;-1.1572305;-.27064344;-.96845031;.28168368;-.17368832;-1.5154415;1.1995432;.41585615;-.41093841;.52112818;.71150309;.13946533;-1.5928702;-.17036268;.39413235;.19524895;.82741064;.18209775;-.68500739;.038184687;.62166017;-1.6010927;-.85553074;.9812476;2.5067255;1.2630401;.18262573;.17439868;1.3963746;2.1576722;4.4899678;3.5805757;.89131236;1.2090265;5.5711217;.70980269;2.7930343;3.9943912;2.4969478;.032256939;3.2274957;3.7030361;2.9338648;1.9013321;5.0679641;2.2052002;-.087896049;4.0402489;.95870084;2.3793035;.40594098;4.0509963;-.48666471;1.3791844;.22261819;-1.380844;4.9137053;.84536499;2.2487607;-.10422596;3.7201178;.38335741;5.1007266;1.4716908;2.1309764;-.25930348;.76083362;-.14065658;6.1174974;1.0553805;.88567442;3.3283658;.928491;.17475888;.89901084;.50547862;-.32058129;-2.4478078;-1.3137959;-.44247735;-.51707035;-2.3881965;-1.0098475;2.0769215;2.5762534;-.07697618;-.55582297;2.3832908;-.36080429;-.2961185;1.8199515;-1.1052359;-.88811183;.09401761;-.53290904;1.0742085;.81870067;-1.0648605;-1.6379443;.12866151;-.47853297;.74766707;-.32836136;1.4101087;.85169095;1.1724179;.5348959;.15015042;-.8529706;-1.2218908;.236287;.49667159;-1.4739077;.35618994;-.073764697;.91636735;-1.3836658;-.88258135;-1.3501592;-.21917859;.15496972;-1.5635709;-1.5030907;1.2604556;3.7312407;2.0379601;-.8665905;.83435863;1.8768182;.40353897;4.2218146;2.4692516;1.7215354;1.2274082;2.6770115;2.5140185;1.8171523;1.8825402;2.4482634;-1.3556771;2.8098059;3.0995219;1.5712323;.98723227;3.7102864;1.169722;-.33144352;1.9244937;.56399059;2.0004375;2.6463704;1.3958635;-2.0249934;.41488925;-.366211;-.36087468;3.1919601;1.7249585;2.2396848;.76288539;2.7597473;-.99416786;4.2683344;2.0040314;2.2868009;-.27991706;1.2662982;.94401461;3.4685006;2.3986254;-.61988413;2.0216827;1.0543694;46.800209 +-.71631545;2.3536513;-.59538871;1.820568;1.0065548;1.9788474;-.339306;.53891015;1.2790374;.8300758;.98912048;.55882603;-.86303204;-1.4304153;-1.2866865;.50739944;-.77216607;-1.1108791;-2.5302939;.96660823;-1.3446553;.37020817;.77785808;-.50541598;1.3713807;-1.9112929;-.33383599;.11120865;-.48710227;1.121151;.15982009;-.2059121;1.0172399;-.2136126;-.25200689;-.0016008234;-1.3604094;.26341349;-.49732322;-1.7835324;-.42679632;-.77503616;-1.2312667;-.82918662;1.3328817;.15497713;-1.3924479;1.0403254;.65630108;-.63217288;2.8342497;.41103891;5.4839721;6.7573652;1.1456971;4.2559581;1.1390378;-.15990497;2.5357528;2.3688884;1.9857345;1.4783697;-.47088861;2.1572928;-.17752787;1.7617935;4.1889672;3.3636916;2.4024062;1.3239516;1.4822091;1.8560253;3.864979;-.3739776;4.8379846;.95628649;3.4747717;3.1000242;1.940995;2.1679726;2.394896;.78856015;-.76187277;2.9340858;1.8061171;-1.5427488;2.8875556;3.0084774;2.312551;-1.303133;2.4537663;-.38978723;1.0355009;4.3837614;-.32624623;.85903549;3.7812567;3.2989869;2.411659;5.6706228;-3.5184917;.5207696;-.0048444541;1.4479133;.40400913;-.049854968;-.24409361;-.098519936;2.2371614;-.93884397;1.9549834;.74449235;.20092422;-2.5494227;-2.862021;-.31409511;-1.036746;-.71328008;-1.3376576;1.5422254;-2.3252585;.038968261;-.15948035;1.1331131;2.2509937;-1.8439504;-1.757599;.56496274;-.63522059;2.3257184;-.40188795;-.91583025;.5454179;-1.4121919;-.78086865;.13897139;-1.4942188;-.76486218;-.47913417;-.97127879;-.68888342;-1.4139971;-.82210428;-2.6925547;1.8629118;-.89462608;-1.9032966;2.7416344;-.48912475;-.08994548;1.7952788;-.61671269;4.2495661;6.1837707;2.2025845;2.6080205;1.8081814;-.045101169;2.6088042;2.1155078;1.8437363;-.3883017;-.16944399;2.7786627;-1.1573756;-.016854076;2.2099414;3.4018691;1.6651478;.80990052;1.1792467;-1.4229703;1.6159152;.24013992;2.920541;2.7744493;1.409387;1.5348544;1.4946847;.41084319;2.4043946;.90810943;-1.5638064;1.8641618;1.9326632;-.95600784;3.2066751;2.3774269;2.6611838;-2.3149095;2.4716089;1.1353407;1.1337157;2.939415;.84567064;.88790393;2.4478664;1.1105647;2.0763452;3.0444462;52.251038 +-.63133001;1.2187107;-1.6546285;3.1342893;-.5140034;1.7933356;-1.0027612;-.62278515;.13918146;.44818333;.90698338;1.2785724;-.69734544;-.23266616;-1.2512681;.56557453;1.52905;-.30679774;-.20875734;.51452702;1.0598288;-1.8565422;.52193469;-1.3613243;.28282586;1.4825273;1.2816932;-.77816015;.22380298;1.1504921;-.30663273;-2.0484288;2.3943026;.26430303;-1.2681774;-1.7363007;-1.3193326;-.18538533;-1.3072696;.70143253;2.6047585;-.98629981;1.1366248;.41095468;-.093470924;.39591917;-.43178725;.54838806;-.40084422;1.5544311;6.1654177;2.1552219;2.0895388;2.1358066;-1.6456709;3.3391528;.79505569;5.1398058;2.169594;3.2138178;1.2370819;6.9677463;2.0587893;6.9762239;-1.7736697;3.9105723;-.99246633;1.7183592;-1.801929;1.2800279;.48902699;2.5914478;1.489185;.35807207;2.2833607;4.5263944;-.56146246;.76503921;1.9948004;3.9841118;-1.9287003;-1.3131148;2.4585493;3.6881602;1.7102567;3.7918315;6.4197645;2.6173825;1.2873684;2.9502363;-2.393805;3.2028756;1.6103519;4.553072;2.984865;2.6795979;4.1514206;3.3101554;3.6184926;4.8308158;1.0779761;-.28597507;-2.1593704;3.9093552;-.70073956;.041327138;.86846691;-2.5164919;-.063450739;-.64896762;-.73241818;-1.4574397;-.050064441;.47590315;-.27142516;-1.2781061;1.2862724;-1.8508199;-1.2721821;.55707771;1.2214411;-1.7214108;-.68777215;-.71888345;2.0123119;1.926227;1.9471371;-1.5153508;.32662991;.39471686;-2.4398265;-2.5918434;2.3407617;-1.5844474;-.70273983;-.61961633;-1.6562417;-1.3995936;-1.029663;1.0890722;3.607168;-.75192761;.11682265;.041229993;.19793116;2.0819616;-.60705864;-1.2775773;-.70210189;1.4255164;4.2858911;2.9444227;2.4028962;-.060585491;-1.8789166;2.6160669;-.57465518;2.9362671;1.3173113;3.0811143;-.2074098;3.9038687;1.066939;5.4936309;-1.7384106;2.8242369;-1.4890397;.70531732;1.0745068;1.3967509;1.6880094;1.1477358;1.266059;-.27361128;.21228825;3.9194384;-3.1654015;.67500734;1.176633;3.8344839;-1.5364429;-2.2937944;1.8704453;4.1229877;.80315763;2.550523;3.6341732;.45424125;.69131291;1.6259503;-2.3356705;1.7114829;.17649697;5.4771094;4.0353637;2.2420373;1.3048861;3.0526533;.82365531;5.8798447;52.036514 +-1.7017181;.36123508;.31625411;-.85656512;.049703151;1.8632312;-.027584979;-.037346721;.47058845;.8764779;-.44378325;.15699574;.93377805;-.38324827;.41667375;-1.4505947;-2.0009661;.76915073;1.6149487;.41903874;1.4777225;-1.0071605;.46356577;-.011072381;.24017026;-.29527861;.10211289;.12785274;-.47297043;-.42243829;2.4479387;.19152887;-1.1041136;-.33425641;-1.2304933;.42031386;.88349843;-.5641762;.68884563;.97044545;-.53539097;-.69184506;-.38161522;-.22643825;-.11527427;-.30712959;-.13472785;2.4748137;.99482566;.024510484;3.7652469;3.8157828;1.5259365;2.6497293;1.0748274;3.0902004;-.54254353;-.15645583;1.4870504;1.4383348;-.12012518;2.2065852;3.5948811;-.35833633;5.7674103;2.9565666;-1.6832343;1.1029365;1.2824831;1.0601569;3.0896118;4.0256186;2.4737546;2.4241619;2.2664893;1.1908662;3.0900803;-1.4445176;1.7861464;5.317862;1.0259255;1.9777467;2.225265;2.9863844;2.0960023;3.9644785;-.03867802;2.3223567;1.7034904;3.5936413;2.1036839;1.4737453;.50474787;2.3988242;2.1283095;-.058446553;3.0511849;3.2368734;2.7072756;1.6938446;-.91238499;-.82502526;.92535621;-.13680536;-1.0162618;1.5089747;.84343779;-.4539721;.15218051;.83263552;.23817337;-.21569179;.20693868;.52040535;.15384145;-1.6931459;-.8940689;.79406399;-.13258405;-1.8229904;.83736897;-.0039026968;1.0318274;-.63699973;.46883911;.82810593;.054982863;-.15530187;1.0302469;-.1446206;.67059392;-.14733098;-.12773368;.27132359;.41722149;-1.1557332;.17476632;1.3065586;-.0036404631;.39568225;-.37579769;-.3372874;.38430986;-.82754672;-.91058892;-.78672898;1.6478944;1.092551;.46221906;-1.1784664;2.5527692;2.9034631;.35661745;2.8077879;.78998297;1.5605197;-1.0701883;-1.4276664;.15305007;.200201;-.27955002;1.9790753;1.2489032;1.0441293;3.3848667;2.1875806;-2.6105769;1.1733946;1.2005281;-1.3230484;1.8015815;1.9706577;1.7129267;-.232954;-.62492937;2.1803186;1.318978;-.34120822;-.092995271;3.689872;2.6013751;2.099052;1.0386201;2.9602005;1.0348691;3.6115234;-.33240375;-.27782798;2.044909;2.7998989;.09896633;.004078466;.97499436;2.3948119;2.0425835;-.22624914;1.6583328;1.0170394;1.0550607;1.0771762;48.324585 +.27516443;-1.2422234;-.61031306;-.15552488;-.44009078;-1.0131955;.84349799;.54394013;.30907187;-.66984165;.37976524;.60910076;-1.1104921;-.86541516;-.46076053;2.3261249;-1.6105247;1.1120516;.29530093;-.47161549;.27826434;-.70406103;-1.63017;2.152091;.45224592;-.27502835;.4726361;-.81485552;-1.3025959;-.44595459;.64836824;.84624857;-.60037792;1.5646619;-1.3972023;-.44139737;-.066887259;.24676546;1.8743615;-.63340485;.27884984;.065887086;.14225185;.42657992;.048144273;.21537681;-1.4482889;.64728618;.088279396;-.7763561;6.3323488;.46834981;.84649563;.67074233;4.2495689;2.2414391;4.5404048;2.0090747;4.1521163;6.3816066;3.2850816;.3064017;1.4675417;1.5562973;4.005003;3.4870079;1.030911;-1.0956746;-1.4822541;2.0018559;.55126119;-.022618694;3.9344819;.014878546;.58166248;1.6817752;4.8753633;.79664797;3.7758603;-2.294595;-1.726058;2.3120816;.23316488;.18513408;.77137047;2.2736247;2.4459157;5.0433683;1.7169456;-.091604277;.92523938;3.0569863;1.7232541;1.2409041;1.747497;3.5862179;.066217698;2.9513857;2.5720763;.78364503;.70263833;-3.6955154;-.41137928;-.57274926;.28627175;.064544283;.6611172;-.62138027;.26499456;.63234955;.13408199;-.47843406;.98689711;.0474496;-.072677068;3.7112789;.21661375;2.0068913;-.013971503;-.73494786;1.5008255;-1.95691;-.12519725;3.5584228;-.7028349;.064078197;1.0038872;-.89386636;-1.5227047;-.91302866;1.5289875;.70917249;-.88839668;2.8613167;-.1366754;-1.3941501;-.98188603;-1.1904641;.76775581;-.12520355;-.026837166;1.3782398;2.4233;2.4321527;-1.8440914;.67927498;-1.1257901;-.56359863;.16546661;-1.7944595;3.1882377;.44153404;-.64489108;2.3846362;3.7018452;2.1762552;2.8979506;1.6371758;2.4160018;5.4417725;1.8332472;1.6589916;1.8297262;-.15688092;4.0897245;3.1484275;2.341279;-2.0393012;.67437869;.87947875;.46945301;.78758579;1.8829875;-1.016924;1.2793853;.64984488;2.5899725;1.6468081;3.3089807;-.8582049;-.6528731;1.7588997;.5168128;-.55425775;-.1768247;1.4369893;3.6899042;4.008822;.63234663;-.032989878;2.7168036;2.9488664;1.629028;-.88007438;2.6549234;1.7770493;.33615172;.91121626;1.6185271;2.1980965;44.831501 +-1.3393222;1.477103;-.23344596;.15857185;-.054006379;.5086779;.17646639;-.44449502;-.2517347;-.14999583;-.30067843;-.14852819;-.29087493;-1.0577657;-1.0517021;.032294933;.28093264;-2.6412814;-.43036634;-2.0246465;.73153925;-.85945773;.95625222;-.60048866;1.8943889;-.15040563;-1.2306938;-.95354104;-.64616013;.83132875;-.45897332;-.61372024;1.2804514;-.29813927;1.2238141;-.076669447;-.70185584;-1.8343784;-.50545281;.84675729;-.88455975;.55430353;-.22419669;-.49557593;-.096890688;-.12124651;-.56504416;.76752281;.57608402;.37369159;2.8516295;.95052171;3.6165018;1.4996738;.12645856;2.6453001;2.718308;-.6685338;4.523222;-1.0661951;4.0528603;4.1559443;.28296638;.42804965;3.0109577;3.0583072;.97095364;1.5244741;1.4031118;1.3135344;1.2696797;2.9543591;4.1366682;2.630465;1.732815;1.7834324;-2.6873152;3.2493498;4.1905522;1.6772037;-1.4084939;.93234676;2.6069064;2.7796791;.6440199;4.0287337;-.18490233;.69960111;5.2016044;.92627978;2.1260729;4.2027125;2.8214858;-1.1548826;.56186193;1.8312814;-.12988022;1.150403;-.89042312;5.2195168;-1.7791365;-1.7348949;-1.649244;.58852732;-.53756005;.4125939;-.28796762;.020958079;-.67829055;1.2444154;.1299578;.095016293;-.97078556;-1.3887254;-.95483196;1.6525148;.20523649;-2.6158702;.41772348;-1.3826606;.15798044;.43907899;2.0555091;-2.4698923;.78896737;-.97856259;-1.5666414;-1.0089498;.49118206;-.4084259;-.69285262;1.4282986;-.067127846;-.86512905;-1.3866469;-.71394926;.62066728;-1.4166735;-1.7744455;.5795117;-.45176971;-2.0657034;-.36423942;-.16818058;-.54873896;-.67836088;.60799164;.41524574;3.7305939;-.53088254;1.1363002;.63773143;2.6659641;.42903399;.76148599;.78716618;2.056483;-.32258624;2.7763457;-.7211327;3.3169658;3.9464967;.79099369;.89832604;1.2990285;5.1515779;-1.0755721;2.0776165;-.6643858;.69476449;.60884398;2.4887109;3.0460627;1.0994352;.78672969;2.2983241;-1.2126758;1.2339344;2.7013814;1.6269888;-1.6783302;1.2577747;2.9572475;2.5336354;.78095961;2.9627631;.46364892;.34281123;4.3949475;1.7684318;3.5053349;2.7344682;.062928118;-2.2928455;1.3814428;2.4975786;1.8415781;-.26216641;.45053405;3.7334838;45.436668 +2.7270169;.6896947;-.88170832;-.39947703;.19742998;-1.6315598;-.28603363;1.966102;-1.1886011;.67408699;.90834135;.94301009;-.85633701;.81728673;.68435419;-.10538955;-1.0995145;.95457184;.45274088;.7646544;.10990494;1.208567;-.65684605;1.3916467;-.030051436;-.078650512;.75503516;-.46359795;.21452923;-1.0641127;-.23747398;.42618889;-.36868659;-.2647804;-.35646755;.17496672;1.1061815;-.4604584;-.74944806;.34778002;-.55773342;-.16019724;.3312946;-.36956012;-.31302601;-.95723891;-1.6286106;-.38988042;-.89083731;.47827157;4.5932755;1.3244085;3.2218249;1.7042662;-.50580311;3.1707575;4.2089992;2.3785944;3.6804118;-2.3472009;3.68802;-.96967834;3.9025111;-.7523495;.23626627;1.5701081;.86306518;3.1564445;4.8172574;.75595093;-.97727042;.26296705;3.9972925;4.1286817;3.242466;3.2249243;3.4367285;.65366417;3.8343573;3.7924747;4.9525251;3.4798648;.50769877;7.8339424;.61539549;.40324843;-.13901637;-.94501954;.018594233;1.5950319;3.0487282;5.8869219;5.9786248;3.6445236;-1.4662352;1.9507632;.10668563;2.5791409;2.2289584;1.6217792;2.6619892;-.58901614;1.775671;.066517264;1.104435;-2.6102755;-.43411818;.77799952;-.80696177;-.021216672;-.310525;.4968504;-.16733825;1.2953844;1.7322367;-1.0413947;-.78347129;-.016854871;2.0444205;1.3386664;.31157649;.069650754;-1.6883755;.98516446;-.41202745;1.1074269;.26354879;.17988002;-.99086207;-.97778785;1.3731835;1.9314365;-1.6517617;.075183921;.087798201;1.8385329;.80933577;-.39402217;-2.543045;2.3557961;2.3230779;.39199027;.21027932;-1.5253133;-.1574448;-.74201524;-2.8735762;.92160577;.47653466;.35626474;1.838766;-.56450689;3.5237784;1.1878102;-2.6134813;1.3382267;3.564441;1.3798853;3.1809001;-1.8210562;1.5639218;1.4475955;2.7104974;-1.0459912;.50205541;.14957108;-.56519502;2.5783861;4.1383033;.10193528;-1.4278396;-.027207958;.94970047;3.715198;1.8543842;.42404723;3.4752433;.24163724;4.2421026;2.965102;3.298579;2.6530945;.40382713;5.3753772;.48365152;2.4837947;.53884244;-.49023461;-1.1064514;1.2893965;2.7114487;3.3048422;4.2872677;4.5197639;-.3143217;2.4053805;.55292499;-.19350007;1.012709;2.2551084;53.845524 +1.1919705;.037967891;.5374229;1.1581382;-.16804577;-.025873438;-.28365174;-1.405252;-1.095692;1.083499;.91113305;.072720297;-.40619963;.45095927;-1.8774188;-.69272387;.73887843;-.73466539;-.63601804;-.79710251;-.74740946;2.7057686;.82219607;-.30191335;.50624472;1.4904624;-.34234184;.48457253;-.46486998;-.78807759;1.1051276;.5646112;-1.6434369;.38389352;-.03002172;-.2690264;.69275576;-1.4549599;.30031741;-.51621473;-1.0646528;.044640508;-.5339359;-1.7479844;-1.1596062;.20422435;-.36768323;.04453117;2.2353067;-.54769069;1.1976544;.030921368;.49416667;-1.2232802;1.4787079;-.24744646;.81857294;-2.581239;.88679314;3.9089928;1.3219169;-1.169277;-.88278919;2.6643538;.88368422;1.0767148;3.8199632;.25095582;.033165473;2.8573673;1.0961103;2.0130043;.74156791;-.40294901;1.9971067;2.9465306;.081178807;.72716695;2.0096321;2.2087383;.66307908;2.2633231;3.7364521;5.7738285;.29521078;1.2647498;-.20041627;5.1860809;3.1728079;2.38766;3.7741892;4.0442567;2.8858335;.88968009;2.1663415;.53097492;-.34372911;1.5103452;2.5681753;2.8393438;.66287726;1.7154914;.44653767;.38561115;.70715052;.21974307;.7949093;-.51974821;-1.6322769;.28462347;.89720732;.40787956;-1.9384547;-.50398582;-.047382619;.74186814;.60100865;-1.5280973;-.52274632;.095647268;-1.0213103;.86552286;-.4449974;.73588204;1.2351983;1.4965494;-1.185029;.92452151;-.11319055;-1.4202389;.24949458;.48361808;-2.5704532;1.2681538;-.51974249;-2.1728051;.40956187;-.19725068;1.3257595;-.21756221;-1.3891535;-1.36728;-2.2279475;-.23609984;.081438579;1.1862087;.2758446;-.34394968;.85799396;.95228672;-1.1571338;.73390466;.098489523;-.1840848;-.40897462;.65415341;-1.0498799;-1.5512602;.94822896;.44294751;.99659753;-1.624104;1.1367866;1.4428661;-.43176532;1.1908358;3.0974283;-.4863075;1.1925812;-.12633051;1.0822214;1.4618351;-.070767857;1.4152088;4.1685286;1.0859702;-1.4279438;-.030949684;1.2985054;1.7729142;1.1911876;1.0809089;3.0400887;4.1881275;.17122497;1.0229298;1.0855997;4.2968702;2.3034754;.9658168;1.3789365;2.8333223;3.2693341;2.4705849;.91333377;.58356714;.61124158;.18033618;1.558966;1.88108;38.063152 +.34904563;1.1920869;1.115782;-.37071025;-.68583292;-.7409727;.016282665;-.63941604;1.2650431;.86329901;.046941943;.44010627;-1.1410875;-.89910924;-.43892506;.040034141;.33607534;1.3042425;.47083867;.82867271;-.14642499;.14118843;-.058244258;-.56881309;.74927306;.56171805;-.15860569;-.24721701;-1.7106926;-1.1523125;-.69805473;-.12574142;-.32226214;-.10071514;-.14168343;-.0048079477;-1.638814;-1.7880806;.18692715;-.38239875;1.3612303;.11447567;1.0786766;.78336734;.18526353;-.92677569;-.45112279;1.4576669;.50684261;.38518324;5.9717197;4.129693;3.9415557;2.2280357;1.5295724;1.4998553;.086217485;6.2982311;-.047851078;4.4392738;3.0525954;1.6109833;1.383576;-.099233046;-1.2198125;-.22381137;.57122642;2.7672877;1.0158641;4.4560857;6.3042173;.71841401;3.3874886;-1.7348862;5.3126864;1.6608042;-.25161177;.52711111;6.115191;2.1259151;1.6584953;1.9913036;.6860261;1.4046863;3.916625;-.34370881;.58222687;1.6750025;.91548342;2.0218565;4.4931726;5.7088823;1.3555243;-2.4401631;4.1129293;-1.0901535;.8162303;.57486308;1.2242668;1.3818303;-.65729523;.95080739;-.25701529;-1.391605;-.38693386;-.91648209;1.2491732;-.039581623;.67897844;-1.477141;-.34387997;.68318874;-.13727899;-1.3711518;-2.0059209;-.69041455;.91222012;.81954306;-.8220892;1.0462965;.61895102;-.52892554;.73039562;-.26608351;1.4084949;.19769692;-.085102081;.56122774;-2.1418824;-.70249003;.18616794;-.064066239;.83216286;-.46790823;-1.308762;.65464675;-.95192939;-.55759281;.21329825;.70686305;.36687568;1.0407404;.82367945;-.99002033;-1.911213;-.84784579;.044348489;.95077062;-.6012398;1.1029046;5.0795798;2.6625664;4.1257548;1.6560442;1.2489529;2.971108;.73502088;5.4786944;-.06979128;4.3034143;1.6518086;2.5892212;2.3128798;.87975222;.38287091;1.7045614;.52036184;2.1889391;1.8616486;2.6838977;4.5208392;-.073305473;1.7633677;-1.0658532;5.3935342;2.3658998;.95802581;-.60416567;1.3671163;2.1211517;-.42369595;.79813731;1.1817387;.33429822;.84609514;1.53089;-.35602596;1.2240407;.94851851;3.1483524;3.7231498;3.3985097;-.53369343;-1.9335576;3.3484857;.19897018;-.52169186;.3548522;.20900661;.12701894;44.472206 +.84286845;2.0966032;1.1998434;-.020396875;-1.1075398;1.0620892;-.23814432;1.6040443;-.58621454;-1.9923182;.48694897;-.84702808;-.6309678;.31289858;-.34824681;-.59149492;1.1070242;-.88489127;-.43502071;-.058014542;-1.4925814;1.1870438;1.370469;-.75962979;1.1491159;-.31123623;-1.5772418;-1.4523426;-1.0382658;2.0379441;.43646607;-2.0930789;.46255967;-.45832238;1.6401594;1.1294906;-.89339519;-.57881039;-1.4004562;.56133038;.49446759;.15462722;.18036693;1.5781379;.40916309;.95806336;.56722677;.76487565;-1.0539876;-1.8359638;4.2879114;.43196255;-1.846033;1.3431603;.38752034;4.7883539;-2.9769323;2.2880824;7.3703265;4.5157194;2.8771329;2.9371877;3.3342154;.46408153;2.904794;-.91556072;1.5404752;5.9445696;2.9589868;1.2541562;1.7384154;.95570922;3.6345737;1.6876804;5.4214182;-.53834808;1.5470258;2.6062655;3.8515995;4.7837868;2.971628;1.1750395;2.1840696;5.0169616;1.5626706;.70721036;3.5875545;1.0237609;4.0318451;.61359221;4.0867248;3.289855;1.4635136;.10148361;4.2323728;-1.1555054;5.1405449;4.9855132;-.21192986;2.8974924;.41443548;1.501749;1.1181583;1.6716518;-.25694147;.94883448;-1.579766;1.3560135;.0039230706;-.052421771;.74543536;-1.9919716;.91747719;.9773069;.090313286;-.1466905;.13042535;.24703269;-.14990155;-.4112412;1.0784812;.58558416;.46889767;-.38692069;1.1052197;1.0702475;-.8110919;-2.0515382;-.68979073;1.9231604;-.494003;-1.8121732;.63073421;2.2445414;2.5200114;.56257069;-.88552004;-1.3409016;.74432278;1.5684514;1.8314713;1.404425;.32601258;2.8634953;.39880636;.057499141;-.17121953;.67287415;-.9711051;1.0389582;3.2865105;1.2779522;-1.5507275;.018864017;1.2947484;2.1965384;-.79012901;2.5495522;5.1957269;4.0768504;2.6999688;1.5388408;.141193;.25097564;3.1752827;-1.0463198;1.6414737;2.7334597;2.1708536;.94767189;2.4626722;2.051656;2.2808981;2.4013278;4.2984118;-.16836731;.82919037;1.3913978;2.3502545;2.4028301;1.599143;-.34938979;2.2362089;3.8326144;2.5168457;-1.5406353;2.858202;.15558057;2.6931272;1.3036629;2.9778111;1.2790719;.29749703;.22868535;4.057363;-1.1242812;2.7827892;3.272444;-.25214767;2.7775223;55.95575 +.99062508;.076161936;-1.3780239;-.049573153;.41578627;-.6734705;1.8420823;-.21301302;-.43481487;-2.453464;-.20537007;-.59835577;-.35866016;-1.0035496;-1.9340001;2.0779376;.28477731;-2.0011895;-.52302933;1.0558436;-.11385949;.14618279;1.0149164;.46811673;2.3977537;-.081248119;-.59463787;-.065802827;-.2694979;1.0692087;.67262477;-1.6035794;-.98953921;-1.0112882;1.5887532;1.0392233;-.14596891;1.1503679;-1.7462472;-1.4335496;-.99321693;1.1333909;-1.5092584;1.0487292;.62853366;-.48722917;.51481009;-.015005755;.21587823;-1.7364374;2.0887764;4.2099719;-1.2783723;2.0552723;4.3961649;4.5439982;-.28020772;2.2793059;-1.7969562;3.2194963;2.7454848;-.58337897;-.42684743;3.0912237;3.0476723;2.1362145;4.2366853;.54989982;4.1538782;-.3630752;2.2065938;3.281353;2.2079;3.6782336;4.0346885;3.0430386;1.391302;3.3293145;1.0274543;5.8676229;5.2103481;6.1173425;5.1889915;3.9014978;1.2505895;4.8007936;-2.1528368;.15892659;3.190872;2.3857961;2.1199007;-.18480724;.02172637;-1.5677463;2.8970311;3.7760828;4.0451369;3.3024974;4.5480766;3.2192347;.22586866;1.5429957;.51494414;1.3537153;2.8716953;-.53555214;.10361937;-1.5452623;-.27278298;-2.9684796;1.0490412;-.86017895;-1.1334925;-1.1988935;-1.3901207;2.9621859;-.55415243;-1.2002469;.44086531;1.136512;.11302713;-1.4902893;1.9819614;-1.3779101;1.8226594;-.48858774;-1.8481938;.42966866;.89680034;1.2140099;-.87323284;-.5612064;.51198894;-2.6000807;.085741706;.94597495;-.14188235;1.2698179;-.94856417;-.48940563;-1.3834862;.48888928;-2.4558613;.055160962;1.6289684;.4587898;-1.7145716;-1.0552849;.86210406;-1.0882211;2.2884524;2.4309909;-.77781188;1.4915496;1.9241158;2.1546783;-2.7566099;.064971171;-1.1219095;2.5665448;3.4263425;-1.8545936;-.28714836;2.2408521;2.7561083;.9685992;3.0813448;1.8161905;4.5468221;-.7047075;-.049042035;3.2294407;.92205554;3.1521974;2.5480871;1.1197119;.18102175;1.8532884;.80993789;2.8345816;5.3132992;3.9275014;3.6523285;1.5493124;1.4742546;3.7006102;-2.0770521;.47199109;3.8720386;2.4793913;1.9139963;.069161288;.050056387;-.34971988;2.3744304;3.0328646;3.1690681;2.7440023;1.9761847;1.9259735;58.322327 +-.071571954;1.1516308;-.55040729;-.39551014;-.94049466;-.70794362;-1.085096;-.11443271;.8360886;-.99683928;.36200309;-1.3280665;1.2294362;.62845933;-1.5484985;.44394243;-.32966501;.56835407;-.14905368;-.064881787;-.17740911;-.19052392;.78822964;-1.5834094;.48219848;.95050883;-.14685112;1.2476155;-.27903247;-.24555857;.05157603;-1.3815522;.12316894;.092946589;-1.917313;-.2453336;.02085498;-2.0958924;-1.7866796;.2915979;.36478692;1.4410373;.26488632;1.2671599;.005887941;-.80708051;-.76423335;-2.0368953;-.97277671;-1.4668655;3.2165365;1.238996;1.923974;5.3576193;1.8160802;1.7736882;.30691442;.14539266;2.4868762;4.8024578;-1.1756953;-.4071483;1.5306439;2.3800552;-.42347747;5.0375729;5.5853667;-3.0645711;2.9688187;1.5696379;3.7104354;4.0911832;-.34463003;-2.7299826;4.4253793;2.7097714;6.3361983;-3.3279562;2.6670792;2.7594969;4.6148109;1.8896679;4.7487087;.84298182;.25263184;6.8762436;-.26645961;.6558491;.25410929;1.4778197;2.9111955;4.2077899;-2.6900456;1.3057197;.32396206;-1.594741;-.73071021;2.9070323;.44715524;.97487837;-.89987183;.94735104;-.80450088;-.91327363;-1.4243884;-.29582393;-1.488845;.73161471;-.33762267;-1.327307;-.27553207;-2.1154714;1.4057509;.63192314;-.9629879;1.794026;-.61919194;-.26593739;1.0682861;.090764269;-1.9668535;.49763221;.87655467;.16766396;-.9108578;.32199433;-1.9955252;2.3763475;-.82408172;-.19057514;.18213762;-1.8747473;-.85926408;-.56302476;-3.3482449;-1.2182424;-1.2438335;-.14205466;-1.3062518;-2.2449279;-.57754111;2.7264731;-.54823458;.60716665;-.60657269;1.6247805;-.14050198;-1.9443384;-1.5922842;-1.4270787;2.6960647;1.4291515;-.40930331;2.6826992;.65850776;1.9140975;.032039531;-.033557191;1.9916675;1.9583137;.020433247;-1.7238917;-.56025046;.95800155;-1.0277075;4.5651531;5.3318691;-2.6894045;2.8071566;.066638872;4.9402843;3.9429421;.49408889;-2.4194732;2.3847656;2.3037453;5.4974828;-3.7833626;1.2173361;2.6951017;2.3880508;1.1458442;1.965742;-.77630192;.79715848;2.8860693;-.5259546;-.55345571;-.70977587;.97325522;2.0027168;3.9264941;-1.8505977;.79474074;-1.7934272;-1.1671392;.31513453;1.7883837;-1.545151;-.42302322;28.706005 +.7535879;-.98649877;-.73053646;.16449273;-1.8396913;.95623076;-1.4101036;-1.4765242;-.39999312;1.6938196;.60371637;-.078254089;1.4812669;-.2086302;.13445818;.53350824;-.25748497;-.43250102;-.37472895;-.17486545;.9161821;1.0711682;-.83952236;.44134369;-.55451006;-.73276919;-.84194952;-.27797323;-1.298173;-.13312484;2.3473341;-2.2168715;2.2451856;-.34102839;1.7874557;-.92488581;.95600319;.77530015;1.5153579;.62802017;-.085982859;-.780402;-.79103887;.43139061;-2.2008226;-2.3327055;-1.013809;.34709725;-1.0412753;1.1191807;-.054667752;2.4279315;.78409135;.89511192;2.0482252;.7091459;6.4182768;1.834399;4.2750502;.098044559;3.1582096;3.0826802;2.3940136;.94012392;-1.1735804;-1.5862011;7.2773275;1.5050023;.065519087;2.3490119;1.2184362;1.430571;1.976159;-.71673578;-.20072429;2.2128835;4.0782266;1.2729664;1.1939825;.88509339;2.7914898;.26238215;4.6801205;3.3047125;-.89755642;1.4575191;3.8996825;3.3217366;1.8299314;2.1306455;3.3264368;.49930984;3.8491604;2.7028115;1.9302619;.99330401;6.230979;.61762446;5.0315228;4.6465583;-.23212047;.3533788;.3894892;-1.7151903;-.83928913;.54628968;-.22565262;.38119504;.81532383;-.30447748;-1.2090374;-.82233173;2.6346197;.12382631;.13204004;-.19174567;.59566337;1.5691143;-.31331754;-1.2694677;-.39907575;.62630683;-.39281452;.36356229;-2.4714925;.3648684;-1.3497012;-.56911415;-.15899318;-.27947113;.65480334;-.81956005;-.21674556;.13634907;3.9686444;-.91205382;1.7325375;1.3688005;.50199455;-.064426593;.70578814;-.67049485;.1589102;.018692236;-.79266918;-1.9882387;.086892746;-1.3092781;-.13859972;2.0092061;-1.1194543;1.484271;2.2271621;-.010086888;1.3518603;.98928386;6.3655167;2.1582317;2.2000523;.45746964;2.8140473;.81137097;3.4905415;-.81424797;-.76709414;-.77088857;4.9663587;.033642795;.62011743;2.8618877;1.1695818;1.0204352;.60386819;.026714217;.74261981;2.8447721;2.6981328;1.6810694;2.0313427;-.13582286;1.9466435;1.4533848;2.2966557;2.3075523;-1.6347269;-.022116732;3.8052793;.57263672;.30820295;4.4907355;2.1440563;-.87153429;2.9414468;1.3377652;.33308336;-.45004717;3.1985011;.02186965;4.9109297;1.3043782;51.842793 +.81935889;-.58775532;-1.0491496;-.098546945;1.8392475;1.7410718;-.14547496;-1.3502263;.18650195;1.4588083;1.7882278;.25530896;-.098794326;.47638589;.27054256;-.99475211;-.66011769;-.45224062;-1.5273671;.80564398;-2.2769213;1.074281;-1.9783794;-1.8456111;-.1744075;-.86935931;1.4659623;-2.8323698;.062080123;-.9316327;-.069214828;1.1980284;-1.9902128;.56411147;-1.353663;-.43806452;-.86858213;2.7243638;-.35180262;.62772363;-.017830029;-.17721468;.31128877;-.37916964;-.44985494;1.7419789;-.38311714;-1.2090209;-.78792578;-.3054474;-1.6516777;.56298751;3.4850953;3.7558548;2.621877;.63646942;1.358678;2.5641112;3.546201;4.350131;2.0707881;2.8112838;2.1206439;5.2938328;5.1890812;.47688696;5.6416698;6.3252125;-.0013496102;1.9302335;2.2432985;3.206233;3.1739807;4.3251915;-2.8024726;1.8820677;2.2648089;4.9117713;1.1515075;2.5451689;2.4591179;4.3206944;3.502357;6.1583557;-1.3578365;.8425712;5.5187654;-.1962792;-4.7057242;-.45346797;2.2080705;1.1824528;3.9025183;2.6205728;3.5355229;.74781108;-.24278469;3.4545636;1.9935931;4.4200964;-.30569062;.78058571;1.0572683;1.1189272;.94209868;.61096072;-.61588073;-1.3506376;-1.0128752;-.17891692;1.2891859;2.1519926;-.98822522;.88447726;1.5152481;-.48584911;-.47813255;-.68721402;.30772284;2.8466508;-2.7725823;-.20522234;-1.3073592;-1.3464317;-.093671717;-.92970401;1.167516;-3.1974771;1.0066763;-.68468624;.096365966;.80979282;-.20520473;-1.3043011;-2.3060451;.053715672;.66236961;-.031285919;.25471991;1.4254813;-.46413797;-.33278337;-.81297439;-.25404179;.8299644;-.013746064;.066540599;-.88386792;-.4205521;-1.0156186;-1.8230274;.16214094;.98773903;3.3037586;2.6047442;-.75617844;2.4181554;1.4653528;4.3500757;3.5965319;2.1849346;2.122859;2.6671679;6.5421753;2.9765906;-1.1911669;2.0452356;3.4807963;-.59024864;.57209849;.53909004;2.1882191;1.536855;3.8231554;-.17464769;2.4966116;2.5549922;3.6258137;.36218944;.61803412;.93272537;2.9118807;3.7314878;5.0993648;-2.8797371;1.7447307;4.7754178;-.15785672;-2.3263364;-1.8466988;2.0203307;.66640955;2.757791;2.2896683;2.4586768;-.24290989;-.27356455;1.9322277;1.577639;4.5580521;53.607689 +-.51420987;.88838375;1.052611;-.60601711;2.4366117;-.87686634;-.34384552;1.5745881;-1.0205661;.24410574;1.3586193;-.11259055;.37089583;.070007049;.64047557;-.58528346;-.57261771;-.87713879;-1.6307385;-.29024902;-.26123887;.95115924;-.014358455;1.3488849;.04077613;.30775085;-1.4540184;.11483729;.8231824;-1.0500927;1.5015838;.88122678;1.7365266;-.067110479;.77517939;-.99996996;-.98554718;-.16990051;1.0118238;1.2132063;-1.4426426;-1.3104829;-2.1254134;.50230193;-1.0497794;-.7266534;-.25787741;.3045558;2.0625379;-.85798115;1.5328832;-1.7114496;5.7730103;1.8976232;1.6072502;6.0795784;2.3336141;1.5640017;4.4156537;3.9160235;3.6861036;3.2004976;1.6988454;2.0998151;5.6268725;.47714391;1.038877;-.40772107;3.1249611;.61414993;2.0038092;2.7174244;.7537176;4.8098078;-.37066627;3.2895658;2.4231853;-.29303703;1.9402492;2.9218199;-2.222816;3.7815664;3.789454;4.7976637;1.7991071;.29286826;.10028394;2.8703647;3.7769961;3.5992756;4.3768311;1.5849767;2.2574015;2.2209127;1.8060646;-2.2663505;1.1765063;1.3241752;4.30056;3.2078733;.58099782;-.094006218;3.2374578;1.398101;2.3519022;-1.2539958;-.8978188;.27725136;-1.4994806;-.55128711;-.61682409;2.1832149;.68403357;-1.14571;-.57751024;-.50528407;-.49383631;.76972878;-.23515971;-.65102106;.97191;.21808206;.60921061;1.5065987;.025046842;.077141792;-1.965605;1.2740692;-.68823934;-.37417176;.40259457;2.8955038;1.9110258;-.11034116;3.4033906;.72161847;-1.4665327;.42007113;-.59222692;.19515583;-.1526203;-2.5803726;-1.7846256;-1.3722341;-.66724253;1.4986821;-.58249253;-.12071408;1.2481909;-1.283428;.73413354;-3.9798636;2.9939361;2.3008716;2.6186833;3.1790373;2.8295114;2.3019426;2.7735329;1.4956106;1.3076718;1.9394919;.37988728;1.3739413;3.6621478;2.275368;.37250778;-.57044935;1.7176754;1.0278986;2.2139904;2.0768209;.24732785;5.4155259;.23535678;2.084553;.66730899;1.1339313;1.874788;2.6246712;-.74130231;3.4503348;2.4811997;4.11905;1.9262962;.65106034;.10918525;2.9478037;1.5353897;2.9662399;4.4046812;2.0347178;1.7679451;1.4987618;1.6205604;-.048658531;.73630786;-.91923797;4.1390858;-.87064618;54.507084 +-.87503237;1.7088057;1.7884291;.10141215;.22520435;-.19500022;2.31215;-.93047965;-.74021012;-.039867096;-1.3685406;-.47660813;.35299143;-1.4854084;-.96623236;.52290452;-.739263;.20190732;-2.0556488;-.70596075;.77629471;-.70480323;-.84666985;1.0402163;-.96060467;.71423393;-.32090142;1.1399517;-.26153886;-.90466684;-1.1516557;-.82161051;.036547057;-1.2137079;-.42438862;-.2533392;-.64972484;-1.922348;.99731469;-.92713851;-1.3344634;-.74707198;.4329977;-1.0794768;.49057445;-1.9225384;.20934264;.24563067;-.23975646;.60100079;1.9119056;2.8872035;2.6764052;5.9342999;2.9598174;1.0355135;.049307033;-.45411512;2.1218781;-4.3361797;2.1903975;.6577099;1.3548416;3.447547;-1.4280654;-.83091098;3.2155368;-1.6895528;.99653918;2.8194935;3.2085581;3.1645818;1.4842963;2.5921128;-.37880668;1.8966789;2.2765894;3.3379149;3.1203659;.048899148;.70224303;1.5803872;-2.2211964;.045775738;1.7109959;3.3994305;2.3191028;-.51655328;1.3287797;4.0331249;1.7534434;5.0426941;3.5245197;3.5371084;3.038528;3.7546542;2.5300415;-.1520841;.30802205;5.2588348;-1.8686041;2.225641;-.49834111;.46408981;1.842064;-2.2785361;1.6699948;-.71631676;-3.4740052;-1.8362011;-3.277401;-.1743487;1.5429326;-.17834088;-1.9008163;.66090691;-1.0938692;.5170722;-1.2598178;-1.6375663;.24952441;.27677053;.44453642;1.5483714;.25608054;1.1343672;-2.7046225;1.9149572;-.77445775;-1.5003802;-.028395046;.59899455;.22798707;-1.4192241;.05177616;.63273066;.20213865;-2.8768625;1.1172981;1.0937063;-.070741773;-.97710615;-.17176957;-1.2861218;-.42692721;-2.1939168;.51307708;-.98766571;.47812486;.22814757;1.6137489;1.5294452;2.2992685;4.1903858;.43389022;2.9253304;.65936583;-.21210304;1.5515599;-3.7468891;2.7990806;.40332317;.6890651;2.9053464;-.85697788;-1.2124066;2.643615;-2.3741958;.85530734;2.2211294;1.8348699;3.631264;1.3779161;3.060622;-.5523532;.080172218;3.8276458;3.5362601;1.2966042;-1.7447335;-1.1583534;.61488765;-1.3038435;.44803247;.04059393;3.0512273;.96134734;-1.1742609;1.0667262;4.3500748;1.1513797;3.3618381;2.2386963;3.6911497;1.864143;1.2476727;.42349201;-.73675328;-.64213675;1.8746816;36.209259 +1.3079001;-1.3409951;.54254663;.25425801;1.9493243;-.37451768;-1.1564108;.36418152;-2.2595608;-.81468588;-.24295723;.65164518;-1.0627811;.50397038;1.1558568;-.59925252;-.37162209;-.52223164;-.040518533;-.11861069;.85272682;.35336637;-.80611515;-.63079488;.710495;-1.0462519;1.9520289;.16470581;1.6229422;-.53754342;1.5994036;.29096887;.36295456;1.0256848;-.85854095;.063065775;-1.3496543;1.2073795;-1.4142781;1.2473871;-.3490155;-.36792588;-.12257424;.52141905;1.6733946;.26175392;.51314241;1.3619844;-.33326495;1.4256827;-1.5895274;2.4470987;-.23040849;3.7446401;4.7422252;-3.0312748;.59494966;2.1654506;.79197323;5.1040468;3.1334374;3.4191353;.31860802;.20142038;2.0835962;-1.1349872;3.6463423;2.4718473;.35392991;-1.7780269;-.72542262;3.3819408;2.1880405;5.1593323;1.1376954;1.9845216;2.9744618;-.37057734;.038141228;6.7955222;.059726499;3.8307872;1.4884906;3.9625213;3.3610728;4.2250981;1.0913945;2.7523935;1.7674679;2.5684135;3.1021101;-2.7581112;3.839478;2.3170469;3.2658899;1.6583443;6.6097713;2.8521919;1.5956821;2.1844397;-.24415265;-3.7074838;-.69175166;-.46846193;1.1936457;-2.8095055;-.99410331;.11685151;-1.1426097;.46811458;.033424132;2.8602569;-.17642559;.79392207;.63927102;-.82913631;-.0017838728;-.52064919;1.3325616;-.34311971;-.27897337;-.22009636;.80604976;-.29670465;.85487372;1.4171429;.75655705;-1.1023871;1.0090072;-1.1938034;-.62333924;-.20736569;1.1575422;1.501665;-1.9292256;-2.4784887;-.72306776;1.748405;-.17624551;.69843519;-2.6608107;-.89986247;1.9276055;.49118155;.66779923;-.14023249;2.028337;2.6256053;-1.4326808;1.016407;-.64540434;1.8649315;-1.6318696;2.8146534;3.8520195;-1.6192285;1.9811549;.70038027;-.18552026;2.4222655;3.3093057;1.9810375;-1.5147141;.9352116;2.6193471;1.0477097;.9345575;.25628841;.30873892;-1.1086534;.17344624;2.7011487;2.5800276;4.4167633;.52250469;1.804868;3.1943119;-.49653572;.032540355;3.9111993;.055690423;1.5914534;.94599062;3.1026731;1.1815522;2.6894734;.37068504;1.7456198;.40630218;.72199249;3.1267169;-3.2539477;3.3943644;3.4438798;2.0642695;.74140686;5.8947701;2.346334;.31825936;1.828941;56.305836 +-3.1004713;-1.9472492;-.62455219;-1.0332842;-1.0890864;.95241195;.13739151;.5311228;-.46805456;-.26101997;.40635654;.83528924;.38048023;.35547867;-.21342123;-.0037648818;1.0702105;-.22841224;.38589731;.38139275;-.63358003;.47379097;-.58705902;-.39453518;.8990528;-1.3120961;.58948755;.5474087;-.071083233;-1.4235665;.63095868;1.0957476;.40229028;1.1959958;-1.2213061;.07719513;-2.0220447;-.53820324;.47883967;-.98097032;-.65068692;-1.0824959;1.909676;-.16006841;1.0145503;.38979736;.45077243;.51439804;.61289245;-1.613156;5.5437965;3.9735224;-1.8604709;1.4198085;2.6618998;2.0766199;2.4621398;-3.0070753;-3.5765264;2.5870714;1.1846937;2.7725828;3.0780818;1.1639494;3.1590691;2.6848941;1.6351491;4.0128732;1.5157895;1.9780676;3.4630532;3.8237162;4.6083732;3.7514172;-1.1727563;3.314635;3.4599254;4.8841801;5.9490013;2.4119325;-1.0925639;2.726043;4.2791929;6.7714076;2.9032786;4.0291986;5.3350744;1.6942295;-1.2281551;.73519212;2.6676471;1.9447111;1.638085;1.2532542;-.32699272;4.1178889;1.9682168;3.9857571;-1.2857838;3.4705224;-2.0274723;-1.1592491;-.017290382;-1.0798808;-1.7834005;.85110539;1.8462989;-.78916001;-1.3630582;.077411599;.72553122;-1.3829985;1.4989082;1.1352605;.21570918;2.4193759;.21660441;1.2581404;-.0455896;-.68920672;1.0277088;.18010588;-.48820481;1.383561;-.072542399;-1.2030653;-.5434339;-.92036015;2.2458038;-.15884252;.74545729;.53151107;.15945971;.65801203;-1.2750074;.72284013;-.6559642;1.1906345;.46911332;-.7136566;-1.1697158;-2.3440919;3.1135683;-.057049692;.12468516;1.4419588;.51812011;1.5467154;-.49760908;-3.1248589;2.8753991;2.5552378;-.48539266;2.46716;1.6449758;2.245728;-.11871606;-.5900839;.091850162;2.2704422;1.5434158;3.1110933;.7327863;.61369473;2.0134735;2.8464007;2.2532318;3.9541597;.47384584;1.0938084;3.0798814;4.5556297;3.033632;3.0061722;-1.8296432;2.0210185;3.4697039;4.5193806;3.8050125;1.4347812;-1.96434;2.8677969;2.3189874;4.6647992;1.3395723;2.7372601;3.7395947;1.0136813;-2.8874247;.4999254;1.8386092;.48700261;2.190557;-.55030495;1.0291575;3.7117789;.32295623;1.783651;-1.9405357;.20115702;55.80088 +1.0413067;.085545175;.23334858;-1.0250448;.21426772;.050849158;-.63362247;.93128353;.069980644;-.69777983;.16427596;.10761487;.72171289;-.60489732;-.62732255;-.70773649;-.84545487;.78807187;.5582484;1.53214;.8265444;2.077702;.042791598;-.26944625;1.927677;-1.2521547;-.25088748;.82891786;-1.1306343;-.43600714;-.59303099;-.84338319;.054469716;.41307768;-.47705141;-.98962933;.49383932;.97049201;.27445495;.90352428;-.67192805;-.85790187;.25192106;.16249007;.78327852;1.1077126;1.1366057;-.740511;-.5945614;-.63318527;1.3035005;2.6876724;8.9361515;.4249396;1.5658599;1.7227781;2.4356687;2.0451407;2.4915454;2.3300011;4.2982559;3.2391629;.70038295;3.4364166;4.2616568;3.0450993;4.4584694;3.1003759;2.7090955;1.3493209;.8491264;3.6088359;4.7989974;4.9041367;1.5827702;1.069044;3.4005463;3.1072223;1.6320982;4.1635647;-1.7640842;2.2846234;1.307259;1.5593297;1.5972116;4.0744562;2.1725872;-1.4335364;.90503961;2.746767;1.7798045;-1.343415;1.4319057;3.3829424;5.7895341;2.1964648;1.895276;4.0214057;1.9170111;-1.8164433;-.04199037;-.46951476;1.1199163;-.96563971;.022388009;.53116274;.42885387;-.15588784;1.0696889;.61643738;-1.0882931;-.67701632;.83003813;.38593218;-.028852995;.77463394;-1.3264706;.329427;1.0031407;1.7140894;-.40476862;1.8939513;-3.6375651;.038239371;4.1928072;-1.1486882;.46499503;-.24133717;-1.3943367;-.91014874;-.096480973;.10833152;-.31814796;.63489795;-1.0320455;-3.4691758;-.61147684;1.5961918;-.47184274;.55786318;-2.1315308;-2.3353202;-.18636486;1.0193285;-1.336001;1.3742533;-.089355603;-1.725107;.18707266;.63218635;3.3559387;3.5635948;7.6406455;.45931491;.59871566;1.1760968;.44717711;2.162133;1.4764625;2.208328;2.6192071;2.2225235;-.76706094;2.9181609;3.7697926;3.0305569;2.1760669;3.1137497;2.119729;1.3865567;-.049537506;1.5904415;4.8963752;2.4492114;1.7377692;.82124239;2.3773422;3.5275607;2.948904;2.9201264;-1.1773422;1.3224989;.75243145;.091120161;1.3130102;1.792881;1.3198526;.10962135;.21607594;1.6065269;1.1061932;-.35328183;1.7970701;2.5995612;2.8809516;2.3129466;-.38716224;1.3405027;-.22946328;-2.5859835;67.810242 +1.410651;.60269409;-.66841394;.1936775;-1.4215587;-.093343459;-.039502531;2.9011803;.087385602;.47657475;.93954808;-.89471632;-.72408867;.75618345;-1.4399766;.8732118;-.95613778;-.38357878;1.8056389;-.85432696;.86064756;.81405389;2.4780569;.32350102;.95475858;-1.4992771;-.57496911;.51038945;-.96115625;.96343648;-1.7000661;.060821906;.63033628;-1.5734967;-.27851924;.3597551;-.008971408;2.0544877;-1.9455549;2.0795622;-.17190136;1.4506724;2.0718763;.018811667;.20678256;-1.0812482;.37485322;-1.5903141;.28620628;.02688219;-.46041974;.18459032;-2.0801051;2.9765236;4.1964493;2.4415684;.40921164;.76782322;2.839957;.66830945;3.9861937;4.3546867;1.4409581;2.5881329;1.0294133;2.6130178;5.8487978;2.8353789;4.3859072;2.674541;1.5096602;1.8747348;1.4275339;1.9247561;1.4417549;-2.4394212;1.8813436;1.6788551;3.6377573;4.3373752;4.4953842;-.68662447;3.6200802;2.4724097;2.3575366;-3.7728891;4.0349879;4.6488008;3.8059602;4.5255017;2.5436318;2.8112767;-.5012067;2.1681702;3.6679296;-.57863557;4.3183126;2.2500226;-1.8132683;4.6783872;.43376961;1.6641604;-1.0897429;-.83430672;-1.7903359;-1.8726799;1.2207808;1.872607;.12908597;2.0814633;1.733977;-.1567055;-.552396;1.2613527;-.50221795;-.89840025;-1.8130265;.1692552;2.8876395;-.19465214;-.49022532;1.8999648;1.9093664;-.89964795;1.3688478;.61751038;2.0587692;1.2438791;-1.8094996;-.43048581;-.99931395;-.45934099;-1.1607071;-.67384726;-.64051431;1.3231585;-.73180616;-.48547027;-.37586614;-.37236685;-1.2521292;.13529627;2.7275255;-.29501021;-.7562173;-.57182324;-.5030514;-2.9443052;.79976624;.48905936;-1.2432311;-2.3351052;-2.6239376;3.0729003;3.9963522;2.1827323;-1.5039794;.72645706;1.2903312;.20851545;3.1153178;2.8131623;1.4987446;1.6807966;.31905934;-1.0698359;3.8262424;2.0682349;2.7120342;1.735098;2.5532374;.31912613;.8753922;.88635886;.71859229;-1.1408296;1.5119473;3.12884;2.7227654;1.6148214;4.6355152;.66824716;2.4918146;.32769543;1.8135756;-2.034646;1.9660536;3.1264927;2.2140393;4.705936;-.96843672;3.2357635;-.79652816;-.14983779;1.2469062;-1.0853512;4.0111818;2.9720404;-3.1729221;5.3089352;55.63485 +.52664113;1.2098384;-.15236682;.071466066;.44730431;-.045120735;-.64869535;-.11663163;.36146244;1.4102348;.30444121;.4073483;-.45881861;-.91988164;-.87713796;-1.4796543;.4242385;-.25386727;-.40954581;.248005;2.9414392;-.67997909;.86960965;-.19576566;.39147869;.095121056;.0865409;1.1411215;.81011528;-1.9747264;-.29391596;-.39590737;1.0901753;-1.0821757;1.8721313;1.8379976;1.162986;-.85473758;-1.5489733;-1.1376399;-.76105607;-1.0382812;-.28468749;-.42914039;-1.7208072;-.53735179;-.57223552;-.083473526;-1.4243933;.51214796;4.3770475;2.5940404;2.2247524;.053487338;1.4889814;2.3167076;.63133293;.64185667;2.2213414;1.3801063;2.2626762;2.2793994;5.9001951;6.7461305;1.5886401;2.0279121;.14108621;2.2511055;5.2962232;2.0543711;-2.461355;-1.0856615;4.4276972;1.7984048;2.1111672;.3090055;.56684041;.66180551;1.8090427;1.3626971;-.28581357;-.31885695;1.2572879;-1.0455041;1.2250392;3.528888;5.6432352;.44103897;.68243635;-2.0926962;3.1265824;3.8503881;4.1129622;1.7574747;2.8903108;2.9344621;-3.7598903;1.706192;2.2028012;8.1251965;.75213814;.65179193;-.69722205;-.67514688;1.8812624;.48679844;-.32954794;1.4993085;.78158778;1.8931299;1.8102118;.69458818;-.48989812;-.88926888;1.317415;-1.2966759;-1.306989;.41693896;.55487567;1.0836961;2.8231244;.56234217;.36282718;-.35618415;-.29652366;.70009822;-1.3356369;.65531957;1.6052411;-2.3762691;-.77751487;.37888426;.92449945;-.04616278;3.5884483;.44969398;1.6910925;-.36859679;-1.8015248;-.17241564;-.12626652;-.63139707;-1.3004376;-1.4338008;-1.2108197;-.70272428;.32330334;.19500452;-1.7847279;.21383841;3.0500121;4.4166169;1.2059413;-.42809758;2.1554055;3.3575103;-.015123706;.80640173;1.6237879;.57508177;1.7937163;1.5809841;4.6666093;5.5282197;.51958174;1.0247034;1.0575635;2.9153659;4.039166;-.03612911;-1.4905289;-1.5867569;3.6544826;1.0207897;1.0590557;1.5925642;.21706109;1.5351052;.67652684;.90024114;-.94524217;.08734519;-.82180679;-.3660506;1.0477542;2.6638761;3.3601213;1.2951323;1.244872;.34141785;2.9676938;2.3292837;3.3572974;-1.3176433;3.8251474;1.5041178;-2.5018313;2.5068111;.89365762;6.5381975;45.536156 +-.64731902;.13212435;-2.2288518;.15248524;.29925168;-.89888036;-.67308444;-1.1309149;.066688076;1.0109086;.4648692;.77591169;2.0040362;-.54283595;.065949082;-.29946253;-.65296108;-.90208077;2.0327413;.76280129;.54831719;1.3782175;-1.6387995;1.9315081;1.7366904;-1.689885;.45408347;-2.3717525;.55966693;-1.6669796;-1.0857099;.53505236;-.36692703;-.30669999;.52360046;-2.5773194;-1.1088793;1.9971873;-2.2931798;-1.4516311;-.058660649;-.45371157;-.93437123;-1.3904127;-2.0532181;-.27708668;-.21169338;-.32200333;-.26127341;.82968843;-2.7904372;-2.522141;2.6340342;.85526961;2.6415205;2.8019817;2.8115001;-1.2456886;.50497788;4.2132931;1.09831;3.3560376;4.6675682;.87505955;2.2498708;1.4221693;1.1873879;3.3364582;1.6986498;2.0143139;.33835626;-.81232208;3.5151362;1.5574532;2.3593054;1.6235939;2.9408026;.92457092;.63945079;3.3221774;-.4191649;2.858422;2.6807406;.7649951;3.3809252;3.873075;-.77141649;-.8014279;3.0102155;3.8296275;-1.7609986;5.4183545;.7423718;-.086720556;1.6712056;.39246815;-.55285096;6.2705889;2.6464977;.25081229;-1.075316;-.0050486838;-.54038042;-1.0104229;-.96676761;-1.1035599;-1.274093;2.7999711;-1.6592207;-1.102518;.28452662;2.3759081;1.0009751;1.288638;-.59733266;-.53305143;.1492708;.1698041;1.4148102;1.4663391;-1.1093122;1.2900258;.17303106;-1.2513231;2.5218072;-1.5520023;1.3181092;-3.3631988;-.86298805;-2.435009;-.028783364;-1.4643809;1.174123;.49734017;2.0624502;-3.3170412;-.93313062;1.3357832;-1.873999;-2.7005608;1.317436;-.2853491;-.52298981;-1.7549547;-2.161592;-.4348014;.51043248;.43271843;-1.6135976;.98681557;-2.2267435;-.53751445;1.6398698;1.0013494;2.6206279;1.2408091;2.2649987;-.47404143;1.3020777;3.4888787;1.0872601;2.5943444;2.6587696;-.38278505;2.1829176;.71740013;.78811401;1.9357923;1.7667905;.16420528;-.52386093;-.92461568;3.4063449;.63678384;1.2373104;.62291425;3.4498432;-.62451279;1.5083213;1.5477823;-.11027492;2.6441872;2.8858709;2.2217686;4.0115066;2.9890389;.19319263;-.94314885;1.2223754;2.3150461;-2.7676511;4.6800461;-.29993564;.034167312;.5685156;-.24766859;.58432448;4.0204673;2.5525608;-.18887284;24.935947 +.558523;-2.4509621;.70563793;.4044705;.3222436;.61381429;-.12010659;-1.4773625;.62897211;.57565254;-.79689866;.6369552;-.22796962;-1.6185845;-.76577586;1.5644512;.16888779;.93910003;-.24788645;.97184253;-.21212688;-.14766088;-.064316303;-1.6600667;.061646435;-.69824284;.31170726;-.32864079;-1.613066;.45428246;-.44390696;.9669677;.42508987;.21875536;-.46655342;-.22453345;-2.0646675;.63859349;.056356166;-.015139194;.29333672;-.16124754;.70540428;-.089603104;.88630515;-.99302691;-.012975166;-.059576675;-.64405096;.58546072;1.2040942;4.4298387;2.1157579;5.071115;3.4929705;4.0938234;3.3212528;.096435621;-.83125013;1.7653748;4.1141934;1.585469;4.460743;2.2422001;1.1826105;5.3340073;1.7628148;-.69987053;3.7358859;.78360093;.62857866;3.0047638;2.3743792;-.92427158;2.1856923;5.2172914;3.2303443;3.3235168;1.7715338;.39006948;3.2031348;.15645377;2.6827607;.50208384;.17917235;.45545855;-2.6479468;1.1352139;1.4516555;.41216448;-.31314865;4.8487582;3.3373702;.42557341;3.6381798;1.9868307;3.378896;4.1471939;3.4259105;-1.7653108;-.34844667;-2.3285918;.52020228;2.0182548;-.4932684;-.12140291;-.71229595;-1.9019631;-.016380616;2.1119957;-.19962128;2.4907129;.13083616;-1.2831788;-1.7709619;1.0224129;.76019448;.85459578;-.46563226;1.2425014;-.3108249;-.75131994;-2.3042829;-2.2715721;-.086038597;-2.5810299;-.33285144;.16763146;-2.6352205;.18147929;.19870806;1.693572;-.24424544;-.54018372;-.06811744;-.076776467;-.5137077;1.671495;1.0699955;-1.7058207;.65342867;-.092836984;-1.0794102;.049489263;1.5496774;-1.0089325;-.52128506;-1.4064113;.8380515;-.7639662;.53032529;2.8614643;2.4487338;3.8763061;4.4234223;3.1815653;1.5321147;1.0935045;.66290092;2.6607132;3.6206174;1.4213099;3.5071259;1.1909729;.83485556;4.5564198;.70455348;-1.3857467;2.9463239;.71641082;1.2252383;2.6594589;.79495865;-1.7650924;1.2914014;2.9783404;1.3768198;2.6627989;2.7950189;-.49647069;2.4232872;-.67856371;.20338637;.19554439;.32747513;.92692578;-3.9258435;.68325484;-.70026213;1.5447848;.087634973;4.4778242;4.8002486;1.7455568;2.3241818;1.2544404;1.6487144;4.0510297;2.6851289;-.35046467;48.486435 +-.7261582;1.1770526;-.3675395;-.26684743;.04171538;.16848554;2.562386;1.2252516;.83137566;-1.0297691;.18844824;.53180474;.8117373;1.465911;.65588307;1.4333375;.15003081;-.1311501;.38036796;.43977666;-.23200423;.48723799;-.14820346;.64920467;.74595475;-.88656849;.55914211;.75113642;-.06445919;-.85793477;1.590121;.89145035;.25384241;.0014660833;-1.386266;.28898263;-1.1114916;-.033869341;-1.7276019;-.50093162;1.0323584;.29942688;.46327275;.19175601;.060869697;-.34144005;-.25975165;.86692405;.98361158;-.8131693;1.0887918;1.7732425;3.6602964;4.7887702;4.2999811;2.5576854;5.0067534;3.6717169;1.2962881;3.8797398;4.3385143;1.4829199;1.077112;5.309104;4.6778226;.84033167;2.3581765;1.1453637;1.1963676;3.105269;.45388618;3.6972332;-.28442973;-.29328069;3.6969686;2.7632823;.020463824;2.7410874;5.3012443;.53862959;-1.9468516;.23621699;-.35777763;.76605016;3.9036024;1.7867419;.12891251;-1.5737057;4.2196555;1.6088451;3.7912517;1.0717597;.48304927;6.3652802;3.8270121;.31361321;2.0370011;-1.1140696;-.11301097;1.6399488;-1.0115956;-.041516021;.44692513;1.1742746;1.0277902;.29931682;-.39999816;.6759609;.011817602;.047733892;2.1724579;-.57102722;-.75404137;.59413713;1.1196392;4.27601;1.2215451;.054867357;.31000319;.6643821;.046830423;-.38293391;-.11181341;.25665402;-.39475414;-2.5499797;-.74629086;1.2879252;.59433007;-.45617038;2.0743589;.97754723;1.6799514;-.1646598;-1.9683104;1.2549269;.60715383;2.0216529;-2.7902532;-.011146834;.18968597;.74802351;.5970124;1.2962338;1.1309137;.068505585;1.6008338;2.3014119;.32775071;-.90419585;1.1648799;1.1095977;2.9985592;4.3566914;2.7032244;.042875897;4.295013;1.8742793;.27712974;.43586549;4.165617;2.9153428;2.1569574;1.7236257;3.421432;1.5017483;1.1174001;1.2773231;2.933125;1.895385;-.58405101;.13421527;-.45527622;.7313841;1.9757123;.89202464;-2.3111327;.47154459;4.1103253;1.5021229;-1.3581468;-1.1868781;-.18006255;-.95904559;3.1604936;2.2727714;1.2954296;-3.1157577;3.8513052;1.6669545;.16475604;.66540658;.76981801;3.6330137;3.5898573;.48034021;1.0290143;.61293304;.030652488;2.5013156;47.887184 +.15681146;-.94120115;.14301068;-.28887862;-.63256615;-.27544862;-.56199658;-.84059209;-.88450414;-.039176852;-.098341487;-1.3945314;.65967566;-.87190568;-1.2816118;-.76818645;-1.3732247;-.45668501;-.35652074;-2.1529799;-.27821323;.88037992;-.0028013436;.88244551;.1502548;-1.1077974;.40180743;1.632643;-.28914785;1.7535605;-.32180294;-1.3760146;.14963512;1.2267898;1.6678048;-.45056364;.75081986;-1.4710557;.10218679;1.0326891;-.2106764;-1.5859754;-2.5669973;1.09633;1.2381688;-2.0990546;.1384045;-.046865929;.28971279;.63458127;1.3966712;3.1590083;5.1880569;5.0587826;-2.0456362;.79915786;4.9319539;1.4863887;2.5126121;4.9249549;3.8296614;3.1143215;-1.669986;3.4276822;-2.1295199;2.2989538;2.4719248;1.8748417;-.61684835;3.3324146;2.1144788;2.5889902;1.2018639;-1.2452841;2.6124253;3.4176915;.62374222;1.0667938;.70729953;7.7617483;-1.3817399;.75581336;3.4478145;2.7135329;3.2516532;1.7136368;2.0384517;2.4520659;4.0560513;2.6828527;.14169526;1.357287;1.5884455;3.016613;2.5837479;-2.854686;3.3417616;4.6622505;3.5898364;.88331461;-.90889472;-2.383245;.55376881;.38593608;.082434267;.24012472;-.42965537;1.7977421;-.91119355;-.90656191;.0020110398;.72287673;.74463475;-1.9536412;.15838324;.56056923;-.29118371;-.78730899;-.68622833;-.56438398;.76736647;1.7081198;-.82332498;.029677805;2.3984787;-.10808603;.56557089;.60865843;.87764454;2.3228462;-.53437883;1.2262393;.082008734;.43886515;.098379195;-.69864041;.67946345;-.45083383;.57503706;-.996104;.31014931;-.10090704;-2.0289686;.86016363;.56911349;-1.0696976;1.1951748;-.73140198;.15131246;.50988764;1.3276491;3.1946857;3.1872547;2.8742504;-1.812345;.58411467;3.3627374;1.6339462;.87796259;3.8218844;2.7915602;2.4713058;-2.5553558;1.2596843;-1.7973756;1.8444152;-.19973949;1.897072;-.47278818;2.0233576;1.6055375;2.5987966;2.1828442;.058075082;.96736187;2.1106844;1.4528548;3.3560188;.44300708;5.3588142;-.52425766;-.2638146;2.4481053;3.4184005;3.1508784;2.0812633;1.4669865;1.7542127;2.202142;1.2428679;-1.8125076;.54639208;.29429838;.83416033;4.187541;-1.7009321;3.3648541;4.7607355;2.8746181;1.0249631;42.102402 +-1.4301858;.56948137;-.50417286;-.55908883;-.58413988;-1.2686739;-.16052376;.24263729;-1.3417944;.79187101;-.33710542;.77642095;-.034908548;-1.7495623;-1.4828998;1.2529485;-.80066848;-.56606865;-1.4723063;1.9136195;-.66545933;-.36402199;-.1713068;.22262427;.86463517;-1.1563324;-1.3393285;-.19457959;-.33361864;-1.4526647;.064046286;.35583952;-.59475285;-.55532217;1.7605584;-.081174791;-.5512802;1.1858444;-.70407295;-.79319024;.12583576;-.075574867;.26425916;.82974678;.63277566;-1.256225;-1.0845081;-.64017403;1.050697;1.5493344;1.0644519;3.9156172;-1.3989432;-.71492344;3.8042963;.31865069;1.0107342;.9616515;6.2097645;1.2659596;1.1282111;-1.8959361;3.0288303;3.0642302;1.4915522;.54969776;.34742323;5.0065103;-.87279117;-.532269;.76491553;6.6020164;-.25451553;.22979753;1.9109143;.76244903;.54857171;1.293663;4.0137367;.99665558;3.2881627;2.8287573;-1.0132966;-.42925304;4.6218634;2.2658222;2.9167316;2.0839629;-.7024377;.95738024;.19722185;3.279263;5.123363;2.1076117;3.6929209;1.3185382;2.308212;2.0704432;2.8670027;2.1319673;-.83959544;-.15264454;.93387634;-2.1594124;-.99711043;-2.4244847;.90578967;.45851317;-1.1486143;.65080792;-.49631238;-.32617605;.31579304;-1.7157162;-1.8349696;2.1611805;-1.849561;-1.1822704;-1.2243626;2.1254992;-.47101682;-.020390725;-.1469295;-1.4032576;-.095033646;-.0042840755;-.56716824;1.4280961;-.94919038;-.37095186;-.53315544;.55510664;1.3162538;-1.4704303;1.4209933;-.21376584;2.4289441;-.98891044;-.069954708;.1589697;.34828177;.2585105;.427549;.12379278;-.78113794;.2762869;-1.0201279;1.5514425;.86685497;.48662126;2.3361874;3.3319836;-1.5410067;-.79134041;3.0411131;1.9724;-.89580226;-.69269305;3.8769779;.8345136;.62057525;-2.5039725;4.6097674;1.8542485;-.08228676;-.71331483;-.29033682;4.1552987;-1.4852238;-.33203492;.9460749;3.8368492;.22314093;-.28087097;1.5792493;1.0500476;.50277561;.94113231;2.5264246;2.0115254;1.4766756;3.6092224;-.72805613;-.58529919;5.3049874;1.2066883;.76049238;1.8671488;.43177488;.85591525;.046696097;3.0324438;4.0661688;.58857089;1.1740075;1.2047538;.98871475;.97320461;2.312181;.96021271;34.012157 +-.39983952;-1.1717731;1.047294;-.17393243;.66519946;1.3694046;.075872682;.53913158;.85210389;-.059564542;1.3064373;1.0333071;-.4039267;-.52775985;1.6118387;1.9463214;.17661077;-.064188726;-1.1566939;-.081508636;.31672835;.63056004;-.47334197;-.19037805;-.50769156;-.48619139;1.0425771;-.72937232;-.095982201;1.3518246;-1.0677261;.25386;1.826106;1.4572377;2.2606883;.55458885;.28347552;1.8090739;1.5026519;.10352232;-1.1611717;-1.5381413;.21113648;-1.1780514;1.1001945;1.0353644;1.1347839;-.74865603;.039575789;-1.4256175;.66816413;1.8965154;3.9379375;5.4649615;-.65360439;-.68135017;2.529922;4.3379564;3.4875;.6832003;-1.8252549;4.0924077;2.7883141;1.5919732;1.9287506;-.49086094;4.1957455;3.6185308;1.7180294;1.751577;3.1668954;-.88138378;1.5242043;5.4165912;6.2284288;2.884336;5.3493652;2.6845996;-1.6335555;-.45137298;-1.2242336;1.5688891;1.0852206;1.5154338;1.5080801;2.4919624;-1.4380159;3.3240001;-1.100343;3.2841778;1.9007424;-2.2180853;2.2895975;4.3364606;.10832035;2.6969197;1.7005819;1.9225253;-.70799708;1.7499563;.085973285;-1.0675462;1.4455528;-.26071599;1.3217918;1.6658159;-2.3021042;.95607418;.70917559;-.49706414;1.6277413;2.1313992;-1.2923418;-1.2079029;-.60429734;.87635499;-1.3419676;.28107893;.58759683;1.4211284;.91879147;.2204694;-.70791036;1.1981963;-1.2864099;-1.7169414;-.11623959;-1.6360947;-.30438006;2.5540807;.51169103;-.35181829;2.4550347;.51059633;1.3899572;-1.2117252;1.8428341;.81684554;1.2332765;.030205041;-.30690056;-.99896908;-.084179983;-.29007167;2.6541805;.54671293;.33451474;-1.2755095;.31880254;-.0082710152;2.4522495;.8404758;2.173974;4.2425313;-1.0259213;.07043834;3.0629766;4.6374345;3.0810411;.45137954;.033200577;3.8645043;2.640439;-.6835162;3.0321949;-1.7789934;2.5379977;3.3436308;1.5151731;2.3534133;1.9053545;-.064279146;1.4498718;4.0273242;3.4544635;.97740543;4.5057573;1.8206902;-2.9746823;-2.5079565;-.98037595;-.013254933;.73835957;.30622616;.67998356;1.949805;-.84339422;1.8797007;.85035783;3.6534176;1.2812918;-1.9048519;.55600417;3.3926566;1.6236019;4.7772613;2.056998;.54122472;-1.6494;1.7608705;51.48003 +.27201769;1.2263875;-.20744707;-.242888;-1.0016919;-.66322255;1.2102309;-1.7411313;.94950241;.041771296;.70699507;-.36178043;1.0178034;.70652622;.52489829;.0067771673;-.45060652;.028840519;-1.290575;-.1260173;.28517121;-.3661727;-1.1399369;-1.90005;1.3133342;.84679908;-.7858212;-.4779478;-.13598372;-1.1959113;.28333542;1.034045;-.055123694;.21968335;-.055738471;1.3723068;1.3227968;-.60100192;-.68810475;-.3996267;.64246517;.0026861064;1.1832327;-.12056229;.2159695;-.093488097;-.8449899;.27005729;-1.0090294;.48600936;3.12011;-.28220022;2.8369513;2.9341745;3.8877368;3.03789;2.7794111;4.8732228;5.3349686;3.2952032;6.6100283;.67769855;3.8893025;.40174383;1.2704427;4.5123715;.21298999;2.9955602;3.5883827;.84100807;2.0984378;1.8246047;2.2132752;3.5239666;5.250824;4.9419498;-.38967526;1.8798472;-.36940089;2.3908644;.66666633;3.1225193;.98170137;2.9487436;2.3061757;-.86024451;.36016309;6.2379656;-.45056111;2.5203755;1.0669875;.66674316;.048791885;1.6967521;1.0673877;.72167826;1.775937;.36428565;4.3532152;2.7746329;1.5193359;1.7672501;-.10669151;-1.0304372;-.5084241;-.67085928;1.8281929;-1.5235474;-.34171665;-.10198843;-.66158986;-.46633652;.36262065;1.4174966;.35164815;-2.0948946;.17827089;.30390963;-1.7300825;-.67136925;.68298596;-2.1908462;.22749472;-1.8078721;1.2421224;.85801607;-.21489953;.99799281;-.54652381;-.74779052;-.28653187;1.9019537;-.56838197;1.3404138;.074371524;3.0808625;2.3944144;.7806288;-.21341236;-2.6757534;-.03169347;-.68438345;-1.6795816;-1.2071604;-1.0931988;-1.6970426;1.0933355;-.71261775;-1.4000728;.56093448;3.6845691;-.92883891;2.214911;3.655386;2.407068;2.0312209;2.6936212;3.1433489;4.1822639;3.5669348;3.1840572;.66121465;1.7755164;-.56677377;.14526841;3.5018945;1.6302996;2.8503222;3.1365843;.014899369;2.441771;2.4624104;.90048891;1.6083047;3.3702674;3.5727205;-.92870814;-.20857415;.39518002;2.2169704;-1.1441025;3.7590232;.021268778;1.4593791;1.8093469;-1.1164172;-.23037061;4.2812071;.71451712;1.2868601;-.66731691;1.1962941;.91125542;1.6197608;.55749369;-.47534543;1.6806625;.063459665;3.6478248;1.3256068;52.413132 +-1.2865987;-.51150197;.85529774;.97968018;.88394409;1.1150777;-1.3584692;1.2809639;.072191842;1.1050541;1.1128113;.49112543;-.37924954;-.98386991;.4123176;.11939973;.97352809;1.0683697;-.68293136;-1.3044549;-.40477559;.74120224;-.95939118;-1.2391278;.72109509;-1.5713328;1.2495719;-.46332553;-.83489358;2.521657;1.706627;-.42209056;1.9099107;-.71565038;-.71328682;-.0074587925;-.63293779;1.576846;-1.7474144;-1.1132517;-.12692544;-.894871;-.34194085;-.41244173;1.4877307;-1.1082789;2.4838262;.54113197;-.81995445;-.89380169;2.7112453;2.7117827;2.7475057;2.7353108;.60725546;1.0116313;1.1929386;3.4687624;.15607357;1.7696838;3.7550311;2.5624619;4.2391143;-.00010671296;1.0068694;1.2267604;4.3211961;-1.1823726;2.085187;-1.5584025;2.6638181;.69052839;2.0477214;3.7634962;3.0331571;1.6714852;2.685714;1.5418617;1.7121602;5.62497;2.3463397;.20055091;4.3229375;1.7039737;3.1035891;4.7274132;1.9580772;1.2472575;4.7992811;2.5294762;1.8083311;2.8163352;1.2438755;1.3737649;1.9393616;-1.7815572;-.45612082;.082229681;.49948618;3.8897932;-.18631393;-.61027503;1.6844889;.66672385;.99686831;-.87608629;-.92157555;.71434236;1.6253548;-.36363837;1.2552166;-1.2851211;-.92344838;1.1570511;-.69933605;-.94910455;.57506132;1.8676549;-.65703321;-.26382414;.56460267;1.9860791;.41979763;-1.8081094;.32058701;-2.3145013;1.2498465;2.8451922;-.12773153;1.2003108;1.458124;-.76989639;1.2383878;-.67675364;-.26356897;.89675117;1.1875879;1.9882144;-1.971857;-2.2092483;.84167314;-.014062361;.55673319;.36903468;1.9783229;-2.7041819;-1.9423566;.44541091;-.099890918;-1.8662478;3.1502669;1.9184237;1.082697;.063137516;-1.1640151;.9699145;1.565152;2.7923977;1.0105466;1.7409195;2.7381091;2.2179434;1.3534576;-1.6277486;-1.1329749;2.3174088;4.2896314;-1.4696192;1.111444;-.77559203;2.8462336;.75932109;2.3277047;2.4704671;2.5252092;-.65074128;2.3200614;1.8877778;2.9484105;3.3662751;1.0250729;-1.2977637;3.7760699;-.92737967;2.6606007;2.0557687;-.97235805;1.461159;3.6293535;1.2181541;.42182356;3.0254333;-.67776507;.049713522;-.64165372;-.80594373;-1.9663517;.11277606;.86292422;1.5873671;58.26598 +-1.1254015;-.45886391;.99503821;-.41858202;-1.0494459;-1.8889407;-.76709718;-.74053049;.0037768288;-.63381046;1.055539;-1.0724463;1.04273;.097493738;1.0608513;.26148829;-.093284458;-.11096325;1.1350785;.82356882;-.55643642;1.3118051;-.99725711;-.31829208;1.30246;-.27192059;-.010440094;-.59805387;-.17648281;.38442549;.71100789;1.0189984;-.10903686;-1.1960924;.061678402;1.6467049;-.88794929;-.42154428;.11713514;.028992532;-.16802607;-.25600246;1.5105994;-2.1768153;-1.0202894;.14704464;1.3877774;.088205464;-1.8066857;-1.7544885;2.4294987;4.5627384;2.8455212;1.8256651;3.8201368;1.3241975;2.1022894;-.77532911;2.2991927;2.4368873;1.5031216;-.18960151;.45577022;-.48481709;6.3078308;.060125131;-2.8366218;1.6233052;-.92375702;-.44010597;1.476764;2.5743611;2.8805814;4.5941019;-1.2985831;.70990992;1.6350543;2.4574339;2.4052169;.59248042;.93787181;2.2417688;-.70463419;1.4012436;2.4311635;4.3484282;5.1036949;1.0625291;1.1782092;.39026004;2.9287176;5.3004251;3.6663363;3.0739691;1.2278092;.51878387;.13969949;2.1684997;6.0947466;2.9265194;-.40248525;-.46215162;1.0331334;.68881649;-.96629149;-2.977535;.24528013;-1.3005177;-.06157219;-.86160189;2.2331185;.74104214;.45392635;.38034001;2.4965951;.47276664;.86909586;-1.0184902;2.8073349;1.0366352;.40438947;2.5742455;-.23619051;-.89419156;2.7301476;-.27172387;1.6115931;-.27288371;.82271576;1.9656249;1.1430649;.69283515;-.36497483;-1.9873912;-1.491818;1.7182628;.92048383;-.21139438;-.40838674;.71454978;-1.1227658;-1.172707;1.3191038;-1.5131249;.50720114;-.28077793;2.5510783;.1447463;-1.3572315;-1.795035;1.4885488;2.4521348;.76256037;2.4536941;3.3806906;1.5712392;3.0832543;.21802109;2.3816071;2.3065612;.27448148;.48520333;-.55853742;.82746756;3.6445551;-1.0262713;-2.5010583;2.8567193;-1.5325724;-.28752026;.16657516;3.145623;3.4160571;2.9578156;1.4620678;.89418107;1.5435522;2.5039947;-.15534943;-1.0824198;-.65618026;2.9984539;-.92188472;.52910763;2.3924508;3.7325108;4.6157384;1.3809931;1.7720218;.49447533;1.1075834;4.6830311;1.5548382;1.2420326;1.6895534;-.47301224;-1.3007338;1.1791207;3.6807251;1.5272189;42.606026 +.17888828;-.024814097;-.91906726;-.8658765;.53384703;.38783699;.63668364;.045578826;-1.8918304;.70658565;.46246281;-2.0527446;.91075462;2.6104555;-.65640211;-.20143008;-.50523096;-1.4489655;-1.1596044;.93099183;.1372207;-1.1421387;.36325902;-.51374805;.34470221;-.82866615;.28339991;-.90142083;.24996452;-2.0274196;-.95377678;1.1943731;.66071415;1.6539646;-.4293668;.27064547;-.75882047;-.030983264;-.73133093;-.26201826;1.7721039;-.97301382;.98460078;-2.116056;-.71040291;.90746456;-.96640879;.049342785;.83708262;1.3805081;.42115575;1.9582871;-.058721833;2.6280837;2.3698971;1.0015899;-1.4486932;5.9771452;2.892235;.5972302;4.532146;5.3948717;1.2296692;1.2227412;.57621807;1.9931668;2.5058465;-2.2302701;2.4693999;3.5124969;-.29435989;.86595476;.85280412;1.3508196;2.2311127;4.0847602;2.3163157;3.4853761;5.6791115;-1.8536872;1.6327198;1.3605604;3.5880084;3.1108999;.26061955;1.1836835;4.1229477;3.4714746;2.9893193;2.1269712;.36916843;1.1253276;-.034534767;2.9934931;-1.0936084;3.5850272;2.438565;2.6590061;3.5499711;.44972342;-.66634446;1.1878076;-1.7788944;-.25701773;.57466167;1.0602614;1.2658889;-1.1429456;-2.5689008;.60569412;.27800947;-1.597863;-.58775014;.74615526;.32478029;-.5492785;-3.2201788;-.45981306;-2.0296023;.17697009;-.87708592;-.54286551;2.6495643;1.1739955;.27363458;-1.3688207;.56339484;-1.1785333;-.41093308;-1.1057918;-1.5847145;1.930149;-.0074125868;-.97356927;-.052541371;-.25831431;-2.6994092;-1.318228;-1.627954;-.036277607;1.3383468;-.90682942;2.6700814;-3.3456769;.022050323;1.6745764;-1.4668009;-1.4094058;-.78479385;-.094450474;.69989413;2.7543278;1.0189207;2.3329465;.4091211;.24580449;.051189966;4.1987071;3.2259419;-.47569579;3.5026009;3.8110015;1.1275872;.32195845;.52528709;1.5384605;2.2813985;1.2639986;.71030486;2.1623836;.47847253;.14176002;2.0026295;.016731419;1.6500412;3.5288401;1.8439251;1.1295419;2.8852987;-2.3841894;1.5200872;1.3738395;3.192693;2.1693304;-.69264531;.33978343;2.2922733;1.7487928;.69129914;-.45905459;.65404463;2.8683751;-.83540118;2.5624139;-1.6203376;2.4246655;2.4928954;1.5702311;1.451148;.98564476;51.261986 +-.98707229;.4605965;-.58622926;-1.8614264;.29263046;.70614755;-.13485275;-1.2703711;-1.6585193;.6819185;-1.2824569;.52442193;-2.1713564;-1.2688007;-1.5847605;.46305314;-1.3068042;-.17585492;-.8543548;.2980608;.77866113;.54426366;-.83637661;-.7224443;-.24307674;-1.3641834;-2.2568915;.85769653;-.18723632;-.33899921;-.33941162;.40068674;.33547822;-.59266001;-.76142931;.62609565;.80560744;-.24372113;-.23227017;.57343161;-1.4324257;-.62997329;.63582146;-.59007221;2.2938728;.43759862;-.33946437;.51500857;1.4749106;-.26174307;-1.3075246;.89480829;2.1737752;1.1926632;5.5981712;4.1633902;-1.7847449;2.7005413;7.1363139;2.4970753;4.8841853;2.9939065;2.6600494;1.156496;3.5709841;2.4441929;-.70237088;5.1129613;3.320132;.4277727;1.7307724;1.6929832;3.6798434;.5129258;3.1319726;4.0726609;.72729617;2.3242216;1.0043718;3.2654212;2.5273521;4.0593481;5.79879;2.0043035;.95007908;1.6203051;1.9581522;-.057411049;3.5831881;5.5520844;2.0674348;3.5574791;1.2894793;3.4238429;.77590501;5.507102;.56321573;3.4760661;2.9884434;2.7381551;-.1489172;-1.6623814;-.56550884;.63946676;.91967595;.13818149;.30806372;-.069709234;-.50391579;-2.0242798;-2.9708307;2.1799541;-1.3856869;-.89352947;-2.1763546;.91459727;-2.6088347;-.88269031;-1.1398371;1.5638944;.49158096;1.9178696;-.46890888;-2.2393498;.77258623;-1.7036839;-1.5763408;.37009391;-.72360975;-1.6055994;-.69745982;-.40638036;-.48128384;1.2337186;-1.9875002;-.32665569;-.73868108;.46387035;.45169964;-.14101802;-1.4799926;-.63361204;-.76593024;-.8190577;1.5030668;-.28394437;.52503669;.57257938;.8060286;.95079744;-.72004259;1.1557248;1.5567451;.15594868;4.6048436;1.0844145;-.5193944;1.5223018;5.9285088;3.0513103;2.1720665;1.7649947;2.2619259;-.16436736;-.26468024;-.23809087;-1.0353321;3.3675892;1.9439088;.072217233;-.019726284;1.2423698;2.6342051;.025640903;2.2863195;3.1284637;.12215557;2.253356;1.0680479;1.2476519;1.8882211;2.1881676;4.0491939;.80728382;2.0686908;1.5048437;1.2824919;-.09579812;2.4235654;2.0263162;2.0047803;3.0894825;-.30872512;1.473236;.9878819;3.1719127;.22999887;3.7050931;3.2213528;2.4868159;60.41074 +-.17056447;2.5116184;-.84976959;-.29381913;.0094825821;-1.5408773;-1.5081336;-2.0247316;-.52672589;-1.6229528;-1.8457662;.19569841;1.1963317;.69938409;.33031914;.32506892;1.4451216;-.69093084;1.218152;-.86331129;.62094587;-.60917699;-.00088522723;.86256719;-.81427062;.047712967;.21056639;-.71870345;-.46396515;-1.4541543;.10320725;.22824501;-.39802745;.28582844;-.60521311;1.6125498;-1.4513944;-.43543756;-1.1955867;.2079967;-2.9455824;-1.1971331;.92790592;1.1893278;.3847163;-1.0557529;-.22332656;-.87080944;1.0319673;-1.3439983;5.7051558;1.192072;-1.7362424;4.2880774;1.6181562;2.4578364;1.8999523;4.9222112;.00024457349;1.0644863;-.78271389;1.8381979;1.3587155;1.5336082;3.3033235;-.22882526;6.2431631;.047511391;.80094564;-.43243071;5.4967475;1.3956223;2.7762454;-.72939789;-1.9755083;1.0843309;.90849125;1.0568348;3.3372931;.25773615;6.0739264;1.8166312;5.0818295;-2.8676243;-.63542879;4.6334929;-1.5917084;4.1975455;1.9491141;1.2283554;-1.9972316;-.90398329;1.5202336;-1.9524454;2.1328423;4.7868228;-.14693417;.078631394;.42009073;.48070356;.63752145;1.1859181;-.62432766;.44562155;.96964347;-1.5760618;-2.8494601;-.38017511;-.92594159;-1.7652286;-1.4816792;1.6902057;1.1576091;.4496907;.5739882;.69737482;.6891889;-1.0991824;1.0217483;-1.2109925;1.3829947;.4429118;.30973983;.72153831;.50339383;-.072517902;-.28439701;.77288175;1.0592272;-2.0461133;.61451846;1.3021414;.97873688;.1184122;-1.5362186;1.607915;-3.190856;-.75677174;-.02451461;-.70902812;-4.101675;.28350872;.99130833;-.23064741;-.57788897;1.2133167;-1.7235844;-.72918481;-.61683834;-.4955118;2.2305896;.25149405;-1.1750921;5.6503506;-.76727408;1.7210943;-.81546599;3.2066734;-.48441541;1.208643;-1.2868544;.30981213;.50438243;1.3776336;2.0705547;-.51012039;.84388584;2.0770934;-1.0311487;-.13013144;5.3812618;-.023362592;3.1484239;-2.5245368;-2.2032769;2.3652854;-.29698583;-.2427092;2.7317734;-.27004251;4.2487516;1.4299048;1.9074119;-.82724065;.91411394;3.6890075;-1.0271919;3.7111814;.91817206;.89935219;.27066565;-1.2509124;.064711772;.47162151;1.2699592;5.3927979;1.7836045;-1.0823331;1.646337;1.3942571;23.509785 +-1.2646015;-.20348878;-.48813957;1.4228003;-.14048164;.70825475;1.4047986;.19052684;.82271367;-.8806541;.326298;.23988989;.70241988;-1.0132805;-.54356205;-.83875382;-.20981283;.81111568;1.0201758;1.0659423;.87292165;-.47039324;2.1819015;.067941345;.077448234;-1.0557863;-.81627619;.73539484;-.30952659;.3639341;.42555141;-1.2901119;2.1207595;1.0025611;1.183085;-1.0945278;-1.4363449;-2.3261454;.69244194;.81043273;.73194116;1.6745024;-1.3190625;.54541105;-1.1922271;-.53353947;.74401557;1.297526;.67924267;.94012326;-.53230971;2.0804827;4.5565152;1.8188984;1.0733056;3.8073978;.099944949;1.4438325;2.9743652;1.1370969;1.5966606;1.6408489;2.6879969;1.3151757;-2.2490816;1.4086801;3.6508672;-.2899037;2.4318879;2.6088865;1.9642715;-1.1729637;.88538337;-1.4753357;2.4591179;2.3914516;-1.3443954;1.8936476;2.5479825;4.5858345;-.68800712;2.3980267;3.5758612;2.8309686;3.4824374;4.2289548;.82161659;-.50984967;2.323154;-.40450528;4.5717521;2.9690855;3.0783381;2.5006096;3.3074872;2.6460826;3.8005426;1.739342;1.5295817;5.4779725;-.21663459;.13763563;.71555626;.92267692;-.36467317;1.2696151;1.6823767;.17961445;-1.0093967;.4358761;.84219229;-.49506736;-.14074036;.082770959;-1.1177624;-.76572001;-.93807602;1.162033;-.7476207;1.7691905;.45151842;-.024906017;3.5377815;.81144047;-.39621988;.67162269;-1.0639468;-.063820429;1.4543648;.29614413;-.10667839;.98353803;.71053123;.10357458;1.0126598;-1.8758454;-.45990294;-1.717301;-1.4612408;.24328604;-1.3062962;3.3084323;-1.6440622;.27383074;.90510881;-.97558403;-.24627863;.4126206;-.58315641;.48432994;.15166435;-.34296256;3.5428512;1.5700674;1.1587801;2.5262139;.27462712;-.080915414;2.459923;-.94095182;.30984068;1.5942127;1.9614773;1.0631161;.082788356;1.0878543;3.530535;-1.0159922;1.0307596;1.752557;1.5660086;-.56128782;.93517727;-1.7235322;2.8142946;.5854004;.92409533;1.4387903;1.6193111;2.9139216;1.4347184;.38002619;2.788033;.74711496;2.0292573;3.2875972;-.28247568;-1.5559137;1.8775382;-.62069446;3.2573876;1.7130688;3.4851093;.84455729;3.395484;2.9067957;3.2652898;1.2060508;1.9644183;3.706604;48.686207 +.69854927;.10360607;-.62883252;.31693146;-1.4711839;-.0544753;.35490516;-.042837147;.037578218;1.9608544;1.3127123;-.59728134;.36189786;-2.0954907;1.5223736;-.74231404;-.80294693;.29590011;1.4367164;-.40361425;-.71794951;-.23128511;.45992666;.91950834;2.049655;-.53475225;-.039716482;.3452777;1.9003645;1.6929029;.037721936;-.93925828;-.97653145;.80984837;-1.017157;.39947551;-2.1609321;1.9087737;1.6173859;-.40023685;.020154931;-.45664799;-.099480383;.10949223;-.8230828;1.4480112;-1.4716098;-.42316797;1.5782486;-.15327771;-1.7555963;-.082215257;.32422695;4.302804;-.54066795;1.0858204;3.2394202;1.0804322;1.3390583;.44763348;2.38078;.46020558;4.0547996;2.5008245;.82450819;1.5008975;-2.0243933;4.9115477;1.7357194;1.2915658;2.2138739;4.0898266;.72490698;3.8380706;6.4643397;2.6970017;3.0519595;.75535905;2.6339431;2.0085568;.72388792;3.8417549;.35169899;-3.5829775;-1.318668;1.1482898;1.5991927;1.9533564;1.1428005;3.1373518;1.5179411;3.8599691;1.7548575;4.4040771;2.5159485;-.11197255;2.525779;2.8070245;1.7116069;3.3128612;1.2124587;.77917731;-.2977823;-1.3463978;.37971601;.55152166;-.39642751;.56815636;.76518226;1.7028253;-.31987131;.24388593;.22125058;-.8527987;2.0366359;-.054270871;.22116703;.51434875;.47381666;-.68491083;-.0093043316;-1.1138203;-.38823831;.2449929;1.0075057;-1.6427655;-.93898952;.97845656;.4745613;2.0158038;.48402864;-1.2044022;1.7084177;-1.3419079;-.42190391;-1.6451869;-1.5029348;.1652794;1.36645;1.5351582;-.48132399;1.0479541;-.22762716;.58612663;.076591253;.236683;-1.5590715;-3.2737453;2.163013;-1.1948792;.38486612;-.35985994;.45960709;1.4181272;-.80148554;-.38738689;2.4349968;.33022517;.3776252;1.9255522;.69159758;.80478311;1.9507908;.98462707;.76299924;-.55537248;-.74953234;3.2879982;-1.1246603;1.324519;1.4032301;3.3221383;-.34172478;4.6564341;6.0389018;2.2960341;2.6446202;-.58713341;1.8345132;1.0586029;-.78103453;3.0634754;1.2579432;-3.076932;.48721397;.77274841;-.12244762;2.0571291;1.0247059;4.0440931;2.0457535;2.5042236;1.1911668;2.9522667;2.2683818;1.5115063;1.5563312;2.7931144;.48732522;1.9171599;49.332558 +.45819658;.57592726;.41734099;-.1813148;.27382794;1.057103;-.29089206;-1.0486264;.43338695;-.12560526;-.1157667;-.27662259;.10901598;.13459574;.36539763;.81456667;-1.3652813;.75280774;-.78278702;-.91372615;.71258819;-2.7404625;-.32399639;1.762216;1.0067189;-.58352834;-2.2456977;.70372152;.53490657;1.0721821;.37554094;-1.3930745;.44142875;1.3309463;-.51988542;.97722924;.58350021;.53449351;-.02820651;-.4839884;-.37255254;-.1842532;-.8471542;1.9005306;-.52778095;-.35041982;-.45544574;-.70710123;1.1779277;2.3517599;1.793043;.54146153;6.330183;3.6181953;1.3338168;1.5641501;.78680265;1.3914853;-3.0273397;3.0755823;.70512581;1.6619223;2.8571548;-.20565453;.081495561;2.132355;3.4305367;-.40372297;3.2012191;-1.3544266;2.905463;1.4997294;1.5841663;.80570453;1.6258254;1.0509807;2.7201409;4.5607042;-.23746458;1.2115942;-1.8418077;2.6028869;-1.3432688;3.4085302;2.6977029;2.8325362;-1.677488;2.3588111;-.63569486;4.3352151;2.7181506;.836155;1.5785462;4.7889876;1.655265;5.3641815;2.8913229;3.7021124;-.21178037;.31188151;.055688459;.60217136;-2.4906776;-.11073811;-1.5594091;.5187943;1.4382404;-1.4140638;-.49319515;.20258194;-1.7515687;.97079676;-1.5801129;-.57058436;.29487664;2.4335866;-.54575336;.3496511;.34424946;.89958376;1.3737872;-1.7772739;-2.1082594;-.18165886;1.9130154;.16155386;-1.714772;2.1422908;-.63440984;.8385849;1.2441319;-1.547837;-.47781855;2.1077001;-.5302276;.065166645;-.20363863;1.4520944;-.20006469;-.66420728;-.24625084;1.2201915;-2.4671745;-.37280867;-1.042073;-.048831563;-1.8503226;-.32648289;1.4798802;1.8642062;3.5136433;2.5833728;3.1898751;1.6041574;.15619099;1.9716269;-.47655529;.40538713;-1.0137575;2.700413;.9689886;3.0446882;1.9726646;-1.5332166;.73601037;1.9233611;3.078243;.27124438;2.6692135;-1.0742278;2.1290348;.16850768;1.370518;1.2376105;2.4733016;.81138164;2.4028363;3.4142463;1.1644537;.58959007;-2.1927524;.78025162;-1.437531;2.4854612;1.5747715;1.7929984;-.72465181;.77509826;-.65796703;3.4495647;2.2351673;2.200556;1.3469158;4.5237575;.95881718;4.0855036;.28522846;4.0362806;-1.1922733;-.71689576;47.312778 +1.6363621;-1.0016258;1.2040074;-1.1296093;-.61413932;-.6080122;.63751936;-.87143147;1.7738292;-.89197814;.27710998;.11688042;-.10280655;-.64646667;-1.046105;-2.4246497;-1.5274091;-1.5863934;2.1053202;.54009223;-.5095951;-.34681526;-.86456358;-.28689513;.29078346;-.18384469;.085533246;.69609916;.80884349;1.2312248;.50075954;-2.8715787;-1.2382737;-1.3699727;-.83768201;-.48886123;.53329521;.88911802;1.1091242;-2.230144;.71010363;.99389863;-.6723386;-.52595866;.70229155;-.082829386;.94887149;-.49847752;-1.4731545;.93559682;6.0660725;2.3199036;1.3911927;3.6685798;3.2778559;3.513521;3.0532453;5.6160116;1.7729074;3.0550914;2.5406988;2.8193293;-2.4321163;3.1213896;-1.2850027;.95044327;1.6412352;5.258954;1.1671225;2.0977788;4.9636889;5.3175917;2.3818088;.13892418;-.48623818;3.3889372;1.2883153;-1.5046941;2.4126723;-.76960522;3.418287;3.643136;1.0234472;4.068645;1.0092504;3.8106306;3.5378132;1.5494716;4.3247046;3.2702582;4.3325047;2.08795;2.8751783;2.5342202;1.5391093;4.0684857;2.3595669;3.1849511;.70418704;3.106282;.84468955;-1.642478;.64514041;.083013982;-.22333571;1.2185102;-1.0522077;-.97180277;2.1593404;-1.2609957;1.9789178;.49680582;-1.317005;-.52655518;-.50098062;-1.2173395;-.54967248;-1.0832843;.69814086;-.30978131;-.32097134;.59494025;1.0052043;.48073766;.66289037;-.22099108;-.28871733;.013260411;-.8175838;.3417604;.5213269;-.25941867;-1.8503804;-2.4481018;-.67074645;1.6898735;.92900217;-.27725196;1.664305;.06635578;.13302054;2.0855439;-.7488718;-.061824076;.25804508;.53628194;2.8450372;-.13902061;-1.646813;-.16063638;4.7024612;1.6949782;1.5907663;2.7744079;1.7019241;2.2007864;3.1121397;4.790916;1.068282;2.4384897;2.3781114;.40604365;-.0058522075;2.4999204;-.88855022;.94760311;.31476888;3.2897282;.79088861;1.5776988;2.3378127;5.7020841;-1.1479485;.055258784;-.83450735;.55483538;3.0393629;.48931164;1.3953341;1.0478852;3.2915103;2.9885218;-.66107547;4.0907283;-.70250684;4.1571393;-.03321043;2.3141615;4.3894105;4.2466059;4.0758858;2.4685416;2.8758469;1.312798;1.7915951;3.7631149;.82445532;3.2039614;.33760479;2.6619518;56.252148 +.84572947;-.53617382;-.18431129;.0011663171;-1.2008935;-.36625439;.97627807;-.55959213;.027782165;-.60793275;-.81936395;-.31787902;-.68328422;-.58655089;-1.0269746;-.19931552;-1.2248046;-.27108815;.46718377;-.12438565;.30524305;-1.3571303;.63367057;-1.1048464;1.8047954;-1.3012426;.41421029;-1.5633595;-2.3788178;-1.5733776;.79591;-.64766878;.60319978;.32509738;-.0065575787;1.8023766;.73990375;-1.9088041;.022647902;.26931176;-1.2341796;.20501795;.43867177;.80713809;-1.9731168;-.41745996;-.89233327;-.65718758;.26104456;.62273175;-.15356648;-2.0526361;2.4894545;.6886698;1.3622984;-.88705748;-1.1333396;.0070600687;3.0001698;.78952187;3.7830312;4.4084296;2.7568395;1.6024505;4.6948895;-.71366143;-2.8955283;1.5541415;3.6019633;4.5592318;.11146498;1.1430176;-.17768966;2.0474434;2.5599957;4.3054805;-1.006753;3.115947;1.9030323;-.58563727;-3.1781595;1.8296363;1.8199021;2.7532866;6.2989244;.72632474;-1.5322839;3.3662121;3.4802902;2.5826187;.94154322;1.6573594;.09344922;3.7926159;-1.1872156;.89895326;2.5443394;.33246812;-.37299061;1.7302395;-.81894302;.34111902;.12929034;2.4029772;-.00814097;-.099856146;.37089244;-2.0301259;-.08892633;-2.4544082;-1.2694942;-.60895032;-1.6648124;-.25291654;-2.2974131;-.3730517;.60429764;-.20529848;-.2635192;.24358723;2.2299194;-1.1288538;2.4595394;-1.6615247;.46831757;-1.2568588;2.2579086;-2.8934627;-.53053367;-.73450077;.25196791;.25664845;.75624532;-.38455233;-.34775174;3.6474245;-1.2135348;-1.6335272;-.72182792;-.919191;-2.1084585;1.9277574;2.0646911;1.6102434;-1.2778264;.5551154;.5697453;-1.6171643;-.015696766;-1.4722784;1.2642254;-2.0196605;.38313904;.97159058;1.0922754;-1.7619535;-1.5352609;.46142441;3.1540201;.0066368487;2.5770247;4.1751714;2.044601;.80793595;1.2996849;-1.0811356;-1.669747;-.50564981;2.5396414;2.0181253;.093823962;.98674875;-.40904537;3.3428204;2.6693392;2.9595363;1.4239889;2.4979711;.57542676;-1.3263615;-1.7519815;.17884754;2.3508334;2.6383345;4.8177257;1.3352101;-.38425624;4.022491;1.1774123;1.6627699;.10550579;1.3922364;-.85853523;3.0276186;-1.0480348;-.86018789;4.0448465;-.48017028;-.4114241;.10059057;26.925949 +-.49702284;-2.1876254;.78038353;-.30843627;-1.0035572;-.12002258;.67242467;-2.6388323;-1.6767881;.52849019;.78447729;.58042353;.79039764;-1.0603874;.97149783;.53772682;.42150071;-.76186943;2.0713382;1.6462469;.69247353;-1.50291;.41447496;1.1488193;.020533744;.1367749;-.16540165;-.20380129;-.33610007;-.60273671;1.6027504;1.1903337;-.37543252;1.6685854;-.19416808;.87894434;-1.0248755;.72956133;.013591356;.45224464;.28133884;-1.0824246;.87439442;.22327003;-1.4222903;-.32999578;-1.1809213;-.47342336;.98996943;.55313438;-2.3270617;3.4309282;2.2406173;2.5927477;-.069086149;1.8552741;2.6012475;-1.7486418;3.3737156;1.2580086;5.5413613;1.1771102;1.1074197;3.0606132;.96139085;4.3234978;.018336732;2.8291161;4.9395738;4.1246939;3.8575773;1.0270966;3.0674736;.35032815;-.051110953;1.8092428;.93752515;-1.155692;2.5676804;3.1565616;-2.5543988;4.0984654;3.5424788;2.8546154;7.0249157;-1.155491;3.8315308;-.21986023;-.1217243;4.2722344;4.0810308;-.57760543;.51095873;-1.1140914;2.7847683;.33264312;5.9526358;1.2495626;3.2650301;5.5303502;1.7018144;-1.4177167;-.22819808;1.3778831;-.4686932;-2.0377109;-.20072566;-3.2712798;-1.0000824;2.353919;-.045575872;-.16605657;.52394414;-2.0073035;.79914969;.37952644;-2.2763302;-1.8713663;.1376349;2.5747731;.50988615;-1.7688731;-2.0043125;.88375425;-.83766943;.61897534;-.85631502;.94806135;1.1605768;-1.3997318;1.5589758;3.4078491;2.1316612;3.2030258;-.38542318;-.6256724;-1.3545141;2.3087349;-1.1563141;-.73602074;.95972902;.45070061;.49655405;-.15814452;-.1340397;-2.3444383;.41755176;-.98239273;.25782254;1.1263894;-1.4912432;.71251971;.21876904;4.7265396;.9885394;.74607688;1.875527;-1.198921;.39256319;-.48135453;4.3426991;-1.0173068;.65591925;1.9538196;.67825806;4.6162434;1.262701;2.1293988;3.2619686;1.4113116;1.1127254;-.1573938;2.315836;-.6224432;.36004734;1.2251093;1.6435374;-.42741165;2.0096579;1.8954521;-3.55952;2.012408;2.6378527;2.871635;5.2116499;-.87838721;2.134002;.36536184;-2.1458538;4.6477036;2.6324499;-.20555283;.30061722;-.18704568;2.2078114;.33146134;4.6174402;2.366802;1.5434119;3.4549348;54.307545 +.75438857;.44325611;.47889602;-.21648607;.098328806;-.25731856;-2.8315732;1.4435613;.91396087;2.4931633;.32079312;.15421687;.33850551;.67824847;.89898914;-.82033849;1.7251576;1.286868;1.1968296;1.5348611;1.27426;-1.733018;-.73387569;.73045176;-.27507553;2.1684864;.3372412;1.1923431;1.2162187;-1.1078365;.97947156;-.5764972;.17535295;-1.3952553;1.706508;-.81754899;.6203019;-1.2390602;1.0536977;.080192067;-.82558966;-.18255498;-.98567563;.25227889;.50929743;-1.3112626;.67686164;-.62610978;-.14219312;-1.5349414;2.7647634;5.3833919;1.9215204;1.062663;1.5379409;4.4499788;-.69244963;1.1797808;3.0960824;.82316691;.46965852;2.0028899;3.1400399;5.1175284;2.3586786;-2.3819633;3.5375116;.65878427;-.68785256;.51897407;1.9522834;1.7498415;2.588733;2.7372684;1.2631154;1.3161944;.2064399;1.412118;.021486714;5.6727324;2.9341292;3.3005571;.60144168;4.7341533;2.3901703;1.5126059;3.3010459;.5160982;1.586122;1.9336467;2.7621355;1.3892412;3.5612628;.70051044;1.3459369;1.5599297;.84332943;4.6151276;-.75341094;1.3093917;.44721544;.26964036;-.05468085;-1.3553723;.22921847;-.82488215;-2.6061568;.50821257;.045252893;1.0691533;-.057023931;.31147027;.53720677;-.78245515;-1.6811695;-2.2322838;2.3502786;-.14411832;-.1733638;-.71552527;-.23457399;-.57538557;1.7605828;1.5356075;.12818766;1.5373576;-.68681663;-.83103853;2.3911529;-1.0125676;-.3990801;-1.1270577;1.8500415;-2.1758335;.71456426;.18048482;.25349417;.14966087;2.090802;-.15428442;1.2337389;-1.6724527;-1.5970074;-1.9074091;-1.4014227;-1.9553268;-.0010496754;-.77173507;-.06736017;-1.1115342;1.9558817;3.3463855;2.0922544;.68764395;.86589092;2.2885942;-1.2012085;.38519424;2.466589;.44751659;-.72017902;.37475622;3.6789932;3.4592261;2.4467652;-.86110759;3.7309403;-.05473974;-1.5450641;.3909288;2.8087294;.76312679;-.061520953;3.3988054;-.40224913;.68752551;.76110518;.44619966;.08981774;3.8151438;2.3745503;1.1276975;1.4071202;2.1359925;1.5967871;2.12973;1.5259998;-.27460623;1.1912682;1.6382687;2.215378;.35617504;2.7361782;1.260272;1.6428;1.2608085;-.49805096;3.1531801;-1.553296;-.017426649;52.431351 +.79254836;-2.0336118;1.9577923;.38579732;-.52321291;.050324216;.42676598;-.23519067;-.22782764;-.039249096;1.5015891;-.11181846;-.70748883;.11067743;-.59400022;.77381521;-.39727527;.37567183;-.84391654;.58783478;-2.5369735;-1.1472392;-1.0924544;-.087847047;.74099487;.66052586;.0063856402;-.84366506;.24153106;-.3424668;.26296353;-.68039274;-.96979189;.55064297;.019316781;-1.5332667;-.28966865;.97439843;-.14753106;-.88080233;-.9739418;.87311625;.95849568;-.0015393634;-.26622057;.76511961;1.0979998;.068017505;-1.1808269;-1.5738994;4.5742321;4.3180962;2.8962507;2.9354374;2.607578;2.457094;.69311124;4.3894272;-.83063233;1.8212931;2.8305342;1.2089788;3.8210659;-.49572814;-1.0771387;1.2366018;4.1436367;4.6101303;.49531916;.27737334;1.707662;-.35727799;-.27349252;.94463682;.48403496;5.8642683;2.9780054;-3.1863108;1.6693969;-1.5428575;-.94706166;2.9491096;.8632642;-1.7298594;.25894627;.67372417;2.5149815;-1.3532549;.10284076;1.2499366;1.2388277;8.2193861;3.4362793;-1.0278258;4.6106443;.18357703;3.1044235;1.448662;.63689327;1.7307608;.54742074;-1.2861177;-.021397324;.82440215;-1.0674949;-1.8478645;.98163676;1.3143555;-.34033737;.73209572;.90342075;-1.0048147;-.74037737;.4552018;-.96678084;.92526907;-1.9252559;-.14178847;.2492573;-1.2939696;-1.4263396;-1.9632592;-1.366807;-2.7427049;.77571267;-.35466328;1.2272958;.19774358;.20057367;-1.0935144;.30614564;-.16897394;-1.1804872;2.3549936;-.51301235;-1.4272585;3.0518208;1.650984;-.50249076;-1.1257859;.51507902;.5826748;.44783482;-.8047266;-1.3729972;-.28282675;1.6049683;-.80745363;-.86714679;1.3795192;4.3351817;1.3238257;2.030278;1.6850473;2.7501705;3.9119797;-1.1509999;2.8107128;1.0081679;.85287255;1.868385;1.1196567;1.3910408;.98844528;-1.9829212;2.4014068;3.4932804;1.8126253;-.97430241;-.92948419;.57571816;-1.7960651;-.81395662;1.8403292;.88531965;4.6823959;1.640837;-2.4281597;2.098937;-.9931435;-.53715128;3.3839755;.76563489;-1.5820048;1.0270622;1.9392439;3.5917609;-2.4120269;.96982402;-.17098425;1.7042705;6.0361657;2.1763961;-.0045418828;3.096426;-.59780878;2.8874435;.69966859;2.3624368;-.025374752;42.75732 +1.1921341;.82296878;-1.2196361;.64427948;.16380417;1.8105906;-.57544726;.48653248;.14645375;.63329375;.75382078;.42067164;-1.0832708;.53143734;.63819075;-.054922182;-.81988925;1.7065179;-1.4036037;.17456867;-.89355385;.52387106;1.7902231;-1.3028618;-.96562624;2.3683467;.57898796;.45018509;2.2179189;-.10418825;-.42822668;.43155491;.39276019;.93978471;-1.4392182;-.05473695;-.78516829;-.26193428;-.87039453;.3869718;-.59951127;.77704972;.35598955;-.34234279;-.61564499;.39912188;1.1053451;-.054159913;-1.0794214;-.8289836;2.4922342;2.2957342;5.6737633;4.3899751;2.8926742;2.7904272;2.5922627;.094194405;5.1796932;4.6677909;2.8018994;-.92155755;1.1872656;1.49578;6.2600327;.5549804;4.346261;2.3838999;1.8117027;2.2671976;1.7542008;5.6298347;3.9950335;-1.1915596;4.3235526;2.6552486;4.9295177;1.8485895;1.7788819;2.7344129;2.419595;-.33952537;2.5468533;-.58764762;3.0594151;.23008139;-1.9599061;2.8100214;3.2803211;5.7188535;-1.1341468;1.7669972;-.20083481;3.1860781;2.8117194;.047644861;1.5360374;4.1546035;.60469002;2.4109888;-.62271667;-1.1611406;-2.5051188;.87433654;-.74912691;1.0400877;.97716892;-1.4491532;.68509215;-.83779943;1.2111108;1.0832256;-.78237259;1.2280434;.48659763;1.1466465;-.93199617;.56907064;1.1796103;.2437018;-.53853202;.45520917;1.1607327;-1.0907757;.88579035;-.0087142522;1.2858239;2.4313505;-.22462234;-.34853163;.75106597;.86061245;.17939796;1.4158447;-.30751032;.44477457;.25946245;1.7121401;2.3328094;1.6783279;.0048743864;1.4512197;-.41192997;-.61391872;-.56231081;-.28826678;-.38307551;-.064429536;-3.373183;-.13289686;1.7128887;1.3176877;2.9350471;3.510514;1.2712913;1.9002211;3.3894906;-1.5076044;4.6183839;4.7676411;2.1512129;-2.1461637;2.0821185;1.1455113;3.8409743;.3469907;4.3033442;.63385898;2.2663062;2.1340804;.79902905;5.509212;2.8999934;-.18415226;3.010066;-.6208998;3.2630734;-.92747962;-.2959933;2.8900015;2.1762097;-.43796778;2.88691;.04085964;3.1282587;.25934771;-1.7337149;2.0479331;3.6909077;3.6015072;.4801724;1.4001112;-.6694296;2.9614336;2.1587181;-.18878493;-.74228543;3.7734551;-.92451936;2.7826037;63.025043 +.028978681;.4611809;.059276458;-.30233184;.15760998;-1.1030595;.018982243;.55119509;-2.6384966;-.13792469;1.7872;-.078297332;.12124743;-.26272613;-.36639413;-1.5295523;.080616765;-.22665223;.25706691;.33614233;-.23180829;-1.2301489;2.0993991;1.608076;-1.1969298;-1.0340403;-.22399437;-.27044067;.045606568;.79087579;-.011997147;.52153164;-.64601052;.55635536;.83936095;-1.9026583;.87007058;-.62326199;-.49502259;-.88552701;-.39624003;.26760432;-1.605341;.33441463;.11274903;.65088737;-1.5267916;.87566245;-1.453958;.12657584;2.4775395;2.4632971;3.2133873;.33370477;4.1872735;4.3739848;-2.0219004;1.9794561;2.0757554;-.038262513;2.5577807;3.5496676;1.7152501;3.0500417;1.4010501;1.1807644;4.4563117;1.5736361;2.4630625;-.92324746;3.5998592;3.8568461;4.6002855;1.7513708;1.1515995;2.5571127;3.4466004;-4.9365993;4.8710833;1.7546097;2.0471225;.78149885;.54778481;2.1345167;.88561684;1.4911603;2.3094952;1.375283;4.4791083;.54203528;7.153203;.59493858;1.057187;4.1285849;6.9338531;1.1765225;2.781354;3.8818672;3.8685925;4.390604;-2.4683695;-.93933398;1.4545847;-.093199581;.65994787;.78659791;1.2055719;1.2479702;-2.9386549;1.5996122;2.1676772;-.45349219;1.3268416;-1.1985331;1.107381;-1.4518117;1.5479853;-.10514197;2.2831235;1.8617204;.56048197;-.81362176;1.8479668;.79195654;-.98681414;-.80966729;.29453748;-1.4285634;-.18452781;-.39623612;-1.0398965;1.2225462;.42453444;.99097997;1.2499685;-1.2428638;-.18775672;-1.0994042;-.53118271;.23273365;-1.0566396;.18494576;-1.0243012;.60762954;-.047567867;1.584542;-1.1143981;.86053669;-.51902503;-.20330705;.52085525;.88134676;1.5124842;.65694523;2.4453068;3.4914443;-.76174331;.37893122;-.69849193;.58020806;2.9626977;2.8327348;.70778006;3.6816797;1.9216017;.84001648;4.8075461;.31825739;.31875977;.59863889;2.1291599;3.9200683;3.7786715;1.8914472;.34538049;3.1382809;2.8277502;-4.9085217;3.5366027;-.84974599;1.1237456;-.93696487;-.13241686;1.0804193;.95101607;-1.1142576;1.0304962;2.0092728;2.8473742;.95574731;6.2494302;2.3338041;-.14392175;2.008589;2.9710593;1.4606266;.51698655;3.6801453;2.1892147;3.4744232;49.557137 +1.1206582;.80854023;.80550319;-1.2725217;.79872197;2.5095363;-.090805113;-.85498089;1.379544;-1.5031275;-1.2588319;-1.129666;-.18418631;.57557845;1.3734587;.42677817;.031747151;.77279395;2.3986332;2.0906646;-.060241725;1.0333123;1.1173185;.9125123;.49752256;-.15379395;.053086828;1.2468768;-1.0413076;.58987069;.70488214;1.8074726;-.33195165;.21045497;.76736665;-1.3803231;1.4597529;.71189314;1.2893476;-.58514905;.12972131;.31553549;-.18650369;.36664364;-1.8906171;2.4686611;.54233414;1.204911;.34679824;-.75915474;1.8390479;3.8140178;.88520658;2.6063223;-.037705377;1.6775491;-.33487764;1.5380901;.69853628;3.7996674;4.5225501;3.4752755;3.5161669;1.6518719;-.94206262;1.8918009;-.12954959;3.5250218;1.3904094;2.7437701;2.0925753;1.1176858;1.1160215;-2.2523022;-1.5411601;.86511749;3.3440928;-1.3883214;3.6551168;2.1452851;4.7159405;3.7352521;1.267141;1.6520793;2.6200297;2.8881769;2.1612933;2.1969399;.32965207;2.0111256;5.6374931;2.0441515;2.4640353;5.103436;.52047294;5.5645442;1.9248495;-.21675958;-.60784906;2.1828291;1.9573712;.30823448;1.2974552;-1.7716979;1.5895935;4.2462268;-1.2418112;1.7836128;2.8592403;-1.7608751;.41413826;-1.9412218;-.21479142;1.2949204;1.7065864;-.074766032;.058532853;.21195877;2.3259032;1.2633417;1.1691383;.36229816;1.9157104;2.0308447;-.033867359;-.87878466;1.0157924;2.8678181;.22342186;.52921224;.37635198;2.4025724;-1.2517587;-.93854779;1.1521372;-.59459239;-.7355991;.74572086;1.8191967;1.0340998;-1.2937685;.56740701;-1.2247493;.29133517;-2.0481586;2.1849749;1.0695831;1.9674635;.88361949;-.25058499;1.5477381;4.3298421;.13395227;.67711902;-1.2951394;.29761076;1.4372715;.80208063;.5360716;2.9863286;2.7286892;1.6265274;1.7840669;-.03022008;.56072277;.94869232;-.28045192;2.2743745;1.2192017;2.2247405;1.2202779;2.1102946;.12519224;-3.2758121;-2.8070149;-.62073398;2.2162123;-1.0509237;2.6304348;.87790465;4.1030126;2.8414764;.77351344;1.1509207;1.5690272;2.036957;2.4200037;1.2993014;.41573745;3.0707664;3.9964888;.22950663;2.4255548;3.1224327;.42083481;4.0198784;2.2729518;-1.2587342;.1934925;.78291339;54.522331 +-2.1046057;1.4129751;-.178339;.14668067;-.033673532;.087674357;1.015173;-.16981615;.232907;-.43339065;.1848679;-2.3480759;-.29399595;.73661095;-1.1069939;.24588217;-.19489922;1.3653926;-.16790049;-1.3200717;-.78015888;-1.4882476;-1.3644755;-.94800609;-.69393951;.16651939;-1.4292159;.26412755;.57810777;.28167629;.5510636;-.93952042;1.3042766;.88992959;-.46125248;-.8917647;.25820589;-.97088116;-.25892928;.50282156;.10357939;1.8788767;-.13786423;-1.3253801;1.6914015;-.62613976;1.1972096;-.66776824;-.36787626;-1.247701;.030617459;2.4621;3.1139209;2.0767701;3.6928103;3.2196302;.25285515;6.8181129;3.0797741;1.6319826;.60056585;1.8514752;.49782252;2.6808553;3.5000079;.73163521;1.2964277;1.4735094;-.32378545;2.1215789;1.9127755;2.9665921;2.4723198;1.4195465;1.0887477;-3.5587711;1.3988895;3.5438776;1.7308099;.6827758;2.6244063;-3.2991314;3.5930154;2.1237912;-.63858795;4.0099902;3.3425899;5.6047564;1.6551466;5.2937498;-.82650703;3.570658;1.2503793;3.4773457;1.8624558;6.5774164;.68240857;-.51634067;3.5966017;2.0757391;-1.0397702;2.7868409;-1.6902891;-.78359288;1.2182596;.14536741;-.41121346;-.85467637;.64680243;-.30169481;-1.33134;-.2618494;-1.5601254;-.20780362;-.54397994;-.27243459;-1.9107175;1.5984979;.76873124;.19961715;.10995721;-.53802484;-.54678571;-1.9899862;.10737181;-.81582016;.42112657;-.47998559;2.0671034;.69015825;.74741793;-.8844685;.11509937;3.3059003;-.021730928;-.77516109;.96695435;-1.7846826;-.032186657;.17374431;-1.3530006;2.2548802;.56991613;.20905982;1.1667165;-.68084031;1.2835251;1.8885543;.41293234;-1.6596158;1.2669963;1.1837295;2.7813301;1.1044068;2.6871097;1.3654258;-.46310496;3.3971522;3.5258615;.93277538;-.59451336;1.040501;.22831713;.93347669;1.4631004;.91915369;-.12726855;1.5058573;.16568241;-.47636247;.72828197;2.2407651;.81291431;1.0198884;-.80020124;-2.941771;.47039738;.82888001;1.1740768;-2.0787203;1.6984032;-2.2381525;3.6085541;.59799308;.89260054;2.7655535;.48614055;4.404521;1.0121157;4.8436761;.57043785;2.6341453;-.65394396;4.2416949;1.6987286;4.8894339;.9668377;-.35734746;4.0172811;2.110065;41.126736 +-1.1694069;-.77524596;-.66953611;-.2040309;-.2593174;.57421011;-.4198935;-.22418374;-2.0784488;.58663058;-.57368559;-.87075883;-.023847051;-.10286397;-2.5545135;.14765114;.75723702;-.087338619;-.31278124;.42799529;1.2082691;-1.6195543;-.8965084;1.1298344;-.71292692;-1.4004394;1.4264275;-.57491606;.32280603;1.3495939;-.33876562;.39146641;.11782108;1.48048;.23065795;.86237496;-.24169305;-.74499297;1.2515825;-.16910814;-2.06267;.38895601;.43616626;-.015396233;1.7179755;.56334239;.6878733;-1.5851681;.37366238;-.13192268;3.9055347;2.7688811;1.0753645;-.37824175;1.8004934;3.6567695;5.566339;1.9730899;5.7641449;3.2873464;3.5892522;2.0964625;3.832876;.52350181;1.7984335;1.0870501;-.55299032;2.8068123;1.9338628;.32524332;1.2712723;-.083757684;-.23855023;6.1832027;2.0579553;.32542902;2.8878911;-.70289898;3.989471;-1.2940779;6.7063179;4.4683676;4.4377651;1.9085916;2.3916926;3.8521142;2.4021709;3.2826338;2.9496922;3.4606638;-.0033624333;1.4972811;2.7479815;-.50139117;.82069343;-1.7383128;1.8572108;3.8739777;1.6733174;3.4758015;-.54564023;-.10105818;.50605774;1.0591748;-.84009594;2.6490967;.66542786;-.068405136;-2.5493076;1.6108019;-.041526958;-.048148386;.83409327;-.15820532;.10124357;1.4141777;1.4307863;-.61435926;-2.4010913;-.51895297;.21752982;.17206816;-1.6119391;.55022997;-.081687011;.50063777;1.2892708;-.6827631;1.1552817;.42953438;.98184329;.41571197;-1.8563826;1.7772996;1.0994415;.40855074;-2.4659581;-1.3124689;-1.5607917;.42696059;-1.0824448;.97208649;.85113215;-.96672696;.96739137;.70344698;.35294932;-1.3877356;-.40137124;.38551331;2.0186872;3.5244722;2.4273276;-1.2823936;-.71715844;4.5587029;3.2768948;.048649747;4.1138754;3.4450424;.93607014;1.1045799;2.8971004;-1.4501472;1.8103503;2.5074925;-.48444772;1.914938;-.37436882;-.14527202;.31602022;-.63352168;-.96519512;3.2303817;2.7841008;-1.0901214;3.1844153;-3.1978924;-.28201801;-.067726076;4.0359812;3.7917955;2.0005004;1.5748148;2.1675813;3.2995472;1.1284299;1.8350198;1.3104367;2.074183;1.215909;2.3226016;3.2464662;-.80039299;2.1360674;-.058733948;.76709849;2.49629;1.2009188;2.9056568;55.698608 +1.5147043;.40436429;-.7032429;.26543012;.087695651;-1.1798095;-1.2866935;-.69280785;-.57901108;.22803034;1.847809;.64171892;.090139732;1.3010141;-1.4850926;.50768608;-1.0676563;.8323946;.62490553;1.3161809;-.98713714;1.0441947;-1.0875354;-.039987635;1.1351703;-1.9654456;-1.1678842;-1.0535583;-.4746666;-1.2707206;.66921443;.55263269;.68272597;-.61425489;-.47786543;-1.2252291;-.87165135;.24735951;-2.848969;-.034732807;-1.154651;-.62122715;-.10431945;-2.1265793;-2.0892503;1.1088703;.61204362;-.89186335;-.83124614;-.61760372;6.1300259;-1.6549604;2.6886907;-2.7980118;-.23901764;-.81587136;3.6438689;3.1045797;5.2659049;1.0514303;1.523778;2.7039795;2.2110023;1.5588703;-1.0835689;2.4754388;.40749383;.46976158;1.9922501;-.24734518;2.2413945;1.2339082;-.61714953;2.5491953;5.1068349;5.370594;.85150087;2.92223;5.7496977;4.3661051;3.0011828;2.5371366;3.8732107;2.2637553;4.5028644;2.5156784;-.050339103;.017623097;-1.522741;5.173233;3.387594;2.0535662;3.3386772;4.7210612;1.6239897;4.9889565;2.7947426;4.6916666;1.1818585;.41286525;.16821781;-.0055255322;-.23308894;-.16152865;-.30459329;-1.0662214;-1.726156;.032099228;-.12302005;.17602664;1.890672;-.034782931;-.0031570527;3.2683535;.77436191;-.38253951;-1.6599909;.95906907;-1.1735617;.577411;-.53287101;1.4024578;.34738925;-.13464026;2.0085683;-2.3698914;-.46387979;-1.4855115;-.26074395;-.81994915;.89106953;.74126452;1.687444;1.1431326;.49198452;-2.3183;-1.3892003;1.1483994;-2.2073119;1.3498071;-.27888474;-1.5608617;-.48910287;1.5480981;-1.070186;-.52405936;.7749632;.26129404;-.60239416;-.121659;6.1321335;-2.9681411;2.1782115;-1.9767338;.22160612;-.35593534;2.0169451;1.3635617;4.0849104;1.1585568;.4752101;1.4195328;2.5163283;1.0119503;-.96535629;.84267688;1.637754;1.0587862;.076087058;2.0278833;.27661219;-.88526165;-.93284643;1.2431438;1.8757256;3.5427794;.76288819;1.4421645;4.6902313;2.0090296;.27961603;.90981114;4.2084293;1.7405223;3.6048434;1.7388117;-.076468125;-1.7962877;-1.4501258;4.0170321;2.7620046;.90199602;2.1822824;2.4507301;1.8508899;4.3696284;1.5291463;2.9095483;-1.0983478;-.33747378;45.291218 +-1.6273884;1.1482213;1.1914835;.41615272;-2.1184971;1.1580483;1.356817;-.34146264;-.19507924;1.3045011;-.66639316;.41216218;-.45627716;-.22873767;.56186628;-1.0104706;-.58342379;-.14207323;-1.1055968;-1.0661306;.1074115;-1.1504092;-.38002789;-.75109178;-.60519022;-.4421224;-1.241269;-.24401163;-.33211282;-.24785715;-.64065224;-1.2458161;.37603983;-1.1376313;.53144735;-.54754746;-1.3625144;2.8054781;-1.5250762;2.0784585;-2.2936163;1.9908279;-.66569746;-.024561973;.68673193;.23684338;-.5109852;-.22983019;.11413108;.55439544;2.099926;3.2513657;1.9425606;4.0425;3.3106799;4.0473289;1.8568391;1.5577348;1.4270129;2.0972574;.42696071;4.9423075;.51775479;3.3925552;1.1819359;1.2057577;-1.3288008;1.2420028;1.9942679;-2.4024515;1.4244996;-.11523855;2.1674855;2.9722774;-1.5567229;3.6273174;1.5661008;.81273609;5.266026;-1.7745574;4.3026385;.26121032;1.0313362;4.0571594;1.512368;4.4087472;1.7379656;1.7827821;4.4416761;-2.5023415;2.7513368;-3.0751305;3.1574953;2.1920967;-4.6044869;3.4701784;1.1413519;.23497286;3.7174814;5.0170345;.38846517;-.10275643;.77102619;1.7105176;-2.8695903;1.8882495;.7674678;-.10631998;.047343992;1.4661372;.8660112;-1.2719622;.36185837;-.3239665;1.1571866;-.086921625;.82050365;-.49944937;-1.5359808;-.45001194;1.157696;-.32321709;.56973088;-1.2131709;-.9121148;.47388351;.98800248;-.50962472;-.53749788;-.91203487;.22021486;-1.8651804;1.8797456;-.82385337;-.10468061;-1.3548443;-1.763391;3.2751007;-.12485983;-.16103625;-2.0006876;1.7890548;.26359993;.40813345;-.067075945;.82395488;-.18616982;.41064617;-.12101024;.93543577;1.318557;3.9051657;2.4869754;3.1069326;4.3607197;2.9172034;2.9503269;.2208235;.62226874;1.6059779;.024461366;1.6376343;.67152035;.86664748;.53916895;1.0631367;.93825328;1.4637806;3.30954;-1.1418279;.24412604;-.89825594;1.7271638;2.3468215;.58967018;2.5162337;1.9918076;-.23385832;4.35917;-2.157429;2.769206;-1.1271346;1.415808;4.0572491;.68418801;1.9821509;1.5358796;1.2062253;1.3687892;-.77994561;2.2118239;-2.178993;1.0245119;2.5629272;-4.4029408;1.8435595;.71551263;.43814135;3.617394;2.7450094;37.915081 +-1.0339899;1.4231935;-1.1909982;-.84149379;.014153571;.10979872;-1.3992589;.56215721;-.96221668;2.1164234;.22846989;-.091405466;.59364158;1.1749922;-.40506038;.36627308;.63159692;-1.0826324;.98437756;1.1804851;-1.4898356;-.1167977;-.95746446;.16212669;-1.4179481;-.11278005;.39530838;-1.0680825;.42602503;-.22862697;.65832108;.5972352;-.93650812;-1.1149175;1.0976497;-1.2645169;-.88498402;.96411318;.06447462;-1.5276363;-.91142154;-1.2294925;-.14245482;-1.9933891;.79628551;-.081252918;.28825662;-.32732871;-.52828753;.14357947;5.0964112;.5658111;-1.2054381;3.2419794;3.0804341;.67948592;.79646564;1.5466249;.87835997;4.0570059;.7050491;-.088122219;1.6227269;1.2705477;3.2546592;2.8895133;1.9704585;3.1201177;-.20675057;3.8099568;1.4555147;1.4423178;2.8623476;4.1757941;2.9530988;3.9272082;3.2478564;4.4763536;3.5281215;-.78576159;4.3971848;1.0109357;2.3259566;3.1501584;2.2563219;2.4637344;1.7817048;5.2154078;-1.2089366;2.8434026;3.0387237;3.312314;1.7462697;.67489547;1.7618719;-1.2364874;-.44732589;-.35834992;4.4784055;5.908783;-.50975555;2.0798061;-1.083549;-.73880756;-.51134115;1.2472637;-3.292891;-.39077517;-2.0224984;.52602851;1.5755185;-.67481732;-1.3466491;.66015911;.31266773;-.53360367;1.4349712;-.48032936;.63419241;1.2703503;-1.0466048;1.5253631;-2.046176;-.47592148;.84624511;.90791398;1.6969117;-1.7482603;1.8862402;2.1254013;.71491355;-2.0454307;-.055289842;1.0943148;2.1417587;-1.2002257;-1.059009;1.8554794;.10831961;.21699981;-.18886162;-2.2427995;.021453733;-2.7604139;.86092114;-.032636549;1.4629718;-.70587301;-1.3962885;-.73008364;1.9602855;1.3038008;-1.6801645;1.2681942;.37872538;1.6797528;.22309805;1.4564623;.14682499;3.28193;.64453202;.61076206;.55361301;-.48402342;.77064788;.32075885;.59253603;2.0375037;-.040564884;2.6636443;-.076166824;1.7825109;.52678591;3.0453174;2.5969973;3.3270235;1.8589669;2.3498113;.35399872;.2348669;3.9845324;-.12480474;2.1461477;1.8379;.89198542;3.2288203;1.8922317;3.2535698;-1.2312009;1.8292038;2.8162458;3.1689794;.33879578;.93242157;1.4482996;-1.3508959;1.4178013;.39494514;3.3718183;4.000463;47.825966 +-1.6825457;-1.8187912;.011750011;-.98691851;1.3816737;1.6939768;1.588448;.83902174;.23343727;.20155133;1.0816646;.82490724;-1.2724074;.80226558;1.3204268;.58476359;.0049673771;1.3082641;2.5108254;-1.1408882;-.26398724;1.3195808;-.35743156;1.1119266;-.99239731;-.20915529;-.41913792;2.4419811;-1.5037661;.18226607;.14788407;.28603497;-.17865437;-.83600354;.1816168;-.26232138;.0048559802;.69095033;.44132999;-.99937654;-.18444367;-.010736149;.63273501;.14619508;-.31110218;.33844498;-.76405162;.37580615;-1.023162;.23159213;1.6073881;-.041933261;.34214979;1.2521602;1.554894;2.8949835;1.1029686;4.717505;.24881245;4.827024;1.2998174;.86801833;.34554961;1.1563585;-1.7696923;-.26040438;-.64341122;5.8502035;.57813764;6.4918003;2.6984048;1.004971;2.5192559;5.1831594;-1.1052681;3.8659987;2.1007097;1.0287529;.43825033;.30108061;1.6230104;5.2817607;-2.8842885;1.0708994;5.279428;-.13713053;2.4341791;-2.0454595;-.11417162;1.5614756;1.836845;3.2445588;-.54139918;.91513819;.61986744;2.8595409;-.65657079;1.756631;4.0479598;2.2277644;-1.8799065;-.97335213;-1.3670385;-2.1641519;.41788253;1.5404843;1.0343974;2.6456666;-.13236941;-.53573048;.62977749;1.8173107;-1.653551;.37295839;.73350245;-.094713978;-.52454829;1.2535154;2.2204094;-.10093391;-.87580317;2.546138;.47838005;.2181899;-1.2433926;-1.1635249;-.2714608;1.3408425;-.66377831;1.3696762;.47502604;-.13310295;-.62607574;.56447309;-.3935006;-2.2711122;-.15289801;2.8418438;1.0085704;.58701688;-1.0887904;.38660324;.42635715;.7847876;-.39127538;-1.3516569;.28711841;.54047513;-.50944757;.54916751;-.30829114;-.23198028;-1.0833229;1.3415254;.59584212;.36428586;1.6104798;2.5628717;.43237567;3.9678562;1.1698111;2.6070259;.26562619;2.0421994;-.2721481;.90525806;-.53075826;5.3048825;.067246966;3.252598;2.6619222;1.354334;2.322252;2.4898841;-1.013255;2.5472062;.39359164;.84323841;1.7504331;-.082874738;.4234488;3.9861639;-3.1139584;1.3315361;3.2507772;1.99508;1.5240293;-2.9398346;-2.5739214;.8541438;1.160719;2.7057853;.12425589;-.81136471;.63724309;4.0498056;.088238128;3.1298831;2.6856282;1.6915098;39.467705 +.7890439;.064518981;1.4039052;-1.4053292;1.4828229;-.40820146;-1.7002132;-.95347929;-.35039788;-.10978141;2.5624795;.93738621;.35483646;-.13131832;-.73440492;-.33703327;1.6223959;-.99101502;-.947478;-1.2250673;-.15068945;-.97573698;-.40693074;-1.0038162;1.2729721;1.2659016;.65200168;-.20713758;-.14143421;-1.901341;-1.6509694;.020117413;-.73574305;-.83359402;-1.2636328;-1.2691165;.24434823;1.2308991;.69295025;-.079816155;1.4102918;1.0709808;.33940879;1.3001941;-1.0940092;.13298148;-.037702095;-.25234762;-1.6809121;-1.3598385;4.2461834;2.1710291;4.0947671;3.169317;3.2127988;-.011324109;2.6585584;.79919726;2.839504;6.0055771;1.1891216;.20027827;3.5128679;-.77135444;3.1747513;5.751308;.16754116;2.0331032;2.941081;2.6110191;5.6991839;3.9711826;.8034786;.53889763;2.9211793;5.8737311;-.54139555;2.0927806;2.2258289;1.1176863;2.9252145;1.2436508;3.4231467;4.1390233;-.4328416;1.6673876;-2.7825809;4.3823581;.42929903;1.1466855;4.8608189;2.8218329;4.2379327;4.9123664;-.53630215;.97797525;6.2840099;1.7356654;2.5209157;2.2111645;-.68132794;1.1985728;1.6812021;-1.1943849;-.54631877;-.64217365;.36903471;-.52725536;-.1825857;-.50145996;1.7311049;2.1772046;1.0326487;-1.5000598;-.25801486;1.2165813;1.906653;-1.6141841;-1.0189297;-2.3416004;-.94385451;-.49002397;.64417958;.091153279;.31228697;.54163164;1.0212419;1.3399647;.52658099;-1.3187064;-3.1976728;-.38188553;1.3161179;-.89459074;.93362409;-.82197517;1.2125901;1.59838;1.2786077;-.901052;.6934607;.53522998;-.49252707;1.1784652;-2.4202313;.11114874;2.2254384;.024600353;-.94442731;-.38658994;2.3884323;.44208393;1.6576779;1.1454846;1.1671398;1.1482002;.085526556;1.7503498;2.0774567;5.5155172;.582174;1.6536285;2.62585;1.1369053;2.9352896;3.0144029;-1.8921741;1.2432685;3.2750256;.95150715;4.5216732;4.1102114;-.019022195;-.42969733;1.488699;3.3064973;-.32251266;1.4581944;2.0416698;1.0922233;3.9154203;.70435739;3.7860513;2.0667968;-.57468355;.99197;-3.0457957;5.6539917;-.61312538;2.1570096;3.1389575;-.52782005;2.3280568;2.0345221;-1.8993105;1.0753617;3.0417414;.33095667;.53109884;1.6425799;50.639507 +.075068749;.30191088;1.6389246;1.2843878;1.6703696;.48686117;-1.952849;-2.7180843;.10372254;1.4292375;-.66076589;-1.7459099;-1.2414623;-.97993064;1.4282963;-.83300602;1.7508122;.35489434;.21846643;-.040319301;-.5983268;.077022925;.48686442;.54032195;-.99382609;-1.0029866;1.1278793;-1.621653;1.9045695;1.5683782;-1.5630476;1.0752668;-.67379749;-.14392361;-.30929396;-.88404655;.18442388;.80635005;.58013582;-1.6207316;.99649268;1.0823493;-.56276983;-3.0865319;.52849269;.0010638481;.48332712;-.16311811;.16412587;-.72983271;.56567234;-.6383484;-.37258267;4.1113296;4.2974606;3.6257222;.87380546;3.438144;.56083977;1.0767056;.45290819;3.2830596;1.4228421;3.0187173;-.11621021;1.4983581;2.4195223;5.7137008;1.9205654;2.4187689;1.5476865;1.3457844;2.2253864;.59548998;2.9519112;3.1475732;1.3978404;4.2878084;1.3113434;5.1709614;2.0354047;3.7709157;2.2413583;.59026152;5.9110665;2.5373182;.44928578;6.7258468;.69710541;3.7260499;2.659024;3.8397181;1.9585695;4.2057004;2.6629262;-.047030788;1.8678598;5.0075102;1.9292331;.77927375;1.4650644;-.4846977;2.3514946;.19270571;1.0909446;-1.995025;-2.43223;-2.2531588;-.73459446;-.2740846;-.66028303;-2.0454459;-1.670054;.97041881;1.1609863;-1.4638406;-.71347034;-.361451;.9127416;-.030136509;-.91601336;.59359884;.79806799;-.018544419;.21662316;-.92687368;.0011629041;-2.0864196;1.6573933;-.23887715;-1.7786868;1.2197415;-.23709887;-.47980133;1.1039263;-.028814545;-2.2495897;1.5313267;-1.4779999;-2.485544;.64886314;1.3232825;.56572104;-1.6322346;.19717599;-.73968351;-.50192887;-.56255245;.31809187;-.98317873;-.27521995;-2.3379395;.29284781;2.6464;1.6381544;1.091031;1.8848257;3.3620298;.87961894;.2610862;-.50085181;1.8575063;-.59063399;3.2000954;-1.3173292;.67795676;1.5357012;2.0146229;1.55365;2.4972303;.65201259;1.7138449;-.30162686;-.58495349;2.1149867;2.6116428;1.9859201;1.8337848;-.76245236;4.0788836;.71339655;4.2308693;-.58868682;-.062613018;4.7934155;2.9459348;1.0227605;5.9855652;.57675922;3.0889134;.41306585;1.9942987;1.3282596;4.0183849;2.4180448;-.083850995;2.5997231;3.9390519;2.9928243;-.66626364;55.534264 +-.99320239;-.38503212;-.87996286;.47102931;-.17378557;-.16377158;-.42483735;1.0306264;-.14608955;.49151632;.44416511;.72030401;.0640378;-.48012537;-.88819176;.50354379;-1.8633347;.090529427;-1.1103188;.25825694;-.57116997;.99076039;.28172228;.63049966;.28451934;.22261672;-.09570045;.063661851;-.36191165;.4876405;.65173161;-.4510749;-.64027023;.23151797;1.3948714;-.19428718;.7928853;.31496325;-1.1764879;.69769192;-.75379914;-.093307458;-.15486595;-.053163491;-.90141129;.27552238;-.1682763;.52728981;.77765632;-.58902419;-1.4738595;3.7207801;-.23864678;-1.5266728;2.1888154;-.9613719;2.2087388;6.3870459;3.65835;.85468638;4.0664034;1.890689;1.8764188;5.4786468;4.2069912;.22571677;2.0194263;1.4506006;.97969645;2.1637044;.83135861;1.3248451;2.5287318;5.0289221;3.3515079;1.660192;1.7415855;2.4549139;.91715711;5.4278345;2.9449644;-1.0421572;5.7228208;1.9417895;3.3845639;.65276575;2.4825416;3.4448779;2.1658244;1.2575929;3.6123693;.65107763;-2.39979;-.75466359;4.5968242;3.7374845;2.8058124;1.6926436;4.2964435;1.6929426;-.89341396;.039771229;-.61702007;1.149336;.39444277;1.6138418;2.066541;.12325387;-.3802532;.37963116;-.26469478;.0337842;.3727344;-2.1300957;-.1308835;.52796066;-3.007525;-1.8170012;.10875256;-.0023129608;.022845762;.14147754;-.50651342;-.18433709;-.14051364;-.95975071;2.2974429;-.44247687;-.28425419;-.51077133;.50518262;-1.5179079;-1.1249499;-.68192369;1.5142672;-.88043934;.88252395;1.5143367;-.83905202;1.44985;-.7467038;-.33713093;2.2444758;-1.1197335;.1797661;.49475089;-1.1884772;1.387285;.39743525;-.87041539;-.25650907;1.243371;-1.1130254;-.75201911;1.5836672;-.9130072;2.8832395;4.5707402;3.2994461;2.4887516;2.441638;.67969078;.47735429;3.016891;2.5749865;2.2010489;2.6542156;2.2041478;2.3902543;3.0493045;.60811561;1.3610173;2.3050125;2.7513828;4.431942;-.094171025;.63437301;1.6931208;.84915864;3.3058677;1.8970824;.1703067;4.8007288;1.5964838;2.8200915;-.49170828;2.3035736;2.5407915;2.1363058;1.2541181;1.3047799;.26222217;-1.9045482;.36262798;1.690699;2.0237978;.90661293;.58081704;3.3618195;1.4038309;50.879375 +2.2580452;-1.2836968;.50634629;1.3877667;.72497219;.70051336;.10975605;.34450343;-.13568351;.022175528;2.182338;-.2617752;.12332582;1.6981065;1.1975899;.97899258;.54183757;.70152229;-1.1127596;-.03487955;-1.2878133;.34994766;-.20711584;-.8859061;.64025891;-1.2452518;1.0370861;-.63056821;-.83565938;.5874812;-.44525614;-.63981193;1.6647382;.91614628;1.3141876;1.6314882;.59923464;-1.272869;.44403383;.24176572;.3910453;-1.1965555;.94148636;-1.0265719;1.0889189;.33943099;-.46819299;-.0047354666;1.0323663;-.57655901;-1.5379905;1.5527934;-1.3535206;1.6116593;1.3134347;1.0588435;6.3430328;-.22402105;2.2590342;3.3035614;3.3574753;1.1781898;-.206118;.31034419;1.8477647;-1.5976006;-1.4979634;4.5458488;.34849778;4.4871902;.2926982;.89146256;1.0551338;1.6133238;-2.8224428;2.5304132;2.2480586;.9597705;3.8236811;4.3278012;1.4364506;3.9698513;.068441682;4.342999;2.5204864;-.61136818;3.7524681;-.53191781;2.1656322;1.4457546;2.6710136;1.1668097;-1.9720291;.149177;1.6064272;-.72938687;4.4708867;.43179458;4.1922984;.42531672;1.5139141;-1.5552869;-.055025596;-.17976946;.29521835;.5059641;2.677844;.71289974;-.5071438;-.16624139;1.5105282;.16666088;-.042317726;1.956699;1.076322;.54146963;2.7488263;1.7495372;-.18879244;.79551691;-1.6425965;-1.0524882;.4506928;.32015142;.71033037;-1.2856873;.72445208;-.82679242;.2434947;.31418672;-.57977438;-.53326941;.37266025;.47324681;1.7587163;1.3192883;.76054704;-1.0587635;.38811991;-.20774375;-.096650414;-1.5836767;1.218083;-.73846948;1.5626831;-.32890069;-.03227422;1.277249;1.5782939;-1.6134684;-.18209162;3.811384;-.60454255;1.6200863;.26637185;1.4246187;4.6482887;.43670198;.84837854;.91531074;4.0176053;.95196235;.77208197;-.79933488;1.2769495;-.75597119;-.59349799;3.9589961;1.141264;2.4060171;-1.069803;1.5307035;-1.2684309;1.9016376;-1.9266686;3.0502019;.11073288;.69249201;1.8088908;2.5556262;.21888462;1.5759414;.016056251;2.2187912;3.1302302;.34540224;2.0813959;-.88904417;3.3532612;1.1094146;.88750207;.67194211;-1.1232077;.28735852;.86128938;-1.5692707;4.1894283;.38804892;2.9073384;1.9995304;43.831917 +-.67843175;.48487985;1.1776072;1.7805746;.28649694;-1.3666557;2.063576;2.8275948;-2.0560567;-.61415082;-1.0649401;-.032235757;-2.7751677;2.1138365;-.21077788;.15568031;.62043136;.12913558;.22891203;-.72526407;.69240785;.15462855;.097233139;.67124629;-.66083831;.060085393;-.30960244;.89765388;-.13426304;.47040349;.72328973;-.37370807;.85704082;-.25803488;.55573517;.22243394;-.68342102;-1.034404;.71305299;.002259342;-.81057566;1.2589378;-2.3765743;1.5570645;1.6301746;.28584084;-.92492563;.47873265;-.5671261;-1.0452807;5.0087519;-.86755145;-.33195895;.83654356;.78390402;-1.1502863;5.2896523;-1.1579304;2.5032012;4.1434026;.56783921;2.6117597;1.1804261;1.7073891;4.8350787;5.0042052;1.8861001;5.8390718;4.0132785;3.0825257;3.8337591;2.1604855;2.1498203;7.0908628;.61040503;.16532756;.72006619;.50485075;-.7100895;1.0281196;2.0484426;1.752509;.15853879;-1.0056098;-1.3969399;2.468863;.56362671;1.356559;3.8176472;1.3972614;5.2810755;.74151742;2.9169436;-.23072881;1.7581211;6.0496588;.75879991;4.0531907;1.96474;2.6003463;-1.6209809;.91032749;2.0150547;2.5276358;-.5648523;-2.2155936;1.8140656;1.0464826;-3.7707872;.35200167;-2.9667373;-1.4507359;-1.4901537;2.0254035;-.44411829;1.0572611;-.5109753;.5101589;.14095412;1.112812;1.3850572;.089905195;1.5282204;1.0447289;-.54483956;.61888248;-1.0270107;.88447732;1.4123547;-.30719894;-.83873618;.36159804;2.0759337;-.92731911;-.47637084;-.3623544;.1654629;-1.1995749;.11525986;1.9461236;-.53823555;.68959183;-1.8082973;.1372778;.8611806;.3515625;-.54112947;-.03467562;-1.2207742;-1.4538958;3.4202247;-.41220304;1.2446741;-.072064541;-.61182982;-.68939257;3.6637444;-.76408011;2.0804279;2.827513;.73973054;2.7498221;.031732947;1.0357236;2.1592991;3.0946012;.992755;1.872841;4.2340236;2.9965427;3.2667642;.81855488;1.2934259;4.086925;-.48961806;-.66382223;1.7830815;.91304964;-.70752203;.77159911;1.5917256;1.0272042;.1445733;-.11576573;.33219337;.98382384;-1.4299811;2.6183662;3.1126266;2.2495987;1.9880664;-1.6294798;2.2340558;.54561216;2.0407665;6.6702933;.8048625;2.4171073;.49654251;2.4360013;54.340302 +.65254772;-1.6950268;.72597873;-.56267893;-.72970295;-.84760731;-.78003722;-.61557662;-.47615331;-.68069339;.79017723;-1.2396612;-.22249959;-.18269511;.54786235;.23492506;1.592019;-2.2934432;-2.2959239;-.93242544;.96201026;.1244885;.93698859;1.4313105;1.1285961;-.44270295;-.28221506;-1.5983635;.034750015;.12003634;-1.1102875;-1.0717711;.67718744;.44593588;.27159345;2.5560651;1.2213261;-2.7318044;-.88915581;1.2939258;.68338329;.23843847;.2088232;-.49607596;1.6874512;-.48943669;.060222924;-.63611192;-.2473776;1.262466;2.6454003;3.8774433;4.6338964;.84628242;3.2935834;1.9982593;.91997951;.21407057;-1.1529652;-.49898589;3.5745215;.98680991;4.2997284;1.6303118;4.6966;4.2914042;3.5491257;2.9995675;3.8043897;-.92507625;5.3438053;3.1228526;-.26767099;-.55098557;.067738667;4.4502883;-.95305318;2.5084429;-.60027796;2.4366138;2.5056698;3.0143762;.70891398;-.77856219;4.7878308;-.47521895;7.2117748;1.4533404;4.9637909;-1.1463647;1.810758;2.2717712;6.2742481;1.6736668;.79123884;2.9039617;5.9080372;3.618314;-.71819162;1.7536622;.59042555;-2.4346015;.21969481;-.98620981;-2.251713;-.43226057;-1.667871;-1.2356678;-.21511935;-.66357994;.012614097;-.96687031;-1.1035715;-1.423138;1.2761086;-1.3412268;-1.1354985;-1.2406298;-2.9882877;-.97052944;-.59717566;-1.5628339;1.1136185;2.3981349;1.426985;1.4540186;2.2117119;-2.1472955;-1.738973;-.43676063;-1.3810244;-1.1024382;3.7021501;-1.0105692;-.23020399;2.1292481;-.20232244;-2.6095922;-.016259369;3.0806413;.12714216;1.1826544;-1.0187101;-.70664459;.93906456;.25062588;-.64922142;-.21995439;-1.7773738;-.87289858;3.1682956;2.1822;4.5213418;.30331004;1.3508109;1.7839692;-.59304392;.52502793;.32906154;-1.39896;1.4367423;1.1173176;2.2425857;1.4432683;2.8224304;2.4334955;2.3436556;1.2018229;1.773465;.99761617;3.7158382;1.584124;-2.1336513;-.37735534;.098378465;4.2573681;.67474365;3.0090704;-.47835645;.5075801;1.6214471;3.2752454;-.18014196;-1.5618439;3.6043646;-.48790464;6.2616949;.57855541;2.279418;-.59538716;1.3729235;1.501277;4.6002774;.50649613;-.71271515;2.0428178;3.8591123;2.8681412;-.69521773;.92741662;61.042545 +1.2897328;-.29935622;-.29946858;1.0974509;-1.2723078;.014151732;-.33884311;.95055014;2.0596991;-.04458091;-1.9641131;1.3777777;-.46886939;.49722594;1.2847953;.10381716;-1.8596277;-.0024530746;-.063489847;2.3081467;-.76525104;-.13541299;.018018955;-.63595825;2.8150876;-1.0860085;1.0854595;1.5050039;.98488361;-1.3926442;-1.4965878;-1.0792075;-.7391668;.1236942;-.63307458;-.74570972;-.41694042;1.2396147;.081132799;1.6795465;-.8467468;-.6208176;-.50315696;1.8908122;.24482897;-.55190492;.27290872;.012933448;.91127682;-1.2103081;1.8064212;.4703382;3.6692295;3.4949353;5.5434985;3.3825982;4.9365773;1.4496251;.30465227;.09598501;2.3760619;3.0512726;3.5548642;3.5408452;7.1833906;-.7789228;-1.4468033;-1.2658845;6.4351463;1.7671827;2.1416974;1.2112229;-.81061572;1.379717;-.25213802;.71074086;2.5923169;-.50257838;2.1064014;2.5117626;3.8917418;6.7718091;2.3115451;.77690041;3.2336349;4.6055331;.56953949;2.4118228;4.2974515;2.5978737;2.4907358;-.8244366;3.7191219;1.3428385;.13335228;.8696813;3.5650957;2.2307749;1.0796942;3.1066041;2.5255072;-.76130557;-1.9068474;.62919331;-.6695891;-.60037923;-.1430756;2.2607841;.82937413;-.13588455;-1.9107252;2.9395673;-.86583561;-.86952728;.43866539;-1.6017607;-.68752885;2.1281061;-.30319718;1.5608435;-4.5239229;1.1904442;-1.4442463;-1.1928986;3.0368886;-1.3653144;-1.6438621;.39123395;1.7079862;-1.4967556;.17361294;-1.035975;-1.0757531;-.10967812;-1.5468093;-.77982408;1.1379173;1.3543309;.5288918;.27651873;-1.8622742;-.72215581;-.48409149;2.2736704;.96499592;1.039229;.48250413;-.5145402;.36767972;-.41376427;1.7204025;-1.3819542;3.1715124;2.1964369;4.3736835;3.5754678;3.5167279;1.5657679;.48733795;-.18634157;.31315452;2.3786509;1.7163334;2.1684527;6.2075791;-.86304265;-.7949056;-.73762941;5.7630124;2.2996402;-.56281376;.86160982;.47490111;2.4339654;-1.1279769;-.41591835;1.501756;-1.8446701;1.3291199;3.6217475;.77105707;4.3063211;1.7673886;.92877245;2.807163;4.33389;-.72079104;.94275111;2.9992499;1.8011616;.62862784;-2.0721843;1.3793659;-.0075354688;.76497144;2.2410431;1.449443;1.9877312;-1.1939445;.88494629;59.02647 +-.59631091;.37442565;-.18847358;-1.281661;.1515958;-.50513721;.29783374;-.08806666;-1.2596716;-.21940772;-.65627843;.201006;1.4405836;-.60082573;-.42702398;.03196118;1.2251475;-.36888751;.3452791;-1.8732532;-.54984605;1.0284142;-.20735107;-1.2121297;1.2028003;.72286707;-.70875484;-1.5559766;1.8647037;.05000427;-1.5864093;-.56587428;-2.0434949;-1.3049209;.73861593;.89116675;.38890108;-.069786206;1.1803789;.75834203;.44621366;-.53344399;-1.5842595;1.4544588;.16114482;1.8204103;-.26611677;2.0574977;-.70913273;.20218448;1.0655961;4.575912;-.25591663;2.7268767;-1.1019393;8.3118649;-.96238583;1.5638933;1.7462401;3.6392026;-1.2248108;5.7927189;3.0521386;1.9450874;-.68620247;-.79906851;2.8393464;-.12195934;-.20893948;1.0162342;.44927832;4.7027383;2.7961211;-.62458968;2.2203796;1.9249401;.30019814;3.6875288;-.32967114;1.9789633;1.6685573;3.5487027;4.503664;1.9186487;-.27786717;6.6809072;1.7949594;-1.0312119;.51985645;.38344821;.3137475;3.2002432;1.1022269;5.2948861;1.5263677;-.081492722;4.8764462;1.4382422;3.5151064;2.9487679;-1.8826119;.51769447;-1.8128742;1.1350503;1.5742102;1.4820808;1.5455937;1.0364805;.55233598;1.2560967;-2.6877136;-.028345615;2.0087359;-1.4219182;-.62477183;.41810343;.31354448;1.0811844;1.3343897;-1.6460822;1.3108511;.34748408;-.99131858;-2.2201986;-.32529324;1.0659035;.48397875;-1.24129;1.2474414;.88111436;-.34058183;-.54571563;.42906314;-2.8353515;.18867438;-.82291144;-.72323233;-1.3925431;1.812838;-1.0482668;.41765666;.76295173;-1.3625054;1.8812304;.69694632;1.0284002;.2492431;1.6991624;-1.7745103;-1.0226985;1.2495298;3.1295896;-.18692727;.83017421;.52876461;4.1506195;.20919041;1.7079806;1.6560717;1.841819;-1.1540698;3.1084883;1.1500735;.47484574;1.0564278;-1.1511275;2.2110379;.035643216;.5735662;-.25788507;-.29360616;4.6274438;2.8343108;.82049;2.0351698;1.0424048;-.52784133;2.0938652;-1.2583325;1.5147307;1.4073396;3.0561817;5.0074744;2.2039938;-1.2689106;3.047168;2.2690725;.28642505;-2.142302;-.70616865;-1.1621109;2.792913;-.67643666;3.6748133;1.9544977;-.17180286;6.5475364;1.5448208;.5833528;1.3096319;48.556255 +.11691013;.42360339;-.62034696;-.02988876;-.90790069;.26191527;-1.3830827;.50178969;-.082606338;1.5474492;-.67332041;-.74602318;-1.2629786;-.042747252;.15702845;-2.2077014;-.68975246;.4070453;-2.0335462;.25860041;-.48632166;.31892964;1.072657;.11983372;-1.100113;-.33205375;.5611186;1.823693;-.13736339;.74900031;-1.5615326;-.97027802;.45056352;-1.8743819;-.44243884;-.68898267;.044492707;-1.2581813;.53703099;-.1509096;1.1348191;-.61083841;.33629718;-1.3205748;-.25380841;.66909069;-.17683974;-.14450209;-.38800737;.17174663;2.5631404;3.5736749;-2.9781656;2.8199332;-1.1843995;2.4415114;-.027522352;2.2323275;.57225794;4.3308277;4.4181347;1.8119252;4.508481;3.2888794;2.045228;.47805852;-.98333544;2.5992992;4.089087;4.3656998;.85104769;.69463778;1.1381245;.92259991;2.4048486;3.2736194;2.0957491;-.92620957;3.8294449;3.3856962;1.1043071;-.56196362;2.8016837;2.6304264;2.5879276;3.6532857;2.646621;1.2285426;5.9446964;3.4269297;-3.5747693;3.5163321;1.7188339;1.1947552;1.7478486;.78206944;-.37513945;.42844483;-.90892255;4.0644355;-1.8604373;-.95361489;1.2102746;-.8862381;-.96492147;-1.3693793;-2.9493253;-.038360097;.40552497;.89318937;1.130823;-.23169963;-2.8673387;-.44420278;.50837886;-.99018431;-2.8328764;.06337703;-2.3727005;1.3083026;-.31123236;-1.1662529;3.8277857;1.1997372;-1.1410251;.72519416;1.188445;.15736856;.25874054;-.36789265;-2.5102036;1.5585189;1.7680573;-.79178059;.54357672;-1.8052788;-.076510176;-.096078858;1.2243166;-1.1926459;.75909495;-1.145788;-1.013657;-.3624483;-.37376872;-.52809834;.65695339;-.22898321;-.79846478;-1.6346211;.79230744;2.2411144;-2.6853037;2.5051265;-.2610544;2.829356;-1.1338365;.79030228;1.7088633;2.6038935;4.2112298;2.3066294;2.6785531;2.9487824;.88582063;-.95131075;.042829107;3.749542;2.1428342;4.2317948;1.0145227;.35354671;1.3898976;.10335536;1.7286689;2.769382;1.8144196;-.27851045;2.818146;3.3973622;.54968035;-1.0537492;1.834971;1.6599467;1.3012553;2.5546627;-.82351309;1.5765212;6.9475183;1.9966718;-2.2841196;4.2629685;2.183866;2.1947711;2.4009418;.66913158;.9762193;-.84114182;.30822489;1.6235263;40.82093 +.97406787;-1.6389122;.97028375;1.4474884;-.7574051;1.1645043;-.84981024;.63075703;-.7674284;.26787755;-1.2984297;.5829947;.15221061;-1.4507214;-.5763858;-.34252617;1.2064834;.098476268;.33766583;-.27175048;-.023538738;1.4456111;.22643989;1.1823527;-.00020463059;-1.6399522;.60971522;.081131965;-1.2897718;-.096548915;-.044844285;-.66236091;-1.1433384;.27509028;.44966117;-.26639569;-.42427281;.15170605;1.4573551;.57308823;-1.5073352;-1.4639816;.62094873;-.078979582;1.5087855;-1.6035761;.0062148916;-.59501237;.99206561;-1.2261178;.8972311;.090767063;2.2221484;2.9648967;1.73295;3.5747683;1.2450707;.31517467;.25310618;.53960502;2.3593888;2.6095419;4.7778168;3.0913076;-.10801242;-3.2385209;1.3185139;3.0445619;3.3278978;4.0825658;2.6928885;.21591592;1.9707018;1.1019876;1.6287619;.2265552;2.3278728;-.20278302;-2.8026276;2.9742286;-.4974393;1.9201946;3.5077529;3.6255405;.18122238;4.1594667;1.8864379;1.4696581;2.615169;5.3260717;2.2156856;2.2869902;1.5476116;1.6857489;3.6985965;2.3133485;-.50136429;2.8855782;3.5839014;2.1921387;1.7014475;.074283458;-.5670718;1.3883276;-1.176409;.22550848;-1.5056808;1.3291329;.076498412;-.92653602;-1.6674297;1.6827396;.05282595;.11329859;.13057607;.77531004;.86975312;-.11233142;1.5471413;-.2727879;-.69792026;1.8105565;-.066338509;-.57435954;.83156401;-3.7353032;.36812904;-1.5376227;-1.7609853;.65411484;2.3949902;-.016388239;-1.7488832;-1.1054233;.20514089;-1.0639042;-.40834573;.91193384;1.112576;-.14338984;-.65762126;-1.3497412;-.85815769;.16070457;2.6555979;-1.1010561;.10185501;-.073276237;1.9732548;.53143972;1.2610158;-.97929555;.69840991;3.0970664;.19243678;3.1713915;.13355753;.81686181;.19796343;.33833563;2.3634665;1.7469212;2.7398305;2.6169586;.14354211;-3.4923809;1.0811733;1.2487592;3.418093;3.7865992;2.3007331;.43929061;1.1713742;2.8192356;1.3590434;-.37902376;.64593166;.26239151;-2.1573234;2.4457669;-1.4397082;1.4221708;2.5809035;3.3441598;.11442516;1.8283408;.91744035;1.7834749;.76728278;3.0728018;.39940029;2.8988717;.17920981;1.1009107;.64848727;2.9538164;-1.1959432;1.5605658;3.4439225;1.43731;42.475037 +-.018770404;.080269985;-1.1254956;-1.6915108;.62012273;-1.0617841;-1.4737513;1.697245;.28905207;-1.3909872;.041814595;-.21370353;1.8373702;-.34809133;.89789534;-1.1108546;-.99953109;2.0001636;-.57632273;.94111407;-.79493946;1.1538188;.0365985;-.37854737;-1.0613747;.24727297;.33824492;-2.1403887;-1.3639979;1.2887957;-.38757479;-.71020812;-.79602689;-1.9996349;-1.8955852;1.8914636;-2.012701;-1.3852725;-1.8287493;1.9233185;.27528691;1.6180134;-.080271855;.41467664;-.67678183;-.0047052712;.78567529;-.25813755;1.0753781;1.1155901;2.8488576;6.5006089;2.1953373;1.8197422;3.8401465;2.5472577;1.8767636;3.4017015;2.8730752;-.45384479;2.2010381;.039090406;1.5397221;2.0365453;.99405652;1.9244565;1.7406538;3.456569;2.0716195;-1.2081332;2.5983274;1.3939244;.39600909;-.0060379594;1.6358359;2.7343063;.5727917;2.1732204;2.2401974;.88849503;2.2425044;.76539135;3.654012;3.0492172;3.0920112;-1.0847145;2.5388744;.92986858;4.0934057;2.2668715;2.349231;1.7881325;1.2920682;2.2556746;.25486344;1.0820442;3.2655954;-.84240758;2.4586313;.98904377;-.25142616;-.25538734;-1.8454453;-2.4879577;-.10824508;-.7829861;-1.4164743;-.098610818;-.57499099;-2.86602;.28483939;-.45271942;1.1080809;.19365166;-.058690786;-.68356359;-.60452467;1.247627;-1.1307023;-.10104039;1.915678;.6347481;-.40244254;-1.4454782;.063756429;1.4570652;1.5367844;-.95303303;-2.9430189;.66568214;-.3200368;-.21208404;-1.5535258;-1.2764643;-2.2244437;1.2656286;-.51955622;-.3549276;-.33823475;.27013731;-1.1254473;1.2122657;.46034896;.96283019;-1.895467;.86656809;-.37297285;.12779696;-.62805307;.1105088;3.3265865;5.496685;2.9568529;.1130967;3.4925485;1.6488583;1.2958993;3.0845423;3.2489433;-.094961859;1.3253959;-.8249408;1.9576705;1.7907629;-.63880318;1.2903217;.54990393;.97115588;1.8436829;-.36112201;1.8927885;-.31099856;-.41836026;-.70339358;-2.1003926;2.7546585;.36960879;1.9143261;1.7052435;-1.8299978;.85937202;1.5832211;2.7463818;3.0976474;2.7875128;1.2405022;1.3506573;1.5322396;3.1053803;2.217241;2.0949419;1.1943231;.99369979;1.415246;-.024327526;.60230798;.96294844;.60347009;1.6502314;1.2806501;41.759041 +.43835142;-1.0255711;-1.2966183;1.5615455;.062841564;-.30205661;-.00043189334;.079434477;.63841629;-.80189097;1.6690513;-1.2049792;-.0452413;.82090539;.20907156;-1.2740477;1.144848;.31519973;-1.5453789;1.5564418;.61235332;-.27825758;-.98075175;.15514341;.23821534;2.5258405;-.66990399;-1.0621541;-1.2711549;.25713652;.82016617;.27505156;.64905441;1.2979991;-.089351349;-.19128636;.21777043;1.6264669;-.92096448;1.1139348;.92128187;.12772933;-.024336407;-1.9362504;.69562894;1.0147154;-.058661193;1.0510404;.60934186;-.12340528;-1.3658669;.19726454;-.0040375451;2.357331;-.82381332;4.4672632;4.808095;4.974227;3.6978235;.047421977;.094445735;3.5541606;4.7521286;3.9629269;2.0148621;1.0206901;4.5964379;.95492989;1.5634797;6.2860279;3.6953244;5.5140595;3.2124622;1.5906972;2.1476207;4.0577536;1.0562541;3.9916987;-.41480252;6.462635;3.3063846;2.2548499;-.90270311;1.4497293;1.340041;2.9721537;-2.0435095;5.6055007;1.9919116;-1.3012439;1.7840973;4.1857214;4.3246698;3.8427763;-1.3293467;3.3188207;3.3933754;5.5285397;1.8065951;-3.3813372;.1599514;-1.3455982;-.79569417;1.5416739;-.07818988;-.31176606;-.51746082;1.8946726;.59293389;.55832237;1.4549452;-.86551273;-.98296624;.97704238;.47447819;-.77891499;1.0146644;.63789588;-3.0303323;1.6433429;-.091297738;.15980779;-1.6425815;.30048725;-.5003022;2.8597598;-1.0267464;-.18244535;-1.1023508;.89054966;.048015427;-.093317084;-.36728057;1.8250879;-.13475616;-1.1024855;-1.1777;.52936924;.1055201;-.15972528;-.59942526;.81969625;-.52839941;-1.1074785;1.2550615;.94936204;.70163107;1.3626518;-.48533487;.1727291;-.92265344;-.61695337;-.025063913;2.4549155;.53362083;3.3962803;4.4696865;5.5507302;1.9173836;-2.2453358;.41638067;1.4118481;2.075335;1.8259798;2.1570399;.44761372;3.5254872;1.2029018;2.1071234;5.0495486;1.8626162;2.3561554;2.7753081;.3865099;2.9620402;2.4572389;.4575437;4.2693682;-.57922471;5.4829078;.83561867;.57606131;-1.1966664;2.4236288;2.4886975;4.6411357;-1.539295;4.4301414;1.7740499;-.29984307;2.3458087;2.1842766;2.698791;3.4569898;.90618408;.56461656;1.625764;2.0579617;1.6618706;-2.7827175;62.618351 +.53554374;-.42199704;.54922843;1.469674;1.0382828;-1.6212869;.66798949;2.1304512;.80636388;.30218536;2.0914929;-.10733142;-1.662882;-.87231511;.61106271;.61674899;.97827816;-.58199334;-.55618018;.4653191;.60471642;.45044196;-.1170066;-1.3902663;-.59335786;-1.072378;-1.1021568;.048520736;1.0992347;-.4142296;-.74086857;1.8347862;-1.2391727;.14838088;-.1689526;1.119777;-1.3070682;-1.6622647;-1.1034566;-.95859253;-.36068738;-1.3156431;1.4476455;.54627907;-.7850492;-.0099555915;-1.5724474;-.27199882;1.0742441;.94145453;1.3288326;3.1723881;2.1342754;1.0094956;3.3627582;-.12373356;1.5282785;.81676406;3.3267961;-1.4173148;.15859632;-2.4632177;-.63647842;1.7546282;.93264556;.93480128;.51356184;3.0936897;.18612269;2.0357771;.15356067;3.8261802;1.3435179;2.0100574;4.6567578;3.3830781;-.54867357;2.1901269;4.5081401;4.1887794;.78305131;2.3246672;2.7244122;2.5496547;5.8911972;3.5677159;-.49331945;-.70557994;5.4949675;5.0239244;1.0934759;5.8381581;.82988763;2.1560318;7.8604956;5.3963885;5.0394101;.78885299;1.8869385;.53473747;.60931581;-1.8228165;-.68769348;1.3400731;-.65649384;-2.2582357;.65737647;2.8040903;-.11485825;1.8859053;1.0888206;.5726819;-.97145051;.27529049;.14866966;.44980836;1.4512274;-1.6723943;-.44408026;2.1028442;.79969424;-.30208999;.45918065;-1.1932927;.69036591;-.43670735;.40688556;-.31215498;-.2259414;-.85500187;.020602658;1.4893328;.82547379;1.1008412;1.3438321;1.3215679;-2.10481;-1.9947189;-1.1837271;.43843868;-.71799606;-1.7022299;.13077472;.12619431;.56045455;-.131356;-1.9597608;.38345259;2.1892617;.7306686;-.35762623;2.0513849;1.0822383;-.33752578;2.5625916;-1.1060849;2.7638075;1.0015759;.93166244;-.7212196;.11033403;.02887517;-.61905742;2.6552455;1.0459595;1.9394287;-.60656512;1.623298;.098765641;2.0210049;.088267848;2.6984484;.98623776;1.4226636;4.6710262;4.670465;-1.079167;1.6087892;3.6238;1.83621;1.4550129;1.0673119;2.8491974;3.0587749;4.1450801;2.4799464;-.012966601;-1.2362707;4.4892101;4.3652697;-.23424748;4.7289581;-.041025814;.29577374;6.6817584;3.646904;2.0961697;.7118749;.28828713;-.1171267;53.09309 +1.133227;.92737341;.95389253;-.70199919;-.74402833;-.27789336;.82210159;-.52798027;1.2744108;-.79201806;-1.0863031;.40694577;1.8053687;1.0457771;1.0320212;.95176399;-.035607148;-1.2847711;.071618035;-.81672776;-.58579999;-.75699949;-.73091441;-.95797235;.29802695;.43165478;.12247206;-.85301566;.25684988;.88974887;.67847103;.013074706;-.17648251;.58448642;.490778;-.86022156;-.20905867;-.62571317;-.0018056735;.87138009;1.1183441;-1.7176559;.089322105;-.45091751;.92627746;-.82841462;-.16795771;1.6851809;-1.2820131;.14062731;.17143682;-1.9468263;3.1886373;1.6605418;1.9232367;3.8333118;4.6509781;3.9729686;1.6961234;7.0812221;4.3585019;2.8646097;2.0989728;-.73505932;3.8151987;3.1526313;2.178021;3.4860761;2.4645126;3.3302052;2.0774877;1.3705195;1.0561972;4.4982882;-1.5399014;2.1658261;1.8812279;6.1102452;4.982975;1.4895718;1.9164318;-1.3476812;-1.3434367;4.3533859;3.088443;.653099;-1.3130853;-2.3264971;4.3940096;2.7720723;3.5045474;6.1207743;-1.6871678;.77462125;2.3837707;1.7217419;-2.9289045;3.6036456;3.2566702;1.0244325;-.05766863;.61882234;-.17963484;-1.9443191;.8610633;-.75395513;-.99223989;-.30470392;1.7850839;.21634389;-.2433261;-.076285735;.1501435;.927257;-.098953649;1.1360203;-.45647177;.53807998;-2.239769;-.20815188;-.8706606;1.3104198;-1.7569902;-2.5652397;.25220138;1.1383625;.5493409;-.81447786;.42260912;1.6755657;1.3114898;.55017251;-1.4810261;1.3511093;-.098472014;-1.4071001;.30224895;.16533719;-1.034675;-.58694762;-.75987476;-1.1856369;.00038275355;-2.1938047;2.3728006;-.43845859;.55784684;1.7406007;-1.691582;-.084363095;-.0075371652;-.76165915;2.7324493;2.2740507;.47422817;2.1989939;2.3452234;3.0995305;1.3839813;4.0648031;2.8204198;2.7495134;.73232925;.37515169;2.6373439;2.008677;2.5850644;1.735026;2.6064274;1.6862285;2.3684084;.67097604;.69176847;1.4684706;-1.3105204;.24472956;-.0031753937;4.398376;4.2834563;-.019353596;1.3601309;-1.3221408;-1.7850016;3.3739355;3.0907953;.72501713;-2.3575182;-2.2961991;3.8193254;3.3388267;2.3239815;2.8222308;-2.3444958;.95606822;2.6845546;3.3230157;-.57997137;1.9166667;2.9497006;1.4227397;57.185997 +-2.5297537;-.49276271;1.0443965;.080158882;1.4250588;-1.374737;1.5338753;-1.1382136;.09891852;-.24174313;-1.0139188;-.72267681;.4603554;-.06313967;.62598616;-.83456039;.075260937;.21661082;.85553288;-1.7786117;-.1277899;-1.0918;-.23246031;-.9816674;-1.4405071;-1.3966655;.74606621;.063955374;1.3425447;-.1725294;-.5735355;-1.5085369;-.18062946;1.5990654;1.812185;.13175695;-1.1305053;-1.3354154;-.48426422;-.43954426;.10460439;1.6684748;.75237602;.13300839;-2.0541074;-.34950277;-1.1440904;1.7831031;.83733279;.51063639;4.5300121;-.40092641;1.6567349;.55587167;1.0686322;2.0025578;4.67834;5.9336848;1.4240726;2.3456111;1.5478489;4.5791531;-.9678632;1.3311603;2.4715164;.35195166;1.9006799;2.5649662;.22824313;-.68341428;-.69214505;1.6596668;4.4246039;1.0861636;-.14562678;2.380893;1.4471029;.19310671;1.8122612;-1.4610819;-.31159976;5.3537087;2.5148108;4.1750898;3.6884999;2.3992836;1.7386485;1.2406279;.75213647;3.6560087;3.5381277;-.2367661;.11573742;1.759095;.36718544;2.8027296;.87525177;2.9828258;4.3946147;3.7265501;-1.9255357;-.39636821;.91351897;.38833553;1.208848;-3.064836;-.56505084;.00070182985;.11816104;.46579704;-.11229768;-2.213882;.8884024;-1.4040941;1.6425536;-2.2504108;-.08137431;.34731743;.66916317;-2.1193237;-.78156525;-.060898617;.46940857;-.26127553;.29678491;-1.5930018;.12005702;1.3405211;.72596037;1.9122877;-.33681479;-1.6639061;.81662846;2.5083945;2.5187142;.32294646;.7097494;-.42717835;.037967201;.24487492;.47404242;2.6175296;.052849818;1.3682605;1.1964257;.26293901;-.54932868;3.4643373;-.46079114;.36708662;4.0659637;.64596987;1.334475;1.7691292;-1.4662598;-.11100391;2.6214857;4.7018552;1.3833232;1.1501338;1.3826331;3.8818095;-1.1647431;3.1032951;3.4105101;.85873514;2.3430817;.28449425;-2.0299361;-.40290546;.14653295;1.9895952;1.6680032;-.24454859;.059176579;.51396304;2.0884838;.22327447;1.2730929;-.67259926;.73829341;4.2168021;-.054660361;3.8705487;2.0421083;2.7228527;.26616862;.27124539;1.2467021;3.1410127;1.6901088;.61408597;.27348381;.75435227;1.3008925;2.3316829;2.5471458;.97428954;2.5260258;3.7984486;47.650524 +-1.0969946;-.25030285;-1.092919;.56682163;.53332806;.5534358;-.054157477;-.49231681;-.39735374;-.75821465;-.51581335;.10144245;.20513374;-.84922135;.6527456;.62598163;.89596301;-.6302231;.3979629;1.2180181;1.3657247;-1.6775268;-.36414546;1.3855723;-.62719584;.50553834;-.99489361;-2.1665165;-.031160681;-.55311459;.69623268;1.7834264;-.34991884;-2.1116321;-.18460351;1.1549991;.68490201;1.6559089;.15920895;-.66680288;.48836374;.5191735;.071642354;1.3124011;-.85888165;-.70240355;.12793782;.37391514;.92050642;.98903245;1.6896495;1.6891347;2.4331427;-1.0597869;.097439304;-1.2192411;-.14620529;4.3490243;3.0418186;3.2225459;4.8450747;-.74034441;.9753325;1.9449712;3.3421991;2.5178039;2.483361;.94479626;-.44418952;3.2560067;3.7718804;.76243573;.64455241;-.16337557;.97492534;1.2361144;3.3125405;4.4379239;.56329137;2.702213;.5517022;1.5627675;-1.4085021;1.1087246;1.0765667;3.5546129;1.9603556;4.2482429;2.318346;1.4388984;3.883363;-1.7563959;.26724946;1.1772419;.63070542;2.6317956;-1.1646011;-.28271881;4.5572;.47278115;-2.9069281;-2.162879;.0597643;1.6757017;.43513393;.98950028;.68506491;.99257219;-1.7210244;-.18202353;-.42411044;-.79112393;.46867043;.1653232;-.34253845;.25717437;-.40660897;-.60764724;-2.6148062;.40319476;2.1921823;-1.0412554;-1.1266173;.8020494;-1.0186415;-.21798649;-1.3720927;-1.3011545;.15818267;-.32667339;2.6549892;2.0733383;.010544313;-.97112316;-.95547372;1.1182878;-1.2989806;.84275401;1.1350659;-2.0942361;-.84407884;.65832645;.2838963;1.1709343;-.75813538;1.2186911;1.6674669;-1.4911253;.99375856;1.9607171;1.108615;.10593368;-.055550434;.15457609;-.98435849;-1.5415823;-.78875452;3.2548175;.45228547;.29379213;3.0434446;-1.4281341;-.86915827;.75912845;2.5182655;2.0632966;1.6005561;3.194104;.94848567;3.2587485;2.7126858;1.2827854;1.4644533;1.6923406;.71284842;.77104062;3.1773303;3.2626054;-.30520594;3.6677992;-.75669569;.14305669;-1.6168238;1.9344212;1.4258813;2.6567636;2.3992412;2.3913498;1.3412589;2.0713603;2.2144651;.050725885;-1.3851022;-.036096428;.60699207;2.113579;-.79218924;-.20079662;3.1753824;1.4498156;35.928848 +-.23487441;.23027824;.76434106;-1.1636041;.2223576;.28452411;2.6199782;-1.8562959;-.30573305;-.68260723;1.6667269;.24607719;.030827763;-.30198538;.21827424;-2.2549241;.14466137;.85569561;-.26682046;-.4389632;-.70852375;-1.0901906;.66342896;.51962155;-.43758217;.13168445;.4120681;-1.664364;-.79024673;-1.6499503;1.3007054;-.61480826;-2.1174085;1.5773662;1.3243302;-.13563137;-.25718877;.099040553;-1.7461109;-1.1250998;1.4796102;1.1368339;-1.9859;-.33150977;-.21857581;-.83916974;.13916694;-.1316478;-1.3284774;1.4805614;2.0650823;2.4125991;2.9272254;.42913875;.99960297;4.7869411;4.1470399;1.9245355;5.2756715;1.7090404;.59242111;2.4752998;.99260527;5.2489142;4.0202065;.60725051;-1.9844582;3.6677265;3.1917052;3.0914807;1.3204225;2.1108842;2.0710449;4.3220048;3.6670303;1.3217682;1.4327809;.41023374;2.14132;3.5206749;1.6726829;1.4386622;3.7626541;.47965521;2.838506;-.69011337;-.61282593;1.9207864;-.60155648;2.6460824;-1.5977145;1.6096876;4.3326693;2.5929015;-1.004849;1.1005785;3.0891256;2.5674996;1.4034638;1.5731622;1.4637326;1.1794467;-.17585681;.11460433;-.31070879;-.45730886;4.816586;-1.664166;.15478617;.57560515;2.1484601;.9085384;1.1788605;-1.2682592;-1.2043023;-.87927443;1.8413324;1.0121183;-.095624931;.89619082;.072447605;-1.4307122;.47313705;-.69109291;-.51683903;2.2361894;-.10392296;-.183377;-.77361262;-.57328832;-.46869931;-.20676567;-.69419938;1.0145646;.1726777;.80110985;-1.6037183;-1.1443368;-.38801214;-1.4252049;2.5031421;2.0468004;-.63407534;-.40689257;-.011458213;.059353847;.20741698;-.90015459;-1.4641352;1.9148953;1.3402475;1.5600356;1.0573066;.73459756;.67557526;3.3957543;.43384245;1.5888084;3.3574567;.12906714;-.13609658;2.2144253;.09500809;4.9261646;2.5746326;.60195076;-3.0483077;2.5904002;3.7167161;1.8711541;-.60634017;1.3195373;1.3828287;4.7979951;4.0115261;2.0947707;.96808279;-1.1893998;.23641239;2.2918408;.69156826;.45802161;3.9376485;2.8178761;1.8720769;-1.0155071;-.7557193;1.8368815;-1.4479358;4.2722888;.52372843;2.1633978;2.6842618;-.51723921;1.6203008;2.6538572;2.5649953;1.5279828;-.63050872;.71688551;41.767799 +-1.1367574;-.63122714;.53419757;-.21507894;-1.2519258;-1.511415;1.2770684;-.69044608;.3821221;-.55172956;.91392279;-1.4129084;-.31829834;2.0021963;-.45684201;1.2658536;-1.1538295;2.3926616;.44092819;-.15660396;1.7034948;-.95355833;.19472718;.17675479;.093463115;-.25315964;.050883971;1.3454677;-.72777873;.69507802;.43242314;-2.0108485;-.80524784;.59147245;-.5259394;.8988778;.65105218;-1.4815065;-.04404261;-.56770283;-1.0060818;-.53461432;.8476963;-1.8030695;-1.4659228;1.2852973;-.27457723;1.3534733;.29625612;1.0761734;2.450995;2.6515515;2.3129294;.96625513;4.5732675;1.5600991;1.1826684;7.4690547;2.0581977;4.8774085;.32408959;2.625416;2.9321866;1.795483;4.7104883;2.6945372;-1.5063252;-.27094319;.48647985;1.4775248;2.7614112;1.5922452;-.58373672;1.781145;2.4207077;4.138268;2.2558541;1.4597447;.67990047;7.8826146;2.5159085;-2.1715512;.53212112;1.6756831;-2.4932849;4.6624327;5.9463587;-.7630105;-.11808606;3.4007859;.90562862;3.4213126;1.4682968;5.6623473;.50876582;2.8867688;-1.3249719;.28223547;2.9283769;1.5584902;-1.6061717;-.43994671;.57882321;.93267071;-.3216306;-2.2913387;.18460795;-2.2368319;-1.2458174;-.43903244;1.7558916;-.063250758;.4357633;.69732851;1.3582649;1.6723851;.077510759;2.062396;-.30985102;-1.2031133;.87672257;-2.3134131;.78369182;.012865138;-.25532562;-.49459901;-.70417452;.10793332;-.72463745;1.3343098;1.6218058;-1.3616266;-.54775292;-.43327177;-.62353545;.15334846;.86043543;-.54161334;.96595871;-.26072961;-2.083015;.063797764;-.50225604;-2.1759324;-2.1375873;.17806187;-.086526111;-.66685677;.19456524;1.0477821;1.1854181;1.5017387;1.2977526;.80476224;2.9356756;1.2273712;-.61155629;2.5361991;4.2061353;3.4851806;.85463959;2.1654978;1.5726744;-.62354594;4.7644157;3.216975;-.51049644;-.28026527;2.3653655;-.91328681;1.7092429;2.9986188;1.2622225;1.272799;2.0827553;1.961808;.80316359;.57221371;-1.141813;6.3707576;2.8729382;-1.394981;1.0269673;.1194049;-2.2343647;2.2098255;3.8444328;-.64091462;1.0905693;4.4564795;-.040352397;.74885345;1.3133912;3.3415582;-.5095458;-.23540881;-.50560117;-.16928403;2.1652427;.70744276;53.363277 +-1.1074314;.75207978;-.40297657;-.28116861;.5436784;.15805395;-.2396514;-.63967568;.036278885;-.9233523;2.4039481;1.7201661;-.064399712;-.27834004;-.52268285;-1.3327157;-.80950356;-1.7617086;.56401408;.93821889;.20051827;-.41392019;.49610698;-.6445238;.031292301;-.85406482;-1.2223336;.89779782;.068284757;-1.7259688;.34642598;-.56430537;-.59502244;1.8400468;2.3995643;.31596959;-.96922809;.29381177;.40140158;1.1539413;.067460701;.99176562;-.88685924;.084804617;-.58661485;2.3503349;2.1913352;-1.2668669;-1.0053633;.19419089;1.4020063;.35943446;3.472007;1.6143746;-.07069999;2.1614828;1.1192539;1.5809182;4.4699893;1.7326329;-1.7222376;4.2642231;-1.8722943;3.2259548;-1.553772;3.5574999;.70520949;4.5918155;2.5136878;2.3525949;3.5426681;.087049745;4.8365836;2.9835777;5.917068;3.6240082;4.0875697;1.7716631;3.6308761;5.7052946;-.76073432;-1.1374201;3.181097;3.1162;.55076408;-.68207198;2.6283317;1.8467406;2.6346366;5.4546494;1.3542889;1.0286027;-.76701438;-.38814989;1.9068882;2.0815122;-.58618337;3.8543911;2.9833148;4.1711946;.027042244;-1.4310708;-.66751933;.10094903;1.2446885;.32080057;-.76733547;.87458777;.90707844;-.62936884;2.1179888;.655361;1.9459471;1.013218;-.12227762;-1.5331606;-1.2591499;-1.6608511;.93111682;-.91779363;2.1689479;.93913555;1.5999522;-.67476374;.51151276;-.52610445;-1.8311101;.3338474;-1.1048882;.80543977;.27950561;-.66241437;-.446289;1.985451;2.4138176;.20691501;-.76166254;.28382584;.4627226;.22611527;.2598244;.078977086;-1.4191178;1.2009852;.041120511;2.4577925;2.0654159;-.7092306;1.2431154;-.51554537;1.613881;1.313014;3.0501134;1.1582618;1.75641;1.3424225;1.7330232;1.1185509;2.6022336;2.1222248;-2.0402036;2.7408228;-.16048865;1.284744;-1.4430671;1.8042966;-.4804008;2.7207761;-.15995167;4.3117471;1.881408;-.22416236;3.4017482;2.1070831;4.4391046;4.4918098;1.8861474;.69910181;.97407442;5.1824884;-1.067338;.037955061;2.1859365;2.3014584;1.3565456;-.15211874;2.2300937;1.2997309;2.7126138;4.1172171;-.77253848;-.084571779;-.17157109;-.98453993;.04714914;1.2606449;-1.4649438;3.765842;.93061888;3.4527268;55.996555 +.32866791;.77645963;1.4687234;-.69468576;.6616565;1.7414857;1.3815534;-.39001244;-.99280638;-.11154886;-1.0095468;-.35041222;-.087636612;1.1810399;.019724632;-.72793156;.1170942;-.35672837;.85514456;.71318161;.96818703;-1.6771835;.013352467;1.3391378;-.64545459;-1.2629535;-.15135655;-.3352741;2.1882355;-.18883009;-.28973046;1.2496154;-.62703615;-.76697248;.409951;1.9334323;2.5866377;.47110942;-.64277172;-1.1706676;-1.9197371;-.51858538;-.76588708;-1.891572;1.5885663;.4924486;.055019625;1.6815047;.2254415;-.61992675;2.349504;3.7661319;1.5476956;2.8226876;2.7278776;-.034503777;1.5911832;-.59729397;2.1178949;1.5712312;-.92354017;3.2719719;-.092915006;4.3081641;1.3107663;1.3897829;1.4118929;2.9828007;5.334168;1.0778954;2.4966481;-.97266471;2.9382966;6.0769563;1.7184021;2.021642;3.1863172;2.7877018;1.6329156;2.7330551;2.9917755;1.6690083;2.331557;-.045879427;-1.4808584;4.0328245;7.5809679;-.91149127;4.5419121;-2.7662313;4.8212614;3.0495899;1.0504385;4.8465142;2.2627151;-1.1711029;4.7568121;.94573587;4.9248095;4.9679279;-.22771761;1.5495627;1.8520024;1.3060791;.61701483;.27601141;.29019886;.40178132;-1.2500889;.10175094;-.54907644;-1.4634504;1.4006246;.78126597;-.006194598;.23632246;-.6215173;-.47414422;.41988808;-.53477317;.21035865;-.21110755;-.65559;1.0309012;.83557522;-1.7469484;-1.3309985;-.097886004;.83329886;.20963416;.43843731;.7545594;-.86512893;.12227229;-.72057712;1.2409834;1.9976004;1.3958061;.6231401;-1.4816078;-.22437476;-1.3783917;-.51721042;-2.069371;-.4479081;1.7934482;-.21592785;.96372378;-1.4577086;-.26533177;1.3969337;3.2920468;.71656722;3.8923423;1.9657322;.30851585;1.2847986;.87150878;.084441639;-1.2883205;-.99460924;.50789475;-.61044997;1.3193345;2.1927462;1.2968644;2.2680616;2.8084073;2.2365654;.72953475;1.110335;.81752759;4.2791739;2.6444545;.52936631;1.9332348;1.9666845;2.5930779;.67417246;1.470337;3.1520507;1.2727765;2.5897772;-.26902524;.94725311;-.41539845;3.9741526;1.2940482;2.3345032;-1.5115817;3.7963262;3.7775021;1.8849829;2.2592309;1.3329737;-1.5152022;4.1353574;1.8470819;3.2042377;5.9641447;57.768776 +-1.5067449;-.28680775;-.25456002;1.4820787;-1.7392235;-.48712796;.45090771;-.19840829;-.98680139;.5818224;1.1492827;-.71836734;.39009121;.54813844;-.62473726;-.52632415;1.5484945;1.6048959;-.35973316;-.25954425;-1.2865292;-.77099919;-.15778032;-.79432607;.62160772;.91526705;.16962253;-.92793369;-.18499368;.35622996;-.42351758;1.5720521;-.082993008;-1.9965041;-.41408184;.33137172;.56551325;-.1507854;-.4794091;-.79057831;-1.1230079;-.74741763;.84173816;.96008426;-.46888444;-.94577682;-.91616672;.29548624;1.0389334;-1.0877609;3.3831675;2.1362903;4.3542595;1.7111639;-3.3976908;2.2854676;5.1678686;3.1844094;.77217466;.092796147;2.2094407;3.3147907;3.7262609;3.0159588;.75699264;2.8881619;1.5312753;1.4016448;2.7341971;1.4390401;2.1999013;2.5830402;2.7184544;.74010777;-.92206192;2.0878928;2.1733561;3.1225636;3.0851498;.98084736;1.3756771;4.424428;1.4703218;-.16807161;3.6560941;2.7127302;4.3180857;2.8379517;-.20133151;2.755177;3.5567343;2.246742;5.3209338;3.6240079;5.0863667;3.8144591;1.4849293;3.9059341;3.5402434;1.9271206;-3.0817094;-.69428086;.97100139;-.05952511;.58151823;.23228978;-.16211818;1.0818043;-1.4295483;-.77180493;1.1478298;-.91639888;-.28957555;.99439961;2.1694622;2.5563354;2.3501201;-.17433897;-2.0680368;-1.5265714;-.34109908;-2.3824348;.027829168;-.73637855;-1.468415;1.3724536;-.10673848;.56762195;-1.015628;1.3562726;.56400746;2.3031297;.058525439;-3.3440962;-.28438708;-1.2653073;.088295698;-1.3201066;-2.3968933;.1878873;-.81009185;-2.0620549;.38297665;.64382172;.75335598;-.47948399;1.0302342;.44407156;-1.8184805;-1.2072145;3.8153324;.5750398;4.2592859;2.4558296;-2.2544811;-.83835077;5.1352997;1.4525411;.31197852;-2.1064131;1.1993792;2.2233226;2.0598168;2.0838876;.079414204;2.3916862;2.6149113;.20904204;3.8540206;2.0030921;-.012708811;1.3404127;1.8397804;.70409763;-.22633745;2.636888;1.9004419;2.2230399;1.6992159;.71899813;1.6028391;2.6423497;.39388832;.30789116;3.8107231;2.4605806;1.7609823;1.5559938;.070223793;1.9134052;.60976523;1.2254362;3.7129354;2.8996778;3.6116779;1.5298061;2.7824492;3.6038413;1.429379;2.1732795;62.998276 +-1.2377142;-.59453475;-.53393823;-1.694129;-.53641856;.11781991;-2.2351794;-.35585371;.29706392;.30313939;-.014345247;-.96447605;.76068264;-1.069716;-.50492013;.2608262;.9959498;-1.2058715;-.82991171;-1.5692626;-.69529176;.095192418;-.85829431;-.77249658;.30103907;-1.175083;-.039187942;1.0140914;-.53074688;.68878716;1.1593177;.77164185;.54698819;-.24635236;.26441243;-.37143666;.50404221;1.3571584;.78446734;.27528092;-.53687316;.98538601;.26333717;.87014443;-1.3196878;.91468042;2.6545637;-.72489744;-.41871956;1.0651141;4.0591459;.58942306;2.154146;.44048956;3.1277392;4.6885319;.54165018;4.9674134;.47856641;3.6553798;5.6387181;2.2521918;4.6816883;1.2960029;3.6094491;-1.3497155;2.7616785;2.4823308;3.8260493;3.1538155;3.413466;3.4851439;1.3451082;1.6276875;1.0060982;.65447438;-.68239599;3.0455132;4.7293901;.12431544;1.5278176;-.75282115;-.42309171;2.4736085;1.8006481;.022406168;5.500071;-1.0737045;4.1310768;4.4054761;4.2118859;1.1146549;-1.4094622;3.6036618;.15710226;-2.3136342;2.8843453;1.0275189;2.3580849;3.4635456;-1.7197413;-1.3206158;-1.1376314;-2.213697;.669411;-.8045792;-2.3758662;.76000518;1.3830097;-.77428609;.64299142;-.62947381;-.36487761;-.59352678;-.91891998;.34007969;1.590042;-1.1366291;-.066761754;-1.0553969;-.84583694;.48232278;.31653574;-1.5887727;1.0330503;-1.6020957;-.68980539;.018922845;1.090487;-.51088703;-.36856765;1.3465161;-.85010153;1.1449863;2.3407674;-.24415839;-.66863674;.54906523;1.8836153;.85741335;-1.0648978;2.1844883;-.68289965;-.78857023;-.039904825;1.1601768;3.7779987;-.792036;1.6844867;-1.344364;2.3536205;1.4518976;.86110842;1.5932481;3.1721203;3.2148352;.047212318;4.7559667;1.2645587;1.5857811;3.3427303;.97557563;2.6268711;1.4444364;2.359396;.093560293;.17622037;2.6654775;2.7885985;.9775815;.67061275;2.3560393;-1.2243812;2.1067255;-.27897489;.6521163;-1.3781486;1.8503265;1.6992462;.23179714;1.5645069;-.95927924;-.66504192;2.086849;.95790988;.56064123;4.8805647;-1.9276789;2.3401303;2.6465445;2.4589167;.47803184;-1.4106069;1.9837617;.11499415;-2.5956705;2.9019508;1.6898199;2.1856027;.48362848;46.281593 +-.91647375;-.22949943;.73405051;-.7609877;-.54292315;.78753692;-.023607859;-.22974832;-1.5382355;.96970266;-.91766655;-1.4667798;.48533472;.36556259;-.93803883;-.60772526;.22986557;.2738739;-1.1964817;.5498271;-1.4531457;-.67057163;.025688175;.4246977;1.1120174;2.0127456;-.59395611;-.37987337;-.79433286;-.012949443;-.98182791;.35393229;-2.13905;2.3013573;-.88116974;-.75099707;1.2947258;-1.504918;1.5278242;-.59824616;-.84461284;-.65162879;.43335387;-.030508609;1.3449346;-.40413585;-.037691195;.51257783;-.75604957;-1.3828193;5.3188529;2.1252584;1.6505871;.39962971;1.308205;-.0047746147;-1.2905409;2.3347001;1.0042517;2.6964018;.36187801;.52720296;1.8330067;2.9253211;1.7056106;.86294675;1.4347924;6.5673575;3.4745915;1.3614283;4.5296488;2.9251535;2.5622394;-.50783205;1.8043336;3.4286253;3.1522875;1.6844035;-.92304915;5.1007447;5.3432369;.96042186;.92251086;1.6268803;2.5560186;1.5720111;-5.3218751;.88103265;-.089564718;-1.7851641;3.7014699;4.7312698;1.3943189;.7411828;.58653808;2.0441923;-1.2018766;1.8806769;-.96010035;-.28985003;-.29572877;-1.0031989;.001467827;-.45071805;.91395968;1.4396155;-1.0539477;.49007747;-2.1820066;2.1407957;-2.1946867;-.52480507;.47528267;.99472994;-.34541851;-.46721724;.4338536;-.22019258;-1.0875393;-.044976149;.67085803;-1.6856471;-.70454741;-.65138125;.52781039;.64301652;1.3558141;-.17138791;.61414897;-.22529779;-1.896975;-.18510157;-1.6235325;1.8891768;-1.2964715;-1.3755454;1.4446425;-1.3767953;1.9448361;-1.6646951;-.34962866;-.1236432;-1.0714779;.14508204;1.4019468;-.13381346;.16973945;.80138141;1.3486037;-2.2993159;3.0990431;1.1659615;2.425822;1.4418746;1.8669944;-1.9844083;-.85784531;.36905676;-.83298129;1.7602519;.68770444;.44541934;.65804964;-.37847143;.42109799;-.68375486;.38276282;7.2009916;2.5199821;2.1543143;4.1251702;1.5476302;1.9489551;-1.6619518;.67458338;4.1189089;3.3955193;-1.173129;.14625141;3.4970326;4.1143875;.60838801;1.7577341;.74686301;1.6090858;.19880351;-3.2755044;-1.1059624;1.0018343;-1.8664476;3.0371277;3.3353155;.047662593;-.098316804;.26966044;.63218164;-1.2393695;-.93252563;-.93195456;-.6461255;39.210411 +.73359025;.6874634;-1.599677;-2.386173;-.91029412;.5376178;-.99190849;-2.1450624;-.2631481;-1.7515175;-.1467073;.1363686;-.85806006;-.012946595;.57448041;2.2246101;.25038171;-2.1281648;1.6984192;-.62407929;.29413196;.18652458;-.20385544;-1.0413208;-.39709598;1.1405982;-.99007583;-.54497898;-.60657734;-.76669902;-1.2860761;-.27495357;.98585802;-1.1484311;.12273625;-.34746495;.24097034;3.1644759;.065991059;.50589442;.5375998;.51114964;-1.3138226;-.047298908;-.15814988;1.5685544;.9070248;.72023559;-1.4496273;-.055101786;1.0065205;1.6517862;1.5591408;3.639513;1.7305082;-.93984175;.24331138;1.9598778;6.6187015;1.6825697;1.8944789;3.1382706;.26711351;3.9277799;-.88481265;3.2366364;4.8990355;3.0015814;2.2067723;2.9327483;1.461814;-1.6774981;.8814615;-.95973557;1.2716368;2.9864819;2.3763347;.85946447;2.916019;.55736285;2.9698927;2.1723056;4.9792142;3.4787035;4.1658297;4.0107369;-1.1288741;8.0601273;.3684977;1.3769506;2.9105713;1.3794166;1.8163768;-1.2491008;3.5179365;-1.3120096;-.83904594;4.4105601;3.5987105;3.9988289;.94878566;1.1886539;-2.6498024;-2.1917152;-1.9985464;-1.0211096;.87878436;-1.1605109;-1.9354026;.050042011;.39530915;.55215782;-.59112483;.11986586;.58081287;.96733552;.60084236;-2.1291318;2.6509678;-.1752578;.31643006;-.038674884;-1.0624874;.0061514708;-1.5483384;1.1041148;-1.3140111;-.84356254;-1.9615;1.445703;-1.1945662;-1.1998022;.34060034;.72563207;1.5611324;-1.7276189;-.68489969;3.052989;.27565342;.94299519;-.49241349;-1.0061754;-1.1807531;-1.055796;-2.0337353;.62351972;-.14196481;.32623982;-3.3365335;1.141252;.95121658;.33588189;1.1384029;3.6458728;-.67995334;-.062188648;-.56486624;3.5108674;5.3605123;.89960527;.23936078;2.6350608;-.09469822;2.3231549;-.51759338;2.2187119;3.4403739;1.8660594;2.32849;2.7254066;.96018445;-.73710126;-.58440506;-.86320037;1.2005111;2.5155537;3.9739466;1.2089299;3.7899098;1.3499653;1.7491326;1.7211137;3.6733639;3.8050828;2.7612715;2.7547021;.23226817;7.8351903;-.3917594;-.1168321;.90771753;2.1743436;1.5437559;-.30851448;3.7556844;.15985134;.27937177;2.373826;2.1075063;2.5130105;42.893723 +.27115366;.59047347;1.2730119;.17956023;-.73772401;-.33627853;-.84151608;-.46089068;.28182662;.049575772;.39139545;1.2621698;-2.4167559;.36140004;-.41881794;-1.6918015;1.3492383;-.0072050178;-.83454901;.59357882;-.11722296;-.6215148;-1.2898258;.061975174;-1.0339764;-.36731589;.23525478;.88469529;.28436843;-2.1219499;-.66063815;-1.0350519;-.20925875;-.78853124;1.4839672;-.16171165;-.01582424;-.99549443;-.052097332;-1.5587896;-.090272255;-.6965313;-1.1441426;-.37190044;.936378;1.3318871;.078779742;-1.6003315;-.18083297;.51031876;-1.177264;2.095279;-.06176636;7.9907651;.34800163;-1.2440845;-1.0132604;2.5119822;3.2465675;1.7971609;-.041431397;1.3882462;5.050375;2.2142177;3.8439665;.39270619;3.6357927;4.6479506;1.4764029;2.5136712;2.0263052;2.1776309;.11449441;4.5312772;-.10183587;2.8879256;4.1356463;1.6246568;2.1606281;.8130942;3.8181098;-.47333133;3.4717433;-.68646222;5.322968;4.042439;4.4261599;1.8953478;3.2097867;2.6802075;.30043432;-.35455948;-1.3176677;1.7668164;2.54563;1.9550911;3.5758595;4.7001338;6.3567791;.16758157;.23202229;.88064945;-.048527054;.021900067;1.5721606;-1.3872975;-1.7122431;-.21956587;-.76313472;-.12388958;-.67427021;1.4620546;-2.5652239;-.80402917;-.38652802;-2.8427827;.99348521;-.16281429;-1.7426196;.66825199;-.090838358;-.23690331;-.17896904;.81347448;.33374101;-1.3370669;1.6713187;.70325619;.33113128;-1.5751969;-1.0279294;-2.5871029;-.5449782;-.4170118;1.9108659;-.8933447;.79794407;-.41641313;1.3627368;-1.2710878;-1.0007668;-.92496365;.092632025;-1.1829795;.55670655;.41351685;.89589918;.93147361;-.24614538;1.6996135;-2.8709061;1.2455052;1.0193192;6.5666623;.83194256;-.45049736;-.0053064167;1.1591412;1.5404334;2.9960659;-.94368535;.12814218;4.343554;2.2167761;2.6143329;-.24387172;3.1502728;4.2622666;-.19204146;1.6978672;1.0097418;.81270266;-.24870937;3.0320592;1.6689029;1.6050299;1.5164165;1.3715193;1.9373641;-.8218441;3.0685737;.0083242189;2.4772551;-.10223289;3.860527;1.8221116;3.5275741;.73920351;1.955562;1.294783;.075547695;-2.1814382;-.76243973;3.5389678;2.0439441;.78349751;2.4581063;3.0011945;4.1919775;-.95197481;45.837841 +-.47844273;2.2506261;.51795304;.1712396;.38510391;.25634253;-1.7656158;1.9705671;1.0435581;.54047763;-.21376741;.60698277;.15076503;.92477936;1.0054995;1.1090106;-.54875702;.71781307;1.7470424;-.6038633;-1.4695929;.34076527;-1.3015234;-.058981672;-.61797923;1.3098053;-.016412131;.37762704;.60092407;-.48010322;1.226822;-.6605528;.72648567;2.5138352;.049567405;.6236096;.14752156;-.32790351;-1.3491683;2.0652947;.70612925;-.68670422;-.51052231;1.9777378;.42024741;1.4446349;-.2402719;.10308065;.57810748;.70728147;.25359148;3.4185035;4.0375795;-2.6508064;.10744284;3.7266614;.7560553;2.0536029;1.2436467;4.4914541;.18018186;-.033842847;.67380953;2.9092753;1.978752;6.4352822;3.2333941;2.5872076;1.903322;3.7321758;4.6214733;1.135927;2.2700093;.60275692;2.8612623;4.9902039;1.7373549;2.362515;2.7659454;1.3039261;4.6950707;1.3830736;2.0883956;4.5980458;4.7565589;4.9775949;-.41037181;2.9080858;4.8488488;1.3216209;2.3015769;1.411845;1.4890132;1.7039527;-.62261647;.45892912;2.2537656;4.2701993;2.8073432;4.4125352;.86674249;1.9055372;1.6625165;-.42285466;.59974259;1.162714;.15095204;-.026368525;1.8249341;-.052334838;-1.6841674;.77681375;-.47219965;.73820335;.49628943;.16683544;.37934613;-.51747167;.67995775;-2.0014915;-1.8461323;1.4350779;-.42767963;-.59645623;-.65879345;.18090059;-1.5947574;.24250875;1.9754397;-1.1894673;1.9305948;.18254544;-.15217182;.57900459;-1.218062;.062510982;-2.8566775;-1.3998258;-.53593051;2.4163301;.78281802;-.72253549;.44062421;2.0355418;1.1658109;.43310487;-.040466182;-.77385509;-1.3272818;-.79613954;-.13925652;2.5063651;2.2209852;-3.0605264;.97939879;1.0164249;.15162037;1.2531525;.93925154;1.4845843;.5699994;.11721741;-.31191629;2.1730392;1.3764917;4.4689026;1.9219794;1.4006344;2.0723987;1.3258287;3.7697678;.54500288;.33270305;2.2715759;4.147965;4.3463998;1.2713894;2.0678775;2.4348989;1.5068341;4.20576;-.5653376;1.4924803;3.8690903;3.7224169;2.5180407;-.78623086;1.4903532;4.7177982;.087813951;1.4328496;1.3324591;.14472601;2.1561794;.024229992;.44932166;3.181741;3.1592405;2.2422822;3.5471847;68.41304 +.26582068;-.46745661;-.68575877;-.23961616;1.3138995;.62101167;-.23477274;-1.191272;-1.6854527;.34840423;.44780478;.33240637;1.1629936;.074867807;.60856622;-1.3204854;-1.8445551;.043258585;.48137727;-.99062163;1.0210319;1.3875967;-.67496556;-1.9497638;.61283237;.67421973;-.40624693;.68211621;-.31319025;.99778551;.30500019;-.26656058;.092182249;-.62469703;.63108391;.20481804;-1.5022304;-.75020051;1.2142277;-1.5284098;-1.1700829;-.36451054;.11890037;.17613624;-.50738883;.12174732;1.5498456;.65044147;-1.2014178;-1.2188668;.32054305;1.7342647;2.4835134;2.5992634;.53853244;1.1665189;.51076758;5.5861773;4.7017965;1.0686476;1.4246486;3.2411413;2.9904382;-.96869183;1.3863288;2.8287401;1.3261827;2.3846617;-.14413767;1.051083;3.8906152;1.8632338;-2.3205674;2.0969362;-3.4027841;2.4933155;-.18770057;3.6959789;-.12760422;6.7965527;2.645066;3.5655398;-1.0618062;4.2393932;4.555233;.25380614;-2.0993705;-2.4007177;1.6091958;2.4093049;4.4046116;2.8017008;2.6930325;1.5198728;5.819005;3.3881843;2.2929308;.5149942;.39736521;4.699892;-.7329945;-.1282061;-.52522039;-1.4358902;.65827566;-1.301513;-.51204729;-.17709029;-.93596655;.48175317;1.8033487;-.61448509;1.9990256;.19105965;.34028244;-1.3780781;-1.1558299;.85889465;-1.4157215;.6679036;-.20618172;.41183296;1.0869837;-.55039322;.06272459;1.8056488;.7758646;-.85549486;.98902315;1.4013332;.87763864;.32571822;.60483432;.72239906;.22973682;2.6063895;-.14617106;.42888552;2.0797052;-2.8328362;-.18194897;-.60916132;-.88954508;-1.2895851;-.21827047;.12817803;.61473638;1.7437286;.024696758;-1.0874966;-.27665186;1.2002524;1.0704755;.91678053;.018211033;-1.1319324;1.1291271;2.445545;2.3745673;1.5245444;1.7123183;1.806626;1.2312895;-1.3850824;.79399258;.98440766;-.68191338;.41177374;2.4249756;.92433685;1.8425481;1.0297887;-1.4479781;.60920328;-2.2335634;1.2116423;-.73159444;3.6026809;-.88387364;5.1042752;2.2185087;3.1093042;-.90480012;1.5765316;4.2947898;.19017115;-2.2068949;-2.269067;2.108391;1.0171187;1.3314381;2.3294303;2.5589073;.96199554;5.436193;3.9113688;1.8373247;.32975754;.62734807;3.0966458;39.760574 +-.14544883;-.59524852;-.097744808;.51997352;-.27887461;.45288846;1.1151468;.84505618;-.15589991;-.092178822;-1.8577815;.10270861;-.50059098;-.74284756;-.37452504;-.32020956;-.769373;.65258735;-1.7299216;.31053191;-1.2245282;-.26961374;.43565503;-1.1582997;-.86264563;-.94095105;1.0344768;-.54635179;-.41653687;2.7039864;-1.0959255;-.82855898;2.1121488;-.84297103;.88621587;-.61024529;-.75137258;2.192987;-.98279506;.43909541;-.39236033;-.2772541;-.98002684;.11291885;.58547246;1.5064706;-1.8421603;-.9190169;-.39866123;-1.0255337;1.383538;5.0384183;2.5451372;2.7893381;3.0588224;5.9873447;1.8505776;-.60258806;1.7070791;4.0422707;3.5752525;4.7587714;5.1337662;2.9493971;2.1080754;1.5746443;2.1399105;1.1555458;.74268872;3.9971962;2.7241402;5.7056708;-.27199939;2.5423472;2.4373579;5.6706791;3.8109136;.39905554;1.595632;1.2552031;.92692173;2.6323497;2.4825094;3.3389657;.54681033;2.5109901;1.892669;6.7330055;1.2347225;1.2669016;3.5804019;1.3439726;4.7810431;.16425373;6.0925245;2.1922388;3.2707655;1.1146973;-.55253315;1.8706205;1.5996405;1.1716431;.14577791;-.23211005;1.3438627;1.2808812;1.0419068;.51945448;1.4598947;1.2608709;-2.1950045;.45164022;-.06385985;.6670664;.12596811;-.18246171;1.4110637;.57032776;.38503829;2.4523928;-1.0477304;.045796894;2.0678031;.54998583;-.073719017;.53278142;2.2610152;-.87756681;.88009691;2.5547891;-1.2854991;-1.6384367;1.1767583;-1.0015657;-.79997063;-.32582113;-.20006132;1.7598547;.41153887;1.6792415;.95325404;-2.5520232;-.97684091;.84404713;.7219637;1.3668332;-.76559985;-1.9522512;-.90242296;-1.0312856;.60676253;2.6949749;1.0644447;2.6909966;-.16728127;4.1156912;1.3626651;-1.0886766;.77305532;4.2393465;2.4958229;5.9902415;3.2687895;3.2143593;1.2991984;-.17315201;1.6337254;2.8233082;.30177757;2.6980565;3.0831914;2.6490433;-.22650138;1.4028087;1.9236233;2.4443901;3.2219338;-.053289227;2.2683079;.011139046;.2769466;2.0322363;2.9244015;2.9631901;.071422853;1.1271074;4.0218596;4.9580474;.57206094;1.3707876;1.8697276;.53822339;4.4695435;.20574759;5.1403232;1.7730163;1.6391281;2.140681;.22904953;1.3956324;62.880196 +-.75421226;-1.4972092;-.76849157;-.85089338;-.61087042;2.1268051;-.3699474;.35944873;1.0045354;-.30823764;.37749085;-.9622364;1.8039777;-.022091307;.92757583;-1.0526897;.15685599;-.74833572;1.5083947;-1.8461581;-1.0701087;-2.7442901;.22974686;.80410838;-.1747323;.84637403;.50976962;1.6617546;.57209951;-1.1415424;.37879297;1.7557942;.87779444;-.65157729;-1.1729639;.023289874;-.67360663;2.1570692;-2.1006365;1.6266721;-.088721015;-1.6927367;-.30130792;-1.2757603;.18028626;.21085487;-.69865513;-2.306761;-2.1239462;-1.7300837;.8302446;.48944849;.65285426;2.4166615;2.048413;-1.9098806;3.6074495;-.61526626;5.1635804;3.0669029;3.5782061;-.51108754;-.036001261;-.96063417;.039451361;7.9721317;6.3547134;.42447332;.77607131;4.84514;1.0617691;5.4884686;3.056391;6.8399558;.18057489;5.8317518;5.4529996;2.7710645;2.5314314;1.3210676;2.1396909;1.4197507;4.3508067;2.9268572;2.5385401;2.9540954;4.5804644;3.5313923;-.11309636;5.5857329;2.4551835;1.4942364;2.2818;2.7277064;.67550218;.501324;5.1612482;2.300025;1.6617175;1.0357207;-1.4803463;-1.4329996;1.5434139;-.58643591;-1.1947892;1.789091;-1.8822631;.0075267465;1.068073;2.1126013;-.58539742;-.4722707;-.36234728;-.19219747;.60310107;-.90506536;-1.277343;-1.7905697;1.7659909;-1.7092665;-.72264081;-.31971043;.43674806;1.3291062;-2.1402771;1.3048483;-.59628326;2.0644443;-.31859809;-1.6109582;.46390346;.23141533;1.3010197;-.3144882;-1.0804338;.88482475;.14099114;1.8396858;-2.8079193;.27146673;-.81040484;-1.7390193;-.66961998;.091467544;1.0517027;.98832911;.31202629;-2.1025224;-.48282817;-3.0586865;.38759375;-.61825842;-.66803074;.64736974;.67607594;-1.2712327;2.2958913;-.75089431;5.2779956;2.9612403;1.7669288;-.028003579;.40158829;-.24405208;-.063442566;3.228863;4.4796343;1.574792;.47564679;4.2524824;-.55796295;4.4175858;4.0421038;5.1026282;.56944269;3.0240357;3.8371329;2.729584;1.4789866;.81001657;1.4135681;3.3201475;3.4240935;2.1567051;2.2962682;2.8735759;3.6614888;3.6038828;.87316722;4.3557096;2.9596727;.83971542;.34281403;2.4930456;-.61346358;2.4417343;3.3199611;1.9132545;3.0978901;.86264127;55.23724 +-.15071858;.42922822;.08964093;1.2458011;.27253106;-.46908593;-1.1201591;.9277842;.22899589;1.0245311;-.65361077;.63310319;-2.4052474;-1.2730023;-.20858552;-1.0045196;1.0889076;-.53531575;1.2056432;1.0039128;-.51903099;.89036423;-.35383964;-1.7641239;-.81979555;-1.7709444;-1.8788109;-1.976495;1.9646317;-.82908851;-.10672301;-.71778709;.19880682;-.36711389;.72109699;1.5957707;.66552144;-.18440214;.41064984;-.29670534;.51963598;1.3314972;-.89406413;1.4380466;.59891135;-.85581034;.56646264;.51087725;-.79144955;.19621123;1.8346312;1.9298952;2.7336946;6.2931042;4.0660295;1.9600047;5.1147237;4.424695;-.48817271;.60893774;3.5370283;2.3001277;2.6994624;4.317637;-2.1211786;.49209741;3.7696881;1.3323224;.29190686;2.5866475;6.7426171;1.8273824;.73094952;2.7227716;2.7569275;2.2994661;2.3422172;1.5896014;3.5627198;1.5305703;-1.1897467;1.2976625;1.5012677;6.4612565;3.0449042;-.066003591;1.8697555;3.3465703;-.53141391;.75540203;2.6981001;.47192693;2.589462;-2.3552711;-2.1387763;3.5197847;2.1161375;2.6193235;-1.3424429;2.6420989;-.14814648;.78038639;.71526599;1.6183361;.61726016;-1.3044726;-1.2856998;.82517242;-1.9585283;1.0289395;-.2994177;-.25852674;-2.508527;-.44377586;-1.919626;-.36162484;1.9116657;-.81364822;.5371812;.50258321;-.38473186;-.83980829;-1.1015939;-3.5003924;-.056217875;-1.8342338;-.55428684;-2.201915;.33159122;-.3219296;-.90056968;-2.6409144;1.2998568;-.38613942;1.6807572;.35861236;2.7734272;-1.0469208;-.82931876;.42651331;2.2823343;.54247898;-1.2857438;1.5375503;-.70626569;1.01608;1.7563971;-.0024073324;-.30229172;-.17198671;1.4751046;-.43359837;2.5991063;4.288168;1.4392854;.97059524;4.7523532;2.6690803;-1.326939;1.4304907;2.9484165;1.6966487;.72253168;2.4174418;-3.3669989;.64350569;2.9000459;-1.3847464;.42310068;1.8491404;5.3344398;2.2417188;.54975724;2.2489109;2.7589245;1.460597;.56469983;.5139941;1.9809852;2.1333845;-1.1385294;1.6002963;1.6410444;4.5462132;.5504564;-1.1400005;.52630955;4.2032843;-1.3636124;.25471637;1.1719098;-.80589944;2.9655674;-1.8247285;-.56909841;3.3711026;3.1612775;1.9462858;-1.5382925;.62453085;46.916878 +2.4163451;.16004197;-.45260537;.95995456;.24015361;1.3879899;-.47595221;-.018608926;-1.1410486;-1.4534631;-1.4155123;-.4634521;-1.6791035;.45416674;-2.2866323;-1.5564159;-.16684052;-.39744982;1.1738986;-.49728212;-.56066817;.8068614;-.30950153;-1.1610694;-1.6863207;1.2494311;.23511612;2.3410156;-1.386431;1.4918741;-.87445533;-.63852346;.44488612;-.9812566;-.042666957;.39397356;-1.0811776;-1.0262591;.91466272;1.3695616;-.09116257;-.34905484;-.46206224;-.44075513;1.3815299;-.53054309;-.012179506;-.84808552;-.71271163;-.83101422;.2739453;-4.0552497;1.8874836;1.4509232;.62217873;4.1525903;5.7812405;3.1215065;3.3838978;3.8001788;4.1827612;3.4043214;-.59633547;1.2161323;-1.2301276;.47344106;-1.1126812;2.47031;2.4398162;2.497154;1.9940006;-2.0487721;-.82051617;-1.6905885;3.0548577;3.3091662;.78681505;1.9568686;2.4035528;.22674607;5.4814935;5.4745531;.3648195;3.4062967;-.45693308;1.8052649;-2.3568406;.10126472;1.0089065;1.9331411;.015184297;3.5427396;1.7780321;4.6183877;.82886326;-.59011877;-2.2428498;4.5437136;4.2288184;1.1215513;2.1376364;.65911978;.52568227;.69974542;-.066297024;1.1535808;-.81704032;-1.806742;-.89600694;-.61972964;-.67622739;.16609235;-2.0950513;1.2401172;-1.7800084;-1.3912967;.40548575;-.29561532;.71789521;-2.8397615;-1.1476223;-.079805709;-.36639202;-.027036099;-2.0665939;1.4372119;-1.023798;1.6967355;-1.5820515;.1778881;-.79605883;1.0252502;1.7121924;-1.3485363;-.98666626;-1.4920802;-1.726482;-.29696876;-.60265255;-.087989457;-2.1615338;1.6407002;.20258637;.56934762;-.091945767;-1.3109014;-1.3197447;-1.4162958;-.13951516;-.92093712;1.349086;-3.0726209;1.4253049;1.6216158;.5666188;2.9651654;4.8970938;3.695533;2.6636562;1.9717597;3.7023785;3.871834;.37109318;.4586063;-1.0265725;.3659488;-1.124746;2.6873982;2.6352854;2.4017806;1.7173297;-2.1564541;-.75936568;-.72408617;2.3892436;2.6265438;.37531611;-.41936007;1.1665541;-.040666994;3.7937353;2.6733665;-.5711953;2.1433761;1.2393023;2.8097353;-1.2401142;-.18728337;-.41777053;2.2318602;-.2333616;3.370234;-1.2445755;3.5999246;-.054793134;-.73312145;-3.0842173;1.2931197;2.5449865;.42253527;36.174347 +-1.0933022;-1.2143521;-.82084036;-.61902869;1.1431144;.40384811;.34108719;-.052502949;1.6019311;-1.0559144;.10110915;-.95570856;-.85740632;-.083621807;2.132544;1.177224;-.97566056;2.1309314;-1.6083935;-.66137731;.17735879;.45121455;-.46852851;.3440735;-1.5177581;-.83179599;-.19609247;-.76399153;.30353206;-1.5055491;-.88945323;.39498121;2.865339;-1.0489647;.33877456;-.96789235;.43973637;1.6183755;.6172266;-.54926175;-1.04405;.6344046;.59182525;.090144061;-.25402895;.65158713;-.31537643;-.30126116;1.5343881;-1.2836505;-.32189786;2.4481604;.65910286;.58782548;1.7050245;2.3113444;.94175488;-1.0413836;4.3675861;1.6576456;1.6801617;4.7041459;2.7337966;1.2400253;.074417524;.13868378;-.51707572;1.2376902;4.6751466;2.7312226;-1.6058384;.21260917;-1.5781585;-1.4756582;4.1994948;.9187904;1.0862408;3.7360866;-.25638109;.94279218;4.9918604;-.22274765;.56816965;.58897322;2.8274326;3.5128448;3.2058847;2.8058271;2.3307004;4.7654099;.69592112;2.104799;1.9371043;1.6015307;6.2128115;.48219287;.351491;1.4183226;1.0106434;5.3432188;-1.1397318;-1.381464;-1.3045083;-.51536989;3.3084979;-.39279506;.79532146;.88771701;1.3061646;-1.375459;.60331035;-.96305168;.79400319;-.060545925;2.8153563;1.4095498;-1.0102596;1.5261313;-1.3476861;-.1024485;.44435221;-.83601874;.22191082;.7018525;-2.3892467;-.20566998;-.94061112;-.35994643;.18770689;-.53213859;-.39656898;-.47789958;3.0611703;.80477351;.0034629265;.14604707;.80567801;1.0376714;.43893442;-1.3600456;-.35408163;.5351817;.95703036;-1.0983444;1.0120031;-1.1244949;.47582573;.41031554;-.44286275;-.37452099;-1.3664371;1.6749344;-.032461751;-.22837211;1.7329496;.69211841;1.2327645;-1.6123827;3.9646838;1.3909154;.61659533;3.0786755;1.4947397;.9814744;1.6261133;-1.2704297;.1995578;.46543041;3.628448;1.5897124;-1.5512574;2.2515385;-1.1036822;-.94161242;2.3197072;-.50271267;-.37538052;2.2651589;-.51340425;-.41616222;2.5656986;-.43939447;.46301156;1.4276568;2.1998415;2.1268399;2.5141342;1.0397136;1.8257022;3.202306;.35546014;1.6027845;-.38053474;2.2691684;4.5761395;.38150358;.013608786;1.3836808;-.11861437;3.4401331;43.958096 +.42423591;-.14692876;-.83887786;-1.2071612;-.15131518;1.0166447;-.066721074;.41747305;-.67166376;.89817262;-.29249668;.023739317;.41411847;-1.5065846;-.24724309;-.46681482;-1.5282118;-.14925969;-.26248491;-1.3805277;.35760006;-1.3323289;-.57887429;-1.8823369;-1.3653482;.0099511808;-.47284532;-.44014552;1.3748572;.078295991;-1.5018721;-.86350149;.8845737;-1.0975337;-1.7332692;-.53489614;-1.5712291;-1.1067207;-.28884059;1.7954634;-1.0993478;-.59251481;1.8939214;-.79798824;-.12934464;-.36815003;.16452694;-.29571086;-1.5370283;-1.6283656;1.9282705;4.0847702;5.8033218;5.1434445;3.2398388;2.3017962;3.0022242;2.3974321;2.1012576;4.1856737;3.8196604;.88938934;2.7572262;1.347507;.91467458;1.5659055;.77312171;1.2444183;4.8407602;1.1643935;6.7202945;1.3489352;5.7684808;4.8194876;2.0772579;3.4200397;-.84228814;1.0172346;-2.0631919;1.1390368;.18177077;.55534893;1.0657935;1.8351547;-.015166771;1.4001911;1.7441528;3.3536932;6.7831078;1.0472175;1.5407773;2.2643254;4.4203796;2.5068085;-.75932878;.27634427;3.2681556;3.6769719;.60925102;-1.8138372;.85194254;.58766127;.38518149;-1.1141043;-1.0146474;2.1525607;-.25358096;1.4858131;-.21404795;1.3412155;-.27692801;.62269485;.031339221;-.4011108;-.86851376;-.097448662;-1.6215701;-.5257895;-1.6849836;-1.3374425;-.33100966;-.12889931;-1.0973887;-1.3957266;-2.7839003;1.6372585;2.1829791;-1.7749485;-.83382589;-1.0089329;-2.5572872;1.4027307;1.082217;-.6164124;.753856;-2.2366788;-1.2090273;.20651829;.48169363;1.7399998;-.78641486;1.4483961;1.3805245;-2.1042306;-.33151925;.49230114;-1.3781606;-.26247621;-.32362646;-1.8485866;.079502247;2.223527;2.3560743;5.2288446;2.5267401;2.9711537;1.8991903;2.3519132;4.0282645;3.7529392;1.5741066;.62754071;1.5932616;1.250416;1.1592077;1.5468621;.48433998;.2453838;2.9088573;.46607426;4.8288884;.24131037;6.8676519;1.6492558;2.2207081;2.599587;.15723641;-.013353251;-1.5169686;2.1944594;.28741327;.92536634;.8380295;.24924351;-.20989266;-1.5333166;2.6585486;3.4039841;3.4873264;1.0085135;1.0701656;1.7710611;2.586395;.40668148;-1.6360707;.39048469;1.9747837;3.0702832;.38738936;-2.3122661;43.081985 +.048331548;-.89480269;1.9504386;-.28527671;-.42598253;-.99827278;.92310297;-.71361822;-1.149152;2.1032827;2.4477026;-.46925145;1.2059757;-.91078383;.71173286;1.3374751;.4620631;-.22552326;.51490021;-.7141735;.76441491;-.14687276;-.39903826;-.088179395;.69113278;3.4464357;1.1722337;.14558795;.53749883;.26557511;1.6640784;.15658253;.043085217;-.72483313;-.66293293;-2.0865767;-1.6003247;-.058044158;-1.5505245;-2.3749561;-1.814492;-2.3391595;-.72891986;-.52790922;-.49612287;1.2094275;.24476959;1.3310606;.2157065;-2.0814848;3.1210282;-1.1104697;.98069906;2.6560042;4.5737844;.77035445;2.8612015;1.2148263;.35469186;-.91726536;3.3241575;1.6272618;2.3141897;-2.6630321;1.8405434;-1.4406657;2.4797535;7.1014528;2.0192161;-2.721462;2.7392616;.19038625;-.82528824;-.74020183;5.2301025;2.9950185;.75429672;3.1363235;-1.5101721;3.4929671;1.6212082;2.0161977;4.4237337;-4.6853099;1.4932221;1.8042427;-.30167899;-.092149422;1.2180651;1.8404373;.41443652;.28025779;3.3229673;1.8006382;-.1136784;3.8300393;5.0907464;3.8204243;4.1698213;3.3280277;-.91802132;-.65352589;1.9425541;-.0069733197;.54238874;-1.8332944;-1.6959423;-.15957931;-.89313829;-.23641749;2.4688206;-.66605157;1.5856841;-.62999952;1.3510432;.52480268;.88118517;-.5860225;.23839816;-.58264887;.04981602;-1.010234;.4433924;1.1381466;-1.5984048;1.6494368;2.6515503;.21125184;1.9928607;1.3867331;2.525893;.7188701;-.030603858;.30515054;-2.1423459;.1842358;-1.5255173;1.3765539;-3.0744381;-2.0778289;-.95869428;-4.5869284;-.86907184;-1.0006089;-.62266904;.44236293;-.2280301;-.70095754;.01301776;-.4816401;2.3904135;-1.7447854;-.88817292;2.0734015;1.2293963;-1.4506131;1.6681191;2.4068937;-.94253999;.094140708;1.2321863;1.8123622;-.31053889;-2.6094258;3.4838505;.2633861;2.537519;4.9504471;-.81050158;-1.2836138;.66699553;-.79341942;-.033757206;-1.2788713;3.9549854;.40925568;-.088631168;2.1415641;.31047502;.68351823;1.6215509;2.1862037;2.5983074;-5.9144135;2.4425554;2.201277;1.8113081;-1.2367214;.1431438;3.1194217;-.63375068;.57350749;.96494389;.83702028;-1.48391;3.0979075;5.4648967;2.4786642;1.3142226;1.2815644;32.483982 +-.69508791;.89240319;1.4734759;-.62450737;1.1520554;.73243099;-.19534601;1.0782332;1.5046777;.98489213;.44170213;.0038311535;.94848955;1.3565228;-1.6601659;1.3541993;-1.1928948;.25671673;-.68966627;-.48101223;-1.0789968;.30420816;1.2151232;.63974005;.46006745;-.6093713;1.9106845;-.81280005;-.84922284;1.699361;.12272856;.35953832;.28512529;.013168013;-1.1695997;1.0564539;-1.4231716;-.85128522;-.92728567;.40848231;-1.6519004;.43237239;-.18935515;-.39484242;-.84443849;-.18545029;.19521613;-.8746748;1.0113405;1.3068213;-.42986256;-.5959959;4.2254753;-1.273878;2.8871634;1.4524349;4.1636443;-1.9964435;1.0814332;1.1058882;1.5179653;-1.9713895;-2.2172;1.3681928;1.571623;2.962013;6.9137473;.54085684;2.6783555;1.451593;3.3661594;2.731446;.78837562;3.6349564;5.334455;.9044863;2.1204338;.87966663;1.8462862;1.9492435;4.1812596;2.4871821;2.060303;3.58307;-.87809527;.05233185;1.0164028;3.9375882;2.5620441;6.6351309;1.5945451;2.8771224;2.1464698;.77728254;3.7586288;3.4472003;2.5150146;3.4924498;3.6359363;1.2892092;.70245492;-.72136748;3.1514039;-1.091736;1.2812005;1.3310632;-.85508811;1.312861;.96801794;.27421734;-.17980668;-1.1197716;.3410776;2.459285;-1.3712562;.39726245;.42029795;.72202307;-.4035736;1.1154784;-.5821833;1.326774;2.0860684;1.2217646;-.82006401;-.56773657;.88778245;-.046553049;-.57275099;.92960411;1.4471593;1.2842968;-.132773;.12022141;-1.3222136;1.1367058;-.95891714;-.53275239;-.24599101;-.23068848;-1.7935094;-.64266676;1.1739169;-1.3316923;-.48469004;-.19510902;-1.5704383;-1.3638669;.805915;.35688189;-1.0033727;-.41566226;2.6961014;-.26720399;1.1971688;-.063174933;3.1413066;-2.1359718;.56516176;2.0628529;.47804967;-1.3616737;-2.2368131;.25335923;-1.0310408;.71646315;2.1899314;-1.5331392;2.3392973;1.3249023;2.5528336;.38208041;.51524663;4.072207;4.5154228;.47315773;1.9061913;1.5441737;1.2334933;2.1430395;5.1185517;1.374078;2.4360471;3.6291225;-1.2373196;-.31505576;.11656021;1.2223265;1.5711064;2.7849021;2.276624;2.9358609;1.8032753;-1.0995642;3.4988592;1.3396623;2.5237458;3.1171978;2.9567015;1.4988432;58.017162 +-.30315527;.83395207;.38225177;-.18032938;-.76842064;-1.2431483;.63425231;-1.9632847;1.8075488;.53263301;.11666063;.9670797;-.12259302;.67220229;.18335253;-.057379272;.24086978;-1.4624491;-1.6839291;-.41353044;1.3117445;.16820051;-.24761719;-1.4981081;-1.2653234;.41202864;-1.246099;-.85762334;.25968665;-.45649397;-1.0127181;1.4309064;.40660521;.57998216;.11148352;-.67619359;.097429179;.87881631;.36273336;-1.1505263;-.73514354;1.4906389;.72610193;-1.3973147;.70825213;.29015133;2.1490366;1.3082923;.92371124;.10762995;5.8158007;3.0521586;.97812587;5.7212224;-.32376516;.20906582;3.9069655;1.6887242;.98110855;2.6246271;.74540627;1.7517816;2.3263521;4.2318377;2.5922899;5.0264821;5.1223645;2.7430723;3.7250214;-.44530421;1.6344466;2.6421366;6.2431278;-.35356182;3.4166362;5.056685;2.3915336;3.3550422;-.39443573;4.32616;3.5625122;-2.6744764;3.2476335;5.0494881;-.76355219;1.7101814;2.378813;-1.2311399;4.0926523;2.7240064;8.3987656;3.0444925;5.116282;3.2847059;3.13079;5.0985651;.45483652;2.1228149;.37690032;1.4447529;-1.698773;.9534927;1.4366649;-.64092344;-.49375919;-.8826986;.66195041;-2.1271265;.46383476;.89298689;.22900075;-1.3163062;.057168141;.03450508;-.793266;-.7114715;.042492103;-.79898351;-1.260978;-1.3538809;.65888482;1.2307436;-1.1739013;-1.376816;.67039078;1.3284287;-.89497954;-.65520924;-1.6592408;-1.2931073;-.39611644;2.5810101;.75850248;.03883075;.45703158;-1.7831578;-1.111941;1.6554794;1.3063531;-.21111794;.18695636;.53199071;.46046883;-1.3385044;-.31540513;-.56158328;-.5384354;.14239436;1.664248;-.14871478;2.6186261;2.4412463;-2.093539;3.2023523;-.13488431;-.43757001;2.9856241;-.23042533;-1.6196536;1.2003053;.54721403;3.1421754;1.5479511;3.2460728;2.6417394;4.0292993;3.8152888;.022163512;3.1376989;.68882316;.49500781;2.6303964;5.5036354;.99392635;1.9409845;4.9131427;1.6588997;3.992996;-.74229342;3.6161661;4.3671823;-.85390121;2.9283736;3.7401671;-.74253082;-.25910038;2.1373048;-.83909625;2.3772249;1.1950142;5.9164381;2.6460338;3.415827;1.5308459;1.8047531;3.8480053;-.161337;1.7866095;2.5606089;1.780575;66.979019 +-.14718212;.4869161;-.59998214;.64491796;1.3387206;1.2595818;3.4709144;.33876526;-.22471413;.041164447;.68543357;-.83403254;.73105502;3.6700847;-.4672083;-.81948286;-1.2321309;.35342044;.22709082;-.26910055;.024516782;.43140462;-1.4736935;.54454505;-1.0923531;-.22515157;2.4123011;-1.189677;2.0412052;1.3180628;.41862094;.42739218;.74802089;.44940889;1.6027632;-1.0089378;.72175997;2.3658025;-.0031559826;.076614738;.34412012;-1.2596728;1.2401068;-.66479492;-.46793339;.1296899;.96302634;.70410341;.81033385;.21434034;4.9639626;-.2297895;3.336194;.045312341;.50385332;4.8916097;-.14195809;2.7116952;1.6788607;1.4241632;3.0783587;2.5758867;1.4486237;.98088086;1.5692362;1.2049356;2.2417159;-.30437449;.73349732;4.0445499;.16770694;3.3823681;.90349704;3.0853319;-.70718062;6.7751198;4.5993571;5.4533744;2.4956169;3.556092;1.9638369;3.1874354;1.8084093;2.226655;.99063814;4.310421;3.7198052;2.0590315;2.4577823;2.4438777;.32558417;.020823967;.33973694;.080567501;1.5998693;.66229939;3.4009893;3.7620368;3.447197;3.5583787;-1.225336;-.12293261;-.61427331;.37512109;1.2908913;.67161828;1.6788235;-1.2069702;-.1341632;-1.4462228;1.9688115;-1.7166209;1.3014808;1.4292879;-.34030932;.92234951;-.5835771;.0086090155;.26882872;.060086105;-1.5767937;-.016800549;-.21953817;.37546831;-.91551399;.13475659;.81180215;-.46047676;1.0790879;1.5029156;3.2760751;.42099392;1.2246165;-1.6213838;1.3417224;.39981011;.80610001;2.2899938;.99753749;-.052980304;1.4327546;.31935647;1.3941236;-.90104336;-.11762764;-.47338301;2.3118985;1.4580814;-.35416818;1.547371;1.9050506;.34494624;1.9778473;-.90395814;-1.4075232;3.6730583;-2.2711172;2.9838245;2.1181295;.5980494;1.6627891;2.6355708;-.18353286;1.5620686;.30094153;1.5680526;1.6308663;-.61775309;1.4372078;3.002852;.86554867;4.1372252;-.6382091;2.2624996;-.46376109;5.8986974;1.9015852;4.4806042;.87072915;1.9114288;1.3921804;2.5724511;2.2658925;1.1916693;1.2277582;4.8137527;2.3812184;1.5466501;2.0247686;1.2967927;.73348826;.18655628;.15561815;1.4614143;1.4424291;1.0064466;2.8916166;1.3901662;.57693303;2.5585735;59.216148 +.50896364;.75500131;-.36841628;.025914775;1.4409598;.40479949;.72728753;-.86061889;-.69690931;.09552072;.88111717;.81228626;-.72772104;.21299221;.23909207;.5367946;-.58528274;.83475757;.48903665;.47210798;-.61543924;-1.1363811;.19109198;-1.5349998;.89358234;-.7868939;-.89556938;-.11996795;.76522708;.051021047;.48569211;1.1294943;-2.1358299;-1.2350461;-.58305871;-1.1162946;.49340063;.68368077;-1.1467024;2.2592149;-.25315356;-1.909839;.8420921;-.59947562;.8743332;-1.0330564;.30317235;-.94472796;2.2686872;.40541586;1.715542;.10877568;2.4199431;2.7747808;.59035194;.79607517;-.71387923;1.7524954;2.0077779;3.0509384;5.3395162;2.4490931;-1.6343021;.8099401;-1.2321446;-.6254009;3.0523047;3.5291286;3.1005776;2.5199723;-1.3973128;-.51402056;1.7776833;5.382369;2.1364112;3.2396221;.92821902;.11240869;-.10842407;-.057614516;4.4284348;2.9214506;4.0451884;6.4097757;-2.1107562;2.6496909;5.5273333;.87942201;1.8849884;-.24215515;3.0775902;3.5958126;5.0508971;3.3543484;-.19460645;-.60858876;4.3918433;1.4290798;4.3849044;4.7544861;2.1492288;1.1493713;1.5163254;.55397832;.28185067;-.58613032;.6850909;-.50947744;1.0937574;.24262439;-.020261519;.13929963;-1.3428844;.18562344;.73764169;-.10879396;-.67896318;.59397948;1.764223;1.087767;.66629827;-1.9571574;.0052695167;-1.6700666;-.22152901;-.57496637;-.71556675;-1.1271586;-.6892609;-.73014623;-.091076255;.1426502;-2.0027311;-.33571523;1.1088556;-1.0374823;-.27778125;1.4306488;-.81485897;-.12859085;.56661987;.32412878;1.6422881;-.40824199;-.63341379;-1.0967231;-.069512039;-2.2646823;1.9734832;.11496438;3.2059145;-.64002442;2.5855975;1.65082;2.3144794;2.6461098;1.3859913;.71865797;1.1497074;2.6247203;4.3610358;1.8904854;-.09168797;2.0455656;.13629855;1.4197831;4.3463416;1.8734125;1.861776;1.8184787;-1.1864917;-.62971312;2.3749037;3.6943846;2.7008293;1.5690341;.7367624;-1.0637138;-.039751593;1.8189423;3.4895029;2.4959214;3.4272056;2.2149308;-2.2077062;3.8410347;4.2338901;.10848513;.79437572;.30286178;3.0383527;1.4071335;3.6651828;2.9455955;.78602517;-1.051672;3.433291;2.0849957;3.5611544;3.7448518;52.82653 +-1.0984145;-.20094751;.0080127353;.19551776;-.49048886;1.2510078;.76405853;-.45831707;.73483038;.086050615;-.2893596;.26549456;1.8999631;.065824531;-.50950915;.60835803;.27761859;1.3151535;.72153407;.87370002;-.33865082;.069666885;-1.2910056;-.93053609;-.1814753;-1.0788912;-1.0958682;-.84474546;-.50610739;.33030456;-1.6205121;-.60135496;.33386239;-1.025226;-.51478773;.64828891;1.3599564;-.40489003;-.23787609;.86506283;-.44343823;-.82483447;-.053562853;-.031881079;-1.0957192;.036823794;-.94648051;-1.0216014;.042311154;-.49284822;-.90534133;6.1937575;.074323952;4.7448139;2.7717941;-.079596765;3.8226275;2.8869228;2.3861244;-1.5300342;1.7805934;5.3442111;2.0995238;-.49152422;1.4432863;1.2119727;2.3735857;1.3286159;1.3098036;.1053663;3.3424978;-.76973438;3.1087394;1.3884515;-1.9314214;2.3374283;-1.0792489;-.56032121;2.0345073;2.1039;1.0880669;-1.1364977;1.9097214;1.8787234;5.0584841;5.7980852;.86361378;1.3345335;.2013109;3.3145795;-.92658591;.85331213;-.68415082;.37169278;4.5877738;1.9311719;6.56881;5.2640777;4.0222654;-.8750779;-1.0830473;.00085954258;-.1095327;-.50274843;-1.3437759;2.23385;1.9689543;.36761609;.063801259;1.0738935;.92378426;-.86274946;1.4682477;.13764219;-.22205772;-.89911932;.77172339;2.8241377;.99725658;1.7014732;.0098694004;.067770556;.20793623;-1.4996263;-.34222466;-2.2660277;.33321878;.22663434;.50157833;-.32722598;-1.5404472;.73003304;-.69552666;-1.3088726;-1.156225;-.79347074;1.5461287;-1.8194022;.10067938;1.3817157;.12971865;-.74073821;-2.1116803;-.13843292;-1.272612;-.53359264;-1.6903718;-1.7686559;-.34895518;-.75231439;-1.5340276;5.0394626;-.12134082;3.3030243;1.8641942;.89793313;2.8590961;3.037648;.36887687;-1.7789332;1.2081698;5.0953269;2.1968846;.51154965;-.023184013;.28854975;1.1522501;1.4830887;.28250051;1.0921457;3.8483372;1.2141922;-.34436861;.94001001;-1.5294086;3.4851444;-.7623232;-1.2901853;1.0810239;1.2949764;1.7404773;-.3238942;1.1945611;.28478792;1.3726789;2.3249886;.57107705;-.64422482;1.7352509;4.0504208;-1.2593484;1.3324871;.50649792;.22246525;4.7320709;3.4468532;4.1392274;4.0962448;2.5346808;.43664929;41.744129 +-1.6457559;-.47312605;.77677715;-1.0048952;-.03186325;.58418554;.54555732;-.53675014;.79206085;-1.3369395;-1.0004877;-.42440462;-.74470145;.99878174;-1.2450458;.35210472;-.49955201;-1.2304521;.98933494;-.76368612;-.55132735;1.9760637;-.1320508;-2.0065084;-.14127375;-.18227677;-.20582089;.28962088;-1.3832594;-.52193087;-.55791855;.48080981;1.6916345;.179187;-1.5376807;-.68921924;-.77308935;-.3534326;3.5283062;2.5481122;.28650862;1.0267653;-1.3863326;1.0276171;.87293106;-.16277549;-.014053564;-1.0504502;.23574786;.84418643;1.8514565;1.9532247;1.0511451;-.827263;1.8384516;2.521131;2.1595502;1.5096371;.48462069;3.954505;3.6729879;3.3426068;1.6848367;1.3496376;.20040022;4.3762312;1.8222306;.27793664;3.8193417;5.1140914;1.4890943;.68653464;-.39983919;-.73292375;5.8162408;.91924703;-.4378812;2.0223334;2.8258734;4.3989882;3.1917119;-.36297581;.10291634;-.29017565;.99723262;-.12552966;-.75934565;.95893711;2.8492472;2.7703037;3.8076246;-1.820363;1.7575907;1.8098871;3.6845694;-2.3823259;3.7454538;5.8837957;-.8950243;2.3774836;-.90646315;1.1530768;-.6304931;-1.6919813;-.81260639;-.46599692;-1.3649992;-1.5551337;-.1928383;-2.0462339;1.2865477;-2.0200481;-.12684351;.095014051;-2.0805414;.30953774;-1.9863725;-.21776007;.58877832;-.16011421;-1.7176253;1.1300716;1.3919399;-1.34649;-.057261042;-.48878053;1.6501681;.70870757;-1.4758441;-1.5150462;-2.5396376;.94022334;2.9999042;-.40474489;-2.1587636;-1.4716544;-.69983286;1.3945451;3.7850704;2.3394084;.90462673;.37551636;-.78095448;.15850665;-.85270053;-.33883637;.32947421;-1.5866623;.778763;-.26800978;2.5198317;1.3152101;.1446436;-.13354507;.29938;1.1320128;2.5326083;1.8489302;-.76906395;2.6798341;2.9822609;3.2363114;1.7127423;1.2308649;-.035811592;4.2446618;1.5974438;.6297245;2.6091681;3.433239;1.4747047;.44906241;.078970738;.31513739;4.4747672;.95332801;-3.0282643;-1.2986217;2.6873856;3.2574883;.93838;-1.3695087;.68647355;-.57090914;-.21161605;1.507457;-1.3365535;.84279764;3.1544616;3.2375331;1.7840537;-1.2423582;.27924487;.21699497;1.2788776;-.26405284;2.5976996;2.4215341;-1.5755759;3.381218;48.305382 +.0081597604;.20258754;.28625536;.048976202;-1.2177818;-.6271711;.60532612;.59510559;-.43653229;.098171979;-1.0380318;1.7261108;.87834567;-.32971281;1.827106;-.93484735;-.86837244;-.83817333;-1.3869928;-1.0698792;-.46400586;.39333305;1.3086865;-.30128103;.51069564;.52414089;.33733517;-.55071008;1.5547484;-1.0991114;1.3615761;.86010981;-.51735431;-.9285301;1.0436805;.38617679;-.043136597;-.78607404;-.22901239;-1.0725764;-1.151018;-.2779766;.98477125;.19884728;.5604952;-.64997542;1.090741;-.070743755;-.88505208;.8026489;1.1310415;-.79883397;1.8809943;.10824141;2.0611775;1.407322;-.1629436;-.8671388;-.4951539;3.5446739;.89655745;6.2905736;-2.4775538;-.13142282;4.5095654;1.2298909;3.0403368;1.147988;2.4644725;2.8237369;1.8527112;.072939023;-.47513428;2.676064;2.9691491;4.7944498;2.2336669;2.896065;.32000676;1.1811979;2.8012919;-1.1554192;1.6574906;3.1929231;.84339368;-1.2350211;.80557024;4.693831;2.0025845;.024978209;.71032864;4.545197;-1.2932351;1.8051271;2.8531744;-.53584492;.76219898;5.4008594;2.7903802;.81841177;-.052655082;.51931876;1.7560626;.62757558;-2.5473247;.23234528;-.72869205;.14887083;-1.042202;-.21277206;.42951685;1.8378142;-1.0822524;.34768075;2.5367179;1.5604142;-1.8323711;.82623208;1.0848179;-.84986413;-.077823929;-.099116497;-.66118973;-.53001308;.73017013;-.0040349197;1.137983;-.90095234;3.7156565;-1.6828281;2.8352098;.76555681;-.051022917;1.2234738;2.8923411;1.3639109;1.2458382;-.8675124;.5416978;-1.5638654;-1.261459;-.28488222;-.040396009;-1.9310615;.81191158;-.16926378;1.4240959;-.5507527;.54179311;.48696059;.79579592;-2.3857901;1.1610776;1.0108999;1.8562888;2.496438;-1.5671232;-1.2226597;.23557517;.45964229;-.48802987;2.8409231;-1.7975585;-.78704804;2.9831417;-1.2003336;.17742184;2.8688083;.58718181;2.2446065;.36060798;-1.1386943;-1.5211101;.86071229;3.1582589;3.556834;.89248896;2.4270737;2.1306162;-.6158222;1.6554464;-1.7036859;-.079020552;2.9295211;.056138877;-.9909448;.79310906;4.1001163;1.9666582;1.6112767;1.0848404;1.4850059;-1.386753;1.7799205;1.6372578;-.87234718;1.6032565;3.9436064;2.1322279;.78612697;39.926567 +.50272655;-.58189249;-.19086978;-.097096294;-1.061169;-.63236469;-1.7077206;.017168792;-1.2720329;.18700491;.75320649;.92441821;.023710135;.81926745;1.6382611;.016441468;-1.4276032;-.3061628;-.38698894;.85047632;1.5072252;1.2874527;-.71558285;1.2499545;.48963693;.65827245;.10593164;.22003937;-1.0524737;-.34412828;.62460214;.075597182;.50567025;1.8588529;-.29445317;-.74181277;.29644623;.27639312;1.7856818;-.81644565;.58211988;-.63948429;1.308588;-.61433774;-.50877553;1.2098609;-.3079367;.77299058;-.073649377;2.3413732;-.84490633;.77120489;1.3642684;3.0971682;2.7802327;-1.3164302;2.6269441;2.5675795;.70364851;4.4302421;2.0428114;-1.2432441;2.2291794;.16043995;-1.3938798;1.2201864;4.3473978;2.719702;4.8985052;2.608377;.9543007;1.6129447;6.8065186;3.4480543;.78955609;5.1543512;4.495295;5.5699329;-.8910147;2.4862058;3.1177161;2.0915222;2.2070947;1.2304558;2.5025423;.80652499;-3.4785862;1.7819752;.95495349;3.4484367;.56566793;-1.237928;2.3273232;.18958756;4.6682348;.87670094;2.4830084;-1.6799483;3.2980237;3.4653242;1.1604877;-.21686523;.0376499;.33416054;-.26569819;1.1713393;-2.5552742;3.0207169;1.0312024;.052169591;1.3149877;.40936092;-1.0070057;1.4599217;1.5324099;.2409012;-.42548612;.39545777;-.59870136;.25818706;1.1451454;-1.048759;-3.0485449;.68529958;.15834408;1.8188732;-.3499772;1.7749765;-1.9772006;1.7179271;.23939329;-1.895804;.28464204;1.2111428;-.54757822;.33978122;.23090369;.63846904;2.7949116;1.5671406;-1.2743939;-.73263073;-.13657039;.43022478;-.82505649;1.6971422;.93341547;-.31821823;-.12356737;2.3227465;-.49368212;-1.6234323;.56807441;1.9668046;.88915348;.69771475;.98901427;.49692866;-.18893275;3.125474;2.5231822;-.89970767;2.0419722;.72704911;.44978064;.51434726;1.8614649;1.7413133;3.7562225;1.2727286;1.4200114;.26161847;4.5760388;3.2657106;.49858004;2.9198356;2.7994404;3.6518805;-2.4910619;-.28158337;2.5358922;1.5452362;3.8335521;1.9335701;2.6862104;-.24960007;-3.3645735;1.1131971;.7766366;3.0267749;2.3163548;-1.5300202;1.7574786;1.0409451;3.6935961;.22423778;-.47495601;-2.0271468;1.284243;3.5507104;49.732605 +1.0622131;.85559642;.18257102;1.0603638;-.058893405;2.7276578;.24158016;-.20868628;-.1815868;-.72474539;-.26622298;-.74243408;-.89079618;-.13855092;.48210829;-2.0364177;-.20054458;-.28957748;-.025568131;-.96134204;-.80326355;-.096942581;1.0052223;-3.4333928;-.057839636;.98941666;.85720354;1.1297928;.16809742;2.1497791;-.44876423;-.63148117;1.0147905;-.38891017;1.1073356;-1.0910479;.83911669;-.84577489;-1.6049913;.17698167;-.71624672;.1680589;1.480415;-.64308476;-.6566329;-1.4789915;-.79387295;-.25626385;-1.1271776;.93024606;-.072156347;2.9294441;.3675501;2.0065651;2.6801276;-1.3591028;5.7625251;2.5685344;1.375875;1.2507333;2.4635313;2.2340634;-1.9250997;2.5900636;-1.8469017;1.9033228;2.7832623;1.258162;2.034667;-.92807817;4.5157938;3.3136277;4.179915;-.12088996;-.042090476;4.950809;-2.1331124;.58095515;3.2819753;.48023063;1.2463158;2.940686;2.252876;4.813643;3.1374953;.29924291;-.50802648;.89084697;1.5776134;-.068244077;1.3005571;4.5922365;2.6071713;-.89650285;2.6905544;-1.5817808;2.4554534;2.5337653;.61866099;2.6916678;2.2924054;.31017575;1.3994387;.86089426;2.2522783;1.6616796;-1.6155075;1.5396278;.90308738;-1.2936268;-.74995387;-.26070887;-.26219931;-1.6118735;-.55409223;-2.9927199;.18841101;-2.0327773;1.734488;.44912449;-.77505744;-.1429958;.98986936;-2.0646451;-.34758827;.68507719;-.31031933;-.66834855;.11389393;2.3485856;.90089941;-.47554427;.97843415;-.2718572;.11207392;.45995152;-.016812796;-.79959291;-1.2377149;.95715058;1.0332255;.7884357;2.4076984;-.0044096988;-1.4202909;-1.0387292;.35070676;-.34554371;-1.4409947;2.5700758;-1.6714965;2.776535;1.5332479;3.0383835;1.745615;-3.1136575;4.2135606;2.4497786;2.1697803;.99341559;2.0707409;.96857804;-3.2859576;1.3388338;-1.0577461;3.1905169;4.341774;.38527775;.87804371;-.49049252;2.5176909;2.3115392;2.3749344;-1.2890836;2.0346024;3.6273074;-.9871909;-1.6816547;2.9311793;-.17482823;-.048535127;1.7551395;1.4730403;2.8730016;2.702044;-.21928824;-.79612303;-1.1209882;1.7281386;-.19666143;.28778234;4.0571322;.78774518;-.75288421;.49475208;-1.9920695;.14083783;1.992849;.56759554;1.3017057;32.369133 +1.6757364;-1.099515;-.41524383;.48660007;-1.6010574;-.29858816;1.2019526;1.4867059;2.0731173;.74593437;1.1153438;1.524456;-.089906834;-1.6537421;.93891573;-.87203455;.0052208733;1.2840964;1.269387;.42292935;-1.6370349;-.61582917;1.8185998;-2.1957738;-1.3026475;.097933874;-.47604573;-.13364893;.83119154;1.7448909;1.3402755;-.14843659;-.032685652;.60900205;-.36450553;.33578148;2.1603086;.13214137;-.5755685;-.81285495;.62522447;1.124826;1.8654914;.88859749;-.26850528;.73095626;-.35099596;-.3996084;-.097435638;1.1351407;1.4352108;-2.1109896;3.9360645;.67212814;4.1066871;1.024922;2.7337315;2.4747224;3.3366983;1.9293864;2.2164841;1.7919089;2.7987175;5.4627447;6.3399525;2.2907708;-.018129373;1.9673148;2.9395249;-.24737334;5.5982065;1.6586576;1.3189538;1.6570867;3.3145499;1.2998284;1.9986079;-2.4225855;1.6316518;2.4976172;-1.5118679;3.6385827;1.1481684;2.1521881;-2.0389304;-.01322123;4.8073945;5.8825145;.33286524;2.5407882;1.5767145;5.5540242;-1.4620848;2.8063316;1.1054896;-1.5157938;1.129642;-.58634347;6.0999231;4.5069385;.84731263;-1.3585858;.36196589;-.082543343;-1.3785433;-.039067339;.44136116;1.8292718;.71433717;-.39018798;2.7826278;-.87524855;.76318854;-1.8265018;2.7102973;1.3776901;.72592819;.56182373;.57142085;.52814984;-1.035494;-2.3999665;.09105029;-1.0228789;.1129465;-.23201074;-.28513923;-.18675885;.40756541;.59380597;1.5880141;-.8328945;-.93689686;-1.6382769;-.82036102;-.62955606;.29021281;2.2580881;.30535024;-1.2892082;2.3199997;1.8566872;1.4487693;2.3060083;-1.6765262;.025205323;-1.8104948;-.19366775;.33913547;.032301363;1.0078877;-2.6367259;3.4047356;1.574198;5.8596907;1.0225239;2.4714613;1.7206341;3.7792976;.19859244;1.7875473;2.527874;1.2089556;2.8019867;4.9601102;1.4427224;-.048224375;.73571992;.77937567;.8946659;4.8170843;1.3347802;3.3562806;.11959364;1.9445972;.70357949;1.5088741;-2.5695949;.16881382;1.4148719;-1.8694081;2.4034255;.82251376;.45112786;-1.3040241;.58212084;4.2511649;2.9637129;-.096987918;2.558368;-1.0824403;3.5495975;.14020614;.73493659;1.1812048;-1.594295;-1.017188;-1.4080998;4.9411144;1.9301125;56.430664 +-1.1725875;-1.3182861;-1.5100222;.95769811;.66915607;-.36373329;-.31160283;.087565213;1.912215;1.7072514;-.68005461;-.70476443;-.69374281;1.4474354;-.13001418;-.73424244;.51508325;.19024207;.85142553;-.35278377;.21033448;-1.2684858;1.7699306;-1.7584999;-.561472;.59475082;-.41031438;.60111612;.51111794;.038293447;1.8245926;-.15818872;.40847576;-.31077623;-1.3502681;2.0565181;.095291004;-.017615225;.15806812;-.64734113;.057344563;-2.9721439;-.72407216;.36518279;1.3521575;-.83058375;-1.678351;.41814181;-1.6675743;.97179878;.26395434;-1.0630341;5.4864888;.47354054;1.5833687;.83671898;-.0073944242;-.45890725;.25644368;1.6967975;2.1555259;-.90226096;3.7202308;2.5221362;1.7563351;2.1769462;2.2437952;4.9993458;1.8867259;2.1238346;1.5638926;-1.5016314;3.2548394;.4344089;1.2302297;3.4270561;3.9473538;3.4970787;5.5142827;-.430217;5.7398291;1.4571998;-.88833255;4.889132;2.0919247;2.3054998;1.2739457;-.48836794;-.58883613;2.0949376;2.7056067;-.31167328;1.898953;3.4673207;-.4460133;1.1477087;-.8994453;5.4356713;1.0130529;3.4226294;-.23170491;-1.5226417;-.52243298;.00060017791;1.594892;.073505178;1.8638914;-1.2268621;1.0195202;2.299926;-1.9628292;.28476363;-2.2101386;.95962638;.17999545;.57144833;-.72288126;-.63648766;2.0946276;-.16067944;-1.962923;-2.0506735;.098788209;-.19236796;-.38559714;.87106276;-1.0625319;-.14668949;1.3015202;.63061839;3.6048405;-.88442999;.47019047;1.0081401;.74523205;2.7449622;-1.2921132;.18673585;-.13383752;-.58010536;-.59179878;-3.9185348;.14126439;1.2096729;.20694022;-.68568468;-.76606405;1.4141814;-2.0213034;-.69278681;-1.5636243;-.20268255;3.3106525;1.4199361;1.9144636;.60775405;.84387612;-.45077151;-.30933407;1.496048;2.3531511;.79632539;2.2434022;2.1720524;.71288842;1.683553;1.1732888;3.8744667;-.76363748;3.2118645;-1.0545691;-1.640308;3.1140785;-.6086731;1.5282362;2.7460248;3.000463;.54474366;3.512006;-1.7730409;3.2505968;1.63263;-1.9703068;3.0569987;1.6206176;1.9189143;1.2298744;-.11364473;-.94684726;2.0258965;1.8130405;-.64545155;1.164672;2.7621243;1.4758155;.05421019;-1.8403838;3.0301511;-.2660341;3.5795767;38.535236 +1.0491632;.43457657;-.25362942;1.6483755;.15423638;.45247468;.35730374;1.3620701;-.68425024;-1.9764973;1.0882819;-2.0355382;.18935679;2.4971557;.10825175;-.98827064;-1.4257983;-.12118893;-1.551419;-.47877529;.52903068;.0099016912;1.0652368;.44381031;-1.2099837;-.19592535;-.55065852;-1.7495308;.13818999;.37474424;-1.5210522;.42986968;-.95720893;-.024299072;1.4871427;-.16339085;3.1009543;-.45511368;-.77232069;-.42917037;-.10306938;-.63532227;.6147812;-1.9654746;-.82162642;.22125499;-1.074851;-1.1600904;2.0805342;-.62458545;5.0368748;.021189732;.23605002;1.7032698;2.2310421;4.8269663;2.6850233;-.82889944;3.3325076;4.8171649;2.5269029;1.1136153;.82586837;4.1873908;2.4262521;3.0679035;.84525633;4.2344265;5.3305197;2.5829968;4.0074301;-1.0298077;1.6901754;1.2517744;-1.0230196;.0090187024;1.1219399;2.7094085;4.800065;4.6004314;3.1889505;4.7069817;-.41586581;2.1452479;1.7113274;2.617538;5.5707664;4.8286753;-1.409101;2.238795;3.3096032;4.3533745;2.9373026;3.811197;5.0264678;3.7091372;5.8390083;2.0632849;2.3827908;2.7828805;1.3811796;.67597216;-.16980904;3.169601;-.62184495;.98090464;-.77212942;.81254208;-.30362812;-2.4261854;.48319671;-.94904035;-.79468465;1.352077;2.3783209;-.12199116;.19539705;1.5912898;.77377051;-1.0530233;1.0443873;-.20887068;.76239216;.62042546;.90714836;-1.6688677;-.14506482;-1.6642396;-.34405825;1.5414419;-2.3986781;.57350409;.86028451;-.89218378;1.7514182;-1.3077993;2.1796803;.026307009;-1.5020474;-1.1962988;.85225332;.25599834;.095379829;-2.1940498;-1.1859889;1.5101992;-1.0171046;.68329012;2.1888731;.10953774;2.6004841;-.70428884;-.98787546;1.7512792;2.9020655;3.830621;2.3714321;-1.1819212;4.6221814;4.0142574;2.6155493;-.68820912;2.2761433;2.1528087;1.5118392;1.1929682;-.5068056;1.6403867;4.7334633;1.8356388;3.4576921;-1.7396317;1.2858232;1.4702629;-.45818877;-.68633282;-1.3315601;-.57315636;3.9177268;3.7422526;2.6819415;3.4034085;.37932616;2.253154;.38648134;1.8621807;3.665972;3.0106604;-1.6317315;1.7655081;2.5506155;4.0138822;2.4063287;3.3915808;2.4819715;4.4937968;5.4846659;2.9221075;1.2251722;2.0902503;64.382332 +-.29662758;.45863926;1.4498608;-1.6120218;.072894841;1.37168;.24628039;2.7942784;-.95459205;.90600443;-.49928495;.88883531;.023249969;-.11475136;.15653628;.26470783;1.1912764;.20732781;.43319389;-.97729003;-.72073108;.85538399;-1.4743701;.33944669;.93003947;.38511053;-1.3617984;-1.5008347;-.75999832;1.9652609;-.97688824;.70152146;.96303201;-.78642648;1.0422931;-1.933511;1.8096626;-.74996084;1.0126463;-.80345529;-.22599633;-.9205792;-1.2882355;-.24630944;-.47447756;1.4230881;.054818343;.13850716;-.71107864;-1.2722511;3.1230354;1.8003211;.37407747;1.6204395;.64999735;1.0412962;-1.3188192;2.9514353;.97725534;2.9965603;3.8899019;-.054953713;3.9493787;1.6749309;.49810463;1.7591231;2.2285511;-.66302925;2.2795;.20599151;1.6544607;.52105719;3.2783246;6.0524545;.81266218;1.8075519;2.729485;4.9692326;1.8041061;3.0713341;2.9399893;1.1107749;6.7781534;2.1790457;3.2862432;2.5015776;3.2601497;5.4629812;-1.2672782;5.4999094;.89249218;.70671272;3.0020118;2.4053631;1.0977719;5.2895184;2.1134791;2.5259089;.079090357;1.9757985;-1.8785752;.37503418;1.1782004;-1.7422417;-.82701087;.72720683;-.018646836;-.52935207;-1.5280068;.80373651;.71579695;-.56836694;1.7990034;-.19914344;1.4834828;-2.5668116;2.0938165;1.0097288;.8915723;-2.5385983;-1.3284903;.65068448;-2.601933;-1.3032465;.32594827;1.3914734;-1.7042972;-2.0289073;-1.2724179;2.443979;-.28537077;-.10524336;.56899709;.3884612;2.7424092;-.60463685;.58957893;-2.3466208;.85222894;-1.314618;.63916922;-1.9568154;-.94079673;-.52736044;-.91877657;.52634937;-1.004478;-1.8630781;-.96708983;-.90443134;2.0558336;2.539335;.023436168;.6404323;.72386169;.14345427;-1.2123677;1.6390293;-.23584342;2.8073082;1.9133713;-.070893362;2.7971611;1.420429;1.0478525;2.3123081;2.1291978;-1.0304568;2.5504336;1.147711;-.043109678;.5665763;4.2569246;4.4068241;.38913316;2.5101843;.63788712;4.4111633;.71437681;.70928055;1.3386651;-.010845838;4.5262623;1.5804855;2.3141844;2.8006377;1.6392415;4.1197944;-2.2467499;4.0456796;1.628687;.68906939;1.9241202;2.1704214;4.1144638;2.9575779;1.3498664;.78360164;-.058033057;.89276659;52.507801 +.10790125;-1.8074715;-.28023568;.024827337;-1.6048182;-.3100757;1.249282;-.19133066;1.008703;1.4294355;-2.0128202;-.61252362;1.1931928;1.4066072;1.5084922;.87210351;1.7497268;.22181188;-.22292167;.37104419;-1.786007;2.2774968;.09574493;-.64467925;-1.1404054;-.48958677;.92198706;-1.3999666;.18647058;.67654556;-.066014357;-.61945164;1.7442831;.49109834;.8639971;.68498302;-.49657503;-.09964177;-1.5192785;-1.4078821;.50804144;1.2810909;2.1236246;-1.5253165;.41879436;-.19789112;.31919917;.47548872;.66635191;.26018921;4.7358308;2.3895214;-.56396532;2.4641225;1.6804949;-.58386755;5.1991372;-.9657197;1.4475462;3.2370222;2.9256258;7.2230353;4.376297;1.2268237;.0042695319;3.975904;1.8055866;1.7306465;3.7522759;2.9088652;-1.0383635;1.3733047;4.9924707;-.54604727;.64512861;6.7933874;.44407144;.60851097;-.80069548;3.9061313;.32844791;3.3537805;1.3708378;2.5665624;-1.0956789;3.5570328;.99033201;.7144987;2.0742662;.05433502;5.4487019;-.96099031;4.7599897;1.3458228;2.861702;2.0247164;3.1806276;1.8968589;1.5313759;3.128617;.38677943;-.98868811;-1.1861055;-.40761939;-1.0859623;.17172319;1.2254258;1.059422;2.7255645;1.1661401;-2.7736948;-2.4321742;.60322279;.28457659;1.3132236;-.084218174;.065261371;1.478093;-.92843443;-.0021638225;-2.1049118;1.7000098;-.30628479;-.67398131;-.61990178;-.71595293;-1.9410756;-1.8790156;.13479614;1.7090418;-.2365139;-.39163411;1.2592169;.85954458;1.4836181;-1.4247113;.35674161;1.0839087;-1.4883226;-3.2113361;.89606792;.22935526;3.0241442;.044260468;1.5559218;.52183825;-1.1970063;1.3761047;1.0371579;1.8459463;4.351265;1.6794436;-1.0381047;1.1216433;2.9760387;-1.2151995;3.8573422;-1.1099327;.34353313;2.3532112;1.1532331;3.9761782;1.4698958;2.2746508;.61339015;1.6122241;2.3844378;.67007846;1.5114489;.96012235;.65541828;.47960836;3.5745466;-1.3937196;-2.724695;3.876488;1.8704225;.29721946;-1.1584917;2.6007743;-.16039303;2.3058617;2.2588711;1.9668717;-3.0565093;1.1020855;.57512337;-.67324668;1.3103186;-.18678065;.94400495;-.34921953;3.4094191;-.49144697;1.9932843;-.28496704;2.2770901;.20872217;2.1405194;-.27430677;55.811234 +-1.9317061;-.167597;.27697557;1.145098;.34910685;-1.0350608;.19727106;.080967985;.6605798;-1.819654;.010697324;-.35729849;1.0151558;1.2926927;1.8887638;-.096971184;-1.0769582;1.8194467;1.3354564;-.51468933;-.64576823;-.47013837;-1.1572874;.40456736;-.010601646;-.13192858;1.0006276;.73543829;-.64483303;-.39704046;-.86763984;-.8145079;.42240009;.15306804;1.3989896;.42508748;-1.1035174;1.3338645;1.3794298;.19843276;-1.4098823;-.78805453;-.98554224;.11390809;-2.0061073;-1.9248722;.56423533;.085679926;1.1949205;2.0187688;2.2073226;-.29311314;-.52301323;2.7444127;6.3211832;-.85156679;3.4477108;1.2256509;.40211821;1.4510108;.25613868;3.2172308;5.739738;2.766763;3.5354424;3.8145087;-3.2585089;.59647614;3.3119237;1.7293979;-.36476469;.23674858;1.7119051;1.8773921;-.78337842;1.9830254;4.4121814;6.4626961;.2778002;2.2134476;.54466808;1.8444786;1.844924;4.0529833;-.96955079;-.26559639;2.0443926;.43068615;5.0650539;3.3652108;1.2878038;3.157212;5.4290137;-1.0686659;4.073082;-2.8376324;2.4569716;3.5185635;1.1623597;2.4629998;-1.0307512;-1.7694042;.11971086;1.3832556;-.18175904;.29432783;.70844352;1.1288513;-.24164332;-1.5588514;1.4560529;-1.0681359;.53824931;2.7578533;4.8423839;.48064008;-.96884996;3.1849558;.055290565;.82213759;-.77227569;-1.56594;-1.1252946;.1569657;-1.7835808;-2.5452988;-.83090925;1.7139388;-1.5704211;-.58173037;.77412695;-1.064249;-.34969437;-.84839487;2.4035292;2.7755184;-1.2884647;-.11760929;2.0729456;.27383065;-1.2940292;-.25154999;-.52214688;-.20792893;-2.0400145;-1.5860281;-.23718329;-1.5546876;-1.0607557;1.7559053;1.1597788;-.32625577;-2.2024989;.84028882;2.4338951;.016586229;1.4581175;-.081353702;1.570771;.1357912;-.086692974;.44263643;2.9471457;1.9690847;1.4353175;4.4858522;-1.4930394;2.2378976;1.8832039;1.8242141;.67301655;-.39618033;1.2024152;1.6725309;-.69328701;1.1663266;4.703043;5.5416212;1.4110687;1.7934004;-.51548803;.25208148;.098342299;2.4339375;-.13917339;-1.3003638;1.8379154;.8233307;2.8903356;.36626649;.86660331;2.611676;4.0665083;-.17866322;3.7577534;-2.4056282;1.4573641;3.4346147;1.2756554;.90565282;46.985172 +-.49757856;.52099633;.14777698;-.71262437;.15277892;.63039595;-.79683822;-.55005467;-.62770301;-1.1328852;2.1062169;1.5800819;.91369951;-1.0099906;-.5048272;1.0685285;-1.2900931;-.50971276;-1.3257589;-.58337593;.043173846;-.7052806;-.13162063;-.76362103;.84365445;-.1505906;.31438503;-.067800656;-1.4063492;-1.1900036;1.0382679;-1.7981286;-.48481378;-.91614366;.76253593;-.55827147;.16535705;.12933007;1.1426771;.090283558;.13350981;-.29809961;-1.5101994;-1.593961;.25780803;-.86641198;1.9458861;.22581244;2.8652909;1.2262456;1.6171025;1.8319229;.99713117;8.9524717;3.3633013;.5068205;1.5224478;.64665085;4.4216342;1.780323;.92863238;2.6396532;1.0621598;5.3871584;3.5043447;2.459368;.1994558;3.4781737;-4.3530126;2.6676018;.65143764;-.18254626;.38676444;4.6318111;3.5338197;1.0356841;1.4201262;-2.359416;1.1185162;.41047642;3.3649242;1.0364548;4.130693;2.7695513;4.303256;-.77622348;2.4417944;3.1656854;2.8522637;3.2478054;-.93106544;2.7362375;.46373111;2.30427;2.2657669;5.3376637;.78237796;2.3536236;-.069121912;1.4324259;-.81495667;1.2847806;.2037285;-1.3901342;1.6837363;1.5686885;-1.2755319;.25868386;.078046329;.66251963;.77580535;1.2837341;.51941025;-.47071034;.972188;1.4651518;-.83811772;-1.754863;-.90014613;-1.4559013;.56661016;-.93798006;-1.0488923;-1.3439046;1.7057199;-1.0256665;.74437428;.28516427;-1.9203775;-.40102789;.31579626;-1.3709489;.16143268;-.097992323;-1.5405402;-1.2895249;-.40984246;.2990315;-.27438131;-.66295981;.63711876;-.16291593;-2.5263021;.18945634;2.216244;.78972727;2.2422295;.46992755;1.8087044;1.2218426;1.2786126;.98784;.34940168;7.551753;4.2840562;.85400701;1.3530834;.76501322;4.1172023;2.1680844;1.5445471;2.3659916;-.48924062;2.3633876;2.1639149;2.0547225;.73259181;4.4890156;-2.9552362;.33433291;2.2949858;.50738263;-.25399935;2.8069155;4.0409222;-.63736433;1.6085684;-1.2927012;.28220457;-.88088697;3.5845647;.79346877;.90095061;2.9675939;3.6063473;-1.880006;.28904372;2.6733208;1.9376525;3.1103148;.45043147;1.5686429;.998366;1.1779474;.83835578;4.9355402;-.8954134;1.7376601;-.38454193;.98970526;51.885426 +-.071587235;1.5575552;-.22211495;-2.3307862;1.0467415;.13867314;-.40254027;.46946287;.20743538;.019998124;1.6908797;-.87940699;.11681781;-.24702567;-2.5179861;-.43300143;-.53273344;2.2156022;-2.5513403;.15263145;.563079;.017620396;-.16699949;-.3290922;-.20431474;-1.0173084;-.9516474;.31838423;-1.6958255;-2.0957246;-.12560873;-.30256131;.86419475;.22947884;.087230995;.04588769;.36482766;-.71200371;1.4580325;-.36353284;1.2419165;.24933177;.37084314;1.3736857;-.12924972;-.026337979;.66517419;-.070582405;-.2476532;1.3171165;2.2040048;.91306394;3.9708478;3.8340111;.64723843;3.5864003;-.89504534;1.5776155;2.7254603;2.5734816;2.1005054;1.9486269;-2.3623405;4.1263061;2.7687778;.39351124;2.6895657;2.0447347;1.9139793;3.5664577;1.7560241;1.7257997;.20777591;-.85833776;2.8869615;2.3017511;-.34978858;2.2625692;1.2042837;1.7302074;2.3404462;4.8746061;4.0977149;-3.554775;.77845037;6.0136685;.58522868;1.2175908;.9241308;5.6740451;1.8521175;5.181531;.70395595;3.5789084;-.66266114;3.8917904;1.9656384;3.124347;.51115823;.71036041;.096528322;-.37657726;.30469584;.21018778;.81479198;-.18337259;.70728302;-.95179874;-.15065949;-.19173259;1.5968978;-1.1005365;1.3133558;1.1659518;-2.0895951;-.89113599;-.82211196;.78644902;-1.2860067;-1.3439486;2.4128728;-.062661372;.28816363;-2.0026333;-2.8154621;-2.0434442;-.8085885;-.46578965;-.30590793;-1.0583307;-.065392628;.95556277;1.5142219;.87742007;.88644326;.73902792;.60052437;-1.2477915;2.6098428;-.034429386;.7735163;-.60359424;-1.5327497;.79309016;.45804593;-.11135908;.32313296;-1.6685098;-.14693469;.64235842;.38758802;.42679092;2.8563693;2.270704;1.4609785;4.7045665;-1.2833326;.81575638;1.5431311;2.5155911;.284179;-.79000717;-1.0491791;4.0921698;1.7877998;-.35286316;2.7355311;3.0508714;1.8140709;3.7475193;1.9343953;3.5097818;1.2832497;-.11863533;2.03316;1.0177007;.86912441;1.8795364;-1.2291391;1.2598059;3.3802185;3.2716942;2.9154911;-2.414989;.80550218;5.5184603;.42075434;.31629077;2.0874846;5.2130585;2.0741687;2.9290528;.18194684;1.5474042;-1.7768756;1.1682048;1.519712;1.6627569;1.0562522;-1.3681802;45.541508 +.29150677;.33219615;.0058299312;-2.1385601;-.76079136;-.72951567;.98109913;.48257691;1.1414896;1.2756588;.5542289;.79387641;-1.2011057;.82289779;-.38937896;1.0539639;-.83101118;.30855206;-.96686554;-.5669179;.046055995;.50641781;-.56849504;.56283879;.03747353;.59455019;.26026312;.43418434;1.0360531;.23586446;-.14485456;.026540626;.33988079;-.026566416;.4155561;.083649829;.77427214;1.6685488;2.5116789;.41844034;.50891751;.94964796;.71030098;-1.5276594;-2.5321004;-.77621567;1.1322136;-.58024716;.53071022;.39785412;1.8081808;6.7315731;-2.5235991;3.604306;.86976439;2.4898651;1.1769966;2.9234531;1.5171785;.29379082;1.0611348;.92037719;2.845732;-.45122814;3.309196;-.34114036;-.2737959;6.3933978;2.739578;.032979105;-.287992;5.217494;3.2648237;-.026349286;2.7758894;3.4919412;-1.5804172;1.3196205;3.1553783;2.8806503;4.3966913;4.452466;.4150584;3.9927666;-.64996099;.59601587;3.3612957;-1.8003896;2.856267;-.85537672;.36813486;2.1050456;.73105091;2.0603437;.61072975;4.1821823;.98086631;2.0527992;5.6372023;4.2863388;1.3989449;.93796581;-.41612005;-2.3145132;-1.1596295;1.4548359;-.77606446;1.6865581;.19931085;.45652914;.78757477;.53327584;-2.1212308;.6113224;-1.0194744;.18776976;-.62468207;1.8825971;-.9011966;-.0072738449;.30876368;-.22677536;-.15793462;.017778412;-1.4385375;1.2639313;-.41320214;.36707926;-.65657943;.96975124;-1.9286429;-1.1841105;.49804139;.0085758343;-.76347929;-.70179427;-1.0090742;-.24543658;2.5679371;-2.3767092;3.1771424;.5037294;.68718278;.92273265;-2.6860034;-1.0386918;1.6610737;.069821998;-.2484314;.13960493;.89125198;4.9992995;-1.8011891;2.687803;1.1368116;2.8171294;-.045387592;2.0935133;2.6947832;1.3042738;1.5266893;1.3554929;.95773458;1.8497553;3.1802082;2.0065563;-1.2160997;4.9851756;.73070437;.014827812;2.0523467;3.4910479;2.7755001;.88889772;2.3241129;2.1766021;-1.1182932;2.1246963;2.8577592;3.060111;3.7367959;4.0107093;1.2252418;2.0518053;-.39598632;.82941079;2.5305493;.67412007;3.1586401;-1.9189068;.22240911;1.2080041;.29476213;-.2145412;.65403622;3.4097068;1.1040057;2.4756713;5.2693138;2.39101;51.049828 +.016898956;-.59624368;-1.2525216;-.34482485;.54512501;-.167769;.096468598;1.5544201;.21158303;-.59249389;-.14979471;.10724626;-1.5884578;.169222;-.63315237;.95171916;-.69935066;-.40094209;.44197387;1.8979467;-.2275487;1.5251878;-1.1593057;-2.106734;-.31743166;-1.1832389;.02573148;-.65184712;.056016922;-.34057933;-.78047806;-1.5000485;-1.5114741;-.83505076;1.0864816;1.1145015;1.0525112;-1.1292222;.88993669;.53711158;-1.5909379;-.65074384;.59853506;-1.144961;1.6251239;-.16544412;.14244564;-1.0897009;-1.610322;-.77447289;1.7822075;-.62491566;.43224561;3.49948;3.0431018;3.178956;3.7196534;1.8197808;1.0422266;3.4768226;4.6473899;-.99551225;5.132884;2.2559171;.63870829;3.3213212;4.4587259;4.8949852;1.1617745;2.1470137;2.318234;.81498796;1.9425918;-.27643788;5.9910913;4.1212578;2.3739302;1.4920462;5.3827724;3.7011054;5.5431461;2.2388422;4.1514735;.92874473;-1.5255928;1.5436556;1.454895;2.5091391;1.7650199;.61816019;3.5270936;-.077671915;3.96808;.17568673;.510203;2.4081376;2.6810315;3.5455413;-.41128868;7.5123186;.34491184;-.81297719;-.6668781;.96620911;1.5840385;1.3593638;1.0508384;2.7069275;-.22971077;-.40504342;.40771133;.53671461;.30023828;.35347956;2.5856802;1.7166319;-1.6051;-2.4833362;1.2684317;2.8259468;-.49427369;1.9781028;-1.1386787;-.17396665;-.60079187;-.72950494;.4808327;-1.2334973;1.0948389;-.60615915;-1.250618;-1.0686835;-.63096446;-.78291619;3.3600352;.62613189;2.7524738;-1.6197124;.84331942;-1.3502755;-1.0860685;-1.2007955;1.1628933;-1.0530827;-1.1520252;.37268692;1.0678061;-.37403736;-2.7523587;-1.6136236;2.5510833;-1.4193703;.072124317;1.4970857;2.8036456;2.8442514;3.636373;1.6169971;1.2357794;2.0274215;2.1895256;-1.3384063;3.8857486;.94224757;-.78956586;1.4771684;2.5988486;4.5399914;1.6947368;-.71540916;.15313143;1.2135202;2.0424459;-.37353256;3.9446952;2.8711388;1.7381477;1.4467897;5.2231827;2.1683092;4.5177164;.88723528;3.1224933;.13466313;-1.5857174;2.5166869;-.95756942;2.0732253;.78578812;1.7779918;1.3621202;-.19893314;2.1788542;-.76055038;.39639646;2.3483009;2.3107026;2.3322344;.096216053;5.3617129;53.666363 +.65617889;-.70567536;.56925946;.73567176;1.074392;-2.3775318;-.37563354;.30808747;.13658392;-.68032056;.35057807;-.92240572;-1.4656949;-1.2841079;-.35716027;.031248039;-.042100374;1.0832874;.70744199;.39215776;.26508167;-2.5431507;-.13071983;-.39862365;-.61378914;-.097106241;.44050044;-.17081347;.15827623;1.7004467;.37940314;-.65666419;.65891713;.11963395;1.3950878;.086642362;-.0094145192;-1.0899762;.0052760877;.54656196;-.50886708;-.96351695;-.40153161;-.30752492;-.70589757;-.8073377;-.25522047;1.0206312;.37566498;-.50476307;-.77980947;-.43393224;3.367255;3.2848516;1.7204632;3.8354244;.23344491;3.4405425;1.9915751;1.9214913;-.35342944;-.15652069;4.8820262;4.1664066;.34954801;.74827975;-1.3588926;3.7933998;3.3014388;4.3192725;2.7230644;2.5922487;7.7214608;2.006458;1.8306038;3.3446851;.46486047;1.7805254;1.1500552;1.5625395;4.166955;2.9108512;2.1104636;-.042954411;2.7176824;4.52774;.51858068;3.5340772;.28275648;3.8446918;.70921755;1.3904438;4.0985317;1.195811;.47729599;1.8186773;2.1148424;2.0916851;2.3963611;2.7826986;-.0019036367;-1.1364242;.18318704;.039865475;.36569604;-.69938427;2.0374582;.23884954;.099458143;.31440654;.68291026;-.71933496;.9246332;-.85605675;.57269764;-1.1734983;.60211545;.92497975;.38586026;-.53595752;.28479344;-.2976808;.090307087;.54262054;-.0036912633;.25158262;.5718801;1.1657326;-1.8480746;1.4392837;.25175413;.94198698;.53807187;.82032615;.91060281;1.0134902;-.25950748;-.60790986;-2.3590322;-.24592142;.59475249;-.34905034;1.6273495;1.0449599;1.4196088;.280211;-.25539511;2.4240179;.23341995;-.32765618;-2.2817512;-.040311091;.97996718;1.837171;1.2791064;1.9596084;1.967241;1.314688;1.4234982;1.709762;-.24441428;-1.2337562;3.4112911;1.8639693;-1.5842001;.74509174;-.73113328;1.6141659;1.6550869;4.9458823;3.4214196;1.291181;5.3258076;1.4465452;2.6891301;2.8638766;-.55174839;1.9302949;-.22178477;1.477677;3.64974;.56126708;2.5091095;.30179781;1.977759;4.931685;.54388392;.68356287;.92365903;2.3195662;1.1490862;.47096112;4.3541045;1.6948911;.57139188;-.081544615;2.711432;.61773098;1.4127998;3.079319;46.560127 +.14331898;.74292761;2.0009043;.23136829;-.34325439;.036177322;.80175805;-2.0633214;-.67831582;-.24025452;.033211503;.1145892;.10505841;1.8668219;-.23363927;-.29138267;1.004833;-.31474003;1.0690089;-.51335347;-.8894062;-1.4286588;-.68956226;.37713793;1.2488434;-.3197287;-1.4970906;.025142174;.077866308;1.1036882;-1.2681198;1.0940609;2.3234711;-.31875938;.33241847;2.0545835;-.36898184;-1.0838414;-.13583817;.69103938;-1.8030332;1.4333093;.98541355;.092429392;.33681479;-2.1318872;-.29154053;-1.1621009;-1.7460417;-.81183004;1.074531;.26151758;1.895203;-1.1763045;3.2315898;.71499914;2.1238773;1.3379105;.87887549;4.384738;-1.0451909;.47089949;1.407365;2.9976156;.94916528;2.8925288;1.9413375;1.9600903;2.7539132;5.4413619;.89052153;-1.8843479;2.0335407;-.61521387;.51833498;5.5560117;2.6699152;5.5059619;1.6156715;-.74969667;2.2043245;2.6689856;.96906769;1.7341238;1.5215782;.066432901;.45496142;4.089694;2.4524629;2.6310239;3.6485415;1.9162723;3.8296943;2.5115695;-.79892665;1.3822703;2.9825718;2.5168152;3.7340341;.56558526;.012926514;-1.4321088;1.1275647;-.67241853;-.78456938;-1.5081857;2.2813632;-3.3376279;.016020082;.74756885;-.35514078;.64906013;.88912535;2.1301637;.81884229;1.0665445;1.3853389;-.52448785;1.3905345;-.21464656;-.57915562;-1.6868575;-1.3444636;.22312175;-1.1295419;-.95008165;-1.6187277;.80388749;.37753066;1.4934331;.20329224;2.2521651;1.8369465;.071586527;1.4003823;.84322298;1.5939679;-.69012892;.087195575;1.8950758;-.79421282;.27459911;.5307976;-.15777004;.11409932;-1.1626363;-1.3474755;.048589807;-1.1118727;-1.7265586;1.8294576;-.16158569;1.0710962;-.82175976;3.4964349;1.9008796;2.9561214;2.3814151;-.55341232;1.7967205;-1.2820942;.49754843;-1.7028706;2.9427531;.56430078;2.6172173;1.6195765;1.4139284;1.1827234;3.0477324;.37855643;-1.3625264;1.4796206;-1.2745495;.84314245;2.0793324;3.1440413;2.7288034;.85807472;-2.228601;1.4457926;1.0178189;1.4892663;2.3435729;1.6173557;.62619436;1.0604507;1.9972206;-.97012466;2.4298246;2.3271194;.47840628;3.5345128;3.653146;-.77787298;1.2475661;4.0136371;.48361245;3.1621308;-1.267576;41.841419 +1.8115608;-.6246466;1.150555;.71621215;1.7793053;.20277388;.0060773813;.485183;-.12511009;.89546907;2.1462424;3.1537032;1.01419;-.40286165;-1.2274547;.41353524;-1.4907297;-.023739716;-.71467483;.52222353;-1.5033855;.20940727;-.91538298;-1.2778759;2.3476624;.61314011;-.42670134;.68850487;1.2808601;-.030907366;-.045503631;.36069134;.21530946;1.0665118;-1.1149458;-.91270411;-.31153813;-1.6409258;1.8609494;.96466577;1.0638608;.63670141;-.67810392;-1.4364014;-.43900499;.89392203;1.2021748;-.70824277;-.13424055;.70149815;2.0978999;.18829325;-2.8051417;-.91549367;-.21420398;-2.5275376;4.3722029;2.2033589;3.1435745;-.96768159;2.2428625;-1.3802999;3.05404;-.43594739;8.2354898;4.1655321;.46886128;2.1188776;2.4776454;1.1813761;.29348239;1.6679223;4.2152719;5.3541942;4.3196716;1.2010583;1.3480684;-.51835847;-.15949304;1.7864462;1.8022112;1.6664155;2.8936958;.91307658;-.1101149;-.67640132;-.41018179;2.9774799;.39310682;2.3581312;1.593685;3.7228875;-1.7172893;-1.3618557;1.739246;1.6185442;.96638161;3.8247497;1.514973;7.3572984;.90572989;-.58459044;.51273358;1.3456289;-.63536352;1.2234501;-.41810903;2.117995;-1.4572091;-.71537226;2.0319409;2.5384729;1.2642802;-.29254156;.57375193;1.5910369;-.2504721;.55986756;.43889716;1.8230208;-.46094248;1.1486549;.50208968;-.95705175;.49136347;-.50106543;-2.8698616;1.9572713;2.9416285;-.26577657;.78255433;-2.2676575;1.4234022;.13188644;-.94410723;-.28721792;-.93803692;-.50924337;-.66646159;1.1573745;-.43781674;.44416296;-1.7583215;-1.3649392;.45687011;2.5918193;-.090286225;.14526908;-.52962595;1.7762828;1.4187711;.52611816;-1.3082185;-1.1220281;-1.4544456;-1.7570376;2.9241736;2.53861;1.7450806;-1.9015987;3.0354254;-1.3191787;2.4481463;.052381046;5.2574239;3.4723661;1.7901676;1.9320796;1.5576022;1.0803717;-.48644033;.034273859;2.6562212;4.8748317;4.5590472;.5365501;.875633;-.16685072;-2.6606195;.29658487;2.871316;-.39373371;2.2707434;1.3641566;-2.2959497;.12071806;-2.6780622;1.5976018;-1.3598737;1.1563612;1.273433;1.5351886;-1.3199196;-1.2802099;2.7059495;2.025234;1.085719;1.8188637;1.5434604;3.485477;45.841652 +.10710435;1.4417807;.16884519;-1.5329649;-.25912797;2.6226757;-1.4030662;1.9894542;-1.3614062;-.0029180094;.58652598;-.65209359;.017931402;.82188129;1.4501243;.3147617;.43067867;-.72123945;-.9818936;.67651957;-1.8688853;-.336833;-.50286555;.84901625;-.32745034;.18985903;-.57968616;-1.802539;-.21363616;-.71691763;1.2073653;.91118443;-.59716582;.42778537;-.95989609;-1.5852596;.61017776;.31255361;-1.0698743;.12014066;-.02896402;.057620659;-.9389658;-.37690014;-2.0147252;-1.8449613;1.8494078;-.026240595;.28438163;-.79753697;-.25878683;2.5184166;.59550655;-.030413069;-.26985124;4.4158897;1.9526618;2.7983949;1.0637945;.54174644;.41564429;-1.0702944;-.94510245;1.0295354;.20326953;.19957381;.38407901;1.4473855;1.9947419;2.4458721;2.7642095;2.3904047;3.7668417;5.8501592;1.4625312;-1.1374657;4.9370351;2.3954816;1.0205705;-.1010143;2.5633514;.80771577;.68547857;-.33593225;3.3942778;1.9732085;1.1134834;1.2552594;1.8597785;3.3942046;-.33955494;3.8535829;.1499373;.47114205;5.0078793;2.9210558;3.4580817;1.3751076;-3.7218189;3.6484394;-.3507576;1.2804475;1.4778543;.60207194;-.2574687;.47819325;-1.5807872;.0030828631;-2.5424142;.53293288;1.1855304;.38201144;-.73751611;1.4310737;1.1145734;1.9162345;1.1133846;.48170546;-1.1869887;-.10911936;-1.531268;-.20184194;-2.3363318;-.38113567;.0068766056;-.19155179;.18211943;-1.8754807;-.042881977;.90450972;1.8459698;1.4649582;.29690814;1.6004553;-.85646445;.011001931;.00066948176;.093524069;-2.0927243;.28733701;-.82665193;.37398395;-.0015736655;.76749003;.30102408;-1.403098;-1.2767299;-.35990629;.97873908;.017220212;.54535574;1.6148337;2.3421779;-.088715054;-.91975844;5.159843;1.6276937;1.5797105;.9551183;1.8000224;.95774996;-.32982144;-1.0371174;.09251295;.00525505;.41481289;-1.035817;2.7585883;.005399148;2.5817478;1.8107488;-1.6022837;1.3411268;3.6407623;1.3640554;-1.2988397;2.7731349;1.4281329;1.1376649;.35114416;1.5865825;1.2199013;1.455904;-.032902222;3.2246525;1.3771347;2.2294672;.35168985;2.0136456;.28023192;-.48852864;3.0974879;.7873798;-1.8242606;2.0592036;1.943694;1.060515;1.6100549;-2.0033658;2.4664085;37.169136 +1.9255391;-.23993677;.39522761;.50146586;.098628163;.13689506;-1.0961263;-.36479992;-.52386302;-.08299233;.24369518;.59061205;.63504994;-.31947649;.3135359;-1.0106741;-.26660416;1.3223255;.13084964;1.135532;-.19371508;-.75584024;-.68956327;-.83213228;-1.8921798;.3684563;-.65187865;-.14251862;1.1116881;-.22199406;1.1533453;.67198253;1.4500215;.92780763;-1.7208184;-1.9324529;-.64217556;-.27754453;1.0683773;.92032003;-.59966218;.39505604;-.091681749;.843997;1.5075586;-.38712204;-1.0146165;-1.4002812;.72151065;.84789073;5.1738358;.48094428;-1.2162127;1.4447953;2.2651689;3.8476703;3.5206306;.10051534;1.0647128;1.6884102;-.98631614;1.9664223;-.38018677;4.3123884;2.4343491;1.078007;-2.2150323;2.9614227;1.679285;2.1027327;4.2702041;5.4385066;.37480918;3.634819;1.0779383;5.8387637;-.77156353;3.1041212;.89912564;1.4063275;1.7695079;3.3886273;3.6860213;2.5482295;.68119377;3.8562143;6.4547896;1.8882;2.2959647;-1.8949726;3.3708801;3.8714228;2.4794524;1.2173634;-.9344582;.32771984;-.81775552;-.42337757;1.8868871;5.0906072;1.2957878;.65235263;-.7749905;.27936366;-.20356455;-.30292076;-.72826564;.76954371;-1.4528131;-.36474976;1.1537173;.7301259;1.338037;-1.4205486;.91457975;.6106267;1.8633602;.19940123;2.0995312;1.1220485;-2.9295449;-1.3311169;-.10979613;.38690573;-1.0407426;1.1840138;-.53558493;1.3528315;.058815327;.29567996;1.0976261;.93220925;1.535271;-.87238377;-.031432878;-2.3980207;.90256548;-.42688659;1.6356908;2.4056914;-1.2461907;-.76798898;-.14180627;-.91958219;-.10020646;.84216946;.64191031;.76056725;2.132478;.49793714;4.6320529;-.68028837;.17399125;1.5356209;.35117289;2.0795953;1.2852831;.10340407;1.2564536;1.8319523;-.7309202;1.2632344;.24668661;3.1004508;.43718582;.28176409;.019572644;2.5800166;2.0239239;1.7015204;2.8438268;5.1612077;1.265501;2.0416653;1.440513;5.6508131;-.81204522;2.2170513;-.43021736;1.7074375;2.546288;2.4704068;3.6812143;2.6885159;.4780634;4.4743085;4.188036;1.4282272;1.3799978;-.80379868;1.8100773;3.8372002;2.2232156;.32087043;-.76077825;2.4083397;.86870539;.28239223;2.4272039;6.342051;53.462543 +-2.2545483;1.0023329;.75552636;-.61913407;1.4632008;-.57738572;-.3133353;-.57026595;.81332999;-.077924311;-1.340107;-.022660747;.70359212;.36384431;1.6153344;-.83254772;-.41070506;-2.179209;-.91638047;-.96555549;-.50567842;-1.2337297;-.035607882;-1.3624575;-.0053840415;.90348768;.99929434;1.568541;-.049770158;-1.6575167;.89571714;.014748602;.11572856;.27387702;-.54706258;-.71378177;-.73833477;-.32368246;.39775604;1.0246834;-1.2123849;-.48236465;.47009504;1.7034825;-.55708247;.63131601;1.4942008;-.3716881;-.57195312;.28075588;2.4967368;2.5138543;1.8858573;.062906958;5.1876926;1.3213137;.13205636;4.4343257;.95806003;4.4429669;3.4130712;1.6564776;4.6272373;2.2200811;2.921757;3.5940766;1.1209365;.33609891;1.4053303;6.6998391;2.0780368;4.8324661;.10712475;.49155402;-1.7218972;.8618148;3.8437862;2.4468083;2.8940952;1.3700945;2.63081;-.20510942;.48436239;3.2657335;-2.2393842;-.94626707;.86483568;.581568;.75502682;.17050238;-.32262078;3.3697047;.78984815;3.7820354;.21694101;-.37172189;1.0795149;-2.066098;2.3264811;1.7642111;-.95663136;1.7556605;.15831667;.37854365;3.7867758;-.35654756;.28723037;-.0055148588;.11391128;-.8360706;-1.2910033;.70916867;.18652095;1.8194833;1.0221511;.91329026;.59252959;-2.0890601;-.60264671;-1.6503543;.62031978;1.5417649;.13002196;-1.0879482;.041289382;-.059323858;2.4934633;2.4489341;.051413372;-2.4600077;.92685068;1.0019048;-.22845019;.88958168;.35541412;-.46812215;-2.6495955;-1.0150422;1.6153504;.45942676;.42966279;-2.2169163;-.36773127;2.6557016;-.61617434;-1.6707352;1.1779044;-.79339594;.19030742;1.3555601;3.7988498;2.5566585;1.5662416;-1.5102282;4.994173;.30993041;-.36597019;3.2534583;2.0744419;3.4600461;3.5183744;1.3713593;2.9715471;.81642497;2.5124719;2.0298467;.54723078;1.2295586;2.0927916;5.7465868;.53880191;3.6405833;-.98485315;-1.4961548;-1.1304677;2.1164539;3.6105473;1.4293255;2.9132915;2.2005734;1.4547435;-1.7762065;1.3860415;1.8047771;-2.2033191;.0013033979;-.89507538;-.46551818;.83243185;.65610135;.50775433;1.5413053;-.050513856;2.4304657;-.56850249;-3.0294719;2.1519916;-1.1326971;2.3691289;1.3105048;39.258575 +.29732621;.38203043;2.524452;.44727552;.61546892;.65930438;.15471445;-1.3025867;-.45441017;.64904881;.18722616;-1.2920039;-1.7661164;-.27356666;-.66208613;-1.0959609;1.529014;-.62524396;-.95048428;-.12100609;2.0330205;-.26081777;.62466019;-.56957483;.52767271;2.0340037;.32321611;-.94454402;1.1367568;.11757736;-.1901456;-2.5661528;2.2250333;.33582622;-.094447464;1.1089023;-.18875544;1.0826272;-.55701667;-.72184801;-.01840133;2.3317642;.33646798;-.33925676;-.08705125;.28119376;2.5331635;-.98405999;-1.1263413;-2.8694074;3.2971649;2.7012429;2.5316005;1.048769;-.65765435;.97373754;-.24272326;-2.1105051;4.5794067;2.5867825;6.7116113;3.3258839;2.656924;4.6466179;-.18398626;.044079293;2.4657719;-.05886668;4.2619271;.76844412;2.4271386;-.28888145;4.5564475;1.5735301;3.581351;4.1437426;5.0222788;1.6823354;1.7665187;3.9868639;2.5033174;1.1642537;3.7636836;-3.5820727;1.9846569;-1.8485297;-2.151283;4.5569334;2.4516788;1.3941708;-1.1376368;4.2607512;-1.3348283;.8777051;2.2813833;.60403335;1.336866;1.3363999;4.6831489;7.5232224;.48036319;.75651121;1.2182626;.29694796;1.4414197;1.9072053;-.99604112;.83466405;-1.1216263;.7276175;-.12738222;-.56406933;-1.4220433;1.5283904;-.92724025;-1.0908012;.62771142;-.46025562;-.21252117;-.68975711;1.1249467;.98520899;3.0969126;-.99629295;.71523535;2.8162606;-.0089477357;-2.2346995;-.097333752;-.57654876;-1.1345854;-2.184283;1.7956415;-.95638317;-.40032622;-.75220621;1.2682979;.2854372;.95985591;-2.261121;2.367137;.53215617;2.4280097;-.085170366;-.70880932;1.0000405;3.2213995;-1.7229404;-3.3317797;-2.1971867;1.9344819;1.1891303;1.513945;-1.0494353;.24894848;1.2036394;1.0538787;-.12411461;4.4706635;.20044066;5.8074713;3.8516829;3.5370667;1.2960339;-.2095909;1.392841;2.6544993;-.81694686;2.8503966;.43795523;2.1358602;-1.2122957;2.4894271;2.2158208;2.6301498;3.1353743;2.0881817;-.63600403;1.5162432;3.5150297;1.7748362;.25913671;3.4785759;-2.601933;1.1941868;-1.1927673;-3.8143108;3.0681705;.94348687;.54330099;-.98198861;2.1123941;-1.6782262;-1.2191255;1.395759;1.2661279;.40001217;1.095612;3.0630925;3.8238075;50.712982 +-.049457323;-.86479074;1.8269548;-1.1298264;.363933;1.9123836;1.046834;.10384379;1.4604696;-.45259064;.039561428;-1.3197609;-.57999384;1.2210865;.92414272;-.19657516;-.3035647;.35131186;-.31605017;1.3691835;.18710501;-1.1301374;-1.2605289;-1.1745176;1.2476395;1.1517805;-.21029076;.47393379;1.0070829;.22954428;-.031407837;.42418498;-.59588224;.30060661;-.87153733;2.3744357;1.1499358;-1.0839434;-1.1161269;1.3871831;.73341203;-1.0437047;1.6925224;.22502241;1.1034757;.043779843;1.4533083;1.0688714;-.28868413;.13948552;2.1817043;.98391861;2.3160508;4.618125;5.3074985;4.1689172;.67558175;4.7328072;3.6367836;1.2833526;4.892899;1.9987513;2.7656434;5.1347537;4.3098435;4.5055695;4.790494;.77345538;1.9681686;4.8948445;1.4502316;-.73901105;.4599441;-.054368746;.63703448;1.2649628;1.8560354;5.4447579;.87298167;1.8004456;4.0523624;4.6661673;5.0807176;2.4057183;2.8484945;-.95588219;.078958638;.40503699;3.9449453;2.3151205;3.8817682;-.80762988;2.0394416;2.7046261;.94836789;-1.1857561;1.9793168;.40810099;2.3209891;-2.3457227;-2.4538155;-.11409448;1.5206718;-1.5295783;2.2537806;-.20014189;1.7425185;-.28367579;2.0247464;-1.2153735;.24484375;1.8548064;-.94203454;1.9829369;.60213143;-.0049809264;-.9651196;.44390473;-.34839839;-.25520855;.58524376;-.77975464;-.73327577;-.9844721;-.20646754;1.2319165;.49155036;1.1748257;1.4593425;-.060879651;-.86801267;-.031163042;1.7535403;-.57134634;-1.2850136;2.1196966;1.2301322;-1.5376925;1.1295518;1.400872;1.4798743;-1.0215155;.89910793;-.6520161;3.0138392;.48913071;2.3820684;1.015631;-1.1833899;2.2114816;.20606843;2.2038414;2.52739;2.6451368;2.9452586;3.1088467;1.1456251;3.816608;2.7143195;.56507868;2.5310142;3.3729641;2.3234851;3.1255918;.78113347;2.3427682;3.5912499;.64219445;.47242901;2.3431525;.84726763;-.049255345;-.10358936;-.12833725;-.2289018;-1.3482569;1.2884324;2.0671759;.036613774;-.21906547;1.2746974;2.7892656;2.3052404;1.1966022;1.7103192;-.46458039;-.80818337;-.95031953;1.4249246;4.0309815;2.5610933;-1.450246;3.4718363;2.024694;1.7392389;-.39897451;.58294225;.8629204;2.2028272;-2.9861493;54.139488 +-.50574678;.39850372;.48819083;2.1057847;1.0353639;-.31766126;.39371648;.66444933;.15124804;-1.5710588;-.77910411;-.35996252;-1.0474344;-.70613754;-.39833117;.065919854;.13656634;-.10941064;-.90096027;-.58690917;.37897417;-2.0974636;.80737758;-1.706798;-1.9019347;-1.3773896;1.2517891;-.13372952;-.50211775;1.0366656;.28882438;.087252423;1.8140779;-1.1976931;-1.2407392;1.4189763;2.0557082;-.9820857;.4406105;1.1413038;.17350823;-1.1608951;-.52035195;.73403406;-2.1731865;-.20847252;-.66234082;-.75354129;.072145961;.16281961;5.5609255;3.5595248;6.4347596;1.756936;4.9287;-1.7090824;5.3059835;5.5693169;4.4291329;.11324026;1.8463659;1.5944254;.47040603;.70404971;2.0411587;3.5212998;4.5871096;2.7206662;-1.1430852;1.0737839;4.3572145;2.9140074;.1444544;4.3674893;3.2042611;-1.4027703;1.6181914;3.4618111;5.8751507;1.3720822;2.9048908;4.3812156;3.894475;1.0898979;1.7141396;4.9466596;5.639451;-2.0621223;3.0532305;4.1864629;3.5361741;1.8087424;1.9109064;2.9751003;.15445633;1.3052245;1.7796805;1.3833003;1.2735031;1.1560833;.88516784;.54680836;-.26766244;.54112482;1.0380075;-1.3123852;.75543082;.58747238;.36650169;-.66103536;-.35862824;-.70792139;-.38044211;-.26877621;-.75021237;2.7352033;.37223673;-.2269209;-1.8214661;-2.041913;-.5237624;-1.7193049;-.2275513;.19500764;1.6483598;-.13600847;1.070632;-1.8393433;.17057696;-.51336545;.76424938;.71445;1.9856249;.59471428;-3.2280149;1.5250456;.52459615;-1.3462807;.53741163;.50383979;1.8858591;.095849447;.50207686;1.5492299;-2.3989041;-.37136623;-1.6928087;.59370571;.33067691;.95429158;4.637774;2.027637;3.6689837;.57699931;1.9125113;-.064869769;2.39797;4.6718001;2.1824524;.87319964;3.3201785;.48957205;.01654722;-.059163384;-.47058693;2.7146282;3.561892;.76363772;-2.0235999;.30442756;3.2520995;1.4902794;-.19036134;2.3409572;1.8785071;-.35285392;.33349386;3.5629418;5.4649601;-.82616401;3.1509249;3.8848598;2.6852014;.87293619;-1.1625797;3.2370038;4.1909332;-2.2532623;2.3180153;4.4859486;2.0786576;1.1506737;-.18625575;1.2291244;-.79706824;.39837605;.15109588;1.4640687;1.5380026;1.4413285;53.297119 +-.9581849;.80873787;-.5200879;.58479643;-.87088233;-.016550075;1.5632677;.027375756;-1.1168991;1.3543882;-.12541059;1.0425317;-.20525081;-.065820627;-1.0401045;.8880282;-1.1015598;.13421664;.0036928826;.48171639;1.1320797;-2.0774131;.12665518;.09632577;.18037981;.34130487;-.73535347;.5672335;-.23913611;.35021657;1.5308148;-.94463944;-.085089862;.66181219;.36447895;-.27125642;-.57986569;-.96912509;.42382783;-.79400212;.34895024;.36085925;-1.2369522;-1.1437058;2.1927035;1.8458683;.84700888;-1.1383764;1.3461356;-.34795904;1.583168;2.8725424;.30992427;-.66529286;-.95820272;2.2239833;1.1966496;-.26584589;-.73392189;1.7740301;-1.5296916;3.3305902;-1.4268395;.8932448;.48117244;5.0201769;7.015048;4.1141081;.8149178;4.294292;1.7994251;4.677999;1.8212299;2.6644652;2.1554577;3.9487395;-1.8144969;4.0132246;1.7494087;.8787542;2.5593815;-.70139968;2.5951409;4.2424908;4.0242977;4.7248535;.031823844;.69174045;1.8864943;1.3823254;1.9313034;-.83222258;1.1555313;2.0828724;1.072271;2.9126;-.96767092;-.49784753;2.5491164;2.3889959;-1.4357322;2.5169172;-.54624212;.61177456;-1.8317028;.49209422;1.4057813;-.39141813;-1.1430222;1.7870408;-.95654154;.3879022;-.083968259;-.079850763;-.15492919;.58999223;-3.1386764;.57439542;1.4917672;-.22555196;2.1863701;-1.750092;.5011735;-.67221618;-1.0449474;.84930748;-1.5132136;2.1232338;1.0913068;-1.8756812;1.6145819;1.0189414;-.10545263;.77820551;-.55153656;-.18325943;-.65020084;-1.2965336;.061014749;-.35873079;1.4374223;.085620917;-1.0629092;-1.8089304;2.0274355;.17587042;3.0420802;-.29321954;2.0958571;.3658241;-.12676759;.6872136;-.27172694;-.55196202;-1.4400097;1.794731;1.7435205;-.37267339;1.3995359;-1.2748106;-1.3795714;3.1915133;-.33503568;1.2126474;2.7098417;4.2272134;7.0212121;2.7159927;.41776866;5.1913605;2.6528645;1.9569011;1.0244218;1.0349638;.9116587;.48407462;.4034754;4.7936487;1.958306;3.1578369;3.5542364;-.018006401;2.4235842;1.3334157;3.8115995;2.2735949;.27052853;1.9043654;1.8216798;-.14427359;3.0344474;-1.78518;-.54182428;-.24813139;-.082660638;2.7305365;-.45816779;1.729449;.0054253447;.82921946;42.988907 +-.75780874;1.0811163;-.10659178;.30742764;-1.5093473;-.75953323;-.29706028;.81241471;-.58661121;.40940869;.82817435;.14504494;-.73422414;-.40452811;.025943782;.15495275;.24024446;-1.1225859;-1.0543617;1.2024535;-.21299775;-.96312362;-.62837493;1.7229486;-.069486268;2.0276701;.94029629;-1.0644413;1.3525691;.32031155;.85684782;.062330764;-.38739058;-.41582131;-1.1645036;.29308397;-1.1990622;-.71277207;-.84117854;-1.6333557;-.90050095;1.1657454;.083738133;.3812995;-.59746593;-.59734285;-.77797264;.052309752;.75595737;-.40521178;2.4513717;-.020251609;-2.3778145;3.5731573;2.5669878;1.2310059;2.2837136;2.5482302;1.3874929;.90316558;-.45201963;2.1178703;2.3872981;-.28914315;3.2321486;.28071007;2.3687057;2.7344685;4.351171;.64768004;-1.6833915;3.7114129;4.2330322;2.4417322;1.7242547;3.4659138;.83335459;-4.0604143;3.2625039;.4605774;3.8214741;2.4247944;2.7166026;3.7719197;3.2131457;.49080929;5.7454414;3.4365523;3.3506014;2.6369996;1.687452;1.9763623;2.4463816;3.7163467;3.4347031;1.1941679;1.4365222;.30713066;2.0947232;3.4621005;-1.9701177;-.29749912;-1.4983002;.75878769;-.74600226;-.29524064;.31254449;.33985379;.47881535;-.46431494;.57290047;.20817707;-1.4478323;-1.7484102;-.96435076;.09250731;-.14933819;-1.8125011;-2.1522672;1.9502361;-.98467189;-.95417196;.15978566;.83815289;-1.4397852;1.3840858;.28772303;-1.1676328;2.8675835;1.0229527;1.0683503;1.1539416;-.86244637;-1.5330746;-2.0638592;-.25312015;.60565835;.68653351;.97007394;-.87992573;.41272032;.8221488;1.2426722;-1.1121144;-2.6521389;.4197621;-.80894643;-.91928691;2.1556473;.25865436;.83085161;-.67197961;-.24055175;1.170313;1.8709595;1.4115015;1.000249;1.532953;.22765535;1.920169;-1.8252014;1.5283693;2.3202829;-1.4722543;2.1718531;.17941804;2.6424456;1.1082444;2.8203993;2.2329917;-.69400221;1.3220325;2.9449835;1.8129603;.74026835;4.2464271;1.0923789;-2.3773487;2.0231197;1.3963381;1.528703;2.0695562;2.2920606;3.8736093;2.0934846;1.2532715;4.8761859;3.8246875;2.9592917;3.0888753;2.1973171;-.89242762;1.0317442;4.125596;.039321702;.90059018;.39422324;2.7225587;1.0789454;.82391816;49.297348 +-.38677856;-2.0372691;1.5632089;-1.1899706;.12115715;1.3576262;-.27224416;.028029496;-.81656963;-.29263213;.5324049;-.94962674;-.63875866;1.2483585;-.1841404;-.8755914;1.1084605;2.3480194;1.6800724;-.038652338;-.35478404;-1.1012547;1.4225085;.83591199;1.620545;-.043316655;-.2296665;-.54325557;.43406209;.40367571;1.6656526;-1.2966908;-1.8900086;.32524887;-1.3604285;.37005326;-1.3531854;.55402815;.70086318;-.22008249;2.5917802;.86856878;-.5597198;1.2135055;.73575902;1.6680573;.053000662;-.41414049;-.10395474;1.1902503;1.7154168;-.060933396;4.3802719;4.940661;-.23187315;3.5644608;2.9949145;3.6018591;1.6538156;.65982533;1.2503631;2.2487931;.90527344;.94513094;-.72179407;-.74829274;.88823479;-.20881882;1.3470901;-3.3572707;.92914963;1.9308212;1.4731236;2.8318911;3.4963417;6.7422271;2.662735;3.0097947;.37984565;2.7806377;-1.009514;1.1939409;-.90329576;2.6217365;5.0370779;3.4740915;3.0611022;.27137342;-.17609966;5.3758526;.51193154;5.7197752;5.7746773;-.30667746;2.4489195;1.119159;2.1098716;3.3449831;6.0590897;4.5821357;.17236944;-.78273588;2.7065287;.086356826;-.79905784;.69029981;-.60043275;.45190617;-.60202414;-1.3348727;.14356261;-1.2444513;-.29805893;-1.1167001;.88861114;-1.7650054;1.0298904;2.4704158;-.41141871;-.94199932;-1.6624662;-1.3633684;2.3257899;.9826799;1.8264529;.59397143;-1.3311906;-.85967118;.99209768;-.80590129;1.1601484;-1.2214127;.91510278;-1.0506408;-1.2665123;.98326713;-.65168858;-1.2153145;1.6227115;-1.6611503;.32879257;2.2439792;1.9408036;1.2705554;1.2044748;.84429449;1.7758036;-1.9887325;-.066732451;.101001;3.5203357;-.69681197;3.8504617;4.0242672;1.6363149;3.4187098;1.852946;.97168332;.133655;-.28000504;-.14809088;1.5854263;.87070221;1.2170345;.57360154;.20859869;1.6347413;.89730018;1.0237471;-2.2387457;1.6679646;2.3344183;1.8390496;1.3984829;2.8356194;7.1053896;1.4751867;2.4915619;-1.1367651;2.5763915;-1.844777;-.071904756;-1.3465389;1.7679347;3.6457424;1.2940843;.95881331;2.8979483;-.68163359;5.2333331;1.3384111;3.6165569;3.2378528;1.0925726;.26629266;1.2529427;.41744784;1.9074559;5.2067628;5.5306401;55.279289 +-.8670904;.19130851;.12033772;-.41808411;-.26226932;-.044461746;-.65446901;-.44381174;-1.9089118;-.32288173;.0031839511;.73524982;2.3077579;-.060989283;-.73558545;1.334682;.4169606;.67397249;-.71258664;-1.6397938;.2418956;.97033614;-1.1396952;-.80176669;-.046295747;-.5397771;.39763877;1.6184515;.54492611;.054914322;1.7211941;-.15032206;1.0660931;-1.1468649;.10319344;-.61681646;.33400765;-1.5205035;-.12920775;-.41108939;-.73989379;-.6276685;-2.1201706;-.47757363;-.073204316;.5617317;-.43077177;-2.8172445;-1.7259452;1.0494835;.1347903;-.55789691;3.338001;4.7611966;1.3478011;4.6956191;3.4556456;2.6942489;.540842;3.7888105;.13697027;4.3810468;.22543865;.19223282;3.925076;4.5422249;.31610668;.99660885;.28377214;1.605425;5.4226823;-.61308539;.97456789;.66104227;2.1358883;-.92311901;3.7904811;2.227026;3.5913796;4.8066807;-2.1652646;3.4956369;.80528444;5.4489808;4.4248943;1.9199315;2.5122747;2.548949;3.033782;7.3251505;2.8953683;2.1157672;3.4186709;2.9248888;2.800143;3.9871132;.97345102;-2.2243054;2.1160367;2.1187747;-.50362849;1.1575005;-.059241425;-.10800292;-.67857146;.85315794;-1.1998272;.86508214;-.17642672;-.25989771;.10137951;-2.6925302;1.8922669;-.19173202;-.078019269;.95712018;-.082945049;.80331635;-1.4573898;-.023644928;.22556944;.84095347;-1.4284022;-.33240578;-.76083094;-.10252874;2.392942;2.2748938;.47059065;1.8904018;.79419702;1.6431842;.74584663;-1.7909256;.47040653;-1.346514;-.66293633;-1.2301253;-.82312071;-.49113375;.30146;-1.1794057;-2.4691477;1.4942142;.54032004;1.2197165;-.23466779;-2.6407332;-1.361374;1.1700388;.5868001;.2365898;2.1940858;4.3700104;2.6706467;2.6849313;3.0707085;1.7846111;.56474054;3.9554446;.013417018;2.7873487;.14403272;1.9390316;2.4520853;3.526967;-.80247217;-.18908836;-.28747281;1.3511906;3.680795;1.3363361;-.3908616;.14227808;2.2046716;-.50648659;1.4235549;-.34972623;2.2765396;2.6678073;-1.1070384;3.2126522;3.1709168;3.0155926;1.914788;.37476707;.98616815;1.8817751;2.6856871;5.8451357;2.9070227;1.2129267;3.033222;.20907627;-.31620109;2.9851744;.92994654;-1.3967121;1.8209327;.9055841;48.291298 +.13064094;-.70146865;-1.1225007;1.6760625;.33295056;.29881123;-.68791437;.25404903;.02996997;.13560681;-.0013217947;.55759537;.0082334233;.092825547;.021987353;.90349156;.13858627;-1.1830125;1.3234152;.24751334;2.0637431;.38410029;-.09890268;-.54988843;.18273516;.89617914;.092235893;1.0009869;-.96994764;.034282155;.89863211;.021705795;-.71123701;-.008640008;-.26522583;.14709261;-.85576057;.21380018;-1.0080688;1.3518628;.063219957;.76806241;-1.7907053;.32932657;-1.9635427;-.54894638;.032928515;.15153331;-.41412732;.73574203;-.025908522;5.1947126;3.3756349;1.8130647;2.1300645;2.5892918;3.3288207;.87027311;3.0797637;3.1746414;1.1817929;3.9902301;4.0316467;3.0603864;-1.0494298;1.6172146;.61940032;2.1130927;1.6297121;-1.4875448;2.3445067;2.8770735;-2.9406006;4.8831258;.25370017;-.97171479;.38485962;-.78040397;2.8141437;4.3339391;3.5330713;2.7334931;2.2249501;2.0052874;4.0663466;3.2721133;2.2610247;1.5531553;-2.4422352;3.0376992;.26491538;-2.456073;2.1340477;4.0460124;1.1098692;3.1267202;1.8842024;.25982925;3.1615727;2.746484;-.14323293;.3267546;1.1663909;2.9455149;-.23479672;2.008785;-1.1648276;1.2096995;-.13991418;-1.8662421;-.37620458;.88741642;-2.2898984;-.54524601;-.26510501;.026514638;.33017665;-2.0318763;1.2461344;1.479499;1.1153939;.43732879;-.27591699;.76759458;.29851454;-.55390853;.93518519;.80939752;-.51054895;.29832506;1.7738615;-1.3298385;-2.2225356;-1.2021018;.45414004;.19118327;.69372636;-.33477584;2.2887204;1.7277311;.072428539;-.46137589;-.92080706;.7750901;-1.0742955;.46205103;.85175306;-.21302548;-.63669813;-.54561508;.31241891;3.1989851;1.7713563;3.6386054;.68253869;.68529361;4.0108991;-.77243072;1.4677386;2.2831936;-.18817379;3.3791177;3.7826619;1.6989765;-.71432674;.36707631;-1.546679;1.2258583;1.3211178;-3.3993046;2.4654655;2.1439126;-2.3174646;3.4349258;.64827031;-1.9779553;-.33788538;.6421355;1.0238916;2.0142148;1.8650106;.13137111;3.5355825;.96555656;1.4855121;.65412897;1.8786072;.53090286;-1.9870919;3.0306313;1.8197219;-.78237349;-.048542034;2.0701067;1.5809326;2.2842803;1.001129;1.2555288;.53835827;1.746449;46.297146 +-.54207009;-.17019208;-.32507449;-.16337019;-.90653145;2.1313872;-.86920142;.39658141;-.68905377;1.628091;1.2298683;.22707079;.49677157;-.40216023;1.2430793;.58591837;.94018984;-.13224718;.64253563;-.34127846;.61237711;-1.4043812;.17977744;-.90802187;2.4063101;-.82959622;-.29327059;-.81104648;.087262496;.79309416;.74341244;.33406782;-1.7991807;.43376675;-2.207021;-1.0801455;-1.0996103;.51504517;-1.9569203;.88195837;.20494613;-.20772868;2.4564314;-.2792457;1.1441109;-.030236719;.85319662;-.31835258;-.56218845;-.7273103;1.6872945;-1.3051468;2.9706833;-1.9762201;2.9249687;2.9007766;2.0115628;5.664865;1.3261203;2.0023088;1.0228754;-2.1562126;2.8113866;.38488916;1.2566701;3.1979995;.28747123;-.10162675;.90096134;.26234585;2.3198981;1.5248003;1.6783091;.22460878;2.3091478;-.90162921;2.01877;3.1890922;1.0442022;2.9028957;1.3991969;2.6510336;2.3573625;1.8450468;2.4558778;-.65023178;1.1296569;-1.2864029;-1.6468724;2.2193551;-.7147823;1.6620976;2.6209738;6.2240644;2.5251355;2.6386864;3.2914929;2.6528728;4.0094285;5.3387141;-2.5955503;.63207847;-.30327326;-.25997597;.52257532;.69440949;-.87936962;.30426031;.14690149;1.9990283;1.2346932;2.1428542;.76740438;1.0408148;1.1238056;-.26980075;2.066648;-.40189528;.039915863;.4640547;.62255979;-1.2382857;.75411355;-1.1436003;1.0156059;-.47348177;-1.1742493;-.27901995;1.1587402;.86479092;.22223289;-.90293705;-.75895822;2.7072513;-1.6171958;-1.565964;-1.0528131;.22196746;-2.1810882;2.629297;-.95886046;-2.5218279;1.4971155;.047887437;1.8560939;.51602983;1.9486393;1.0253288;-.44087839;-.73992133;2.0467193;-.50312519;2.2409403;-.7965976;3.2326429;2.52771;2.896291;4.3847876;1.0009652;.6080873;1.0206571;-1.2079406;2.0827167;-.65772051;.32061788;3.0334482;2.4907732;-.99882632;.79465979;-1.0623506;1.8037981;.47752428;.66701192;-1.8788295;2.9136508;-.83261681;3.3414421;-.40071926;.050510716;.91377628;-1.6506588;1.868878;1.8848827;2.8701148;1.8847826;-2.1661408;.80541807;-1.2539868;-1.9324239;-1.1370918;-.55499464;.5900932;-.10320912;4.3483233;1.7692003;2.5029116;4.2446599;1.723266;3.2649055;5.7144499;38.207108 +1.5025924;1.0337416;1.3224231;-.67075777;-.98585308;1.5647272;.23838191;-1.4896777;.80847669;-1.065187;.70529157;-1.2346894;-.25437331;-.90790582;1.5509778;.34872788;.64239132;.53490835;.89305645;-.60045093;1.2592924;-.43073621;-1.2320199;.25459775;.5407117;-.77012217;-1.16405;.15342252;-.52982497;-.021619057;-.28636974;1.2883031;.032599069;.089521743;-.77707505;-.079890817;-1.4713254;-.019449098;-1.888965;-.66009766;-1.4566164;-.7532987;.21659298;-.21223126;-.29716644;.59448314;.27249965;1.1511016;.69196987;-1.149026;2.8463225;4.8205709;-.3437117;6.1058898;.28483611;4.2341366;3.6721952;1.7273951;1.2506256;3.2627933;2.983263;3.7715371;5.7867846;3.2928712;3.2046998;1.4458251;2.376111;2.8473101;3.6248498;4.5115471;.73556626;3.7651405;2.3250997;6.4421935;5.3973284;-.44976375;-.08205194;1.5900923;-1.382742;2.8318622;-.040369384;-.18374571;6.0453291;1.3419038;2.5940588;1.3459401;-.71682817;1.3931214;-2.2299545;1.2674638;.011163473;2.0815034;3.1518977;4.193079;3.6077452;.53144234;2.4767528;4.9429069;1.7863638;.20338655;.36855942;.36404124;1.1824715;-.1271987;-.50104105;2.1565602;-.13490491;-.81991571;1.2311426;-.36562994;-.89709496;.29182953;.78272438;-2.564863;1.5890139;1.4432495;-.54994029;-.58595788;1.2223147;1.0863591;1.7895197;-1.411642;.09320502;-1.7511357;.91865772;-.31896517;-.39209732;.22188278;.027878067;.87742919;-.15897591;3.4865749;.051578715;.11387789;.0022625132;-1.0164145;-.98917431;-.44003329;-1.2973447;-1.1119157;-.27961072;-1.4193263;.28733036;-.47010264;.65080982;.60237056;-2.0373974;.44561762;.87926424;.37144238;1.6026253;2.3179574;-1.2187005;5.0384941;.0097556012;2.6052926;2.8979447;-.66355056;1.2539958;1.8179673;2.3148506;2.1202855;2.8220756;2.2533054;1.0865183;1.0146037;1.8836193;2.0512729;4.4604692;3.6648879;1.0396724;1.7899004;2.7084076;4.8380532;4.2552276;.39098594;-.28222016;-1.9712691;.43838599;2.6616976;.3984262;-1.8184011;4.9685764;2.5014231;1.8893567;-.078815028;.8279984;1.3736049;-.72342867;1.6024081;.30093125;.45790419;3.6856081;3.4981544;4.0832801;.2278467;-.030557048;3.3994708;1.7163967;.1853625;52.178631 +-1.0375595;-.65891171;-.73741376;-1.7465547;.78213501;-.54889727;2.1521986;-.32900763;-.28525731;-2.6985457;.027977256;.70522863;.54354328;.295084;2.379657;.97035062;-.69898915;-1.4374896;-.14334206;.12504509;-1.1148833;.16782674;-.88096821;.52294457;-1.0667456;.76049334;1.4604254;.53574342;-.17643748;.52027529;-.30615589;2.3064435;-.89271379;-.36166474;.0080598406;-.45999771;.96426713;-.27838957;.15187789;3.0976946;.99555725;-.83126193;-1.00739;-.664024;-.22072582;-1.3173391;1.0716339;-.22881302;-.51469225;-.74100816;1.4547529;2.9575553;-.48533231;4.2974019;4.8641133;1.4617391;-1.0627075;-1.7643753;2.8730774;2.5888975;4.0993123;4.2253718;.99331498;1.69951;.12691882;2.415592;5.1627417;1.4844869;-2.2107792;2.5394483;3.0764353;4.6317935;.83164066;3.1440225;2.8650773;3.5850048;3.2292197;2.0918827;2.5752914;1.46877;.24301651;4.1291909;2.4086568;-.3081674;2.4325523;2.8991477;3.8604467;.42777562;5.3136878;1.5803295;1.7193879;2.4095595;-.35314083;3.828372;3.4057238;1.1630988;6.0111227;2.5770397;3.5940912;3.0989397;-1.8096961;-1.0458289;-.27224419;-.5481897;-.79148543;-1.1765795;.93075603;1.3701192;1.2050514;-1.4429584;.19030103;1.2156961;.96989399;.17019191;2.1690979;-.26961312;-.71594435;-2.3300042;-.38426033;1.4929504;1.1309365;.35063398;-1.8814461;.55857027;1.0534863;-.24287364;-1.4712547;.42270616;-2.2223074;-2.316045;.42744884;2.0206506;-1.0100677;-1.6978922;1.1965125;-.78115141;.68109;1.8851725;-.74616224;1.5006884;-.22776745;-.21779324;-.79296297;.045951825;-.14551224;-.9980973;.94899744;1.0988052;.74175525;-.64239687;3.2212014;1.0809629;-1.2527511;2.7033803;3.0870717;3.4614289;.19402152;-1.3518579;2.2408702;2.756017;2.3235886;2.7941594;.88215834;.20548052;.5592379;2.4377646;3.9019475;.65846711;-1.4885753;2.2384262;3.906147;4.1196609;1.6131669;2.3468251;2.1010609;2.5104454;1.6808248;.13179004;3.3436854;.049047943;.42602649;3.1400423;2.0597446;.37734011;-.31968355;1.9210877;1.5232588;-.85102755;3.8650753;1.2764814;.78392613;.36582959;1.4040425;1.6385183;1.7076865;1.2764758;3.723206;2.5475986;3.9085557;1.9709555;60.878223 +1.3507369;.10576236;.27862072;-.71354926;.17177321;-.48169023;.94921833;-1.0492516;.87669569;-.14067991;1.0224001;-.0018302744;-.20042002;-1.0998261;-1.5861433;.2604647;-.89536101;.52588004;-.83774614;.38422891;1.6899343;-.46919298;.45291045;-.99134606;-1.0166517;-.47097206;.14396797;-.59367406;-1.0440667;-2.1743462;-.43135086;-1.1497875;2.3963773;-.83755767;.43848735;1.3666414;-.57125944;.55074888;1.9971492;-.22954881;.66135919;.54528409;-1.3059996;-.13368998;-.33297729;.61428696;.38321811;-.12425434;-.16730408;1.1090461;.18591902;.15113874;3.594873;-.75070292;.92676091;4.1344905;4.2606616;1.573734;1.382516;.86497486;2.4630165;.63856566;1.5766275;2.6666534;-2.6961141;.65343422;1.8075165;.99576777;5.1189942;5.7658896;2.5703776;.68125838;4.9268141;2.562855;3.2128017;3.9829822;4.6960316;2.2448714;-1.141183;2.2372441;3.6987655;1.6215523;4.2611518;1.1812892;3.1612854;3.6153076;5.2420983;.754206;5.452908;.95754021;1.1221172;2.5024302;3.9264684;2.4415364;2.2243657;1.1487234;4.8348975;-.5914945;2.0685596;1.8815728;.1300271;.073259711;-.58964896;-1.7135464;-1.3279004;.24438865;1.4749216;-1.0286801;-.86930656;.603791;.72221494;-.48537919;-1.3658423;.38112172;-.3280662;1.1473312;-.56576616;1.0090485;.088564999;-.11624153;1.3217852;-1.0848496;-.077950776;.26312375;-.25913972;-.0094536711;.82282472;-.50957829;-1.769012;.47821766;-.78320163;-.96227646;1.5151765;1.6886752;1.3838018;-.0042406581;-.74315459;-2.0580411;1.1310396;.38699111;.6200937;.78074855;-2.7730405;-.23532432;-.09118928;-.28796193;1.2490158;.13129275;-.38198438;-.25766483;-1.4752241;.48234767;4.1138277;-.44301501;-.48453391;2.7116475;2.8917274;-.54048228;1.0153629;2.0096879;2.2017012;1.8215656;.75225586;.08405263;-2.3699079;.60475981;1.3123173;.68893176;5.2191138;4.4409962;2.6539638;-.011130231;5.398797;-.062017635;3.0034602;2.4525259;3.1177194;2.7971797;.583924;.29992223;1.9193525;1.8751394;3.28843;1.6776961;-.10409439;3.1909695;4.8985896;.73754591;2.9248364;-.7856282;.64495373;.97256708;4.1457195;2.533721;1.1592257;-.36656877;3.6651361;1.2889619;1.6880251;3.5719986;59.541611 +-2.18066;-.36868438;-.018285483;-1.00659;-1.0272976;-.95210791;-1.3829739;-.82077843;2.1241374;-1.0253533;-1.2138212;.69642204;-.61581749;-.038000803;-.8326872;-.3333002;-1.8610786;.12348415;-.29560673;-.43209025;.23086227;-.076133229;.56922126;-.10529618;-.72532547;-3.0091722;1.6066505;-.26637903;-1.9989805;.30230734;-.81730366;1.7573133;-1.8767731;.24695949;1.3623855;-.078628957;-.62736744;.060538437;-.5150466;.2586289;-.022065684;.49709409;-.51746124;.65130228;-.41647083;.95859039;-1.773582;-1.4575496;-.49445373;-.49662989;-1.6102751;2.2997689;2.9481139;-.17504922;.12730859;.28283563;1.7040849;.035618722;.75519902;4.0412893;3.2150536;-1.730536;4.3274918;4.3272591;2.3009531;3.9107404;3.1770091;1.8896165;.29585379;2.1298537;1.7116838;2.6411214;5.840992;1.4028555;1.5475413;3.420038;-.96723485;4.4761205;-.74798739;4.0118389;.14513017;3.4766719;1.597245;2.9064593;.49412641;2.0074494;4.7308002;-1.2217343;2.6135161;2.331511;3.8725142;-.23511548;5.1498442;.72259527;-1.1918818;-2.8451259;1.9468427;.59087175;4.0523319;.94919783;-2.1079957;-.25522742;-.11141524;-.84777188;.7723366;-.68785882;.84683359;.15890479;.78640771;-1.359905;-.25251663;-1.4092423;-.15445475;-.62075126;-2.5898151;.60633481;-1.4576559;-.053663284;-.28609484;.44513008;-1.4906501;.40895343;1.6224248;-.30951956;-.02363088;-1.0524426;.86413038;.30119753;-.96915084;.72909814;.085458055;-1.1082461;-.69873488;-.38468713;.48664764;-.78176177;.79910904;-.41900563;-.51685947;.373097;-.25158614;.6717881;-.087857537;-.19881272;-.0046476712;-.22760308;-.87480289;-1.5462257;-.40538806;-.35104766;-1.0788383;1.0339255;2.3777289;.78018576;.27087086;-1.5985155;1.4323994;1.186092;.84917766;3.41168;1.8552476;-3.3011341;2.8386295;2.7163908;2.2886894;2.4864166;1.7841868;2.4855855;.61655951;1.3684603;2.6939144;2.0009539;5.8462625;-.19044776;2.0429766;1.8024335;-.34113789;2.539592;-1.4702053;3.5176723;-.42256647;2.4800892;1.4772096;1.4900624;1.6875682;2.6706233;4.8111854;-1.0068727;.2608088;3.1658096;3.9241774;-.82313848;4.2971606;1.2248721;-1.6656793;-2.2831695;1.281693;-.67795807;2.753372;.60732675;35.753033 +-.19651215;1.480303;1.0468687;-1.3269806;-1.2070707;-.4312177;-.1175567;-.59224451;.047607992;.32681203;-1.4143316;-.17835763;-.15392107;-1.5411155;-.56896955;.56498921;.7097919;.91344631;-.51355302;.41522425;.34567046;-1.2278368;-1.3661227;-1.1160289;.26807931;.2747719;.31862894;-.024807788;.80306959;.37683561;-1.8623933;.35538623;-.73066247;.80729872;.34143978;-.55155206;.14554097;-.82038707;-1.9640656;.55175042;-1.0017815;-.16110066;-.52674752;-.91624546;-.23451266;-.60896814;-1.2014315;.91965395;-1.1654178;-1.3049372;-.11145806;3.5622849;-2.2007439;2.84498;1.7941036;4.3083482;4.8857808;.56163347;-1.8582523;5.9649153;2.1639075;-2.6966832;3.0906258;2.3349774;6.4129696;4.0268335;.64217198;5.9513259;5.2781105;-.14667499;.35279492;2.2266324;.33184507;2.4563448;3.0593958;2.5557971;.61270392;2.1329424;3.855587;3.2476845;.45689768;2.40288;1.2885988;4.196156;2.1200805;2.5457292;2.1392615;1.8329011;3.2796376;1.9382776;2.3781524;.35010418;-.73659307;1.1320184;1.9417067;1.3188548;1.6229476;.66025639;3.3365517;1.5726764;.19467592;1.8945109;1.0171462;-2.9407945;-1.2941511;.47168025;-.1864308;-.20618564;.28846645;-.71470529;-.7704342;1.458341;1.9478317;-.53156084;.012325426;-.3145543;.55420244;1.8197579;-.31027499;1.1327666;-.61416304;-.25550264;-.94584358;-.032227244;1.7278633;-.18752682;-.26684463;.90028745;.60492861;-1.5749445;-1.314616;.27555585;.38865015;1.6776825;.56141931;-.60626727;-.30573362;-2.175961;-.88869971;1.733906;1.0561016;.76821178;-1.2006205;-.24580942;-1.9639537;-1.2016665;-2.1345685;.74357158;-.12056539;-.77577907;-1.8399745;2.9828112;-2.2647853;2.1303;1.4665226;1.5274544;3.4979224;-.72019631;.1020494;4.7234602;1.5735326;-.92565554;1.6736509;1.8988727;3.8799605;2.7787344;2.0982313;3.5214136;3.8056908;.40466544;.77343708;2.1293511;1.1363777;.77939928;2.2908852;1.6522045;.94981235;.045813262;4.4947844;4.3601885;-.48693058;.020826431;.55528158;2.7567568;2.4681773;2.3411365;.46574697;.59891117;2.9993913;1.8768396;1.2764472;.76810431;.71773267;.38934445;.35542023;1.3861256;.79444492;-1.0519315;2.5713708;.17146638;46.578114 +.00063582696;-1.7773223;-1.8784646;-1.2970442;1.1723;-.87420601;2.302505;.36397177;-.94634682;-.33767232;-1.7562776;.20497623;1.1461763;-.39325222;-.57947248;-.29877028;1.8044968;-.8905549;-.058608502;.085993394;-.54844618;.015261554;-.51697975;-.45076147;-.36064711;.26313841;1.0623626;1.3309879;.52044809;.45572242;-.12824832;.079132766;-.94961423;.68815738;-.87576544;.16669923;.58917707;.035514761;.15643643;-.44470191;.90634984;-1.3377215;1.1190031;.7486549;-.6218673;.84059387;-.47231659;.019423109;1.7046233;1.8032422;3.0049503;3.3073423;2.8870547;3.8676729;2.6381507;3.1960177;4.8935509;4.1561556;3.7513318;5.8804235;1.0016038;2.548027;3.1046016;3.8400459;.3047443;2.6973507;1.9381199;1.673663;3.4929473;2.2955859;3.9050775;-.44187939;3.4065778;.32230437;3.7272658;3.7527351;4.3601394;.28439012;1.9887279;-1.646638;3.116101;4.7214456;3.1948435;1.3071671;.95590866;2.4194579;2.8899338;5.0947165;-1.7187662;4.1792483;2.2623544;4.9956937;-.24891949;3.644846;6.0565886;2.7532551;3.7279627;2.79493;1.2022771;.53817034;-1.2355387;-.39737111;-1.0090674;-.059602082;.58142388;-1.8785961;2.8935878;-.47079799;-.71408868;.4952794;-.97916985;-.42552975;1.6606939;-.44613084;.35564387;-.24517457;1.0883828;-1.2677771;.72639066;.34279582;-1.7429878;-.92491746;.11528312;-.86195302;.37063155;-.92968118;.80989212;.22511137;1.2785476;-.0015217101;-1.8911507;-.34179407;-1.4547665;1.890497;-1.7755283;-.6912775;.97519869;-.49870118;-.98603994;.049873404;.83169454;-1.545437;.72178501;.12919882;.59884751;.28524503;-.12219188;1.8849428;.41346991;.24143542;.42841417;2.0637143;2.4623723;2.201637;.97313064;1.6830361;2.8053129;2.044461;3.2721417;4.7695785;1.1185437;1.1500616;.94072157;3.3555834;1.1577333;2.6497517;.28718206;.48455149;1.397295;2.1645746;2.320509;-1.1966268;1.6021628;1.2902566;2.2977166;3.6421123;2.2257793;.15949601;1.367511;.7295562;3.3450675;3.3033061;1.1024334;1.4842;-.18877245;.79146957;.83232117;2.6368034;-2.1577165;2.1673768;1.051919;3.5702641;-.18544137;3.6825013;4.0885744;1.7762048;2.962343;2.0817704;-.62395167;1.0964744;61.991344 +-.14616267;-.90240496;.21614306;1.817749;.43356007;-.15555546;.43316355;-.64420533;-.51214528;-.79168922;.83503509;-.058721915;-.21489073;.32818314;.027308153;-1.2871704;-1.147187;.36345387;-.23866934;-1.9732677;1.1759001;-.38816369;.16559078;-.039236199;.48750666;-.077792168;2.2263334;.7061578;1.6460307;.14817023;-1.027818;.036851529;-.13404541;2.1907916;1.7654624;.60256273;.74122036;.021950107;-1.3749688;.44185936;.39634201;.82842124;1.0812455;1.1364744;.061307829;-1.612514;-1.9985787;-2.2920287;-1.0429395;1.1494451;.6634261;3.0328734;1.1257476;.21264659;.85389572;3.5538924;2.5001478;3.2966425;-1.5802909;.036334716;1.8095822;2.7489717;-1.3057202;1.9176033;-.05995401;3.0589361;1.4282997;3.378818;.59503037;3.2496924;6.2956271;-2.1267147;3.1874797;.92615372;3.8636303;-1.9106605;1.643147;2.4555664;3.4607546;3.5937574;-.015805805;-2.1035285;-1.1305871;5.041111;.10304707;3.2660267;2.1865578;2.8047252;4.3400979;2.6856506;2.3183966;-.71845311;.98084468;2.4505553;1.7567762;6.6216688;.58522338;4.3090568;4.0986152;2.9891593;.46585807;-.56206119;-.60459787;.20395321;2.4560091;-.3229413;1.3036933;-1.4611065;.82252228;-.52596694;-1.9262428;.9221704;-.34610057;-.25859481;1.5265542;-.404351;.79248297;1.0335428;.33291924;-1.4715209;.71686441;-2.0290053;.1697659;-.4621143;-.83541477;1.4184256;.98112166;1.3721206;.91855806;.49864566;-1.3694191;.65464699;.31300354;1.2500155;1.53769;.096792124;.66649455;-.3036465;-1.5725898;-.86190695;.599078;-.53776264;1.6422064;2.2946465;.43774056;-2.7581027;-.66180313;-.79170769;-.23381223;1.702018;.80814981;2.4321396;1.2261702;1.1477586;2.4633172;3.6332743;-.43407574;1.7893621;-.97785413;-.52911925;.34546709;1.660485;1.1629618;-.63244295;-.5436061;1.5033461;2.4752622;2.051266;.83324701;2.7423646;5.4752793;-1.8222077;1.1115228;.3946684;3.2523935;-3.5468063;-.32491669;-.033639122;2.2853327;4.0068636;-.5981012;-3.3989272;-.28708565;3.0332034;-.0735851;.65073401;2.5275621;1.129214;3.8797579;2.0759199;.82680279;.22354582;.54865021;.47253159;2.1229033;4.2195344;.62686425;2.6504745;3.2966027;2.6701331;47.661304 +1.0129128;-2.1898646;-1.4788704;-.65447825;-.2847977;-.89876479;-.55116475;-1.4316611;-.25061679;-1.7015333;.52318645;-1.5544752;-.59887648;.39402917;.93063986;-1.2106718;1.4321547;-.026103342;1.4900862;.77764696;.063392773;-.79599911;-.44176576;-1.1070737;.16559306;.077739365;-1.3923724;-.37724376;1.1280094;1.0863867;-.91675591;.98649234;.42661512;-.72942615;-.84503084;-.1124929;-2.637038;.070765108;.1066549;-.28174555;1.6228708;1.8988824;-1.8535447;.776052;-2.3713546;-.88328171;-.037797835;-1.72278;-.30846325;1.0921092;4.3436365;1.8071332;2.7406156;.8289085;3.9672799;4.225174;2.0953224;4.9972248;5.8039708;.14817056;3.332701;.92318207;-1.8760735;3.3939846;4.9612765;3.6454809;-.65420294;.4995406;2.867497;3.7609704;1.396602;.3652201;.62133086;1.9910417;-.51278895;3.7789834;3.4421391;4.3801222;4.1215682;4.4844384;6.0581002;.4828414;1.8414879;1.7003191;3.474755;1.6849617;1.6233268;.096181169;-.31270605;1.1793172;3.7989695;.36201984;2.1879084;4.7912674;2.8911862;4.2259698;3.5946009;3.3984532;1.9002804;2.2119813;1.6546434;-3.5128887;-.042855907;.40518001;1.0551035;-.075783558;-.26788768;.50054055;-.66233021;-.16646878;-.72310323;-.60755128;-1.2636924;.61386997;-.21309119;-1.8658535;3.4688079;.62116659;.83493543;.62075591;-.57980549;1.417694;.096785724;.86424714;1.7037683;-.41834623;-1.5224321;-.15029667;3.1372349;-.71981657;-.21691458;-1.3381053;.61830389;-.42821643;-1.8894041;-1.0840459;-3.5798721;-.22378507;-.040079426;1.428985;1.7359776;1.0772123;-2.2809048;-.39528507;-1.1725577;.4683418;-.64194328;-1.9419031;-.45335755;-.097733185;2.9496269;2.3226779;2.5018015;.35637879;2.2580943;3.8746073;.80863696;4.0611553;5.0333762;-1.7335726;2.0925267;.11249056;-2.5040548;2.66169;2.7343748;2.777374;-1.2203565;-.53243995;3.0926924;3.7251575;.26456922;-2.1686094;.43868023;.95968825;-.75281876;2.9060941;2.2004035;2.5721166;3.2870076;2.3905542;5.7925239;1.4037569;2.3054988;.3222551;2.9353027;.050234564;1.1272951;.29574001;.28218234;-.35811713;3.1943991;1.6029257;1.7962322;1.9273863;1.4763255;4.371788;2.2594068;2.0762522;-.15949188;1.3585479;52.187393 +-.10191464;1.4344642;-.40971783;-.89741069;1.0845395;-1.2866044;.13246003;-.39172107;-.81970799;-.37477526;-.22900479;-.47438699;1.0677413;.88092351;1.1124127;.91241372;.47411361;-1.0008643;.33802646;-.32336244;-2.7785263;.79707772;.13941081;-1.5550005;.18698868;1.7856041;-.81057686;1.3122886;.68771613;-1.5120541;.32247338;-.38490215;-1.6601667;.49787372;-.083997212;.18265484;1.9294114;2.0881281;-.34547159;-.39907247;-1.568074;.47592911;.48103863;-1.6105744;.80094343;1.2792126;.19709177;-.14582475;.087826654;.70010954;2.0365319;2.2566724;1.3622935;.5520097;6.5738387;2.9876769;4.9809399;3.6771202;.66519564;-.025263216;3.1404912;-1.7070611;1.0269316;2.1290691;1.0093131;1.8218571;4.8818946;2.2588811;1.3079604;.069873326;-1.7925264;-1.0318376;3.9584801;1.3423083;.17466567;3.4092283;1.473525;5.9621782;1.3915557;-3.3858693;2.9816954;3.5192854;3.5874436;3.2085059;6.8632178;3.2828369;2.6431525;4.8331199;3.3626211;4.1176829;2.7037017;2.7744074;7.4118133;1.3196832;7.05862;.92925888;-2.2085032;1.4504156;1.6086568;2.8937473;-.65013194;.7168774;-.24316765;-3.8229125;1.0422013;-.91066587;.26307926;-.10791726;-1.1048594;.64277071;1.1842374;.41710979;.29701892;.7971493;1.2605391;.20179631;.092176147;-.77849901;-1.8785684;.76809639;-2.8132761;-1.6961936;-1.6921431;-.055777252;-.069183648;1.8019249;-.59774667;1.1615293;.54879457;-2.5726385;.31409857;1.1767416;.31000793;2.7976525;1.9001298;.15647218;3.4433994;1.8643891;.1029292;-.37349918;1.1556888;.57583058;-.28907192;-.34696597;1.851593;1.2257059;-.51880664;-.041965116;-.699619;1.878351;.99609798;2.7052975;.95959097;1.3743227;4.1080489;1.2583992;3.4822159;1.1305741;2.0824931;-.30914074;3.0504827;-1.2136178;.46488073;3.1150451;-.68100476;-.34214163;4.64955;3.4995372;1.1373768;.6200189;-1.350366;-.64433372;3.2749808;-.60294515;1.1721789;2.4534976;1.0480117;4.1675057;-.92494875;-2.2128446;2.0807896;2.0829403;1.980557;3.4015808;4.7078781;3.7975578;1.4227154;3.1541104;1.5929066;3.2867916;.10633759;-.37971577;5.792428;.3401365;4.4167767;.44703695;-1.989879;1.0757774;2.4085298;2.7315764;65.508316 +2.3511209;-1.7139977;.34130409;.25064492;.42025095;-.72486007;.50133228;-.462549;-.59908533;.98414642;-1.5506724;-.018447505;1.1331385;1.2806673;1.9419135;-.17727414;-.815593;.57647234;-.6291216;-.92865169;-.43214029;-1.9486587;-1.047423;.63169855;-1.0781058;.45476228;1.350829;-.23078202;-.84922731;-.89445686;.43824992;-.8308419;-.096499108;-.5550819;-.72098202;1.4340504;.10372424;1.0083393;.85064542;-.26749757;-.91604358;-1.7263734;-.29290602;1.4013418;-.87027097;.23267804;-.59352857;2.0623028;-.037533019;.79510242;1.1404474;-1.3210489;.83074898;2.0977681;3.5550222;2.1123507;-.017151812;.62466711;4.8320131;3.2700465;2.9708412;-.051445913;2.167429;1.344207;2.2030387;2.4338858;1.9138678;1.7775736;2.2714086;2.3455658;3.3621254;2.5468295;2.7537122;1.1989028;3.7803516;.5375641;-.29849401;5.1766677;.57271475;1.5147532;2.6037164;2.225708;5.0878434;2.9832342;2.3295112;3.1735072;2.9898362;1.6647304;1.3006171;1.7606736;1.9315155;4.1994472;5.2358942;3.1176076;1.8453596;4.5751719;2.7060928;4.5258355;2.8774269;2.5382562;1.1707606;-1.1190966;2.0750973;.19127832;1.1187694;-.56188649;.70312285;.12175865;.19778824;1.2705567;-1.4664398;.45984259;-.52965522;1.439449;2.1208081;-.7339229;-.96603751;-.46325451;-.59277475;-.32699314;-1.7715056;-1.2030687;.70561147;-.068736598;-.76287299;.99240834;1.7520822;.53767437;-2.8407133;-1.1454308;-.46459025;1.0940448;.23319051;-.93993729;-1.1132177;1.1847866;-.24818003;.33532098;1.2853509;-.74579185;-.5753758;-.26411295;.95774311;.9692046;-1.8184057;.59780103;.14822592;2.5591331;.65634781;1.2402731;.26562452;-1.3763111;-.022091264;2.0412078;2.7922947;2.9566638;-1.4593199;2.5686541;3.6445236;2.916086;.47155955;-1.4990234;-.39858508;.54014111;1.7204471;.49574545;1.8072045;1.9293864;-.86980653;1.1064388;3.224298;2.6339815;2.0828989;-.89912564;3.8148408;1.6394745;-.86286891;1.3191557;.77454954;1.5236501;2.9521759;2.032691;4.3520699;2.2502561;3.349272;2.4502051;1.9442322;3.682616;2.003123;1.6996378;1.7625436;3.0165255;2.6607277;2.1960733;1.0061221;2.3568273;-.59073031;2.6374586;1.5392203;1.2511624;50.745239 +-.022752969;-.18738943;.72969508;1.1596868;-.4185285;.99416274;.93081129;1.3663869;-1.0906427;-2.0893006;.11482079;-.43512842;-1.0437092;-.85824239;-.78905773;-.58606422;-.41159412;.35189328;1.0294793;.021193426;1.0933087;.19746268;.92142457;-.32711652;.44153857;1.0059302;1.1462687;.17233576;-.27373657;-.36918721;1.0307822;-.049719699;-1.7963217;-.55202359;-1.3595513;-1.3883818;-1.8537618;.78945214;1.2395973;-.74124563;.89416838;.18685681;-.5618127;.16640607;-.13809212;-.17951657;-2.400121;1.1696628;-1.111293;-.66462952;1.7912515;3.3730111;2.0863724;-.74266171;3.7498574;2.396457;.4726468;3.0854406;1.595549;.58807033;.90181601;3.5950646;-3.6679382;1.9310074;.66076261;3.172317;5.0247293;-1.0630344;1.4867431;3.7594402;1.4690826;1.5927477;2.601088;.9993872;1.5648066;1.6526728;2.6636577;-1.1390158;5.8784914;3.3979161;1.9604617;.98838443;2.3117533;5.0455418;4.1276832;3.3402078;4.7381248;4.2745447;3.7747662;.53949153;3.168725;1.8105729;1.7241223;-1.8311887;1.1800567;4.2911229;-.44327089;2.7679675;2.0489333;3.7194631;-.36628005;-.52335072;-1.0578741;1.926403;1.533398;1.4770769;2.4896622;1.8244039;-.91946173;-4.0951381;.81172645;-.90858334;-.067477405;-.31945035;-.25192502;-1.3675424;-.38067895;-.040029194;4.5079522;1.2126997;-.00012093296;1.4475285;.75670987;-.83600891;.20902677;.23671867;1.0145285;-.72025257;.2011988;.58079028;.19120461;.34926319;-1.1083311;.13528666;-1.4344507;-1.0118341;-1.8710943;.69692558;.42668691;-1.2610185;.56289387;-1.1720484;.33627397;.93679863;-.62612987;-1.5484018;-1.3781211;1.3179843;-.49592021;-.18524721;2.539768;2.7208178;1.0361447;.94537276;2.4593744;-.43942979;1.588747;1.6244615;.036413297;-.96645558;-.70923918;2.0536618;-3.0972228;2.1708617;1.9284053;3.4818385;4.311636;-.17908867;.93624616;2.3591094;.76635695;1.5617136;2.8197832;1.8226818;-.16822198;2.9628415;2.8643613;-.52404147;4.7269406;1.6896356;1.7142885;-.28577507;1.6339791;5.1594186;2.5938747;2.1075847;3.7869809;1.9886814;3.3368237;-.6155774;1.2361012;.27477533;1.377836;-.39133286;1.5159382;3.5616217;.59156668;.84440482;2.6349671;3.1860721;42.863323 +-.33169958;-.21788439;.54690057;.62168598;-.97466266;.18351294;1.4191853;1.9965653;-1.2299808;.48460335;1.3924212;.91394186;-2.5381365;-.37627858;-.81939077;-.41521847;.0043800678;.2618255;1.5891351;.41772076;.48446885;.57633144;-.1916112;-1.1089216;-.14804956;.12655528;-.6035167;1.0820923;-1.020418;-1.4602512;-.37946346;.67989755;1.0553572;-.48434028;1.979218;-.75961983;1.2362756;.1219007;.22139174;-.31039271;-.57197154;.063778467;.56181294;.81750894;1.1973156;.147375;.26733857;.38492191;-.91926247;2.2456796;1.1054186;1.800135;3.8244195;1.0671848;2.5591741;4.4590526;-.49719638;4.2259874;3.6840096;-.20692876;-2.7492118;-.6213665;4.05408;-.9683376;-2.179749;1.5146465;.61845869;-1.0465615;-1.0410925;2.71718;4.1760445;2.4554913;4.7812037;3.207417;.95333403;4.8160315;4.3959017;-3.187726;2.6342337;1.4847351;1.9772936;4.4340954;1.5940399;3.2050159;1.8567761;3.1491308;-.92842978;6.3382874;4.9287591;-2.0703909;1.7710015;-.75835258;.3894465;.52587795;2.0706987;1.8869478;1.5414293;-2.8335385;1.5593643;1.0293401;-2.2307947;.57312965;.85307354;.04313371;-.14795528;-1.0836942;1.8788866;2.0720384;-1.4298861;2.8955245;1.9760122;.11262196;-1.2837687;1.197814;1.7012128;.43413779;-.74042565;-1.8904201;.9827767;2.2260416;-.041555025;-.5215109;-1.2898449;-1.9648232;.52260447;-.28445104;.54229009;1.9875313;-1.9787887;.5250423;-1.574263;.50361061;-.65571356;.50951904;.78145123;-.82242817;.96074742;-.27526471;-.70864815;-1.1806548;.64673489;.70688361;-1.1470064;1.7209057;1.4834893;.48784223;-.1183254;.71804678;-1.3520395;1.6007836;-.42766398;.51432627;4.1394515;.43365213;.86719018;3.1419053;-.14939012;3.2553785;2.2680748;.45970762;-3.9680026;-.8150413;3.2840335;-1.6607226;-3.1566186;.86256528;.099100396;.14992684;.026894432;2.0014365;2.8080962;.70722926;1.8732734;3.9072719;.50511163;2.167284;4.6356177;-.33317399;2.0250373;.51799434;2.7055476;2.0663576;-.45219597;2.1326466;.19112754;2.7982697;.25222874;3.3201978;3.2628484;-1.9015752;3.7297719;.33366644;-.17876628;-1.196101;.48653206;.76516193;2.5010695;-2.8582215;.36782363;-.040167548;49.360561 +1.472067;.92601973;-1.6032513;.25207561;-.95614249;-1.5560627;-.44255519;-.019913137;1.9147838;1.3269634;.60998887;.71310234;1.2010998;.58432132;1.4790751;-.9468317;.78194165;2.0950601;2.2535353;-.33372426;.062499437;-.053227041;-2.7772417;-.15483749;-.49887139;.88426018;.30316651;-.29904068;1.1766874;.17321123;.39883992;3.3099408;.8074311;-.057664279;-1.1113497;-1.4145387;.30514514;-2.0956328;1.0000995;-1.5519968;.90632516;2.1248214;1.126125;-.19187215;.027120601;1.3478674;-.25496307;-.53361136;.085183673;.58132637;5.9859953;2.2770905;5.2582145;2.5481651;7.1662946;3.4678781;-.22446515;.5338167;6.1296716;2.298893;3.8691368;1.1120218;2.1019602;-.49271446;2.2186737;.84943241;1.2025707;1.5006908;1.3429725;.65936708;3.1006358;2.1609795;5.294023;1.2569295;.1838181;3.2533305;3.4024484;1.8222214;5.4102359;1.5580416;-.78374952;-1.7741284;4.5253873;-1.2731518;2.6673508;4.0355158;2.9635451;2.8655782;3.8050725;3.1082428;.50184405;.12684961;2.5292599;.11830619;2.1993573;1.3953007;6.3704977;-.49740329;.76466405;4.2308259;.039088964;.24905346;-.95294082;1.4207472;-.040333863;-.79448646;.63696754;-.23451701;1.0034136;.16878755;.28038216;-1.2388589;1.3594414;1.1371838;.58268183;.79292756;-.43286833;2.1028295;1.0670714;-1.6080302;.1821506;-1.1483579;-1.6367896;-2.6797323;-1.4110229;1.5214844;.48673594;-.87729532;2.068069;-.25491118;-.094673388;1.3881891;-.99020642;1.9818306;1.3473352;-1.2971816;.57229185;-1.0540205;-1.2050158;-3.076221;1.5447052;2.4216313;-.92351288;1.3251866;-.50990725;.99779475;-.76779157;-1.0532837;-.5155493;1.6626345;6.0304918;.66006768;3.0011582;3.8617208;5.141305;3.3563049;-1.7396066;-.59592485;5.9883223;1.0648857;3.9351366;2.6958756;2.30615;-.51818514;3.4765134;-.0045741396;1.1348633;1.3862991;1.1873596;-.08309447;2.8607705;.54697055;3.7884312;2.1689959;-1.1908249;1.9391332;1.1294544;-.19245997;5.027535;1.3100231;.28982994;-2.1364112;4.0064778;-1.3894466;2.3523443;3.3742144;2.0285277;3.2049603;2.3698089;1.4881023;-.60205716;.095672846;2.778141;-.17720109;1.4159234;-.010883816;4.0119262;.32401353;.46185756;4.1261849;63.482151 +.36110422;-.18444166;2.6265135;.96979105;1.0759144;-.72622836;-2.1404364;1.445462;-1.0750788;-.72272301;1.1057044;-.39180842;-.68453366;1.2872324;-1.541504;.67154169;-.1572558;-1.4253106;-1.2366035;.81912178;.031254038;.62220943;-.81632233;.82393712;.21875609;1.0137614;.12788165;1.41039;-1.1354406;.6431607;-.61213255;-.72880691;.9289149;-1.2025237;1.6349;1.2392957;.82280958;-1.1130532;1.6040378;-.06766659;1.380491;-2.214227;-.048824541;.055413343;1.185073;-.62742662;-1.5166943;.002411786;.3757571;-.79462951;.87315291;2.3460352;-.30287221;1.7098088;-.54598176;-1.0134139;2.4199426;-1.244495;.16913985;-.63474631;-.26491594;4.3172641;.87187308;.3460013;3.8988552;2.2057278;-3.651201;-.045979057;6.4957671;1.5316198;1.6919631;.6116336;2.2654219;4.0260062;1.9392139;.71587896;1.8452169;.90085328;.16018425;2.1420331;1.0928686;3.6156435;3.0721288;3.6568468;-1.328613;5.1317997;.18812227;2.1333635;3.4376204;-1.1255674;-.21871553;.23030977;2.7305725;-.15575096;4.2912092;2.7911015;4.0884867;1.358137;2.1456499;.89021802;1.3397518;1.1930654;2.6510663;1.1482885;2.4924972;-1.7320409;-1.9834226;.1157193;-1.1905171;-1.0812335;1.7037731;1.0252987;-2.1107762;1.6901879;-.10658801;-.092009775;.51711613;-.90524793;-1.138952;.93966341;.27135462;1.6768519;-1.1901989;.48154888;.78008956;-.16417983;-.89323199;-.70009226;-.81955099;-.17819352;.76718557;-.34356773;.61076623;-.97776681;2.6141238;2.840627;1.8659031;-1.5316539;1.0486993;1.2494202;-.55442166;-1.3112215;-1.2469374;-.39574954;.564551;-1.9821213;-1.6298746;-.56570446;-.99644232;-1.543056;1.2862606;2.5034654;1.1578935;.58073062;-.5388515;.44545245;1.1727624;-.71460742;.014654699;-.99096459;-2.1909361;2.3009632;.54532349;1.998602;3.9939399;1.6446826;-1.7067882;-1.3563966;4.7569351;-.23738441;1.5632461;.32566708;.49782905;3.8713682;.10930573;2.0133929;.31859574;.82756943;-2.1226592;1.3828026;-1.0033337;2.4247596;1.0950153;3.2625482;-.23027134;4.0491986;1.1214243;-.067749277;2.4619169;-1.3224353;.98840719;-1.147238;2.2584963;-.24371289;2.7119179;.70840323;3.5134954;1.8573288;.17818692;.006482943;41.716061 +1.9566684;.60970062;.2765322;1.218501;-.93377793;-.39373457;.96991581;.26510614;.41406459;-1.048781;-.25610584;-1.0868437;1.2535522;.6498217;.74552733;-.97697502;.85189855;-.45274925;.87090838;-1.5733844;.48884535;1.0260508;1.076167;-.316627;-.35130668;1.3287858;-.39686337;-.56339276;-1.2140853;-.53423572;-2.9309096;.056104694;-.62254125;1.0833375;.62112963;-.57577419;-.86027926;-.97888589;-1.5398929;.4007563;1.5805637;-1.1229308;1.0962837;1.0304087;-1.0222934;-1.4582878;-.41745648;-.077141933;.93268096;.61267585;-.079372637;2.3762829;.97881484;-.67243731;3.215673;-.7988975;3.323086;2.3097048;-.54727077;7.1403871;.29273796;.77586651;1.178793;1.4600029;-1.4889438;1.294019;.85691476;2.747993;1.1052003;4.7745852;.28250638;2.232789;.78054786;2.1756334;2.0425329;.33241513;1.2803943;2.1274827;6.5848579;.65562892;5.1350689;1.744894;.67228097;1.2234262;1.7684051;.33086047;1.8228698;3.1734757;3.242486;2.7856588;1.4803267;1.7022614;3.0365856;1.7008992;-2.2348738;2.4901853;1.2952368;4.1450739;5.1368656;2.9015064;2.2404935;1.2932091;.95380962;1.3098245;.58288085;-.18941374;1.8014766;1.2981725;1.3472846;-1.4802498;1.1868325;.05188575;.54237145;1.7460929;.93412113;-.85591829;-.3930122;.12585901;1.0628533;.85072792;.78509927;.028866637;1.3690667;1.2465827;-.36342275;1.7645286;-.15490626;-1.0185022;-.11291607;-1.5484606;-.88976276;-.02934389;-3.275635;.7449258;-.76041716;-.05216787;-.62344891;-1.2494864;-.84101546;.49412978;.66944444;-1.6960279;.76045984;1.2061924;-.53786343;-1.2658092;-1.5377407;-.11239891;1.5278771;.89673769;.23554477;1.0435424;1.7773359;1.1084462;2.4826033;.0003562239;2.2970078;1.8262061;.36129197;4.5848441;-1.640766;.74075508;1.3329642;1.8655381;-.86729729;1.2144939;.1670077;1.9524034;.05798658;3.8398161;-.070237994;2.30194;.307715;2.4276884;2.4172366;-1.6651129;2.7042634;.56006163;3.5946438;.020319026;3.8342314;1.9922731;.26251596;2.0278776;2.0816715;.78797221;.39028195;3.4729581;4.0871854;2.6087861;.52454358;1.7472093;2.3142765;.73035949;-1.9760079;1.3194513;.083147541;.49028343;3.0332546;1.8905036;46.353985 +.86400592;.38569838;-.082909033;.43311381;-.12475681;-.2068415;.28855616;-.65197259;-.70254225;-.17223355;1.9467885;.74218988;1.09552;-.046261229;2.1410043;-1.4983824;-.67226392;.49531767;.030229224;.35765469;-1.1323951;-.93491369;.46627909;.21433827;-.77833354;.36438861;-.19454056;.0060571455;-.031881575;-.76153839;-.85752875;-.37589824;-1.003005;.056332421;-1.6969713;-.7880401;.1122143;-.84029108;.43117341;.64467198;-.53166628;-.93378788;.13693161;1.6745607;1.0001502;-.49725515;.2897259;.53268254;-1.3404312;.97048521;.6449191;1.6482558;2.6517284;-.73678786;3.536576;4.0490608;3.0891507;.32791823;-.48901495;2.699543;5.9971137;2.6548214;5.9199095;-.093018152;5.2067108;1.7479979;-3.1429272;3.460444;.35235825;2.2773829;1.421106;.1325758;.93951428;1.2664623;.67879641;1.1329242;-1.6709749;4.7989106;-.88808119;2.2210164;-1.6151105;-.43018088;5.1908584;2.6082354;.43654442;3.5105374;.81344223;4.4046326;2.3547382;-1.7188641;.49142531;2.4718211;-3.4306092;-2.880682;3.0603886;2.9195096;2.4102283;2.6845033;-.77511698;.60351074;-.78273332;.75837201;-.96292984;1.3866059;.22134551;1.3735445;-.19926924;-1.1985703;-.51781809;-1.7663996;1.4389813;-.4759033;.077837586;-.55815864;2.6869435;-.83579749;-.79767656;-.34004647;.28721371;-.81587183;-1.9555688;-.099107973;1.8026167;-.92813778;-1.9566631;.19801153;-.2592805;.42357576;-.21488605;-.036808647;-.5561139;-.1539118;-.46504948;1.8351337;-.23840563;-.38368922;-1.0629432;-.45908716;.4257853;.31299892;-1.1686345;-.48957893;-.3808797;.45484221;2.2339733;.71403116;1.0198268;1.5239149;-1.1835835;-.4291338;1.4450535;.64887232;1.9155422;-.49648556;-.21016641;4.6041694;1.7842757;.81744909;.41988841;1.9217962;3.8296037;1.2864375;3.3535552;-.57869124;4.9612741;2.2913828;-3.1193817;2.7696829;1.1064011;1.9683634;.60143161;-1.1547058;-.39130288;.12538652;1.0690744;2.4253283;-2.0352821;3.1649151;-.60442466;2.2487743;-3.1580505;1.1064725;4.1916437;.49444318;.49987945;2.388236;.23904642;3.4814792;1.9280425;-1.3988149;.85029596;2.4358039;-1.6204315;-1.5021173;1.7202506;1.0704331;.70330232;2.452323;-.79421973;.44601178;42.9198 +2.0466039;.85716212;-.47826493;-2.0120134;-1.5694098;.063575007;-.44878933;-.27033404;.75693178;-.81039983;-.88891852;-1.5180475;.27247652;.074310161;-.93447858;-.16085196;.64226413;-.51498997;-.17116635;.0036915322;-1.3127135;-.29292479;-1.1411409;-.10853094;-.76336432;1.1139953;-.58853573;-.25532079;-.32137793;-.32687214;.6688484;.5255456;-.64663011;.24458142;-.39888814;-1.0114042;-.66140485;.26714101;1.0945275;.45711833;-1.8134791;-1.3044196;-.85387874;-.7535761;.15323792;-.98695558;.20782059;-1.4352781;-.35378414;-.50386685;3.6260674;2.5279539;.65278369;-.83061975;.46234584;-1.661007;2.092272;4.4797063;2.1955934;5.0959663;-.48062944;-.2701667;2.8944724;4.3506508;1.7301573;.83732027;2.4240947;1.8880137;3.2565508;2.1374283;4.0820422;3.4786658;1.5507399;.42752957;2.325707;.92740172;.21043588;3.197613;3.9879918;2.7374957;1.7523146;.75494838;2.3354518;3.6207862;-1.8396749;.65183222;3.6614017;-1.2788709;.63049436;4.0156145;6.2566495;3.7397552;1.6032252;2.4650574;7.7494736;1.5955014;2.8321469;.82722896;2.3849638;2.4009657;1.6295573;-.4585104;-.14530377;-.085736185;-2.4913952;.9733488;-.67531556;-.93010855;1.5233396;-.33065376;-2.1482191;-.49740264;.28064218;-.40522578;-2.5009537;.16755784;1.3679594;-.41975895;.45970988;-.69477457;-1.161839;2.0050838;-.47085384;.57224476;-1.7590837;.79011685;-2.9726706;1.2375461;.26360279;-.69263667;3.8624043;.63578641;.60880649;1.3554465;.83393764;-1.9366447;.64790821;.27851933;.96459961;-.4820061;-.91936207;.031232426;-.23987313;-.14105956;-.62563264;-.77036607;1.2204955;-1.846405;-1.3985794;-.22785102;2.6867001;1.1047065;.59259433;-1.5327903;.14427131;-2.228261;1.8675442;3.0852036;1.8006715;4.5580206;-.050471842;-2.3561718;2.9119761;2.5981181;1.7928529;.62438869;2.3143578;1.70435;4.5852127;1.3148109;3.2047019;2.2022517;.5443148;.020473653;2.9813643;.90017015;-.63616794;3.2280402;2.2016799;1.5661056;-.43994629;-1.7906058;.078780375;2.6070647;-.81783444;1.6774521;3.3839421;-1.0135969;1.0191882;2.4693499;3.0021629;.90205806;-.47255284;1.6369407;4.972537;1.3230197;2.7246902;.94594091;1.2764837;1.3963987;40.445522 +1.4191465;.21429704;-1.2364959;1.6642325;1.170182;-.37838072;.40987614;1.7358304;-.51649868;-.88758177;-1.6696502;-.72485298;-.073835999;1.4188356;-1.8261973;1.9399601;2.207068;-.79152632;1.0954347;.34596854;.48136896;-.31432149;-.32571256;.56300998;-.20913145;-2.0500929;-1.2416441;-1.5858955;1.2568163;2.3462458;-.3996281;.46776572;1.5536057;-.84638071;-.72225839;-.89139599;-.40003225;.87565851;-.48428342;.5175218;.066036977;.73220187;-.32825449;.57010061;-2.9955676;-.095161751;.1583474;.83520091;-.41556829;-1.8064417;3.4177582;4.6774149;3.378226;-1.1872677;1.3322161;3.0864284;2.512476;5.6607323;3.2724271;1.6292285;.24088565;2.8185024;2.7319238;1.3118225;2.9362845;1.5932428;1.9086233;-1.3544974;-1.8332537;3.4101675;5.039258;4.0470705;-.23006284;-1.2037709;3.9978809;-1.3909476;3.6218715;-.83907253;1.8283887;1.9179758;.20008084;.47892961;4.4259605;-2.4190722;2.8154094;.81679398;4.2728157;1.4196371;2.1660643;-.89240015;2.0386965;-.42010742;1.3020755;1.3813738;-1.5331447;1.5117062;3.1053696;.25692883;2.9425244;2.7584934;.89813554;.42977744;-1.1467649;1.2355578;1.8844031;-.79325783;2.534729;2.1510379;-1.3440965;.40308949;-1.0449393;.67638916;1.2545992;1.1381487;-1.5256609;1.207638;1.8505259;-2.0646625;.56511182;.99834836;.88593656;.90567577;.25837728;.29926863;-.31169039;-2.3410115;-1.3479767;.14799207;2.8087859;1.1516582;-.71524853;.63844109;-1.2286376;-1.4003104;.14624016;-.76740301;-.42144653;.83059555;-.75857085;.1691428;-.34903938;.32715172;-1.4856626;1.3048357;-2.2462335;.1665187;-.76720756;-2.0113001;-.5385989;.66277766;3.1415155;4.0760593;2.4115734;-3.4131613;-1.2719493;2.2560904;2.2968929;4.6993332;2.0347533;.44241863;3.4918392;2.7268136;2.5567138;1.3011643;1.3828776;.19026463;2.1810956;-1.7240407;.60214561;2.1892354;1.5670381;3.0518346;-1.5033908;-2.2331679;1.5668145;-1.1545359;1.7595403;-.63258827;2.1243162;1.7986052;.49389952;.076930955;1.2910815;-2.821039;1.5201515;1.0143688;2.3991489;.28876185;1.036352;-2.252774;3.6166289;.64910436;1.0535178;.6088264;-1.2132773;2.0027168;2.5015082;-1.0359507;1.065814;1.9899397;39.922535 +1.3257591;.6821745;.79595125;-1.6635662;.76719058;.14501469;-.14542729;-2.1066949;.085259207;.94930786;-.95564187;-.43027401;-2.2818055;-.36800429;-.95801431;-.96871716;-.86261207;1.6248757;.7207942;-.32731575;-.87119555;-.45650142;-.17556256;.54214245;-1.9930977;-.39701286;.36380336;1.7439169;-.81977856;.63517356;-.28843865;1.03668;-.24106544;1.9444029;-1.501901;-1.3112311;.88529021;.78136307;-.49111134;-1.9482467;.28308672;-1.8617897;-1.1623188;-1.3892115;.13197097;-.66578257;-2.1054296;1.6117538;-.8771196;-.92321712;4.1018519;2.4094594;2.6365707;.9301694;-2.0271311;4.242384;2.2611744;1.5896944;-.064249873;1.6853875;3.2189188;-.9997136;2.4109497;-.66534185;3.5991857;.080533333;2.8362298;2.4326348;2.7240396;1.7177048;2.5477083;-.053737309;3.6912265;2.8543298;2.6147816;3.3459768;6.4769869;.4538334;2.2015009;2.103296;2.8175008;1.2860587;1.7510492;-.35327694;.88456768;3.5579038;.77148747;2.3803732;2.9609218;1.6976343;.30175775;-.44228289;1.146735;-.71116245;-.088628694;2.5104291;2.0234604;4.3742862;-.84870952;.85232216;-.097121932;2.2280178;2.2061095;-2.0794342;.51000154;-.048098017;1.2029285;-2.1840985;.86421049;.99161339;-.93735653;-1.3611978;-.92279983;-1.0303316;.048444342;-.51297402;-1.3464599;1.7429472;.4669821;-.92031682;-.83747697;-.54673624;.44237253;.0069390265;-2.1576715;-.50141746;.99765164;1.4414357;1.7594259;1.0633855;-1.3522899;2.2974401;-.63652921;1.336418;.66039908;-.99745679;.27948454;-.067306228;-.77588564;-.95247442;.14575131;-.85086113;-.7927497;-1.3370255;.38150734;-1.2794787;-.43431744;1.3529018;-.94459897;-1.1560696;3.811214;.88342178;2.2418771;.90132511;-.61050326;3.4759238;1.9324131;1.7148883;-.339641;1.9142323;1.9343971;-1.8728976;2.1210492;-2.0150034;1.383409;.19262205;2.4930985;1.7795986;1.3107064;-.4181906;2.2312369;-.82489979;1.240831;.52232158;1.0482668;4.3312159;5.1933651;1.7733281;2.4587801;.79785407;2.8956954;1.6817007;.7445339;-.91626048;.13276926;2.420537;.27528346;.3221477;2.2877955;1.4658279;1.1438509;.27089894;1.8777617;.061367739;-.2110233;2.3433301;1.0127786;3.0110071;-.95057201;1.7143537;29.583408 +1.0902364;.95256352;-.70847321;-.39776084;-1.246356;.37831929;-.34358975;.20018175;-.32211694;.860533;.35205701;-1.7819134;1.7637298;.18737103;-.17254898;.29959002;-.06435395;.30167329;-.90702885;1.2658521;-.7126075;1.1433334;.49856949;.3777388;1.2002879;.32516333;.62249488;-.49160594;-.35665393;-1.7598473;-.10849984;-.47868401;-.94565284;1.064079;.55875236;-1.105774;1.0640532;.39602682;-.91397512;1.9236625;1.3100262;-.4977977;.39015701;-.33328167;.23026216;.67599267;.076943345;.83727008;.14008051;-.90843582;3.9710946;3.3227255;2.379705;1.5081207;-1.4785269;-.23176941;.37471297;2.4952199;2.715137;-.56329185;-1.527617;3.2965288;2.0122268;2.7098441;2.0494628;4.0522528;-1.1957911;1.6356053;.044269834;1.4640465;-2.1813278;.31251109;2.4522834;4.2150083;1.5710855;-.40407598;4.3476882;2.3427639;4.0487647;.21522537;.13370329;.058226522;2.11046;.85941648;-1.4565965;1.3678291;3.3740067;5.3147335;1.2107408;1.2546587;2.2828112;3.2503197;4.1665339;2.081948;1.3280803;-1.5096892;4.7578745;2.7673061;.74428719;.75442851;.60262126;.51949811;.63727486;-1.0622771;-2.1190448;-1.8053637;-.66935712;.046471521;.032747786;-1.0835431;-.57917309;-1.9837685;.69385225;1.2833854;-.95837331;.13627547;-.23520246;1.0797642;-.64171976;.91127259;-.63358045;1.1820395;.42939863;1.2179033;2.3584099;-.2467963;1.6995131;-.71784252;1.1407254;-1.4616723;.92276639;-1.0392209;-1.0553746;-.54021192;-.59525836;-1.3986161;.35078141;-.86701959;-1.919225;1.4506016;.36957157;-.39491972;1.0806872;1.6927307;1.4709662;-.19580989;.36434925;.29309374;-1.6831099;.5442875;1.9682225;2.8215139;.77491498;1.9241347;-.71947765;-2.3843198;1.0770361;2.0473666;3.5956745;-.80952638;-2.3649178;3.4016945;.84378725;1.7332582;2.0398598;2.7534025;.073379606;.023486504;1.9191;-1.0006795;-1.8724835;.094155006;1.2201591;4.2748899;2.765373;.3003023;3.1934719;1.9415275;4.151135;.5856021;1.9020914;-1.3149892;.29580006;.71903324;.83283556;.36523318;3.7951751;3.9242842;1.2880036;1.3324535;.73020351;3.0384741;4.9563704;1.0448605;-.43443421;-.49734962;3.4089546;1.4383469;.26573122;3.2357266;45.717548 +-1.188616;-.47992906;-2.7578511;-.83794832;-2.2936585;1.0787188;.16882394;1.7375426;-.24995844;-1.1201106;1.1966784;-.78907502;-.65679705;2.0321472;1.5809243;.85981244;.37801963;.11297863;-.10375104;.6958856;-.93742448;1.5272751;-.11296568;-.33766097;1.1522331;.29719588;-.064877331;.73029661;-1.9836897;.11490743;.41202822;.9931277;1.5892509;.18555064;1.2349708;-1.7225739;1.016108;1.494113;-1.4286802;.88017613;1.1608175;-.50513428;.27945694;.4734093;.4964954;-1.1133797;.71237522;1.6096114;1.9128616;.90096623;1.0288221;3.2660258;2.6784539;2.7553353;4.1457887;1.0533317;4.4439316;3.1125057;2.4296725;1.6926579;2.7801728;-3.8912699;.53112435;3.309576;2.2579279;-.15178023;2.7031167;2.9544215;.7490238;.23183988;3.1991303;3.2124643;2.2690253;-.90738887;4.2476888;.76964569;2.7419145;2.5157044;-1.1145473;4.5372691;4.145381;2.3528764;2.7946782;1.5708323;.38626909;1.9672997;-.85169435;.28740719;4.1806197;2.7599819;.79071087;.41057673;-.49388021;.62489504;1.2897626;1.2261142;.84006202;1.3047873;4.3805232;3.1857922;-2.3555882;.54934669;-2.3198011;.73512977;.41433159;.32060519;-.43473789;.98981416;.088165075;.3370105;3.4523244;1.8905574;1.5664811;1.4316957;.70226318;-.87230647;-.94296694;1.3618952;2.0125706;1.2641462;1.0777335;.98087525;-2.026197;-1.2341456;1.7155664;.59554875;.31214148;-.30357945;-3.4930298;1.1245884;.2572141;-.23375329;.6119101;.70977426;1.3425336;-1.0906612;-1.836297;.49463442;-1.5799761;.80032581;-.57957089;-1.2461741;.36293691;-.47495699;-1.5214592;-1.9249556;1.4300995;2.2231228;1.5668982;.62800401;1.4247202;4.1432648;.33720744;1.6970522;2.9225423;.57246935;3.5928111;3.7113984;2.1327062;1.1045597;1.4956325;-1.8704233;.93998677;2.4152284;.31471169;2.0388143;.70445937;2.0521827;2.5060484;-.37189206;3.202785;2.5337579;1.4891384;-2.6730981;2.8841691;.64269179;2.7584426;1.6659441;-1.1555674;2.978878;3.2352586;2.042228;.90612572;1.2418823;2.0232847;1.061864;-.41659299;1.3297238;2.7653275;1.0911102;.47240645;-.12624928;-.90902084;-.091344908;.10296227;.98192531;.65847564;1.9594882;4.9657125;1.1447406;51.322212 +-.30600476;-1.2174567;.80941498;-.76230133;-.10507393;-1.6243403;-.28798112;-.75984496;-1.2925754;.24477892;-.65382564;1.3274238;1.2616875;-1.4980668;-.056227956;1.1396677;1.637271;.26124731;.96022516;.90961558;-.77032518;.72889322;-.54290128;-1.0261608;-1.2746043;.69509041;-.3701171;2.1906691;.6419999;-.29721376;.46537068;.15303464;-.46885005;-.62568074;-.15389423;-.53404146;.94059694;-.71966159;-3.2998135;-.27206424;-.24598618;-.53355747;-.99406302;-.072017215;-1.2508354;-.32058045;1.4505281;.48068288;-.4952651;1.0976828;1.475264;3.6589966;1.6353644;2.7341359;.66100842;-.48341221;5.34235;.060878661;.44346482;1.152843;1.1123079;.093394078;.83317679;2.9849212;.89426118;-2.2251675;3.2058268;2.0273855;1.1278871;5.9999518;-1.9388319;2.0063419;.67841619;2.7235491;.77766567;6.1741695;.42172614;1.2498696;-.18578686;.75480348;6.1640143;1.4019557;2.5536673;1.8140492;3.0896986;4.184556;.93584406;1.7214524;1.8423272;.25188583;1.638088;-3.221765;-1.5486728;-.21840024;3.8596675;2.3457017;3.5641472;.77947909;1.6220375;1.4179306;.57338357;-1.8545772;-.98149067;-1.0880628;.38587299;-1.3513262;-.41744918;-.54137099;-.35240975;.85969549;-.92865491;1.1580557;.54472744;-.91962475;.24373065;.91817909;1.2355657;.64734119;1.6215597;.0196073;-2.0275612;-.009180367;.81973422;.55350661;-2.4594035;.17204624;.11089952;1.8624625;1.8044662;.3206661;-.51107335;-.18565316;.21386723;-.27802056;.75931698;-.25533953;.92019242;-.92943984;-.41488436;-.28989181;.91690803;.87802303;.52205443;1.0572701;-.98277891;-.47985578;1.5293721;1.2871891;-.44759563;2.1226211;.047810476;1.1881548;-.4737877;1.4269718;.63285768;-1.6633122;4.0436187;-.93196702;-.32127753;-.50612116;1.1350172;-.66096026;2.0561564;1.787336;1.0497653;-2.5866334;1.7851925;1.8320584;-.199488;3.1182172;-3.6753898;1.9999002;1.4319432;1.1364818;.81420445;4.1046977;2.2423046;2.5091782;2.46242;.79623836;5.6499572;2.6559074;1.3295298;1.7044331;2.6346731;1.0392479;-.31003234;.29233536;2.1017685;-1.1305759;.58359629;-3.1618397;-1.4921247;.52667505;3.8051152;2.1600308;2.1526115;.25030974;.53769481;1.5983154;35.670994 +.37117237;.6852541;1.9245328;-.43122849;1.6415207;-1.9132681;-.37838578;-.14871895;1.0494951;.49282303;-2.0309455;-1.0045873;-.88037848;.24921699;-.29372087;.9316597;.55343026;-.67834836;-.76311922;-.82578355;-.093304552;-.53031933;1.4913409;-.46088189;-.12424022;-.42774087;.17249559;.070565194;1.3535458;1.7181979;1.6165355;2.1413884;.51595014;-.13974805;2.4482372;2.5883801;.9432373;-.4593015;-.84832543;-.59588206;-.75859565;-1.640013;-1.3419647;.48494962;-.11882197;.51228034;-.12094255;.44391191;.58106351;-1.653024;1.1251879;-.36756232;3.707263;-.80995286;2.548393;4.064291;.65132654;.79326129;-.06637425;1.0829145;-1.2373662;1.2239087;6.0663166;.25914875;5.0191545;-1.3237426;3.6826358;2.1118777;1.0082492;2.2957342;2.4392791;-.03171226;.31683671;2.9722047;1.4374261;.8007133;2.0286081;-2.6864998;3.6499176;.72241145;.06087061;3.2463422;.87808985;3.7761056;3.2827148;2.8782978;.055029426;-.83750403;.90751219;-1.6570158;2.5858243;4.7576399;1.4889565;2.2979946;1.9087356;.10313932;4.856576;1.7754567;4.6379576;3.0108409;-.32315356;.39459792;-.59537017;1.4242135;.86201072;.20753801;.94437993;.4858548;-.27219629;.93351287;-1.3138008;.034336004;.41744578;1.4877468;-1.8859851;1.8476783;-.65846819;-2.1697421;-.27576706;-1.8726943;.19694021;.50589436;2.303067;-1.0442095;.30312282;.75072926;.13439956;.96947771;1.7082887;1.8902079;-.43028894;2.7659874;-.61179686;.79012716;1.3588363;1.8602563;.12277854;.54304028;.11122592;-.18218672;.082426056;-.42908424;.93692952;2.2744863;.21254276;.2163644;-1.0425227;-.10721848;.011966768;-1.6781465;.83768517;-1.253992;3.4340615;-1.6273898;-.085620567;3.556361;1.6582102;.18319525;.32609376;1.6578989;-2.6199832;1.2815933;4.1662226;-.52794582;3.5942781;-.070641339;1.7354021;1.6595013;1.91933;.15810607;2.088933;.49904773;-.14195868;3.1707873;.60346144;.66527724;1.8235327;-1.6899625;3.3055215;.40275136;-.99772793;1.8602061;1.6648664;2.951756;2.0060151;4.2869964;.83456314;-1.6116107;.82893568;-.62368029;.035600562;4.1180162;1.4168097;1.5532593;3.3840292;-1.1711572;2.329608;.65193081;2.1245356;1.4661956;42.801567 +.055928506;-1.2238926;1.3986907;.17540772;.89954239;-.02680999;-1.9347851;1.1488539;-.19721183;-3.2510772;-2.0617852;-1.6286844;.01961262;-1.5132426;-1.5585324;-1.8991756;-1.282153;-.43830594;.45361501;-1.6286315;-.3544831;.071632579;-.80323523;1.8329718;-.017952777;.57742786;.08192867;-1.0525945;-.59902519;.075654745;.15831555;.24425872;.29637581;.27566367;-1.3833941;-.68245858;-.051460702;-1.0111752;-.60039312;.54531318;-.71635467;-1.4440024;-1.4450966;-.41091874;-.54947186;-.86600471;.52953708;-.1376527;1.6238048;-1.4836128;1.865357;3.1437221;-.3696124;4.5580316;1.663342;-1.4028451;1.6338966;.026461447;2.2848003;1.3746045;.1683121;3.6310983;2.8389666;2.5708444;-2.0834684;2.5602071;2.3957591;-2.3396144;1.9955474;2.5414779;7.5830655;2.8661778;2.3754592;3.2845554;1.2799305;-.60322076;.024964575;4.9647355;1.3204702;3.9877124;1.2960473;-1.4999535;-.089209363;.97228944;.27885422;1.9056593;2.2020712;1.5879337;3.3135302;3.4305627;.15739559;-.37023956;4.1349287;2.6068847;2.6605148;4.0897174;5.1906085;3.0895994;5.6106439;.56345171;-.82797831;-2.2547054;1.3026942;-.44421121;.56533468;.76686567;-1.1964605;2.725668;1.8057638;-2.8520792;-.76837581;-.9496398;-.13558362;-.55045521;-.3810927;.38745636;-.061449535;-.35093927;-.43198591;.24333854;.53996015;.039559677;.70132941;3.5174456;.69576901;-1.1168536;1.5560539;-.6079306;.9440226;-.081851862;-.14777242;-1.0028715;-1.3538675;.65634745;-2.0430992;-1.8241549;-.44897822;.86013925;-.58207452;.65374899;.014721143;-2.7953889;-2.6999598;-1.6833895;-.44586495;.96107805;.46041942;-.35518864;1.3077846;1.4695908;1.5301818;1.7084259;-2.2680757;3.6435952;.40130529;-2.6536543;1.0817006;-1.2593603;1.4415613;-.38174704;1.2810359;2.3576484;2.112489;1.4919995;-3.0215306;.94681758;1.6070267;-2.0870748;.26645964;1.9662535;6.2740703;1.7127258;3.2429452;1.5475672;.70518649;.54915285;-.12413455;2.8118606;.2517769;2.5211718;1.0847361;-1.9470874;-.68773574;1.0647713;1.1663946;1.1689764;1.2032185;2.8373141;.84007317;2.9004207;.61853433;.69743282;2.4240642;1.837485;2.8010249;3.3707266;2.6816669;2.5854464;3.2488282;.72869265;34.86652 +-1.0137032;.39674723;-.076179542;.16775796;-.013013236;-.45999539;-2.1261215;-.63288188;-.81759316;.7280398;-1.8522456;.70121902;-1.4018043;-.64900053;-.87075883;-.73380601;-.1966095;1.1619779;.16614956;1.1217976;-1.091971;-1.4160318;-.41239133;.4462336;-1.2924422;-.88278073;-1.9882718;-2.5226421;-1.0154529;-.77780265;-.13220307;-.19481058;-.82711983;-.5617674;.031504959;1.3411821;.07042335;-2.214545;.035695881;.69518632;-.87573475;-.68309492;-.067730904;-1.0515084;.064852647;-.049775284;.91791761;-.42245534;-.064434439;-.2889609;2.5273783;6.9604039;.08357241;-1.1693866;.085119538;-.56660807;2.0998795;4.7442665;1.0389159;.9173519;.81547326;1.6041441;.44311208;-.52535987;4.4057198;3.7880828;.49344623;1.676711;3.439034;2.7330039;2.0619888;2.3398297;2.4100254;2.3366354;3.2601898;1.3243061;1.5183723;1.8453691;-.89424604;4.3777461;2.2539566;3.5061636;-1.0234944;2.2843235;.19874178;-.31914136;2.300849;3.6096895;-1.2310746;3.8973618;2.9830852;3.843359;2.765255;1.0648087;1.5548744;4.1374545;4.1603642;-.21974516;-.86507225;3.0038941;1.4774976;2.1639323;-1.3227719;.92006636;1.3569939;1.0698301;-1.3010803;-1.3026513;-2.7036922;-.84519356;-1.9887707;.83176738;-.64049363;-2.9087541;-2.3825059;.15087743;.9916957;2.1623681;.58497548;-.79022962;-.29082224;-.43214881;.62782329;-.12398656;-.27297154;.01710112;-1.3373927;-1.5738292;-1.9125803;-2.0525272;-1.3207903;1.1210024;-1.2583786;.09604913;-1.5139591;1.0858191;1.694786;-1.1893185;1.0848361;1.0340923;-2.4662588;-2.659987;.61466467;-.82806033;.44125462;.69590455;.64320087;-.75672758;-.58586508;-.78053659;2.200424;4.4616656;.73484224;-2.0004342;1.3114411;-.06289947;.089980081;2.5847723;-.5652554;1.3948489;.16914916;1.2740045;.74481773;-.21682616;3.3720729;3.1805055;-.62424767;.093336612;2.4308658;1.0270442;1.2069843;1.6948508;1.0543908;.55024344;3.7164514;.92929137;-.055713251;1.4358368;1.2760582;2.0179558;.53708184;1.9409842;2.2152393;4.0898442;.62501019;.16358541;.12938923;2.7659109;-1.451558;1.6640464;1.7424061;1.7071776;2.3663278;-.53126067;.82530987;.61666405;3.2403603;.32832965;-.94202793;3.0065167;26.707989 +-1.3242805;.13975488;.7613681;1.2292939;-.22256701;1.7237533;-1.4395366;-.17673758;-.25699899;-.52941185;1.8394791;1.2752246;-.56631315;.087177835;.13052997;-.41192746;-1.2620326;.85487002;.49222472;1.0904945;-.12316675;-.34400007;-.35307795;.34318379;-.31617624;-1.5249474;1.7207305;.84678459;-2.4052753;1.1928896;.42907333;-.61714059;1.324894;.8339591;.2339973;-1.3215613;.69711882;-.92736924;.60415751;-.14771071;-.45884669;-.011767245;-.37906846;.30246291;-.19057535;.62926346;2.0214162;-.22540747;-.4589369;.51914853;1.7860551;.025485313;-.18013844;3.150826;-1.5875628;-3.5324221;6.8070264;.58100569;.0061565377;-1.5479536;1.9382874;5.136868;-2.9072692;1.4405698;1.3751659;3.7789819;.032022245;-.1406863;5.4080296;2.1465256;2.0830069;.5982576;1.9411516;-.2403861;2.2636976;-.33556515;5.1626263;2.0358441;-.9491201;1.2175512;3.0040035;3.6646614;-.49936166;-1.7530823;.3495245;3.2958512;-.95737779;-.24068329;2.4785061;3.8984263;2.2665622;1.9517852;.87229651;-.20546877;5.3806758;.92820811;1.2920245;2.5921044;4.9177418;-.21905786;-1.2675917;.39888647;.91145253;1.3286902;-1.2208725;1.5833787;-.62524861;-.23873232;-.11124185;-1.5780585;1.9307897;2.2326472;1.083464;1.3271741;-.88637519;-.22117195;.44247133;-.34613377;1.6614722;2.7838695;.87321615;.081336237;.2862561;-.6456126;.66357994;-1.4086668;-.23571482;.49038404;-1.8566562;-.18893056;.3958897;.39814332;.78605694;.78834063;-2.0920463;-.913634;-.5920887;-.45516419;.11183831;.15580069;-.7309137;-.37530395;-.69585222;-1.1749051;-1.2463725;.018595919;.179969;1.8590616;-2.8648155;-1.6074206;.59110612;-2.7793272;-.32310298;1.0792875;.19890882;-1.4948467;6.3490267;1.3016188;1.171267;-.54006821;1.1606749;3.3850698;-2.828017;.77874488;1.7562615;2.1469359;-1.016883;-1.428586;4.2344856;2.1286817;2.7484982;-.33854863;1.2035061;-.41653529;2.9936755;-.85027856;2.7486582;1.1122534;-.73778445;-1.0293773;3.279542;.39676872;.39996207;-1.5611457;-1.2329997;2.6024234;.11490668;.25112039;4.4399981;2.665509;1.9513141;1.6038653;-.71327472;.33838412;1.9604715;-.83421612;.63639396;2.0054452;3.5980556;-.18325055;34.918453 +.87041938;.53672004;-.24472319;-.49453902;.83701444;1.194121;-.36146617;-1.3251998;1.7212819;.93417424;-.48659605;.41209975;-.93482244;1.1423526;-.35333544;.17496419;-.41943201;-.21243073;.30086946;-.31605631;-.70599139;.74957073;-.87564927;-.22354974;.56861341;-.45775262;1.0334182;-.2704415;.98026609;-.42496753;-.85551459;.091756545;-.66407961;.091400743;-.41048133;-1.2531052;.1389367;-.15502268;.089921817;-.34296936;-.68291736;-.31782863;.82122672;1.0127227;-1.7100804;-.67535126;.37310681;.70264596;-1.5627489;-.064768389;3.8540566;6.3401408;-3.976584;4.7162771;-.96746737;2.2061079;1.0285826;.87512147;2.9728627;6.0085268;2.5788491;.20236225;2.26998;.36636403;2.0319536;.84695077;-.20262912;2.9834082;3.0196989;2.157716;4.3479528;1.0996389;-4.1798153;6.2815061;2.2836616;2.8815744;5.7361069;1.5125881;3.4517;1.360773;.39768696;3.7916565;.33897972;.29018578;5.8527684;2.2121499;2.1214592;3.6717203;3.8027496;1.1358199;1.9930379;.6211347;3.508687;6.4694901;4.5478382;1.9023398;3.547039;2.8693447;-.95603055;4.4416471;.27079174;-1.1039814;-.40010083;.17912181;-.093743928;1.4640151;-.49780419;-1.2757645;-.30978531;-.59056664;.55539078;1.4490936;.25183851;.14544147;-.41188627;.15523911;.36892185;-.74564976;-1.0368571;-.80582213;-1.4767311;.70456141;-.10879979;-.69684327;-.93031293;.12556735;.3754867;-.42344171;.48183396;.71799058;-.65621758;-1.0222095;-2.6655238;-.55730879;-1.0507197;-.73772573;-1.509392;-.87509155;-1.0789582;1.0125048;-1.5341647;-1.5588106;.56573153;-.82258058;-2.2765739;-.0040393611;-.54481274;2.7896698;-2.0781245;.46276751;2.8335896;4.9860005;-1.7150105;4.2930865;-1.6640651;.90809202;-1.0534438;-.0119463;2.9083953;3.4407883;.89612627;1.1242681;1.4340471;.0095410626;.29077479;2.6775546;-.569296;3.5486939;2.9106753;.57119423;2.2322519;.57504457;-3.1344495;5.2962346;.70961201;.47643018;4.5346131;3.0194268;2.716836;.61912316;.33731189;2.3355501;1.5877228;1.1134647;3.4137092;3.4586244;2.8503811;1.7479781;1.5683424;.66137993;3.363492;.1612533;2.8446867;4.7048063;5.56494;2.2600367;2.2861528;2.1511486;-1.4904325;2.8687925;58.30378 +.45905447;-.5944581;-.39313135;.73347175;2.2275505;1.6137793;-.8612864;-.66364449;-.8676374;.6691345;1.0701083;-1.0941312;.88353091;-.6590448;-.47359794;-.66536939;-1.6265452;-.81120509;-2.6414433;-1.0434021;.5585584;-.19468497;-1.5629027;.44392398;-1.1689785;.77742553;.11408203;1.0869671;-.27154207;-.23064139;.68999022;.061953578;.56426096;.58999199;.35407633;-.80471539;-.76811796;-2.2458489;-1.3404862;-.80947411;-.13159238;-.10042493;-.6111818;.94613355;-1.4246572;-1.5664927;1.0770242;.18650198;1.5908558;.017383797;-1.3090355;2.0366881;-.1667688;-.80543959;-1.503005;2.7988298;4.4918318;1.366172;1.6234411;3.4465294;-1.883742;3.3251512;2.1101429;-.68908203;2.3484724;2.8877149;2.7288547;-1.4934676;1.6144042;1.3150071;2.8542368;2.6215858;3.467355;-.99116576;2.2275667;2.0914719;-.009110027;3.002409;2.2978919;-.45021009;.19857337;6.8584304;2.1503153;.30788648;1.491199;3.8330252;3.6203213;2.9882698;.36631283;1.4738095;-1.2813399;2.9368095;3.1294844;-.27506608;-.089765675;2.6554046;1.0413429;1.903602;-1.5132998;1.9360116;1.4453832;-.0071682716;2.4287434;.68429196;.20636788;1.3024557;.36694476;1.1726954;-.99620104;.64419138;-.32962543;-.62766427;.59772456;1.3446258;-1.3121401;1.1086823;-1.7069317;.26753879;-1.9209894;-2.9312806;1.2257322;.43980923;-.17735475;.43078098;-.86562896;.1033666;1.6540849;.21905942;-.65870899;-.066943854;.24251251;-.76809525;2.9260242;.091309287;.59514147;-.76299757;-1.0695117;-2.2085354;-2.3942168;1.649201;1.2145904;-1.0211648;-.6274581;3.5086317;.21394311;-1.556164;-.52618158;-1.0877205;-.18918179;1.1524367;.30456847;2.142962;-1.0202711;-.32686123;-1.5237699;3.1863537;2.2000828;-.22412269;2.2279921;1.6406538;-.39381835;3.1812658;3.3507237;-1.4582345;2.6299579;.31652302;2.5882921;-2.1692429;-.62616128;.98327726;1.4831555;2.7638059;2.4820244;.90401047;1.7824746;.9905768;-.33929953;2.4170349;1.4495077;.079409935;-.90187627;4.7204428;2.8185978;-.5726862;.96607834;3.2940452;2.7726481;.36639732;.74083024;.07948824;-2.3623078;3.142427;1.8643206;-.048136432;-.0051085199;2.0739756;-.45118901;-.82673794;-1.7743624;.27241474;33.361637 +1.6307088;-.62797529;.8864488;.88295758;.97310406;-1.5186579;-.54082417;.50864816;.81219298;-.57113117;-.27461514;-1.2092444;-1.2620919;.88229972;.60838801;.89687657;-.45289171;.5930559;-.75638175;-1.4085985;-2.5687649;-.94136894;.066202201;.6158151;1.0876255;.43936047;-1.2868483;-.74986267;.043291911;.12379346;-.34306398;.94443494;.07060346;-.42790791;-1.1995946;-1.2497213;.83483464;.39759848;-.37553343;-.21281928;-.52670372;-.34304416;.38813648;-1.203143;-1.1912868;1.4324557;-.75178432;.8068735;1.1593876;-1.9383998;1.7635454;.40693909;2.2643061;5.5206037;-2.4422593;2.7862074;-.40309298;2.5302649;.77671915;2.4771464;.98051292;1.5646688;-.84161854;2.1702199;-2.5005286;-.33777291;-.67860681;1.1284362;6.5758357;4.2777462;-1.4038922;2.3938;3.8214035;3.9546154;2.9218111;1.4367696;3.7278624;3.2648723;2.5491319;3.3303516;1.1172367;4.2564855;2.7450902;2.1716819;-.50712729;-.49384931;3.6709316;1.6034708;2.5207014;2.3526003;4.4242067;-.62464875;-.18123147;4.3517742;2.4969683;1.4825913;5.2288747;1.2005645;3.9989908;.78504533;2.6308837;-.25424749;2.2518282;.71407604;.66624635;-2.0940301;-1.0416428;.79180229;.10172672;-.094469577;-.88942593;-1.7451584;-.65814978;.43873832;.7780531;2.4418907;-.071450077;.5091272;.99484241;-1.5406947;-3.633564;.61783987;-.62817925;-.43032834;1.6038467;.70051026;-.48858836;.56312656;-.029850904;-.71976173;.49815965;.50778615;-.66982222;-.49916902;.22653355;-.7376017;2.0680645;1.1520369;-.90576917;.84105593;.061575312;-1.0859493;.48646829;-.046763893;-.77449495;2.3875141;-.23062299;1.3509604;1.9750905;-.40001914;-.81789792;1.0312513;1.2681537;3.4198804;-2.3375156;1.7580216;-1.1509285;-.89164644;-.78798163;1.5729121;-.45849133;.8782388;-1.6971855;1.7545582;-3.5987072;-1.2409362;.74189502;-.41713995;5.7216301;1.3548793;-2.5228529;.98821747;3.8265667;2.805371;2.7340078;1.8635793;4.0499296;2.6929045;1.2763211;2.955055;.35762924;3.2801867;1.0140684;1.5902314;-1.0028185;.064085767;2.2730863;.46577001;1.7351837;2.8969638;3.7591698;-.18229172;1.018907;3.6255722;1.7761031;.85994464;4.7937074;.45017576;2.2495818;1.1495093;39.118195 +-.87689406;.086737379;.04941231;-.19890219;.28449708;-.71521223;1.14235;.31966531;-.9562059;-.035380475;-.68416649;2.1026099;-1.1300139;.42207929;-1.3270624;1.6009053;.91565353;1.6698892;-.044095378;.68125325;1.6677951;-.47218496;-1.3475215;1.1545683;-.1250446;-1.5155721;-.032075912;-1.6383145;-1.2229003;.94356513;-1.9906752;.47792631;1.4736029;2.576756;2.1278632;.32645893;-.55168611;.68825209;.57674807;-1.6140716;-1.2481252;-.25468418;-.34093395;-1.4812117;-.18303514;.73049504;.13764717;.90573978;.7562362;-2.5107491;2.6571474;2.7404909;-.93233079;4.1111646;-.73032981;5.0360613;-.4658559;-1.8434882;3.7010407;2.6132183;7.2359686;.42080352;1.4109643;1.7773175;2.9746387;3.7698345;1.964324;2.4568059;1.4677162;3.4660366;4.3260326;2.6963603;7.1122599;.14934807;.12184142;.85061324;.8188082;3.6676204;.9740473;1.3385409;3.6306548;-.72408652;.52085596;3.4304245;-1.4473088;2.959954;-.37280959;1.9821521;4.2814164;.029618734;2.136709;2.3700638;.20649423;1.6103445;1.0363082;4.0010495;1.9804826;2.7719605;1.1162561;4.008666;-.80103016;.47061619;-1.6758221;.51413846;1.1977376;1.2548399;.93855143;-1.4142686;1.0853815;.63986629;.11389859;.27863717;-1.7060201;-.15320341;-.23076889;2.0047479;.92506957;2.8134675;.6121549;-.60216904;.95715022;-.13217948;2.4445868;1.3029048;-.33257994;-.028466878;.90459257;-1.9377245;-.72896326;-1.3283215;-1.4324921;.59320146;.22934012;3.3146493;1.4726684;.83666825;-1.0460272;-2.5848505;.93198425;-.78239101;-.35349822;-.73130178;.28355211;-2.4891274;.44230601;-1.0303432;.69510216;.62924576;-1.7581362;-2.8160186;1.9899089;3.851187;-.78462851;2.6210542;2.4286885;3.9772112;-1.2118528;1.0124332;2.5259194;1.6668832;1.5226418;1.5940379;.36127412;.53274292;2.8406487;3.1985054;.97608316;2.5308244;.35311925;2.1691806;2.8210161;.62503952;4.9217362;-1.352922;.64856392;-.94299233;.96629846;2.0605185;.98000741;1.5959345;3.5450482;.26271856;-.36063308;.63396293;-1.9485446;2.6648636;-1.7877606;1.4175131;4.1958365;-.47809878;1.9845058;2.4661791;-.61754167;1.1491476;2.0110698;2.6981764;1.9111891;1.5864601;-.52747315;1.7008154;44.990879 +.3695305;-.95995069;-.5685755;1.2439157;1.188574;-.30085677;-.37268886;-1.1501622;.082002923;-3.2491121;-1.6589453;.3588888;-1.0695943;1.303591;1.3181159;1.1413902;1.5142174;-1.0216087;-.25928354;-1.0105774;1.0352132;-.72033304;.15700878;-1.071375;.39776394;-.35805324;1.0347117;.49091506;-1.1767;-1.2645518;-.73206198;-.6481449;.42629576;-.67326212;-1.739536;-.45657274;-.49978873;.11540536;-.15911613;-.59401047;-1.7947603;.59166139;-.3416518;-.06898357;-.16360177;-1.0177376;.7282055;-1.0609401;-.30504847;-.26465896;1.6383331;-.91113311;-1.6001297;3.9659941;6.043314;2.0376685;2.5556505;3.1161475;1.1499186;2.4598444;1.4495245;.77994806;3.979187;2.8240721;1.4793178;4.1142654;1.5156534;4.4137378;1.1248766;.23703776;-1.0374082;4.7759857;.043231718;.69635606;1.4984941;4.6640286;2.3849909;3.6226149;-2.1495571;1.672223;3.7833617;-.42991829;-.43809071;.61822259;3.7375214;2.2293501;2.7100992;6.8837581;-.35731116;1.2816366;-.42099234;1.9363538;3.9663777;-.8671698;1.8750691;.075815096;1.122574;4.5380507;2.0339596;.42625377;.1224642;-1.1798626;-1.2243735;-.33442378;1.132812;-.65838611;-.51206052;-.8572706;.53564078;-2.2923861;-1.819971;.46515548;-.86061066;1.5210301;1.432943;-.39715484;.85717338;-2.6406059;.7930463;-1.0707982;-.53026068;.91474026;-.8901282;-.13846329;-.49311745;.0084336102;.91423959;.83695;-1.424457;.24202116;-2.4568193;-2.293972;-.63147831;1.2637308;-.74125952;.76972055;.90888017;-.10680822;-.535631;1.8645508;-.22134762;1.5197283;.24177924;-.99920148;-.56714159;-1.0462887;.60883021;.25430989;.24663921;-1.2372442;-.60667628;-1.0502675;.21488468;4.0676961;4.4579496;.2110599;1.9887552;3.5005417;.87668985;1.1914535;.17126998;1.7252885;1.9638026;2.0967932;.60382098;2.7776191;.82460237;3.8168218;.83913946;1.6808554;-1.0124789;3.4777789;-.35346782;.570575;1.4026717;5.1386118;3.3712456;3.0296798;-1.7430191;2.6892495;2.6633193;-.92485464;-.06941545;1.8832685;2.9814436;2.0996108;2.6907988;4.2814269;-1.572055;-.42291513;1.6820734;1.7180719;.90317822;-.97567123;1.7365611;.10421652;.038024645;1.9592592;1.4809872;-.046888214;37.279636 +-1.7772365;1.804401;-.82474744;.15909843;1.7827419;-.69639719;-1.1942967;2.4631245;.53171575;-.65338111;-.014744253;-.52820015;-.21605577;-.059468944;1.5602545;1.1087037;-1.4050225;-1.2564436;-1.2147329;-1.2237066;.0065331697;2.0863836;.42940745;-1.0889781;.57233119;.086123683;.73332185;-2.2056434;1.2726634;-.021591838;.35914159;.97153747;-.82280213;-1.764166;-.080612056;.29989028;.84926236;.87353694;-.039373219;1.2579951;-.63955724;.5344736;-.64407426;1.6006231;2.1545877;1.5829586;.24833694;.094990715;-.71923125;-1.7480668;.38327786;-.25532067;1.8286729;2.0928743;.38485435;3.5083497;-.23705776;2.5443957;1.5687336;1.5032774;4.394207;2.515173;-.65474731;1.1631243;.18076216;3.7063215;2.1099987;1.7652775;4.9771357;2.9339073;4.2138653;4.1955314;4.1675243;2.6666203;1.1630272;4.3059797;1.4293871;1.2561764;2.1066096;3.0072448;4.1595664;1.5324465;4.6075721;1.2446083;1.6036713;3.5720024;.18739147;1.8316869;4.2047968;1.2561471;1.7769681;2.2277408;2.4959719;3.3729334;2.308063;2.179975;5.9942031;2.0507495;1.588909;3.6920056;-1.4230559;1.5162625;.5785439;.24546884;1.7458124;-1.1253893;-1.1937029;1.8076036;1.0484291;1.2356575;-.94748354;-1.189853;-.58065474;.67326444;-.048965208;-.95605874;-2.5562425;-.78876054;-.37431124;-1.4129659;1.2218205;1.3585207;1.2421536;-1.5700705;.37030384;1.3305385;1.1100308;-1.8313982;1.4165312;-1.3758395;-.79162312;1.1915104;.27618939;.67190003;-.93513322;.87562388;-.63291472;-.44656226;-.66760743;1.965228;1.8235018;1.1035135;-.91733617;2.3453207;3.4534447;1.4888836;-.065294556;-1.4971348;-.11744912;-1.8898369;.15400954;.28085783;1.3800136;2.6085305;.56968784;1.3258954;1.0767463;2.1831396;.32329085;.9693144;3.55248;3.0242417;.59822476;-.56228268;.74612755;1.7385706;3.2639031;.071999051;3.1549966;3.5425014;2.417969;4.7190838;2.5621078;1.1208899;-.10883527;2.8384337;.90704894;-.91618931;1.4272336;2.5436058;3.4186881;-.08822646;2.3459227;1.557349;1.4791538;.7544778;-.9078818;2.8882885;2.4669766;-.55623317;1.2756294;2.2381954;.90415567;.95029271;2.1105094;2.5932236;5.6107359;1.8645527;1.4257748;2.8524342;62.19323 +1.5515431;.59978789;.59127629;-.44878033;1.1006399;1.1099706;.27467498;-.085432529;.26495171;.24000964;.57840282;-.58378375;1.1458702;2.3491108;-.92308187;-.55608284;-.36846071;-.89315659;-.021152817;1.0538695;-.68780029;-.44059879;.85925603;-.36775976;-1.6358161;1.0901618;-.0035350514;-1.1956328;.18422519;-.66448092;-.82912278;-.49441412;.47136703;.1893511;.30434269;.27377656;.61460418;.18521507;-.82562423;-.077680193;1.032897;-.23388647;.83032703;.085099861;-.49696892;2.3264551;.89564526;-.7087574;-1.6570693;-.0391436;2.8187802;7.2991705;.47685722;3.2610319;.9774217;3.5813687;-1.6073865;-.76517779;.91946775;2.8543565;3.9783506;2.5571032;3.6608381;-1.6039402;1.3252478;.55675137;3.0116343;1.6156815;6.5780711;3.0608742;2.0629406;4.5571041;5.3295112;-.83865404;4.918622;2.1627431;2.4878132;3.1281276;1.1245965;2.9075861;.83624262;.70647657;1.5389229;5.2002273;.35709113;1.656906;3.0450015;1.4470694;-.85720414;4.0278506;-.060409397;-.67992318;.7361747;2.6726754;.66879308;3.4251363;3.0518372;-.75747365;2.7152803;1.6565973;1.4956018;.43672782;.41417342;-.038462121;.45161095;1.2560893;.96827656;.4212876;-.30046424;-.91089201;.71008128;-1.4721447;.90894681;.96029711;.80068862;-.13337019;.62453121;-.62249458;1.0983645;-.26975632;-.13245131;-.056919117;.27692956;-.42125064;-1.6491818;.34668916;.0082366504;-1.15179;1.8242273;-.52029413;.25379243;-.75701624;-1.0177969;1.4317514;.83476162;1.7891215;.86312848;-.53327799;.0065540751;-.18555665;1.3604971;.3029916;1.6657218;-1.5113698;-1.718511;3.5963116;.55395609;-2.9998078;-2.0584538;.75760168;1.4666829;4.7657471;-.45022327;2.49489;.72328794;2.2157156;-1.8987441;-.25269774;.31418261;2.6883905;2.1507807;1.674412;1.8963071;.65929985;.8418678;-1.1736298;3.7808371;1.9518399;4.6045966;.64636564;.62507159;4.3065324;5.0797839;.69971764;5.778255;2.0743437;2.0730891;-.7078014;1.787547;2.8712461;-.78121531;1.637802;.4835971;3.4384892;1.6264557;.52350658;2.122237;1.2465454;-.10414889;1.7634574;-.34768024;-2.097121;1.7466202;1.1743525;1.4029478;2.8988717;1.7913562;.95637089;2.8409338;1.243947;51.434589 +.065348923;.74988621;-.31925213;.66378093;-1.4784719;-1.2542007;-.96950239;-.4170503;-.18112496;1.5614785;-1.2086241;1.7981824;.19541912;.10407847;.89633667;-2.0914617;.81599343;-1.3627441;.59802401;-.88679957;.5782057;1.3173915;-.29484355;-.4000361;.71758944;-1.1888672;.82490617;.63427609;.023130877;-1.5360429;-1.356518;-1.2560229;1.1667962;.41405863;.22075668;2.5169897;-.087340198;-.066023462;.45061925;-.036842737;1.3855225;-.27106732;.42242643;1.6374351;-2.0414693;.93474585;.34708518;-.05415678;-.21738194;.33026922;1.3661538;2.2825849;1.6721407;-.31877103;1.6077653;1.659586;.97574574;1.6465707;1.1713045;4.4033327;3.5614953;.021179345;1.5014228;1.2088847;-.095840923;4.7794266;2.8616061;.9122017;-.37509522;3.969996;.74240589;1.6391715;-.27523229;.47507051;-.60854203;3.1946058;-.37035981;2.1621051;1.1586707;2.2658157;1.6394722;1.6375408;2.3747084;-.9772138;1.3339951;3.176765;2.0160515;2.470484;3.2565913;3.9948876;.54017103;-1.0135162;.91860127;1.5162357;.79775953;.36137864;2.822006;3.4703414;5.3360868;2.4494619;.8853001;1.2256618;.41453773;.57367694;.076508664;-2.8699729;.44223034;1.2145206;.45734543;2.1360328;-1.7377397;2.0020266;-1.5910259;2.9250755;1.8918084;-1.9721944;.11394826;-.26461682;-.053347804;-.25960112;-.96114749;.28421703;1.5214418;-.7227481;-.80038935;-.92014635;.88933533;-.27588624;.65214288;-.7042374;-1.0567373;-.056185249;.36883858;-.2110716;1.9321142;2.0760031;-1.7632275;.12048708;-1.006759;-1.1544554;.41928476;.26335087;.86221796;1.9268568;-.88236439;2.3147745;.20481731;.56016165;.1270843;.45435953;1.3878766;.86550838;-.69380933;1.0276921;2.3350887;2.947679;.45513111;.41327465;-.042550169;3.1676989;.70919132;.047848087;.040034689;1.5710657;2.2226357;4.0871353;1.6282746;-.074285656;.12263165;3.1278963;.44933724;.8485527;1.1021751;-.43816906;-1.120701;2.4365785;.077127397;-.12177312;-.34721345;3.9362285;.50913286;1.4188441;.44171175;.17729996;2.5255361;2.7233377;2.8350375;1.4979976;3.979511;2.5345285;.54739201;-.39408532;2.0252085;.13041204;1.2032676;-.053521048;3.1208498;1.4321818;3.7396748;.40577987;45.378189 +-.80279619;-1.2466267;-.97591347;-.16636983;-.25741178;.45522669;1.7513416;-.32775539;.79472125;-.2167474;-1.4170052;-.40749305;-.13039321;-.71611363;-1.4708704;-1.8478941;-1.8142478;.40806583;.43224499;-1.4481498;-.057744961;-.43437088;.5010581;1.3609067;-.62106127;-1.3912849;-.68474537;-.03955831;.2854822;1.2478781;1.2875211;-.84131873;.064021863;-.66062856;1.0896064;-.0074203881;.50163037;-1.8553063;-.89834708;.31506622;.1081963;2.2739909;1.231434;.01129245;-.19253956;-.013109949;-1.2374992;1.9350449;-.069187552;.62184483;.55089188;3.980145;5.0486989;2.2094874;4.4707823;-2.4012959;1.4327455;-.21907376;2.7824125;3.750088;1.9360121;1.7012988;5.0170441;1.1941174;4.2365475;4.0404167;4.3271656;5.7892809;.76501572;6.1575871;.090991259;3.1018867;3.6470618;1.349867;5.9409747;.74844205;3.9536362;1.617655;.43082774;1.512372;2.079159;-.37361664;3.748301;2.0127172;4.7347279;.81341678;.26585597;.71562237;5.1203895;4.2330289;-1.0776399;2.5883853;-1.4552062;1.6226635;1.2196223;2.1352606;2.0734937;1.6478945;1.5478711;.10257894;-.74956346;-.3913894;-1.75212;.75197977;-1.1743302;.54486918;2.3888614;-1.3280106;.42070919;-1.642538;-1.8880686;2.5502613;1.4249389;-.12906049;-.77730638;-2.4374161;-1.0800012;-.23395745;1.4426504;-.74763107;-.60446471;.14831538;.48854339;1.0877309;-.51505226;1.1296027;.56308943;1.1719116;-.19553;.64272368;-.61005914;-.70070899;-.19174545;-2.6230781;1.8576378;.020619389;-.46913704;-1.0367941;.1282388;-.10455622;-.39320877;-.45269442;1.8086281;.69248295;-.13557155;2.0707033;-.51337171;.85805255;.27390483;-.477263;-.86387545;3.7210593;3.5577557;1.5636963;4.3236351;-1.1261954;1.2835696;1.6500524;1.7154326;2.7186558;3.0253501;2.332104;4.0284338;2.7582681;1.8778729;3.8765457;2.5769212;2.9536166;.90840638;5.2294607;-1.7121295;2.2301185;4.304368;1.140882;4.0275068;.42110038;4.5449171;.82002729;1.8907708;2.0389595;1.4196973;-.37223327;2.7748165;1.957023;5.7845926;1.6099546;-1.0298343;.62193954;3.8321774;2.8691268;-2.7209213;1.9621469;-.81594646;.12518375;2.0207005;1.3730241;2.7189188;.47369879;1.6992922;-2.1865387;50.423702 +-.76235378;-.15176213;.91501755;-.43565437;-1.239006;.30820629;.65134114;-1.6054883;2.0973701;-.27669919;.22202407;.56267864;-.79882044;1.6381787;-1.1058238;.53552169;1.5209327;.28475517;-.43879369;-.49358344;-1.2597615;.81469715;-.1809613;.79718459;-.17895661;-1.0055329;-.1833673;.071889728;1.645053;-.1754677;-.25794476;.0041805678;-1.4336444;.62050915;.82134444;-.61002612;.20120357;.0035065333;.8820256;-1.484082;1.0647848;-1.0913825;-.81660181;-1.5286365;.010466256;-1.3336622;1.1235652;.94315982;1.4687587;.88988328;-.25301629;4.5677714;-.5896982;2.4143798;2.6578772;3.1208749;-.57786542;3.6497226;1.0262754;-.23648484;3.2757215;.4016791;3.1538889;-2.9763856;4.9929786;-1.2473502;6.4530964;2.7388418;1.4079452;2.9921701;1.1331019;2.5045028;-3.6289823;1.089383;6.0734019;-.33858424;2.593466;3.3983259;.488379;-.5133996;4.8740892;1.045877;2.863019;.13699202;1.1703501;.64907032;-4.1396389;4.3628149;3.829726;4.4253759;5.7131553;-.59364635;.73076034;4.7499208;.12234536;4.6803913;6.2792063;1.9367162;4.2480536;.79756594;.6547308;-.072776273;2.0169952;.77074909;-1.2301567;-1.9562607;1.133709;-1.041079;1.2141588;-1.5912555;.16303122;-1.0767516;.21749271;1.5087117;-1.3807397;1.1141925;2.062839;.71302503;-.7409243;-.97759563;.52086097;.16311474;-.25401357;2.1935225;-.070009917;.57952607;.7524308;.18065213;-.95095497;.34389234;-1.4667194;.27150497;-.524028;-.98846406;.21533667;-.51860672;-1.0874214;-1.0200686;.89829862;-.55668092;1.8567431;-.79063845;-2.4390509;-.056572568;-.7122336;.046035603;1.6219491;.56760484;1.6925471;-.89550298;-.31206211;2.8561983;-2.0783772;1.8976986;4.0821667;1.650161;-1.0928912;3.3446314;.27206641;.97406751;3.094094;1.631761;2.1679845;-1.4920633;2.0645938;-.90605301;5.211431;2.3814657;-2.2261131;2.1589684;.89425683;1.4319751;-1.9680822;-.94992071;3.3682671;-.90221691;1.6288993;1.9339604;.66940832;1.130636;.54605019;1.7540469;1.8890913;-.23005754;-.7047379;1.317026;-3.5767443;4.0709209;2.2574651;3.4956577;4.182085;-.67078418;.71481633;3.5995347;.42132205;2.7739255;5.4286056;1.633751;1.7761456;2.5770514;49.431908 +1.3167114;-.15778321;-1.3838445;.59716249;.29228532;.063485645;-.47774959;-.99582183;1.1407217;1.474826;-.4248884;-.81418967;.0052257129;-1.5113969;2.7140262;-1.9888936;-.20977113;-1.0582802;-.073091991;.26398441;.43654719;-.21518077;.098453388;-.45398051;-1.0020072;.9756822;-.67147803;-1.0519344;.093585871;.74289095;.77575982;.43994597;-.79309857;-.19155239;-2.7688355;-.13845378;1.1608775;-.41469651;-.49291074;1.3985167;-.30975494;.28286591;-.80568486;-1.2941909;-.27638528;-1.5801176;-.77741957;1.6589375;1.0253878;.12171774;3.024545;1.8255683;4.3787208;-.052322831;3.9375505;-1.8086187;5.5857372;4.361063;-.3612904;-.060678139;2.1864789;2.6555307;2.2276289;-2.2393129;.11734899;1.0484511;2.3460212;1.3708742;2.6921854;1.6246796;-.1177092;1.9331751;3.0376818;-.11834053;4.6974697;5.240026;.097510338;4.8631916;2.8966267;2.2866681;3.7608347;1.7292607;3.2183537;-.71216851;1.8838609;1.7657362;1.0987736;1.9515499;-.41347167;4.2529659;.86701268;4.215682;6.0695167;2.8075035;1.2346276;2.0602648;.69230247;4.1470885;-1.7001411;2.7432613;2.537354;.082827084;-.90543592;-.64344174;2.2493849;.87226772;-.70093924;-.43745986;2.7104819;-.22813323;-.75756907;-.6765542;.669698;-.90614998;1.8742418;-1.4671563;1.5204265;-2.886852;1.1579901;-1.8255808;.017404143;-.42465493;.29233232;-.9944703;-1.5614967;.081914425;.40044087;1.4583678;.16077192;.049438447;-.37843469;-.37475497;-1.3423977;-.38520193;-2.4458008;.26299334;.7609486;.72663611;-.41352645;-.6982432;-.57296348;.14416067;-.83388084;-.50875586;1.6172198;-2.7563283;-.36739621;1.2078515;-.74590623;-.48886287;1.4870077;1.0887111;3.8724401;.035033543;3.2466292;-1.8975686;4.9018359;3.0575638;1.16064;-1.3247244;1.0743395;2.7052009;.70807743;-.18465057;.35126135;1.1517634;1.5511736;1.3361319;2.0762925;1.3001212;.19575202;1.7249255;1.9442315;-.80047351;2.8960185;2.8635805;.88311541;6.2077975;.78382397;.22317164;3.2972524;.76323974;1.6197594;.27481934;1.2468315;1.4465511;1.8415687;.84892601;.1895711;4.1574454;-.51249248;2.2462959;5.2898893;2.8674898;.9939844;1.0418665;-.47579181;4.4390006;1.0012405;1.855698;50.025375 +-.0098739285;.85386705;-.16577315;.92265409;-.60850883;-2.0884941;.056390561;.0020567239;1.0098746;.30266711;.40439335;1.3938479;.49136171;.97863317;-1.0632181;-1.3173976;-2.3995326;1.1224021;-1.8708385;-.93650264;-.16341223;-.51640809;1.417794;.23581947;-.61174917;.61819518;-1.0907969;-.75888711;1.5123106;-.45667106;-.39769486;1.4210079;.058843169;.23726176;.75335246;-.43816674;-.67414057;.30077627;-1.196927;.82462144;.61814374;1.1568866;-.24988006;.28256008;.65651405;.41543487;-.26990613;1.2781026;1.2170732;.97498131;3.016284;.22606426;2.3955879;2.2775166;2.4015317;2.5461867;.40537867;2.3809092;2.1035159;2.2794299;.38036928;3.0383813;1.2777404;-.5067957;2.950748;.31361309;3.9347746;4.9963074;.34078652;-1.7583448;-.90930909;.94554621;-.57926404;3.8829994;4.9876437;-1.2278935;3.3017468;.86457431;2.6874802;4.8902683;3.5175557;2.6651881;.12264708;-1.0443231;1.0406747;5.078908;1.188123;5.4716105;2.3805487;5.5105414;2.5485895;1.377208;2.6296642;4.0284038;-.16156965;4.9329562;-.30685756;1.309413;3.2781074;2.5541599;-.238738;.97762227;1.0630809;.42294669;-1.8932284;-2.1439202;.41829133;1.3411695;1.1364769;1.1498808;.27789772;-.18458824;-.23953652;.31552133;-.14827874;-1.1130778;-2.1056201;.97536612;-1.4349611;.05601985;-2.3653777;-.17144756;-.37043044;1.0013406;.42419252;-.74006861;-.10421263;-1.1654956;1.42916;-.038290329;-.13277079;3.4639897;-.57424945;-.59256512;1.1183481;.79642504;-.58884215;-.47286329;.70452958;-.97756618;.15946266;1.2890311;-.87953407;-.38506499;1.3180834;1.734755;.97052771;2.8366656;-.54184759;-1.7230669;.32551247;.34109065;2.2399182;2.7315431;-.28841892;2.5738723;.1889845;1.7243437;1.2502033;.75782239;.29006377;3.0818098;-.74925762;-.29595637;2.2382996;.72877902;2.838125;4.4128909;-1.6057552;.91228473;.45874816;-.49338481;-2.0287995;2.6410689;2.3908355;-.71039939;3.6949995;-.32069054;2.1330798;3.2586801;2.3063893;4.2511401;-.02931116;-1.7601238;.6940881;3.414428;.33397692;3.159621;1.1625034;6.0082183;3.1566157;1.8500835;.94170177;2.9768465;-1.0531214;3.9790423;-.23238219;1.1888818;.51209551;.97661287;52.916431 +.11257619;.3219066;1.1998951;.20048285;-1.5945171;-.94545287;1.7145779;.33848912;.85602772;-.46414456;-.9081431;-1.0771168;1.0823563;2.0341289;.39377394;.45898274;-.64827567;-.20731042;-1.1138151;-.39560166;.10521044;.047260359;-2.7478018;1.2571105;.020921264;-.80968165;-1.3575289;-1.7011051;-.53046626;.66490483;.86222315;.74256498;-.93552071;-2.0723262;.43384007;.48492849;-.086593919;-.49891084;.46120837;.56121588;-.15412924;-.15772323;1.4971523;.036227547;-.50044894;.19742009;.68023896;.36257404;-.17995198;-.82731372;3.3823102;7.2570157;2.2616005;2.8180027;.24329038;1.2096261;-1.1346902;5.0201602;3.4559085;4.7681422;2.3903568;4.2633119;1.5589168;1.4457161;3.0271404;2.1825733;1.4396738;1.7825078;3.0830271;.32384601;2.2139983;1.2381456;2.678508;-1.7983381;2.4637678;1.5354167;1.5308256;.46409521;7.9390006;.93074232;1.4040314;4.6127377;2.4921858;3.7787082;-2.5891495;-.83425951;3.6446178;.29617122;2.1723313;.68573713;4.1061611;3.5524311;3.1397216;2.7996664;1.0690572;.37592217;1.4318612;2.7072582;2.3153403;1.5439475;-1.6989478;-.32171503;1.9748451;-.30806977;-1.2377515;-1.1743097;.10282493;.9978776;1.0958261;.35093114;-1.1152403;-1.4794751;2.0181999;-.3528856;.89551175;1.5377606;-.60449725;.21662109;.23635651;2.310416;.67257863;-.74579519;-2.8187125;2.8638799;3.2628353;-.35439506;-1.2972014;-.48747125;.64981246;.32938832;.86062086;1.5922112;-3.1664042;-2.420758;.515661;-.43610987;-.19904177;-.56625164;1.6358033;.081812024;-.5018037;.83564574;.98415142;-.68329728;-2.1386738;.0075429571;.0050954618;-.25576904;.31251082;-.43974414;3.3705666;5.944272;2.1020899;1.0939099;.35241216;1.5591387;-2.161453;4.7792854;2.1585703;1.994365;.37682864;3.5835073;.58773077;1.1906739;1.4493818;1.6087708;2.9094934;.29582304;2.6614392;-1.1700639;2.6157019;-.88513553;2.3771617;-.5179159;3.0382955;-.5493235;1.1835995;1.2029166;4.6787629;-.90737402;.82778621;1.1860778;3.4609535;1.8623278;-.44782609;-1.2708504;.63779414;-.032019954;1.803467;1.6907796;1.4708407;1.7326864;2.8179595;1.8929744;1.0763361;1.8734635;2.1065123;2.1679044;1.6680349;3.0803316;53.194103 +1.24887;1.5290601;-.17391989;.37153026;1.2525698;1.2093585;-.1404022;-.1765445;1.44849;1.3336527;-.24903226;.56689763;-.045826975;2.1172647;1.1411227;-.50001752;1.49843;.80640292;-.03830028;-.57427919;.79127723;-.7271136;.78229326;.34838414;.51202214;-.15246676;-.63865429;-3.0485902;-1.2419769;.64475465;1.4506309;-.83591551;.25312972;-.42116854;.17496045;-.75535691;-.071647815;.58265549;.84980458;-.6770308;-.48742542;-.93951654;.98814881;.91956061;-1.0066684;-.29308912;-.30534256;-1.357253;-.069432124;1.0858002;1.9387479;-1.6395293;3.7840083;-.94304931;4.0251207;2.6407506;2.6618083;6.6781588;-.45605659;1.2970053;1.8067442;3.4175601;3.3914168;2.0729935;-.19737923;2.8236711;3.6127729;-3.8712246;-5.0624118;1.1571931;6.2748046;-1.3008463;1.8111253;-1.5025808;-2.1896718;.34002674;1.1043248;1.4327166;-4.3306422;4.2361875;1.0565882;2.4058487;1.8210663;2.8118074;1.1459994;1.2828486;3.8664298;3.6188533;1.4884026;1.1477619;2.9693933;3.6530669;3.3547337;1.1937817;2.1219063;2.4648354;3.1620445;-2.8753669;.64621514;2.9339244;2.4991906;-.37034318;.33489007;-.21766095;2.5990047;1.4983057;-1.6647046;-.34042475;2.8894007;1.8384707;-.93418866;.42532539;.288618;1.3233439;1.378062;-.035757307;.069580592;1.0350872;.31952089;-1.279253;-1.0268821;.54644978;.28826913;-1.3821241;1.1265872;.3533994;-1.1407458;-1.1071831;-3.098563;.72058344;1.2718744;-1.1610075;-.092617296;-.92417639;.49750587;-.79917055;-2.2083406;-.1562871;1.1004086;-.084534779;-.92367214;.35631847;-2.0090563;2.576205;-.35976905;-1.0726354;-1.1152223;.11363303;-.43686858;.16600628;1.5897554;-2.9103999;1.5381079;.57913876;2.3718123;.65240878;1.710018;5.9653921;-1.3467028;2.1195328;.98071271;1.6235002;4.8559718;1.7422357;.37849951;1.0219837;1.4404382;-2.7002387;-4.3657613;1.3897266;7.2006245;-1.4502455;1.7068958;-.15724139;-1.5566428;1.822057;1.387805;-.99786943;-1.3753821;4.6800776;.65280962;.35422143;1.8062588;1.8789181;.1084856;-.48019618;1.8059622;1.6276163;.49022633;.052293718;2.6865523;2.8028481;3.9847598;.74142241;1.2910436;.87727505;2.2578511;-1.55603;.95673776;-.43705094;44.982712 +.27597722;-.81112772;.40323013;1.0374116;.90855247;.022477102;2.0307293;1.2197324;1.1022097;-.80382514;.6613192;-.48278195;-.57301569;-1.251309;-.091122128;.29374477;-.48497289;-1.896862;-.28507397;.81666976;-2.0463531;-.27131841;-.15469864;-.2104615;-.89923096;.85893905;-1.8681825;-1.3024867;.97961855;.87576687;.40859732;-.12971489;1.015227;.47726411;-.87524384;-1.1290021;1.3891416;-.81538546;.99262422;-.46314174;.53479856;.35301176;-.17027047;-.14094964;1.1315603;.48110196;-.45919824;.96177769;-1.0702337;-.27718237;4.0647454;1.9677081;2.1214967;1.8545011;-.061782524;1.5702431;4.4005699;-1.1261942;3.171211;3.5419021;4.2812805;3.3336589;.2558611;1.7587159;1.6976279;1.5455343;2.5627851;3.8407552;4.1565604;1.5661609;-.044021346;2.0031939;3.6111972;.51833814;1.7318102;3.6424217;1.9583915;2.1155865;.22926323;1.6006709;3.7532735;2.881299;7.6478057;.7889123;6.2730436;2.5830898;4.5701423;2.409405;2.0619161;3.6758418;2.8203437;2.9073412;4.2321959;-1.3005311;1.9707682;1.4343474;6.5120153;5.1091871;1.3505949;3.2985442;-.17329024;-.033163395;-.45529908;2.0448821;.5452981;-1.5478811;.3160736;.40958077;.38284191;-2.247695;.52844959;-.27822387;-.21529846;.033490043;-.70299631;-.68012476;-1.1769441;-3.3780475;.23559147;.36777636;-2.2028108;1.4205109;.31738448;.12523027;.71250117;.99948066;-1.8241032;.69357532;1.2412332;-.78903031;-.34619752;-.28420347;1.530696;.40178698;1.2199255;-1.4079016;1.9770679;-.8257376;-.99012756;.050861016;.68818128;-.31464633;-.018809378;-.44346607;2.9815395;-1.2927105;2.0322042;2.4975789;-1.9910346;.94141167;2.2358491;.69904572;2.9331453;2.0724216;1.2014301;3.1568522;1.0914533;-.16603756;2.9680684;2.582212;2.121994;1.7880956;.99874151;1.4853708;2.2022586;-.39404827;2.0034659;1.3960776;2.2912436;1.5139891;.75503254;1.8007437;2.4352753;.67517924;-.37647635;1.039271;2.5620265;2.9437804;.24247789;1.2388445;4.445024;2.2056727;6.7185574;-.21817748;4.7624955;.36158076;3.5688043;1.3405504;1.313547;2.508513;.71596038;.97775304;4.044508;-1.230087;.89967442;1.2727461;4.0902004;3.1340847;.88177198;2.1447737;59.966789 +.063042827;-.70378345;.51066953;-1.0858394;1.2363269;-.074735887;-1.0287857;1.0196095;1.772238;1.0461206;.0038520708;-.090308681;1.2703484;.90969974;-.7774626;-.53261036;.87057537;-1.1641682;-.54333204;.80345017;-.85586643;1.2651892;.930888;1.5131468;-1.0547874;.89912844;-.39926109;-.24047104;-2.1149101;-1.1451782;-.42845032;1.8108863;-.0045548719;-.43458793;-1.2758244;-1.1276782;2.1326663;.39264697;-1.7510264;-1.9685329;-2.3439879;-.10717499;-.34766138;-1.2028635;-2.8193917;-.88323987;-.60548371;.026930232;.024546687;.86528772;-.8563816;2.6952307;3.3151605;1.8320816;3.1415267;2.3352003;2.4812763;2.5983801;-3.0905588;3.5383401;.13834983;3.4918966;2.4051898;2.4398909;1.3123933;1.8999519;5.0139647;-1.1347454;-1.5452516;2.925838;.58635807;2.6031287;2.5547645;-.59315789;.69893998;-2.0904646;4.5843954;2.8312447;5.0874763;4.3228388;-1.0148841;4.6594348;5.6293492;2.4388695;1.5241144;3.0304358;3.6950099;2.9620774;.76814818;4.024519;.24042334;1.2666186;-.53301519;2.0074604;2.7551365;3.3392527;.11345083;1.935349;1.9008298;-.97525156;.28888541;-.10017734;.64067501;.60155231;-.63990003;.042374521;-1.4130627;1.2644656;1.0693424;.63462657;.50070226;.98418999;.44417229;.55625284;-1.3656321;-1.2777914;.71125668;-1.2910246;-3.2299199;1.5050266;-.91516471;2.5813322;-.86622173;-.018764352;-.55073303;.81026226;.060636591;1.2397355;-.8105908;-1.747033;-.65880191;.35201713;.087493382;-1.3898028;-.54267383;-.19046046;3.5833097;1.4793596;-.78653347;-.89436966;-1.4992949;-2.3791554;1.2787977;-.93328613;-1.9381539;-.11726461;-.9065336;-.21588814;-.57450938;1.2240756;-1.9038285;2.8789957;3.6507564;1.082361;4.6119318;-.35857603;1.6511558;1.3942331;-2.7914333;2.0779858;.24101911;2.527473;2.6645951;.81963348;.81362253;1.1846135;2.499402;-.48585567;-1.668362;.1061873;.61779481;2.075387;.40877089;-.20741147;-.60545862;-.28529611;5.4853859;2.2984843;2.5415072;2.5840998;-.25494438;3.1153867;4.6394596;1.1836464;3.7085426;2.5941958;2.4524472;2.2279849;.22323978;3.539645;-.17244908;.84459835;1.0439311;1.7544435;.77597398;1.0942622;.11076251;.081876352;1.0131315;-2.3955252;48.424767 +-2.2804563;1.1427634;-1.373192;-.59449524;-.6988405;.31720605;1.5180205;.91258198;2.2918627;.049211018;.9648971;.36979121;.71850652;-.74120426;1.011428;-.31257233;.57469594;-.49087861;-.44649485;-.74178785;-1.0773531;1.3366077;2.0744703;.70881528;-.29113531;.047465954;.60389793;-.01999907;-2.343379;1.114249;.70169717;-1.3963199;-.0025984687;.94544274;.54757112;-.12611648;.30463827;-1.1812556;-.41713533;1.475136;.58868396;.64209849;-.97454536;-.10604379;-.5841375;1.5423815;1.4437267;-.12946458;.15933326;-.088625669;2.6563981;1.7765419;4.293694;4.6528115;3.0198767;1.4872667;1.2468337;2.8410635;3.6065853;3.7405896;-.88197058;3.6433544;2.1771755;2.933331;.27923214;1.4722639;.4924036;2.0380781;2.231993;-1.2748735;.10762717;2.0671439;3.2628257;1.7546973;2.7198727;5.6905112;.091091871;4.7524137;2.1451142;-.48128548;.43493098;-.76424253;.65567106;.76012784;1.0516995;.021973649;.52372658;4.131093;3.2216108;-.39042869;3.0855892;3.91611;1.9750105;2.702239;5.4254198;1.5504576;1.0872325;1.3255744;.30319342;-.29378781;-1.7956753;.69835883;-1.0275357;-.85866398;.12487756;.81456828;.0068444582;.66344321;3.9845695;-.14936267;1.642112;-1.325593;-.27590841;-.78579825;1.5087495;-.49976432;.80647582;.96124476;.80529046;-.62308729;.5773744;.91948497;.66140151;.61994302;-.96099317;.0055859694;-.3666853;-1.265511;-1.2444041;2.8564727;1.7961788;-1.5737635;1.7440312;.40618774;.22021134;.20818037;1.592648;.26691407;-.70129758;1.8541142;-.78314131;-.22371063;.16765796;-1.2742279;-2.1016576;.85154986;-.64410394;.58414519;.30880329;-1.000731;3.4776933;.8289476;2.9264274;1.7315373;1.9421124;.76456153;.81690359;3.1723709;2.5064478;1.2925898;1.027577;2.8985834;2.9999149;1.5181805;1.0178254;3.285012;.24387416;3.2955806;2.8516033;-.055383679;-.74454874;1.699169;2.1484144;2.4353657;1.5099531;3.5930011;.17581046;2.6675029;.55374426;-.1578539;1.709428;-1.0322382;-.28400496;-.59778929;-.36218479;1.4367944;-.020181416;3.2481637;3.5895438;.44797012;2.0967069;4.9757857;3.0963695;1.19918;3.5843618;-1.0166985;.63199443;-.2943927;-1.062883;-.87684542;51.800842 +-.82054162;2.8341398;.41851494;-.66355056;.36209616;.94461268;.7276876;1.3337896;-.8962214;-1.1421429;.1776778;.49259537;.33879834;-.40763298;-.92812091;.10509908;-.50053537;.7015081;-2.5788672;.14578092;-.75974298;.39700136;.044202287;.21784219;.046951462;-1.0880207;.7027064;2.4145663;1.2583641;-.66475534;-1.2324184;-.24162887;.28124613;-1.7788148;.59827781;-1.0118223;1.4751693;-.55289108;.83196193;.59042925;-.36616975;2.8228698;-.80769283;-1.0424435;-.9702034;-.35993353;-2.7431884;1.1359208;-.26397321;-1.1075838;-3.1955793;1.7869375;2.8710887;1.5738387;1.4664726;1.7417046;6.0636339;2.0884969;5.4161882;1.591693;1.0191039;2.6270971;5.2150836;1.9857495;-.40476781;6.3519988;2.3060567;3.4177399;4.0553322;3.9221823;1.1468501;1.5640427;3.6422174;-.68877888;2.4572237;3.0420303;-.36861971;-.89376771;.95431209;-.90005457;-2.5213635;4.2555075;1.5972445;3.7361727;.24547718;1.5134312;3.047652;.96182257;1.2594619;1.8453786;4.9789996;1.2330781;-.92940885;2.1051903;3.0432243;.85787934;2.7755299;-1.1026844;.56721348;3.0235734;-1.7607576;-.29500246;.11107956;-.91795707;.27831033;.89087921;2.0626142;2.2564085;-2.2363195;-2.1553662;-.809322;-.48567593;1.9011523;-2.2611146;-1.418207;.91023761;.87874478;.97718447;-1.8734789;.026901601;-1.3557491;-.61866021;.013673482;1.7335401;-.13044305;.42835784;.62464434;2.6365933;-.0048319302;-.50626361;-1.6642772;.4287391;-.10332489;-.15315191;1.4042165;-.76892918;.16362453;.7096796;.49498856;.39655194;-.27316549;1.4073967;.53244853;-.64795619;-.35960674;-1.4935719;-2.309458;.75732118;.20007174;-.79201001;-2.9060595;.798908;.65568805;.45607245;2.2130284;1.4051847;5.8285084;1.5079598;4.8521628;1.3969532;1.1404421;3.1555459;3.4549863;1.7546784;.001589463;5.2427077;2.1786499;.83002532;4.6468563;3.2446337;.44041964;1.2939262;.97298372;-.45312962;1.6503929;.46163061;.33622387;-.69204378;-.66170311;-1.844386;-2.1644876;3.6698456;1.520305;3.393713;.82634836;.069908552;3.4659181;.31593814;.75038791;1.3160225;3.5111315;2.5433691;-1.2262726;2.1034257;.2233962;.7289952;2.2944088;-.79967272;-1.0527768;.71786678;45.432617 +.89958441;-.020256231;.33702233;.036305938;-.018740488;.71518821;-.040368367;-.49009848;-.13633259;-.68578786;.40500984;-.26289138;-1.244234;.047520358;-1.7502929;1.3727788;-.67889434;-.42958322;-1.423389;.082312234;.53096181;.76572305;-2.108192;-1.4371344;-1.6160513;-.82996887;-1.4396627;1.6255449;-.0013341382;-1.419413;-.3592664;.097428627;-.19809923;-.64060855;1.2504936;-2.5402462;1.0463164;-2.8515329;-1.1618494;-.00092387211;2.8667438;.63603294;-.59768319;.75785691;.67199779;2.076653;.67250997;2.4543359;1.7154382;.9303655;.019694058;3.6640484;1.3710806;-.27778274;1.0606995;1.3844194;.95348257;1.8232985;-.99249899;4.0478296;5.278419;1.4980687;3.4887273;2.3356249;6.5310612;6.6419916;2.2523286;3.5398469;1.1208503;.60243767;.75771308;2.7896938;-1.5805911;.61359823;2.6182446;1.4773486;.74305809;1.4589415;3.2745039;-2.8659327;1.6640236;-1.0675067;-1.1941315;1.7947508;-1.0407839;5.5618405;1.1553049;.61900854;3.6406639;2.6510241;4.3630328;2.6912963;1.3500986;2.5955937;2.1015759;-1.8680946;4.8899751;1.3355746;3.7067897;5.6457343;.79859591;.00018868163;-2.5820687;-1.6455905;1.2576247;1.2378973;.96655762;-.39680055;.55127621;.31218624;.84307486;.59423107;-2.0971704;-1.0740887;-2.4974201;1.8399005;-.24100067;.71244723;.13456245;1.4013695;2.1264935;-.76436639;-1.2065866;-1.1285203;-.86617619;-.36989772;-.46077573;2.1472645;-1.362332;.6285606;.97097987;-.74365723;-.98485237;1.3158836;-1.1368431;-2.6065068;.85569108;-1.5213356;-1.4778092;-3.0052249;2.0548224;1.3749454;.66561866;1.4799598;.3280704;2.7250273;-.58319277;2.5888097;1.2326097;-.11904421;.94471657;3.5239577;1.5656431;1.8069415;.061836109;2.0735483;-.46840355;.68920219;-1.9897153;2.7488451;3.6281252;1.7133311;3.4078832;.90256172;3.2616603;5.0968151;.50102603;3.5325711;2.4998176;.13401119;1.0434631;3.0963013;-.7527855;-.95489794;2.8538399;.50249428;1.5151168;.6129337;2.2065609;-1.4623672;2.5427265;-1.0069635;-.82977992;.19496192;-.37960345;3.827194;1.4482409;-.69034553;2.5336084;.43921676;3.1349361;-.047023185;1.0465801;.78101414;.97714114;-2.1518526;3.5143037;1.6371704;1.085559;2.6891546;52.009048 +-.092045173;-.21175991;.13854811;1.0330116;1.7884773;.78040582;-1.3987625;-.43580225;1.3376251;.44170439;-.12662487;1.0377893;-.58660185;-.8666265;.29404446;.32001406;-.00098413788;.50660551;1.0616598;.096510187;-1.051128;-1.7097299;-.029991414;1.1617217;-.60981828;-.19058709;.68561012;.16113798;.68340945;-1.3601376;-.020334926;2.3653181;-.77064764;.7284224;-.92210811;.4874095;1.0746535;-.16992505;-1.0779641;-.45039046;.59608191;-.029433034;.30206859;.62736672;1.9580896;-.70636517;-2.7800841;-.77238107;.37190726;1.3718768;1.197047;3.3255281;2.8555295;-.24158128;.73027134;2.0868356;1.2185135;-2.5568166;1.8419057;1.2947773;5.3518796;1.7735922;2.9114864;1.3451411;1.4927104;.84888113;3.1288757;-.86702472;2.9680791;.60347313;-.71944529;-.23507659;-.87028372;-.31096193;1.5381827;-1.8546668;-1.3229827;2.1671138;2.1881189;.74338478;4.1480827;-.78859425;.014309822;.92056513;4.0381317;-1.0447054;1.498804;3.1274176;3.6890531;-.23265164;1.8564919;4.24507;3.627929;2.2258866;3.7796681;3.550977;-.76775414;4.9577861;6.2382221;3.5221522;.1934855;-.51057869;1.2350461;1.0772865;-.49236798;1.1275746;-.29845023;1.6280495;-.12520532;1.6120081;-1.075027;1.8579656;-.75488985;-.50417829;-.88969433;-.38625789;-.42036533;-.35962141;.00087866926;-2.3190656;-.46487376;-1.5978183;.54151499;.74031079;-.21167643;1.9608314;.35318166;-.73373187;.40796876;-2.0199459;1.531945;2.079278;.33482561;.80496651;-1.2713817;.90577495;1.1913222;1.0802265;-1.7180655;.53536236;.17818898;-.02805946;1.383379;2.4049439;.84503406;-1.4129629;-2.0410016;-2.2474005;-.72071463;.83997869;.56198615;1.7945092;2.2419851;-1.444623;-1.2253348;1.8947937;.37216771;-.73539501;1.8835775;1.3048275;3.4368074;-.11263125;1.9462798;.22311029;1.7910471;.017969402;1.7229925;-.55637103;2.8837459;-.38974664;-2.032819;-.92782652;-.82405359;-1.0477442;-.57415277;-.043024525;.73600972;.97261852;1.843483;-.56918693;3.4549205;-1.4027377;-.70865071;.38344726;2.92066;-.81376904;2.5834727;1.755197;1.3512201;.34170631;1.5360069;1.0331706;2.4719455;1.5907362;3.2252097;1.988216;-.34605306;2.8715365;3.6328499;3.5997565;44.463394 +-.17569683;-.20172432;-.056123581;.83255488;1.199528;.7265234;-1.9524848;-1.5804739;-.69179541;.80642766;.48686764;-2.4787281;.3961598;.95415193;.62091339;-1.2137339;1.100171;-.29603228;1.0131919;.6333313;-.78146845;-.70527154;.90478343;.41727251;-1.1324388;-.8874836;-1.0669123;-1.8115598;-1.0250013;1.1954038;-1.6705002;-1.493546;2.1054265;-.38192716;-.41731709;1.8296804;-.70636886;1.5752726;.51419991;1.6488967;-.28887165;-1.1855583;-1.3533208;-1.2938188;-.67050642;1.0710434;.34859526;-.76114327;.53806049;-2.2221744;.56397504;2.9334347;3.6185281;3.0423782;2.8882163;3.0440676;4.8827271;-2.0696311;.74368221;3.239187;.20763859;3.082381;4.7465911;2.4265866;3.4965286;.19694254;4.4289212;.9458549;4.9218531;1.3807513;-.41203693;4.8859138;3.5512807;3.6234334;2.4374835;2.5383089;2.8202722;3.3614597;-.60132718;2.0484984;1.3375859;3.61045;3.7525783;1.2733682;.83969378;2.9514329;-1.5477144;5.5737062;.88254356;-2.5389001;-.52846438;5.005085;1.8577549;4.6017556;.54430401;-.78265315;-.55027324;2.8921907;1.4569072;3.0332174;-.78908855;.26178685;-.080288805;2.9958267;1.7528343;.43830436;-2.3803985;-.42498973;-1.7722937;.40319481;.80274028;-.22376294;1.051235;1.0350152;2.1759274;.42685774;1.090714;-.56069136;1.5230634;.61449403;-.94111007;-1.5970683;1.1416968;-.58541292;.55729586;-1.175867;-.45546848;-.7872833;-1.1973592;1.5703233;-1.1482617;-.38946813;2.7868347;1.6321149;.15386759;2.7052448;-1.1867734;1.9035077;-.66370285;.90149379;-2.0062962;-2.1960599;-.55447692;.51611865;.50027484;.9485302;.1785527;.59024817;1.248415;-.25007179;-.53913659;1.5083009;2.6859064;-.22994423;1.8846488;2.825376;3.7097683;-1.4113314;1.3015218;1.1137201;.51277936;.34124348;3.1616912;1.0185568;1.3562869;-.24346212;.98071223;1.5780457;4.0656614;.65784276;-1.1483525;2.8477824;1.9621058;.57705247;1.6221848;1.5082791;2.5104873;2.0156147;-1.8130778;2.0854211;.83406305;2.8446057;.63417941;.62753749;.48339859;1.9124272;.51504719;5.0753231;-.33405155;-1.5935502;.14275223;3.447938;.4167136;3.1406126;.44206139;-2.0702393;-.68689048;2.8879349;2.3148093;2.9682963;44.092358 +-1.7360183;1.2545633;1.9561247;.10006315;1.1498669;-.94607776;.49359113;.15718818;-.4029592;-1.8043436;-1.0617975;-.71651459;1.2127542;1.9841479;.7709229;-.71239883;.22647336;.0086274669;1.5168386;1.1464785;1.2749549;-.12774675;-.40397501;.90254414;1.1944288;-.91058952;-.66884226;-.81976026;.39870092;-1.2888402;.23789756;-.097445704;-.7295571;-1.595636;-.035620935;-.90079349;1.0567652;-.15151672;-1.1000668;-1.2701454;-.49892136;-.65126002;-1.5847491;-.54693294;.37463504;.53998744;1.0428411;-.60527706;.07273867;.55131251;1.6105663;2.5610297;3.7144239;1.1529504;1.5355273;3.1765623;-.359864;.29810292;7.1667566;.4312813;1.7122114;1.2085652;5.7370577;2.6858766;5.0967388;3.6113791;2.0194066;2.9848931;3.3044188;5.2458711;-.18962796;.72551864;4.1820936;5.0280132;1.0804762;.38461375;1.5868837;1.5437226;-.26073414;.30890578;2.3039601;.73917526;-1.7094296;4.1864028;2.8558097;-.37602538;-1.1132469;1.9085703;2.0321;4.3682384;1.0200994;.89231354;.058144476;1.7258234;6.1079497;2.1520925;4.6102877;1.1781654;1.8272364;3.0345654;-.97212732;-.17470291;-.79520798;-.17946599;2.9157624;-.33404025;1.2101709;.015473417;-.91881394;-1.6104691;-1.2414348;1.0354384;1.9683195;.14572255;.1222647;-.58552963;-.24292994;-.99142516;.29629222;1.6117686;-.21753894;-1.1542938;.5702765;-.84194994;1.1090728;-1.6525855;.328015;.46432754;-.58326203;-.45093405;-.72739327;.59467983;-.53380603;-.84633094;-1.4542001;-.36672935;.92298377;-.49879563;-1.1115445;.35929465;-1.5503287;-.75163281;-1.9352549;.17416698;.71450073;-.42459515;1.1750441;.37774825;.55692124;.72866845;1.5882614;.47364783;3.6046193;-.52658987;1.0967708;1.1841236;-.63294494;1.7891308;4.6112061;.44492903;.53305125;1.0187333;5.8492455;1.2314636;2.0866747;2.1321075;3.3710895;1.9740955;3.1373885;3.7530289;.44971415;1.0411581;1.5798547;1.4929683;.26704362;.065689661;1.7350481;1.068897;-.22123307;.18720162;1.473357;1.2527727;-2.6041884;1.6321454;2.1347454;.25396046;-.23493095;1.6860914;.29402763;3.2569518;-.38131291;-2.0245233;-1.0062066;1.1235609;4.2881136;.93179512;2.4486904;1.3341749;1.0835695;1.6256117;50.231468 +.65983158;-1.5071485;-1.2889916;.30663097;-2.6418083;.42203006;-1.200047;-1.8292346;.8046006;-1.0449957;-.55609465;-1.7073786;.48624301;1.0472527;-1.2482888;-.060406078;-1.4959618;.86410862;.20952599;-.7659933;1.0841435;-.33939525;-1.5908629;-1.8903769;.14673357;-1.5551727;1.6245152;-.68166834;-.13286409;-.085519582;-.32955253;.69482112;-.61739975;1.2956867;1.7403539;-.81514031;.34989128;-.79514939;1.2438785;.66114753;1.2129028;.45470327;1.4594493;1.4078864;.99237096;.56831324;.086269282;-1.5455189;-.98587948;-1.1973817;2.3416612;-3.2515285;.052089807;3.6498775;3.8724592;3.1975431;4.4336128;.73481643;2.4337378;-.90609574;2.5781713;.59017867;1.2990874;6.1670232;1.8694446;5.4306483;.31909853;5.4582;3.1673586;4.2535129;-.13900743;.97418487;2.8121676;-.57386553;3.9802523;2.6607583;1.1824464;-.69640082;.24107333;2.223341;2.7642417;-1.9111698;3.579313;2.2381461;-1.0733325;2.2592421;5.6029201;2.1315103;2.7900918;3.0213773;.46949255;2.0118818;1.2456402;3.3280768;3.8227849;-.011040258;4.5106578;2.8889675;1.7174654;1.5284635;1.0752453;.16113535;.20350768;-.10307148;-2.6811662;.67424774;.81366712;-1.6537557;.47432798;-1.0234041;.65050876;-1.6857318;.39411268;.28961429;-7.8434732e-06;-.11669132;-1.8407148;1.1134235;2.8116164;-.61305046;.97032422;.014877904;-.6835655;-.39389372;.99668163;-1.4389269;.39581218;-1.1526668;.52031785;.36795777;-.28986433;-.58812225;-.83644819;2.1416759;1.0783989;-.47070739;-.5320968;-.79885232;.70363939;-1.824229;-.29423779;-.72847629;1.1421732;.35552159;1.6984959;.17560181;-.93671298;.49043867;.44736674;-.12534499;1.9832504;-1.7762892;-.78795719;2.4671197;2.297785;2.5052352;1.9001848;1.8342505;2.6582377;.69057947;-.88789952;-.28624126;2.109874;4.015646;.87051159;4.9170094;1.1253885;3.6633067;2.5708442;2.2541552;-.18268387;2.3284945;.0073164837;-.95842493;1.0620186;1.888968;-.029959671;.064005204;1.1025093;.35664579;1.2330034;-1.8421255;2.7981176;2.4076154;1.5962228;2.5898914;4.6767554;.89837402;2.0251443;3.058681;1.174425;.63981164;.65889686;3.9141018;2.6794989;-.23853821;3.1489735;3.7312191;.38674331;1.375988;47.556316 +2.7189405;-1.3859285;-.14384057;-1.5294774;.65842301;.33993995;1.2149721;.05369556;-.99275428;-1.4345003;-.80137485;.45542869;-.38336796;.35449511;.77320236;-.25431886;.13184531;-.070775196;-.074247003;-1.6133144;.63636202;.56822175;.60785222;-.93755686;.94623131;1.5398774;-.073562138;.83718431;-1.3749787;-.2914606;-1.7325131;-.239666;-.065704718;-1.1063737;2.2772567;-1.223004;.78552914;-.32827955;-1.2308336;-.82251269;.56328803;.62450421;.57315296;-.84141922;-.64171195;-.10331981;-.54435104;.60361975;.052003309;-.28406459;3.1234035;4.7049651;1.776297;2.0329244;1.0200088;2.5378411;1.5901818;6.2947459;2.6664758;5.0566721;.87815529;-1.6734955;6.1390314;4.0714188;3.5568502;.44761646;3.1902981;-.21043046;-.86413854;.56724721;1.0221936;2.1217697;3.843574;2.7415833;3.2609074;1.373076;1.1737286;1.9599613;-.71963;2.2010219;3.0235376;3.1462004;3.6690018;2.8680649;5.4678669;.52211344;.77928585;-1.7745292;-.24870102;-.40903565;2.4232912;3.434113;1.1937311;1.716211;.58006871;2.8476453;.36124229;1.9366291;3.9639735;-.66133338;3.0364993;.5252775;-.72880077;-1.8523977;.6237635;-1.2717077;.91223621;.44843918;-1.4630591;-1.1727146;.0548096;1.0722513;-1.7346672;1.0733176;1.5102544;-.59501779;1.3637792;1.2083884;.53828263;-2.6558259;2.1236675;2.3276246;-.80939543;-1.8026596;.34573922;2.7456732;.55513793;.025048777;.0043628458;-1.1944627;-.37715071;-1.1825728;.46179548;-1.1783808;2.076283;.47604337;1.7570713;1.2497624;-2.3546352;-.46076664;.71727955;-.28885487;.50097531;-.3886717;-.61854261;.85576719;-.27788049;.79474813;1.0005851;-.58426917;2.7198474;3.6970687;.8490932;1.3641372;.41364574;3.1125662;.82982689;4.3011479;1.382987;2.5359828;.26830518;-1.525152;5.3475881;2.6843603;2.1582165;1.9820163;.69129676;.40975606;-2.0111542;-.2725713;.59274423;.95545512;3.8816555;-.25385928;1.8610157;2.4822323;1.1066457;-.48513606;.27285054;1.8555104;1.8160461;3.1904886;3.668294;3.0934458;4.9384217;1.2032166;-1.7862258;-2.331229;1.3685516;.10575306;1.7362086;3.1487825;1.8538829;1.863253;.91416699;.58609849;1.5440314;.12490976;2.7296824;-2.6529119;44.672161 +1.4486544;-1.974036;-.59726644;-.26864153;-1.3776119;.59548098;1.6628505;.46721205;-.54514396;-1.0146468;.91510957;.88627726;-1.7498848;-.79340738;-.13027927;-2.0050769;-.41329908;1.5740049;-1.2790947;-.40004241;-1.2069291;.7428664;-.38151556;.77116704;-.98790306;-.88072747;-.56349438;.071862571;-.55672342;-.063550323;.57998461;.15337799;.16449139;1.4297493;.022067741;-1.0852481;.93610233;1.4356303;-1.1652058;-.044081077;1.2654532;1.5513436;-.27214414;.43896821;1.1107883;.88701588;-1.0258187;-.88787025;.86946654;.88547194;3.2755773;2.1884882;.2037406;-1.549255;1.7132919;2.0178955;1.1513703;-.0021189936;1.3323359;3.6945331;2.479902;.21675883;.74093133;1.8348131;2.6296227;.71062547;-.045118019;1.4100239;.0032230308;6.2318606;2.0081589;1.6367497;.59637111;1.5564058;-2.2886543;4.3453064;2.9426622;1.4190971;3.3868639;.26471543;1.1400695;1.5492786;2.1360531;-.2494892;4.4478216;4.6429849;.76074088;2.7746599;1.5213046;-.03912526;2.0045419;1.6850754;2.138607;2.8690209;4.8828568;.12185516;2.8044534;-.17674957;1.8201771;5.9411135;.060415398;-1.275866;.13128079;.96647471;-2.4183838;3.4022794;1.163015;2.0192261;2.5460472;-1.0215017;-1.2577438;.51229715;-1.1314293;-2.6398818;.39966345;.58608466;.043566003;.52359682;-1.9611038;.59850496;1.2695765;2.361429;-1.3678094;1.7517878;-.32327673;.018455146;.66192251;-1.4181912;.091853559;-.23006372;.94638258;-1.5921354;-.50519705;2.8933792;-.99301809;-1.0221586;1.6959113;1.7085886;-1.2398888;-.16431791;.024733201;3.058712;-2.4140399;1.0594586;1.603245;2.4051256;.3340624;-1.0488689;-.27338013;1.2833902;1.1133274;2.9088693;-1.0817949;.2385143;-1.0891484;1.7951545;1.8132684;-1.0335052;.99077755;3.6550899;2.0746748;-1.4301003;-.10519975;1.6927973;-.14519866;-.90112919;1.1472315;2.5296333;-.47513339;4.5698824;-.068959951;.15996781;.80663097;-.23978658;-.5107522;3.4551892;1.9259856;1.452203;3.1129026;.60492975;1.2413529;2.840625;1.4586581;.44419891;2.8888571;3.829318;-.45308366;2.0557265;1.1448843;-.029238533;1.4133523;.053108461;1.7099591;2.9391897;3.7089412;.83156103;2.0653231;.31016919;-.33124524;3.3287849;41.061218 +-.54692924;.18118353;-1.7108349;-.94828516;2.0958931;-.075108111;-.40105918;-.42617387;1.2266761;-1.2992203;-.60299939;.5339644;.58608902;.37541595;-1.3088419;.89896017;-1.034158;.095228493;-1.3145812;.056460377;-.076014198;-.0026888207;-1.5872778;.74645877;.095897116;-.94966906;.48504817;-.21319731;.67692894;-2.0790823;.84998566;-.4279165;-1.1637888;-.61882204;1.2337142;.71875209;-1.1919206;.83049607;-1.1224068;.63182986;.67422056;.41210449;-.5436582;-.68167651;.85728806;-.95145404;-1.0077484;-2.8139544;-1.2003803;.042490989;-.44835892;1.317318;.7653113;2.6258698;4.8738151;1.5990435;-.094220877;3.083209;2.3371856;1.6718936;.18335244;2.3783514;.36167756;.17852506;5.405591;1.8038492;.22815453;2.1819789;1.3411403;-3.7808778;2.9118862;1.2176545;1.7911536;2.0399134;4.6656384;3.4049397;3.2485392;3.2814202;4.0966358;3.0745764;5.1526198;4.6380181;-.29592904;1.2476915;-.33111537;2.1836822;4.1113815;.53937984;-1.3335073;3.604367;-1.8022281;.23731385;3.2182853;2.5251722;3.6429806;.76037043;2.1497793;1.1885005;1.3124018;4.3207855;-.45203808;.012375284;.34350798;-.66113549;3.1035569;1.2806886;-1.2207406;1.41467;.030210504;-2.1594164;-.15087108;-1.7539608;-.25059912;1.3865209;-1.6872798;2.75316;-1.697229;1.0005174;-2.050308;.68655699;.096060276;.33652818;-1.5933677;1.0254227;1.1494075;-.12109644;.99765497;1.2364023;.47127569;-1.7276937;.080120243;-.69377065;-.67088836;-.33975902;2.8206675;-.76845783;-1.6150365;-.21022777;-2.107511;-1.2406368;.86672211;-.68408036;.79923576;-.94767183;1.1041493;-1.0991337;-.85330009;-4.7923841;-1.7191474;.79558361;-.49046844;.40126809;-.79811895;1.2663534;3.5931065;-.009192274;.089882903;2.5298834;.44277042;.81214863;-1.1928068;2.7820992;.97297645;-.29260823;3.6844008;1.1894717;-.87289971;.3509647;2.0821314;-2.0983469;1.3604245;1.6628855;.77431607;.55267179;4.5517411;2.6309037;1.8310192;3.3268738;3.0756762;2.7483463;4.1550565;1.4056892;-.013900626;.79422122;-.46168244;3.3507066;1.5829054;-.35220245;-1.8323559;4.2240334;-2.1282716;-1.4892467;1.9029156;-.71501523;1.245482;1.8648455;.64837784;1.7315378;2.2262864;1.1090733;42.671238 +-.27660051;.41662598;-.68524987;.56184989;-1.1002233;1.7543484;-.25131342;-.91019428;-1.3159879;-.17043944;.47795001;-.15213245;-.19300723;-.76921606;.42846656;-.05150336;-.75439459;-.41304162;.66250151;-.7378509;-.091324367;-1.6339583;.087596297;-.1612023;1.4219563;-.10973287;.46248549;-.24543813;-.96704328;.33963871;-.79259849;-.44946802;-1.4179825;.26532832;.74787235;.26662526;.34146196;.37914082;-.92293227;.72840309;2.1998017;.32933864;.16077425;-.12576737;-.11051116;-.44607353;1.0781329;.93380469;1.3697546;.06588804;3.339184;3.0074656;1.2212298;1.7879593;.64654827;1.7903978;6.4739456;5.632946;1.0972908;1.6568774;2.6841061;1.9462998;4.9030123;3.6620581;.044499531;.94226408;-.010583351;3.1045706;3.6988263;3.7817378;5.9003997;-.76304215;.53798652;-.41490605;7.833333;1.5052931;1.9796038;3.5324912;-2.3890498;4.10888;-.28994763;2.9402151;.14909177;3.6809974;2.9439893;3.838057;6.6354074;3.7566929;2.3750346;-.52573037;-2.5773931;.64908051;2.6267362;.7906608;.56495911;2.9165885;2.6101012;3.5153584;4.7352552;3.753839;.14102444;1.1910883;-.61536247;-.28786194;-.44953069;2.2963891;-.53625393;.34180772;.95879143;-.70756561;-.043513153;-.11287878;.79899502;-.92841786;-.022960845;-1.0224209;-.96554953;-.82820266;.43797475;-1.0138618;-2.7769074;-.25754073;.99716491;-.41078517;-.80971676;.32751226;1.0355579;-.12352681;-1.4495426;.57188648;.36820847;-.051626563;-1.0958896;-.088950999;-.4923493;-.074216418;-.17574027;-.36049861;-.92649555;.37323961;1.864326;.029963432;-.48933673;-1.9240882;-.67129314;-.53735119;1.3207358;-2.5730858;-.8586219;-1.1160491;3.2663848;3.0396392;1.1251717;.38153881;-.26650265;-.019622795;3.9988153;3.7563062;1.6050515;.99175161;.83253622;1.5609757;3.980361;1.8268385;.42595637;2.4850399;-1.1799819;2.6511278;.82055968;2.53355;3.1742654;-1.4540776;-2.2276635;-.16417524;5.3170147;1.3200214;2.7055957;2.1571629;-1.7991428;3.236402;-1.2523626;2.9586747;-1.8399787;1.8952661;2.0637836;2.8377874;5.0008936;4.0660086;.85075063;.027940506;-2.260994;.15167831;2.5748119;2.3290906;.32542869;1.2881076;2.3194947;2.0424452;3.8161769;2.8348131;58.943398 +.46103394;-1.527418;-.64632189;.12518407;1.0373749;1.0418268;1.5159819;.18470228;-.014315066;.23703451;-1.0486346;.20960066;-.1139186;-.47545728;-1.2691929;-.91206598;1.1226225;.028930316;1.9874982;-1.4572775;.57225138;.077862419;.27324432;-1.1348039;.017327504;-.84692776;.59741473;.20126188;-.39833394;.082873002;.42611232;1.7199062;-.77009094;-2.3653684;.021368356;-.39593089;-1.2937042;1.2963555;-.32503268;.086106628;.55395299;.1080643;.028850904;.47834793;-.35706201;.16196221;-.36690539;.35651058;-1.2427602;-.13007537;1.407962;4.0596175;.15109107;3.0024381;3.6242425;.50648195;3.6272144;3.4521325;1.2636747;-.032889307;2.5008273;1.7272515;1.2610632;5.2172885;1.9315555;-.43597886;3.5443327;6.0841675;1.1752506;4.0402775;-.81352001;2.8559813;4.1240897;3.9172628;2.981184;.077366836;7.5120616;-2.6859655;1.6372966;2.5884027;3.6053088;2.1413214;2.3358717;2.663064;2.3642356;-.2866677;-.52023715;1.0926284;3.6248398;1.5853738;4.6621447;3.9768188;1.3806789;2.9312191;1.5105186;3.1508076;4.3784504;1.4565885;1.3853875;3.7513306;.67048174;-1.1953565;-.36766532;.71304053;1.200022;.96704745;.096268766;.49703524;-.57765901;.072470136;-.45859113;2.6769407;-.90965748;-.25825185;-.3339459;-.5009402;-.2331192;.69215721;-.2053339;-.82557869;.99334008;.29759175;-1.3647867;-1.94174;.057608679;1.6398815;-.30736694;-1.2602261;-.74498129;-.44998071;-1.0377052;.54197639;-1.1399161;-.91129631;-.86550117;-.94286489;-.42931986;1.812932;-1.7648931;-.55868512;-.048174053;-2.0515163;-.20965861;.17626797;-.60252905;-.57152432;1.9069563;-.36484814;.20290379;.65778923;1.9577299;3.7430191;.70858669;2.6655657;.48459077;-1.4484494;3.652112;2.9023688;2.0277627;-.79025346;1.2034436;2.1248136;.69683921;3.1391747;1.1443044;-.66417974;3.9654338;4.57054;1.3269639;2.0688615;-.56567031;2.051749;2.4324429;4.0551209;3.1104736;-1.8870596;4.5916109;-.81660104;-.29691711;1.1733353;3.114594;2.2378902;2.3982198;1.074519;1.5075548;.15244788;-.04749985;1.3462678;2.6428993;2.2497499;3.6699932;4.2007685;2.291662;.5257169;1.906276;.50266039;3.2376552;2.2964435;1.0124854;4.7763357;62.525578 +-.016169958;-.40753978;1.7651321;.87318474;.38154149;-.80146009;-.70930117;.18768612;.25145391;-1.8762052;-.95859748;.81284213;1.9350228;-.13603763;-3.0601261;1.8444103;-.20741987;.21627527;-1.048324;-.15759051;-.30959651;1.2122118;-.38985944;.71323472;-.83626795;-.94678795;1.1241544;1.0770293;.21256799;-.20404482;.73323745;-1.4987129;.58625835;.40763864;.45038494;-1.3173703;-.53936851;.26882872;.95762742;1.4126831;-.4064104;.041216765;.90420884;.87731564;.79088646;-.54853618;.16993183;-1.0219946;1.3882408;-1.2372118;3.3939281;2.2803781;1.5654565;1.3334979;1.4061613;1.7815915;3.2865276;.92974865;1.7195772;-.67606837;2.5375199;2.4576116;3.1858959;5.5152421;2.7754261;2.8970938;7.2493892;7.0179777;-1.6287514;2.601583;1.2237266;.17174001;1.2588614;.25647175;1.8254675;1.3561664;3.6291974;3.1153173;1.8193409;2.6850922;.57383406;.84687841;1.6129787;2.3170183;3.3299189;-.024637055;-2.3501921;3.0718553;-1.8879391;.18960357;6.3212094;4.6002383;1.3042431;5.232964;.80310094;.01492338;-.81031102;3.2081692;1.4816928;2.3553679;-.36150739;-.23905547;1.0723308;.54159462;.88218063;-1.4383426;-2.5861855;-.73405766;2.0277009;-2.1619058;.36681199;-.62079412;2.9502773;-1.2944032;-2.1428044;-.057148729;-.48083267;.05380097;.15042737;-1.1145581;.33826056;2.0474138;1.3848962;1.223449;-1.7808127;-.11494814;1.1846404;.1054737;-.43174952;-1.0753598;-.72825885;.61094993;-.12739544;.25389612;-.85577178;-.72254789;.52684075;1.9909792;.96594524;.34532347;.10733416;.0032747488;1.2817531;.87168598;-.06837599;-.92425174;-.23664378;-.3907997;-.26041976;-1.1637036;3.2502406;3.4728708;-.11683002;2.987921;.61726081;4.1779299;2.9083958;.35463119;3.0063441;2.3903158;2.9429405;2.1250482;.69432735;3.654532;.39836049;4.0001101;5.5532804;6.0463252;.2921547;.65595901;-.57850766;.33206117;1.6745667;.5441618;2.0941606;2.6269407;1.8961478;3.7022569;1.593439;1.1085526;.42434204;.22590159;1.5988566;1.3740125;2.729239;-.09898217;-2.0583096;1.8858514;-1.5012132;1.6821123;5.2780905;3.1050963;1.2388667;3.313215;1.6855888;.19099928;-1.0009181;2.1458414;-.72606462;.25644043;49.434593 +-.25634822;-.047719952;.21360551;-.23160233;-1.122301;.42804551;.22270715;1.9325041;.33273947;1.1777774;-.11468148;1.4958593;1.0343665;.60576719;-1.0344125;-1.1590751;.12230615;.62282544;-.75784141;1.0126171;.010895843;-.48130736;.36672136;1.0548294;-.37804928;-.58675367;.02957302;.45956692;.69991189;-1.149809;-.083847702;1.6637278;-.74903125;-.36788061;1.3191767;-.088039629;-1.0867798;-1.750739;2.7828074;-.20485729;.52972859;.38323298;1.9264876;-.18386678;-2.0559146;.038533825;.70184702;.92175514;-.92895335;.61552769;2.4343743;4.8673754;.33448589;3.7624507;.94224608;5.5510173;3.6149697;1.4527853;3.9541562;4.9530263;2.7775376;2.2825384;-.65814215;3.2987537;2.0804489;6.2185984;4.3818536;.33925125;1.9627094;5.3497481;-.19175041;2.5104685;1.9372268;3.4960237;-.22313637;2.2814538;-.8048318;2.0273502;.93834478;1.2833303;1.8876991;2.1686685;-.075739495;2.0140581;1.7707148;2.8633287;.51254451;-1.9548348;3.8667226;5.0284672;4.8093591;-.11906347;3.4486401;1.4186153;.44243079;.85967726;-.28770414;.58173478;.052752186;.10233068;.58684373;-.17860818;.68868536;.23056729;-.32500023;1.5272232;.42077783;1.5836771;-1.2227035;1.3013253;1.2329538;.89453989;1.2599815;-.55985951;-1.2396125;-1.1467314;.24529637;.37838116;-.63174462;1.4928315;.47512695;1.0372473;-.25420892;1.3703396;-.78755146;-.2471939;.10361814;-.1291732;1.6223177;-2.378674;-.73591715;.78236085;-.69191772;-1.1938454;2.120506;.51212728;.91414404;-.58481956;3.7183533;-.68795902;1.2193199;-.56549025;1.0305171;-.58758438;-1.6564456;.021861391;.93036747;.76051623;-2.067591;.52850646;1.2937344;4.2554483;.15322107;2.7843227;1.0136012;2.513875;.99322057;.31571013;3.508914;4.5274386;.47219253;1.8732158;-1.3493068;1.9213299;1.9375589;3.5032976;2.1995604;1.0856571;.59301251;5.1022372;.062316544;-.49100223;1.5447254;2.0442717;-.84349221;1.4709824;-1.8886554;1.0724715;-.6544767;1.9722012;1.1215707;.90708107;.37522408;3.0435264;.76909751;2.0288155;-2.3928068;-.47396642;2.5017891;3.1010962;2.4947259;.40491611;.9298991;-.54922187;.67578256;.24145152;.95608985;-.99608845;.47942099;-2.4050546;53.84919 +-.73689413;.67041016;-.19260386;.92965853;.28137994;-.93361342;-1.1146892;1.4339138;-2.3875539;2.4342799;1.4566838;.034153514;1.8866171;-.015896214;-.22291967;.16017252;-1.0992886;.14056587;.39227015;-.56222975;1.1256763;-.32565203;-.47839788;-1.1586417;-.19877118;-.65085518;-1.2808259;1.6435322;1.5333347;1.3572446;-1.1472651;-.84144348;-.18928464;-.91435063;-.26669276;.16512078;.0510053;-.30607155;.59610027;-.024203235;.81877607;.57100272;.3394309;.8516885;1.5163471;.64328969;-1.0199862;-.31411442;.21595436;-.4924556;.64530122;2.9851916;-1.094059;-2.1442952;.77946734;2.9310541;5.2273693;4.584578;1.4596906;3.9971428;4.9874568;-1.0825844;1.3720893;3.5099921;1.4216596;.46517673;2.3179309;1.3927283;2.5237784;2.2262344;4.2971478;2.2856259;1.0540909;-.62161762;4.4661078;1.9042646;-1.8104689;.15534627;-1.5958457;4.159699;.71955556;-.41791907;1.1696305;2.1457362;-.1492728;2.6921158;1.1388557;-.88891613;5.2385211;2.8930113;2.2555618;2.635637;1.4394345;2.0052562;-.330437;.7060225;1.3739902;4.0156283;-.17937292;.32395425;.17966297;.19522914;-1.077234;1.087288;1.2000607;-.6402421;.21254113;2.0720685;-1.7369368;1.0969446;1.8355998;.78866798;1.0132598;-.80469722;.38959742;1.0607806;-.22513248;.086661778;.67583203;-2.0256495;.10648204;1.3709193;-1.8678048;.79543847;-.74239689;-1.1440189;-1.4234465;.93692195;1.3508061;-.33849284;-2.7936294;-.3787562;-.94715816;-1.5501318;-1.3830721;.096387215;-2.2632186;-.84095687;-.013570077;.13217667;.63847339;-.60040921;-.11217013;.53090525;1.1613615;.26728868;-.89951509;.19638658;.15500529;.15922503;.11718523;3.9300463;.52875185;-.40585521;.97334224;3.394331;1.5703205;2.349968;-.26305467;1.5323946;2.1186454;-.31840959;-.19600515;1.2803415;.95976341;.16498317;4.0074964;.2391672;2.5125535;3.4976125;2.2496078;.76402473;.66116536;-.77591556;2.6265736;1.847331;-2.1872773;.80877751;-1.2337035;4.4062157;1.7224008;.75610518;1.3275731;1.0072286;1.0168244;3.1286407;1.4984127;.67381299;2.8150427;3.1645484;.20719203;1.0812525;.21715109;1.4935881;.10774264;-.53943825;-.71000582;3.5298183;-1.3956614;.071917295;42.715488 +1.5223677;.035744987;-.85555005;.40272579;-1.1700904;.3848995;.4357059;1.0775065;1.552726;-.64033085;-1.6371846;-1.4402361;1.5378928;-.75419903;1.736418;.55767882;-.13351645;-.030110281;.054912288;-1.3276912;-.038117647;-.85691255;-.66699445;.77976203;-.13169746;.48105708;-1.6181228;1.0758317;1.7956448;-.61760843;-.063128352;-.0642116;.58638668;-.73126662;1.0111673;1.2901075;-1.7885071;-.80867577;.79517144;2.6746216;-.63433874;.21019202;.072486877;.69143248;1.0895671;.58914369;.57717419;1.2525651;1.3712946;.96188301;-1.2180228;5.3232794;1.303285;.36781046;3.1728132;1.4079771;1.5090061;2.0993905;5.2119126;-.29997522;.93682539;1.1256214;4.2380013;1.8626785;-1.0458902;.54740173;2.6461394;.82331288;-1.0505461;.32039455;4.4820852;.58029056;2.9882951;2.3734891;.60196495;6.4223723;.49590236;2.4828622;1.9034121;1.754329;2.9373755;.31479028;1.1255782;2.7142406;1.4432521;-.6584745;.2637915;1.4000937;2.4318852;-.52257341;1.2780182;4.684691;4.7428784;-4.9837313;-1.8801982;1.5882127;.3597292;2.6889706;1.8626032;.17515674;1.2217134;1.87949;-.1191052;1.4393553;.26804402;.15156166;1.7977283;.88528162;3.2128906;-.34815925;.27931249;-1.1456409;.90875387;-.26380384;.84014481;-.50203675;-.12640153;.12262358;-.18419673;-1.8511698;.64742917;.70279121;.21004482;.54161227;.42297536;1.053309;-1.5859085;2.8757553;3.5428364;-1.7109374;-.23244666;1.5166111;.43655121;-2.3864183;1.3750824;-.51961744;-1.4867566;-1.5530519;.25591812;1.6956739;-.82444555;.5780986;-.077492252;.17615853;2.5198562;2.2217631;.5768857;.32918;.78775728;1.638302;-1.1265752;2.9756989;3.5740049;.094609976;.93711913;.48304015;-.10206833;-.48959193;2.6763794;.18457206;1.6350306;.58116961;1.7591969;1.7390343;-1.4257662;.64211148;1.5360608;1.0447026;.20364921;.053320322;4.3171887;.3969619;3.3616877;3.1531074;.46883318;4.8737397;.030713417;-.12114146;.53800118;1.9920406;2.3609512;.48615056;.66584289;2.3849115;.41341907;-.58831912;.13984074;.77529889;1.6373031;-.15703161;.33040851;2.2843122;3.9835424;-4.9673724;-2.0205145;-2.2636032;2.665045;.98494816;.24761409;.18974002;42.536484 +1.0721393;.081140101;-1.5252514;-1.0643361;.053801786;.026448352;-.12962903;-.60125703;-1.3419298;.70439231;.78998762;1.03236;-2.0050061;.92205971;1.9860559;.41065443;-.35651323;.53197902;.63720101;-1.0615519;-.023793187;-.78123927;.22451027;-1.0352873;-.013462228;-1.2880119;1.1429666;1.6768789;.76680982;-.84471804;-.31220275;1.1429821;1.7142477;1.0361265;-.10134938;-1.7393069;.85895771;-1.2407148;-1.2393585;.23319514;-.36595798;1.7402763;1.0029496;.10541352;.4201535;.01632423;.49715415;.9212507;1.4421917;-.70824367;2.4494419;3.5388069;2.2689695;3.3865588;3.7272182;2.6215632;-.89186257;3.9479358;2.5930774;4.6975613;3.2529573;3.3980656;2.8687222;1.2416691;.15332781;2.9883082;.37760609;2.4095752;-3.6391799;.90266144;.63477325;2.2532461;1.3596743;3.7223921;.8658219;3.2594531;1.5595026;4.7981806;-.874843;4.827179;1.6969129;6.0722198;1.0811081;.1932943;1.1270944;2.0502088;1.9182241;.32662454;4.2082467;1.3042995;3.3285251;.67378002;1.8605546;2.3239245;4.3089466;-1.4294927;-.12354456;4.3786659;3.4919007;.30957851;-.98350847;-1.4217144;-.6233148;-.32639599;-1.3752722;2.1294436;.33474404;-.8117615;.68656701;.30660173;.45907179;-1.2913685;-3.7425578;-1.1228795;1.4933605;-.81432223;1.1495845;1.3593346;-1.5553925;-.45616141;-.55405897;-.15114714;-.51739496;-1.3040119;-1.2111849;-.68616223;1.1281408;.90619886;-.86587;-.40324268;-1.4538784;.90622032;1.1836835;2.7580917;1.2248276;1.0262437;.10534955;-.34254476;-1.546972;-.34003708;.076531328;.10674159;-.16124602;.73423439;-.47569019;-.8791858;-.78689539;-.38804817;2.1361668;.78771049;-.2542071;1.9115276;-.31533292;2.8258898;1.7008413;1.6469911;-1.7870157;2.6429467;2.6401355;3.6864915;.968297;3.3754134;2.0876243;.55614477;-1.179324;3.2027187;-.61983711;2.556705;-2.056865;3.2313299;-.20673791;1.8169904;.031712402;3.2215335;.45057005;1.7765677;2.7735274;4.4640398;.31789365;5.1240206;1.2855266;2.5484664;-.086327538;.52977693;.3176398;1.2110519;2.5817754;-.54467815;1.6363533;.87821764;1.8007833;-.81174004;.91144907;.4954744;4.12498;-.99782085;.36123022;3.2547154;4.7757792;1.3584778;57.964302 +.58794373;.33134088;-1.0525558;.38846743;1.7738832;.98075503;.24429588;.55486232;.43404895;1.0867062;-1.0607678;.65320539;.21602303;.42984071;-.90469724;.25533578;.99972433;-1.6037652;-.31856963;-1.2978584;.35723695;.021031937;1.1736401;-.85535437;1.0546055;1.1308812;-.17675112;.2323335;.4049764;.44798318;.091227084;.56640327;.81538141;-.25882694;-.19365349;-.57495886;-.37395474;.24215806;-1.1097032;-1.254335;-1.5946059;-.18106875;-.90702116;1.1865399;-.53680718;-.65354586;.90569752;2.2854345;-1.7954062;.53302473;.48117623;2.1968639;4.0540233;-.13832317;3.7076964;3.1709387;4.0327363;-1.2902286;.11448865;-.014685245;1.8248881;4.5356393;.26891172;1.0782124;2.0364423;4.8666506;1.0420439;3.7550528;1.242735;1.1000999;.66710192;1.3305616;2.8433862;.39537847;3.1764915;2.4857504;1.2001537;-1.6026125;3.9299276;.93807077;-1.1412132;-1.2143651;-1.3521729;2.8757398;6.5399575;.13787289;6.5882125;1.8049645;2.6023192;.73599184;3.8172748;2.6787705;3.552563;-1.1128182;1.1763194;3.3694782;3.7848849;.30644888;-1.0905006;1.7240421;1.4980808;-.34652323;-2.0208914;1.1917109;1.829039;.49146152;.97072244;-1.5782597;1.0798674;.81306565;-.74692899;.26361391;-.77195245;.24007203;-.46321356;-.23630641;.09265314;-1.0379879;.87819183;-1.168792;.71009707;.15658325;1.8214322;-1.0979178;.90797794;.39588603;1.1981857;1.1845286;-.5506466;-.49742645;-.022116376;-.43662986;.11550868;.31679949;-.26865059;-.74261242;-2.4613831;1.6849092;-.08396934;-2.125644;.70122868;1.0415124;-1.2625362;2.1713974;.34483814;2.8268597;.25167277;1.7794459;-1.9337481;.084654845;.68197936;2.0279493;3.4833884;-2.0635562;1.7624294;.8806625;2.3334787;-.79792011;-.7910369;-.053195894;.69998115;4.143487;1.3076738;.24253491;1.3423747;1.1861686;1.3163515;4.8496504;.78984654;2.269258;.137302;.85608107;2.8863969;.1973936;.48299259;-.33030587;.93249416;-1.6469712;3.4731641;.057800718;.023494793;-.085942075;.70110363;1.0389419;4.3127913;.28122243;5.6659822;1.8204423;.4472481;.87019306;2.9230437;3.6483271;1.4630253;-3.9417319;.72117847;1.2029922;1.4182825;.085983217;-.68819243;.66161889;42.889835 +.68202156;.20892492;-1.4105797;-.72003222;-.91883618;.44691223;1.7578239;1.6432523;-.18850608;-.42856389;-.048694633;.16333385;-.51974756;.067407876;-.63396335;1.7785726;.56819606;.47861168;-1.1616775;.84569496;-.94075173;.31478003;-.10209724;1.4313825;1.1781349;.038906049;.6708827;.24703585;.28785962;-1.7306743;2.4057407;.15393993;-1.3889105;-.29507241;-.1761764;.1166104;-1.3502982;-.95395398;-.66944456;-1.6183256;.090246961;.4438062;.85146129;-.49894154;-.05955781;-.1390394;-.20025723;-1.9618756;1.4408621;.68204427;-4.8594012;-.94908661;.77166837;4.7506433;4.7973843;-.67011535;1.5746552;-2.3813055;2.6492198;.52734262;-.27427316;.8977415;2.746083;5.2186875;4.9811125;-.46757388;.042727374;2.9577475;-1.687007;1.8066183;.78535283;3.4293311;1.7724191;.36656052;4.7688041;-2.8245668;3.9395931;.084169537;3.8693457;2.9181633;3.7336795;1.2819853;1.166765;.82617515;3.0694606;-1.5846747;3.1290989;2.4302423;4.6770191;.71495712;2.478632;.73931551;-.55478501;2.2999511;2.431963;-1.5517598;2.7031481;2.3949382;5.2237835;4.8431225;.98518807;-.78350317;-1.9925939;.2866382;1.060935;-.8987543;-2.4219635;1.3132111;-1.0452937;-.92227489;1.1076063;-.54798907;-1.392378;.44212922;-1.3309697;1.3602446;-.31220761;.59748816;-.86289871;-.72969681;.08094231;.21536332;-2.5387051;-.71660668;1.9765919;.0028692929;.27186227;.88203388;-.016735032;-2.2446351;2.8146508;-.76935941;.67821246;-2.2536614;-.73957878;-.15764078;-.83981335;.77742589;-1.7581193;-.88198078;1.5291501;.5924359;.41634002;.49216339;-.94227725;.025595382;-1.3890011;-1.5858938;1.9003774;-.33842495;-4.3558049;-2.1377828;.79432136;4.6244874;4.6078043;-.20505512;2.4249537;-.67131037;1.0301924;-1.4507691;-.59867346;.81154943;1.7410182;3.3436811;3.3611763;.015419401;-1.3999869;1.4267114;.54714811;2.4826529;-.61042047;.99799526;.062241659;.53104937;4.3812304;-2.793546;1.0037947;.012948126;2.8542845;.95043516;2.1762974;1.1660355;2.9927936;-1.5000609;3.7473922;-2.0233395;1.5946121;1.3932245;4.0811672;-.24211964;1.4997422;2.2337146;.23952627;.62820554;1.2938406;-2.3675845;.81002969;1.1199151;5.1196861;5.0399094;38.176346 +-.34955594;.67700762;1.7116088;1.2552999;1.0609186;.16138972;-.076598577;-.060706437;1.503528;.72244632;1.3915594;.15322635;.076180175;-2.0800867;.47622144;.34095162;-1.2676407;.98455805;-.90230519;1.6734078;-1.0088123;1.1802382;-.17089973;1.0874798;.034503084;-.081954099;-.40425232;.92053914;-.23886204;-1.401114;1.4008738;-1.695062;1.0533109;-.19667405;-.75184387;-.56265301;-.99725831;-1.8603175;-.81242114;-1.0001584;-.17356968;-.24886167;1.3408062;-.41606402;.82883853;.33160111;1.2411669;.093512081;.036904328;-.012033821;-3.0745142;4.7479806;-.54690599;-.42436767;2.5406144;2.6340957;2.9477642;2.002059;2.4842;1.4642631;.20761709;2.3650062;.89023775;1.1191357;-.90711284;5.1594477;5.1556001;5.6026301;1.3930769;-2.1299086;-.10237417;2.4170914;1.5352901;1.850492;.69352758;6.7593594;1.736509;1.4302392;3.9381831;3.9716308;1.4166535;2.2303743;.035447817;3.4337552;.93107092;2.6615388;.72676265;3.4707453;1.7970414;3.7169724;-1.1440107;1.4177415;.35220677;-1.883134;.98210591;2.4280648;.098001733;.93040842;3.0188119;3.3941898;.61249912;.42802399;1.4983994;.34898397;1.0243409;1.4545425;-1.0297006;-.62599641;1.7551537;.064178482;2.4519324;.42688769;1.4217889;-1.3312578;1.5287811;1.8019428;-.58452642;.0055517461;-1.0866133;2.5140171;-.36553296;-.94568282;-.76304537;.66615397;-1.3796135;-.62554032;-.56282651;1.3911082;-.18694922;-.16441648;1.6629937;-1.3110417;.82618099;-2.3858833;1.3401531;1.5524126;-.7417587;-1.6445507;-1.4662354;.40591419;-.19589002;.98103553;1.920769;.046369333;1.3684397;-1.4894779;1.8531804;.84306026;1.095996;-.090841323;-1.3711903;3.5795476;-1.4846346;-.97083265;1.8614641;2.1118121;.697442;.79705173;1.1694999;-.40145198;-2.6625898;.84478962;-.86740392;.51655853;-2.3824039;3.7971458;4.002789;3.6375654;1.9599066;-1.3769284;.91854501;.81278419;1.0983038;1.3388804;.6285395;5.1486917;-.22051696;3.3609285;3.4969292;2.4357469;1.9738271;1.0744107;-.23690699;1.8661792;1.0040109;.68237048;-.67583543;3.483022;2.0085642;3.5119064;-.85735202;.64739347;-.20688906;-2.2706165;.84551239;.9435032;-.12748002;-.61946231;2.1114106;2.549886;42.322803 +-.71297896;-.43871364;.49306422;-.23234756;.28066009;-.7011711;1.1665665;-.17263196;-1.3803381;-.57416534;-.21533926;1.2337955;.27538756;-.5265184;.19369976;1.2936063;.16062716;-1.6511815;-2.5047746;.91887128;-1.6089995;.1534958;1.0074655;-.11076313;1.7425315;1.3871722;1.3456013;-1.1778556;-.84836936;1.2793554;1.2536582;1.3540591;.45706144;-.95447457;-1.3822203;.01601922;.31290445;-.67178863;-1.0389805;-.51713556;-.2419305;.26029438;1.3958608;-.63735473;-1.6430095;-2.8700485;.33848998;-.50087929;-1.9562948;-.42756703;1.0250759;-2.2637413;-.17704825;3.5662541;2.6073656;1.9070872;3.0718493;1.2177355;-.60626733;.53588164;3.2888515;4.8183422;3.3376575;-1.0925807;-.33879825;.51327509;2.1189828;2.9092181;3.7179189;4.5480409;1.5597159;2.1394219;.30977491;2.1387401;2.2850916;.65982831;1.3004613;.74735683;-.94394451;1.7351378;2.4079182;-.74911624;3.891598;2.2193165;1.0019318;.26222911;.14036982;3.1155412;3.6433716;-.47790766;4.5927925;4.9035625;2.4814703;7.0454836;2.3464267;2.46645;-.86301255;3.1837785;4.4484253;4.7780876;-.66037822;-.88645279;1.09806;1.7874899;.11889406;2.360357;-2.0915725;-1.2614654;-.6430859;-2.6063604;-1.6372132;1.2803832;-.050055534;-.6524514;-.49405229;.98981327;-1.3272431;-3.5041723;-2.6753144;1.5744418;-1.6055136;.19213267;.53732502;-.66346228;.3888073;1.1429838;1.6303687;-1.0540559;-1.0943339;1.1767923;.01359476;.20373715;-.25131339;-1.0527124;-1.5782149;1.275225;1.0256648;-1.2003522;-.023244416;1.0054358;-.91970074;-1.1823019;-.16730189;-1.4468296;-1.0907286;-2.2566524;2.4232283;-2.1018012;-1.6207994;-.090586334;1.1081152;-.25471076;.86609489;3.0195208;3.8152418;1.1685991;3.3311908;.57591677;1.138581;-1.5087507;1.6070998;4.3733902;4.2421794;-1.1640115;.57370234;-.090603746;2.3874536;3.3088119;3.5657477;3.3069663;2.4238098;2.3085604;-.57057118;1.6246073;.92920089;-.56907034;.40479052;-.006509739;.96526003;-.15517919;1.4883265;-1.1657431;1.5346608;.84128386;1.5542663;-.52490902;1.0010936;2.6346414;2.6152961;-.69641;3.8816278;1.347717;3.4852135;5.4869242;2.8422341;1.4665912;-.21325289;1.0536211;2.4150248;4.4863839;42.97176 +-.81883436;-.24199851;1.0667113;.71658009;-.50696564;-.4817403;.56197327;-.39346838;-.32034987;-1.2506819;-1.021208;.46350721;.58373499;-.67809772;1.0996512;1.203616;-.75060445;-.26321343;.39911479;-.0070634303;.37554049;-1.6556147;-.35172832;.82572943;.40204611;.41009632;-1.4669462;-.1075477;-.76933235;1.0750417;.47992641;-.78019315;.50805753;-.37743989;-.64525765;2.110486;-.44911632;1.7046208;.2486577;-1.6202089;-1.8896161;-1.120669;-.91081715;.40782928;-.62830544;.81373155;1.7705994;.65108037;-.91016775;.22947608;2.9118309;-1.7610613;1.4558156;2.1925449;-1.2772121;-.44024161;3.4326663;1.8396654;.60228646;-1.2103113;5.7136278;1.973208;.43355414;-1.5221639;2.572777;2.9946768;4.7014031;7.7626953;2.8099616;-1.1441689;1.6120117;.35993618;2.8841145;3.483444;2.588799;.55703348;3.6320863;.56690216;-1.1659113;1.2306213;.68836814;1.4402658;1.5055851;.5042299;2.0592113;1.8718444;.013615203;1.2661994;.059055198;4.054553;2.4772279;4.3585024;3.1254604;5.3781748;3.3890555;2.0557861;1.4676319;-.26988855;5.6272278;4.2212458;-2.1625953;-.48412436;1.3270471;.20364711;.27682692;-.20419994;-.75812697;-.68548226;.75823474;-.43897662;-.75447208;-.35343662;.83935893;.076704502;.7196281;-.41792989;-.63303483;-.30219814;2.6538365;-.030121734;1.1244819;-.77174741;-.83359659;.82650888;.3404994;-.329642;-1.5414214;.20626649;-2.0181828;-.60950273;1.6481447;.10749442;-1.280135;-1.5350343;-.79776806;1.3248965;-.88041717;2.7349069;.57348728;.48523647;1.6687998;-.26565465;-.62702036;.5049758;-1.7550626;1.170065;2.1524749;-.15844303;.43704247;-.23186424;.66706413;-2.5466702;1.5939666;1.2855166;-.93875515;-.65174997;2.3804953;2.5559816;1.1787045;-1.1289974;5.9422698;.19457217;1.7681234;-1.5341834;4.4871831;1.0782189;4.8170495;7.0961857;1.8198869;-.40579134;.35070676;.84558499;4.0877824;2.1887035;.16812164;.94084162;2.4673157;.41498277;-1.2836707;1.6078444;.65744919;-.33532009;2.491502;2.1533723;2.4985018;.99734062;-.30399978;2.800813;-.68655586;3.5412402;1.9470072;3.3447442;3.5421791;4.7099123;2.35816;1.2323322;-.21169157;.046856679;2.9924712;1.4102103;45.325928 +1.1816626;.97240543;.76567882;-.7379759;-.79192382;1.3498601;.85319722;.64521128;.53679806;-.90290028;.39769945;-1.6077558;-.21473467;.4328059;.44969001;1.7577027;-.58227658;-.76858437;2.269624;1.7219957;-.1686082;.46812704;-1.9968451;.020430764;.10658225;-1.9090334;.50704467;-.14433812;.14639395;-1.6573625;-.056809064;.48181134;-.14541589;.57810634;-1.628144;.35875148;.14638607;-.075112574;.49118119;-.24122331;.83251697;.15101787;.61347121;1.385995;.33094215;1.1053791;.72893041;-.020356325;-.53652775;-.91670847;2.8496718;5.0565643;3.4267695;-1.826731;1.5319875;3.9575138;3.0316164;4.195199;.64197558;1.0909275;.44330421;2.8208361;1.0192215;4.5202556;4.8260407;2.6543574;2.9846148;4.564887;1.158239;-.85391045;1.9272629;4.0560122;-2.155503;1.4959272;4.256856;3.2367191;-.037580926;1.1554363;1.3069508;-.77907813;2.2634649;1.8706385;.22275138;3.8533313;1.5630158;2.6418586;-.88861954;2.1463528;-.86689126;.4109706;2.9131339;3.0118294;4.8540816;1.6853389;-2.9057572;2.6212521;1.4901798;1.2460871;2.2731676;5.9196057;.58677858;-.89535868;.66400206;.25650829;-1.2495674;1.790364;.58703047;1.367481;1.1052166;-2.003443;.83789104;-.70054239;.50476837;-1.1701691;-.46783841;.53301585;-1.5857939;-.018390436;1.1360168;.89074057;.64585936;-.15121567;-.87890273;-1.7085298;.42531988;-1.6986225;-.88195992;-1.0189083;.13578556;-1.508134;-.25838041;1.9270773;.69648635;.28899014;-1.2907848;-.34344989;1.0215038;1.0775422;1.8347931;-.37559146;.20272075;-1.4328927;1.4249889;-.13207686;-.85525727;.22512649;.32866302;.24644215;-.12780383;-.96292365;1.482198;2.6677349;3.2373626;-.84734875;.18380225;4.2280946;1.9880123;3.7698522;1.3989785;-.16058023;1.0579878;4.9165735;2.1491845;2.7667644;1.0872033;.85563844;.69734699;2.3999536;1.1596597;-1.0159858;-.098060116;3.9512775;-.019358968;1.3894515;1.5234385;1.7463852;-2.4994533;2.1823692;2.1847904;1.3545241;1.2792151;.71598983;-.15525228;3.7103138;.57466441;2.5917077;.25909349;4.5892901;-1.3228307;-1.8453492;3.6023376;1.1573472;1.5814029;1.6702921;-2.7060561;3.4119208;2.200901;.20023833;1.9246945;4.6296868;56.631344 +-.59002942;-.8896355;1.5763876;1.254123;-1.1806476;.00059718272;-.46175274;.52308029;.42033574;-1.0537511;.22210789;-.32873732;-.68996406;.70733893;-1.19699;.87311554;1.4115508;-1.4904991;-.57441336;-.30037472;-.68809998;1.7991787;-.65226793;.54409832;-1.2381707;-.21357615;-1.7692757;-.80811417;.29596061;-.69605887;3.1927152;1.4323667;.12100912;-.8537637;1.4145265;-.62814915;1.0716352;-.35206646;-.56649983;-.96985525;-1.0850852;-.90982246;.51084232;-.41225025;-1.297929;-.58577687;-1.0485904;-2.6009142;1.5415338;.60166806;.58993906;.11817537;2.7951956;1.8097758;2.2209089;3.0577836;1.492164;.31668988;-1.6976583;4.1093416;2.5431862;3.7351632;1.9699949;.1071185;-1.6624547;-.50441134;1.857878;1.5067244;3.9208221;1.4878289;5.0159187;4.5160336;.17689882;-.19202118;4.9839244;-1.7549255;1.5743121;3.2384813;2.3151641;2.636591;3.176091;.22162405;.91447175;-.34940603;1.7446738;3.8167977;3.7767975;1.3444198;2.4062476;-1.6279532;.99163496;1.0197171;3.3264892;3.7438898;2.5416286;.81773436;1.1573246;1.2796882;2.0674896;.2237511;-1.4606806;-1.6966207;.33873653;.21689327;-.51990658;1.6027426;-1.2378297;.7389847;.052679252;-1.0483268;-.70519626;.16498114;.15425648;-.73841792;-1.8242668;1.8872664;1.0917885;-.65939796;-.95846981;-.083308063;.66001761;.80950075;-1.1048903;-.8667295;.90655267;-.26991811;-2.6357055;-1.2510537;.038112406;.59654629;1.5625209;.35348839;-.062039606;-.39734811;.48543975;.90091664;1.8958162;-.26466027;.50425929;-.4890877;.76013106;.1133418;1.1483485;-.2939747;-.76587152;.85411394;.66838163;-1.9841491;2.3910325;1.1382776;.041724771;-.79030329;.75903565;.41606978;.76169479;1.7931523;3.1335187;.6802451;-.095275514;2.1979802;1.4195963;2.7376444;.25562483;-.44196254;-1.3408984;1.2223116;.22243251;-.01293398;2.7649872;1.5490347;2.9230592;2.3298461;2.3576815;-1.1927719;3.3846285;-.39564291;1.6774732;1.1546618;2.8171916;1.4830147;1.3235129;.18959153;.64681268;-.13308287;2.1007152;3.6196666;1.2314484;.18356419;1.3644533;1.0330975;1.5850368;1.2717681;3.0129342;2.8530877;2.8870728;.65312642;2.5946674;-1.0416191;2.8304212;-.93871027;40.617462 +-.95435625;-.1255296;-.91107792;-.18902346;-.51141518;-.52328813;.19068755;-.51494569;-.60374808;-.25085783;.45928979;-.063645922;-.64627123;-.36177224;-.15080316;-.023537893;-2.0388551;.062973738;.92964727;.35345578;.45681605;.87402338;-1.2418489;.93204862;.19420068;.89153832;-2.5872419;.70791113;-2.2854011;.47115907;.54682678;2.1087968;.48936072;-.23310007;-.27357161;-.53225005;-2.0786777;1.2917833;1.5347821;.0010758361;.13389246;-1.4399105;-.97265911;-.89821064;1.7171234;-.86581683;-.23174639;1.3066924;1.013852;-.20360282;-1.500769;.82929677;1.3868644;2.8440597;3.3073916;-.012649877;1.717605;-.65102881;2.2152276;3.0848949;.59737974;4.4671679;2.4557478;1.4149806;3.6415706;4.6197877;-1.061129;3.5221829;2.6528916;4.5295324;3.8936465;3.6880064;.31920642;-.26904342;3.9472282;-.14368007;1.7815188;.035913847;3.2903669;.062291175;-.0029226264;3.7220254;.38658729;4.3035841;3.8167837;-1.2381883;-.55799073;-1.4191197;-.3421585;4.7008777;5.1562433;1.778688;1.8265741;1.5451224;-2.332988;1.8594849;-.51570404;5.4519739;1.0345752;-.54120785;1.8694233;.063949168;-.74693322;-.97624016;.50032163;-.74648815;-.065403074;-1.7111298;-2.0465448;-.74435902;-.2288558;.22361843;-.16491057;.95251417;-1.0334393;-.52402204;-.68297553;-.077019885;1.1913704;.70150721;-.51754934;.54479289;-.11969766;.81627524;-.6645323;-.1281096;.57785642;-1.2292842;-1.5871546;1.4034771;-1.3183469;1.4189365;.18385501;-.81670803;.6632725;.54571348;-2.366379;-.80879092;1.258419;1.6766322;.85106939;-1.3752964;-1.1309972;-.70332974;.66582215;-.35161924;-.35433486;1.0088015;2.1819081;-.0067203459;.73281074;1.810547;.71477509;.27988252;2.0007985;.67410886;1.4896128;-.90606284;2.8242705;3.7270644;1.7025586;3.1504834;-.52353317;1.1869761;3.9771123;4.362278;-.36765099;3.069972;3.0098407;2.8016543;2.1657035;1.5913999;-.1331408;-2.4529555;2.0156274;.49162629;1.3080717;.73082042;1.495909;.40306178;-1.2436924;2.5330224;-1.2000108;2.7645168;3.2345729;-.98626804;-.33977813;.57917494;-1.6310003;4.0206695;4.1329179;1.4999331;1.3764938;2.1005218;-1.0328645;1.2147183;.45311734;3.1050391;1.7964169;-2.7104101;35.747055 +1.7435931;.06684652;.4657059;.90969735;.5825085;.56434441;.72685659;1.2451185;-.23130962;-.74284309;-.53306174;.42374617;.72754616;-.69527131;.10346568;1.761042;.26594701;-.16235912;.81574327;-.54547417;-1.892796;-1.2045937;.3086904;-.52857363;-1.2003905;-.75968701;-.31842008;.33322349;-.4106814;-.21608061;2.5757456;-.28872371;-2.6095467;-.12806801;1.0239121;1.3948163;-1.0034708;2.18942;-.43812004;1.2135178;.5362649;.22425626;1.1368423;-1.5474342;-.42415079;1.4550095;2.4691536;.24236301;.91529888;.60462415;3.7281616;2.7950604;4.2574406;6.007266;.91372609;1.4770622;-3.1956029;4.1546187;5.0307093;3.0295997;5.5136065;1.5495151;.033757262;1.5127068;4.5375896;-.90221506;2.4444232;2.5907116;.79476798;5.076406;4.3177953;-.43193108;2.0133152;3.9292767;2.1614177;.38014778;3.0914056;2.9230762;2.2618446;1.3501461;2.8997486;1.1911517;2.0775144;2.854938;.94026351;2.5151668;2.9798818;.61577672;1.3585126;1.5937618;4.3022618;.44546601;-.42307663;3.0916362;2.7459388;1.3012755;2.7552745;5.0136967;1.0294938;2.6862195;1.8582137;.21588039;-.17941892;-.47297946;.16250795;.88913453;1.5763929;1.4235611;-.20242389;.46478695;.31672564;.86539733;1.8358312;.71687371;-2.0485625;.60790837;-.21644618;-.51587379;-.13531215;-1.3302585;-.15274727;-1.9636236;.23733178;-.12227673;-1.2717762;-.47768193;-.83038121;.54413986;1.4627075;-.92033219;2.9142764;1.2308787;-.52824908;-.63111258;1.7810553;1.1457008;-.0470738;1.3303378;.52182353;.15726309;-.53474832;2.1827712;1.2055182;.19827509;.31700823;-.029358124;1.0561188;2.4820042;.087425679;1.1095732;1.9326695;3.3965578;2.1294076;5.1469827;-.82556415;-1.2092448;-1.8908337;4.5611701;3.0605469;1.0255972;3.7211664;.32712671;-.029350311;2.2047939;3.6040132;-1.4254605;2.3600686;3.4060709;1.9336158;3.2757981;4.09869;.024024813;3.0286696;2.1167586;1.2770718;.97294372;3.2064428;3.1916478;3.260217;1.2345101;1.711563;.66209805;1.8070101;3.3137953;1.1108302;2.2217901;3.073379;.24657549;.50075656;.61300522;3.1278028;.38095704;.84725702;3.088325;1.0547221;.99613863;.56175631;4.2287464;1.1533701;4.6553402;61.514465 +2.4342363;.73316032;1.1987469;.46561912;-.67080623;.83248472;1.3064342;.86802375;.28321353;.34980637;-1.8570082;-.75749969;-.54028821;.35868418;.84005684;.98900968;-.79440063;-.2569271;.02079374;-1.1198233;.63727236;-1.0412908;-.5205031;-.36055169;-.04600291;.36379072;.48094323;-1.5949883;-.64659315;-.20047429;-.72295529;.54898703;-1.2608693;.27683482;1.1957197;-.85354424;-1.6575792;-.30068353;2.0438843;1.9971925;-1.6293941;-1.0755597;1.0517794;.26463637;1.6526655;.28776073;-.38415694;1.5015774;-.33672959;.9126482;2.9480431;4.7763991;1.7971187;1.0103315;-1.0811113;-1.1127985;2.2978456;-.1810265;1.8241169;.0096266847;3.876981;-1.1898969;1.4817829;-.18970461;-.21763022;-.89778244;.76641643;3.0988674;-1.4879634;2.7590642;2.0911887;1.9644839;1.9740082;3.0714817;3.6184886;3.0679178;2.1241274;2.0939004;4.4393854;4.1746774;1.7726375;-1.5747583;2.7658682;.8499133;2.0515237;4.3328385;4.611793;3.2822719;6.7671347;6.478116;4.6683416;3.1260867;2.2300174;2.6575277;.92789131;-1.2485243;3.344774;2.3753746;1.6188008;3.1847405;1.6534885;.26480812;1.4719111;.68472797;-.0051322631;.91869926;1.24335;.51167136;.9205268;-.42289913;-1.4081321;-1.2938538;.25471562;.64616275;.33385956;.4455792;.59573609;1.6383353;-.29773885;-.75349802;-.56504965;-1.001307;-1.9392358;-1.3988242;.35141206;-1.4624075;1.300629;-1.0233207;-.067985915;-.3310715;-1.685824;1.7900032;-.59924239;.29168907;.70293999;.022319581;-1.4520004;.23319964;1.2586361;1.2744743;-.60461587;-.83549494;1.3428098;-.5335663;1.0158587;1.9777497;.82637054;.044299532;.35610569;-.18096177;1.3979306;2.1378429;1.5661775;1.2644678;-.34248379;-1.9360229;2.0315688;-1.2555643;.9641344;.24345705;4.2549057;-.93170565;1.4180726;.25562692;.28915927;-.50659156;.19803172;3.4466252;.070863187;.27544639;2.3334937;.35293698;1.9088025;1.9677894;.53444189;1.5319015;1.1456627;1.7416778;3.8980651;2.8188157;1.3518449;-1.7805356;3.8462353;.81169903;2.3701558;2.8799167;1.0581166;1.1645243;5.6462975;3.955883;2.3158202;1.2873195;.67083168;1.6577548;1.381954;-.34557149;2.2334664;1.7825606;1.4982439;2.9789488;54.396996 +-1.4696151;-1.0857354;1.1294358;-.45864475;-1.6427331;-.5911358;1.553984;-1.6267169;1.5850817;.81234139;.41660401;-.16417801;-.097770281;-.36873722;-.20708095;-2.7290895;-.86774725;.10487569;.43742904;-1.0742379;.61924416;-.81535655;-.34244141;-.64696914;-.88906646;1.2217222;-1.1147096;-.21415237;-.019183602;.36041555;.44848159;-.1075285;1.0778778;.21365374;1.9877195;-.75734764;.93218964;-.50228828;-.57403034;-1.9991117;-.26436308;.45945367;.31629276;2.92152;1.6288671;-.61839694;-1.128288;.27613285;-1.0609115;1.8929284;.50887805;3.6561542;3.1771989;4.0743656;-.35490069;3.1284282;-.13035332;-.053788856;2.1799991;1.9048852;1.2205563;.60643792;4.344656;1.6772929;1.719081;2.9172392;4.0040188;-1.1398911;3.3941822;.99683321;.90566325;1.326805;5.0810919;-.416749;3.029114;-1.384414;2.3155231;5.5650797;1.4455059;3.4649003;1.9517338;1.6502836;-.075494044;-.46493161;-.61158639;1.4007795;4.8200345;2.06934;4.3131933;4.5794358;-2.814297;.69491875;4.8075519;5.7410026;7.9840531;-4.1378055;.73515725;1.2825075;.88795;2.4217405;-.68270534;.54495645;.4613443;-.34842572;-1.3401761;.056460213;2.0199258;-1.0602419;1.5028851;1.4468173;1.6278151;-.21221823;-.0098468661;.350371;-.65237916;-.64730728;-.63508207;.28887841;.71744293;-.6896109;1.4420508;-.20134528;.98732376;.39427632;-1.3259739;.6250577;-.099692881;.58435494;-1.0014807;2.2485337;-.58285463;-1.6150054;.80672449;2.1615739;-.27594841;-2.1371977;-.47160536;-.86103165;-1.0599884;.77320439;.82921803;.41022506;.20714961;1.7823426;1.5485156;.70040858;-1.0236063;.74290031;-2.2689033;.46982914;.9591434;.73011482;2.309818;2.4263525;.72246701;2.3165092;-1.7243439;-1.0727068;2.8978865;3.3570001;1.3453592;1.0867121;2.7891109;1.100369;2.1283834;1.1821356;2.9649568;-1.1134385;.42896432;.44637507;1.1397319;-.37671322;4.2563558;.49530372;3.7832778;-1.2481143;3.035934;5.1292839;2.668391;2.9319191;1.6119148;.16807084;-1.5108263;.031587213;-.5659771;1.2245979;2.7892911;1.2356339;3.6203108;6.6587291;-1.4402639;.8784548;4.3155813;5.3605528;5.2479706;-3.6680944;-1.4021497;1.3958253;-.1538858;.81340677;44.831261 +-.1837371;.072685592;.79371917;.60787946;.1434868;-1.1019763;-.57590944;1.3255618;-.94861835;-1.9035655;1.0618902;-.56527609;.30553991;-.82057977;-.1838273;1.1999831;-1.3835528;-.22003503;1.5076083;1.2769575;1.3645332;-.1000898;.17420097;-2.0246704;.20788446;-.48738718;-1.1566371;-.65231079;-.21001893;.08673621;-1.1853352;.29211685;.0079031894;1.4572533;1.7951136;-.26750568;-1.189749;-2.0459602;-.088485956;.48199397;.93116301;.65707022;-.69406271;-.83335656;1.015983;.34297842;-.81708145;-.46673831;.30507383;-.54136658;1.85536;-.49284986;3.7278826;.45107022;2.7681496;-1.1714095;4.4209838;3.9412954;1.1506681;1.5207675;2.8605335;3.5667753;1.8038039;4.0691223;1.620047;-2.3166003;2.97263;-.17991906;-.010906561;.83495367;1.6146768;4.394794;2.8620646;2.7011926;1.454592;2.3146555;3.4780977;-1.481439;-.52655095;2.3058419;1.8184884;3.3969018;-.68444282;.34454572;5.5960155;.44666836;2.6831059;4.3639994;.54300469;3.3058238;4.2649007;.38451606;-3.6551809;4.1218619;1.6912978;1.4580059;-.56271732;.026030704;1.937815;1.4875208;.52061552;.17484261;.35827211;.88030356;-.52782446;-.73119843;-.18813856;.53568131;-1.1528984;-.60727602;-.78052658;-1.2162611;.73220193;.49508157;-.26757085;-1.1090906;-1.0433753;.42885903;1.8464724;1.1012062;1.7603953;.34960067;-.54803753;.12455063;.35639933;-.8128013;.0016006944;-1.3959609;-.92976457;.69423276;-2.0252206;-1.9223576;-.29434702;1.8246001;2.5513506;.74299222;-2.6778948;-2.3667767;.80493546;2.8395257;1.7673428;2.152144;1.3211222;-.23318207;2.0714698;-.55072755;.85577404;.77049148;2.9210625;-.83892906;.91282159;.18706857;2.6227481;-1.0861;1.5497447;-1.3605226;4.4335842;2.0653918;-.46344477;1.3565578;.90997797;3.0300124;.75863415;2.3816495;.74027318;-1.2881278;2.0177493;.2511473;.086766146;-.77218282;.48200741;3.7747235;2.4885757;1.0230116;-.72213227;3.4933531;2.8994315;-2.6651406;-.63794732;1.6070246;1.7151742;1.9330177;1.3262682;.15762211;3.719698;-1.0162774;1.5637349;4.3667421;.52441263;2.3487577;2.9953926;-.26294398;-2.8670754;3.0954037;.32892779;.083301924;-1.3941951;-1.8072758;2.5441296;1.5982767;33.733437 +-.36907324;.39779162;.15041791;.18386665;-1.4324087;-.54714185;1.0992098;-.93750298;-1.8550985;.44173154;-.61155427;-2.0412662;.009201766;.37686425;-1.5204072;-1.2004169;-1.0817531;.21580829;-.030234341;1.5955681;.95680487;-1.0706112;.61061066;-.75653428;-.15639895;.70382762;.86456162;-.45662677;.34356806;.33669594;-.95447421;-.46824348;-.84663975;-.22490287;-.35380092;1.0599124;1.4315628;-.49683669;.68885148;.2377013;1.7637054;.55986536;1.0667717;-1.2740508;1.4296019;.0075552878;-1.2767426;1.1502492;.75843793;.48831472;.60440838;1.5730116;-.26615113;-.37306505;2.984164;2.8693218;-.96415102;.048639406;5.4726014;4.6960335;4.0390735;3.6350348;3.4081786;1.5655133;4.3048353;4.9911308;3.5577376;1.9313905;4.4127069;5.7057781;-2.377404;3.9539039;1.9912996;-1.1975623;4.4163165;2.8023584;3.4315627;3.8973265;2.0507927;4.8927798;1.8737806;1.1896381;2.7258036;3.5728576;4.0211568;.10833213;.05539779;4.5398936;-.032818448;2.9626;.40746203;5.0131078;5.5377913;-.86509204;1.7651232;4.9330769;1.8653578;.78356665;4.4415703;1.4298366;-.016469734;1.2061219;.35614163;.28668633;-.1866664;.49286306;-.1476621;-.79144204;-2.0219901;-1.3657913;.51807433;-.94715828;-.25718156;.53174549;-1.5887794;-.30262199;.23867872;-.51715136;.29057652;1.1950564;1.1709214;-2.4380999;1.0669832;-.17181472;-1.0373305;.21024872;1.7382786;.40726072;-1.14279;2.7133346;1.2575411;-.34276626;-1.8113079;.60880858;-.33360887;.96370643;.011142421;-.48713076;.75584179;-.3282809;1.2291123;-.084052555;-.12543675;-.92237431;1.8550277;-.25144741;-1.0672792;-.45197704;1.8079383;-.093803667;-.060105413;.29521376;1.1197054;-.47049272;.44693676;3.2736263;-.29492724;1.0443907;4.0752125;3.6912568;2.1896219;2.4912989;3.1501007;1.330395;3.1982672;3.8097019;2.0743396;1.174614;2.2459614;3.3528445;-1.8019907;1.0463266;.57492793;-1.091712;3.6652491;2.1585884;.78378952;1.9908824;2.8277671;4.4666314;.82682401;1.9227678;1.596495;1.1842556;1.908653;.81973845;-1.2916577;2.2476373;.69203389;2.2829344;-.49860722;3.9564888;4.3955193;.27823287;.37308532;3.5847816;2.7374575;-.15250701;1.2848386;-.3592563;61.007229 +-.093681201;-.25419733;1.4402094;.92017311;-1.6237997;-1.7183462;.29500431;-1.1356759;.044792447;-1.0775151;-.98122555;.6314435;.54332387;-.44220933;-.83486658;.25190136;.97832447;.069867387;1.6774025;-1.0846112;-.44577876;.98271072;.67230916;1.550946;1.6119136;1.7708875;-.47642663;-.47749257;-.47111529;.010378684;.95898169;2.1690485;-.14985345;-.16738281;-.76178515;-1.7432876;-1.1651212;-.93962771;-.62513977;.096903108;-1.6259917;1.2416438;-.9041298;.33007246;.70234507;-.84716201;-2.7133291;-.55104518;-1.0080036;1.5568081;.71636158;3.0021169;4.5496135;.54275268;2.1794848;-1.210798;2.3132806;1.7797432;3.9174418;3.6741545;-.72101414;-.38717139;-.35701907;4.3466415;2.7867324;1.6176881;-.2769843;1.8180524;2.4163568;2.449857;6.0358839;6.965766;2.2323189;4.1791601;5.3249869;3.7234449;1.7171159;.16634215;4.42242;3.5540247;2.8375304;2.3826058;5.6728477;3.9188414;3.1688695;2.1142468;3.9219537;.39319989;.91558963;-3.2424836;4.1262264;1.6134602;2.4328716;-.99302799;.7222873;1.0971807;2.6425025;.26371717;.19012898;1.9880724;.63778204;-1.2167199;.60879761;-.23928542;-1.9217335;-.9202165;-.74462396;-.20852835;.69200939;-1.2336181;-.86299676;1.7643788;-1.114766;-.89913076;-.29012799;-1.7306299;.98616064;-.20507371;1.7806395;-.80270928;.42066535;2.1482038;.12999077;2.2498894;1.0985017;-.71445662;-.47232223;.1750484;-1.7910721;-2.0701721;1.5513207;1.936343;-.51627284;.68852764;-1.6311212;-.6441738;-2.6439326;1.0288459;-.32800129;.60744125;-1.1255016;.74405086;-1.6549406;.29586545;2.145941;-1.3279027;-1.8890479;-2.1535938;-.45161676;-.67550838;.3698543;1.5545279;3.4261906;-.72893751;1.1312816;-1.517251;2.7715232;3.3101676;3.3180788;3.690805;-.051669341;-1.1751581;-.77346432;1.9252831;1.4803587;.77765107;-1.1826367;.75386137;.90952229;.74305451;5.2436595;5.3148346;1.1392953;5.2679496;4.464745;3.2481081;3.06868;-.30111781;6.0443845;3.0140514;2.242626;.65087229;3.4211416;2.3038294;2.8229699;.40908909;2.554301;-.17138389;1.3439431;-2.6074085;2.2546871;.96100146;1.1281267;-2.3118656;.7565344;-.77828866;2.463336;.92967987;.85454416;2.4819667;54.837723 +-.6629793;-.0033691658;-.95274872;.57712793;.85235125;-.59718531;-.93529677;2.4092488;-.33719152;-.23104343;.8156532;-.30355603;-.23906897;.50409824;.52985615;1.069585;-.95492423;-.24814825;.5745936;-.01781575;-.053102411;.79091686;1.0872517;-.96281809;1.516748;1.014479;1.0363733;1.5876036;.68689173;.82428676;-.55340207;-.20852555;.84728593;.82011133;.17485586;1.2302051;.83477795;.57452989;-.58291847;.11826822;-.70602095;.69412315;1.5862365;-.47273675;.045201033;.045415923;-.81158978;.85741603;.37346041;-.76632988;1.9687186;2.1701849;3.7019167;-.23391876;.20977095;-.084850386;2.6571996;4.8148451;3.8510652;1.7434292;3.8868771;3.7011416;1.1074758;2.4072888;2.4002311;5.0198541;5.2406468;2.1817439;4.3655438;.89617795;1.2538719;1.477542;-.080112636;3.993962;1.2235974;3.463316;2.9821172;.1047767;1.6767669;.55183703;3.556216;-2.0525489;3.5337961;1.6864159;2.9732566;4.0973868;4.052309;1.5664194;1.4967972;2.5689979;.58967614;4.3281112;5.9784026;.94422704;.83823377;2.923562;1.7825155;.50344849;1.7709575;.91603023;-.068876408;-1.5188981;-2.6724565;.14289792;1.422559;.091830187;-1.4133829;2.7582181;.030636495;-.61421335;.86096489;-.64688814;1.1235183;.39406171;.17451887;1.7291123;-.86957639;.58384383;3.0743482;-.27202606;.36784527;-.84600288;.20038718;-.30249348;1.6775458;1.8156158;1.0302657;1.8466295;.59164393;1.6045644;.28163141;-.79657733;1.3843794;-.82711613;1.3379821;2.9336035;.39348599;-1.1169928;-.36409229;-.52611846;.21126834;.088359527;2.1606076;-1.0123991;1.2451477;-.083111346;.26777509;.67160273;-.17356662;.31538045;2.3080192;1.3500515;1.6298774;-.87230635;-.21482709;-.67134541;1.7369483;3.2447207;3.1614726;1.5101072;2.1649551;2.8585725;2.3842926;2.5844023;2.9153554;3.8996301;3.00771;2.197021;3.7331905;1.6745051;.7935707;-.40916416;.3008121;1.7884834;.21117632;2.1652999;2.367774;-.56145966;1.0628067;.83746177;4.277936;-1.0698582;3.3400867;1.3700693;3.00934;2.2855847;1.8152087;2.4874697;1.125393;1.2254299;-1.074492;2.3818512;4.5603018;.48819456;-.00059290847;2.3239782;2.8045108;2.5421362;1.785493;-.34353381;60.560001 +1.6021075;.85922211;.28863087;-1.0874776;-.048184525;-.86400318;-1.2711338;-.87907404;-1.0872784;-1.2354509;.27161929;-.56885821;-.78277487;-.054029014;.53517848;.13816758;-.69667202;.44057465;.29211515;-.40708548;-1.1603142;-.63804388;-.62329477;1.0995733;-1.705072;.56437153;.19715731;-1.5610337;.038767431;-1.7392406;.54261386;.56251925;.31937969;-.98862183;-1.46883;-.42740726;-2.2144599;1.2107708;.024232084;1.0609522;1.4843861;.54616398;-.15326865;-.71392721;1.1982902;-2.871367;.79313844;-1.44068;.22753723;-.89405411;.47054678;2.7429597;1.9366212;3.7573659;4.5160484;.57382441;5.8057275;3.0560095;.19091946;2.2767515;4.1935406;4.918263;.90857631;5.07476;-.19690745;5.4437346;.56980765;-1.3606266;-2.2919116;1.3111404;5.3644953;4.033957;.89018613;3.3704886;3.9698253;3.1017907;.88157922;3.8354752;3.6354034;1.1129715;3.5095389;2.4980741;3.7527337;.18325518;5.9185939;2.1444807;4.2233367;.83211744;.83444321;3.0319395;-1.4495633;2.930505;2.0103238;.041200839;1.7413384;4.6427588;.22027595;1.3524301;2.0046222;5.8415122;.19707718;-.62097692;1.3123844;.47045672;.49582216;-.64070046;-2.1079535;1.7969044;-1.6360774;-.97539186;2.1345057;-.67971569;-2.2071803;-1.0057027;1.349946;-1.7154778;-1.1748173;.93676084;.90046996;-.34733686;-1.8967161;-1.2321576;.070636466;1.8663352;-1.6580267;1.0584583;.29845712;-1.876702;-.64962476;-2.1325402;-1.1073279;2.6075635;-.63195866;-.060204316;.15416923;-.66789794;-2.0530367;.54549366;1.1192582;.50708902;2.8765569;-.31393147;.21937962;-.62522703;-.24035314;-1.9327906;.79996234;-1.8727149;-1.3343341;-2.072206;.13102271;1.2348447;1.293184;2.337595;2.6270514;-.8789497;3.9225874;2.7661121;.57762051;1.0595635;2.9973509;4.0708218;1.4130831;4.0506577;-.64523602;3.6446612;-.10896184;-.026261777;-.31760994;.13379446;2.1968067;4.0924783;.70741946;1.4581006;3.0660119;1.2316933;1.3040177;1.109339;3.2774274;2.100251;2.4648428;2.89644;1.9599915;.25105482;3.7645326;.40620917;3.0741234;1.3512939;1.9503472;2.6581295;-.48038983;1.293597;.62575948;-.66424167;1.6911298;4.1837296;-.19245243;.53634328;1.4717704;5.5831852;48.963974 +-1.3521438;-.08373718;-1.4776932;-.67541242;.25443548;.54627484;-.44556689;-.72301078;-2.1898792;.84840751;-.53769898;.1431323;.49382719;-.92815465;.95927924;.8199715;-2.077508;-.81075549;-1.2078316;.96156347;.1389429;1.1134721;-1.2470454;.22385253;-.75278986;-1.0888509;-1.4042141;-.097663119;.051980685;-.55130011;.40513432;-1.1776733;-2.0154264;-.11235219;-.79140639;.35684535;.48541364;1.5612638;-1.0397682;.27269086;.052443326;1.4055022;.30622643;1.3949611;.56944895;.1652516;-.0400116;-.64005661;-.43517134;.085299648;2.9459121;3.589185;4.7337303;.94852787;.98686272;1.954404;2.3108251;4.2864594;2.5434766;.53276002;1.0971329;4.9831419;1.3388305;-.82199079;-1.0431982;3.2824228;3.8189697;5.0141296;2.2745125;-.35005158;1.4694457;3.2045209;3.1919911;2.3079541;.04358229;1.0630233;.81011599;.42717808;1.9223971;1.1987222;2.0547767;.012620491;3.8254936;2.3263175;.69884855;.12807599;3.0686715;3.7650921;1.6747308;3.2595532;-1.4829633;-.70977348;3.6698914;2.0788956;2.4073346;5.2574296;2.702281;5.3923421;1.4248568;2.0589118;-1.566608;.11277555;-.43009096;-1.6000918;1.4805337;-.883717;.33726424;-1.4405922;-2.8276091;-.19530123;-.12224557;.3969638;-.3644495;-1.4740578;.032669779;.021700421;-2.9512215;-1.1553228;.20615773;1.9491022;-.77539986;1.8858567;-2.6151774;-1.7942469;.06522312;-1.8685938;-.21780878;.64892566;1.0533192;.23023888;-.83690959;.10765228;-1.5267514;-1.5960478;.036813233;.15901229;-.41460589;2.3629458;-1.4439975;-.29126143;2.307924;-.37247321;.38617551;1.2653753;-.52674907;-.19082555;2.0004873;-.69681877;-2.6915221;-.042507034;2.8130136;2.1067882;1.9692566;2.1014838;1.5879643;-.98302716;2.067616;3.0986426;.10494289;.6055274;1.9658102;3.3962572;-1.228774;-2.2430141;-.38196623;3.7776837;1.7175264;3.6321948;2.3744195;-1.3917993;.33873948;2.1253452;2.6529174;1.2490743;-.8324067;-.4113183;1.3430969;-.65151942;2.935601;1.1855859;1.8226883;-.96800435;5.0031137;3.1923447;.97152734;.071555436;3.6259727;4.1232266;2.9099784;.41569307;-.45909762;.53188884;1.8356388;-.39864445;2.493052;4.2471218;.90983719;3.8855541;1.2287383;1.4665396;48.435471 +.95341152;-1.0393577;-.76787889;-1.0398794;-.032071024;-1.9589556;-.64770156;1.4338064;-2.0829158;-1.4353405;-.23995207;-1.2630942;-.10626211;-.85349506;-.41536498;2.1013288;-.49530804;.43686226;-.50378036;-1.7576811;.0702525;-.87961906;-1.613149;.74443728;-.05414094;-.31048739;2.286391;.20832904;.50747752;-.54085702;1.1729019;.66632581;1.0216284;.98416001;.19490093;1.1067808;.37094057;-.92431211;1.4698983;-1.081551;-.13664781;.92394727;1.096454;-1.403546;.31979266;-.57939953;1.8377849;.816625;-1.2849027;-1.2749183;2.3285661;1.4325894;-2.4814029;-.52000272;1.1401783;-.74114007;1.0739114;.70179242;.65655655;3.5719011;5.6448174;-.22553249;5.0611095;1.7832913;-1.8281032;4.4924436;.73277694;3.157331;4.3423562;1.7929512;3.8780322;2.0716634;3.5543685;-.55614489;-1.1458328;2.4154227;2.005748;1.0164751;3.658735;4.5483742;-.3299568;1.8420891;-.2035248;5.5850501;-.59723765;-.70606661;.54317868;2.3399208;2.665992;.93342274;4.732214;.44373614;4.3092432;2.6292009;-.82471144;-.037093353;-.12755544;1.3103913;1.8641515;3.4844971;1.0896242;-.74683297;-1.6159984;-1.1187524;-.76283574;-1.4542596;-1.5931967;.45164856;-1.5538108;-.6169008;2.9178212;-1.0202701;-.3875474;-.45699742;-.69087988;2.3317466;.51135433;.073708765;.87378216;-1.5630716;-1.7385594;-1.201012;.42138112;.12797296;.4165664;-1.2725405;1.298777;-.70805371;.61455369;-1.0753704;-.014690059;1.8277713;.52376437;1.0465205;.02106107;.60890943;.24743073;-1.0673946;-.11214861;-.86634529;.93646318;2.8232625;2.0509169;-1.8521619;1.7168453;-1.0138913;1.0824146;1.7265438;.37852114;.39631382;1.2208135;1.3024287;-2.5125947;-1.0203099;.92024487;-.49174464;.51785237;.21514127;.91053492;2.1251075;3.194541;-1.0724918;4.820282;2.6347389;-.57404923;4.3790627;.6686911;2.6946425;2.2241452;-.55093157;1.9792209;2.8815587;4.6648674;.62004834;-1.519919;1.5796452;1.1176245;2.2232063;4.6463418;1.3294082;-.63341993;2.6186638;1.9038516;4.262805;-2.647392;-.24432389;2.107568;1.1112241;1.2512385;.3462657;4.144217;1.3912499;2.8280954;1.9427364;.11176006;1.2865334;.84566808;-.38704804;2.7275474;2.0848083;47.831421 +.015398815;.39114898;-.78329033;.45353553;.063643463;.26931271;-.60439742;-.63444012;-.55437332;-.42618176;-.041358072;-2.1062865;1.1145139;1.2815629;.28851414;.66383296;1.1563011;-.64779305;-.68213189;-.020067632;.86716574;1.4059408;.65424025;.61297292;-.35143897;-1.0106964;-1.5383011;-.90577286;.045002569;-.14853112;.65148687;.53925681;.59049976;.051091332;.35121039;1.90273;2.2949822;.0058654561;.62528008;1.0578113;-1.5255638;-.92227393;-1.1246701;.26616001;-1.5560395;-.66203147;.96950561;-.15956573;.58772725;-1.3192235;2.1517408;.68674743;1.7691833;1.9715965;3.7905109;1.3600515;5.2943821;2.7866287;-.3893542;1.437431;1.2074912;1.1088722;.65942436;1.1701646;-1.5168549;3.8709521;4.7255964;2.337296;-.50504869;6.3274674;1.0089892;2.7327724;.96969879;-.27116862;4.1106462;1.202618;5.3240328;-.46791366;2.1359487;1.1744045;.42544207;6.294498;.80299032;1.7304446;5.8039303;3.8416133;.36209881;2.5479753;1.1486166;.16755031;3.6315567;.98302126;1.8236703;4.2925048;-.26052424;-2.1618907;-.56908774;4.6882234;-.28516027;.95642608;-.54703873;-.65460682;.57799679;-1.1160052;-.15029909;-.066923536;-.16733021;-.73609734;-1.6379073;.83538246;.66316015;-.65736365;1.9190162;.17134264;-.31430975;-.26330259;1.9546682;.30740684;.010217445;-.41778854;.80204636;.22944397;.66994518;.79443687;1.0190281;-.23453178;-2.4699008;-.39091086;-.1785129;-.94479996;1.435758;1.424473;1.3970509;-.67788863;1.1822956;1.789647;2.6138353;.68414599;.33767167;.76640552;-1.8589219;-1.3448211;-.15657204;-.38220966;-1.8336043;-.13839531;.78188038;-1.7757918;.41552687;-.70755261;1.3242717;1.20766;2.6722162;1.8136542;3.1926246;-.021127004;5.2883267;2.5471253;-1.009167;1.1793569;.52819705;-2.6246552;2.4620543;4.010386;-.45550346;1.2277154;2.6635997;1.620376;-.2819593;4.787827;.58093876;2.8587859;1.322127;-.2642009;2.479852;.25066778;3.2630668;-.10819644;-.081003726;1.0533799;1.0293342;1.8972745;2.418205;2.3232889;2.9379258;2.9451795;-.37104729;2.1736231;-.22847684;-2.1033995;2.1412249;1.9908957;.29603294;2.8847432;-1.9082338;-1.6012863;-2.0830741;3.1053741;.41179353;-.063463166;51.299961 +.81582981;-.2890718;.28548458;-.026438642;-.68041295;-1.2483908;.82411164;-.20794077;.80557132;.28367209;1.1471318;1.2096823;-.30885455;.45142502;1.3631872;.26310062;.58975667;.55635738;-.93451214;.89863974;-.76087278;.12054355;-.2586562;.079534657;-1.4613316;-1.3676693;-.84304416;.36494091;.31817642;.97323674;-.82308501;-.66851383;-.0025897482;.44034231;1.0470552;-.44696823;2.0158184;-.6653766;.14973198;.31807515;-.18129639;.74546713;-.013039331;-2.1232717;.59769458;.72575247;1.4637526;-.30315229;-1.4803964;.49225932;1.537062;4.6491261;4.5359683;-.6367771;4.1715369;5.3526301;4.6963973;-.77822077;-.48556688;9.3703251;.80037224;4.5587873;3.0355265;3.4048312;5.3188133;-.70498127;1.6931627;.043759458;2.8382237;1.1871029;4.0828333;2.7951014;.17555411;.41618022;1.2757711;3.1753442;3.1284454;1.6452111;4.5981784;-.3587957;1.3794;1.190653;-.12308468;-1.5583543;-.88833702;.30477545;5.0347238;3.6705952;2.12795;5.8149233;1.7611115;-.34781498;-1.6514111;3.3581712;-2.1887922;2.8738253;2.6813471;.47200304;-.88939738;.04259976;.77767134;-.27375638;1.8029464;-1.3453035;-1.1310852;.52639294;1.1906996;.37323415;.49976781;.11361645;1.0658067;.020969516;-.65498966;.11153337;.83063024;1.781332;-2.8377938;-.083776332;-2.0696023;2.1246247;-1.5895663;.84107721;.075869627;-.38158527;.58515745;-.9480505;.56715411;.83308858;2.604291;1.0052215;-.26783261;-1.1368923;-.54414368;.56456894;1.0856476;.3346881;2.3315744;-.18802001;1.3401592;.48841771;-.365987;.76317149;.3495436;-2.0272241;.27191627;-.20279519;.4276284;.36131617;-.87365425;.046992779;1.0279201;3.645278;2.5777636;.26940012;4.1702013;4.4245486;4.1099267;-1.3749905;-.68956387;7.741313;1.2464001;1.4699131;1.5338627;2.1607695;4.0956264;-.46660626;.72285795;-.39114684;.95874804;2.8554909;3.0986977;1.0719965;-.463229;1.4484042;.29834235;2.9093277;1.7992913;1.5971951;4.686439;.37304315;1.4370248;-.53510755;-1.7478484;-.82582307;.36312366;.023957904;2.5490849;3.1145899;1.7584379;4.8642426;1.0227814;-.50128442;-1.485719;3.371999;-2.8620412;1.9975541;3.0131147;-.44183812;-.77818239;.41592532;53.671471 +-.59457147;-.71139193;-1.813076;.73186219;-.44227052;-.28151083;.24964365;-.342199;1.5013962;.36559966;.14506856;-.45755091;.56788146;-.29587466;.45058951;-.070502736;-.99766743;.94960713;-1.4252921;-.36268911;.073467985;-.47786742;1.2898009;2.9203455;-1.3433928;.32255468;1.8215663;.18328583;-.61684173;-1.1322434;.47812352;-.90993428;1.7900653;-1.1691041;-1.3848481;1.5902289;-.027214816;-1.6451594;-.6365872;1.8805335;.43904325;.2410669;-.29627147;-.075388126;-.45143551;-2.1027393;-.6509369;-.25082546;.39763808;-1.1728954;1.7590653;2.7095165;6.3838792;3.9521101;4.2201948;1.7455983;5.0763764;1.4090787;.10326642;2.9054508;4.2775798;2.3527119;5.9263191;4.4942646;1.9045821;.57553416;1.6502082;2.9828527;.70255882;-.37171942;.76942921;1.0173753;3.3733599;3.8259275;-1.4875848;1.3905495;4.3602419;1.5753776;-.22006337;3.4559066;-2.874805;-1.1995921;.76541454;-.44902894;3.6919284;1.8476883;.085494034;.98017782;4.1543036;2.3870883;1.5235971;3.8825095;-.79131371;2.168848;5.9431882;3.0041575;4.4718709;1.8049879;4.2933564;4.7729769;-2.1964529;-1.3679363;-.78301781;.32103798;-1.8641286;1.4837332;-.82271504;.89764667;1.7248451;-.18697974;-.9270885;-1.6739281;-.30504671;-1.214783;-.51996422;-.59814698;.5221799;1.5963805;-.93562907;-1.0470995;.58973449;-2.917212;1.2794967;1.9330841;-.35449991;.46571785;.54983997;-.10049265;-.57983452;-.073379509;1.1056639;-.41542196;.76156127;-2.4596884;-2.4048572;-1.5074406;-.52548665;-1.7883672;-.74642205;1.5209366;2.1684644;2.0835497;-1.1771147;-.39160269;-.74909043;.028063674;-.30255055;1.035485;-1.2785723;.30223945;1.7525401;1.4984736;5.8993254;2.3148596;4.9829192;1.7690297;3.9758263;1.3242879;.0034348213;1.8678666;1.4537359;.81808406;4.1092134;4.5569329;1.9726118;2.4102099;1.5822188;1.07382;.44227979;.29816204;-.61977309;-.4809455;1.7215855;3.2238579;-1.7298734;1.2694315;3.8823152;1.7620362;.54038829;3.4159472;-3.2958159;-.96389014;-1.0337386;1.0803723;4.2344823;1.039261;-.99300492;.021869546;2.2393017;1.4203551;.51241016;4.0570168;-.0035048213;1.0406249;2.6635883;2.4892263;2.7808766;1.2873057;2.9211555;5.1072426;58.172665 +2.3195121;.42932865;1.561614;-.41820484;.41371247;.89157182;.027257713;-1.2744435;-.19167306;.49132288;.63572931;.83621049;.72440869;.41509092;.29670852;-.057319786;-.51317638;-1.0588789;-.97183305;1.3885615;-1.4622322;-.11730216;.95127797;-.4755075;.50171912;1.5284497;1.1423409;1.3413051;.97944641;.44250551;2.9082997;-.099208646;-.090630397;.25619143;-.80891752;.12169219;.4216494;-.40122598;-1.1645869;2.0652907;-.20574221;-1.042778;.6639657;.59930456;.05941949;-.51271975;1.0338916;-.69229347;-.85088539;-2.1471658;2.9128301;2.400758;1.9749756;-1.2704693;-2.5152102;-.87254679;3.6229997;-2.4462557;1.3580682;2.2842102;1.5546324;-.66527557;2.1670394;-.42436889;1.1714699;4.8883457;1.9281304;.98984623;1.2079667;.90689373;2.3072743;1.5150602;-.080771007;.14711849;4.462285;2.2039802;4.2207565;2.5107338;2.620156;-1.1235546;1.2678269;2.9803188;3.8618865;4.6059828;1.2578501;3.5572367;3.8001983;3.3058643;4.6468201;2.4568784;1.0742921;1.4247952;2.5927968;3.2943101;1.1356179;2.9753411;4.8087645;.026983568;2.617497;1.2341477;.93870324;-1.1393702;2.1740556;.53680658;-.48222029;.13242777;.35891813;-.13527064;-.46477419;.097442128;.46105132;2.5027838;2.0405252;.006076029;.19720945;1.0151807;.57736552;2.6467896;-1.6253754;1.3831837;-1.7614715;-.94931066;.71088761;-.39947557;-.5963549;.10059249;-.32013789;1.7401081;.545955;.94334602;2.9163599;.02975475;1.8435146;-.11021939;.14538465;-.99854183;1.0207727;-.22510347;-.4853996;1.0979546;-.69971997;-.018785128;.93926579;-.42937809;2.5169787;-1.7284557;.77751201;-1.8139266;-.3917039;-.7840178;2.0963159;1.3434613;1.9544795;.69768482;-1.0327466;-.65804625;1.9635628;-.59505516;.31124601;2.0013981;2.2242768;1.5641961;.4127093;-2.962949;.69182163;4.2911668;2.3481107;2.3849351;1.996163;-.27165738;4.1851172;.43413305;.60912865;-.81449687;2.6856768;.31515828;2.1977882;1.3415881;-1.3547015;-1.7973596;.50523144;2.1542523;2.1228416;2.7090521;.48604047;.63973421;1.6014775;3.6431642;4.0149369;2.2778854;-.90612364;1.6225528;1.4710946;2.1993709;1.2039729;2.6068382;2.6636806;-1.1420389;2.2639945;1.7981373;45.720848 +1.8046099;-.1872004;.012160616;.77892458;-2.1939278;.16858615;.517959;.083299085;-.93995625;.36755154;-.53364515;.78559077;.48618871;.82290339;-.23761879;.73193073;1.5114621;-.20627259;.66624129;1.4624676;-.37620172;.58174431;-1.2489171;.56874698;1.1521331;-.5979501;-.5611136;-.4168703;-1.0256424;2.6529288;-.8415783;-1.3483471;-1.1808707;.78669173;.0058631813;-.63130504;1.270095;-.45084321;1.0938154;.71672714;.41949108;-.40591758;-.26039755;-.039149757;.84588057;-1.099081;-.40121832;.20004267;-.24511759;-1.5851408;.77884358;4.3376985;2.9870245;4.5713792;-2.1095254;4.6757646;.66505438;3.7395489;4.436636;-.98926544;2.9461131;1.5485511;.51110595;2.3743174;.588462;3.6875966;-.22022457;2.9828773;2.6538293;2.6791639;1.6048584;-1.3676528;5.2435818;3.7963159;-.18840849;.38294098;1.6727505;2.7385437;-.38833481;4.3266792;4.3414278;2.9205542;2.5719082;1.0837618;-.60648829;4.4086847;3.8769009;4.9451938;.63392854;.30161965;2.5665836;3.3988442;-.43133116;-.47230041;.48529536;4.3472838;.052965228;-1.2581159;6.2376251;5.7644596;1.6396729;1.1304326;-.28559032;1.5790865;-.78255975;.25609633;.94067299;-.67016774;-1.5895458;.030650731;-1.8959861;3.5398264;.65330297;.73847198;-.12186816;-.10369197;-.2446809;-.025593916;1.4278197;.87229675;1.44138;-.031548683;-.56611419;-.70253497;-.41813499;-.95144385;-1.4805235;-.047211196;-2.3282263;2.2401688;-.62999827;-2.3383274;-1.5094098;-.36224845;-1.5023639;-.51447529;2.1333277;-.40763864;-.45103317;1.3604469;1.6094834;-.3096391;-.92793238;1.6598325;1.1192653;.74005878;.20871754;-.30815104;-1.7992921;-1.6573331;1.0634388;2.1163647;1.7228382;4.2331858;-2.2056537;4.7611184;2.7097518;1.3821471;3.718714;.073282115;.91483307;1.7100923;.99125504;1.339102;1.1940923;2.319191;.27181903;1.0630579;1.1675415;2.0811863;2.7385044;-1.4115185;3.8965664;2.6637366;-.55307645;.64741653;1.5154057;2.8807638;.064131103;2.3680909;1.9012938;1.811271;1.4349854;.068738438;-1.2190496;2.704227;3.4799745;3.9802077;-.76981652;.48230004;1.0242196;1.8979347;-.33371705;1.759935;-1.318743;2.7719831;-.75299829;1.9137303;3.9582295;3.9167199;50.699009 +-.86129391;-.9871304;.30947271;-1.7475653;-.15113975;-.64369857;.14772879;.58193958;.95251477;.26658699;-.37665135;-1.1570147;-.99194032;.69020599;.20898089;-.15320826;-.17582384;1.1628017;-.63988215;.90068102;.9837811;-.37036431;-.10564806;-.38701117;.77245909;.47363821;.16613671;-.40518361;-.54586983;-.70881009;-.53782493;-.95410013;-.70947593;.01862731;-1.092311;-1.1446047;.271238;1.0139192;-1.2730134;.9623276;-.014600987;.45312479;.5824604;-.1678351;.76960701;.25233394;-.81379163;-1.5535786;-.74419385;-.53634661;4.7027812;1.4464538;6.7421122;-1.2094643;3.3727002;-.09456674;.4026089;2.5140562;2.1583958;1.4845341;.70426542;4.678339;1.2335805;.91904998;1.7908617;4.6232529;1.0618781;-.14973623;2.3772521;2.1853659;.63030553;-.10145093;2.3778744;4.8520541;-.32154515;.85004449;.95419449;3.6450808;1.2961569;-1.7122464;3.8861709;3.9805665;-1.3177984;.60528564;1.3030918;.44864374;1.4872012;4.6714296;.80935431;.14700605;.44411576;.97246635;.58607167;2.3753407;.89417869;3.6007097;.24113576;3.9433939;3.6679342;5.0140543;-.35052598;.68337971;-.44079211;-2.4635763;-.45481372;-.22529246;-.45808259;-.22982191;.61976141;-.78023911;-.2615509;-1.6578206;-.60803342;-.26097617;.79543233;.56642038;-.36558691;1.9731511;.36476439;1.2041727;.48797536;.023193978;1.5078137;1.7144582;1.2115276;.9933635;.33988813;.002451692;-.54266053;.34313864;1.7639871;-.34617028;-.7653929;-.1865738;-.19666886;.021913113;-.29437831;.22224718;-.010270608;.25461709;-.21625635;.1612393;2.3288908;.18362962;.55516285;.53928232;-1.264274;-1.0505092;-.53617865;-1.7634976;4.2858968;.48548052;3.6387026;-1.1783302;2.5872064;-.4271861;1.0776676;1.7958244;2.2199414;.9983148;.00015188211;4.3260674;1.4787849;-.35077029;1.5244805;1.9227821;-.65154827;-1.1345105;1.6744794;2.5508144;.68052584;-.090563543;2.1224284;2.755903;-.19869909;.19791231;.40866575;.40974727;1.1633232;.57765824;3.8209774;1.664055;-1.0712333;.29554641;.82423192;.045993224;1.3221629;3.2378929;.96534514;-.81017447;-.53587872;.48036468;.52503997;1.2007517;1.1163516;3.5899184;.74881881;.35535938;2.2782638;4.1757154;35.035049 +.47182512;-1.3340271;.22191203;-.91535652;-1.5060017;.97622043;.14556393;.39740017;-.18162705;-1.17156;.77063459;1.4639044;-.53491706;.28246373;.66405195;-1.7291782;-.40381929;-1.3680886;.48166519;-.89322776;.12589905;-.85456413;.92029363;-1.48068;.6419661;-.32147163;-.75106812;-.87957948;-.34144443;-.36757347;1.7844219;-.13679427;1.6526268;.21607679;1.1981755;-1.2834741;-1.1076922;.59874874;1.1198605;-.61049628;1.1535388;-.31403545;1.0957016;-.34722593;.099659309;-1.1352686;1.1342728;-.83423257;.69417703;.16023314;-1.6829469;5.3044157;.99524719;1.2019408;2.739167;2.0832951;.85584676;.84845001;3.5284095;-.07009542;1.5137801;.046386797;1.1681591;1.6991987;4.5366545;1.4851087;.93946117;-.83094823;-.6261844;-.42999604;1.29449;.92957968;2.8564568;2.2947159;1.645371;.84543502;1.3463416;1.5907024;4.0330381;-1.5086751;3.5143526;7.195734;3.2089;4.3965898;-1.1950359;-.23846434;-1.3684739;1.7200886;3.4856195;3.8551786;2.9886429;-.49632803;-1.8679055;1.4939727;.6106047;.22388685;-.069910608;4.1753473;.98119283;5.5737658;.58198512;-.49814498;.83766824;-.86440164;-2.298332;1.5714765;.32651025;-.99198425;-1.1118228;-1.4697385;2.2053852;.50981635;-1.4241123;.25090736;.87026203;-.38150927;.56902802;-1.0630561;-.52583468;-.79065537;-.89231884;-.31122971;.35135442;-.27619934;.064970136;-.099296562;-.67259181;.15260608;.046112224;-.36528918;.31219471;.32334822;1.8276358;-.28901696;1.6710153;-2.7450087;1.0671067;-.32724521;-.23182346;-1.3119822;.44642311;-.15384814;.098350167;-.87815309;1.5138664;-1.5777746;-.85234177;-.37043062;-.87901914;.78470629;-1.4645739;2.8121881;-.52721566;.10191765;2.0034037;1.5850205;.12294038;.41205254;1.2265986;.082436942;.36247188;-1.698868;.25098938;1.9658128;3.6508553;-.12230085;-.71982276;-1.0013292;-1.241248;-.31274939;.32765827;1.1128621;2.5125682;.90478545;1.6129528;-.34018117;.53023416;2.2731686;.74623251;-.37281448;.75878751;5.4883313;3.2849603;4.5878639;-1.2747571;-2.1033478;.7555688;.8227942;3.8514214;2.613802;2.9247231;-.16933334;1.3017403;.2168746;.17228194;1.171811;.6683225;3.6430006;.19684933;4.8631711;36.943932 +.74857569;-.781335;-.98839056;-.16478565;-.037033718;.34883785;-1.3485197;1.0487837;-.96665281;-1.2267079;.57301158;-.9249289;-1.5146528;-.95784801;-1.3059862;-.23450609;.48984206;-.11185814;.63358462;.95340961;.20193858;1.7392738;1.0817865;-.49957281;-.93410861;.17347598;.21129128;-1.0657178;-.81478423;-.90905303;.51172078;.9374842;1.7061595;.022227965;1.057035;-1.7417476;.28829879;.061091769;.38819957;.094773695;-.7853508;-.065087438;-.014387176;.20887557;-.68979102;-1.7388927;-.95447433;1.3603593;.7674396;1.7127247;.78875405;1.9533675;1.2713841;3.3161116;-1.0424973;5.4109354;2.0482683;.77772921;5.1806269;2.5672309;1.7016157;1.3221405;3.3762;4.2316694;2.933202;.97973984;5.4819288;-1.0758302;.87438565;1.844859;4.4687819;5.7632022;3.3108408;.73698157;1.4914153;1.6393945;-2.2454793;4.4184971;3.3790121;3.6209624;4.4720488;4.2237253;-.63152385;1.1723025;.58122337;2.77107;1.1390516;-1.1274379;2.3771639;5.6907182;-.61722767;2.1473184;-.89906251;3.7887003;2.0061667;.63279802;.64635217;.76216376;-1.2508544;5.0780878;.19560213;-.53959495;-.35851002;-1.4909396;-.26617026;-.30910727;-2.1963527;.93321013;.36294132;-.91003823;1.0105437;-1.6224304;.3354921;-.31124264;-1.1097478;1.4158396;.52456892;-.20995128;-1.2638134;.31068552;-.15367207;2.673099;1.5710368;.90831333;-2.4753141;-.23122008;-.74654347;-1.1113316;-1.0331157;-.44411966;-.73064476;.40613329;-.72793388;-.068929493;1.9669886;-1.613752;-.58773249;.054710828;-.016407399;-.39828563;-.060280353;1.5321918;-.39063233;1.0312245;-.19309215;.17654312;-2.024951;.82690591;1.038963;2.9043148;1.3886178;.23896573;1.9156111;2.6027308;.54956388;1.8814087;.41734967;1.031003;3.376708;1.0257231;2.5843534;1.9336883;3.2947841;2.4181416;1.9286445;-1.171106;3.322036;.010231319;.66414016;-.051130369;3.9463048;4.4481058;1.9257231;2.1472025;1.5652751;1.0958552;-1.1508737;3.0553827;3.3112059;3.4573915;2.2314656;1.3410825;-.95824367;.4869526;-.9894442;.35342398;1.2694803;-1.7981626;2.590734;3.0811968;-.56712574;1.38863;.1220696;2.6465144;2.5354817;.21522476;-.49172458;1.9423593;-2.0091031;4.9680037;53.276661 +2.0646684;.55300671;-.60859251;-.43052059;-.37485155;.25911313;1.0159934;.19161218;1.0762078;-1.3282005;-1.7420616;-.78920668;.46790239;.44162896;-1.4996619;2.2985599;-.13515961;-.068811983;-1.4781803;-.46626174;.60850537;-.27149832;-1.6662725;.56008118;-1.1850417;.45629922;.46781418;-1.0141647;.23758489;-.45393214;-.46165261;-.26513848;.60523105;-.73492116;1.7156315;.37802178;.12137346;-.22864608;.54608572;.27827239;.23484978;.22532003;.46387869;.45725068;1.4683688;-.47487107;-.5977236;-.39407781;-.21542704;2.6148357;1.0827087;1.4570438;2.7300951;4.7894015;4.1186032;1.6565901;.92108691;4.7284813;-2.0985236;3.396832;3.3631358;2.3018017;.98570907;3.5576663;1.8885111;5.4982705;-1.2721968;3.6178756;2.8697786;3.895649;-.50157392;1.758083;-.83975208;-.068747602;4.1809807;1.0397803;4.0733042;1.1680124;.4123022;.62557667;5.0413604;2.7378621;.41803205;-.92936498;1.0229378;-.92419118;2.1739471;-1.2035124;2.6661816;-.76011151;1.4031126;2.9768977;4.1151333;4.1641598;2.2570879;3.0466371;2.0505266;1.2522705;2.0812361;5.1450958;-.16377996;.5215891;-1.1163623;-.60721713;-1.8945478;1.1185229;.98177326;.68357325;1.0609659;-.32370782;-.10294379;-.23535335;.8262347;.28275621;-2.3556883;1.0716559;.35574618;1.2561289;-.80628914;-.76100802;-.35293791;.017457448;-2.1101415;1.0813614;-1.0777668;.72687531;.58026046;.097757272;.053072225;.74999428;-2.8639543;1.398514;.065650359;-.16337317;2.286793;1.7142026;-.28572905;.62456799;.30393505;.44136587;.99121886;-1.4974872;.83273119;.66836679;-.066390887;1.7049809;.63938349;1.3484596;1.0009607;1.4972318;1.5123944;2.3500953;3.7634087;2.6797867;2.3097582;-.0084008342;1.3927987;2.5906575;.51626754;2.0596235;1.2532142;.85416812;.43947217;1.3722136;1.656752;4.2694068;-.62661088;2.6179028;.97385514;3.8199821;-1.7186878;1.9483573;-.007285364;-.74570668;2.8737457;1.060236;2.7322562;-.10289014;-.91837567;1.06331;2.8282413;1.5587009;1.1198672;-2.129024;.3688637;-.56746054;1.2897316;-1.3530993;2.1114984;-.92638808;2.0368645;2.4180291;3.9842656;2.4495249;2.5374527;1.4101421;1.2642194;.61229515;.59511346;2.1201487;47.87117 +.1493177;.46251538;.29358527;.85703051;1.4984365;.6420964;-.14452083;-.23451893;.57346117;1.3314211;.68462229;1.611973;.69519669;1.3470441;-.46251765;-.66292644;.59053141;.79207456;-.60694885;1.0586573;.85888952;-.019610865;2.4068334;.54283476;1.7677182;-.23349993;3.625262;.27699307;-3.0956545;-.68001342;-.63058841;1.1787832;-.47076169;-.78284794;.047310933;-.76413351;1.1214632;.18187968;-.88241488;.068695419;1.203405;-.73065138;1.3870186;.52691716;1.2672484;-.017211793;1.7063166;-.067766517;-.094694726;.48621219;1.7471355;.34909743;2.924077;3.180223;1.7745128;-.55807245;2.771096;3.9147379;2.1851368;1.6505053;.42212883;-1.6549292;1.2031505;.72225332;4.2488279;1.0404433;.81578016;2.7694154;-2.0985141;2.2345183;3.143373;.80805922;1.8216503;-.55745196;3.8906951;2.934582;2.1254349;6.4440455;2.7120922;1.0400031;2.0891986;2.2056487;.82765108;1.0237329;2.9453561;5.6652393;4.0378671;.94988972;6.5791707;3.761045;2.6449881;2.8496456;2.5711293;3.4197371;4.0037661;-.72488374;1.0051121;3.5173218;-.7009353;4.6587329;-1.1972827;.76073736;.61259145;1.4506021;2.7210128;.51978934;-.8590337;-.10230132;.44515425;-.53943014;-.96195465;2.0414023;.64610416;.0042157844;.14051764;.16338873;.089694552;1.4428368;-.87888384;1.3272567;.6807881;.68081182;.79312241;-.029349418;.60483462;-.93998849;2.8831959;-.70310223;-1.929599;-.43849856;-2.0283759;1.1880291;-.8601107;-1.6339259;1.8046089;-.054403912;.39057219;1.232047;-.70384049;-.31058127;1.1723567;-.24883668;2.1273551;-.6386714;.72415715;2.1094723;-.055007555;.73817289;.82269466;.46974576;-.17936148;.93367773;1.4823804;3.1144857;.050879531;-.91742158;1.8259063;.67893225;.99756455;1.8290924;.086211711;-1.0959173;1.0956687;.39794272;3.2623215;2.7063718;-.15894297;4.0167704;-1.8771794;1.7130473;.28833306;1.6028328;1.6579475;-.8282665;1.7898982;1.1911117;.85609496;5.3927279;1.2997935;.4626517;2.3767586;2.6277514;1.2613549;-.64307338;2.6913257;3.1526201;2.4547095;1.2473848;6.278213;3.5840828;2.6451671;2.5363221;1.9572607;1.3763065;4.5830359;.23339705;.19763839;3.174598;-.20791402;4.0455117;61.608326 +-1.1985184;-1.0276306;-.46682531;2.0170207;.53599679;-1.5548462;.0011316896;.94691342;-.036973089;-.97919124;-1.6506394;-1.4252568;.095651008;-.97603786;1.1661061;-1.1920458;-.40311876;1.3163357;1.4759045;-.045639198;.086035423;-1.4682305;.77322924;1.1970214;.79008275;-.28516555;-.29929546;.79366523;.24517779;-.45796177;1.4071623;2.1076181;-1.2327409;-.78270578;-1.5810025;.95523882;.18848643;1.2597593;-.055759531;1.4718522;.69130933;-.37830612;-.65220904;-2.3716345;-2.4511392;-.70728093;-.6705966;1.9728473;.75683933;.52570432;3.994339;5.1751976;2.3044853;2.9132864;-1.8001107;2.7495947;4.1580849;-2.2433794;2.5135419;3.5298562;1.6706952;2.8655133;2.9882057;4.1855454;5.8786402;-.11931581;5.3463626;.54473734;-.33221978;.10761933;-.78965014;-.67173725;2.4381096;3.0516601;4.1079931;1.7267586;3.4452138;6.1474838;.89695144;3.8369877;.020603389;3.2601218;1.6396096;4.9461231;-.84914029;2.2402756;2.3556037;.81181371;2.7987494;1.6861478;3.7650523;2.0144835;-2.7732298;3.9768879;-1.621273;3.5218842;1.3212856;-2.0317893;3.7421589;-1.3581976;-.35973853;-1.446119;-1.0556326;2.764791;1.4043251;-1.2511418;.64039326;-1.834991;1.2111703;-.64562023;-2.0228674;-2.4086418;.76365262;-1.5001189;.43122634;-2.6843333;-.15388036;-.79265469;-1.0517528;.70525771;.80681264;.27942327;-.47945556;-.081312895;-.74772692;-.15144563;.70620108;-.32934004;.36960289;.28616276;1.7213697;1.2621297;-2.0557961;-2.1703191;.19404422;.029902643;.82535511;2.0471501;.086947553;.89740586;.10798599;-1.455936;-.28814667;-.37835497;-2.5995433;1.4898473;-.40420491;2.1476612;1.5366672;-.66612732;2.5401978;3.253355;1.6648135;2.6818759;-.36146781;-.54532319;3.6814241;-1.4152844;2.9540999;2.8364897;.63501257;2.9418399;1.9319246;4.292666;3.6755514;.76398349;2.7121801;2.0846529;.033820119;-1.4988954;-.90603888;-.8704071;.69264168;3.6455116;4.427341;.26950622;.29016998;5.015224;2.0223248;.74189562;1.6522783;1.4561379;-.50153553;3.1621375;-1.2902833;.57451636;1.14956;-.17122279;1.5588212;-.33424526;.564089;1.814918;-2.4501617;3.6618021;-.4436067;1.3154957;1.9606827;-1.6406605;1.9515167;-1.2994618;42.355106 +-.82442546;-1.6775692;-.04460926;1.3338622;1.2688168;.41964009;-2.1955421;.72128695;-.047919404;-.88636315;-.82904875;1.9408878;.7404905;-.97734267;-.04249689;1.1204977;.44902503;-.56452298;.19932336;.83143896;-.78078419;.14506632;.98357594;-.89354092;2.2442174;-1.1184407;-.30288437;1.0159203;.32590002;-.60319644;-.523444;1.1240598;-.26957053;.58294684;2.4402359;-1.4755659;-.013601822;1.9288206;-.69729447;.12753658;-.23833619;-.3103762;-1.5791799;.38159463;-1.5782734;.41884586;-.0884436;-.42271626;-.099340655;.57515234;4.9454556;2.9120815;.22805618;2.3445714;-1.6301816;-2.1673324;2.5239799;1.7300131;.31542972;1.7800335;-.83843589;2.3658164;.24647808;1.3739129;5.220758;1.5272564;2.1215439;2.9061921;2.6726899;1.4835798;2.8669899;-1.0902635;-.29562646;4.7401419;1.7446115;.50452465;.71671855;2.1902943;1.4171785;1.9855928;.52262414;1.2027031;1.5551733;6.2106347;5.1264853;5.4967251;2.3173172;-.54918218;.72981083;.86096084;-1.4619676;1.2855483;-1.5436332;2.2255905;3.9110665;4.4130812;2.006942;.5850386;2.5909994;-1.0794092;1.3247803;-2.3350589;1.4761107;2.0999486;1.59431;.96340132;-.95826101;-.46648219;.096708976;.94176632;-.47692299;-.64240396;.67282349;-2.0449789;-1.890884;.47179464;-.76491541;-3.2421894;.40189606;.65679389;.37615651;-.62590599;1.6978239;-3.2340417;3.2197058;-1.4111986;-1.2105042;.59429145;.67718762;.20590456;1.5784551;1.5726895;.69057965;-1.1412659;2.6559939;-.95683241;.59652048;2.4663215;-.59153646;1.8969408;.44652107;-.18005615;-.95572507;-.7378518;.39074415;.007246464;-.38771069;-.8027994;1.2529224;-.60412818;4.7004294;2.7290595;.47720376;.77112776;-.13624685;-.62589347;-.66874391;-.36564389;-.088280343;1.2818695;-1.1102728;2.830991;.80518329;2.0674701;3.2691505;2.3081539;1.3078678;3.3874629;-.473131;1.6240388;1.0130011;-1.6516062;-.39697316;2.4905741;.92016578;.38411507;.57446367;1.206636;1.8452014;1.598827;-.038871702;2.3948178;.043349929;6.0396428;2.7078512;3.3611774;2.3656819;-1.59463;.98840207;-.15529481;-1.7470115;.66729015;-2.8795371;3.2485032;3.0007668;3.81073;.71160239;-1.5914502;2.1722071;-.53224081;39.728954 +-.87723362;.6712957;-.32669476;-.086841747;-1.2318518;.9051767;-.21403067;.33900616;2.292377;1.593268;1.1616364;.63180363;2.3100228;1.1474524;.024942013;.80101478;.63986188;-.20747426;-.40843314;-.048425622;.15303814;-.11161944;-.99664301;-1.6259912;.060187709;-1.3369032;-.048272118;.16373536;.78801268;.26475579;.2969825;-1.0508199;.8724975;-.37998086;.90598422;-.56873763;-.44470558;-1.567798;.53341526;.23732923;.53201491;-.18794544;.87936598;1.4719156;-.073121764;1.1689311;1.8139288;.87843645;-.20717429;-1.2296757;2.0895178;-.76518244;.51481909;2.5804086;-1.5773609;1.9588126;.42997777;1.671651;.86517006;-.91340625;.92020667;-.66977769;2.6879115;2.3985078;4.3110037;-.61700386;1.6498148;2.801795;1.8517209;1.4091209;-.018609252;2.1582298;2.0842538;1.275982;3.147939;1.8624499;-1.6342931;-.76705939;.67730987;4.9046149;1.2499405;4.4298892;3.3093805;8.5396442;3.2573161;-.28329232;3.3803256;3.2961798;2.0377083;4.60045;5.2008572;-3.0369234;3.553309;2.3051708;-.40337062;6.9341564;2.5358624;4.3127189;2.6184285;2.1147497;-.85875839;.13073325;-.24199615;-.016703742;.15705545;.072405495;-1.2662469;-.63941669;-.067825086;-.61596847;1.4247586;1.6599979;1.6798328;1.057943;.068899669;1.410193;.79100919;2.4178634;.32984683;-.44175288;1.8611825;-1.3673128;-.88733691;-.83411133;-.40779355;.8357091;.046302963;-.83680028;.28782091;1.4132195;.67065978;-1.2276098;.55170339;.056519143;1.6789997;-.86635178;-1.1391165;-.72916442;.050594464;-1.0549362;.67362553;-.74076045;.51523179;1.3975157;.58081913;-.079475507;2.0230277;.77280456;.24503817;.26671472;.91113555;.97084022;-.050567295;1.3460765;-2.1891251;2.8799806;1.1578554;.56854576;2.0949907;-3.1958871;1.1092572;.23520604;.11442351;1.3840867;3.264025;-.88960481;1.0022476;1.3949373;1.8418716;-1.7122918;-1.3624047;1.3426702;2.1833467;.39155331;1.8505554;1.4964881;-2.4115758;-.92534459;.79921514;3.3848147;1.0794629;3.5018501;3.138653;5.1366558;2.326685;1.6954268;3.4238844;2.4450293;1.4746277;2.7123177;2.2292173;-2.4272985;1.8465155;.57787699;.86612612;2.7249062;2.0132897;1.5381578;2.2738919;2.2488732;56.008842 +-1.3109788;-1.1839316;1.3872403;-1.7787186;-.30768713;1.1970741;1.1687622;.57051098;-.96793139;-2.4758167;-.25613597;-.4690842;-.97640872;.24816085;.87301719;.069600463;-.17267852;.15653004;.157455;1.135509;-.14639182;-.40253237;1.4434384;-.74145067;-.49772522;-1.3061886;.57724869;1.355569;1.0189309;-1.189725;-.27936181;.054968119;.96990937;-.77725714;-1.073657;1.8658302;-.6199863;-.49805832;-.84411424;1.5143222;.44849923;.77350014;-.15576681;-.55649954;-.80940348;1.5839585;-.68555093;1.2992347;-2.3984444;1.8112912;-2.5205238;-1.1979513;.65258914;-.068726733;3.4361436;-.46533749;2.2372799;2.0815966;2.5406148;5.4641562;-.47653824;1.4237196;4.9675026;5.3079457;3.9263291;2.6020064;2.6425745;.82834274;3.5769103;-.67086977;-.38884482;7.1448035;3.2415426;2.0947254;.69070625;-.93750322;3.1890244;1.5011244;3.3684154;3.5390017;6.2811542;1.4593825;3.1908031;3.2225904;.52164984;4.7887564;1.9679239;6.2050118;4.6967044;-.2679573;-.61961663;2.9074125;3.5466628;1.477391;1.6567677;2.8336487;2.9606445;1.1147673;4.0779071;.89543545;-.040739186;-.1911151;.5630089;-.3771866;-.64768338;1.3161998;.84461564;.98596305;-.39295727;-2.8221836;-.72378308;.16733585;-.32434368;.62559348;-.31040955;-.9138006;.26324636;.68522787;1.5940759;-1.0254432;-.83738405;.49568728;1.1283025;-.6720736;-1.5857832;-1.7900275;-.20159565;1.5606946;1.3993653;-.92812628;.0027051817;-2.1482887;1.8574485;.506109;-1.1651369;4.2523727;1.3889271;.20557168;-.58576822;1.6659807;-.059913788;.17479526;-.47683075;-.26967984;-1.46429;3.1999402;-1.0266821;.5522747;-.65428317;-.10746081;.29311898;-1.4579206;-.84970218;.27514479;2.9763632;1.1764163;1.984403;-.01541325;3.1457007;2.7029636;-.53335595;.3573823;3.0343046;3.1065395;2.4664752;4.2669492;.55351996;-.77046967;2.1793604;.92291689;1.2413695;4.6169252;1.2540333;1.7713522;1.0371494;-.51115137;-1.0293492;2.3501225;2.887229;1.4179841;5.8794417;-.97856754;1.9030256;3.3497908;-.031256329;3.5078557;-.52891964;2.4388669;3.8155739;-.039460108;-.24048986;1.5410916;2.8473778;2.3098552;1.0255104;2.6276309;1.1657221;1.9809121;2.0930429;.63309842;56.471806 +-.45880231;.01362297;.14190234;-1.1985507;1.492618;-.058827166;1.017154;.29202062;-.26549244;-.59384781;-.082808763;-.86506605;.37374961;.94847041;.71275902;-.67018914;-1.5841955;-.10195415;-.22045916;-.84832245;2.3770714;-.31397352;2.4811988;-1.8062407;-1.7024844;-.4769246;-.60484195;.34381935;-.49306753;-.24819112;-.8173697;1.2796561;-2.284287;-1.0826007;-.78924477;-.52610874;-.77185738;-1.5153902;.43290046;-1.0579923;-.80146885;.0048805769;2.5602183;.80060709;.59576887;.6362747;.23330422;1.1735024;-1.4396089;-1.4254692;.51414824;2.2031019;3.3094268;3.9375124;.54699522;4.1664801;-1.869424;-.49922246;5.8773813;5.5351067;2.7056549;-.79778916;.29662436;5.914217;-1.0910804;-1.1067957;.80522346;4.4500031;1.7296547;2.0346661;.92282009;-.41857463;7.413434;1.9583569;.89279377;.71204805;2.8144283;2.9351213;6.2928481;.69606262;1.4323735;2.1154149;-3.0277603;.74531353;2.9101613;1.3160297;2.8391387;-.4942264;.29841596;1.9008794;2.4160848;2.4776318;2.6768568;-3.9991667;2.4333155;2.4006402;.34652755;4.3293915;3.3423171;3.6881332;2.176048;-.52618903;-1.1695452;.91586363;.60227108;-1.020296;-.21129586;-.15113918;-2.2428234;-1.433293;-.089171223;-.50674891;-1.1521366;1.5882138;.71529227;-1.9334632;-.58616251;-.5794127;.18241856;-1.1833863;1.940695;-.67548335;.15596871;-2.1307812;-2.7922845;-.21229717;1.1891131;-.87262356;.47085032;-.2420073;1.1213737;1.6219537;-2.5276253;-3.2200897;-.66754514;2.2313457;.35540533;.22769554;1.879832;-1.6966249;-.48015219;-2.0567145;3.2291474;.9672786;1.8860961;-.20130959;1.8423952;.24713168;.43914434;-.94855899;-.3975586;1.5241485;3.971725;2.6434536;1.2623188;3.9543188;-.82536179;.065816842;3.960084;5.114253;1.9263306;-.20591527;.2665422;3.2342718;.41897473;-1.7016002;.6165033;3.7817321;2.263768;1.1383594;-.72975165;.7382316;5.345211;2.0663521;.2252252;-.97444338;1.0979074;1.718019;4.7546139;.70516384;-.27628168;.56843746;-1.0525768;-1.0032636;3.227515;2.8125887;3.2121613;-1.4196285;.45411751;-.13822547;1.241881;2.0427744;2.3615611;-3.0919642;1.8738137;.19785596;-.74671942;1.9115839;1.0897377;2.7889667;40.874622 +.28332564;1.1325295;-1.1140052;-1.1369871;.68262208;-.80670196;-1.1515423;.62948161;-.52648652;-1.065071;-1.4452929;.073008455;.60200608;-.45022202;-.54397309;1.2517941;-.681449;-.72984254;1.497121;-1.2592101;.73076952;-1.848889;.56774747;1.574381;.24841347;-1.4149733;-1.1746686;.2708469;-1.8753096;.64258701;-1.7910795;-1.2762897;-1.8408502;2.0591326;-.14143766;-.62343925;-.73522085;-1.242035;1.5238004;.0038339526;.24405956;.22776698;-3.1218672;-.40644774;-.47282675;.90022898;-.2491996;.44783819;.76830107;-.81524891;4.0596261;3.6079798;2.7563424;-2.2660072;.65176725;.98827475;.82476068;-.8805477;.14472266;4.9118538;-.015594455;2.615587;2.7124546;.34867936;1.9242623;2.308322;.6815328;.46237254;2.7336948;-1.2769473;2.3077896;-.52209336;1.6053253;2.8302274;.15306248;.8656261;.64381385;1.215659;1.1724752;1.6975703;1.6342587;1.6334708;3.5377293;2.3901794;.80933595;.52030724;-.10936817;1.4648445;1.1842812;2.6170778;-.003367821;2.8842762;-2.5666656;.86064065;1.6540842;2.3880775;.5353471;7.0931454;3.2332342;1.3908229;.43021965;1.1953794;.1738013;-.23323029;-.018465174;-1.3038635;.95640582;-.033591405;.81332988;-2.144691;-1.8969543;-1.1287129;-.72131252;-.069054469;-.94516796;1.847188;-1.9290309;-.27557784;1.6367599;-.28116912;-1.4662398;-1.5333986;1.678897;2.6958196;-.18124548;-1.2796928;-.062655143;.54476112;-3.1179059;1.2252381;.23316683;-1.6911215;-1.95718;1.0595397;.61907804;-.65958351;1.4734867;-1.3125788;.086098224;-1.0864263;-.048485424;-.99987835;-2.6471391;.084516212;.60803908;-.029399579;-.95752233;2.1930237;1.1430423;-.96368533;2.9301472;2.9892271;-.96918517;-2.6349804;.56586379;1.5663168;1.6103063;-1.2008728;.81746274;3.9337139;-.50501168;2.9763579;1.366334;1.0907431;1.2857344;.10960315;.65190476;.9174087;-.021804973;-1.5118288;3.4435015;-.56314898;.93293279;.52891147;-.013273954;-.13092487;.29322612;.47033429;.65241104;.32701448;3.0439003;.76727968;2.2480204;.88910913;.13376008;.56713122;-.29232386;.68176478;1.3855873;1.6078875;.17969885;-.20325617;-3.0455747;.58315229;-.45548761;.082975566;-.81263077;5.4302392;3.0470791;.86795157;26.230696 +.52745593;-.27100304;-1.0895786;1.1178108;-.98742694;.19200151;2.3204036;1.1745528;-1.3470939;-.31465149;-1.9952847;-.054887731;-.03852899;-.84069592;-1.6205336;-.19035687;.040941708;-1.3493388;.49836668;-2.0932419;.47403491;-.36891335;-1.2226582;-.52812088;-.40279135;-1.3176007;1.3578293;-.5641582;-.81703532;.22205916;.46962419;-.0045217257;.71444929;-.588763;.89916611;.44235656;.80039966;-.23923317;-1.0282685;.34729421;-1.271842;1.0621084;.39938271;.52306074;.55464596;-.17591777;-.037891231;-1.5702602;2.3219013;.24555358;-.90921837;-1.261256;1.5547957;1.261232;2.156141;.39932379;-1.1072696;3.8430638;.75151908;1.1215004;5.7220416;1.2876199;2.1193013;.35709316;3.4425333;2.6947906;3.6969848;1.6077974;3.3186414;.699875;3.1026254;-.8110373;2.7832842;.77305806;2.4011536;.87119853;3.4602334;.77218288;1.2680339;.59208912;5.1438785;4.2956796;4.0972633;-.35971376;.61791539;2.6915421;6.8102479;.55343556;2.2397125;.99622053;.55644578;3.2632525;.39197236;1.3198897;3.8214235;2.2330232;-1.5093864;2.288336;1.0432358;2.0101161;2.2097926;-.33478099;-1.1681719;1.8642917;.22482589;-.38404277;1.1966749;-.78368473;-1.4044863;.17158662;-2.8858144;-.55981946;.45452666;.092893355;-.33879706;-1.3785714;1.7119881;-1.6930833;-.070968077;-1.6133163;1.013998;.20757565;-.88540149;.012972821;-.40177953;-.15414762;1.1739914;-.82974809;-1.4665917;-2.3809276;-.7056163;1.7827312;2.1412146;-1.1280037;1.1376587;-.050759964;.1986993;-1.490176;-.71563965;1.9792176;-1.0717186;-.28868732;1.231398;3.0427754;-2.233083;.57025182;.85540408;-.47137967;2.6832182;.50929344;.13748696;-.11780182;.040626947;.32138559;2.2660701;.91151166;-2.6993024;3.4841754;1.8117814;1.362511;4.5751581;.97392273;.75012749;.11322674;1.5984402;1.4611675;2.1274476;.56112307;2.2728283;.5774495;2.1823902;-.72097075;2.4225359;-.045959067;2.1143651;1.1282433;2.5423756;-.13368532;1.4601099;1.9338758;2.1950295;3.0031505;2.5197406;.59554315;.0012020323;3.2344215;5.4929838;-.78727388;-.23265056;.63032174;-.081052773;2.1475005;-1.782895;1.792309;.40124413;-.082701653;-.75094229;.26230749;-.076725468;.58051169;47.010227 +2.1868382;-.037775118;.24673021;.87602741;.57752419;1.280251;2.0240993;1.8377819;1.4267414;1.8522807;-.15261218;-.25585276;-1.972669;-.25345683;2.1654215;-.88894784;-.35938147;.17522913;-.44923875;-.0052305781;1.1979357;-.11597583;1.2429577;-.26985741;-.099966452;-.94266361;-2.5580342;.70216554;.51889259;.087429084;.080748685;-.24601249;-.91547352;2.0311401;-.39650545;-.61838418;1.1405892;-.053478587;-1.0274187;.93320841;.15725634;1.0494083;.27701887;-1.5895649;-.82327771;-.078645632;-.0419848;.71329761;-.89551681;2.4648414;1.2820733;2.9368672;5.2358255;1.5214205;.81207424;.15836933;2.0761089;2.9342921;3.7389069;2.8288953;-.56756502;1.8182405;-.20897885;2.5643032;2.1232414;2.2890608;2.7696977;6.3989105;2.7261155;2.6027017;2.1606741;4.5231514;.43712443;3.6189785;4.7776518;1.8331474;4.9387174;1.4161804;4.7247128;2.45895;-.33104938;-.49929354;3.7730999;1.3306743;.13965361;1.3942133;1.7341655;1.8234934;1.2063278;3.3962982;1.9570836;1.6632937;3.9619956;3.6369586;1.0532368;3.7597103;2.789963;2.1343741;4.7951894;3.1443672;1.8854505;-1.6849879;-.21801652;.80739182;-1.7361523;.42830142;1.2201898;2.1246667;1.3729615;-.20828791;-1.053297;-.59668487;.42532772;.64121932;.58873779;-.11297955;.011328233;-.84049058;-.3697595;1.0856481;1.6265959;-.2979269;.4587287;-1.1726378;.18242656;.51998198;-1.7909811;-.018465281;-.3542293;.057739824;.4038983;-.90348774;-1.4077957;1.7956482;-1.6078602;-.061306801;-.056666106;-.88638479;-.48437732;-2.2457855;-.55933189;2.3630042;.020011846;-.70602971;.057047054;-1.8485608;.14414519;-.74189961;-.28751731;.55455559;2.4677398;2.8066616;5.0800695;-1.2277431;1.573275;.90552759;2.6954494;2.6111;1.4394811;2.7781794;-.90373343;3.1020238;.75499958;.55300301;1.8922898;.63786572;2.6137011;3.1184669;2.186126;1.9354861;2.2084668;3.667588;-.075203553;2.4902658;3.0573227;2.1487947;3.807354;-.54061764;3.7851586;.66215903;.43234354;.46010759;1.4427675;-.35087779;.39208513;-.071938299;3.788142;.68317574;1.836839;4.3434873;2.3161988;-.9152469;3.3478606;1.7040188;.51310724;2.5563691;.48786059;1.2952448;3.7745295;1.6961092;67.845016 +.55492127;-.83822119;-.3238835;.91932726;-.15758164;1.6832945;.51166278;-.87279356;.43831882;1.9694434;-.50667423;1.8451301;-.98198789;-2.3066018;.28839648;1.1750966;-.72327232;-.1687216;-.63762861;1.7291634;-.10002854;-1.1048965;-.89952213;1.1950393;-.12189893;.10175675;1.5823058;-.38190147;.43463752;.36734301;.99182987;-1.3645674;-.52632123;.075532034;.26052359;-.48433566;1.4529175;-1.2636966;1.4184896;-.66870958;.27794248;-.49917316;1.1128556;-.011105364;.78521127;-.14412853;1.125092;-.9344269;.43075264;-.8497842;2.4863708;-.66724682;2.5256433;2.0118375;-.91694611;-.3404716;2.3908067;-1.8485889;2.0734921;3.185811;3.2236955;-.73756021;1.8760451;1.2200916;2.5745263;1.1764749;1.7077377;1.800113;4.0170879;.49585912;2.7872143;2.9610002;1.4226049;2.9435215;2.817606;6.3448567;-.28232172;3.6436014;2.773205;2.1867716;2.8305721;1.7856139;2.844815;3.3027275;3.7246163;.2703394;1.9346875;2.0428164;.6904211;4.2338967;1.0254378;4.4230113;1.1862829;1.1082218;-1.2411121;4.9774718;-1.2932962;-3.3324373;1.8209827;6.5563107;-.57193851;.91113722;.60011375;-.36279532;2.5972824;.6555478;.45880407;-1.1979823;1.4979573;1.7609105;-.48136142;1.8104171;-.71389753;-.80202872;.40946281;.19247366;-2.348074;-.058866296;.1586574;1.7120122;.35543135;-1.2363036;-1.1462482;1.7370034;1.0486994;.50863981;1.5189239;-1.6289696;-.72994328;.28834736;.61725199;-1.4573834;.70394063;-.86051869;1.2602211;1.0641685;1.1215315;1.1383137;1.191262;-2.8518975;-.23259352;.18646242;-.21181387;.34131116;1.0336614;-.64507192;1.432632;-1.3610203;.77353376;-.46354082;2.0228641;-1.4937173;.46964782;2.2635682;.029305629;.68536532;2.4331634;-2.8185179;1.0016977;3.6390929;2.7215273;-2.9448218;1.7107371;-.51091582;1.2389125;.74783564;1.7233876;3.3164134;3.2298949;1.361432;1.4376864;.90203989;2.0780478;3.2956886;1.007943;2.0287175;.5171116;2.7803831;2.043009;4.0894918;2.0449803;.54671884;2.4257069;2.3501728;1.9523444;.8468923;.95127392;.79978746;.22958496;1.7078303;.20058864;2.9202275;.82835895;2.3007529;2.1339469;2.7089758;-.40299296;-2.4647369;-.33525065;1.819667;51.808033 +1.1040289;.077178851;-.17595975;-.13061179;-.51237029;-.7810902;-.33588299;.36508229;.63964552;-.57656437;-1.4954093;.11320271;-.0906168;-.95547473;.045948159;.042664509;1.0913801;.51021445;-1.6255772;-.79052937;-.018036084;-1.0519469;-1.5753928;-.61598778;-.86054242;-.6568343;-.91426265;.034339394;.27351263;.13099311;1.5315536;1.3428267;-.44093218;-.011124128;-.2732957;.72359413;.31710345;-.1072129;-1.6258568;.21501565;-.2571466;.50159645;.38486022;.65944755;-.13721676;-.21414585;.16379741;-.20481278;.50447792;.96883649;2.2457671;1.6987553;2.9135451;1.8169152;1.8191552;2.6722269;1.2754302;-.25501639;-.041964158;1.4846954;.44882989;2.036375;2.551168;-1.4260042;.88429511;-.14013907;-.46812302;1.8089426;-2.5432742;1.6437737;6.6581345;4.9821348;4.5409551;2.9915035;3.0883055;4.319746;1.0886472;.27111825;6.0088091;4.9588437;3.1034989;.28553942;2.0414586;.58672976;1.7029183;.30777752;1.9131348;3.9677327;4.2651725;3.9017417;-.33746737;1.350796;1.3271329;4.7074742;-3.0672534;2.7435663;5.7106318;2.4847159;3.8087299;3.1638114;1.0274441;-1.4760944;-.5180406;-.10709717;-.13178229;.059330042;-1.7556648;-.10927849;-1.0092568;.49210593;-.72230506;.42333624;1.6096935;-1.9312242;-.49747711;1.2634032;.9832378;.87294459;.60501009;-1.3947054;.71289635;.084287256;-1.7959642;-1.9008512;1.3860868;-.73500717;-.067042954;1.4503647;.90869474;.87476486;1.6071476;-.18831748;-.90305156;2.6429725;-.43471512;.40972024;-.21154797;-.53296036;.43128461;1.2144749;.22428796;1.3048047;.19410436;-1.3117944;-.30443504;.40684918;.95221663;.37867898;-.87219727;-1.3783553;1.3316162;.57499218;1.9857285;3.0884073;.66431272;1.2652276;1.4013849;.013855264;1.0687016;1.1141973;.35597903;1.4438919;1.7510879;-2.5934114;3.4482725;.10963007;-.92661029;1.7606192;-1.3473681;1.7921516;4.6731491;3.5957003;3.1005719;4.3369131;2.070837;3.3317189;-.82050866;-.08915595;5.8869333;4.1221581;2.3800635;1.2947955;3.7177377;-.60335022;-.11652105;-.54219753;.70390028;3.5666184;3.4806335;2.3006604;-.15029892;2.1261015;1.1359203;3.5645041;-1.4483747;.42072633;4.8982868;1.5996006;.5402739;1.0098315;48.025764 +1.5084058;-1.5246084;-.13325447;-.99280113;-.13002086;-1.4792659;.34127274;1.3426107;-1.4793643;-1.2099701;-1.456484;1.4700866;1.8099381;1.7513651;.77274114;.57183123;-.11969864;.1869971;.74053729;2.6401961;1.6512015;-.27348807;1.3611103;-.35596123;-1.3712889;.43469709;.52133459;-1.0116786;.66662478;-2.390938;.14201166;-.66352576;-1.4775511;-.29743874;-.024552474;-.50659478;-.017717259;.6360991;1.8984343;-2.005271;.027926415;.35089102;.075809807;-1.3229656;-.64496857;-.22240679;-.35262409;.89900899;.96318603;.59253913;-.49149388;-2.5512586;1.957715;-.39168045;5.4222741;4.9171906;-2.4590232;6.2434435;4.6556726;2.2059913;-3.8282363;1.6058255;1.3599113;1.7046552;-2.2977774;3.6836882;3.9147632;3.952785;4.2591815;.82807827;1.3338122;-1.427772;.030146219;4.1273646;.084753685;4.6395116;1.9475635;.96237421;.55618018;4.5304179;3.9916997;4.4820113;.27521139;5.3747911;3.7831163;2.6449971;1.7157136;-.67627287;-1.1069441;.25259247;.40986049;-1.8361082;-1.8508998;2.9952877;1.0478725;.56913513;1.4336487;-1.6080528;.21711546;.82863134;1.0342485;.30177838;.033431675;-.54381627;2.1059074;.70908618;-.25675607;2.1680732;.087242037;-.57507092;-1.8039161;1.100704;.61628163;2.2887812;2.3047903;-.46075669;.65242022;-1.3279115;-1.5305777;2.8456914;.43342701;1.3418936;1.2962151;-1.4161481;-1.1124412;1.7399412;.56089151;.0038434814;.42398906;-2.478107;-1.793382;-1.5376712;-1.5703195;.30802301;-2.0621624;1.5780976;1.6224428;-.14733702;1.0876218;-1.5471985;.43712854;.53873694;-.40744182;-1.382064;-2.453871;-.28703031;.41237736;-.41923618;2.0555487;-.35638615;.14540149;-5.0563965;1.399779;.30693555;3.2299395;4.433979;-1.3216486;4.8544402;3.9076343;-.014570228;-2.2832093;.32437864;1.7333779;1.578325;-1.6571881;2.558851;3.1007569;2.6167367;2.3552725;1.8809397;.30785716;-1.5767508;-.43685022;3.9160013;-.62693495;3.6062238;2.3807459;2.6882274;2.0538337;.97509384;2.7739654;3.1803334;.94316763;4.7116103;3.1271164;.78129745;-.40599117;-.38227195;-1.352668;-.3487958;1.1170039;-2.4143872;.28098488;3.0277655;1.0825886;1.9316324;.99742609;-3.1132705;-1.5194998;.9620623;34.724773 +.58580542;.49017903;.27676103;1.4022713;1.3050644;-1.3423566;-.76296204;.87936044;-.46071911;.58492696;.72284967;.80383849;.91718805;-1.3437515;.39162952;.5477919;-1.4053928;-.26491392;.061360251;1.1498858;1.5076302;-.42699105;.72884524;-1.2970977;.16968456;.6469264;-.3406572;1.2699355;1.0450058;1.2581826;.46509579;-.58964235;-.73923188;1.8149989;-.37006941;-.4224745;.86345661;-.82758445;.14754868;.11679782;-.36594179;-.12810101;-.77204025;-.93124968;1.2336196;.26549569;-.61974502;-.88399553;-.024523143;-.23991537;5.1126623;-.34457552;.68313712;5.8104596;3.2884712;.64122254;1.4450487;-.23155004;-.40416658;5.5891347;4.1386952;-.012978835;-1.9545648;-.20367616;2.8435624;1.664539;.49064225;1.0712594;.58268219;.56289953;2.0724106;1.3262699;-.25317955;.41823497;1.3836654;3.3101926;2.7132843;1.8003297;4.409121;2.8892081;.15766345;2.3607154;2.0318677;2.4746625;1.2140882;-.89153188;1.7518137;2.8647702;1.7771728;2.2919905;.1878792;3.0173318;3.1546862;1.7436935;1.1328423;1.5610592;5.1901517;5.8204575;-.31602314;1.5281968;.36003289;-.4716273;-.35387656;.60885566;1.6304493;-.25408873;.60543066;.56130326;.62079412;.32326186;1.3485992;-.4932352;-.61895233;-2.5228577;-.36422533;.12938303;-.19197486;-1.1104023;.88702852;1.2634364;1.2815952;.19561461;.58822942;-1.737826;.49360341;2.1393809;-.27420974;-.14449896;.94161564;-.14327091;1.2034903;.11503062;.61867779;1.7902418;-1.8124869;-1.1370476;.90637314;-.042706594;.14421602;-.92509735;-.079002663;-.11558042;-1.0282708;-.67286056;.55402356;1.3383529;.11023217;-.88758129;.47971413;-.98943543;3.713748;-1.265907;-.555435;4.2536678;1.9343256;1.699497;.58086944;.35951963;.27632895;3.7253702;3.0522492;-.93102413;-.66321206;-.50154507;2.472414;2.5527475;-1.2814215;1.1245581;.40635926;.37978056;1.4617707;.57757765;.89452958;1.7248106;1.064014;2.0345073;1.4459188;2.4339066;4.9421854;2.0577419;-1.9233507;2.3209305;-.7361024;2.6516027;1.546551;-.058263365;2.5135067;1.3820785;1.2455566;2.1416206;.91902602;3.669765;3.1028771;1.7982489;1.2389418;.81000292;3.2996857;4.3889728;-.33741584;.40623888;46.868298 +-.56346756;.91852415;.32016936;-.76964152;1.2210147;-.69288224;-.62210357;.47201586;-1.8577801;1.7013658;.33302358;.26603597;-.44356868;.39588511;.075541608;-.20007351;-1.264701;-1.8238568;.89231408;-.17884016;-2.1622534;1.1493373;-1.5323092;-.6342203;.89617836;-2.3999882;-1.8664196;.076647013;-1.1989597;-.46262926;1.275247;-.2228217;-.47744593;-.044843175;-1.3676807;.33128121;.092885442;1.8820155;.93576998;-.13352498;.11660711;-.58139604;-.85054928;2.7884421;.51792687;-1.3395042;-.73773342;-2.0167017;.45213622;.88886648;2.6629152;-.65501529;4.2544751;.17709891;2.8541896;.54585481;3.3184786;5.5906453;3.3583119;-1.2595031;4.5897889;3.1801949;-1.3314729;4.6950469;1.2422311;2.46297;-2.0309877;5.235939;1.0230759;1.9740759;.410456;.76066834;2.3697097;-.72759765;.011238563;-1.1466836;2.8048851;-1.9472693;1.5754241;-.94582826;-.58851457;.79722726;.9096421;-.39551911;-.19214466;-.77955979;1.914742;2.3406777;1.5646157;-2.327816;3.7808402;2.0249944;.070571572;-1.5009367;1.946402;1.8652689;4.5200014;.77523077;5.6339312;.33526254;-2.1881073;-.51877123;.1161598;-1.3330965;.83675444;-1.3465724;-.41467386;.012773337;.080839604;.11441923;.59620088;2.2443132;-.53980958;-.94131207;-.65160722;-.70836395;-.21749492;-1.5575175;.45065752;.44935885;-.84239221;1.8043665;-1.4546386;-1.2761761;-.32913899;-2.2626984;-.43971637;-.89237869;-.48333076;.87993574;1.0023113;-.026760785;-.1201849;-.61880398;-.42922041;.65732008;.73093283;1.910045;.21743737;-.16352698;1.2064743;-1.1906282;1.7425581;2.0139847;-1.198752;-.99802667;.58238065;-1.0062773;.78085947;-.40320969;.44313481;-.56306583;2.5912871;1.1379529;2.855623;-.43630797;2.4022968;3.7419958;3.0455008;-.59779173;2.8852134;1.5834479;-.76267248;4.7670183;2.973536;1.9581859;-1.6296574;2.903476;-1.2756611;1.9221663;.9219504;.77329612;2.5925136;-1.2341286;-.023255421;.21525425;1.9412298;.39482036;1.245204;-.59057659;.44687304;.18998601;1.5236044;-.73672783;-1.4264432;-.30802554;1.228376;2.7263064;2.7188461;.074578553;.66569287;2.7996449;.66563398;-1.2763857;2.5145016;1.3713214;2.2668486;-2.1199017;3.9565079;-.66928047;37.565796 +-1.2222085;-1.2726054;-.38508403;-.43560317;-.055930447;-.45982826;.59566331;1.7976692;1.8317864;.026504895;.51150113;-.28978956;.48926601;-.82557529;-.2483477;-.84661341;.21845901;.36290127;-.071567923;-1.4407717;-.093505241;-.89423537;-.29802215;-1.5440919;-.14042701;.58216912;-.35013673;2.0376022;-1.2777759;-.13676803;-.2923038;.40999341;.18469028;1.445433;.6382035;.61456507;-.95712262;-1.3712021;.18456592;-.98804587;-.133481;-.044427797;-.71480203;-1.275889;-.041486483;1.4648006;-.024113409;-.47139877;.98363805;.20874529;-.22807559;2.5983405;1.7297599;-.78758806;2.7981977;2.4263105;1.84168;2.5502207;5.7630634;4.4913487;.97412831;4.4051452;4.0685472;2.6407166;-3.9062834;6.3049655;.76152325;3.4648297;3.2211087;-1.5138419;-4.310008;-.63884896;3.0456798;-.22040862;2.3410373;1.8403643;3.1782436;4.3935623;4.9077044;1.9975419;3.2159059;3.4495409;2.5573382;3.6657591;-.60023957;3.9079819;1.0134073;1.8030772;.89230061;-.25467411;.88456428;2.9230185;-.01918214;.50151306;-2.35062;3.0681837;2.6214101;-.62957782;3.0850427;-1.9952054;-1.1793035;-2.6431019;1.889946;.2055333;-.55551505;-.95618975;1.5095479;2.6198776;2.8897262;.84563315;.30161279;-2.5098445;2.0122049;1.115522;-.68494558;.78028333;-.35993451;1.0567558;-.63946784;-.25354186;-.67598486;-1.0923024;-1.4226714;-.25429541;.0089213615;-.91132885;-.69058055;.41871229;.34097883;-1.6590064;-.95123369;-.5364964;-1.9165145;1.5789011;-1.1480969;.93187916;-1.4098406;-1.328493;-.49742192;.26334026;.85335958;.098749459;-2.8657722;-2.0167143;.017200856;1.2261364;-1.2265534;-.42600048;1.0102216;-.35425341;1.2390488;1.1063635;2.8998702;-.090299107;2.1934102;1.657997;1.6497272;1.9652269;4.6609764;2.4303088;.52767533;2.1432898;3.7740278;2.4911788;-3.1839371;4.0814233;2.3555858;.69004405;.57701027;-2.0616479;-.85959375;-.85464245;3.0147996;1.6433721;2.309011;1.0683559;2.1705465;3.5945032;4.0724611;-1.174251;3.6615434;2.7618384;1.7404754;3.5150518;-.6297102;3.359359;-.75542462;1.2874517;-.79732841;.89000332;1.7753379;1.5225842;.19483432;-.58401;-.49140292;2.0092993;1.6001139;-.083118543;2.1818607;-.51511711;45.931244 +.63247657;.28732523;.8155039;.5877344;-.70318586;1.5240959;-.79826558;.1445642;1.6237488;.57467413;-.47301379;.51008028;.54053015;1.2799699;-.4823994;.038126912;-.17274778;1.0861015;2.507833;1.5009798;1.7251208;-.16940123;-.89264721;.65002632;-.037081428;-.50066477;.1704924;-.65258843;2.6105285;1.5830973;-1.0419241;-.19169053;.62986749;1.5761063;.59214252;1.8665119;1.2927932;-.98455715;-.62343234;-.61296809;-.76020902;.11473127;-.084285259;-.7685132;-.88370943;.23593254;-.06158971;-.69472456;.09454675;-.4265523;.40099102;1.964674;1.9810653;.80484319;3.2640138;7.1050262;3.9357617;3.5509896;7.3263154;5.3749723;1.6048496;.16881676;.25306097;4.7562294;.91226506;3.801532;5.7611704;2.1557081;1.8618884;.72915936;5.8244047;2.5312364;.21623266;4.7166581;6.8684759;.96676177;1.9391717;4.3490634;1.2812461;1.6688129;1.8611485;.91403073;-.10954816;-2.7861426;1.7443235;-1.2469723;1.2334346;3.5294213;1.4018714;4.949461;1.549283;.95076185;-1.1441498;.28404969;2.1662614;3.5990362;1.7709295;3.850857;3.0813477;1.850616;-.58412242;1.1740434;-.15942931;-.21158203;-.80560148;.35120755;-.18029054;.093036257;2.1307876;1.3857353;-.35758001;1.3287719;.3082875;-.65746576;-.94791025;.47386613;.53570449;.94444627;3.2693801;.28612083;.35843125;-1.8754873;-3.3095922;-.10001553;1.3528515;-2.2717981;.15303178;.023202909;.23348311;.63603157;.66686422;-.32329011;2.1501338;3.0682425;-.29527122;1.3577505;.48846808;-2.6728232;-.46829736;.30308306;-.16107541;1.064027;-.082705408;-.55132622;-.01700785;.13667879;.16803457;1.1280531;.21461244;.476383;1.0997251;1.8550991;1.8991793;1.8193696;3.7793844;3.5113437;2.8058014;2.9485857;3.7970805;2.525691;1.2711653;1.0676457;.20107542;3.1850314;2.3351877;2.7317197;2.3901875;1.0354106;1.9315429;-.49160284;4.3437757;.75032717;-1.6207725;2.8950498;5.135838;1.3889294;.91880488;1.660741;-.12048839;2.6044011;1.3492361;.36139962;-1.8893385;-.77984142;2.1447206;-.44015202;1.9933182;2.6431148;1.6801038;3.3148479;.93096197;.054552801;.28156048;1.0025669;.50215864;2.8374455;.29265964;2.0304263;2.4877954;1.9534873;71.742416 +-.060401697;-.37162074;.33345616;2.0097144;.91125423;-.36465362;-.81124604;.47215095;-.59889919;.60568756;1.1581731;-.94702899;-.35626054;.047906116;-.23039281;.39267334;.099634089;-1.0610677;1.2560681;-2.1621675;2.0200915;-.36870953;-.98662925;-1.5301949;-1.5931733;.35785744;-.1851372;1.0372186;1.0211219;.86620522;2.3127775;.16428812;-1.2405459;.24800773;-1.8744226;-.092077084;2.4934912;.8119778;-.21060254;-.11731249;-.84126115;-.73039287;-.7098273;-1.1856734;.57777429;.068276808;.23425736;1.6702656;.12907028;-1.0539128;1.3878821;.34764552;2.6251628;.87542868;3.7157171;1.4082482;1.0286487;2.417237;6.7142696;2.5067379;.8651312;4.8529086;.65340638;1.1055392;.1993977;1.3018266;-.38937476;2.3068604;3.9909601;2.2038004;2.7085433;5.021843;5.6514816;3.0111678;3.8672619;2.7182617;.52000135;-1.3499364;.18438885;3.5027733;.24234283;1.556998;3.0829527;2.3791785;2.2730761;2.853056;3.438318;3.691191;5.883039;4.9523573;-.31670856;2.7528703;2.7489145;1.2714851;-.72017646;2.2347744;1.3891568;1.6220286;4.9176188;2.841908;.84179056;1.5049865;1.6527299;1.3643709;-.72105592;.63020122;-1.3778077;-1.059743;-.12911336;.8507843;-.022587677;-.72534007;-1.2709121;.82823586;-.73415005;-2.0784876;.76631075;-1.2672666;.54989088;-1.5906266;.53176326;1.1877249;.20187043;-.86321068;-1.8851274;-.24115336;-.55593175;1.8380171;-.52575505;.64679021;.84832269;.92471462;-1.228519;.0285511;-1.4920452;-.3450017;1.0036489;.8059991;.43635648;-1.4319131;.83624971;.89591497;-.77000397;-1.3649734;1.1323673;1.8975036;-.12714511;1.632303;2.1414266;.50509906;.7684893;1.3748193;1.7366519;-.73688698;2.850949;.90885568;.96054751;2.6973531;4.5178981;1.4834901;.82678127;4.0241604;-.39374173;.84183359;.33381817;.1672093;-1.232632;1.5959706;2.9078436;2.3223121;2.2434549;4.5805287;4.4877124;2.4653919;2.8614349;2.5711946;.16892962;-3.0428936;-.36778405;2.9685593;-.44245476;2.5089605;.83177835;2.1164072;-.0048370026;2.5247331;.98226565;3.1065445;3.7111313;1.4451388;.19379324;1.0141008;1.2312849;2.2522819;-.068890139;1.567296;-.30748135;.82941025;5.4870644;.39468941;63.85722 +.68354386;.50644273;.95497251;1.0047269;-.25324506;1.8221101;-.21760538;1.9266657;-.36554733;1.4819375;.89897019;-.91573572;-1.3003178;-.48749819;1.5360266;.66788548;-.79283941;.893363;2.5131936;1.1413831;-1.1709298;-.017475475;.23135856;-.89653254;-.34048414;.10842488;-.066126697;-.36556232;-.28755304;.22932388;1.6186841;-.97058904;.041062947;1.2229819;-1.906172;-.096293181;-.38827789;-.46033013;.21943893;-.84741074;-.74849391;-.067585595;-1.6640656;.67919481;-1.5069804;-.1846202;-.86229992;-1.6306913;-1.0796857;-.63111842;3.6976004;2.3647058;1.0836463;3.3629615;-.23696108;3.4290187;-.41367424;3.4673593;4.97896;2.2486269;2.8235974;4.5348229;2.1428657;4.7779422;.81663805;.29197666;.44020006;1.8413838;-.92106235;2.7716486;2.584162;-.0048975209;3.1977828;.477907;4.4816184;1.4190698;-1.6907902;1.3610783;2.1664925;1.1308811;-1.0680723;4.0569725;2.2718365;3.4808242;2.9118166;-.61021549;-1.8627665;1.5888212;3.1217065;-2.9421446;3.7465434;.37047464;3.010252;5.4355779;4.4664268;4.3146858;3.769383;1.5183433;2.9796612;-1.2243351;-1.3252482;-1.0739454;3.6715176;-.77571988;1.2544818;1.6081524;-.39352548;.37724876;-.58745575;1.720711;-.14311637;.28627676;-.51632845;.80022258;-.013639361;-.024283754;-.31685007;.67625123;1.9933712;1.0592268;.23971492;-.49787968;.35976598;-1.5791703;.08348649;-.70086259;-.60498178;-1.4135779;-1.3857179;.82960624;-.17573835;.30660078;1.3790098;.78732204;-1.9020392;-.42987454;-.33282223;2.1094227;-.021313125;.8513999;-2.4678171;-.77267748;-.60365403;-.82583225;-.63729835;-.52590519;-.68599856;-.60404593;-.22814687;1.3106421;.66171765;1.7054678;.12244519;2.7638071;-.087130316;3.0043554;.98787022;3.62218;1.3276749;1.1630169;2.2491927;3.7363765;2.8099155;3.5477953;.12848158;-.85037917;1.1394383;.01163388;-.55400944;1.8244512;1.3167441;1.3463718;2.6609645;-.25488254;2.8749347;.19901931;-1.2967968;.86107302;1.9899249;1.7349539;.069822125;2.1737638;2.3609242;3.1410115;3.0438745;-.50635964;-1.2010809;2.6107624;.51453656;-3.5468624;4.2381907;.0083391638;3.7220693;5.8063807;3.7749505;2.9748015;3.3565941;-.43933031;3.9381669;-.69319862;54.680931 +.72662723;-.48359072;-.96932298;1.1799476;.48037073;-.90209752;-.16329828;-.46385357;-.58708763;-.83914024;-.97103882;-.095201202;-.63691187;.33105373;-.62253755;-.96880627;.80569994;.24994615;-.68691951;-1.2467033;-1.1902633;-.14241819;1.2196196;-.19440714;.035896923;-.64147413;.72825408;1.2046902;-1.0087254;-1.6557628;-.74225253;-.35015413;-.79762524;.61969769;-.80113369;-.10214274;.64307123;1.4682088;1.6350468;-1.0314355;-1.0615193;-1.2682676;-1.7786616;-.89172041;-1.1078593;-1.3308631;.38512707;.52938497;-.15440936;-2.4717858;2.3978386;1.3366625;-.52558339;.30099919;1.7440947;-1.7434256;3.1032903;-.26250869;.67077881;2.0533409;3.5767817;6.674643;-2.0911458;1.116514;2.2533007;4.7756052;-.22006497;-.98530698;4.077723;4.200253;1.0096837;-.26887971;2.927886;5.472578;-1.8822131;.81887335;-.073054016;.18291232;4.5673423;2.8522465;1.1479658;3.2210093;-.70904672;1.1311945;1.4918234;3.3300693;1.5423795;1.0755094;5.8785386;3.5502164;1.2778794;3.6862888;5.1579242;.61477423;1.5604954;.40572211;2.8166709;.75272644;4.8688955;-.66513842;2.5356846;-.59542471;.6668846;1.6492763;1.022839;-.34701103;.11703787;-1.1533515;-.077278361;-.83299392;-1.26773;-1.1181339;-1.1632934;-1.8867193;-1.7551196;-.73842794;1.1772718;-.53762656;.11143932;.096842781;.82518417;.9781177;-.60798746;-.42388904;-.75447708;-.69943118;1.5589546;.89914107;.022713451;.48698449;-1.2386662;-.29962468;-.92581528;2.6609471;1.6381472;-.73192346;.22538313;.88255078;2.3284729;-1.3627284;-.025872786;-1.5653805;-1.8615732;.57707518;.9708842;.01424082;-.27303401;.47254217;-.19674729;-1.5475785;3.1298335;.40281066;1.4594892;-.031545274;.11245237;-.75280172;3.7758532;-.73166585;.69317496;1.5108714;2.6942601;3.2434111;-2.7586794;.58120763;3.5297985;.84457999;-1.6785361;-.13907975;3.2457759;1.6146301;.44866428;-.22303307;.87801886;3.0130949;-1.3884125;1.5184476;.11839236;.72964096;3.0075195;.89381307;1.8546141;1.3986337;-.96024358;-.54990751;1.3702865;5.5381742;.70910996;.0004738672;2.651268;3.9580801;.22054031;2.8003445;3.5959108;.42382613;-1.7488939;1.2586099;2.6131492;1.619339;4.0583687;1.03376;34.904739 +.26539505;-.91650414;-.88272065;.16703722;-.48689401;.62259722;1.0116603;-1.3324878;-.36796302;.10373718;.35001349;-1.0738883;.3184661;-.68132353;1.6316578;1.2350808;-2.010406;.30104515;-.20083547;-.53900081;-1.5922707;-1.3212945;-2.4892898;1.089862;-.90651369;-1.4028227;-.35287684;-1.1218688;.71699369;-.00339681;-.39655617;-.4668057;-.48513258;-2.6926737;-.91087312;.23273332;1.1081467;-2.3204317;.65431833;-1.2143385;1.0047616;-2.4929242;-.84824336;-1.5539343;.76256508;-.27022824;-.92581725;1.411705;.29011324;-.80466092;1.9610424;.53601921;2.8089142;2.4233394;.012074893;3.1100621;.25905144;2.6046984;3.2081311;2.9814062;3.256706;1.9491501;.40731293;.30063537;.35339293;1.4448415;1.7062776;-.51024961;6.2787209;-.34167621;1.7406759;.20676987;-.46061984;-1.8213979;5.1384068;3.0888004;3.9107468;2.6890132;2.8107924;2.830277;1.5543586;.45385188;.35119084;2.0959969;1.5401994;3.5264373;-.0013777261;3.2098541;2.1848624;-4.1129875;6.0598402;1.1727104;4.8705506;-.87166214;3.3500495;3.7984588;2.8015912;2.6913652;5.651123;.68278998;-.88712734;-.0049095009;1.3736594;.0225612;-1.0901203;-.70494688;1.3878293;.90137756;.91770595;2.2399571;-.084399328;-1.0985184;.23251905;-1.0827574;2.9015186;2.0151765;-1.9524952;.19856925;.42136958;1.1432509;-.022293124;.20052652;-2.2986257;.71068352;-1.9614559;-1.6950582;1.2323799;-1.2190728;1.4726838;.33950266;-1.3785636;.85948491;.071140476;-.091629691;.14502926;.23435976;-1.1673602;-3.5272906;1.4397992;1.1940897;1.5432868;-1.3039991;-1.7693453;-1.4033098;-.17948687;-.23504978;-.18019168;1.0840708;.049048394;-1.0615735;1.0125897;-.90464002;4.3374214;.50986338;.69840777;1.8949112;1.3115476;2.2074971;-.56073052;2.7458603;2.6911991;2.9040036;-.64677262;.54139936;-.35695282;.59217119;2.3540628;-1.020823;4.0804186;-.40103167;1.452732;-.10758527;.58970755;-.72953892;3.9145601;.64125311;2.2019517;3.6450748;2.0265722;3.7336967;.44246066;-1.5034541;-.27716109;1.7312663;1.1018599;3.3551311;1.7684978;3.1435428;3.9355168;-3.6606183;4.5839558;1.4956368;3.3619728;.54061019;1.5653563;3.8642294;1.575434;1.8649635;5.3965297;.32401684;41.337223 +.62868124;.044984043;.21538533;-.072403565;1.7610294;.53091079;1.5169535;-.60250968;1.4405481;-.33726832;1.8370883;1.0113239;-.57746917;-.60217744;1.3109537;1.1347616;-2.2808335;-1.4626355;.25203681;-1.1047505;1.4794555;-.073309921;-.29125655;-1.1754601;-1.4782808;-.3825298;.42249623;-1.0378487;1.8582023;1.4185911;1.9099634;-.42802364;-1.7706769;.75302792;.036150418;-.17349237;-.3887279;.67322135;-.30906877;.30571204;1.1133431;.54997194;-.24497867;-.80502182;-.82089388;.24339315;-1.0964093;1.1015552;-.13787243;1.5062087;3.2579858;-.50690496;4.5300331;2.4394596;2.7646124;1.6535989;3.0105731;2.7910976;-.4938511;3.9258218;3.9359989;4.6610284;2.2076681;-1.9319485;-.49975678;2.6704645;2.6685131;6.4068885;5.606421;2.5216098;-.83823389;4.2070117;5.7472839;-.024369581;2.3956938;-5.3024554;.3793371;1.4077154;.83250725;1.4869719;2.7159822;3.2744076;2.077713;.55061567;1.9157134;1.9785348;.50230247;.24928707;1.2907262;4.4450183;2.6140995;4.3610315;3.8795106;-.44810745;6.3362875;1.4323201;3.7707064;5.9091272;1.4280753;3.1425521;-.20158306;-.83750528;.99010587;.012647713;1.7313212;.29426929;-1.0947261;.46079031;.81249142;-.3965188;2.7224877;1.5000069;-1.5318716;.015644921;2.9445395;.20528091;-1.8159126;-1.3017039;-.87054557;1.1307614;1.2185428;.39262289;-1.0276182;-1.9934732;-.25044736;-.0072383177;.3573038;-1.0703763;1.4546539;1.3530608;.32338208;-.89909154;-.82589471;.8524403;-.30442435;.67731285;-.24548036;1.4306864;-1.3190336;.96007198;1.0817277;-.15962948;-1.0900558;-.99312311;-.8523643;-.65700263;.088716641;-1.896536;-.25740823;-.31468877;3.1667726;1.1391861;3.8575945;.30265194;1.7517775;.7876994;3.9470301;1.526046;-1.2814908;3.2429991;2.7565033;2.9101572;3.2545266;-1.356519;-1.205179;.65811676;.95425171;4.8942246;4.6591625;2.7909369;-.16638263;3.0118213;3.4666305;-.12763101;3.1589029;-3.8452935;-.24153467;-.15389264;.75539744;1.6651808;1.8148788;1.5111357;2.4015362;.71415913;.3996321;.84052843;1.1261328;1.530758;1.7273773;3.329751;3.1444991;4.7562099;1.8930714;-1.2384764;3.8923097;-.91057086;2.9391201;4.7565393;.86938971;2.6041827;59.331825 +.21176958;-.96984392;-1.0043645;-1.301333;.32126558;.8544327;1.1168897;.51438153;.33896601;2.1322711;.77938163;1.0273732;.4573018;-.61653465;-.59246862;.8425191;1.3450818;1.309356;.090471536;-2.855679;-.13453117;-.59170908;.43429658;-.1719262;-.41652152;-.79556167;.55620444;-1.8321594;.45916873;1.0889479;1.2593029;.71060622;-.44877535;-.86482137;.99023324;-1.4285175;-.35853776;1.4029363;.41248423;1.0210087;-.75556237;-.62181836;.15334667;1.4093844;.7102319;.27379006;-.14121968;1.5066736;.034517948;.23042081;-2.0452847;-.53553343;-2.7892301;-1.1936052;.30506739;.17624472;1.1900437;.9110297;1.2404273;1.9062748;3.3384497;-1.0022905;1.8502494;4.1887779;3.3571143;1.0686076;-1.6235324;.16540618;4.6444173;4.2127171;-1.1362603;5.4470081;5.2264447;3.7434776;-1.6010813;-.84335113;2.4415004;6.4210992;3.8486125;1.2164662;2.2275906;1.7803392;4.8295436;2.3135026;1.332273;3.4052784;3.3482864;1.7126615;.26631409;-.89727402;.61751419;3.7347288;3.2551975;4.1255493;3.730108;-1.9960351;5.0428562;4.8714099;2.893173;1.9430126;-1.1085378;-2.1856477;-1.3244994;-.13967551;.80405259;-.29593325;1.8790747;-.53133929;-.88954985;.53953636;.032173589;1.105063;.70568144;-1.0118309;-.55768919;1.6491534;1.1780859;1.7977277;-1.8275107;-4.170845;.43422273;.54121059;-.51324356;-1.3426136;-.41776815;-1.4944285;1.296551;-1.0413955;.9063437;.52360708;-.17677866;-.18043353;.75182164;.50400543;.96299505;-.46705779;-.69603622;.4553397;.30708203;1.2016376;-1.8393284;-.80378276;.35090801;2.9475448;.24815649;.89802992;-1.8287724;2.087182;.39557266;.057789434;-1.9860682;-.48569664;-2.1771398;-.49512458;-1.404533;-.14771736;.048905872;.83879477;2.0022564;1.4353405;1.9505545;-.57476056;.44410387;2.191263;3.1509941;1.0005869;-.20309514;-.37220201;4.8929768;3.2408125;-.3731952;3.9868731;4.255178;2.8428111;.11990155;.042138863;.6151461;4.7720213;1.5497196;1.5454022;1.3658327;2.4857056;2.6739376;2.4460495;.6948334;2.1093693;3.4136491;1.1650783;-.19308604;-.14065619;-.48782173;.8593545;2.9049549;2.8948805;1.9868841;-2.4055648;3.361738;3.6683447;1.1764388;-.021854457;51.065434 +-1.2383225;.59037364;.77675867;-.77668226;.554676;.5725072;-.26343441;-.8953836;.40641069;.48299488;1.3493427;.54440868;-1.5064368;.48899984;-1.7176329;.40892732;.97313368;.16777976;1.0684627;1.1690447;-.050858792;-.30019;1.037513;.9325211;1.0336587;.16219866;-.31099167;-1.81663;1.8767809;-1.1103024;-1.488449;-1.946375;-2.3795145;.7052213;-.13316567;-1.3313364;-.79119724;-.71861994;-1.1053672;.41812271;-.18511923;-.23804533;.052897178;1.3923019;.32641858;-.5447346;-.067140609;1.5802976;-1.0615159;-.82809877;.053779323;1.4205545;2.4077094;.87146401;-.21836619;3.3726823;-1.2419442;3.9758787;.40191379;5.175899;2.0955358;1.4083375;.24189477;.99650288;3.0807323;-.026694246;.51205146;4.2715802;4.0933542;2.6901329;2.8639317;.4078218;1.3770696;3.1714172;2.9865937;-.41994891;1.9187887;.81769389;1.8146646;4.5761409;2.1411788;.35819706;.69398272;3.9076746;1.6126246;.38833484;3.9428716;6.5413909;.30335292;4.3448219;1.7487808;1.7059145;2.4322214;2.2292695;4.3609672;1.8464364;1.1482874;2.6528957;2.9261265;1.8427516;.81440014;-.31249136;.37206706;.5721007;.66754848;-.27384636;-1.2477274;-1.0415033;-.34651276;.93029439;1.0480094;.28653646;-2.3733878;.80106586;.094897963;.18765908;1.3404574;1.4080322;2.5401242;.23627421;-.22543855;.98481172;.43312797;1.0147167;-1.1171886;-.36487925;.54014051;-1.0802618;.97741252;-1.519609;.24498127;-1.8077512;-2.5453844;.39850363;-.51312864;-2.1644409;-1.3215427;-.91179067;-.40859169;-.57985479;.10574238;-.80643654;.18738617;1.5939894;.78495955;-.0017757915;-.2028546;2.4404645;-1.7589238;.08503405;-.31484103;.54120779;2.4400041;.39147052;-.017604021;3.1637995;1.4831225;3.3449452;1.0671948;5.1715479;.23398006;1.7960693;1.7286171;1.485315;2.6174521;-.20064358;.0083399853;3.5396979;2.8945603;2.0255158;2.2988722;1.8581815;.46579784;2.4086392;1.488825;-1.1519951;1.932948;1.2096282;1.6366391;3.2210443;1.7836882;-1.9768295;-.15789661;3.059093;1.7906117;-1.1182119;3.5129721;3.6244822;-.039062079;3.6522319;.16766475;1.7389046;3.5550456;.10863994;3.0519416;1.0944096;.83255839;2.1094182;2.0052161;.50256187;53.17865 +1.0176046;-.098957866;-2.1531746;.67542392;.93335366;.021331716;-.59583193;.042479225;.22666875;-.37217602;-1.1977874;1.0062361;1.6376686;.2934719;-.55047119;-.75140268;.76787722;-.38347596;.43629426;-.68147314;.43862045;1.9423103;.10927099;1.1610116;.43232524;-.35459512;.22010899;.49043906;-.43159735;.78586602;-2.8246334;-.99331206;.061225012;.41437837;-1.1409808;-.87815869;-.84264368;1.4097745;1.1472158;.045009229;-.09218058;1.0068566;-.89329153;.94044459;.4122417;-.9064644;-.67317122;.68981647;-.81645411;-.077103138;1.7936865;3.6313524;3.0932956;3.7731962;2.8601327;3.689136;3.4885201;-.13459232;-.54168564;1.6939564;1.6665281;3.1839826;3.0214453;-.08533968;2.3339314;1.3837528;2.1780608;2.1065447;1.428584;.40255642;-.36960155;6.2757845;4.0655026;2.2038596;.73656839;1.2208529;2.9268687;1.4883078;-.90221024;3.89378;-.93301952;4.2742062;.65918171;2.8100612;6.3904877;-.91248637;-1.2406487;2.4396234;-1.6976691;4.2370229;.22368023;-3.3241186;.70933342;-2.2709069;1.6307021;1.3430043;2.4082139;2.5988359;-.34821671;3.1166263;.92087734;-.70804632;-2.0491607;1.429168;1.7933967;-.23425078;-1.5002061;-.33306611;.47903767;-.73854643;-1.2834765;.044870093;3.0094566;1.6108538;.40701228;1.1444638;.1812623;-1.5810993;-.83414567;.089892723;1.0667491;1.6346186;-.40506425;1.7435983;-1.6170714;-.76253927;-.19271144;-.39929926;-.73078364;1.7371781;-2.9370284;-1.9209043;.78442478;-1.6008588;-1.0960212;-.13615149;-.020020669;.041802883;1.3703977;1.2477386;-.9402684;1.3103604;-.72001636;.89134634;-1.0364658;.98799103;-2.3454299;-1.0400945;.083964884;-1.0256666;.54065794;1.9981552;3.2959073;1.6920315;1.018366;3.2989655;3.3621521;.34706324;.26234367;.92190892;1.889397;2.7317953;1.5929621;-.4027797;2.6853111;2.3509104;.11094096;.46335453;1.1461804;-.02889345;1.6836057;2.1037157;4.2889533;2.5736628;.31288716;-.25709504;2.6214919;-.22405283;-1.5612886;1.9326508;-3.1473403;3.2773943;2.1961629;1.6160012;4.5223961;1.538571;-.59537178;1.7049301;-.3409664;2.5980895;-.1819094;-1.8858999;-.49798465;-2.2684209;.66792804;-.22070017;.77524966;3.6944845;-.040637515;1.1359091;41.288155 +-.39212725;-1.6295606;.56188828;.93287724;-.83082265;-2.0364714;-.58753771;.71378279;1.0837804;-2.5225675;.3207151;.3989493;.86668402;-1.3805834;-.4782944;.90282428;-.73051089;-.9731074;-.18447958;.56235886;-.18754868;-.40443951;-.12581049;-.83289057;1.0339217;-.27226266;1.1019251;-.581734;.30674815;1.3532478;2.2467561;-1.1509938;-.4537625;-.66759288;-1.5881668;.72601599;.66953051;-.54358166;1.5626189;-.41734892;.81864005;.6902346;.96950817;.31616482;-1.0490358;.67164946;.3663871;-.25318587;.62422794;-.58259702;1.3908157;1.1390542;2.9939158;-.49520445;-.35713193;1.2589396;2.1016519;1.0090084;4.1024728;4.2581434;-.50608647;.44134727;3.6911674;.65398061;2.815717;.58675367;4.0561652;5.2181945;2.7270863;2.0838113;2.6955299;-1.0348512;3.4858377;-.27838451;6.7614036;4.2038016;3.9062946;2.3930533;3.8739262;2.1815681;-.7675513;-.44181612;.68106753;3.2148135;5.4667149;5.2414274;3.8155131;4.9867668;.41436708;.41307354;1.8446491;1.0204691;.98039973;3.278069;-1.1642042;1.0671067;-.36589667;1.8200361;4.733654;4.4703751;-1.437083;-1.3618191;.94685757;1.4876033;1.7395169;-1.9351429;-1.6874608;1.3321247;2.7524657;-3.0974905;-.18789786;-.39639997;-.080530748;-.85678411;-1.2844397;-.38933051;-1.6055923;-1.2287915;-.95629436;-2.8167756;-1.4997684;-.95896381;1.0304315;-2.0452752;.96449363;-1.1367874;.99824721;-2.0461497;1.0951147;.90630293;.91464049;-2.4484568;-1.2006044;-1.3922956;-1.3212516;.25431979;.0068487562;-.32384709;2.479085;-.019402741;2.4191589;.42522573;.95464569;.30047467;-.12435149;1.3172237;-.81539536;-.50322938;.043069299;-.52020794;-.94906175;-.33676082;1.7809786;.41485947;1.5538571;1.3668767;1.1991612;-.00091458653;4.9202523;3.1513507;-.32596138;.28404596;1.7093868;.98074496;1.4547869;.42748007;3.2020679;4.0075994;1.3856661;1.9165237;1.8782518;.12355467;1.9527844;.5817216;4.6173654;1.5511107;3.2508202;1.8064517;1.5540025;1.2883872;.42751524;-.58374763;.48011261;2.1879535;5.4054613;3.9660923;4.3091102;1.6220437;-.96918321;-.91308671;1.816511;2.1281831;.77243495;.80894679;.47071752;1.43592;-1.0470338;.084278785;4.416481;3.1873276;45.231964 +-1.025179;.51189756;.87944627;.20165041;-.69677365;-1.4782225;-.97731894;-1.5239416;-1.7202739;-1.6502082;-.94143742;.046330087;.63040191;-1.1739687;-.90939021;.79899436;-.71001905;.96265322;-.30647779;-.80865473;-.53712636;.77810103;1.2778412;.13678111;.34309977;-.53594792;.92961222;-.27703747;-.099243104;1.3834611;.90313876;-1.3197222;.52359945;.96081579;-.45114666;-.35128903;2.3880684;.44725204;1.085704;.55454826;.37013218;-1.5071008;-.96100205;-1.6065503;-1.0378764;.92320913;2.4859889;.45006877;.55513376;-.81392753;.24680211;1.4374717;.77553785;.41125971;.4359971;4.2086339;1.4552145;3.4770076;1.1226904;1.473765;1.2608936;1.8212329;-.61699474;2.6010299;2.2248518;5.3256893;1.9147338;1.9361988;4.4798703;.54344028;-.10320003;.35142067;3.8983703;4.1550503;3.7539802;1.3156732;-.87196469;1.5878602;-1.0166266;2.5840731;-2.3199069;5.5958147;.39159772;2.7885754;1.9260532;4.293107;1.7582886;.22429727;.69898528;1.7251559;.0063773603;1.8481091;1.2133116;-2.6769905;2.1095827;2.0248289;3.4118936;.81478268;2.031812;1.4268285;-.69176382;1.6642289;1.6829922;.32209635;-1.5861951;-1.7255958;.06813544;-1.9212952;-2.81827;-1.3655819;-.50064665;-.33014956;.3391504;-.34426087;-1.76364;-.15315065;-.38822693;-.69702834;-1.3095398;.77872002;-.46994373;-.04179411;2.1835604;2.2185149;.91839284;-.45860144;2.708719;-1.3842434;1.7463419;.71040797;-.80020231;-.46354368;.17669404;.97998172;.39724112;1.8577704;.72636843;.82633603;-.26794398;.98058105;.92337543;-.71415776;-1.5969284;-2.8509183;1.2354341;1.1140969;1.6080748;1.5213621;-.14109197;-1.9324869;-.869757;2.0168197;1.0247831;.715083;-.41722983;3.2954619;1.444693;3.3750515;-1.0515721;1.376665;-.74404716;1.9917269;-2.2862263;.29050574;1.7670751;1.4741882;.13255392;1.632921;2.5094922;.17447369;.29290667;-.33503398;2.4240844;4.2618127;2.6042473;2.4064374;-.38799378;.29281577;-1.9376155;1.7374409;-.55692965;3.3215511;.41637933;.55397516;3.6681132;3.3116465;.59297848;2.5964196;.16039638;.86756593;.57666016;.41755334;1.9255999;-1.3254771;1.6864693;2.9277399;2.6592937;-.11908994;1.1299837;.37350377;45.601654 +.12634693;.67554438;-1.0018495;-.11635696;-1.1827886;-1.3018438;-.2871972;-1.7949612;.27270117;.33856753;.73541588;-2.3180785;.26203549;1.7934573;1.7889242;.47415784;.69152927;-.41351065;-.1949186;1.137521;-.89618403;.86420393;.79717135;-.37089971;-.40671918;1.5386205;2.1374922;.91150385;-.12427002;-1.4071553;1.0897101;.62288302;.43663439;-.75701064;.18888089;1.360679;-.49395472;.98394901;.3515;1.1172349;-1.9992704;-.23948811;.91945797;.16494945;.89131677;1.9164553;1.7161552;-.63023275;1.8596226;-.33189756;.18364276;.77358025;-2.8795528;.13542053;.81452495;.41252315;5.3346295;2.8703387;1.8031423;4.1523113;1.8191242;2.4350729;.95740306;2.2606003;2.9981263;4.4283385;4.3487592;.96452415;-.44953299;.98480266;-.11986267;3.325743;1.5531929;1.1391864;2.5840001;.072954766;5.426702;3.0077772;2.8517687;1.5240424;5.8167486;3.7192976;1.5202526;6.1459198;.57796967;2.5024312;3.5904248;2.2633634;-.47921941;5.7156787;1.271197;-.89042622;.041025098;2.95433;2.727742;2.6297436;1.4663947;1.3103194;.022003982;.95007086;-1.0697944;-.58948082;-.7635653;-1.5196828;.025689144;-1.5951272;.48082873;-2.8782988;1.1474695;.64593679;-.42891079;-.87499684;-.30503187;1.9437073;3.0596101;1.6239089;1.0740176;.025086625;.63118219;.18210065;-.011661847;.6720838;.34329811;.35264105;2.1870501;1.5708867;.63323992;.81909001;.12998755;-1.1320843;1.3870523;.23015048;.15018623;-1.2631001;.054417476;.48060116;.46009701;.10664068;.49555948;1.5201713;-.47504932;.55738175;-.75060004;-2.057749;1.2550186;1.1053673;1.9538435;.13519186;1.9686489;-.57950056;1.4749531;-.0687676;-1.3337626;-1.2539626;.32798219;1.4828336;4.5981798;1.1356395;.87054086;3.324084;1.6382853;.59175289;-.86610144;1.1636357;1.3754258;1.4416513;3.8105016;-.29357901;-1.689224;.6695587;2.3827977;2.0860751;4.1431036;.87353438;.80950803;-.24532193;5.0517154;1.7674772;1.7121007;.97000033;3.7929392;4.1948791;-.2968742;3.1089666;.31230897;.75399798;2.2441938;2.0676258;.72509146;4.8172212;.26742104;.64696991;-.19412778;1.9192982;-.31766272;2.5114059;1.5946995;2.93314;-.41924182;2.1880131;65.132309 +.35288218;-.70300138;-.26172435;-.13341177;-.84455425;-.68022859;.94727784;-1.6069281;-.82651019;-1.2512264;-1.1413746;-.69312787;-.091905467;.25046524;1.2128246;.86863661;1.3171614;-.61599684;-.89676934;-.33175939;-.047305301;-.4158839;-.85844642;.27090073;-.35488597;.66787165;1.0695097;1.2719009;-1.1484058;-.15045521;.9361636;.83226424;-1.9195306;.56056112;-.48904613;-1.2501831;-.89880508;-.48945284;-.46818221;-.16780882;-2.7791083;.098237485;.77824438;-1.9817424;-.56850141;2.0574107;-.093447432;1.027377;-.099801645;-1.7012855;5.2965493;2.7096143;.15450089;4.1700516;1.8173264;2.611943;2.915514;3.4379199;5.8751431;3.0994294;2.7120705;.13486946;-1.5276455;.66926706;3.7171392;1.5527514;-.49195027;5.5706329;3.9142904;-.71025378;-.52381253;-1.6933221;2.7790833;1.0838338;1.3719808;4.8547955;4.1690192;-.22977351;3.9929667;.69301337;1.4683435;3.3857517;3.2321031;1.1225444;2.1995597;4.6758032;.74647892;1.6067795;3.1090136;3.8231509;1.2809625;4.2737217;6.0938663;2.8439615;.23537906;4.2325196;3.7052984;2.02966;.97902489;1.3916042;1.6534059;-.16420846;.020771025;1.3047674;-.51225901;-.58172882;.55056536;-1.0398637;.15790819;-2.2035425;-.0012761687;-.66952115;-1.5945944;-.38358819;-1.4934411;-.37125307;1.0507779;-2.1303356;1.1956533;1.9378012;-1.8206702;-.41059452;-.547005;-.5800305;.14548972;1.3391429;1.3916874;.5884214;.79759318;.87584704;-.51473361;-.28356755;-.64249372;-.010832353;-1.2864039;-2.3084464;-.73794836;.28857812;-2.5114932;-.62241834;-3.5148172;-.81454688;.022346161;-2.4360158;-.81766653;3.3333902;2.1022396;1.6158727;-1.1377538;.54437554;4.8965173;1.5739268;.20348926;.71418202;1.1386474;2.5237978;3.4456365;2.4170058;5.6004796;1.6046797;2.1629474;-.36375847;-1.7460444;1.2298875;2.6126468;1.7408129;-.87445045;4.2676616;2.8159597;-2.1101716;1.05753;-1.3337258;2.4607947;-.25276417;1.0029285;4.6303515;2.9513781;.56352526;3.2618108;-.45572105;1.5724726;1.6351858;1.999934;1.0841321;.15802047;2.9019005;-1.005087;-.056127675;2.3968251;2.4505689;.69367594;3.6891255;2.685523;3.8543427;-.46600664;2.8285928;.1714592;2.7934685;-.77581143;.61095625;48.747322 +.57368082;-.94660902;.84890383;2.3773565;.19825096;-.77204037;-.92755598;-.95508951;-1.8973891;.66809797;.17870101;-.77772665;-.58219093;.63176334;-1.1921462;.18207131;.13080521;-1.3676804;.70482516;-.38589004;.3439151;.15371887;1.8115219;1.2789931;-.18789111;.30899879;-1.052537;-.40356645;-.53700078;.82618511;.80653578;-1.2261733;.33880395;-.35826293;-.95844847;1.12062;-.4130069;.56295073;.02471376;.33297145;-.89998955;1.5949329;-2.0404353;-.30049995;.38422;.028718175;-.59936917;1.0678214;-1.1201744;-1.7737526;1.6275806;1.0029831;4.7904682;1.2804979;1.5459307;1.6291207;1.2241613;1.3876711;1.9734534;4.0274959;.54451597;3.1156809;5.6906495;2.1279798;1.8787205;2.2768388;1.5486683;.6092841;-1.371581;5.0610113;.46776998;1.3882786;4.5365353;-2.680512;1.1249354;-.16492391;1.1063173;-1.1020482;2.5780511;1.4087969;2.9600148;-.84420252;3.0361636;3.6378026;4.5779328;2.7299302;.37676972;-1.3638678;3.5166886;2.1968143;1.6957968;5.1840186;.6566211;3.4868307;1.4826092;1.2164661;.92354184;3.0208311;3.344593;1.6148872;1.3761258;-.079672359;.03435069;1.2581975;.054885954;-1.3487544;.83618766;.42554364;-1.5028077;-.47247416;1.7223595;-.56831712;-.4545058;1.1860249;-.86047834;.60583431;-.60856533;-1.6565454;.47573358;2.2814565;-.64243549;.53699398;1.0426701;1.6617489;1.0171697;.88064176;-.24154578;-1.4033432;-1.1343389;1.0717403;-.29886562;.24433002;-1.1496123;-.21824613;-.027005721;2.3691249;1.4432837;1.6388352;-.16383834;.032751448;.84920388;.48946291;-.42015633;.33663106;-1.4702643;.17832322;1.0802453;.52604818;-1.6584011;-.24025482;.90172434;.65002948;2.2149968;1.3712033;1.7491845;1.4801422;1.6083918;-.13590866;.87622476;2.1048012;.87096643;2.1660082;4.2226114;1.4106065;.28562891;.12356048;1.5481836;.10030529;-2.3744693;4.4231582;-1.0845861;.70803487;6.4291668;-3.0643909;2.2512698;.033411637;.50557506;-1.1308641;2.7851856;.81203634;2.9848492;-.83899558;2.6909094;2.672965;4.0888915;1.2136081;.47408849;-1.2165852;.44590637;2.5985668;-.16232288;3.0042057;.21958049;2.9102218;2.3749566;3.7644866;.38864934;3.316329;1.2734777;.69478977;33.776264 +1.2220075;2.360482;-1.9693184;.15503721;-.21589845;-.75321227;-.44321269;2.0487449;1.9805166;-.51201314;1.3442509;-.24757548;.35875002;1.9477319;.053435117;1.6484689;.98113847;-.71082479;-.0988774;-.87668794;-.090700001;-2.2732773;.59061861;-1.6008588;.1118602;-.041396841;.64761102;-.88682514;-.56751251;1.4416987;-.5798018;.03728601;.31152344;-.65114051;1.7695999;.90861732;-.1017269;2.2341223;.98350388;.044468954;-1.1238583;.74100238;.77387285;-.95160186;-1.0820742;-1.4398359;-1.2057279;.60875815;-1.29266;-.0035422195;-.99398243;3.1067493;.72476727;2.1339374;.44867757;.38598463;5.0566893;5.2485857;2.397547;2.347353;4.7778745;4.5508122;3.8556371;-.29146674;.47592258;1.9565024;-.28535828;-1.1710696;.50530183;1.5650722;1.3838661;-1.9105349;4.4505029;-.023084054;3.972476;.34053054;-.72008711;5.1850667;-.40540028;-3.0965166;-.89764047;.49655133;1.8756692;4.2130966;1.1804831;.68786538;-3.0725965;2.8880537;2.8119483;3.8173151;5.9943075;4.9369683;4.4918098;5.8343263;-2.7940395;2.3891149;2.2978437;4.120153;2.0931301;1.475723;1.0992619;1.6917282;-1.3688942;-.66544366;-.28713998;-1.2265451;-.49897373;.50042146;-.023651658;-.19056039;1.0822524;-.72872633;-.38645059;1.4553827;.48649445;2.3728292;-.68419528;.26834002;-.58565444;1.3414147;-.053315431;-.32021031;-1.0184745;-1.0200838;.053374566;1.1215864;.91207325;-.42824197;-2.4753232;.67330527;1.3957465;.52561045;.095258377;-1.3080877;2.2510788;1.7021025;.83585572;1.1875492;-.046129443;-1.0914387;-.65715706;.73171932;.89857715;.34741485;-.85439909;-.11349049;-2.3995242;1.3513356;-1.003305;-.05896873;-.94820243;3.3890107;2.5084023;.64641255;-1.01826;.78052521;3.5194516;3.3569872;1.1953268;2.3348062;3.8935053;1.4433485;3.6536479;-.038890891;-.3634263;.54125875;-.58372134;-1.1528182;2.3099163;.33503744;1.5939415;-2.3812232;3.8352983;.077394843;1.9420446;.011969438;.96107197;2.7406886;.034730811;-.707506;-2.0227292;1.7831858;-1.4188741;3.0603716;-.31487715;-.52464098;-3.635592;2.5947454;2.7184541;2.1291404;3.9471116;3.805058;3.0992856;3.280988;-2.6450865;-.61316651;1.2978069;2.9092603;.32200298;.67919075;37.828754 +-.52059269;.84812742;-1.3469076;.94000638;-1.8240399;-.62712377;1.181584;-1.0536054;-.39794874;1.5996845;-1.2449628;-.6862843;.10867635;.015925841;-1.2491889;-.39907351;.69673097;-.17385082;-.77155966;-.66443855;.46702835;-1.5336766;.17756835;.36694214;2.6498549;.37254378;-.64329076;-1.7955288;-1.8068415;3.3886924;.76364541;1.6413689;.56207991;.1179758;-.066016369;-.064988956;.093120053;-1.1207502;-.6661579;2.0528643;.20988102;-.72152072;-.16939038;-1.0068951;.34077629;.8842662;.3699612;-.44702154;-1.3275484;-.85119677;1.0868719;.37506768;1.0959626;1.8516049;2.4387176;.14327565;5.1816831;1.9747211;-1.1080601;3.7389917;1.3472623;-1.4548836;1.6322058;.70697105;1.8733904;.27358362;.052444343;.31544602;3.8488009;.96901834;6.3256741;4.3449512;2.9329138;2.243346;-.4871985;1.7581871;2.9316463;2.5079937;-.74490148;2.8135977;4.0229516;3.4105711;1.9096301;-1.5135242;-2.4331741;1.4837716;2.1856778;1.567076;-3.7457783;3.6149058;2.847703;1.3275423;4.4097843;2.7520766;2.4079678;3.7441621;1.4164743;.94753557;2.7910981;1.7952716;-.32363886;.41597199;.37051809;.47479105;-2.6760328;-1.7026868;.063453637;-.34252459;-.80161083;.14786437;-1.7448626;.78230733;1.1821355;-.10659003;-.29715878;-.73028874;-1.7754339;-.60898876;-.032450553;-.61118519;.1432374;-2.0996346;-.55633593;-.25279284;-.36807707;.057650477;-2.3387351;-1.4616064;-1.5267982;2.3699102;-1.4733257;1.2823205;.35762864;1.7144461;1.7810323;-1.8290125;-1.2770368;-.74094039;.049014006;.99647212;.12842816;-2.4874325;.75818157;-.83607036;.40864953;-.067215547;.40187126;-.69976926;-.35789764;.78019255;1.7101613;-.045144182;-.30066732;2.2881105;.40789688;-.50299507;4.2125759;-.91879153;-1.054794;2.4016383;2.8401747;-1.6381551;.2107947;.77248853;3.5726528;1.1913517;-.16625537;1.7764617;2.0389221;1.2338439;4.9295449;2.2261941;.93762618;3.0831935;-1.1736007;-.55605894;1.929992;2.2368162;-1.1622605;1.831887;3.1566813;1.4494095;.87048358;-.59596759;-1.7445964;-.49957138;-.31448814;.90028638;-3.1769516;3.1473577;.58176214;.74969137;2.2508163;1.1031513;1.4100584;2.4954095;.036424648;.55066657;1.8074341;1.5151825;41.001907 +2.0858262;.067184284;-.38244376;.087975219;.76528168;.61580431;-.10414811;-.73292649;-.026324857;-1.5417343;1.4074872;-.4965277;.83422548;.55462885;.70509511;-.018772962;.64576554;-.50967288;.42615584;-1.4528869;.39560786;-1.3771466;-2.1448691;-.19824591;.19281138;.31631321;-.8680377;-.70566404;.84596455;1.0272298;.89853758;1.6877985;-.26425332;.84484214;1.1395478;.88605869;-1.3716166;.36239508;-1.1601034;-.69572932;-.028062817;1.4460338;.34216937;.028826497;2.793299;-1.1327597;-2.2505231;1.2807721;1.3770603;-.33354464;2.2044561;2.6865084;-.16818351;1.6895624;-1.1374358;4.628612;.91008413;2.3265049;2.6028585;.80417019;-.091500357;1.4448531;3.2355261;.99426806;-.94815719;1.0980843;3.9270735;1.5696518;1.6406461;-.83791894;3.3123322;-.73595256;2.6440673;3.8427725;-.094261989;2.2593508;-1.0827932;1.9755068;3.9889941;1.9198312;2.54847;2.158942;.72590101;.83251023;-1.0885639;-1.4601078;1.433813;2.4415975;1.6442287;.61636788;4.4906192;1.6688792;4.0183191;.68028617;3.5859525;5.9704733;-.31520665;2.8943362;1.3202072;2.5250182;1.5741843;-1.0946815;-.48997381;.033336006;.28846845;.58177239;-.82608885;-1.4339721;-1.9923543;-.2971617;2.237623;.46551019;-.61012322;1.3900946;1.5043421;-.33294645;-1.5569695;-.25517529;-1.1200686;-.37936911;.37219071;.72212452;-1.9649271;-.27097437;-1.3978167;-.073061645;-1.1976867;.17130727;1.0966289;-.63486868;-.023252202;.86513031;-3.8558424;-.17306343;-.86854362;-1.0867282;-.34175122;.17215152;-1.2032219;-1.0330991;1.8535329;1.6830313;.88406456;.73437583;1.5413481;.96500152;-2.0955358;1.070958;.76903152;-3.0508242;1.468204;2.6667492;1.2851462;1.3024901;-.65073866;3.9137247;-.10527435;.35241464;1.8555816;.30267856;-1.925271;2.3184686;1.8167062;1.0549998;-.37927985;.36389649;2.0133245;3.6150131;-.073124744;-1.4410621;2.5748906;-1.854995;1.773825;2.2246764;.13696788;1.1261653;.34066936;.56852424;.84092152;1.7826364;1.301421;1.0633157;.9869861;-.042948216;-1.1545947;-2.4310002;-.063187204;.6354934;.034113217;.91563052;3.6741574;.88063776;1.5222958;-.1999985;3.966835;4.2454696;.69271737;2.2620337;1.0045371;1.360155;44.098137 +.23726025;.16089626;1.2154218;.45627412;-1.8201673;.6248216;.37359738;.38594806;-.74627823;-1.6915909;.79645711;-.69883919;.22863999;-2.3347607;.74372393;-2.1805034;-.21431668;.62698334;-1.2886249;-.66520017;-.2899451;1.7617809;.086799793;-.63431251;.83871651;-1.564013;-1.1522667;-2.0195611;-1.6405071;-.14418666;-1.6464632;-1.8374557;-.058210138;-.12727511;-.050330378;.34224036;2.0554602;-.59456104;.80602872;-2.0489123;-.97382689;-.76434785;.90337616;-.5162921;.6869421;-1.3608878;-.29085732;-.90673321;1.0407263;-.52256459;-2.1648812;2.6792271;-.6657998;3.3170352;-1.1254125;.53833985;-.09716972;1.3846134;1.7294552;5.2851081;3.3756039;2.7395747;1.4741919;5.5409746;3.7993033;.5304178;1.7659202;.83579969;-1.4217848;.98526853;3.753988;1.0951707;2.3493285;3.0644782;3.4356384;-1.5554993;2.3330855;3.7884521;.51555771;3.6728573;-.61646253;5.6067157;-.39349687;4.0820298;2.9558465;1.8684846;1.2889297;2.0560803;1.6801547;4.114862;2.8765903;2.2673609;-.94325995;-1.2447288;-3.0593343;2.3993368;1.783424;.59147316;4.0347929;1.7262384;-.22842816;-.11253346;.22880729;1.9984723;-1.6077883;1.0574495;.42752624;1.8893087;-.68442082;-.8175118;1.084161;.47779983;.55075395;.32967705;.13400681;-1.1482877;.5830242;.88176095;-.96819168;-2.8838713;.48587134;.10316922;-.85507137;-1.0531315;.31569719;-.58712465;.41904688;-2.605866;-.6550355;-.46063751;-1.5189879;-1.5484588;-.18353228;-1.2617314;-1.1642351;.78965914;1.2395962;.14008281;.30342692;-1.2431446;-.25950634;-1.0338081;.84177458;-2.5181415;1.9268968;-2.5627177;.082882605;.13954271;.84668237;-.63080204;-1.6485547;3.5043571;-.94865668;2.1985893;-1.8752439;1.2748764;-.12061544;-.043787267;.91539872;2.9098473;2.0497549;1.3146319;2.2548337;3.6490431;1.627041;.064304695;1.4608864;.56724203;-1.5620472;.45685363;2.0713289;-.633012;.89590937;1.2008587;2.366833;-.28804144;.22228904;2.5691223;.39264297;3.2876379;-1.3132706;2.8356855;-.56694424;2.7195935;.4824242;.3632637;1.8873245;2.7050331;1.5078502;2.8638453;2.5437405;1.5612396;.24409619;-1.5495974;-3.1607738;.15548807;.63539463;-1.5321822;2.5729425;.72843391;30.626101 +.39576453;-.50322795;.019746637;-.11962368;-.55764312;-.25302756;1.0923177;-2.5113709;2.1229222;.1900529;-1.7879022;.411154;1.1030117;.63770694;-.78330266;.12261985;-.28377372;.5682739;-2.7142606;-.81086236;.46905813;.35702574;-.032337599;-1.1229364;.43868265;1.3679559;.75866526;-.03439549;.74362981;-1.0371602;.025677178;.55955064;2.0753455;-1.1555824;-2.0990219;-2.1942952;.24706486;-.91054827;1.8224515;.37853098;.29792112;-.14779015;-.84538186;-.47919646;1.813126;-.49308282;1.229663;.83718646;2.4654403;.76942044;.54276752;-.57898825;-1.3322889;3.010675;3.1371949;1.5786551;4.4864826;2.8541956;6.8466854;4.3230944;1.5828203;3.0714898;.60898197;4.9061131;4.8903279;-.30728117;1.596019;2.0101509;3.9554186;.93329585;2.3713913;1.2454667;2.3364828;1.9399902;-.37059531;4.1800613;.61042398;-.75523007;-1.7041459;2.2348154;.13077337;3.8565104;2.5026875;-.87075603;6.2945561;.20453978;2.9918432;3.2902355;-.17369296;-.40193608;2.648855;5.0960188;2.2537227;2.8484781;1.6623127;-1.475033;3.1192832;.24655281;2.8790793;3.5852613;.34591043;-.29307672;.59415996;-.3486068;-.090084858;.99959403;.12186547;-1.6088845;.80521619;1.8411485;-1.4173846;1.2011935;1.0357324;-.11599239;-.19961071;-1.2834426;.30232888;-1.7127507;-2.7589562;-.090480849;.24840105;.73687643;-.99503636;-.32526967;1.0683167;1.6384553;.79518646;.60932249;.65835476;-.86501938;-.020869372;-.048222445;.88202965;-.87713367;-.69615805;-3.3380525;.69957179;-.85958499;1.6143088;.84013939;.14431605;-1.3904366;-.47835025;-1.3586042;1.4959836;-1.8489188;1.4547704;.020678109;2.9249201;.10664668;-.67330074;-.39654839;-2.2609694;2.3896868;1.0869811;2.5872774;3.5007136;1.9252641;5.8719969;3.1243358;1.2318724;1.6939389;-.69190007;1.7612031;2.8698702;-2.0893362;.80757278;.2189654;2.4689336;1.0629865;-.37511349;2.4074242;.95768243;3.4802053;.82085323;3.5259414;.020437138;-.29273668;-1.3471062;2.3882124;.41135868;2.5027838;1.6612643;.11455562;3.2727194;2.0996385;1.5844693;2.0183828;-.89852101;-2.5069113;.34026822;3.9918363;1.5560585;2.7016804;-.05944369;-1.6997043;-.57440966;-.44689903;1.7753241;3.0909512;53.460697 +.052486837;-.62060153;.28133518;-1.1676461;.48448732;-.83349413;-.4830232;-.30308396;.81298608;.13234273;-1.0802249;-1.2058989;-.87682748;-.90440989;1.0312313;-1.1819948;.19150218;.88196671;.056127276;-1.0697967;-.81107086;-1.6572608;.50134641;-.25347537;-.48906508;-.094259895;-1.7611264;-.2355703;.034633201;-.26387209;.58526999;-.86999214;-.25243741;-.074018233;-.12514801;-.099914238;-.75714433;1.5866495;-.58514154;-.38318086;.051352043;.59000289;-.034576081;-.22816305;1.5602612;.2133223;-.11514663;.72456288;.45410669;-.7697925;6.3792429;1.7884479;3.7552404;-.54750198;3.9797454;2.606111;3.5498853;.43762326;5.6412373;.24664131;4.0891418;-1.6993774;.5825662;2.6421983;1.3620288;1.5941671;3.1378398;3.5406623;1.2596489;1.2501789;2.9763854;1.9129902;1.1009809;-.18207596;.33601642;4.5023036;1.4168239;3.3412433;1.1781641;.051478621;2.4333911;.46643171;4.5785136;4.5694094;2.7766461;4.3814359;-.86591762;2.4179664;2.1188898;2.6001565;2.702035;2.059134;4.5224543;2.4923522;.99482626;4.7417111;1.5785615;4.5179043;3.5284886;1.0876576;-1.5841352;.4495087;.87381643;.51582724;2.3947244;.71611369;-1.5125977;1.6505755;-.2780596;-.8229658;-1.1681392;.14316443;-.39837801;-2.6181231;-.67213714;-.51448512;-.30241928;.73418248;-.27534148;-1.6089934;-.047056701;-1.6570047;.17929108;1.1781212;1.5065116;-.45978001;-.43459788;-.64760011;-3.190901;1.6094449;-.83422279;-.052734543;-.65762866;-.17457372;-1.240617;1.4229585;-.25467891;-.44712088;.87738633;.50483686;1.0090334;-.48703855;-.40123346;.15957856;1.2934848;1.0436208;-1.2202853;-.75794017;2.0886645;-1.5175468;3.924432;-1.004107;1.1051161;-.2582247;3.431052;1.5878956;1.5049034;-.24600156;4.5575585;-1.0032417;2.6404767;-1.3847698;-.4969956;1.2301526;-.83475965;2.5378196;2.014663;2.2326994;.83998477;1.6431988;1.0293505;1.4268584;.19984365;-.93796539;.87628055;3.1664739;1.504385;2.5934062;.38131481;-.25949994;1.4604686;1.509246;4.8737111;2.987335;2.5663705;1.9427313;-1.0764068;.8486076;.54270661;2.6601396;.91813189;1.0904162;2.2149332;.54952681;.96893489;2.9317422;1.651654;3.0610821;1.218539;1.0188224;49.581726 +1.2611403;2.631258;.15525442;1.5634475;1.278945;-.28487945;.84841007;-.88647765;-.56634539;-.28718206;.60978305;.0001291993;.64013708;-.013100789;-.26849899;-1.1655732;.085488349;-.15209141;.8521874;.056523647;1.2737639;-.2210003;.84414601;-1.1736819;-.14907727;-1.1851276;.85109031;.10340528;.023398345;.74772769;-.95464599;1.3246747;.23893942;-.4783273;.16006632;-.071293622;-.86654311;.34837115;-.6033538;-.42817202;1.3005668;1.530337;-1.2814343;1.0259739;2.1053898;-1.6842197;.66321701;-1.2877331;-1.5529941;-1.19241;5.4956303;.99965483;1.5959913;.44226798;2.5543551;3.6192043;-.52591282;5.1250262;1.116325;3.4944606;2.7427797;.53512532;.43917543;2.5041106;3.0053675;2.2109504;.74569178;2.7085204;2.548161;3.3766992;2.3005922;2.2088339;5.3813591;1.1126143;-1.0336932;-1.216882;1.065829;3.0598726;1.9426681;2.5299726;2.308326;5.369339;2.9098003;.028149687;2.1181464;.39598233;.18624769;-1.4826306;2.0821214;-.3650713;3.68537;2.5466328;-1.2395366;1.8690968;2.1031077;2.308012;4.2765517;-.49207586;4.8418183;-.1086651;2.3553729;1.5719481;-.08051423;-.56359452;1.9585768;.91479975;-.14120381;-1.7629805;-.055846434;-.84698486;1.7986615;-1.3877586;-.42807299;.75091028;-.48826858;-1.1315197;.85334784;3.4167972;.011781543;-2.4698491;.65985268;-1.5607822;1.3907946;-3.0075159;.52453643;-1.7590915;.8660472;-1.1870288;.3085117;-.96616459;.49812886;1.7618344;-.60636276;-.9678328;.86081409;-.081811234;-1.9109915;.21784334;-1.6368762;-.3715007;-1.5419791;-1.1450254;-.74733239;2.7531676;.12794772;-1.7775342;.20754804;.24510562;-.61877871;-.15436268;4.3437619;1.0204971;-.57496095;-.35104805;3.0575984;4.1273589;.038707767;4.9593415;-.3570599;2.0107322;2.0878601;.24673831;.51930833;1.2204148;.71718627;.4043566;1.2112093;1.8319592;3.3635366;2.5168159;1.8602848;.60887963;5.9633613;.5477891;-1.7023687;-1.709891;1.3165376;3.1650875;.42008162;2.1786103;2.5662906;3.4916167;2.5489688;1.0516839;2.3729527;2.5719798;3.9716308;-.32101768;2.1454873;.68168199;3.3895791;.22490428;-2.2722795;.4559218;1.4606354;.75931466;.92202127;-1.4101533;1.8772075;1.2719671;49.052872 +.54899091;-1.3802503;-.65875465;-1.0236925;.18219303;.19336733;-.45461392;-.57529825;-.030464964;.29533517;-.34238371;.65164131;-.7664085;.26532939;2.0264914;1.7962407;.7069993;.6908322;-.14244655;-1.2369854;-.10652278;-.89242238;-.26480111;.13612901;.51828229;-2.1367283;-.2148857;.80044466;-.42267543;1.7094221;1.1298385;-1.4277396;-.83774567;.70978439;-1.370115;-.12266224;1.3144695;2.2785447;.031552803;-.077905513;-1.3859152;-.90480816;1.0136001;2.3471458;-.44150114;.95530957;-.072682865;-1.8293116;-.93682152;.97424388;.66085863;1.6326666;4.4057794;4.9586349;3.652688;1.4256886;3.9601207;4.4850378;3.246551;5.4893494;.056891151;.70496565;1.3715571;1.0294093;.23090477;1.8139917;3.2243152;.71002275;2.9111714;.13416678;1.0611638;4.3068886;5.1757116;2.4070044;1.4696714;2.4222696;3.2900548;-.036119703;-1.9794756;2.7314436;2.7070556;-1.9076815;1.7124276;3.922385;2.3424034;5.818644;1.378875;1.5094279;3.2227879;2.3647153;-.30969363;2.8854139;3.787982;1.9294102;.87881523;2.7700574;1.0031267;1.4582911;5.1221175;-2.1291912;.23527451;-1.0193585;1.7081947;-.30620313;-1.5233928;-.72306705;.65478522;-1.3209368;.11454717;-.83097994;-.43644008;-.33729133;.31000614;-.82111847;2.27862;.78210425;-1.0099806;-.44316223;.876131;-.80998778;1.5499321;-.85943568;-.17598914;-.50340831;.78031641;-3.373606;1.4306796;.47308016;-.77719402;1.8878603;1.6066906;-2.795701;-.77715486;-.1262226;-2.6104503;-1.6823463;1.498157;1.301915;-.90356857;-.4102191;-.53265619;-.24648502;1.4543551;2.1464131;-.40749595;.11228025;1.7925839;-2.7725379;-1.7780629;1.2595094;.82655776;.7284019;3.6479292;2.9293673;2.4554024;2.0580068;4.5822792;3.5673044;3.4316766;5.1878467;-1.7503935;1.0831338;1.3871775;.73562253;-.45242256;1.2832072;3.9111507;2.1287794;3.0306799;-.32610783;-.67308909;2.8317771;3.9511964;.90787828;-.73579717;.34841371;2.6731992;.98650217;-1.6958425;1.7825006;2.7194338;-1.2468287;1.3439122;3.9350379;1.2273259;4.6837101;-.50592428;.34030011;1.2607958;1.8434622;.18650059;2.8611975;3.3499987;2.2954354;2.7161689;2.3007615;.77942073;1.9613931;3.0138786;-1.5576729;50.296219 +1.8427176;.9770388;-.32261997;-.62641472;.61347955;1.2447526;.69416225;.41865015;-1.3466421;2.4016039;.70525235;-.02647398;-.28049242;-.71301579;-.20971772;-1.8523618;.20197369;.5543949;-.45233673;.22455348;.4614726;-.3670983;1.1775885;.078795344;-.27526438;.45027274;.30722493;-.19331554;.79588902;.71287572;.42591682;.60723424;.073574662;-.35974607;1.5126235;.99332571;1.5719867;1.8348001;1.0475855;-.19273213;1.108037;1.1815027;.7698158;-.67260182;.96318746;-.47337306;-1.1060297;-1.0551938;.022662882;.16791996;.26757896;3.5723653;1.2416667;5.0095239;.097675271;.65574181;.48524657;1.4548594;2.3656502;-.067449681;6.7132587;1.672785;2.1101892;2.8148518;2.5877223;5.1285019;-1.5484869;3.9425385;3.7880237;-2.0699952;4.4625401;-1.1220697;2.7184167;-1.014058;2.975621;1.7977349;2.5372775;-2.189384;4.4715338;1.0380223;.224757;.87934285;.98524064;.1909008;3.3795741;4.5453796;4.6492252;-.13021789;1.1122918;-2.4360342;3.5557187;3.6462321;1.7407639;-1.7931843;1.919919;.28973299;2.6359863;.80687892;3.1884072;1.3407108;1.7737837;.79109174;-1.2784226;1.1092218;.35113046;.82897437;1.5877534;1.4735692;-1.7772118;1.4400563;.43416819;-.80871153;.20070341;.045241356;.02717533;-1.6845232;-2.2379744;.5553664;.6513266;-.11583968;.82739359;-2.3961294;-.11893056;-.81819564;-1.0371144;-.93393266;-.037744407;-.3466059;.43029633;-1.0350292;-.16257167;.89018846;.25938669;-1.7599723;2.705828;.69861156;1.6568161;1.4864702;-.2374227;-.30101901;1.1850883;.47879988;.65266818;-.98153043;.069516182;.53153604;-2.06304;-.67671371;.12387697;-.3327029;-.18318115;-.44770044;1.6092362;5.3512731;-.610843;-1.2638077;-.27294114;2.2834167;2.4383001;.49756601;5.1329689;1.9553666;1.909637;2.8526258;-.021618692;4.2592831;-1.821925;2.3751128;2.7313838;-3.2097969;4.2519679;-1.4936352;1.1295341;-.7489326;.44753075;3.2126493;2.6351719;-2.1330628;3.9122353;1.6880524;.46302351;.085934006;.64733535;-1.3013238;.89623827;3.237581;3.051713;.51714849;.96591121;-1.9700596;2.7208276;2.8994184;2.0130372;.0065667252;2.2340164;.70023781;.52930266;1.3700296;1.3255751;3.4628837;51.722336 +.10504734;.82173389;-.2932204;1.3634677;1.064382;.54358029;-.59729195;-1.4037756;.42093596;.53258699;.25308627;1.1234554;.6237812;.064391457;-1.1296408;-1.4406637;-1.60119;1.5488789;-.31679204;.53069627;.0060281013;.1073634;-.64744282;-1.3548944;1.492201;.2690517;.14151555;.26534143;.39423221;.52670312;1.5475866;-2.2445302;-.32562906;.24190612;.54765439;-2.3113565;-.042585835;.27591565;-.72929126;-1.0126054;1.4901048;-.06536708;-1.1867625;-1.5235987;-.23727724;.63331014;-.15048529;.14347634;-.54015899;.23501728;-2.5843601;2.378696;3.3787048;1.6739661;.81362838;2.8636587;-1.4938031;1.0864383;2.6309052;.69051701;2.8958735;1.9209591;2.6800826;1.1951454;2.925951;1.5503542;-.01537208;.49499559;3.4339767;-3.5517468;3.5772965;2.0958152;3.6403756;1.9333718;4.6957264;1.1125437;-3.4018207;.55462247;2.9247181;1.7231663;4.2073731;1.6785872;1.1141747;-3.6435347;2.7069318;3.3461955;-2.0207531;1.2931581;2.0812461;-.53626442;1.9359732;4.2630606;4.5689273;4.1395416;4.3469877;1.4974926;-.052097727;4.9709435;-.40960231;5.4668832;1.9167001;1.1529756;-.97629941;1.179389;1.0127673;.31128144;-1.3795432;-1.2301623;.4352181;-.93090045;.77754146;-.023085963;1.203632;1.8732276;.12294674;1.2190841;1.0922174;-.74527246;-.21900593;.72399431;-.2878297;.33807072;-.43100274;-2.5578053;1.0038319;-1.7599115;-.86111599;.19059944;.70300472;.13211687;2.0546544;-1.2839476;-1.1601359;.11774479;1.3114706;-2.0231259;-2.0639715;-.59927565;.031251889;-1.5589416;1.4903483;.44523597;-1.6392107;-.67544764;2.1497219;.33941758;.019736199;1.9087043;2.1892061;1.2127739;-1.9897739;3.3559637;2.4745424;1.8610927;.26148847;2.5574908;.075694993;2.3712962;2.6898286;-.046054062;2.3160908;.63450807;.99271226;.30226806;3.1508436;-.41466433;-.067812882;.61133021;1.45996;-2.0503261;3.4483352;1.4166161;3.386323;1.0698006;2.8260231;1.4977243;-1.9843686;.017138509;2.6010613;1.9862353;3.4127228;2.1540842;-.086834177;-1.4245127;1.6147199;1.869372;-.1644648;.21337199;1.4045504;.82144386;.70717555;4.204484;3.8288324;3.0759668;2.2823517;.48864621;1.3437141;4.2913961;.26396811;6.0800991;40.322929 +-1.3127574;.20131962;-1.9600867;-.54272443;-.36289012;-.18145452;.17662355;-.81694698;.42536715;.20801958;-1.1125338;1.1855726;-1.9534277;1.5666752;-.57173884;1.6118053;.25393689;.86446232;.091702394;-.13444161;-2.6734312;-1.2631314;.18702491;.95764512;.15955113;-1.7491994;.19918904;.4923192;-.38558039;-2.1215732;-.056647658;-1.1641467;.19891457;-.92238533;-.33248705;2.5740604;.73550338;.35183111;.37909734;-1.4648533;-.72187853;-.36105648;-.46373045;.85861492;1.7199343;-1.1077121;.29902139;-.34327745;.50613993;.36838543;3.9843786;1.9324582;2.986578;2.0345078;4.6220646;2.0708704;.59652108;.8437236;-.46791494;2.0807674;-.70619988;4.3894348;1.84855;2.8173835;3.1245947;4.7654796;2.2179494;.15503889;1.1696335;1.8118303;2.1735315;1.4462234;-1.1961762;-1.0347792;5.4810228;2.4486563;1.486125;2.7943122;3.2291727;2.5817163;2.4789445;-1.0780398;.57763243;.66182131;1.4641938;.73381245;1.1870458;3.3419018;.5378679;.11973968;1.6439493;4.4671621;-.4185434;.091574781;4.2032056;.35493907;2.2253456;3.8035288;2.0981572;3.0862162;-1.8849763;.32550055;-1.1796415;1.3630772;.083730832;-.96957368;.35371143;1.1997329;-2.3378036;.84387398;.16141807;2.4027066;-3.2438982;1.6838155;.10936949;1.6849636;.90119505;-.96424323;.39650261;1.5740638;-1.9655207;-1.5056909;.16003738;-.69668162;1.0031103;-.53099549;-.45704126;.67894512;.81391126;-2.1242566;1.3018481;.6560716;.8000387;-1.7484812;.64372051;2.2887614;-.33819106;-1.3053973;1.5025327;-1.0754679;-.79703224;-.20758429;1.8460972;-.24953973;1.7983776;-1.1959403;.64663064;.58713686;-1.1404649;1.3835542;3.8342693;.39878568;.87461674;.99510628;6.2111359;1.3270056;-1.7640688;-.21100645;.24502556;.11685687;-.10845825;4.3673248;1.5673337;3.009464;2.2920437;3.1311138;1.260796;-1.8259612;.38682696;1.0104182;2.719991;1.7337615;-2.4541948;-.9193306;3.4250829;1.7274362;1.3547697;2.6817207;3.067821;1.6516967;.94701904;-1.2822468;1.0452586;1.2988954;1.8871102;.11123392;3.0401757;1.5261472;.5710454;1.7365174;1.1628033;2.0830891;-.79372978;1.0603458;1.0755792;-.63342565;4.041306;2.6866605;1.4269384;1.4614404;42.555389 +-.052959528;-.55725169;.23137197;1.1990476;.72074646;-1.3147551;-.69425106;.53569514;-.58446759;1.8720073;-.47086516;-.20411585;-1.7852895;-.3469269;-2.0389414;.18690738;.48548844;1.8074675;-.9118889;-.19380377;1.1394647;-1.7561477;-.44288212;1.3802303;.14726937;.81575269;.24301168;.58602989;.10996421;-.48395696;.67933112;-.30362931;.77322936;1.5242332;-.9964146;-.17415962;-.33879414;.30175281;.48184404;1.944918;-.60928184;1.1108367;-.31937426;.94534594;.16575737;1.2008661;-.27782357;.74822152;-.248046;1.2478174;.48393181;-2.7766275;2.4997625;2.5584767;2.8198164;3.023191;5.4860106;5.4735837;.75892335;1.4543512;6.1183558;2.0436053;-.022787554;3.6345673;-.64290816;.99384874;.022674071;5.1390429;2.7524455;-1.1247879;.74893957;.97207206;4.3467555;2.4061387;-.6484502;-1.0182391;2.170295;-.042852096;2.0473201;.46818548;.67142338;2.9539208;.064262286;2.7676017;3.3815477;-.23177868;.85761899;1.4941552;1.7000191;4.2623987;4.0906215;1.8014258;2.100167;2.5957804;4.1419454;1.0852513;.90006751;1.6807377;1.6741502;-.81475168;.52912766;-1.8137819;-.83828318;1.2056552;.96672636;-1.6629431;-1.1739877;.69890642;-1.5074043;.85285139;-.41775367;-.7060926;-.49731517;-1.3993644;-1.6645334;.12815332;-.8524707;1.4606817;1.0167369;-.3716197;.86615533;-.66911942;-1.659246;2.6600971;.46019596;.1176241;-1.1423092;1.3385092;-1.6292387;.64127874;-.26710284;-2.0166457;2.1850214;1.9601737;-2.4784138;.57664841;-.67388451;1.685076;-.94978863;.4387528;.90593678;.88792729;.25600588;.03559389;-.5227626;1.8491166;-.094268903;-.21548869;-2.0139742;1.4426024;1.5038375;-2.0883791;2.0508888;1.4183836;2.1947131;2.8288062;3.1670351;4.8071203;.62411541;-.28692731;4.7529135;3.5008144;1.5364902;4.0977197;.53003031;1.1337575;-.33144093;1.4237036;4.190331;-.65092564;2.7758088;-.090997405;2.2980011;1.0482074;.81189138;-.68266094;1.2847596;.5966053;1.2363806;.60029238;-.76800239;2.4872675;-.29919019;2.9024842;3.5907168;-.19962819;1.706987;1.9091203;1.7293284;2.8261964;4.4297686;2.2933762;1.7149458;2.6521804;3.2103312;2.3491492;1.4982635;1.2967325;1.4591815;1.0645596;53.333317 +.45957276;1.6123197;-2.1123624;-1.0179549;-.209728;.27893186;-1.9097118;-.83532816;.33510938;.18533388;-.6611923;.933281;1.5248104;-.9706884;.18902081;.19774908;-1.4705553;.79083782;1.1609855;.53626597;1.5050817;1.3662918;-.70753276;.52828121;1.5717416;-.6060372;-.35725033;.23842387;-1.305722;.43238416;1.2804791;-.080736533;-.28635985;-1.5985626;-1.3970063;1.4772352;-.051792063;-.19527803;1.0302833;1.2849157;-.39164478;1.3194764;.57693321;.9794594;1.6981829;-.024938369;-.024280494;1.6117035;.71785408;-1.4714781;-.39728764;-1.598972;1.0299228;1.58237;-1.7026278;4.1486316;.65142339;-2.0057986;2.7341807;2.9891725;.96211421;2.8884528;1.9791496;5.4209051;3.4284518;1.008651;2.0126517;1.2911828;1.1229576;-4.238553;5.5038104;.69266301;1.5573502;2.5622392;5.2571869;3.809413;2.6567891;2.3932607;2.7392027;2.7740431;.12878129;1.4852204;3.6540799;2.0002239;5.1681967;1.9282631;3.9068131;.9833563;.69825834;1.765296;3.7626591;1.9666811;.61357439;-2.1626699;5.2071095;3.6629193;1.8485744;3.77929;2.4566774;-.89386368;.605205;1.69574;-.32215369;-2.490514;.46922606;1.8920591;-1.2211732;-1.4879644;2.1580744;-.17350405;-.24560496;1.0603781;.65724182;-.59645104;.55481839;2.134752;-1.9840797;1.0605388;-.53956467;2.0551322;.8676722;-.5615775;-.21216103;1.0223727;-.24547242;.56316745;-.76300955;.61478859;-.86118704;.71777683;1.9229248;-.08639697;1.2211615;.3945142;-2.1098821;.93131202;.036899712;.15111232;1.2005148;1.3087507;1.5566974;2.2854464;-.43653044;.69549793;.57800579;.6509763;-.82281113;.12876031;.19056252;-1.765976;.51882243;-1.1722233;.78519547;-.18425319;-3.0873401;2.4235277;.55004382;-1.0609767;.89696872;2.1855054;.75114077;2.9510241;1.9963629;2.833369;1.8292093;.33893165;1.5920783;-.33164114;.37656084;-2.4119585;2.560565;-.19435474;.55294132;1.3735676;4.0841765;3.2646434;3.7750752;3.129689;1.0798736;1.7963241;.46427065;.12509099;1.7610729;2.862777;3.8054409;2.648217;3.3170879;-.35437742;-.016963711;.92246544;3.311223;1.539628;-.76992714;-2.1754153;2.6519275;1.2001672;.79642856;1.3297369;1.1412894;.28665376;54.492672 +2.0691483;1.7720439;1.075057;-.41590255;-.40607825;-1.1211176;-.68185169;-1.7271188;-2.4590025;-.35509574;-.086282007;.015441445;-1.5113916;.73449123;-1.2141917;-.35308391;.09528517;.23775235;-.92952347;.47426242;-.88154286;-.94312203;.77626503;1.3062942;.53559583;-1.23682;1.0797032;.40815544;.11158146;.60983527;.33721438;.48778239;-1.079923;-.065692477;.92294133;-.41442615;-.36538404;.022106081;.45725533;.67644793;-.0067251669;-1.37809;-.38360345;-1.3282692;-.76285148;.44760147;-.94791949;-.29307225;.88960868;1.7307851;.040361654;.83702719;3.7477789;4.4810963;-.78930342;4.0636654;3.8844633;7.2952409;1.3884124;-.35707688;1.7699519;1.1126976;2.1484551;1.4185426;5.9022512;-.088055156;3.0936816;3.0993345;.16920058;4.4236345;3.7031631;1.1746488;2.6212597;-2.1566985;4.8598514;-1.4626812;-.73760968;-1.365988;2.0362079;2.1085868;-3.0720086;-.94297028;5.9773979;3.0366278;-.12324257;-.10331754;6.0361109;5.657589;2.6342101;2.0331082;5.2200203;1.4545996;-2.4058778;2.7806211;.7777077;2.1644826;-.17867853;-.19642286;-.55809438;.31012264;.11884959;2.2437055;-.17094156;.3850846;1.6994013;-2.1720021;-1.3014531;-.27229527;-1.1473253;-.27219594;-.56971157;.56676733;-.32208768;-.30520645;-1.791371;.34143808;-2.0458317;.5504483;-.040616933;1.0841811;.85714847;-.50289065;-.96529424;1.3193591;1.4764529;-2.9392898;1.1897372;-.4420819;.55763769;-.44014013;.46767122;.33268443;-.1520184;-.21846582;1.1281857;.90670961;-.56659132;-.042751331;-.398857;-.92611843;-1.7898058;-1.5471349;-.51311707;-1.4047488;-.82777184;.38367301;-.015140885;.021012776;1.5222297;.55829376;.4034242;.23452172;4.0923138;5.150835;-1.4601128;3.3669879;1.170469;4.4814386;2.2711272;.26812047;-.5327996;1.8927178;1.3363866;1.3653103;3.8580465;1.1621665;2.7425251;.52884942;1.3541995;2.9107125;2.593334;.59308016;1.4867918;-2.2300951;2.9691639;-.34414938;-.37967235;-1.4726795;2.1227279;2.7857394;-2.6615369;-.23112409;5.7557502;2.3244343;.15583321;-.030888207;5.3530331;3.1858251;1.2864165;.89342862;3.8823767;3.208406;-1.7039171;.94406325;1.0751752;.82318032;-3.0371704;-.073472559;.47512519;-1.3020076;45.313438 +-.21053872;1.0629524;.3462801;.0014583083;-.57033473;-.36926061;-.94460136;-.81373405;.33719197;.1393818;-.49837992;1.6126642;.038562983;-.75955093;-2.1657746;-.12810449;.69225198;.064336799;-.45468077;.65852964;-.13994655;-.4422397;-1.6143683;.43630752;-.32268879;-1.1220311;.594791;-.9641245;-.039727245;-.85918444;-.23289807;.00065160746;.36502922;.98054725;-.48199812;-.96590972;-.7062459;.79478776;.25592026;1.0448545;-1.0145456;-1.7772664;.85743499;-.387467;-.70920223;-1.2369618;.47983322;-1.6575491;-.87713665;-.21979901;3.4679511;1.5805645;7.2426972;2.0461164;3.6967554;3.9441097;2.1949341;3.0098288;1.2461213;1.3872539;-.0566868;1.0253376;4.4982839;.87487769;1.7966413;3.9868534;7.3017673;-2.090636;5.0086651;.91246808;1.6431308;.2849282;.27508733;-1.1859852;-1.976209;4.5219269;2.5854509;.87749839;2.9235077;2.3358822;1.7817824;3.6118805;2.1881227;2.9877818;3.8854413;2.9680014;.89426672;-.34555277;-1.7162503;5.4455338;3.1557894;2.873266;3.3783479;-1.0831139;3.1344364;1.1137109;-.15577587;2.5052383;4.0119014;2.5053799;-.59053361;.066150978;-.0086435741;.85087997;-.24575186;.12930974;-1.0413072;.73175204;.39950666;-.3837198;-.83252031;.80478376;.81551898;-.99214923;-2.2500238;-.23768245;.99815935;.62372333;-1.0950606;-.40085554;2.926445;-.92899883;-1.7583257;-.45384973;-1.9982699;-2.8238626;-.93376231;-2.4203353;1.1114144;-.47741228;-.50525421;.75914556;.0059855515;-.42310211;.73920625;-1.9581535;-.14247754;.94941539;1.459033;1.6312485;-1.7285976;-2.1143608;.18794994;-1.1930028;.28872219;-.3460308;.5503099;-.0084239226;-1.2182595;.56891501;.23884197;-.17386791;6.0666227;1.8164202;2.8136747;4.2144175;1.2304649;.61487055;1.4858297;.48975947;1.0613734;-.53879601;2.0476079;.13505657;.1805228;3.2014568;4.4812713;-1.2197149;3.0204623;1.0292627;2.5280893;-.24347852;-.25288269;.78632843;-.30876496;3.5731702;1.2793729;.76948029;3.8009138;1.086777;2.521481;3.0866063;1.6816108;2.1583865;1.9423987;3.9291811;-.93311441;-.80737996;-1.581267;2.9790945;4.1690998;3.7719398;2.3801241;-.070231594;2.7497261;.88120872;1.1457509;1.3527048;3.5060794;.36766428;43.624496 +.97225893;.82660627;-.19623083;-.71672493;.31949127;.33034664;.72996742;3.4345629;-.94898236;.82551068;-1.5899976;-.19513924;-1.4311624;-.65388572;-.77857691;.68086177;-.43201861;-.32921585;-.4024896;.90993518;-.43006387;-.38245568;1.6508996;-3.5792816;.58117849;-1.1613715;.1433098;-.62474978;-1.4410928;1.057561;-.38750875;1.0334176;-1.6130282;-1.1080842;-.057781693;.70522839;1.0519547;-.52904266;-1.4668041;-1.6194603;2.5949376;-.043268099;-.52781218;-1.6007719;.94113636;.21807551;.65099424;-.42641327;.065165088;-1.893975;2.1944556;1.9092648;2.1307445;1.0159096;-2.8458889;3.0686929;1.5869684;2.2249484;1.9558865;1.8109453;4.67383;.5888142;1.9716476;-1.0139599;2.8981864;1.7481772;.95644927;-2.3529055;-1.152882;.33091846;-.1328897;1.8423003;2.5897701;-1.1451608;1.8535043;4.7505522;1.2044142;4.6595583;2.439096;1.8557733;5.0000386;6.2117348;.77012521;2.0149887;-.89550042;2.0011206;1.4108781;1.5583438;1.483162;7.2260742;-.36041489;-.15433435;5.4858675;2.5066097;6.4576287;2.914547;.28416207;1.4565889;4.3955131;1.5311496;-.11116645;.79777765;-1.0919784;-.20175327;.062277;.60627288;.10571652;.87949187;-2.276798;.57109022;-1.9190179;-.098550655;.31864861;-.20573097;.21457547;.10910358;-.20956387;-.202774;.49424577;-.46162349;1.2878966;1.2560232;1.504824;-2.9292879;.27928516;-2.4396884;.63788915;-1.7589186;-.86508203;1.6533576;-1.4174181;2.3608918;-3.1565669;-.9270426;-1.4557906;-.54318506;1.7437167;1.1754569;-1.8456898;-1.2355993;2.4589114;2.1604197;-.9601689;-2.2770014;1.2264555;2.4957428;.79592752;-.51309425;.54285949;-2.203155;.40141416;.090429738;1.015174;-.37093073;-.54699403;1.5692799;1.9157474;2.973053;.56746215;.54566425;2.9114528;.8096754;.88623756;-.48242193;2.2004287;2.4596398;1.8454587;-1.7364036;1.035304;.63061196;-.42144907;2.5304294;1.4748996;-2.8431261;1.0605611;2.1098275;.20449783;3.74739;3.0225413;-.28131732;4.0167975;4.3019152;.9357686;2.1352718;.42812973;-.017634239;.99991584;.69480896;.22902001;5.8173823;-.55083984;.63779783;3.1931872;1.0512097;3.866286;2.4764042;1.0838039;.77294546;2.767067;2.1066391;45.309502 +1.5178624;-.24323605;2.335449;1.0482172;.34551549;-1.6384307;1.6172329;1.1453799;1.7194902;-1.2300742;.69417638;-1.555194;1.0713428;-.87073231;2.8557112;.77232939;-.46025032;-.35979694;-.45012859;.67077702;.26859212;.56128371;.22364689;-1.0796437;-.26795563;.19316103;1.0801849;-.25266686;1.3323056;1.1837033;-.10682026;-.57025605;-1.2232207;-1.2610221;-.35160685;.75266773;.2176811;-.10476341;1.5264547;-1.7090414;.21921712;-1.0938944;-.77441949;-2.0264692;1.1889384;.91594595;-1.1702235;-.069972388;-.51259315;-.64797688;-.067269899;6.4874592;1.7195365;1.9257399;2.2963998;1.091713;1.4281961;5.3512702;2.0228307;-.81034762;1.1015506;1.0149821;4.0910306;3.8557963;.64642644;1.8657454;3.2440572;1.9075085;.28664726;5.2324409;6.0595436;.12419511;3.433985;3.5027416;.14790177;4.0467615;4.7656608;5.3869309;5.9321713;6.5595269;.66890502;3.4994192;-.96315801;4.1750712;5.7985296;5.8335414;3.365577;-.48988008;2.1069043;1.4963268;5.649477;4.0948768;4.9890261;1.5047239;-2.4386606;.77153534;-.50387114;1.9351981;1.4952874;4.6925397;.95182109;-1.5994525;.64019877;-1.2198792;.28266373;-1.3976884;1.9662254;.67699778;1.7594687;-2.4047704;-.055279132;.46765417;-.44554129;-.27512163;3.4834795;.63114268;-.32498077;-1.6581486;.004928397;-.58393991;-.87405598;-.054164402;.59086585;-1.9937075;-2.1800129;-1.0779577;.88973796;.28188112;-.58626097;2.3493435;-.84401995;.39897704;.0081916498;2.005482;-.3640224;.81980765;-1.1969559;-.0031913668;1.4354299;-1.2366616;.74084955;-.49852887;-2.5071127;-2.6973393;.98862159;-1.804015;-1.3098571;.31534681;-1.8728138;-1.5537889;2.0111122;5.3279295;3.8623357;.039459839;1.1878875;.99405313;1.4181279;2.7287645;2.3598163;.36449513;-.88922513;1.8055711;3.8356209;1.897542;1.1486701;.73798418;2.0052536;-.38217741;.60752773;1.5886556;4.6194763;1.1615103;2.6117167;1.7397743;.70992225;3.3883073;1.9541649;5.3139558;5.7703176;4.1103582;-.17914188;.82266361;-.9050532;2.8213561;2.9071133;2.914463;1.6004809;-1.0184739;.74616039;-.17311563;2.9532311;1.6452744;3.882262;1.1607355;-.33337548;.44720986;-.084524199;1.807822;.74788421;3.0096645;73.672417 +-1.7733452;.22618207;-.74125987;-.43235365;.68316597;-.4755078;-1.5387115;-1.3279884;-.027663117;-.13063873;1.0013831;-.0060272105;-1.2736342;.31193942;.57245469;-1.4982538;-.33003575;-1.5517944;-1.4948264;1.052605;-1.5086001;.75512999;-.66224355;.017232589;-.26378065;-.52183598;.93032724;1.6635723;-.11950106;.28306988;.81947595;.66862106;-.28970987;.56833625;.70865154;1.0880781;-.041879185;1.0374579;.72562575;-.87641615;.42923805;.83873367;.57595295;-.90198171;.17094906;-.44896826;.51182681;.07649754;.18323611;-1.0868464;4.6066761;2.0221946;2.5403366;-2.0442791;4.5720992;4.7062922;.31288698;3.7223487;2.3377094;3.5477669;4.5304852;-1.5079154;.16484247;1.4623913;4.2477713;.91684139;1.9604415;2.7270532;3.9616144;5.4608054;4.5661016;2.5569453;2.3369746;1.8523821;2.4352038;4.352654;-.49837276;5.5805602;3.8816404;.67476439;1.9911093;6.8522725;2.2504323;2.7212067;1.2178117;1.640492;2.5061762;3.5865519;2.4167681;5.3516531;-.46912852;3.3976631;2.7722101;4.2990184;-4.456398;3.5813377;4.0010142;1.0323963;4.4735861;1.9066911;-1.4924999;-.95874572;-1.7651559;-3.2084558;-.21877579;-.90811366;-2.0793393;-1.0396081;-1.6402987;-.1933185;-.51192862;1.025012;-1.2984967;-1.1264874;.1006446;-1.6959721;-2.47399;-1.8639139;-.65208477;.87105197;-.48140675;1.682386;.17291291;.90565085;-.53442514;.43210417;-.59240645;-1.0138025;-.50433517;-.50209767;2.1571124;1.0682465;-1.2371088;-1.5904981;.69757479;1.2639232;1.0453837;2.1206539;.53142536;-.40209654;.42964593;-1.7011546;1.7723767;-1.9348396;1.6329182;-2.050648;3.2626388;-1.9192983;-.11167696;-1.2502518;4.9177089;1.2115086;1.7228953;-.65410256;3.1305974;3.4047692;2.961632;3.1868966;1.3216488;1.8039299;4.4845009;.11122746;-1.6424044;1.5010684;1.2478203;.50845325;.14191948;2.0775096;2.6954908;5.0216794;3.238364;1.0791328;2.6304116;2.5178096;1.5416502;2.8509295;-.081370778;4.9325209;3.6087911;.48749605;-.17057914;4.9832273;.53283072;2.0840278;1.6087605;.84978741;1.5869625;1.3774868;3.8864806;5.4402399;.53319234;.5319804;3.0136774;2.9721041;-3.9993031;.95423943;3.1409969;3.3129141;3.3082874;1.6861145;67.555336 +.08883331;1.0206442;1.8233274;1.12402;-.93748784;1.6847653;-.38653463;.44548261;-.79786301;1.655264;-.31673378;-.81858337;-.81793201;-1.5617915;.49992439;1.0001744;.39724687;1.6520262;.98769057;-1.450893;.62950313;-.31458265;.20883575;.18735741;-2.9460118;-1.0878392;.60833752;.30590519;1.0730656;.46956298;.12993316;-1.2890682;.34081474;-.2795403;-.48564267;-1.489277;-.30727783;-1.0741515;.076288037;-.46865588;.10785156;-.2098399;-.027869465;-.69004208;-.20706812;-.35940221;.42179343;-.23934273;-1.7886839;.63608211;6.2386198;2.6412098;3.7612734;2.8616786;1.0090334;3.1065316;.78600824;1.6387851;.61314559;3.4083362;.14856185;4.1888628;3.3195059;2.4265995;3.8702612;1.0083501;4.8364005;6.2768936;3.133611;-.029017296;1.910629;2.0167656;-1.1179721;.81590456;1.1002796;-2.4282463;5.3736157;2.6996586;4.0463452;.38712415;1.0274842;-2.5037334;1.7705451;-.69971639;-1.3622134;-1.8705558;1.8709328;4.8408713;1.4608648;1.8378669;-1.6876742;2.7563612;2.7930598;-.62525457;1.4398143;3.8029466;2.6186044;1.4472657;1.5381302;-.48473623;.28744677;1.5066746;-.43900588;.53807008;.030471038;1.0992752;-.26763806;-.13641223;-.9521789;.38605142;-1.1511647;-1.959233;-2.1121502;-1.4776579;-.91978395;.95694959;1.2613864;1.3264654;3.0620365;-.23821428;1.2641934;1.3626064;-.062668987;-.27834991;-1.7633582;-1.3433906;-.6003927;.81915736;2.638519;.1535126;-.81579143;-2.0010059;.40554264;-1.6503628;.85404152;.83170104;1.4779892;-1.4322999;-1.4146239;-1.9803091;-1.1292049;-.37500933;-.032409094;-2.1338704;-.095081717;.54666001;.69256771;.25657332;-2.7569861;.47968394;4.003315;1.8116372;1.9592752;2.9205816;-.23151766;4.2424736;-.91979623;1.9751828;.26778007;1.8162092;-.80233246;4.7841735;3.6052635;.76614803;2.2256427;1.7778426;4.1258416;3.8013301;2.1011641;.71145421;1.5815239;1.9207897;-.22928649;-.82706636;1.4721797;-.90667301;4.6639872;1.5906364;4.168766;.28197631;-.010752614;-.67353493;-.098941542;-1.8939461;-1.0167434;-.87915343;.83065337;2.7773261;1.3443794;2.4187274;-2.2457979;1.6234049;1.6640708;-1.73654;-.16200674;2.9900007;2.4085624;1.6513947;-.42419136;-.73525113;35.28933 +-1.4224719;.3589552;-.18946944;-1.8970133;.32284954;-.72821873;-.5434773;-1.4407331;-.10313157;.5876708;.054128282;.75388938;-1.0957836;-1.1277853;.25128236;-1.8682123;-1.0017509;-.91676545;-.58219427;-.89195633;2.065958;-1.8411956;.85265625;-.63397819;-.44895145;1.6441637;.30814964;-.4178912;-.81901556;-.61875582;1.0077392;-1.4040691;.24449694;-.15433833;.87815499;-.20434017;.032528587;.79937512;.38061997;.17839555;-.26045015;-.57066905;-.97351068;1.0656884;-1.237902;-.79613304;.88917118;.71074289;-.32926875;.025550507;3.8412526;-.72257721;1.6476365;2.2188544;-.10899634;1.8054169;2.0975742;4.2617583;.00046708621;1.1626501;-1.4011285;.25919077;-3.095386;4.9423661;3.7862663;1.4891487;-.81912947;.46951279;3.6793699;3.7745116;2.1521966;3.9332068;4.9600596;2.1818657;1.4234812;2.2569849;-.86587703;3.6528502;6.6878014;-.49230847;1.8995368;-1.5016521;2.2225232;3.8118634;-1.2395158;4.8767071;-1.2930601;1.6636664;4.2242413;1.1241628;1.5362841;-.31030926;.48821315;.12672101;-1.6894878;2.5134113;.57623756;-1.5713744;4.0288329;2.5210147;-2.4480782;-.42782107;.65848529;-2.8568516;-.63908982;-1.9677269;1.1141785;-1.5055213;-.083057903;-.75747639;2.1489155;.96585727;-.70758843;1.0372416;2.0716736;-2.2465572;1.7904708;.033341751;-2.1868007;.42205665;.55171585;-2.3345766;-1.5227932;-1.1996183;1.3180352;1.1068891;1.3510027;.12659332;-.32040066;-.3407931;.060528703;-1.8800734;1.0605356;.028869571;1.2822403;-.59986448;.805372;-.11030173;.12357474;.75039065;.66824222;-.25173596;-.75915211;-.51702344;-2.0772636;.34709856;.73142999;1.2514206;1.0445918;-.26750284;4.0232172;.1567778;1.2893759;1.0643717;.014841615;1.1710405;1.5832133;3.736932;1.8801638;2.5929587;-1.9936239;.36870068;-.48139426;4.8820796;3.2836714;1.4487723;-.035861067;-.76254535;2.1347353;3.5490992;1.5601251;4.5187907;3.4953864;2.1791854;.68430781;.087603725;-.28272933;3.2318697;4.4709964;-.37768248;2.82921;.27662638;1.3975111;1.7485726;-1.221814;1.5038611;.37463403;1.2362235;.8171556;.40918377;.82910204;-1.4678643;-.96391422;.12363508;-.33863056;1.0918231;.13108647;.69999284;4.2697086;.23015682;42.758102 +-.73262566;-.34101823;-.13165775;-.11676802;.15549988;.65518105;-1.1854419;.75929159;.71418905;-.7565645;-1.578474;-.45831487;.49406978;1.7736132;-1.1903034;-.16488878;-.64637446;1.8865795;.11021688;-.27451929;-.20199153;-1.078655;-.48748758;-1.7898387;-.10871854;.60082752;-1.4545155;-.19643648;.32132739;-.10417422;1.1148338;1.6856549;.050621796;.29136604;-.48225686;-1.2625393;2.9139547;.29655376;1.4742607;-1.0052156;-1.4218887;-1.4402875;-1.024375;.26082283;-.78647995;-.70431173;-1.3001939;.38576415;-1.2964493;-1.9494722;1.831895;1.0145333;5.732276;.059529521;-.030226249;1.7690463;1.4626535;4.2322931;1.1440215;-1.5645484;1.8649247;1.6308987;2.5715096;-.59097135;4.5408168;.84654182;.53231174;3.8792193;4.585784;3.7300978;.64138883;4.2259674;6.1544261;1.1893505;1.9080462;.67858094;-.96879739;1.6870011;4.0288486;1.2409122;4.8159151;2.1263435;1.5780485;4.1704321;2.4464636;3.7902071;.7542401;4.0934777;2.3274593;-2.0161302;1.1001121;2.0690336;4.1868272;2.832962;.95150322;3.7355931;-2.215389;5.2827315;2.4236133;4.8460088;-1.4278177;-1.189706;-.37632138;1.16074;-1.4466506;-.48944539;-1.5356933;-.58316696;-.89900404;-.040441323;-1.0719728;-.48614872;.15275538;.75406843;.041183989;-1.5063701;-.24841945;.42815724;.48222479;-.89673275;.48744464;-.44610161;1.3593836;-1.5028608;.55338556;2.3260448;-1.3478168;-2.2498846;.76713282;.12963095;-1.1636024;1.8549048;-1.0620453;.71308714;-.2121167;-1.4519615;1.3609538;.64319909;.18183859;-.78276187;-1.6518575;.54241943;-1.2440403;-.56902528;-.96754456;-.017223554;-1.6080397;-2.0734932;-2.0062695;-.73169696;1.7085783;.79320359;3.8608522;2.6584239;-.055528231;-1.1992822;2.8722391;1.2708004;.71933359;-.37322149;2.3182211;1.6457609;3.1496119;-.96667027;4.4401407;-.39023307;.041655295;1.7122731;4.0364985;3.9479034;.97535151;.39015028;4.6561303;1.7775211;2.5767615;2.4049766;1.2171382;2.0300803;3.223129;-1.6153088;5.369514;1.4628495;-.69720787;3.4290278;1.7660389;2.3502681;-.85154849;2.2479999;2.824811;-.23395793;.5251897;2.0176215;1.985423;1.1232343;-.6247077;3.5604;-1.5903199;3.0406325;2.7187586;3.9338019;48.19405 +.35413581;-.93352115;-1.9463234;-1.1188215;-.85884088;-2.8770423;-.97079927;-.47143841;.33689684;-.35477161;-.1248984;.21803756;.60562879;.94813091;.49431568;-.41165057;-.57685244;-2.4538479;-.85982299;.048782691;1.7475768;.11578248;.71199298;.21998118;-.69786376;-.59935904;-1.2155899;.46505207;.70358002;.073290199;-.54572314;-1.2337373;-.46047214;-.74580532;-.28067032;-.38804784;-1.6783582;-1.2850428;-.28975916;-.53735828;.60078579;.64861399;-.27562934;1.2618731;.85831511;.44999033;.65790367;-.39220741;1.3841349;.090513378;1.0362064;5.7716031;2.4679196;2.7626359;2.2314498;1.5284526;3.1990883;.86392951;.9435178;3.4662831;4.6334081;3.7979841;4.7556629;-.28176141;2.8827574;2.8468065;4.9628143;4.3547831;2.3547287;1.488976;-1.1587728;3.5524037;-1.1389735;1.3740351;4.1927581;.83498663;2.0836167;4.4455009;.48928526;1.6446748;.79633075;.77184242;.68141139;.11923616;-2.1514442;2.7666228;1.6850166;1.732848;3.1047733;1.7222403;-5.5146804;1.6234549;1.2421521;3.1027102;2.2600849;1.7884667;-1.1573801;.87353516;.70290917;5.4960976;-.67854893;-.77841234;-1.1755028;-.83965302;.65965301;-1.5234444;.48029256;-1.2483724;-.80782557;.1586902;-.41424149;1.4989643;-.80984145;-1.6158366;1.1273756;.31591925;.40678576;-1.0754979;-1.2462158;-.0021941043;3.2809439;.16134168;.34840015;-1.3186398;-.49454436;-.8645739;.18891813;.10791011;-1.1368407;-.19258139;-1.7845882;.8577351;-1.3735226;-.21167414;-1.1638193;-1.3229411;.98210037;.44047987;-1.7279031;-1.3842127;.74881071;1.1107237;-.36746183;.36395898;.11002051;-1.6341752;.32091397;-.40988311;.083610781;.62729585;1.8449184;3.5685582;1.2869033;1.512822;2.9812756;2.15644;1.9478233;.35833213;.91333836;1.1420996;2.8802795;2.9503889;2.2002447;1.8896219;.93669438;1.4079981;3.7658849;2.5484097;1.2345722;.0037547753;.90713966;2.867121;.26092657;1.5021909;2.8567307;1.2457396;2.8879387;2.343679;1.0905257;1.2638174;1.2054201;1.4893472;-.42997652;-.7109555;-1.1245817;.89663976;.44951519;.9892869;.87526953;-1.3813273;-3.1102262;1.2405648;.32112712;2.3142302;3.054769;2.0473256;-1.3589046;.29708728;-.31851682;3.355232;43.751362 +.097577304;-.94448048;.021349616;-.48677987;-2.0132198;1.0721785;.34048468;-.080363415;-.43805814;-.48649675;2.1924262;-1.0489441;-.60970455;-.18670668;.79483616;-1.2018034;-.5042851;-.94528139;.44633201;-.39966348;-1.1437387;.059378285;1.8230703;1.8384463;-.42910466;-.81261128;-.43184894;-1.0536453;.49185431;.011978846;-.77499849;-.25279903;-.75610906;.77648592;.86064625;-.41949257;2.7300558;-1.8030206;.11309709;-.27276552;.95524818;-.99147457;1.0996042;.57820016;.74050993;.0091222767;1.4094818;-.18029782;-.20871663;1.107739;2.0934401;1.001334;.91973454;.4464719;-2.0055423;1.6739297;3.6829779;4.5450058;.04457194;3.3793797;1.9184295;2.0826499;-.30811036;4.1998272;2.3504207;1.256525;3.7681427;2.3996034;-.38443199;3.9914451;.6920715;1.7780426;4.8686428;1.669376;1.2338636;2.1361308;6.4093671;1.8961709;-1.1504278;3.0645089;-.65055615;.51662952;3.1908989;.60759491;3.0517523;.7071349;2.9458733;1.959686;6.9154501;2.8426661;-2.7358036;3.9204922;1.914606;2.3446913;2.9593115;4.8545218;.55364597;3.5959852;1.0357296;1.5927588;1.4551561;-1.7550749;-1.6793296;-.89601249;-4.0004272;-.61000204;1.4624449;.36616719;.11080624;.26209512;1.0573704;.32205352;-.63685322;-.25339705;1.0500305;-1.6580751;.54050267;-.93490535;-.27796116;-1.0147381;-.39540881;1.8639722;2.6153901;1.8666149;-.62482494;.12502334;-.50959426;-.31827345;-.52220404;-.82962155;-1.029965;.87108135;-1.6655452;-.12895347;-.051536649;.2880775;2.9428196;.080637187;-1.4723078;.84070635;2.4189565;-1.0913433;-.020089986;-.16686507;1.7689033;1.0905906;1.469106;-.45894405;-.27650544;-.4696604;1.9001814;1.1891054;1.9861737;1.6308497;-1.5618445;1.6712009;3.4037194;3.8415115;.71667975;2.7836888;.93176061;1.9937801;-1.4281504;1.813423;2.3193431;1.0777793;2.8788037;1.3579184;-2.0097752;1.2554188;1.4643433;.72683346;3.9370985;2.301065;.060999352;1.0257676;5.3776979;-.85063702;.29760844;2.1627455;-.10450274;-.4720383;3.9367719;.40551603;1.7961037;1.8317009;1.9141821;.027983306;4.5737863;.074745141;-.24424663;3.3056262;1.5820467;2.1282015;1.5232865;4.1301222;.12203474;3.8534985;.86862355;1.8999385;43.090496 +-.34810263;.17544229;-.89439923;1.3613768;.4139308;.26136395;-1.2041252;-1.3333217;.33125916;-.14711577;-1.5210458;.065037198;-.90473431;-.16963182;-1.2782494;-.63939953;.92235327;-.095804825;1.1438655;1.5607603;-1.0375811;-.66215664;.056516163;-.91098642;2.2308946;.76558787;.77992189;.94796783;-.50872058;1.6078448;.94201601;-1.4455028;-1.3971075;.015445936;1.186065;1.2559298;1.1520202;-.1835091;-.3506141;.45107269;-.46214995;-.37429234;1.0774866;.39948773;-1.2918688;.043450434;.79405922;.26007921;.24846767;-1.0892102;-.75577903;-.25996155;3.1658123;1.1663643;4.7176375;3.8995552;2.2323952;1.0951847;-.19722794;2.8273745;-2.4504621;.67112106;4.2058954;.2090656;2.6125438;2.7158532;-.26234332;-1.6660508;2.877136;3.8904405;1.3852794;-.025391193;2.5218029;4.0143366;1.5130955;4.3006988;3.3455954;-1.6710916;4.6045189;-.26730374;3.3545959;1.3904165;2.4295998;1.8065584;-1.6451588;.88045996;2.8072715;5.2757392;.86652917;4.3035231;2.8165479;4.185041;.50950325;1.3647907;2.741292;.43347853;.62062061;8.0566587;3.7762272;1.1947356;.44988155;-2.0408061;-.97308207;.24297093;-.64267981;.9947533;-.51492167;-.58570701;.83357453;-.54331934;-.77177203;.769512;.8943336;.45596042;.50498062;-1.0677037;1.1864216;.49245596;1.1713594;1.3269726;-.096456118;-.31322092;1.3634176;-.1930858;2.2877619;-1.0325179;.79927862;.85112053;.80641204;1.0557263;.63467401;-1.9244882;-1.6111273;-.50329041;-.88495058;1.7682508;-.31881857;.72909737;-.99452871;1.5381552;-.71604151;-.73803592;1.6124024;.17153089;-1.2561717;-.48210293;.58886999;.97689861;.58717352;-2.0595515;.16337183;-1.3247141;2.5309105;-.36493167;3.8631268;1.6643354;1.0713806;.76080161;.24306229;2.3885574;-1.5345964;-.025089452;2.852555;-.44874266;2.6969867;2.6232433;1.6322247;-1.0503478;1.3932488;1.4215251;-.49446207;-2.3683758;1.7693477;3.7452283;2.2007532;5.4970374;1.5689806;.62787914;3.1187756;-.63919646;1.4445945;1.4904046;.44674477;1.806445;-.65910959;1.0528318;3.4398088;3.1889536;1.7031388;3.4024143;1.4022788;3.4242852;-.055693969;.00286961;1.5490488;2.2138331;1.0544463;6.8018456;2.2197461;1.0316147;52.162159 +.44597951;.82632041;.51535362;-.028521711;.95352477;-.42526338;1.3571637;1.2629763;.023979288;.86103469;-2.3273573;-.25797775;1.0784212;1.4744889;.26637775;-1.3176086;-.089227878;-1.7780344;.66916615;.018603466;.79125196;1.024965;-.61272013;-.76764375;.16677977;.8290928;-.15130274;-.2311563;2.1141882;2.5136914;-.84415537;-1.1275254;-.54786438;-.28529122;-.71426821;2.0847971;-.87621653;.96956241;-.75660586;-.24685492;.61260486;.46411875;1.4383931;-1.1487746;.99243659;-.23705226;-.8114661;.48859543;-.6187098;.14940488;5.0664654;2.98736;1.2261156;2.536047;.42725796;.94505775;1.8586648;-1.4713386;.93446016;.86746198;3.1043537;1.2790025;1.9003048;-.85650319;-.85275275;.2842854;-1.9749488;6.0205479;1.6403605;1.4806126;1.345853;-1.8332124;2.2783525;2.7145803;.2099636;4.7697682;.45569342;3.9662604;2.6548316;2.1848149;1.2725344;2.7854586;2.4861152;1.0853578;-2.5891354;4.193296;1.04703;1.9138132;3.5143898;-3.0468667;5.1059885;2.7236667;4.3159227;.66810668;3.747818;1.435128;1.6857028;5.2293973;.62143004;2.8758974;.077793434;.073257551;3.0059395;.57854229;.60554641;-1.0178789;.75414687;.23640074;.3339057;.31444627;-2.7719998;-.029521184;-1.2268386;.4029673;-.55079269;-.5939489;-1.1226139;-2.445039;.35404742;1.4075655;-2.4759974;1.6734276;-1.1129652;-.70268649;-1.6783317;1.0074017;1.2331231;1.6905166;2.1506386;3.2884786;-.91718531;-1.8555073;.91659564;-2.3299387;1.1572753;3.1327541;-1.0395808;1.7136708;-.57697231;.48222604;-2.0566921;-.00088118104;1.3269547;-1.6570477;.15928386;-1.3770825;-.20807882;-.3993136;.93055034;-.68221545;3.0041125;2.9750462;1.8000609;.84933823;-.53014565;1.6436287;.57609296;.32478768;1.1622531;3.7167857;.71621203;.93838769;-1.4485401;-1.8121971;-1.7287416;1.171108;-.29304132;4.2057786;1.3152122;.21879549;.71524262;-1.9420153;1.8933254;2.205205;.61927587;3.451725;-1.2856109;.65763265;1.8293264;2.9711976;.96037912;1.5985808;2.9146986;2.4455929;-.73644423;3.7854667;-.31117874;1.5601306;3.3737063;-2.0643063;3.5118451;1.424167;1.3740277;.69792956;1.4178065;.055912916;1.2741721;5.0974565;1.5655015;2.3571665;50.396812 +-2.1085181;-.46874845;-.47531518;-.18806913;-.29484636;1.2009271;-.019239306;-.20441635;-.84185547;.081069753;2.1580656;.82494795;.47656715;.97186196;.18325388;.97509938;-.084823519;-.43660107;-.83185548;-.96511847;-1.4459076;-.20856398;-.98136955;.48102871;-.20785643;.24406867;1.0293545;.096087702;-1.0658622;-.64844918;-1.2717389;.38792723;.074082665;.45155707;-.30568439;-.65523344;-1.1312493;1.1147856;-1.1604019;1.5143944;-1.2959539;.95084316;.51116556;-1.320702;-.45311892;.72566885;-.55302846;1.3080043;1.302635;-.13667105;1.5433966;5.5663805;4.0205173;.22042014;-.73146635;-.85062373;1.1180993;4.3518085;5.0495143;-.20151806;-.49644822;2.0915654;3.4650936;1.85209;4.0837049;1.9528197;1.0626113;-.60127139;1.3835965;-.048171662;.85524148;.69962525;3.3965545;1.7510989;1.7029152;4.0127435;5.6426616;.60127932;.73706877;2.6968956;2.454298;-.076697297;1.4250828;1.2940001;-2.1795707;.43193883;2.967303;2.59568;2.6737046;-2.1244097;-.39490935;3.0491364;5.5232882;5.8032308;5.9760437;4.6862421;3.6486604;1.6089048;.062996477;-.74551523;-.29341766;.30895218;-.90906698;1.2287525;-.58678752;-.39886439;1.0820042;.32201084;-.20844014;-.36404452;1.7789793;.99778444;-1.2049521;2.0040321;1.2627299;1.0918221;.5395689;-1.1549027;-1.3550445;.37567273;-1.847425;.43209067;-.4141551;2.5963161;.033725541;.7844851;1.5438327;.37734479;-2.3189235;.82426;-.81741643;-.19270237;-.88928604;-.74321228;-.59562397;-2.1175334;-.63475239;.41245127;-.0014918838;.50905854;-2.0353065;-.38050988;1.383204;-2.2034407;-.98898011;-.59279019;.1647177;2.6242852;1.9639696;1.1830692;1.1253864;3.3370945;3.8099883;-.29090577;-1.4957305;-.42128259;.67234331;3.4207027;3.00646;-.26246735;.15596564;1.5616879;3.3421485;3.6040776;2.199599;.22047773;.60756159;1.1934091;-.25144339;1.1130253;-.99695981;.48513901;3.5608561;-.034523886;2.0468321;4.5301604;4.5548105;-.71592313;.45417738;1.7450286;.54602593;-1.2715489;2.4005911;1.7989905;-1.8298913;-.24747983;1.2388198;.93981814;2.2579489;-.37552121;-.31151652;2.2075968;2.1388268;5.8472328;5.055202;3.9166207;2.1651757;-.36864805;-1.5749128;-1.3790407;46.864555 +.62450725;-.0074990061;1.2397205;-.16556856;-1.7100128;.62713838;.56406277;-.21991991;.095050856;-.87094963;.531775;.21703835;-.94435227;-.21283299;.12858;-1.9191223;-.38836059;-.190448;1.2788428;.86148459;.93941039;-.15109017;-.85274225;-.24496384;-.13726661;1.5236466;-.22652549;.24271116;-.761401;1.4985482;.13613646;-.78164703;.59493917;1.6731963;1.4798912;.39134443;.85708237;-.24515082;-.48198175;-.61822826;-2.574667;.60883492;-.3042658;-1.4276705;-2.070823;-.94128925;.2058925;-.8417694;-.23638135;-.12466682;3.322051;.38645783;1.5819365;4.4843154;4.6414514;3.9259813;-1.4474747;.796471;4.2222214;-1.8661327;2.3569441;4.157371;.40071148;5.2606573;.22719762;1.1183186;.25951931;1.9172909;.84649891;1.0331832;.17364053;-1.1879125;2.1557443;3.2273588;2.246985;2.2796514;3.7061446;3.8731496;3.4162199;3.6138351;2.0463212;.55547476;.10380562;4.1322742;2.9856629;.66864824;2.5791688;2.9600937;2.3619609;5.4809914;2.039993;3.1237783;1.2708207;.57532328;3.3765883;4.3785706;3.1550577;3.2642241;3.7378297;3.6717544;-.1630031;-.28093529;3.1459942;.67490488;-1.1372554;.20206416;-.48677257;-1.4832855;-.47530243;-1.085122;.45385295;-1.8859941;.46843293;.8839888;-.86910146;-1.4037316;.30241606;.40265161;1.1875517;2.4439645;.39657345;.048599508;-.32209292;-1.1273335;-.02627714;1.3642647;-.49008715;.70168525;-1.9627244;1.3270887;.76030135;.036214322;-1.6076871;1.724243;1.2008498;.56087816;.63592947;.31191972;-.39709002;-.85969716;-3.4146769;-.77068216;.4821685;-1.7681921;-3.4671361;-1.2180004;-1.5251912;.20007741;.94842511;1.2271295;2.6857774;.21791032;1.8263128;.30681711;1.823476;2.4383118;.17925815;-.41798779;3.245657;-1.376525;.79667783;3.2698133;.2133944;2.7155259;-.14658347;1.0928319;.88577497;.8209613;2.1461997;-.11189695;.024192385;.20068309;2.1545088;1.1549389;2.0279977;2.5221319;1.8051188;2.5761893;1.6752398;1.9234691;2.1070793;.16499931;.92661977;1.554279;1.0949618;-1.6717879;2.0129013;2.1742029;1.0737574;3.011663;1.6733288;2.1420836;2.8490465;2.6511679;3.077405;2.565161;2.5748029;3.2913878;2.0998077;2.7738302;53.12273 +-.22942986;-1.3295336;.67220968;-1.9436816;-1.7523645;-.054261979;.87829185;.26935259;.56192183;.5907113;-1.6168826;.24246408;1.4674762;-.2745803;-2.1639016;.078351259;1.448841;-.49398142;-2.0446823;-.31131077;-2.2153444;.1947757;2.0657556;-.0098054549;.034518316;.2326933;.07769715;.51125336;.96636045;.79983974;-1.4175075;.7219345;-1.2178956;.42208502;-2.9588408;1.0082216;.92980129;-.36224717;.50945026;-.25364295;.80687767;1.7337016;-.7579819;-.46615988;1.3891808;-1.0139775;-.90837401;1.5091335;-.10885914;-1.1173657;2.9068131;-1.4363554;1.319706;2.5827641;3.6404912;4.5256004;5.3525443;-.14477456;.9338277;-1.8137046;1.6922553;-.090473995;4.0380182;2.0250168;-1.201876;1.6688894;-1.4186132;2.0055041;3.6443701;1.4776485;2.1119814;1.6148016;3.7500188;3.7834752;-.33001211;-1.3106831;3.2769542;3.9976411;1.4817171;4.5854173;3.6873858;6.9660101;2.4492071;3.0710108;.2768088;3.958431;4.5009832;1.5097958;1.6801485;.71453512;-.65094185;-1.3658235;1.6457348;-.56697589;2.1971595;1.2186135;1.6793637;-.13984346;-.47733921;1.6687785;.42313018;.031130789;1.8399678;-2.7965696;-.86080289;-1.1724033;-.6121521;.034540292;.068396948;2.527936;.42496938;1.4418633;.6313045;.66583759;-.92678833;.20394461;1.695568;.56407899;-1.3957088;1.2091973;-.56256318;.45998219;.81834131;.30849919;1.7069055;-.55962586;-.3191697;-2.1428335;-.38211119;1.8898395;-2.6648717;.39175436;-2.3597016;2.7368579;-2.8714826;.96953481;1.9950346;.68448377;-.65121222;.089686595;1.1691798;2.5902627;.65538937;1.824046;1.166396;-1.8719004;.76101243;1.5621655;-.73938787;-.83471334;1.6234109;-2.4556119;.81937963;1.0532575;2.844938;3.9929602;2.5878737;-.49073228;.71768951;-.74039954;1.0891804;1.9364096;2.1565995;3.137603;-.74353671;2.1489186;-.67371285;-.95007175;.96407306;1.00507;1.7917525;-.50858527;1.8201282;3.7268391;-.61699599;.058394071;3.1792893;3.1170914;.80470693;3.0994163;1.1198524;6.2507205;2.811229;2.9497797;.58704835;2.1912329;3.1710536;-.27986291;1.1762534;1.1853731;.37128332;-1.5455329;1.7005552;-.38898006;-.1657072;1.7522454;2.5939841;-1.3679153;.77241439;1.7000569;44.547115 +-.31775263;.36485887;.7984305;.32950267;.66739279;-.63254881;-.74148679;-1.1759477;1.9341305;.93641919;.077139907;1.9960045;.94706202;-.1787788;.55022591;-.47753948;-1.8937179;-.11933136;-.79134524;1.6763184;1.0520794;-.040636141;-.2861127;-.47034797;2.0438812;-.093798138;-.62992835;-.24776785;1.4951516;-1.8442552;.49077192;-1.679283;.95877898;.13521095;-1.1931548;1.7469554;.36421707;-.75096136;.67625296;-.9556936;.4567011;-.48448777;-1.8817226;-1.6818839;-.67297614;.50481749;-1.0444418;1.2860732;-.94980925;.0053701145;-.31197798;2.5474629;-1.9500387;.41136798;4.3834205;3.1647108;2.329344;5.4808388;2.6866901;3.2791786;4.3674755;3.2451336;.76687032;3.129204;4.5574632;3.4201407;1.5318878;5.180346;2.1205735;3.0036688;1.3801477;4.159739;2.7357528;1.6029691;-2.8361983;3.0592113;2.964761;2.3149338;4.5827694;3.0993729;.56010073;3.3991759;3.3082743;2.6964059;1.1809042;3.3388836;1.003832;.58280987;2.3978274;.69127327;2.2819035;5.5838003;2.0403888;.89247239;-1.2123283;-.067528479;2.0451093;2.7418149;2.0719581;.27583215;-.48315328;.53113031;.95224559;2.8199823;1.1948781;-1.1848238;-.5281564;.052644741;1.4673145;.2945509;-.68869436;1.0445386;-.42153117;-1.4586568;-1.3634173;.2113622;-.43791184;-1.1091218;.62430716;2.3664763;2.0486376;-2.123683;.13524185;-.50760138;.59527248;1.4147711;-1.2082615;-.95197284;.91159242;-.18192419;1.072154;.32223228;-.67603928;1.260169;-.8144176;.20098236;.64006859;-.21260172;-.16392155;-1.3552541;-.4804655;-1.4766048;.44564995;-1.6781354;-2.6021154;.56806397;-1.5683671;.13775598;-.010627788;.39024189;-.34153649;2.4561524;-.51304418;-.61729723;3.8640816;2.7733943;1.3467947;2.5493448;1.3753785;1.3556674;4.8480949;2.1043286;.086050332;2.6915624;5.2276678;3.4085357;-.12151001;6.244565;3.0103481;1.3487861;1.1135557;3.5377057;3.1691015;1.3863639;-2.0793462;.080943711;2.0213046;1.0816833;2.6014056;2.2471671;.33494958;4.3633218;2.2375662;2.4831719;1.9343597;1.9737765;-.31107238;.81281954;1.3776665;.28549942;1.0262334;4.5255003;2.987277;1.0130082;-.81566691;.10322319;.59619135;1.9585311;1.6719187;1.1638341;56.563984 +1.2115365;-.57814306;-.43482205;.73142505;-.10185737;-.36562496;.22556649;-1.5326986;-.12539656;1.0420161;-1.1812463;-1.5067152;-.5040018;.47367913;1.4613127;1.0899016;.7840631;.12240428;1.2213612;-.26877043;-.8720293;.7991116;-.18736927;1.596913;.2465786;.13871282;-.0076384847;-1.1247996;1.6847684;.5211634;-2.2752607;1.6407193;-.071112953;-2.0736804;1.3082021;2.2623353;-1.1325424;-.75272435;-.24194804;.37034813;-1.0793108;1.3331038;.11400573;-2.1874142;-2.2776477;-.50468475;.14873782;-1.7860413;1.5374267;-.20124723;1.073256;.63688195;.50217807;5.2437873;2.8120224;.28040403;2.0347645;2.1196227;3.6313152;5.225266;-.2433278;1.3275375;1.6581783;4.3566923;2.4399674;4.8589854;4.4470673;.30077568;.48741889;2.0964644;5.4967613;3.2769067;4.3495717;1.2485408;7.446538;2.5291247;3.8000071;6.0185928;3.38219;-.59886998;2.2936695;.57224828;3.9906549;-.56595117;2.8688543;-.61650497;.61579388;1.8580576;1.980067;1.3189539;3.5958354;3.0579584;.12022287;1.5740691;.012612245;2.1621993;-1.3611721;2.0254543;3.6406188;4.6172996;.94183856;.87503266;-1.5387238;-.046780959;.20484109;.55893683;.94167674;-1.0044121;-.08496841;.59531164;-.98494387;-2.256084;-.69318086;-.62453079;-.61088043;.35529736;.12217351;-.31587186;2.2839515;-.7339772;.7463097;1.578257;.29733095;2.6265261;-.27094308;.39692551;-.97847718;-1.05718;.21634491;.31703839;-1.0261683;1.6401752;-.95351875;-3.1507955;-.34975258;2.6422868;-.66005975;-1.9823841;.3928948;-.11162321;-.33394203;2.0365992;.38690299;-.64852017;-1.4090129;.8023653;.42586574;-.33095989;2.3943694;.27253333;-.17602231;-.30393514;1.7819986;3.5372088;2.8202286;.3663103;1.174222;2.4018135;3.9236877;5.7578511;-.0514539;.82671499;.54154724;3.0864697;1.0715523;3.5562963;4.0065012;1.9840915;2.0725243;.91006899;3.4697232;2.7238243;2.1025932;1.6816669;5.2159958;3.3390362;2.8179746;1.7852348;2.6577911;.41001549;2.2479298;-.33854586;4.4622269;-1.2501627;1.5322348;-.28982878;.56471443;.69572538;.80082417;1.0336621;1.0715942;3.0112495;.96436119;1.1504437;1.1992323;1.8492054;-.69344991;.49568307;3.2132783;1.8433928;54.244854 +1.3056617;-.097648419;.28429213;.26389655;.39594802;-.14413439;-.54046851;-.55760598;1.4996428;-.17295966;.11056652;-.86131161;1.4743056;-.25306988;.35166696;-1.0097555;-.24851924;.4928048;1.0466708;.69115031;1.753939;.035236221;.57767189;1.9543214;.57011741;-.44147041;-1.571306;.8743825;.091084257;.084744819;-.11419372;-.78973389;-.059283108;1.1152014;1.1550177;.78907579;.47846788;.87091124;-.089620262;1.0180871;-.16182439;.48549384;.50857848;1.8173125;-.05186319;-.42837071;2.0059378;-.53673977;.11259022;-1.3018212;.94354641;.4190079;-.29876029;-.43567458;3.8278787;-.076032817;.6518023;.5763405;-.27510846;2.6314077;3.4260726;-.47470525;2.604471;3.312494;2.1907363;5.6956143;-4.0272064;.45992708;-.56750101;3.7198679;3.7111101;2.2790058;2.9236903;-.81474912;2.4919329;.79688001;3.8783019;-1.219041;-1.6114078;1.3587056;2.0132802;1.1422598;-.11092186;2.595;6.4956255;3.0896261;3.2012765;.79434818;-.042829268;4.8823771;3.9023407;1.5420079;2.306489;2.2431602;-.13334988;6.2500839;3.9818282;1.7541229;1.4122826;-.80498487;1.1545498;-.14397341;.22203597;-.53775501;-.31996804;-.087235205;-.65632629;-2.5356388;-.09113425;.77232569;-1.0716819;-1.104544;2.5992508;.83003271;1.4259825;.97758532;1.2313572;1.7073153;.071506068;3.4312913;2.7247221;3.0376077;.80095637;2.2332716;-.61442178;-.46243155;.83893329;.047599643;-.10241474;.50817323;.64791369;-1.9469682;-.034237657;1.2198178;1.4804313;.27830368;.089315087;.9433496;1.4734336;-.23120484;-.79800695;.11387146;1.2592592;.19944191;-.31081739;.86424237;1.3069777;-.95946521;.65244412;-.25266361;-.8786431;2.2077417;.18933548;2.5927351;1.6407529;-.29782692;-.001927598;1.7214031;.83333504;1.3722054;3.5023301;.087641433;3.189451;.8471601;.73185325;4.6787152;-4.2487884;1.0789682;.26257387;1.9994195;2.2276816;1.9078581;.68678445;-1.1938766;3.9458027;-1.4032552;1.5116333;-.58422035;-2.3404245;.79130429;1.5894281;1.788801;-1.8179927;2.9950178;3.8731649;2.4652166;1.8119071;2.0007734;-1.7566901;5.1934848;3.0716603;1.0641718;1.914636;1.8953558;-1.0911841;4.1188016;2.2001688;1.4830503;2.5684268;.87322032;50.865841 +-1.2662486;-.039227542;.68445212;-1.6326696;.50028187;.15307429;.1849262;.90407038;.071383759;-.57098043;.36142135;.48488393;-3.2101414;-.031960998;-.054456107;.262523;-2.2509246;1.7457095;.70669556;.29946736;.90846121;.8645823;-.84679759;.53677404;.12907127;1.1087149;-.28501451;.23126841;-1.2716115;1.2845833;-.73037922;-.74421602;-.85571629;.041627016;-1.8641138;.56043905;-1.5348083;.58608937;-.27802899;-.50352544;.1151159;-.98568797;.085966647;-.79532248;-.74592072;-.13385655;.37507704;.037716627;.58742607;-1.5443566;2.8832107;-1.326733;.27693266;2.6803606;5.1756549;1.0680056;1.9135007;2.2623005;-1.2951994;-.11348387;3.1858838;2.6642845;1.2604201;-2.9220357;2.9390562;5.8696356;3.3451929;3.4831107;4.4488583;5.6002874;4.108357;.069972746;-.57400465;2.4921806;-.22696701;5.7702551;4.4472747;3.0918884;2.5162172;1.8191026;.96181303;1.383696;1.4924948;3.9182513;3.0488434;7.2755075;2.2076731;2.49387;3.5904398;.60838693;5.5081663;.53256685;1.4059256;4.1223693;-.17020424;4.7269402;4.4526629;1.589409;4.1793156;3.0672033;.088461488;-1.0778397;1.0917302;-1.1552978;1.4457299;.35562918;1.2726954;-.21134306;1.8780569;-.65761626;-1.0297475;-1.2843227;-4.5060306;-.1842045;-1.3501368;-.12394194;-1.5750993;1.163501;1.4483958;1.0155439;2.5927579;.30993071;-2.5751936;-.75419575;.68202031;1.0608811;.85237771;2.1897507;-1.76089;1.8168648;-.98690081;-.46526885;-1.377507;1.7908497;-.70654768;.30958414;-.1748528;1.0636021;1.304338;-.023417883;.81877822;-1.5451037;.82671851;-1.6374403;-1.353883;-.48993272;-.77833474;.0064658024;.14922404;-3.4062486;2.1458628;-.36956671;1.2413584;.79496121;3.3471978;1.9339478;1.5654602;-.25793812;.016986078;.26048079;1.9000161;1.7289147;.50700444;-3.7474878;1.2734325;5.2948604;2.4991536;2.2885311;1.5208715;4.126091;4.4287071;1.2586263;.26191637;2.6158719;1.2876836;2.8715169;2.356878;1.7898117;2.5060403;2.687264;.82687175;-.059703428;2.0299108;1.5046536;2.8890283;5.1971612;1.8988298;.29009703;1.6341144;.48515099;3.7697113;.69399214;.97153205;3.1658711;-.075132899;3.6629853;2.8361855;1.2533692;1.9454482;3.3722637;59.896008 +-.99632359;-.35167122;.61021614;1.6248686;.09948235;-.60261858;.93332112;.042938724;.24124575;-1.0994796;-1.5562836;.72987872;.84299541;-1.9349234;-.3537761;.38264477;.02437637;1.070226;-.45649126;-1.7756011;.10158335;-.56648636;-.35690403;.56792146;-.77539378;-1.7261635;.051316801;.44296163;-.36099473;-.59172142;-.80660927;-.61284107;1.3524932;-.68381435;.50436658;.26074609;-2.5996521;.061721697;-.2660304;.48087376;-.98166782;-.015022987;.040439654;-.28221887;.63871038;-.4027316;-.31344521;.61028039;-.68076223;.57702649;2.3723538;6.1222191;3.3930042;1.283098;.98818809;4.3784137;.33721262;.60699159;-.5153293;1.5918249;1.4246551;1.0533981;3.8616385;2.8493917;2.5587676;3.5657544;.10216975;1.3322576;.79263848;.84948671;-1.6025456;.73292631;4.6113663;-1.2803429;-.052400887;2.207334;4.5900478;1.2622663;1.9408487;3.0580482;4.1848955;.83522022;-.4340317;1.4738766;1.8795493;4.5044608;-.27267662;4.6245551;2.0582266;2.4430466;2.9816484;3.8712275;.31353456;-.50710255;3.5495911;.64047182;5.6461735;.36834657;2.6545122;1.7232847;-1.1300496;-1.1793343;.83720714;3.7829111;.49468577;-1.0740491;1.8374512;.10933566;-.29356501;-2.0387323;-2.0297928;.78804737;1.6274519;1.7335358;.68631923;1.7151641;-.85248154;-.20489265;-2.0644689;-1.8074569;.91732085;.70152438;1.0545198;1.3250058;-.49126104;-1.3497835;1.0281309;.30371583;.085970253;-1.7740957;.1807175;.95248675;1.0020423;-.79075772;-1.2510377;-1.7119846;-2.1366689;-.65185308;-.48398653;1.4152093;-1.8812908;-.39422658;.1016682;-.72822148;2.2738872;-3.6674526;-3.0811989;.32428899;.13189992;-1.092029;1.8239452;3.1819072;1.4672931;.44038117;1.8448771;4.1992702;-.2734229;1.8396094;-.47015315;.42689037;-.1745702;2.1229939;2.6228004;.67839605;.38602075;1.6648146;.12643135;1.2772173;-.45160806;1.9759178;-.86752874;-.63693935;3.1887391;.46107972;-.51690841;.25879964;2.5833497;1.8103582;2.1860991;-.63758296;2.8918447;.42240506;-1.8192232;1.5276161;2.0999696;4.1231923;.97688562;2.3565187;2.6724608;2.1373286;1.972383;4.4737787;-.10296272;.1211158;2.7628632;1.5886154;3.4921627;-.67584842;1.6524718;.18523376;46.863449 +-.76964968;-.04649568;-.49270505;.0024635654;-1.8287296;1.1546777;.020842988;-.76213306;.55036283;.57146221;.72723305;-1.2589397;-2.3690884;-.87753391;.28695357;-1.4416081;.50516903;.58281863;-.0067517618;.25336289;1.4231669;.00056079862;-.48951453;.056514319;-1.0299451;.50367415;.50456572;-.058881264;-1.4332029;-.8272016;1.4812217;.82960361;-1.0694667;1.0669799;1.3199672;.39093146;-.67538404;.59134239;-1.2129165;-.53765923;-.52583778;1.2118765;-.71357876;-.67229587;.97537923;.12176768;.74291271;1.0600929;-.67011487;.4162516;5.5000343;4.2087665;.98734117;8.2963371;3.614502;2.1833477;5.2129135;2.2248716;1.2124077;3.0879805;.55503941;3.1664932;.80972588;5.2110939;3.2056136;-1.1175891;7.6547918;3.9749839;.74298692;1.9385978;1.3949521;-2.8953493;2.6642962;3.5034425;1.4633672;2.38799;1.3980242;.47922346;-.81984472;1.7113742;3.3674586;2.7222328;4.1991239;4.5873518;-.78376955;3.1489298;1.6645042;.71481764;4.4074464;3.8507106;3.260483;-1.6238012;2.9555271;.37923798;1.4657274;2.8817928;1.5462133;2.8626423;4.2011456;2.6234789;2.5824304;-.49223906;.41215068;-1.3373266;-.49685675;1.3072479;.043933332;-.10860194;-.79586595;1.3825345;1.7395414;-.021508107;-1.8235058;-.13273108;-1.6320987;-2.138783;-.48398852;.65849394;.57238925;1.2817091;-.30659473;.58126575;-1.0202328;.25149599;.89741611;.88378376;.038393535;-.32126951;-1.1969829;-1.3416291;3.1787274;-.52347386;.065408498;.48225826;1.0484043;.60906482;-.62849718;.74764907;-.99310052;-.94946325;2.031091;1.7378384;-2.1576583;-1.1190237;.21212056;.69122469;.55865812;-1.1065249;.26346844;-.041202437;4.1482162;3.9741695;.40838984;6.3729916;3.3567233;1.8943628;4.4148598;1.963727;-1.0070387;1.2275862;.66631949;4.1661425;.77380544;4.5326738;2.3955932;-.47955066;3.9164405;3.7687328;.98981005;2.2759635;-.70916831;-1.6388056;1.9215759;1.1937767;1.5384532;2.674648;1.5904653;.60656619;-.21760485;2.0085802;5.7564511;3.3744929;4.2074666;3.74295;-.32620504;4.661911;1.9220381;.30616787;.61849958;1.9055949;2.8655107;-.59420925;1.3954623;1.5799986;4.6805611;1.4194899;-.028465627;3.0000563;3.400224;2.3894391;56.246071 +-.02390321;-.70342618;-1.3287647;1.3227742;-1.3898292;-.60889482;-.32409653;2.0508065;-.34686959;-.63962424;.26796672;-.76992106;-.81099862;.55554342;-.0094929747;.50854069;-1.1196384;1.5380688;-.16875829;.87255991;-.84728277;.33419389;.56597787;-.14733328;1.4304898;.89669776;-.37878481;1.2148669;.35033739;-.20138665;-.89660358;.31609249;.059158329;-1.2386395;1.0482216;.37112045;2.0051646;-.63084567;-.048494019;-1.1577826;-.75299162;-1.0036672;-1.3092527;-.24041542;-.39102408;-1.5981443;.22828922;1.4148257;-.076923117;-1.6795622;2.5889854;-.20013782;4.8047161;3.255064;-.76026171;.1706603;-1.9605263;4.9111834;-1.2085212;1.6415613;3.9584973;3.9481866;5.8581781;6.2613134;4.0356789;-.69112349;.85543323;1.2065314;4.2485991;2.1294618;.97569621;1.4847096;1.2302966;.78781086;3.6038368;3.6530149;-.36862466;2.5217392;1.6998324;1.3147492;2.6613896;1.8947223;2.8165836;2.5866797;4.2174726;-1.5908945;.89810568;2.7846041;2.8979871;3.5513306;.65014875;4.3023567;-1.1639638;4.2102823;-.58051848;4.5531554;-.20085308;3.9262354;4.0025349;2.6678479;-.21729913;1.1413045;-1.7739989;.65137482;.51341337;-1.8181294;1.2629479;1.6660537;.053644758;-1.4321249;.36192361;.41838923;-.69112706;.60336763;.38552988;-.72999209;-1.5917543;1.2462991;-1.1994796;.76524681;1.359321;.045341808;.07122761;-2.1273735;-1.0325619;.8600837;-2.481689;-.46985;1.5298077;.97249591;-1.2476727;1.5103831;-.37573087;-1.0335641;2.6623702;2.9032681;-1.130033;.14307007;-.48653287;-1.5370424;.40493596;-.83884281;-.20742142;-.80721945;-.82497543;-1.5631423;-.25365019;.92910957;-.80441356;-.33579019;3.263485;-.39692339;3.3875601;2.550595;-.19853243;1.626327;-2.1701028;3.8263941;-.11299501;1.4899306;2.4858782;3.8796108;5.7856436;4.857337;2.0888722;-.23547918;.36498716;.95517313;4.0686283;-.16822374;2.0480609;.75731784;.51864952;-.24751896;2.1758423;2.168267;.46128517;1.1045241;1.3156903;.9397406;1.1355453;1.0163542;2.9556003;1.4762448;3.3359389;-2.4032965;1.0931643;4.0103354;4.9979424;2.5525339;-.26503441;2.0738285;-2.9818408;3.2874923;-1.6782465;1.338214;.30060655;.90068454;2.7261703;1.3371319;50.167515 +1.4949172;.55412209;.012953253;-.83208072;1.4049984;-1.9822841;.33427626;.42219216;-1.448609;1.1955433;.25983775;-.45035949;.98703521;.062264584;.43165243;.16574103;-.81207323;-.5546273;-.84910762;.64462423;.81418228;-1.2409463;1.0901556;.15088117;-2.0331511;1.2381393;1.7447449;-.1476056;.22722757;-.1934008;-.46572244;.49316862;1.7250741;1.9452877;2.6488917;.84037066;.7611028;.56753957;.065638468;.0035602569;1.6296501;-.18155679;.44640678;.10290759;.53310984;1.5384858;-.58131599;-.92655301;-1.00016;.0063389782;3.4529791;.14679079;1.0499423;1.8160042;-1.1427261;-1.0816278;-1.5645355;3.5223243;2.7811778;2.729903;.015651457;1.4033136;.95704049;3.4404974;2.3913977;-1.3087409;1.1065536;1.3752038;.089092635;-.44730124;2.6604228;1.353749;3.2432947;3.948838;.95022875;-2.2699203;3.3785701;.66214925;7.1971531;-.59049845;-.42218399;2.3379273;2.7132843;-1.2704087;1.3100545;-.68321353;1.1660696;2.0466378;5.0147433;1.4209075;5.484808;.19944802;1.6322932;2.7770693;4.4235525;.97435886;1.0597618;2.7770674;4.3068004;1.6514382;.4915376;-.18514132;-.98715109;.81267381;1.956282;-2.5048261;-.25301796;.96576738;-2.4331429;1.3072125;.95371473;.58612382;.90910864;.98444945;-.29743254;.45783809;-.678976;-1.6266991;-2.1675899;.065418795;-.44205371;-1.6660244;1.3650445;1.0745685;-2.726675;.14940785;.18577309;.17878488;-.33405873;-.12790148;.10646764;-.83547914;-.085698314;2.2333784;2.1940849;.75155753;-.22040276;.73286963;-.35718897;-.044699144;2.3436685;.22053592;1.2817376;1.3572743;.81907666;.5125519;-1.982367;.53362685;-1.3674414;.25955287;1.9018723;.16076034;.30674082;.97703254;-.89568371;-1.3616498;-.88973504;2.24929;.85125887;1.6183732;1.4303355;.59623539;1.0329845;2.6228197;1.8974535;-1.4718527;1.9527377;.74769115;.60330445;-2.2630584;2.7638876;.15819272;2.7401216;5.7058191;-.25444502;-2.8796489;2.9712808;.11669739;4.8175106;-1.1981621;-.63168794;.97277635;.6518867;-2.9739494;1.584916;1.0652738;2.0123284;1.3675724;2.5933359;1.1669171;4.8329811;1.4901923;1.1678015;.63644814;3.5324674;1.237552;1.0199462;2.2824759;4.0493588;.57985294;44.258015 +1.2909522;-.18550287;-.3902148;3.008966;-1.7447445;.87520289;-.12529562;-.20121016;-.66317368;-.1768003;-2.0435247;1.5901453;-1.2916056;-.35787281;-1.2205471;-.41195983;-.96529889;-1.17193;-1.0197008;.26562688;-.45525613;-.26541474;-.35240903;.38498345;-.0075970558;-.8467958;-.9388814;1.5935026;.6759128;-.39748093;.48836145;.15986817;-.14383447;1.478803;.47477618;.17358829;-.47505227;-1.0941764;-.42068037;1.4854658;.63895696;.65955603;-1.0937438;-.90994614;-.0055643185;-.74263805;.69341284;.89316756;1.6304544;1.1870767;1.5872246;3.4892001;1.9565233;3.5770302;4.5747652;.46250194;1.6815906;2.1611922;2.799897;.67450589;3.3096781;5.2136497;4.0422201;5.0507436;3.379925;2.1844246;5.4906125;4.7167797;1.7373359;2.8698332;4.9066868;.96388954;6.052917;.15643722;7.0830164;3.7175775;.28499132;2.6308048;1.1571914;5.8723297;1.9613671;-1.4678227;2.7618501;1.4420437;3.6097851;-.67134458;2.3556974;.39922518;-.16924095;5.5004492;3.3159006;.39165851;6.0626183;2.4682682;3.0274804;4.273982;-.51688927;3.4240577;-.055837158;5.0033379;-.32337564;-.16603059;-.2656154;2.1208737;-2.3607914;-.28703609;-1.623881;-.72701675;-1.3006815;-1.3011136;-1.7430727;-.25840795;-.58540308;1.2813085;-.61940813;-1.1081513;-2.5558674;1.1508359;-1.5078758;1.3698164;-.29352763;-1.3730155;-1.6053373;.065069228;-.20322689;-.54876775;.97322482;1.9599698;1.4436567;-.25516304;1.5110911;.17149691;1.0893207;.94185275;-.304095;.48089519;-1.0099207;.55073911;1.5272455;.94451678;.28181925;.49307403;-1.2731645;.6793192;.4494718;-.96283686;1.7033968;-1.2035786;.84028685;-.0093036164;1.4627256;1.3141748;2.9645805;1.916715;3.4385405;1.701347;2.3803914;1.0052723;.82824469;2.5501235;1.8752047;4.3751602;1.8135122;3.6443062;2.5924354;3.150754;5.504333;3.1320703;1.22112;2.6677339;2.3538167;-.078477368;5.5338631;-1.5980774;4.1117635;2.9016118;1.0217965;3.9197636;.064772263;3.6508067;3.313576;-2.4104018;1.0572243;1.5268956;2.9323363;-.9492268;3.0419669;-1.1395404;-.73289096;2.1562369;2.1438255;.70572317;4.0527387;.87253183;2.633378;2.9458988;-.18832046;3.4164515;1.3811817;4.4704218;69.463127 +.5103423;2.0595675;-.31341213;.16567312;-.2652849;-.096012421;-.44981495;.14702304;.30130765;.56032902;1.1696097;-.5535146;-.059465308;.47600666;2.1702824;.11359019;.39163652;-.82362187;.065543391;-.27244177;-.69653791;-.70347428;1.6527236;-.19686443;-.7521798;1.9540504;-.80739981;-1.8084562;-.52965838;1.4819436;-1.0061619;-1.9363654;-.50078994;-.10474475;1.2269722;-.64882439;-.16364302;.99012512;.52060789;1.2779557;-1.0022255;1.7814938;2.1881163;1.3130455;.33864355;-.52412242;-.60517114;-.1428539;-.71579427;-.45242146;2.2353711;1.3377291;2.1936748;-.18439804;-.058867134;.96879178;1.4796844;2.0021226;1.6683713;1.3245374;.88001227;2.7117815;3.6551795;1.7246027;1.3485502;1.6262095;1.9560505;4.5463448;2.7810874;-.14354995;8.5285845;1.7247897;3.5042777;1.8401328;.60327512;3.4464877;2.6022148;.85338998;2.9824288;.73567331;3.4073708;2.425252;1.9530859;2.768873;-.57257128;3.6683443;-1.4202509;3.4363251;1.3944576;2.7638474;1.5712103;3.7472897;2.7192147;4.2219124;-1.4957054;6.7761297;2.7088675;-1.0671141;2.7937775;1.9395914;.035209045;2.9326358;-.8953619;-.34618336;.55860293;-.055939119;-1.9336634;.12628911;1.1582692;.87860918;1.6860695;-1.9309175;-.028514018;.16007307;1.5866534;.62905455;1.840843;1.1960731;-.75030816;1.5179819;-.33764714;1.2886041;1.1136762;.20947972;-.54416603;1.7473745;-1.2660387;-2.3856537;-.046456158;.81215888;-.69542617;1.0209155;.93840587;-1.5289795;-.3307808;-1.4166169;-1.3347008;2.1494663;.15310921;.61788642;.03019988;.93029296;1.3113422;-.68061465;1.1662422;.95728689;-.40218654;.95692956;-.87597364;-3.6593287;1.4437206;.51991916;.6569376;-.17365374;.39744928;.29292995;1.4929351;1.8239827;1.8731253;2.1040661;2.5124531;.8713488;1.8737763;1.1324054;2.8401732;.54240495;.67325532;3.622283;1.1430956;-.87399799;6.1668334;1.059768;2.97504;2.6798749;1.1005222;.51341003;.720384;1.8090602;2.4389284;.97453886;2.925565;.77816916;1.614742;3.1142001;.37787583;3.0870478;.6708191;2.0073903;.45706227;3.1539228;1.5912997;3.5362191;1.0683486;2.0226955;-1.1756107;5.5985556;1.7385641;-.8739931;1.0619911;1.1600424;56.65596 +.31898955;.96166402;1.0766377;-.3585299;-.89940196;-1.0130707;-.59711468;-.84773606;-2.0220027;.20453872;1.0010945;-1.06911;-.39869243;-1.6212952;.58132613;-.86762732;.67099404;1.8930893;-.45597297;.32293057;-1.366897;-.8751536;.12189613;-1.6023792;-1.2939156;-.52969152;-.68848038;-.86591005;-1.5620489;1.4067371;-.31981137;1.4503944;-.78393751;.32336539;-.23651308;.53079593;-2.1845903;-.21659201;-.33622447;-.53841597;-.044355631;2.1304727;-1.322966;-2.346194;.9265964;-.14109196;2.0674736;-.94767064;-2.2561738;2.1402907;4.171308;-.43753779;1.1555797;1.5284399;1.8739825;2.6353471;5.1502047;1.5567576;.48290798;-.56411022;2.5665777;2.3477619;-.80325311;.58172572;2.788893;2.6778915;.6881929;.45750335;1.37582;-1.9137849;2.1124339;1.5191894;1.2353057;4.2501855;3.2906406;5.5747514;3.5916042;.17657934;3.3395495;1.0745255;.59574872;-2.5924234;3.4360986;4.0302305;3.4165311;6.0173635;-.60252512;3.0534377;.98646802;.19801781;4.1432881;-1.4926375;2.1879964;3.4580507;5.2116165;3.3923345;.70216656;-.17835684;-.81665891;.8987214;.69660634;.075682737;1.0291352;-.73193759;-.90952742;.94387919;-.1832543;-1.8947504;-1.8209227;.46532777;.81086695;.92495435;1.3477356;-.74410987;-1.2744077;.60030037;-.55695701;1.2088101;-1.6601939;-1.0813165;-.60002381;.11203675;-.22169481;-2.1176758;.14937912;-.61313504;-4.0608096;-.21734872;-1.2199541;2.7380052;-.95772022;1.2451701;.5073511;2.2780845;.58481705;-.0049668057;-1.9785041;-.77696186;.98772705;.43560773;-.65180075;2.4582555;-1.5781672;-3.347352;1.2411073;1.2304968;3.1353133;-.83897364;-1.9470268;1.9060613;1.8264679;-.60559726;-.87682754;2.5209177;.2849513;.76773322;4.1763411;-.48674512;1.5599685;.98264641;2.964906;2.3665133;-.69909972;.1242325;1.3711201;2.4148211;1.5783554;.69033194;1.28935;-2.102989;2.1700058;1.9100534;2.4408696;2.1333842;1.1517705;2.4495301;2.4723947;1.4588183;3.4488468;2.7738979;-1.8500069;-.82881832;1.5987293;3.1673167;2.3252151;5.1638236;-1.671587;1.6948743;.078037605;-.96200055;2.8652942;-.62336403;2.7887135;2.846616;3.4472647;2.2913761;1.5056905;-.96411401;-.47212267;.63316327;43.902657 +.37116116;1.0506603;-1.2824466;.70798182;1.7014294;-1.4342135;-.080410376;.58205301;.70507121;.78571379;-.93993127;-.9770571;-.3748686;-.86874062;.93258893;.91956002;.21478996;-.6105721;.1386326;1.1179823;-.048252299;-.54698217;.29331702;.49147302;.67206794;-.056025334;1.8437561;.91238844;-.17383328;-1.0911887;-.46469474;1.0250803;.2071835;.47061858;-1.6756113;-.93976879;1.6160401;-.28500882;.10432469;-.23567897;.63404769;.64523673;.022948502;.45765013;-.88691437;-1.3441478;1.3318049;-.24169493;.40435234;.0027721466;1.1748573;.87727755;3.5801213;4.1220436;-.89960414;1.2686493;3.319176;.63076061;4.3566308;1.1944305;4.8049812;.46838781;2.4557567;3.1707554;3.7601902;3.4744203;.78747469;1.505335;4.1454077;2.4972188;4.4148302;2.4470217;2.5408552;3.5725482;2.6984682;1.0448723;3.8873906;5.0697913;3.8277214;1.6663582;3.3454587;1.0491116;8.4603748;1.8415136;-.066296607;1.8296556;-2.2256515;4.9065528;4.5343666;1.3817888;1.6313461;2.3230021;4.6641369;-.38650194;-.027135829;1.8426394;2.711273;-.30039087;1.6152318;3.0661156;1.7242373;.51803154;-1.5458729;.33295134;2.1756985;.20603722;.67122662;.1191452;-.78312445;.30498758;-.14361431;.2284635;-1.6947232;1.1009152;-.46809196;.58486193;.064742438;-.056659374;-1.1491823;-.96732831;-.310469;.04080902;2.0941839;-.52079546;1.4578232;1.1080105;1.4790765;.96121722;1.2466692;-1.3379716;-1.7737193;2.3368924;.58571893;.82790053;-.18664585;-1.7455598;1.8859211;2.0897889;-.12713598;-1.4696831;.86166626;1.2272837;-.11611766;-.15566114;-.61373228;-.90847468;1.9943838;-.35637736;.75963175;-1.5494483;.4080044;.0030731745;2.8299387;2.3198249;-.89643878;1.4605466;3.347718;-.097468138;3.0271881;1.6465575;3.463913;-.89850169;-1.4060198;2.3930271;3.9576633;2.8415403;-.3881326;1.3421178;2.1340966;2.7271974;2.2152941;.83470333;1.0434802;2.9027035;2.0560043;1.4616169;3.8772278;2.2650099;2.7383728;.99298686;3.523968;-.23379879;4.8450489;1.15912;1.6448232;3.2354674;-.66707116;3.4697142;3.9258742;.37492076;.60477448;3.4899368;2.1343863;-.77089173;-2.1118398;1.8274468;.088740192;-.29135752;1.1585684;1.957574;67.513397 +.3281987;-.18549269;.58832449;-.31216955;-.1778914;.9594745;1.7924899;.036721315;-.21553957;.94451433;-1.0217615;-1.5416863;.80622298;-.91385138;-.97327065;1.4782799;-.73033327;-.042563837;-.29468811;-.94036251;-.68167293;-.53337741;1.6272165;-.22639164;.39903411;1.0669948;1.0908992;-.32335603;-.19993106;-.40861213;-.63957423;-.30048251;-.29330689;-.36380261;.61368006;-.59324521;.25295812;.35240319;.76478714;1.3925638;-.68550307;.95361406;-.20415093;.92918772;-.15588796;-2.2784963;.78125483;-1.9288813;-.75568098;-1.5549083;.019830538;1.7713715;-.72783852;1.4651289;4.3018579;1.3501116;2.3770084;2.1064548;5.0884433;1.7241992;-.94624257;.031918459;-.90597707;3.9565563;1.6175638;2.9725864;1.4348097;3.2816389;-4.0500879;-2.5567846;1.6458224;.5192433;.13142063;4.9838281;2.2598951;2.2711492;.14202388;1.5609398;3.3594511;5.0017009;.59587514;3.7908244;-2.7580993;-2.4858198;1.6976475;2.9180894;-.23405716;-.51826078;3.3581238;.77837509;2.4334557;1.4842761;3.7932134;2.8427515;5.6785927;2.3089058;1.3689682;.84185952;1.2654725;1.7373626;.11376201;1.1237557;1.1884518;.84815782;-.38422549;-.39981428;1.2928885;-1.2494133;-2.3216794;.31101489;-.12830627;-1.0409678;.45595771;-.75920612;.70510757;.50269991;-1.7948481;-2.3305566;-1.0887803;-.25445229;.53028595;.072517969;.58048391;1.1740755;1.201979;.7075181;.21970655;-1.4678828;-.3265838;1.099209;.42379305;-.047432102;-1.0484723;.29292089;.47851238;-1.5593282;.0013170739;-1.0498493;-.39050168;.91335535;-2.0004258;.66147012;-.36751953;.10726105;-.33263689;-2.0841846;-.58975762;-.63852209;1.7229335;-1.4976912;.41795152;2.5288517;-.62669373;-.69137615;1.1004217;1.4940232;1.4869636;3.2711797;4.3290124;1.4164836;-1.5872175;-.48414561;-2.0084565;2.5806179;1.2407242;3.55024;1.6484845;3.8732281;-2.3539817;-1.4552034;2.9591575;-.94708234;.78088027;2.9981911;4.0709939;2.4018557;-.99943304;.23900093;1.5771508;4.0267553;1.38404;2.4832368;-1.5405648;-2.5751557;-.29483241;2.8626103;-1.0747544;.61515325;2.6633103;-.10552382;1.7243645;1.5643084;3.5968561;2.4611514;3.6765895;2.6271002;.2553722;.25368848;.21898113;.15372913;40.787251 +.47490379;-.068156675;-.85677886;-.81258512;2.1214092;-1.1215467;-.50387174;.62589079;.28242666;-.23655923;1.6996427;-1.0115657;-.38528666;.17372052;.61496717;-1.3384882;-1.4962159;-1.0743304;-1.1627115;-.11178359;-.33247337;-1.0848428;1.1270298;-.36455134;-.91974181;2.6614728;.42061707;-.30632955;.50657439;-.50180268;-.41730684;-.90219742;-2.3960221;2.4677994;-.20165083;-1.9648559;-1.3817433;-1.2630074;-.1150718;.29754955;.59593934;-.85678041;-1.7324817;-.011768175;.35542399;-.13892956;-.31973192;.37342471;.49253932;2.2335131;-1.0267107;-1.4747599;.97600597;3.8081222;.31001291;5.23946;2.864326;2.9276941;3.379849;.038663175;.58351016;2.0949233;4.9797034;1.3429085;3.5381842;1.388262;2.7944496;.15684205;-.39659816;.7450245;2.2189469;3.7908795;2.1247549;2.0441637;.71166152;.96724588;.82856053;-.51038188;.98815268;3.9393744;1.436973;-.65823936;.37078211;-1.3369958;.93267196;1.5667706;3.2587829;2.926626;1.7488682;1.9991493;2.1088293;5.0692592;-.17692935;3.0865381;2.2547333;2.0971498;.52090949;2.0754516;2.8335366;2.1471422;-.89583647;-.49707794;-2.3026617;-.19964463;.054755203;-1.0681143;-.83808321;-.16464216;-.434751;-.21239254;-.23726641;-1.3301336;-1.4982207;-.55263239;-.80850291;.33360222;-1.7884104;-1.8187197;.17418976;-1.3030801;-.37585992;-1.3874186;1.6415112;-.84836781;-.89401913;4.1879673;1.2461399;.19961169;1.226988;-2.1333709;-.50727659;1.1280013;-2.7224245;1.6200336;.5237506;-2.420541;-2.612561;-1.3028177;.089570947;1.3211714;-.16465238;-.66203076;-.56021351;1.0560843;-1.963961;.48713961;-1.1019024;-1.4031827;.35894531;1.1224076;-.15825155;-.78476566;-.29068643;1.9638113;.10337442;4.3798957;3.1461234;2.7605302;4.1491232;1.3889619;.8120234;1.3385885;2.6747968;2.1873424;2.1649768;-1.4356403;3.1974428;-.75864732;.49206078;.08053454;1.0694625;3.0985503;.8558737;-.92115581;1.4148862;-.25516516;.61175126;-.71869338;1.5281347;1.981216;1.0601127;-.56518453;1.2109351;-.60903215;3.5824988;.25849679;2.6068108;2.7616255;.80998069;1.6537207;1.9165813;5.1641111;.33570501;.92033076;2.6958127;2.8390467;-1.5034542;.51034594;2.3672228;3.0435684;45.307327 +-.26675183;.093020707;-.42619473;-.64223838;-.3115789;3.5113931;.27581358;.59376663;-.26892692;-1.2320104;-.87300295;-.66343272;.44916481;-.91707981;.71981078;1.6560228;1.3945062;-.98073143;-.080543764;-.69444269;1.3228304;-.2035065;.4090943;-.0096221501;-.58777094;.5569979;-.23114616;1.1068524;-.056467205;1.2786714;-.25132817;.017354686;-.74724817;-1.3540242;-.49216327;.98069352;.35851803;-.014395917;-.070247144;-1.8664346;.56632531;.40258276;.43760428;-.28358972;.73615992;-.26872861;1.2483642;1.9662066;-.18453677;-.3895773;5.9764762;1.6038462;-.16380957;.63164103;2.5055916;3.4771321;.47135314;5.2451992;.62593722;2.9316013;5.2631125;.13100185;.68127483;3.3841226;2.7613547;1.7021645;-.54495943;5.8862638;1.9517426;5.4119139;2.6597414;2.6590416;4.3169022;1.9343141;3.2485275;-.69651651;1.2033254;2.952286;3.4612057;-.87738669;.97962141;2.5370293;4.3950257;.74636519;-.35648048;4.1276464;-1.0876418;1.3524845;.6771307;2.7971358;1.5715669;-.53837377;.50804776;1.6298603;5.4476624;3.1299369;1.4695791;-2.1987677;3.4558139;-.12552531;-.27224234;.99173987;.045046952;.45466694;-.18224566;3.1548045;-.37872067;.60840499;.87842083;-.95600241;-.94355577;.77005327;2.1588616;.80691642;-1.2758514;-.38225803;.46845648;-2.0931242;.78258473;-.51226556;1.2572616;-.99243927;-.89057857;1.2500795;.34745678;.2170452;.48931709;1.711983;.48924771;1.445271;-.86223966;-.21861054;-.86769271;-.84758896;1.2026167;1.6828328;.26964274;-.65341318;-.20632395;-2.0631719;-.73550224;-1.2113266;1.7025542;1.2281841;-.16246238;-.75026721;.42811149;1.5592419;1.916827;.22098443;5.2585878;.43584996;.51005745;.72714353;1.3184766;2.0958619;.3737669;3.0655701;1.4333754;.52954918;3.4599156;1.1464685;-.869196;2.8109844;1.9647501;1.4884831;-.58751661;4.4725976;1.5372622;3.9649348;2.2071273;1.437905;2.9756203;.68671882;2.5166984;-.0994123;1.6741567;1.4873408;2.7980468;.19554839;-.88749731;1.7772229;3.8392086;1.6780154;1.2867069;5.2145715;-1.6496249;.8991698;-.52173406;2.4866724;.096636511;.5066312;.11536036;-.2877568;4.058362;2.7241111;1.8480916;-1.8805246;2.84056;-1.0233594;48.31184 +-1.2881773;.81964111;-1.1476893;-.67505866;.388778;1.4141237;-1.0565579;-2.7975044;.79947323;-.42376915;-.77863461;.18407972;.59400254;-.86946666;.67932081;1.5445199;-1.0144169;-1.125208;2.0867941;.13104886;2.0398445;.44321632;.18369132;.22762136;.19210665;.43111208;.10321464;.13011396;.27740526;.51459789;-.27238622;.082819916;-1.5223261;.12461761;.47793266;.48346326;.13188806;1.6841264;.18948786;.58023429;2.0629299;.7618829;-.4937101;-.69284546;-.45412236;.25967011;-1.7590433;1.9319618;-.095325328;-.42848584;1.7256405;3.551209;.17212331;.5669238;2.4637165;1.2232668;.66692173;1.1780273;-3.2846932;-.60616142;5.0058455;1.3315942;4.6577229;1.380963;4.5309176;2.150856;2.3800747;5.3911676;2.6563389;1.2800416;.45372149;6.2474937;2.967422;.60759687;1.536038;2.0353675;2.9854913;1.3952631;4.3954196;6.8484001;1.7643721;1.6656413;-1.3865517;2.443568;5.8252439;.38160089;3.5906317;2.994529;-.8285315;1.6134453;-1.3693783;4.4006896;-.17684381;1.6023161;4.2552476;-2.1029611;2.322814;2.0741656;-.18336974;2.0123618;-.67365247;-.10872258;-3.3324966;-.37741119;-.16015838;2.3685775;-.66573477;-2.0023508;.96696931;.17510247;1.0993284;2.1046703;.65366852;.68286538;.79955328;-.18808857;-.3064844;-2.2768419;3.0603023;-1.6444881;1.155336;.18881613;.62327355;-.035967384;.22697493;.77889037;.91669387;-.40085539;-.80031365;-.014727503;-1.2730403;.66109061;-.035274368;-.82079476;.55876637;.4259356;-.69966137;.83119518;-2.5253737;.47797278;2.7200627;.16725786;-.96537089;-1.3270501;-.20185323;-1.2734514;.094375737;1.1592509;.54371709;.13177021;-.46212417;3.7214897;-.42816356;1.8905534;-1.0452623;1.7847228;-.42474943;-.40715656;-4.1845231;-1.1600345;3.1953905;-.31436142;3.542196;-.96326983;4.0917959;1.2673695;2.1872935;3.3946552;1.0798061;2.2134881;-.3073996;4.2308927;1.0175989;1.9217056;.42304924;.45309103;3.0694182;1.5865387;3.088218;3.4031637;1.8396536;1.2643914;.79892039;1.4527266;2.281388;-.20642266;2.052042;1.5766968;-.67343938;1.6265931;-.97935814;2.2996793;.46211007;2.1554048;2.8533831;-.4249427;.81631345;1.1041604;1.7248913;.51193142;51.495941 +-1.1461836;-.49501991;-.094845675;.67476434;1.2002509;1.7827498;.60522503;-.4790971;-.39978042;-.53855479;-1.3187835;-.57341772;-.78401542;-.52596366;.24473459;1.2314662;-.30879191;-.089484997;.90632999;-.00060248032;-.2740967;-.28486088;-.35257599;-.27944827;-.008498094;1.4595723;-.75015002;.49529725;.11898109;-.63725156;-.30590016;.72379041;.94960207;1.6697549;-.18523923;-1.5152264;-.6799475;.21648343;-1.537869;1.6176702;-1.8544786;1.3850689;.51065189;-1.7454249;.44143182;-.026786547;1.3339592;-.94221365;-1.067185;-.38821346;4.2451077;3.7635739;4.1908479;3.5185592;1.6182473;1.6191297;3.5940757;1.832749;2.289818;2.6265168;-2.230458;.17921299;-.55889148;-.98856634;1.7688581;2.0540714;-1.8637484;3.7065125;4.8582592;3.7162342;2.7564204;-.75237507;2.7922738;4.580905;.9028607;2.9845195;.5964027;2.2240043;4.857501;.082270019;.81743664;-.484624;2.2228601;.05552052;2.5813885;-.15361224;-1.2203318;-2.5241933;.89118075;5.1649952;2.7079968;3.0903528;.052687492;3.7368617;.069358729;1.3995965;3.9709384;4.0930519;.73925138;4.5712581;.54458642;-.64090103;.28585717;.54364324;1.6514218;1.7335278;1.1026038;-1.5788304;-1.0271876;-1.4870106;.71397269;1.4654567;-1.224193;.37951744;-.079509392;.64629871;.081145734;-.065078914;-.29997805;.35839379;-1.3553538;.91668952;1.5543983;-.2784791;-.55811387;1.4990004;.51719934;-.19400945;.61283159;.54732227;-.10433722;.18724044;.80214721;1.6809633;-1.1416186;-.99754477;-2.1545992;.36185035;-2.1786494;.13395581;.6461581;1.922213;.13192508;.54179609;.95742196;-.041489955;2.4240644;-.44203404;-.30375817;-2.0459671;3.1297884;2.4547846;3.4315748;2.3559351;.068709485;1.1667839;3.838733;-.8690148;1.7730469;-.00550916;-.36112949;-.1424855;-.064253479;-2.8827825;.30297983;1.0246844;-1.7730674;3.9149113;2.8766758;2.5980601;2.142803;.1455764;1.7994692;4.9668069;.16327196;3.5911469;1.3937353;1.0034065;3.0838437;-.36781353;.38911688;-1.0442457;1.7288661;-.65961283;2.0566392;.72410214;-1.5129383;-.58889478;1.9756685;4.7932506;2.9188483;3.4286358;-2.0011551;1.7560159;1.0387936;.81546187;1.8198038;1.7907107;1.2276183;1.4455061;43.556492 +.10421707;-1.1613581;1.2897111;-.20257561;-.49025047;.52418667;.58582252;-.44472283;.13346478;-.77626002;.094271958;1.2375884;-.11802784;1.1232324;2.2239175;.61087817;1.288757;-1.4277693;1.330806;-.017299559;-2.4216659;-.044680838;-1.1541017;.10281359;-1.0028099;-.54782724;-.29314947;.63072032;.56789607;.19087227;-.48796585;-.72560197;-.00072087022;1.8144318;-.70764643;-.3131761;.6514436;.25609469;-1.2332942;.11651079;.73048967;1.1133024;-.78710061;1.0718753;-.032164965;-2.2059243;-.27213845;.10150621;-.82755756;2.0759447;.64391464;-.12954785;2.656209;5.6936812;.82436562;2.6641862;6.5986242;3.0670626;1.9600376;2.0681858;.76107508;-1.0430708;.050987031;3.3373592;-.61637884;.27624488;2.4150581;2.6867948;5.1421914;.47499987;.039175365;1.9964603;3.7066855;4.7091908;1.705503;1.7930787;3.1898379;4.290823;4.7043366;1.1430315;2.9794736;-1.3509523;4.167047;-3.6310923;3.661324;-.43630502;7.2983546;5.3517156;.01356785;3.6076071;3.823024;1.7846086;.1467296;.64052773;1.6429473;1.9180527;4.6377506;3.2206516;-1.7945007;-.53601885;-1.3656693;-1.3777649;.22342138;.75793016;-1.9640781;1.9369227;2.3298824;-.38970318;2.3082371;-1.4499575;-.048983689;-.81573319;-.38267684;2.3090715;1.3553733;.43314123;2.0988934;-.79939944;.2266001;-2.5729215;-.10574602;1.560812;-1.290561;.15658022;.0062793721;.65815097;.89674711;1.2405349;-.15201624;-1.1507443;-.3086248;-.47243357;-.76666808;.17999105;-.038032793;-.24299921;-.2003718;1.0839064;.68200982;.8664031;-.55951238;.20949593;-.96194226;-.17875752;-2.4248643;-2.3330181;.3796601;.48930395;1.2629691;2.5562873;-.74638778;-.1348732;4.9226475;3.8866394;-1.721697;2.135119;4.1033087;2.4924181;2.1914043;.57762641;2.6460986;-.91466713;.29421213;2.558656;-2.7436671;-1.6216893;2.1144733;1.4951944;1.8305292;.12889421;.30494139;2.0970218;2.3217857;3.322717;.9946788;.71998662;1.9192262;4.0959554;5.6076813;1.8813889;2.1391382;.11260688;4.3640599;-2.3880019;2.6615191;.19305585;5.3774033;3.7872589;.14721359;3.0540316;2.8415058;2.2359788;1.3148828;1.7680182;.14223783;1.6831192;4.2210732;3.1241314;-2.8255811;-.16101731;58.725403 +.28854182;-.31757119;.069180049;.21645059;-.33877924;1.499934;1.4734019;-.14919189;-.31822014;2.1316895;-.35269484;-.50595665;.77866477;.79102594;-1.7136865;-.82911867;.7621401;-.61874038;-.2890825;-.42211255;-.64301378;-.33481923;.044265337;.30274802;-1.7150326;1.7843548;.82786781;-.67533618;-.79085749;-.56007671;.82166624;.89982271;.37736726;.58357465;-.84719068;.0090625193;.10062429;-.31819445;-1.7985624;1.4072489;1.1752418;.40113717;-1.9395564;-1.426506;1.1383053;-1.7480396;-1.600895;-.34764811;-1.327426;-.007442242;3.2233627;4.9196477;-.80570662;-1.1908954;2.3245914;2.437494;3.6053061;3.2698433;6.1160221;1.2878556;-2.1632354;.88528705;-1.8138334;.48859301;1.301299;1.9235064;2.0105627;.70945054;-2.2370002;-1.8733124;3.1313741;1.6590375;2.1850102;1.4933665;1.9812165;-.71479768;3.5073848;.99230814;-.26531801;1.9063194;.41121006;-.3336367;-1.6960617;1.8330939;2.0114596;2.4034519;2.1213043;-.36641717;1.5005664;1.0209156;-.99718624;.54491645;5.5801392;1.2915384;5.7885237;6.4504414;2.6579766;5.2214193;-.20228799;.63124532;.23538345;-.98406756;-.065844849;-1.0248849;1.6682147;2.0214081;1.4529827;.15585634;.16757053;1.4046162;-1.5034379;-2.3207312;.53933907;.93950731;-1.6384944;-1.5847014;-.51489061;-.4156777;1.0402488;1.0005029;-.30695292;.59659129;.40521014;.25115034;-1.1991284;1.2499543;.034254756;.48180896;-.49762756;-.82163292;1.8863622;-.35216591;-1.7502725;1.2028005;.20409605;-.91540241;-.82689869;-.18485315;-1.3695397;.66931915;.51381975;1.3629107;1.2177689;-1.5382715;2.1170497;-.63836539;-.63856912;-1.1830257;-.25796571;-.31757388;3.1992767;5.5776048;-.603091;-1.1362599;.61264837;2.4327548;2.3298571;2.3243368;3.1626005;.31642535;-2.2909751;-1.1651503;-3.1064324;2.5695374;1.8914778;.44737658;.79045534;2.5595782;-.63512266;-2.8905089;1.5511968;-.28599599;1.8955621;-.16243401;.45763248;.58781934;2.9515941;.60213953;-.37376869;2.0880814;1.0527291;-.82009608;-2.0198996;1.3002404;1.5049804;1.4559994;2.9568408;-.6692121;2.0438793;1.0477452;-.17560187;.4443334;4.9570198;2.4354644;3.6124456;5.4722075;1.7342651;4.838151;-1.2842979;-.95262134;33.014072 +1.3706152;-.69162142;.57557708;-.67279804;1.6271107;-.41587344;-.040751673;-.27934104;-.1043347;.27021158;-.96036774;-.67697668;.27161157;-.003434801;-.005066561;1.7641561;.50420403;.78324473;1.1593655;.59718674;-.94881201;-.21820857;.90393996;1.8992975;.68455172;-.093452714;-.3691695;.96221757;-.07010176;-.91154307;-.52258551;1.8762323;.15879522;-.24018508;-1.6337384;2.0602694;-1.0594831;1.0373584;-.44615051;-.0080848048;2.7914059;-.290838;-.25776675;-2.1357849;1.1059563;.19887695;-.34334609;-.07368467;-1.0278171;.091070615;.69086128;2.3939302;2.5078406;-.32499635;3.9345231;-.87113631;-.59661192;1.4771959;2.835779;2.8999233;2.2468112;.9539125;-1.8155214;1.2170107;1.827177;2.1401496;-1.1077464;4.2379246;2.8142161;2.3738594;3.8911035;2.554112;2.0680358;-1.1440361;-2.7659924;5.9394264;4.0217876;2.0472028;.9112708;2.5231488;1.3204541;-.21423951;2.0166717;.71757478;1.1853408;3.4985831;5.0605989;3.0380013;2.8926163;1.2380251;3.0275042;1.47797;.96546388;.27891037;4.5017991;-.89915234;-2.1760607;1.1203154;5.4325376;3.3031049;1.4157408;.26422417;1.2711221;.87078857;-.27064377;.62519771;.28310606;.6446594;1.5560393;1.2424418;.84342295;.54101342;-.47785029;-1.5116923;-1.3995829;1.1140829;-.15136611;2.1943462;1.126191;-.2785413;-1.2692778;.70513046;.82271522;2.624764;2.5994675;.8930558;-1.5929513;.51208347;-.9069041;-.96768403;-.99486917;2.8660562;-.14885983;-.55584383;-.54952717;1.4229368;-1.7657259;-1.174475;.58311105;-.035792761;1.9565095;-.44975057;-1.5643742;-.863895;1.0172286;.41427699;.16947688;-.25969559;.38579679;.71721852;.63686615;.77355331;3.6340094;-.44251496;4.7879405;-1.0780691;-.35847098;1.8086572;3.1147962;2.1201541;.71154833;-.26147288;-1.4140159;.67318386;2.3729887;.81532377;-.54523879;2.1851954;2.0678885;1.3094462;1.8669779;2.6289697;.8443715;-1.1791334;-2.0812602;1.9603717;1.9201084;2.1600058;.61867613;3.6356463;3.0233681;.2518796;.38460353;-.91745341;1.9516038;2.8834684;2.8330812;4.0470734;1.467873;1.5250849;3.2940545;.19665019;.75466949;-.4867034;.12424622;.52634418;-.77514189;-1.235851;5.0590858;2.754519;45.93092 +-1.1751678;1.3831471;-.22826226;.91130704;-2.6666336;.20296995;-1.5910841;-.35613328;.86371636;.60777265;-.68501085;.26262709;.16915946;-.64362323;-.43206504;.035335194;-1.2248983;-1.0960772;.96207154;1.3273406;-1.1026515;1.7547809;.90692419;-.29105306;-.040974345;-1.8196813;.95563823;.56242484;-.0087662833;1.1014954;.3555994;.87964821;-2.2458744;.605986;-.50653893;-1.6766679;-2.3071918;-.13249803;-.16929954;-1.2270135;1.4466367;1.4234953;-.16111642;-1.2175285;.06762737;1.0309206;1.6227106;-1.1943738;-1.0701494;-1.2362872;2.3584802;-.73993176;.10814881;-.75212342;-1.3153198;2.5693309;2.0611084;3.594909;-.65716124;1.9568667;1.7887822;.78949291;1.3244064;-1.0285395;7.2601767;.83957565;1.6804893;1.8844343;5.2143536;.15857872;-.49648842;4.8272982;2.6313167;.68983954;-2.4041445;2.4085639;4.6855202;2.1383364;-.19561352;3.5463252;6.17624;2.0058954;4.1189141;3.4776683;1.3189577;.98041219;.52478415;-1.8273922;2.5784996;.51393062;1.2327191;3.0006649;2.3325138;1.867501;.91464293;2.5730352;-.0050451355;.83796918;3.1479757;5.0395479;-1.5579066;2.2645125;-.46817091;.55401158;-1.8111763;1.1255583;.59523392;1.0859134;.14848927;1.7179673;.78030896;-.36136177;-.57213116;-1.8242917;-.77417833;-1.6808833;-.88880974;-2.2025957;-.1543846;1.3611562;.065950602;1.3640448;.86707473;-.00080107059;-.84878975;-.041894536;.32441065;3.4392195;.13968956;.91219938;-.67402363;-.13183697;-2.2916133;.57449704;.60474986;-.62237841;-1.3039181;-.16945404;.66834223;-3.1278889;-.33012909;-.0063325218;-.97106898;-.85751712;.34672228;.48238909;2.1904411;-.75297469;.32261944;-.49977759;2.3815079;-.42483327;1.1884851;-.64599711;.55116582;1.4847736;.91902477;3.0489423;-1.5791982;-.18454202;.43262592;-.56371802;.7845065;-2.0699818;3.453635;1.3901763;2.2375615;1.7435843;3.4283435;.10294466;-1.2901281;3.0322618;-1.1179169;-.44664598;-2.0189769;1.8745435;3.3255904;2.3394852;.96438181;2.1955009;3.9478209;2.2263217;3.8660192;2.4673843;1.2162373;-.81504154;.11001588;-.82160372;3.8127108;.90773165;1.5116251;1.3355092;.82822591;1.6405883;.81336337;-.62455994;-1.6534764;-.15508421;4.0832663;4.0002012;33.777847 +-.72117609;-.8415677;-.78473014;.54989958;.21733737;1.4812199;-2.4498911;-.47477245;-.31521437;1.349465;1.336428;-.2865096;-.46156713;-.32349116;.3776446;-.56735039;.66021538;.13657318;.66631055;.84537572;-.2853055;.4084731;-.78114116;-.33011365;.030053899;-.50253797;.56750625;-.49334288;-1.6489456;.17222321;-.096621498;.38674623;-.12863885;-1.6103239;-.81757581;.006397692;.89183688;.81720817;-.57181615;.13304497;-1.771875;-.37354091;-1.7034011;.86805767;.94700533;-.5895384;-1.0321386;1.3901856;-.40589288;-1.0206012;3.4452059;-.46765742;.42469603;3.2355211;5.8704576;2.2856553;1.7109176;-1.1185153;2.766433;.93920887;-.20349744;2.2407694;-2.2800689;3.0050848;-1.1382221;.11480702;1.7441146;.83453763;2.8465447;1.1428914;3.2111638;.64384431;3.8496192;3.1928899;3.8003151;5.0273323;3.8120053;4.2154737;2.1843414;1.1453407;2.0964105;4.2585821;1.4069639;1.9471421;3.1294453;2.863018;1.5656905;2.9672327;2.0398984;3.0982776;-.0055550989;2.7265618;2.52387;.063552216;2.3215394;2.4211245;-1.6530405;3.0917449;.85664141;.71177036;.10427482;.82961565;-.74673003;1.2205881;-1.0744764;.91259205;-2.6878343;.92108291;-.090259686;.57203889;.58721507;-.94038969;-1.4262472;.17765856;.29225388;.0023101065;2.430547;-.065535337;-.341766;.50440806;.54892999;2.3247302;.79823667;.018902119;.67435497;.37301666;1.2098113;.06759911;-1.8870286;-.22190645;.66755497;.56502837;-.11945792;.65342188;-.3408145;-.61041331;-1.0754974;.44156948;.20951009;1.0734435;-2.0153613;.10372873;-1.423614;-.20621623;.62363917;.13305447;-.3420884;2.2142642;-.034739524;-.67130423;3.0934618;.6729266;1.6488616;2.1689019;3.9469702;.54712027;.1897507;-1.1028656;3.1391933;-.27329686;-.5472247;.81251931;-2.4393597;1.7056998;-.812217;2.0792236;3.8427782;2.7941597;2.1149669;.937473;3.0393641;-.8255288;1.9038188;3.6305189;3.7921469;3.1919243;2.4237275;3.2746289;1.9676169;1.1689904;.32200995;2.7618322;1.3442842;.9000482;.98860425;3.3301954;.7093814;3.1880274;1.4156965;2.8027911;.34007362;1.4485108;3.3597376;-.21051933;.91802949;2.2910802;.53483772;3.3130648;-.86298323;2.6199658;48.771461 +-.13271798;-.17345996;.49357066;-1.7605915;-1.1262759;.59595537;.10067022;-.72144145;3.4885552;.68126923;-.465507;.19373611;-.65216184;.80275923;.12636885;-.64246875;1.8391445;1.1867259;.91569793;-.37969202;-.904055;-.23865865;-2.0503561;.75932038;.13277295;.75552547;-.12150468;-.8005017;-.094955057;-.52693552;-1.2272146;1.3205564;-.47605783;-.69060612;.055154156;-1.1388001;.57239604;1.5651609;.78169787;-1.4810349;1.1636941;.67020065;-.72013283;-.020452566;-.71660906;-1.489213;-.69045681;2.204175;.40203637;.65914512;.43809995;1.7279602;.82243407;3.2520437;.17754075;4.1712689;2.2832732;.44834331;2.0790308;.77564305;2.9748464;.72739655;3.7283111;-.77978879;4.4626794;.3567805;7.0023842;3.5490086;1.2051295;4.1403785;-.91647387;3.3440845;1.0611986;1.2302964;.093323655;2.1633656;1.117506;1.4657373;.058089737;2.31814;3.5794675;.74953115;2.3610659;-.42075861;1.6829123;2.1073461;-2.1583731;1.5485656;3.7643132;3.2512143;1.8106836;3.1981938;2.5440428;.032465678;2.661226;6.432785;2.6643798;1.7950504;5.7680883;-2.1604667;-.30955318;-.92943525;-.29875433;-1.9749477;-1.0894623;.99740261;-.19248933;-1.313863;2.2192512;1.4365147;-1.1310165;.16838154;2.1839175;-.43176311;-.520549;-1.5727923;-.058561612;1.1985593;.13046171;.1602875;-.64683872;.71480262;-2.0985482;-.16301867;.73684019;-.015913721;-.53466028;.52423936;.021372994;-.5727039;-1.9787605;-.72288388;-.74865657;-.98413062;.31235862;-2.5701165;1.2329446;.12140093;.14498904;-1.1089458;1.5852135;-.37565565;.56974256;-1.9894682;-.40092051;.48609358;-.28008026;.60518986;-.2049395;-.87432522;-.23920064;1.1637824;1.4614676;.9918434;.38885853;4.7383189;3.3045156;.046244629;2.2179384;1.4097754;2.8351722;-.28844759;3.5247777;.4554998;4.5757432;1.4224654;5.6564846;4.2435136;.93967551;3.7850776;-1.0168571;4.2574058;1.1130559;2.2822824;.53043747;1.8386729;3.6164076;.34786323;.81419206;1.9251906;3.1360927;1.4045962;2.7969205;.47646493;-.06486135;2.9444168;-1.8845091;.35720947;3.9739923;2.0019281;.3548598;1.9373928;2.4365909;.60277188;2.9130166;5.6941533;1.8586264;1.3101325;4.851583;-2.1622267;47.769665 +-.98425686;.47516167;-.11648443;1.2427006;-.038219504;-2.1908045;.55774528;-.77937549;1.3519495;.89900565;.15838306;-.31180394;-1.5827888;.035731044;.46155679;.029337933;-.029598448;-.20195143;.92082477;-.18431251;.029652806;-.37005115;-1.6345913;.52373356;1.2759498;-.60857886;-1.0529261;1.1139342;-.74168253;-.24705024;.048577804;-.34687227;1.0477219;1.0792826;2.078289;1.0239722;.87717938;-1.6182425;.043517772;.96352404;.47758466;-.59908265;.065026037;1.2260034;-.0088027474;1.5300771;-.72088903;2.4773877;.36186004;-.54891837;2.8024788;1.8907007;3.220258;-1.4456906;.91790938;.64919579;-1.0550174;7.7147818;2.9453321;3.5312641;1.6281979;3.3831265;1.0522685;.87650257;3.0733774;.96852332;1.3873303;3.0589414;3.709785;3.1066127;-.04794573;2.5652378;2.676441;1.9475521;.71618646;4.9835963;2.2561202;5.4787269;-.23990524;2.4687619;4.3217354;2.7586849;1.1733831;1.8042698;4.024261;2.9863539;2.0473816;2.0465662;2.9662695;.050405089;1.8760915;.53337705;-.22274876;.598656;5.0565157;2.1844764;1.6926392;1.7481388;2.6973832;2.5112574;.29940468;1.2951022;.61933345;1.3151207;.51464158;-1.8302195;2.4650543;-2.083005;1.0318156;.32169679;-1.4254847;.026781725;-.91087079;.071151502;-2.0040631;.53023165;1.3994557;2.4925206;1.0066047;-2.4833171;2.5429034;1.07243;-1.3893589;.30710828;2.425889;-.042737264;-1.474105;-.5685252;.5445382;.27899924;.17531621;.048699547;1.3869447;.75210345;2.5348835;.97532052;.83610171;-1.8174027;.71325123;1.2108064;-.56734371;-.32213679;-1.6265744;2.2612042;1.1210012;.622989;-2.5861771;1.4261974;1.061367;-1.1841407;.68773401;-.27282029;2.8992045;-1.1795828;.56899494;.48646101;.75987405;4.2969522;1.7054796;3.455909;1.7859937;4.1619077;-.36971465;.97317368;4.154645;-.39980313;.87106335;2.325927;3.8157871;3.0790727;-.54175806;2.218729;1.3757435;1.3164818;2.1519947;4.2116981;2.4056389;3.5479457;-1.843045;.52483696;3.4319925;2.6858835;1.4020132;2.8040617;2.7061646;3.6036968;1.1635816;2.3868973;3.6400685;-.27896324;-.53536099;-.56234282;.51165622;2.1286116;3.4805346;2.1674581;2.0129452;-.051045071;1.1637398;.43424097;56.200184 +.81057;-.28122571;-.57436419;-.085973978;-.66766423;-1.0040858;-1.6445152;.050390527;-1.1412203;-.42935115;1.4589411;.1541436;-2.0447085;-.52798867;-.3328782;2.3933921;-1.1793673;1.0775998;-.58879346;-.64089382;-1.0639108;-2.3351164;-1.7710049;.026187355;-.050861564;-1.6467836;-.48887563;.1876661;.76110291;.22207037;1.7421682;1.9726266;-.51788819;-1.2563251;-.31204438;1.4262092;1.1669756;.40519938;1.2142497;2.118891;-1.3425738;-2.9088345;.9216013;-.58178908;1.2367256;-.25481257;-1.1005068;-.062807404;-1.2244204;2.2211821;5.9591851;4.8823352;3.8640811;1.9256529;2.4404719;3.687453;2.6876888;-1.8196141;1.043027;5.018384;2.7816567;.35728484;.63865757;1.7846544;3.5739977;6.6074529;6.1532426;-1.1883354;.85315615;6.7561259;.27629748;1.6304853;1.5565152;-2.0311365;4.5621724;6.2794385;1.6885216;5.6157598;1.7375139;5.3005743;1.4535005;3.4235775;-.1725681;2.9165339;-.10219719;.58027965;-.86935079;.0036902721;3.1232657;4.2808251;2.5563226;-1.9817073;2.8321445;-1.6141562;1.7273009;4.8179421;1.4593406;2.853399;3.7534757;2.8650877;-.42900643;-1.637444;-.63281995;-1.3055708;-.5627479;-.22769266;-2.8177257;-1.5993878;-3.1364086;-1.7847292;-.14196958;-.0067760637;-1.8747405;.3338069;-.53379339;.19586785;-.97381139;-.21202627;-1.0210005;-.39771348;-.22445709;-.14946511;-.60556209;.59343129;-.71418363;-.95940894;.053378962;-1.0981798;1.2666789;-.84293032;.95512903;-.0039748941;1.13361;-1.7032589;-.085898638;.70209169;1.2684115;.17050095;.63548988;1.6333321;-.44414842;-1.3350451;1.9151069;.32301882;1.6919228;-1.9266776;-1.4982392;-.92573816;-2.4513202;1.4346727;1.2032293;3.6610096;2.7446089;1.3654732;.33083996;1.6682673;2.1123304;-.92049819;.24515682;3.2766476;3.0750704;.39120847;-1.1566526;-.11318454;2.4650178;5.8957686;5.7866602;-.93562913;.80978274;6.0421076;.68853182;1.6153471;2.1779463;-3.086266;3.0235546;3.4637144;1.9516962;3.8288798;1.2155458;3.4222102;2.3242178;2.5295835;.78357822;2.6596711;-1.1563762;1.8366569;-.35463691;.83764428;.37246227;3.7316666;2.2976761;-1.9489257;3.1377783;-3.3043249;2.4227886;3.3420453;-.030691482;2.4927089;3.0924058;2.7609484;53.167507 +1.4256734;-.34935981;-.010512206;.55140907;-.30656964;-.9484477;.83605528;.94594133;-.66789502;-1.7401923;-.85444641;.0061154752;-1.4033331;.29753292;-.33005378;-.064539649;.14184198;-.39740321;-.058333054;.96328694;-.47049311;-1.160032;-1.6484885;-.7041415;-.10608068;1.0161361;-.29293549;-.16177298;-1.3798816;-.81567824;2.2212031;-.30142176;.080444314;.7470932;2.7718771;-.17367953;-.79045963;.89085996;1.2755032;.95823848;1.550918;.85870862;1.086354;.5776161;1.7081931;.57283372;-.015127464;-1.0552844;-.36863393;.38367754;2.15236;1.8220817;5.5064664;4.0200953;-1.93752;2.4815068;1.2624165;.80859417;4.3582864;2.2687609;.27733064;1.1604313;2.509104;-.64439344;3.6688335;1.6712359;2.2597365;1.4937196;2.4218554;1.9327124;.95469606;3.7207308;1.4253513;-1.569792;-1.0931668;3.7818274;4.9520974;2.5731893;-.081502415;2.6307037;2.6696639;1.6293344;1.6147276;.69043493;-.015420616;3.9288967;1.8107334;1.5691736;-.054121044;1.4665722;-1.7155113;3.8399067;1.1109183;.91792679;3.1533;5.144906;-.29719433;2.4722526;4.3030419;2.8366029;1.1859848;.89581299;-1.2263254;.96872526;.49214944;-.55556494;-.74993044;.81402832;-.76575547;-1.2468464;.069184259;1.5719519;-1.3038324;-.48822999;-.74867928;1.235629;.16119781;-.29645628;1.4405046;.15958002;-1.7820692;.46397543;-2.3449562;-1.9104639;-1.1012044;1.9988173;.46549889;-1.7617618;.021492884;.93227285;1.2841083;-.77921879;-.58454746;.0024834564;1.9219879;-1.1468512;-.041886728;-.50725055;2.4057596;.83462501;1.0406865;.99273527;-.010589034;.49173841;1.348611;1.1660641;-.64087999;.064426579;-.61646658;2.0480216;2.6601651;.34743872;4.244205;2.2838693;-2.3368487;-.59719455;3.4885302;1.4259477;3.548171;.66917932;-1.6806313;2.2515593;.75072324;-1.1849802;4.1601415;-1.0274036;1.3023052;.32304621;1.5909818;1.0806231;-1.363276;3.2260075;1.3326054;-2.4387972;-2.0392971;2.8207674;4.0960989;2.3200178;-1.7038943;.30773261;1.0447779;-.43320867;.25188354;-.40980539;.035951778;3.2429013;.69396156;.64594257;-.36532712;.28480521;-1.5080159;3.5838704;.92034328;1.4223886;2.7540395;4.3424416;-.18211724;1.4761952;2.4822454;3.6448059;46.128201 +-.32826266;.27952206;.55882603;.34917489;1.281592;.34614947;.3105742;.18718548;.61153704;1.2415582;-2.9051094;1.03968;-.15454054;.29235309;.72114605;-.18196239;-1.450729;2.0005951;1.2697102;1.3427597;-1.5518867;-.58367014;-.28685731;-.12279961;.4888806;1.3776588;-.25975856;1.2520107;.6512118;-1.5255477;1.691298;1.5923089;.034888037;-.099899203;.91522527;-.096744597;-.18891197;-.071585812;2.6958175;.83830243;-1.0303575;.97020674;-.66075855;-.5382272;-.86777622;-.19671693;.20951384;.54995376;-.47809866;-.043147866;.65738285;1.8799795;1.9246117;2.9029787;3.9741731;.89160919;3.4082406;-1.198285;-.25460401;.58272392;1.58907;2.0773489;2.3304951;-1.0973207;2.9382517;1.7964979;1.1986507;-1.4230992;1.4939455;-.4429867;-2.0264206;2.4033484;1.4017484;-.23732267;1.8783191;3.2932539;-.12542737;2.3384843;4.6990099;3.6437984;-2.4200871;2.4403894;5.8658242;4.8450918;1.8394376;3.2185514;.69366735;1.2434381;4.1189418;2.8258777;5.0484924;3.4819753;.96482867;4.8094602;-.47109526;.071302496;.40984124;.20740914;4.3162746;1.9330634;1.1220922;1.512509;2.0003648;1.7551284;1.862332;-.88793403;.048103441;-2.6818357;-1.4090436;1.6293598;-2.7556903;-2.0030358;-.70284396;-.99205709;.63491535;.5009765;-.53981334;.88362652;.7189129;1.3238866;-.09530589;-.42626813;-1.3622026;-1.9548297;.67442012;1.1453377;.26211581;2.7918005;-.61053222;-1.4854208;1.548337;1.4950488;-2.009233;-.28211209;1.4525603;-.21415126;-.68612665;.67049497;.79748607;.45942608;.69264936;1.1234573;-.45317289;-1.2911446;.20756276;-.48731282;.28522325;.82890165;-2.0260777;1.2578491;1.2850962;1.5416185;2.057739;3.3498271;3.3087978;.65101308;4.0635734;-.56855005;.66441333;-.49240869;.68534434;1.5119834;2.2607913;.31865188;3.3756313;.31802723;.60816121;-1.6860287;.39212772;-.65549153;-2.6197925;2.1790054;.2572464;.62818301;1.5373299;2.1232703;-1.0878137;1.2083192;3.7291694;4.3927126;-.086762838;.21100548;5.3018565;5.8820515;-.27112362;.99030679;-1.1040699;1.8604416;2.3541594;3.5189576;3.4234297;3.0858359;1.2158974;3.9698467;.89537549;-1.4239354;.49812022;-1.4636949;2.963203;1.6426424;48.820179 +.10469782;-.48600465;-.46603987;.62616074;-.057100367;-1.5069566;.69794863;-2.2341273;-.77983302;.68932891;.79337287;.26719439;-.00068736228;-1.6164787;.19314136;-.77400506;.72349805;.54333144;-1.4564583;1.1559571;.079242989;.52950978;.82200414;.69388217;-.011063236;-1.0658849;-1.0323938;-1.333436;.31487331;1.3339897;1.2889069;-.6322968;.11963031;.93151033;-.16969214;.62978715;1.4615687;-1.1247946;1.1986616;.94087851;-.24254157;1.6916901;-.24980953;.23914161;1.3463242;-.53238648;-.40202942;-1.3009688;.32303417;1.3477292;4.0061083;3.690515;2.0029159;3.507297;.095106646;1.4839389;2.4923501;1.0992354;3.9267397;1.7506897;1.8654878;2.6653805;3.6993682;.97499359;-1.5316796;1.3525063;1.5207695;.80058688;2.3679667;-.78411096;.3804304;1.9048439;2.1575263;.87794054;2.5335116;-.17951587;5.152885;2.5301094;-1.7826183;.3011227;2.9866829;1.6484089;3.4277551;3.7209518;2.116797;1.8698626;4.7049665;4.5752573;3.8459182;.79952627;2.150022;.47951326;.91154712;1.5718325;1.7278535;.47598615;5.152976;2.1439724;-.61010617;5.4103913;.88457;-1.2953732;.1210482;1.3836915;.67958057;-1.9555026;1.2939565;-1.9060512;.83510453;-.045766927;.84190261;-.82939273;-1.047035;-1.3572494;-.98142081;-.89648908;.46859494;.17396915;-.24729674;3.3566167;1.0950075;-1.2771379;.15478845;-.47947609;.4587917;-2.017179;.025552368;-1.6144575;-.87909555;1.7208579;-1.0516154;-1.8155265;1.2546935;.69414061;.35304084;-.86381286;.13777685;-.87620205;2.2286525;.71421713;.37905633;1.2850319;.61186421;-.69206941;2.7470396;-.47625682;.1031504;.28505227;-1.015298;1.4772847;2.7649276;4.5898209;.93114185;2.1168861;-.90879321;1.8125645;2.5451784;1.1855397;3.3255107;1.5105276;2.4797673;2.5863879;1.7571427;.11586185;-2.1615429;2.1891658;.19077566;-1.0114906;.16375409;-1.2952861;-.60012591;.86325294;1.7812202;1.1114728;1.4621661;.43805078;3.3838065;.83336067;-.14822902;-.36747131;1.0487264;-.0023341621;2.4930069;2.8764844;1.0482434;-.34093091;2.1650815;3.9278867;2.3198366;1.2002667;1.1264372;1.8280694;.67925221;1.7281728;1.1696243;.9769358;2.8273275;1.9795793;-.0021943431;4.2628522;53.520618 +2.2226079;.31230816;1.1979711;-.37298962;-.84725052;-.96678221;-2.2006941;-2.1370935;1.004606;1.1335889;.31274936;-.14191964;.18289173;-.10487826;-.63309467;-.824112;-.20971741;-.76966029;.93822044;-.92509639;.46162906;.41127101;-.88948733;.76381701;-.76169097;.080966644;.6027714;.85248572;-1.0067022;-1.365572;.29302254;.11780901;.59205741;.17160815;-.066603281;-.16880643;.0025018142;-.16817863;1.530161;.44984925;-.0019538219;1.4449656;-.16770218;-1.2969517;.0038124246;1.2044868;-.92282265;.76363987;-.19313596;-2.0276372;5.2408085;1.3830975;1.9043328;4.2613206;3.5735607;5.146874;1.6420026;1.8734393;3.9793851;1.4579389;4.3124285;5.4719834;2.6472573;2.9404531;-.82923502;.76170278;1.5778759;4.2582312;4.1507149;.3409574;.95003933;3.8470435;3.5164938;2.1723413;1.0463798;2.2425547;.037928194;.026378034;.12830359;7.2587304;2.8947039;-.40803131;2.858;3.95719;2.0669863;3.8725717;5.4821787;1.1672865;1.796934;1.5548501;5.3419175;3.6422818;1.3442332;-1.5759299;1.4982827;3.0064166;3.1230075;2.8055911;-.77845716;6.3943563;1.0761424;1.2733694;-.48525524;.10236936;-.43841171;-1.700405;-.49022287;-2.1655238;-.10673751;.76508433;-.028853741;.52120656;1.9622533;.23049167;-.99194771;-1.3802968;-1.5209568;.34157559;1.1987314;-2.1763086;-.21192384;.75273198;-.60592294;.69275439;-1.2828852;-.89412796;-.40261483;.6599974;1.6397871;-.52559823;-1.7951276;1.9012641;.96744102;-.30248609;1.1990944;-1.0123296;1.3907833;-.73266065;.82804811;.32405239;-.17136231;.6922555;.57622689;-2.3906677;.24432537;.86961383;-1.2767988;-.66827923;.21157558;-.087162606;3.035943;.63459933;-.14335012;3.5447845;2.7533691;1.6949006;-1.2962084;3.3760893;4.1956215;.016270597;3.9171479;5.0390062;2.9375606;1.1026341;.82738107;1.8316033;.51817542;3.7648423;3.2849319;.78831315;-.19000848;2.2213802;2.9377778;.0655948;.88058478;.7637592;.49410751;-1.2858634;1.0072187;3.4661248;2.9336481;-.62951517;3.1013422;3.2670016;.60718656;2.6641538;5.9440932;2.3595965;1.4445322;3.0164528;4.5408106;3.6641495;.25259858;-1.6089867;1.6921855;1.6459075;2.5001838;.53610706;-1.9324752;4.5890212;66.176727 +-1.1359555;.85039306;.86060715;.19711943;.71945137;1.2320677;-.40598851;1.7667562;.27606803;-1.4489723;.23980269;.097745925;-.26475689;-1.6116713;-.39113989;.23569743;-1.4484687;-1.3705374;.7672981;2.1105003;-.23714377;.44411597;-.18035154;-.47957897;-.62605238;3.2970769;-.80416012;1.6850257;-.1420798;1.1914797;-.87561244;-.73423499;-1.7941035;-1.3374006;-.23514022;-1.3546203;-.20407704;1.3985783;1.0517951;.37432018;-1.0450013;-.3944838;-.36229095;.4030062;.54807228;-.6935901;-.56054598;1.5307242;1.819651;-.32333547;.15676422;-.22043799;1.8181556;2.5781004;3.4510086;4.7492595;-2.2564533;5.0462313;3.2852921;1.1680356;4.8993335;4.9814072;3.6951318;2.9967704;1.9967111;4.4395609;2.5113344;4.329977;-.78021318;1.7596179;.66369253;2.8945074;1.9783417;-.26618201;3.8040769;1.0905688;2.5418456;1.2860613;3.1831348;1.5948064;1.2944483;1.3111609;3.2567625;1.7987781;-.45383516;-.92337334;6.1113276;3.7225049;-1.355569;-.48769847;.19196936;3.1740894;3.495923;6.7261667;3.7941105;.043144237;6.003243;3.6146543;6.0776677;3.4346838;-3.8984787;-.97925353;.26189724;-.32877895;.59626484;.85110623;.96583617;.5288533;.5387736;-2.5534146;.70972329;-2.5614762;-.50745195;-2.8948112;-.15008953;1.7821826;-1.23585;-1.1804681;1.6878949;-.57749802;.7218014;1.5333136;-.98683745;-1.0372092;-.68816876;4.4175243;-1.0966393;.34965426;.037736982;-.57716393;-.60476911;-1.8176581;-1.0877863;-1.786231;-.16959564;-1.6147103;-.08090692;.66930187;.34712961;.62400186;-1.0120114;-.64598465;-.60757416;.84673297;.50849372;-1.4649872;-.97287601;.50620931;-.31638631;-1.0364715;.82487816;-.069191068;1.7326821;3.2225926;2.7293651;3.5441546;-.69677418;2.292697;4.0892735;-2.264307;2.335499;4.0853138;2.4853241;3.5215609;1.2121804;1.6079679;2.9497504;2.2819822;-1.4233452;1.6136758;.78182256;.88221443;2.4771185;.65556186;.81542665;.43541223;1.8943959;.81831121;-.22728853;2.2001152;.047767684;2.0967684;3.3831718;.31130868;.8396737;.78571844;4.5196738;3.1447718;-.60273963;-.09608335;-.38720188;2.8055706;2.1309929;3.1857698;3.0242093;.64634544;3.6696327;4.9796581;3.7119915;4.0160189;60.115978 +-.79247588;-.90812844;-.31848294;-.8536911;-.83584535;-.55119038;-1.4694144;.24649392;.5919432;-1.1653974;-.80804241;-.73898125;.23683546;-.68750572;-1.152548;-1.7280879;.065228172;-.067128986;-1.5660133;-.50083578;-.11479801;-1.064209;.19135946;-.037180025;-.61895216;-.57799059;-.038828373;-.3886362;.012660979;1.0512067;.12393369;-.06690897;-.86173421;.2843715;2.0261362;-.72537947;-.062587604;1.2965094;-.23288161;-.564816;-1.0862886;.60532331;.13681443;-.58386135;-.20606244;.56812811;.6434949;-.60157168;-.33669275;1.3214597;.76164025;4.7531581;2.232352;-.55975068;.46035007;1.9660952;1.903401;4.0561929;4.4388919;3.6794796;-2.4392004;3.7920296;3.5951674;2.1748416;3.2136474;4.0310106;.61147386;2.5930486;1.1061872;.72587705;-.34865394;.40566412;3.3000917;2.9483535;5.8289609;-.88420767;5.1090951;3.2033136;1.5905662;1.5797031;1.6042032;1.5575693;3.0413828;2.7716062;4.9830399;4.0278559;-.39804199;2.273531;-1.0851134;2.3295751;1.8479311;1.9487554;2.0153062;4.4540234;.0026491059;3.2008421;-1.2759756;.91477919;3.0934026;.86276186;-1.3796086;-.19761226;1.1126926;-.69807971;-.059564397;1.2374588;-2.4173379;.27815205;-.36535364;.082927279;-.66267759;-.3448993;.82941717;.16638629;-.82979208;-1.0606768;.67868042;.098879457;.52193624;.41104078;-.89120328;-.71859121;-.54621136;.45450464;-.69183528;-2.8091133;-.31618616;.81895357;.91898084;2.9523201;.91623843;.15302855;1.034894;-1.1056273;1.4623461;.25105649;.24191718;1.2844216;-.33215201;-1.2029566;-1.6040319;1.9015285;.3043378;.22176364;-.037510276;.73550647;.96743107;1.4379344;.076442108;.12418918;2.0094819;2.9478626;2.3264155;-1.6115514;-.53178;.25179014;1.6228474;2.7659929;4.2124896;4.6923103;-1.5927551;3.0992007;2.2122569;2.1217093;3.9110992;2.662519;.75073254;1.6880143;.73031628;-.68842411;-1.7402214;.073508233;1.5842949;.11431889;4.9859147;-1.0032077;2.2908318;2.2869685;.93843323;1.775051;2.9550087;1.5789068;2.0347657;1.3128006;4.8390341;3.4980295;-1.3509402;1.0506108;.46774927;1.6631873;1.2648548;1.9002941;.52640313;1.6310416;-.68913937;2.3544354;-2.266593;.91369867;2.1203327;1.3868363;45.281769 +1.1340147;.15617803;.97929788;.6451965;.81330496;-1.188212;-2.1039166;-.23027767;-.62694108;.24153215;.47510874;-.37719554;-.12273684;.58316183;-.44287586;.3157115;.8801235;-.2146561;-1.0361456;-.88227195;1.5510882;1.1365148;-.52314615;.97621447;-1.8507273;.2910223;.12653153;.30422315;1.6966918;.30129099;-.16156225;-.44841436;.78724968;-1.5806602;.64815521;-1.0316154;-.50236642;-.40361387;-.020115221;.20297828;-1.5339764;.35920358;-.22889319;-1.9783835;-1.308616;.42735851;-1.429742;.2019788;-.54789078;-1.1922312;.70760059;1.9636356;4.8623562;-2.2353892;2.1228793;.57896757;2.7923572;1.3210343;1.5239301;5.4654403;3.3819582;2.8820064;-.96300286;1.2036552;3.0606997;1.1555618;5.0574431;-.13003418;3.6789951;2.0896592;1.0562495;1.6937253;3.5790522;3.8865983;5.313334;2.8785524;2.957834;.69338834;3.3909242;1.0983889;5.1285915;2.2469203;-2.297847;-.76592803;4.0806122;1.0529966;-.64330864;.13428842;5.2944169;-1.1277678;5.4179235;-.83547944;-1.1610951;1.5064993;5.6676898;.11435752;-1.8133223;.97803265;4.3182836;2.6695342;.09344919;-1.2874093;-.038087472;.21158877;.68714207;1.3222806;-2.3622668;-1.6470274;-1.1055695;.68680865;-.99208093;-.76949441;-.18263054;-.25886053;-.43551156;.57328713;.71274364;.56102163;-.72317374;-1.0435586;1.0761676;-.2877216;1.1844643;-.82336247;-1.4282126;-.089714237;.98735505;.56037182;3.3767304;-.20518467;.61352193;.043386269;.22930406;.39236751;-.67062289;-.53720373;-1.6118802;-.63315898;-.8290379;.30129561;-1.3064698;1.3569243;-.43515959;-1.8062769;-.66535103;.55630362;-2.8364229;.18788783;.10914139;-1.0091584;.28036159;.9202382;3.5514271;-1.394303;-.14634125;-.8168869;2.8293052;1.4151176;-.51665252;3.9197972;2.0017807;2.5904734;-.15791921;.73404378;2.940491;-1.4109117;1.7153329;-.030984242;2.759341;1.9097016;1.8181785;1.3009287;2.4948103;2.441833;3.5888379;.98839164;2.687803;-.3244077;2.5020924;.9705928;4.3419399;.1121975;-1.300233;.10634059;3.0547941;.85943496;-1.5765562;-.53414696;2.1535454;-1.3085567;3.6705089;.15095688;1.3758838;.97953928;5.0263543;-.092631683;-.90298086;.66938585;2.348021;.13986334;45.020493 +.53153372;.20165311;-.7817592;-.69491452;-1.1462042;-2.135989;-.0272099;-.20280807;.44202596;-.36375633;-.040609654;.37812111;1.1716933;1.7912582;1.2617681;.62077588;-1.3140538;.060473461;-1.0073938;-.52261627;.87608421;.32622024;-.28766018;-.62176836;-1.2663015;1.121105;.57033664;-.16010769;.27744591;-1.0783767;.74521691;-1.1237073;-.071103543;-1.2959145;.058831532;-.92062068;.70311254;.74062109;.11098094;.35033166;-.74821603;1.8636745;.46676329;1.1411247;-1.54553;-.67895985;-.18970591;-1.3328266;-.19729781;-1.449559;.88450354;2.900089;-.91061592;6.0523682;1.7896725;1.1883664;.15571892;2.4466641;1.6532055;3.927798;-2.0837407;4.0393906;5.199214;1.9588416;3.4602935;1.651661;1.3537315;-1.3712031;-.26656422;2.0860827;4.4634099;3.2212329;1.7418911;4.174087;.95029783;5.3332205;2.7016776;4.7254767;-.64412278;3.2714422;1.224605;2.8946564;1.398512;1.0240076;1.4869201;2.2957115;1.4683924;2.5278571;2.2747958;6.0027881;3.3357632;.56594014;.77881193;.30152377;.3764596;1.6828538;1.5352501;2.0513606;6.6502628;.028438153;.71346855;1.5833561;-1.9867759;-.48475185;-.8201648;-3.0058625;2.263123;-.40892872;-.22074671;1.4134457;-1.9880158;1.0795658;-2.1638656;-.3151798;-.020654961;.77354896;-1.8841337;-.53770989;-1.1022869;-1.7481997;2.0142949;-.78884238;-.80770147;.22940576;-1.1837999;.67941308;.0016957447;-.57144034;-.042434078;-.52356434;1.6354622;-1.6646675;.99603868;-.74738401;.55178332;-.37641978;.42393273;-2.321198;-.61068958;1.3615156;1.9036046;.36469442;.82719874;1.0739441;-.84832537;-1.190455;-.84997141;-1.1245337;-.5923779;-.077545404;-.082252286;1.3708993;.50131536;5.4950252;.41244337;.036348063;1.189839;2.8819208;2.1801541;1.9664791;-2.0527525;3.596493;5.7197232;2.3582215;2.7742925;1.2011827;2.2956455;-.1721272;.58332759;.53840649;2.8845403;2.5425448;2.6420705;3.280618;.49423215;3.1319444;2.3035607;3.9453809;-.73955572;.39118344;.113672;1.4481142;-.48456076;1.1121066;.42363527;-.45964637;1.2957858;2.591362;2.469979;5.5753999;2.0615683;-.12311321;1.8154352;-1.1570245;-.30123898;.031242408;.72760653;1.5974625;4.2667699;1.1032726;50.060482 +.20051269;-.24962537;.95947421;1.3857112;-.15083469;1.5780333;1.1029947;1.6006876;1.1369746;.52587694;-1.1046216;.8994664;.72971702;-.4245103;.16273372;.11621539;-2.0406206;-.053082965;-.45752242;.22471558;-.30865747;-1.163332;.90396327;-.29025882;.79482669;.14795291;.64208275;-.091545694;-.45795244;1.0294025;1.6912693;1.8128276;-.23407599;-2.4328339;.044556562;-.34963241;.9135235;1.1768426;1.9815608;-1.1232722;.15935324;.098318048;1.0742351;.014290902;-.066428132;.28871134;1.1120316;-1.6849706;-.038988855;-.31824476;4.8591146;1.667678;.13481487;4.701283;3.2839627;4.3961682;1.8953834;.67350912;2.0039446;3.0555475;1.4774672;3.8796935;2.8881602;3.5164104;2.800432;2.6063507;2.0447519;2.3678491;1.7265415;3.4121768;4.6315064;3.1830688;2.6080287;2.9386101;-2.0214443;2.3026519;.23207605;3.59589;1.829981;2.5612004;.11947377;2.2592294;3.6322455;1.6541079;2.646596;3.2409487;4.3733668;1.9607242;.95669144;1.8745933;1.0455437;3.6216981;1.2229279;3.8355298;1.2646874;-1.3578006;2.3835413;1.5555577;2.8766952;-.99302328;.95974374;1.0336502;-.61102283;1.4063733;1.6567973;-.68943822;.88474178;2.52706;.49072346;1.4095566;-2.9395413;.29951197;.81328928;-1.4656441;.68589187;.61999285;-1.6416206;-1.6966771;-1.2926656;-.86534625;-.97103947;-.62894434;.43191963;.12264027;-.42402983;-.037880447;-.33233425;-1.6798675;1.0096611;2.1123123;1.1259625;2.6577473;-1.2677758;-.92730659;.6786651;-1.555786;1.5284504;.28804976;3.0864046;.51454812;.57974184;-1.7294642;2.3087831;-.80212158;.45562443;.51212424;.50778723;-.027578203;-1.5117832;.091397204;5.1265969;2.6845882;1.2784061;4.2931023;2.3159359;5.1136136;.51329297;1.176975;1.6583443;1.7100366;.50862366;3.4107721;.91792512;1.9788532;3.1815281;2.1297617;.49028543;1.783686;1.2088317;.77452058;3.3234255;2.3013783;.45288631;2.5273328;-1.5339833;.86455894;-.55323052;2.576762;1.6215234;3.7120161;.91620523;-.29745033;4.1365399;2.0683262;2.0855234;1.9538733;3.7064817;1.1261114;.90767914;1.9643549;-.11151597;3.1562841;.18767923;4.0536475;1.6354035;-2.3272223;2.0855825;1.2832539;4.1513615;-.0039562266;63.154766 +.11303648;-2.7489009;-.78953493;1.482162;.62662303;-.45137784;-.68648249;-1.035494;-1.583282;-1.0128868;-1.3338928;.75772029;.71966422;1.3992431;1.0730209;.48826733;-.73332304;1.02978;.98525488;-.23959552;-1.2432528;.47620267;-.76790506;.080599502;.74432242;-.099314809;.46908721;-1.0050673;-1.8848979;.15846173;.94597679;-.54910314;.16277206;.099107683;-.60045427;.92528725;-1.4150763;-1.6375141;-2.6400566;1.0017521;-.22661506;.53055674;-.72250032;.42222643;1.5230477;.47871953;1.379115;1.5951923;-.83157152;1.1110674;5.5647755;1.1162567;1.6274878;2.7559299;.27437097;-2.449254;3.0401878;.37756315;.65436715;3.3128819;1.77081;2.0521557;3.5086632;3.7453129;2.2625065;.95705998;4.1160541;2.9935;2.2118506;4.1294498;4.8197341;1.1829613;2.0283666;1.4623464;4.3251114;2.173485;4.6421456;.13667144;-.96640801;4.3648767;3.1535459;-1.6309021;5.4178281;5.1511216;2.7386258;.17899944;3.6530085;.43043333;3.4560518;2.2648637;1.7341048;-1.0473168;3.5784125;2.5405879;.45020372;2.6069865;2.2626221;1.6600349;4.2383056;-2.9132929;.12504067;-2.2179797;-.62833613;1.7228004;3.1555324;.98647898;-1.1847513;-.92466068;-.203586;-.68547606;-.99226886;.94820601;-.93881273;2.1425583;-1.1235545;1.0956059;-1.8265548;-.4564673;.31336963;-.61809206;-2.5202849;1.3685747;-2.1264169;-.39145419;1.2189908;1.5830414;-1.3632799;-.11585572;-1.691371;-.047834408;.42225534;-1.4375086;.238435;-1.0252285;-.3067407;-.65683037;-.46605349;-1.6650912;-1.7467419;-.78183234;-1.3326305;-.13214371;.82282287;1.1049575;1.9088515;1.6546226;1.0892121;2.3596733;-1.3716961;1.9190359;3.8284683;1.4676683;1.329316;2.3290629;1.4179686;-1.3318383;3.5419602;1.541522;.76971179;1.5094602;.32595953;1.2001098;2.2037725;2.5892425;1.848033;.12618974;3.0351925;2.7820623;-.86507124;3.0468295;1.1720308;-.14738533;1.1990414;.66135412;3.7087827;2.8951406;3.5520251;.065011904;-2.8698418;1.7467171;2.1007085;-.23499122;3.3712816;5.1300216;1.962588;-.26791704;4.483665;.86238801;3.1598027;1.1347448;.65356696;.3129625;3.0548413;1.205611;1.0912663;1.6542883;2.1845155;2.8369973;5.0823345;-2.1158714;46.293755 +-.53867948;-.040189911;-.052646223;.056597035;2.3334541;-.677957;1.9665687;.081267975;.75003654;.789217;.25451902;-.51147532;1.0355899;1.1659913;-.68517667;1.3367586;.11688402;-.72926098;-1.4875751;-.44850895;2.0197306;1.2166975;.64162004;-1.0592325;-.23097275;.44714093;-.48028862;-.26013994;.74305338;-.32953191;1.0314924;-.8723436;.81144553;-1.4234982;1.116419;1.3936527;.49306032;-1.1769912;3.9889224;.57086205;.84283191;-2.4992955;-.73950374;-.67359418;.17348257;-.91357559;.27992436;-2.1870661;-.43338951;-.05858333;1.2469906;-.95808172;1.7992556;3.9459798;3.0124249;-1.1577317;2.4968016;4.9551396;-.25208178;-1.3659531;1.4369402;1.586293;3.3077052;2.120136;2.0045419;3.9528158;-.45595366;-.07990063;3.9461508;2.9604514;.55578208;3.0544434;1.9743631;4.6315274;3.8149283;1.8975959;2.1351192;2.7202559;5.0327182;1.6606519;2.8175638;-.67493379;2.0559165;.48047966;4.9898758;3.0129786;3.0268373;.63345158;2.1364038;1.8346715;3.4456215;4.5700369;5.0631189;1.0192627;4.4543314;.35526916;1.0502386;.774324;-1.1114172;1.388563;.59928942;-.67026585;-.98837191;1.3462332;2.1731727;.13823295;2.2591445;-.99809951;1.3202938;.069948122;.024156526;.07670331;.7804352;.62462091;2.3677461;.8357383;.32183427;.53047013;-.31672713;-1.2400874;-.32856277;-.97482556;-.094502099;-.98296279;-1.4423803;.57129353;-.97102118;-.80795288;-.25433716;-1.6121131;-.038126472;-.53438705;-.82409656;-1.8382349;-.84912109;1.8824264;.6594066;-1.2284356;3.3141146;.58820736;.43878067;.17995086;1.7443352;-2.6081517;.83488739;-1.6739278;-.26039851;-1.0158987;.22176124;1.0439134;-.71684355;-.27596051;1.5370196;1.4236679;2.7609127;.041941594;2.621659;3.0633094;.10827568;-1.8185964;-.20199148;.39602751;2.606725;.7924192;.99274534;3.7343063;-1.5296075;-.3646802;3.0271714;-.25420803;1.0525591;3.5802143;1.9655883;3.1012897;3.9905465;-.52039874;.88342601;2.2728262;3.1567867;.048752811;1.3369539;-.44351423;1.0995678;1.452013;3.7782741;2.8255792;3.3286715;-.5112915;.17574368;.44375581;1.7530794;2.5114264;3.8563666;.015789619;1.4950294;-1.4522511;1.9780834;-.89426285;.6540513;-.28087878;48.03952 +1.6413329;.97516042;.51766616;-.80035228;-1.1959261;-.067011617;-.39532754;.28008816;.71381134;-.80230039;-.59148711;1.5983649;-.62960958;.072352931;-.99073327;-1.0781226;-.083207071;-.32988784;2.5822899;.070839286;-1.6067981;.98738259;.96619749;-1.1861459;-.10462274;.48377657;-.67510766;.62483418;.23847352;-1.5528858;.94618422;-.042046349;-.67700195;-.43088734;.95000619;-1.3802267;-1.5243213;-.2824204;-.6799311;1.0011557;-.88317055;-.87350291;-1.2350028;.3398681;-1.3379619;-.54873127;-1.5394524;.19702315;1.2531159;-.27158755;-4.426177;3.6358197;1.2998563;2.0764074;1.0778435;3.5758359;1.8060894;1.0163355;1.4972817;3.1610858;-.13976894;1.3646911;1.1087092;-1.1329131;3.6259189;1.6378847;2.4648106;-.3580285;-.96186936;2.3207972;2.6245475;4.536376;-1.1892599;-.54717606;.74554002;1.3618237;2.73926;-.81337446;4.9757142;-1.4739771;.66309297;-.32901517;2.3632376;2.957289;1.9899484;2.0335035;3.2010593;-1.1177123;.88935584;2.4635811;2.1135583;4.3335681;1.6293933;-.79614627;-1.8147322;.053820185;-.54116958;3.7912674;.13811907;.26933989;.75529683;.12373092;.54459196;-.29826215;-1.0784891;.84763259;-2.2429805;.53355664;1.2340727;.46512574;-.3867245;1.7926936;.8108865;-.41573986;-2.2263398;-2.129041;-.17458946;1.0124599;3.1138854;1.5276469;-1.5309424;2.408231;.75213802;-2.0339153;1.1775918;.65602434;-1.9530008;1.2931583;.067032285;-1.2498205;2.3929048;.15237938;.41416356;-.15707408;.63599414;-1.2513047;-1.757014;.51477551;-.98830986;.10935459;-.81478661;-.78899598;-.85402292;1.0438601;-.72319037;.27474689;-1.1662648;.1539229;-.33613488;.12414777;-3.338824;1.6576078;2.3047876;.15523905;-.15974373;2.3392212;.80945528;-.0041581257;1.4702349;4.2445469;.4025391;1.7217853;-1.207391;-1.3465415;2.6055026;1.0906603;1.2426358;1.922392;-.97458869;1.5078231;1.6408751;4.1923223;-1.2414602;-1.7048597;.42166126;1.93835;1.6667446;-.75345564;2.864418;-2.3067191;.52586836;-.42817545;2.2225108;1.3615129;1.7284086;1.6778238;2.3316481;-1.4322076;-1.0064026;1.6788847;1.8590517;3.3539793;.93628031;-.66347951;-1.4566625;.47456899;-.54011339;1.6303754;-.2470779;-.11252183;27.77763 +.28645897;-.59731901;-.81641257;-2.1581209;1.9924629;-.51324606;-.45088717;.81284535;-1.3677922;1.299842;.44635573;1.6819994;.74260044;1.0905128;-.1592043;-.36897272;1.1464514;-.66689146;-.84561551;-.8607688;-.3748036;-.98569649;.46909818;.33204159;.64104086;1.5210001;.31932178;-.058920383;-.39423308;.70027745;1.0831616;.65693349;.62793547;-1.2219852;-.30365244;-.22489995;.59554958;-.25149891;.047698807;-.4962641;.1303689;-.20495263;.73925912;1.6185603;.13136874;.34785053;.36154509;-.17227712;1.5325028;-1.4546453;2.4884987;1.1941646;5.3774104;1.6008438;4.1426044;.67309541;2.2926285;6.2966743;2.2419655;.94176543;3.0819077;4.331099;-1.9267511;3.0355623;4.5631933;2.0170317;1.1646082;.98556244;3.9288211;3.974751;4.3925509;-1.4080684;3.0927787;.063560128;-1.503253;.87308604;6.1835241;-.060613882;.043004334;.71000367;.7200892;4.4433851;-.0044445423;-.65432906;1.9510423;4.4176397;1.0604672;2.7798767;3.7746317;3.2462204;4.5675364;-1.4430007;4.4179587;2.2664342;4.8708615;1.7014067;-.51652235;-.68924904;1.9708091;1.7917449;-.18577322;-2.1186023;-.14660008;-2.7656264;1.611537;-.32833305;-.6099934;1.1937531;-.29307631;.52412301;.98760426;2.5712783;-.64715701;-.052557629;-.034764454;-.76424688;1.6430321;-.3710219;-.12357242;.94592929;-.72460926;-1.5046629;-.83331555;-.80897582;1.8220799;1.5782272;1.0098213;-1.8595215;.64020193;-1.1006633;.086463846;.37080404;1.6495147;.18856756;.70340848;-1.4758953;1.1257349;-1.103904;-2.2362964;-.62541187;-.10255206;-.61895311;-1.1473745;1.1994547;.45067692;.13679363;-.026036054;-.95528305;2.0031414;.36397848;2.0874028;1.2753739;2.2349021;2.4442914;1.7107394;.47041196;2.3030736;2.8307409;2.7146726;-.68941194;1.9000448;2.4139688;-2.3758521;1.4929384;2.3226368;2.8254457;.82514;.39653164;2.0952499;3.5249014;3.211405;-1.2633289;2.0717738;.069206126;-2.265322;1.4474158;4.5067916;.41905323;2.2948358;-1.8095673;-.28140303;1.6399714;1.3978246;-.67036098;1.6091056;2.5215318;1.5088456;1.4718407;2.3390703;2.4423704;3.3141863;-1.1994464;1.8175837;2.213444;3.4526591;-.012406451;-.72184795;-1.9379271;1.092508;-.56647122;52.508419 +.52766734;-.65815324;1.0236611;-.83618075;.87266576;.70096821;1.3143545;-.13629098;1.5775341;-.14761752;-1.9397295;-1.720673;-.51791191;-.16061626;-.86931038;-.28222963;-.91434741;-.048048873;.43806592;-.77903795;-.65490663;-.49988231;-.45293143;.070819587;-2.3200152;-.20703018;1.1523836;-.24360986;2.027385;-.59169793;.60525483;-.46189231;-1.6464639;-.99249583;-1.1865885;1.1316034;.80793291;1.3048865;1.0237811;.40012628;-.42103782;-.91435671;-1.3364486;-.89497691;1.1440526;.47468844;.81817514;1.4317226;.55393112;-1.2957678;3.2173481;3.8397715;.55364496;3.4742305;.24329005;-3.1644239;2.7571468;4.0033545;2.8675559;3.0384543;3.581358;.81527722;2.8561742;-1.3637637;2.5710804;.076164328;2.4157989;1.9597425;.65609646;6.5321279;-2.9209363;.051113524;2.6362867;5.2156529;1.4635006;1.9796679;1.4735246;3.9777408;-1.3187773;1.3417795;3.1269152;2.2595558;2.4308596;6.7137804;1.6223274;.098762535;.12488639;1.2956042;1.1479939;1.0619214;-1.5396229;1.4388523;3.867322;1.9046291;-1.8099806;1.9720664;2.8190353;3.431819;.9846068;2.254349;1.828369;-1.5428752;1.508871;-1.4268928;1.1324458;-.6229378;.71337014;-.86516231;1.9325726;-.95900124;-.098200247;-3.5472822;-1.1976298;-.56133991;-1.0709912;-.7084353;-1.4229444;-1.2490758;.55427688;-1.3433179;1.0487814;-1.0390881;1.5680115;-1.1048368;-1.4996859;-1.273086;1.7922319;.69290245;-.55124736;-.9478088;.89024198;.16395116;-.97077543;-3.1332622;-.97104418;2.1078918;.46978077;.3432529;-.30960542;.56242067;-.61892551;-.61507636;-1.6451242;.39407659;2.0599196;.5868693;-.096501648;-.13230571;.18284205;-.41623712;2.2413106;2.2263725;2.5574622;.82942533;-.087582186;-.700535;-.18725368;2.7741764;2.2614925;2.1709106;2.4668429;1.4049586;2.8779016;-.60746789;1.4417319;.8971715;2.9195464;3.093003;-.19563043;3.8325281;-.28984946;.091920987;1.2779719;3.3705766;-.50491822;1.6856459;.75359994;2.57323;-1.0344671;-.081952833;2.5021524;1.1259381;.42327598;5.4654231;1.3039091;.25771362;.56409681;.54197085;-.068912156;1.6674789;-1.2132084;-.31530306;1.2445397;.16868457;-2.0156407;.61144;3.7394736;2.1285114;.28080398;2.0118828;38.526054 +1.4289783;-.090700135;-.45419857;.78097296;1.3532652;-.77595651;.95399636;-1.0171181;.83239508;1.0189748;2.489733;.058597371;.073226728;.39551926;.53999275;-.066077903;.84682947;-1.9927435;-.98448592;-.2530126;-.53784925;2.0953674;.69323057;.91968417;-1.3190917;-.340244;-.89295143;-.51707053;.84244215;-.97063303;-.81473833;-.80647892;-.8234933;.6594497;-3.0916505;-1.7775514;1.2473555;-1.9785914;.30758059;-.52247262;-1.3407598;-.26837787;1.0483495;-.4295508;.72972894;1.76201;-.17408183;.15318154;.86022753;-1.1325454;.90073687;4.3355994;1.3229396;.5987972;-1.7116029;1.4970946;-.21618353;2.7702227;1.7203056;1.6903692;3.8826151;3.6090865;3.4035189;1.5430455;3.1380901;1.9824926;3.1541736;.96779084;1.0913142;2.7745004;3.8193882;.73034555;4.9475703;1.7655923;2.9222474;.51082385;-2.5113142;3.6654873;3.9358754;-1.9554917;2.9602518;.92243624;5.1071863;-.046102617;-1.9474111;3.5055408;1.8551735;3.7879381;1.9061745;2.9935961;2.1139028;2.3481364;5.4900541;1.5990778;4.8243809;-.84072465;.16037226;1.991552;.59713358;6.5254798;3.2054861;.46205652;.20369516;.73352963;-.1611646;-1.6801236;1.1853005;.27872443;-.4366678;-.068177581;1.516372;-.6181311;-.76609349;.6245572;-1.0337507;.31362826;1.5997108;-1.9751425;.54376614;.81531227;.58068478;2.2491808;.37073565;1.1229646;-.0015065613;1.186969;1.0514215;-.86327672;1.4889368;-1.7583116;-.010287197;.025795169;-2.3953886;1.3409528;-.92887473;-1.2088292;.31284875;-2.9541318;1.7717552;-1.2275051;-.68221021;-.51059002;-.26781258;-1.7662463;1.512787;1.1738628;-.069614843;1.1015326;1.1113966;-.070796333;1.9595218;2.0916138;.77482098;1.0565244;-1.831483;-.90405065;-1.2048335;1.1997176;1.4952979;1.6067643;2.0147913;4.9221539;1.6491017;1.2166595;3.0336988;-1.3147868;3.9155731;.60316104;-.15410864;2.2177629;3.3112247;.74673724;4.763021;.20368792;1.636054;.11434974;-2.496558;-.19739959;3.5804491;.32518244;3.2087567;-.50850433;4.5525236;-1.4363872;-2.5588839;.82318002;1.8724391;2.2133172;.9055261;.18253277;1.3650366;1.7658361;3.8344021;1.627771;2.5189514;-1.1128018;1.0116249;1.7409246;-.10926544;6.2627282;50.263302 +.85686779;-.48034254;-1.3582751;-1.8543705;-1.2313938;-.1368461;-1.2788353;-.27455926;.17287019;-.057201825;1.6168877;-.80674088;-1.010007;.28934088;-1.4891695;.86192578;-.56195855;-.42693368;.5510301;1.288136;.44013312;-.67488927;.45029768;-.99999446;-.73172277;-.91655868;-.26537469;-.037932664;-.57377952;.65269881;-.81027126;-.91299546;-.851704;.47184324;-.23937649;.95401084;-.29336932;.48271391;-.38303107;-1.0130546;-.75469202;-1.8761424;.055059243;.64289463;-3.6394827;-.74230868;.49188432;.68012792;-.76363903;.74632871;2.1543372;-1.0005655;-3.5507898;1.5631379;3.6446016;2.1408622;2.6029704;3.3698404;.72482371;1.773234;3.7021885;-3.0376043;2.0508275;.29373029;.85291016;3.1108782;2.8348882;4.4879584;-.98539835;3.1716208;-2.3260994;-.56242269;1.8124783;3.2317402;-.57529491;.85004008;4.0471334;5.4592319;1.710443;.5994246;3.6402576;2.0894802;4.3019042;.20054783;-.26492074;1.3401772;2.0029099;1.8582026;-.3663694;-.59564227;1.1335956;6.7629328;.94991535;1.9780263;6.243536;2.3016648;2.5144067;.76099527;2.1701558;3.4626095;-.65373689;.076331593;-3.0882361;-.97238225;-2.6364899;-.76040608;-1.1391752;.28365877;-1.3406253;.6818108;1.804377;-.20375577;-.29157463;1.1268651;-1.2960489;.84348601;-1.2435769;.83477724;1.335047;1.5516822;-.035225343;-2.3072658;2.1782172;-.16873764;.44620672;-.64151865;.99785089;.29410851;-.25896031;-.71329701;.84759647;-.018428711;-.51581204;.12951083;-.14535375;.33564577;-1.5124955;.53471553;-.40128058;-1.0886387;.61893278;-2.2395353;-1.6858555;-.31245813;-1.9094011;-1.2153224;.33960223;.58575493;-1.3674423;-.091370583;1.0406833;-1.8932512;-3.2818353;1.2670742;1.2404648;2.0034058;1.6067123;2.1330953;.97272301;.45885327;2.161804;-2.4560182;1.7266954;-.16832076;1.3353772;2.7942533;2.2363644;4.3933215;-.76461542;1.1327138;-1.0155978;-.056311216;1.4134382;1.6604502;-.49728397;-1.6370715;2.6560519;4.7708941;1.4780976;-1.6780952;2.0587144;1.4002106;3.5006218;.82770932;.0019656809;1.8914864;-.84625912;2.1333973;-.57209629;-.38268694;.081835285;4.1075039;-.35809329;-.18620183;6.0464139;.47632688;2.6073792;-2.6379337;2.7555881;1.7253178;39.110359 +1.2507995;-.81237525;-.18467827;-1.3572668;.048422869;-.49316117;.73232579;.18648501;.95262486;.36530915;1.2573568;-.96371239;-.019470815;.25283107;-.57621682;.038774662;-1.523749;1.3632762;.36153656;-.24594606;-.98496574;-.023719408;-.89789724;-.48322397;-1.6019915;-.4796783;-1.0670249;-.86547422;-1.6462485;.56084585;.80379689;-.28389513;-.55909622;.1656497;.9925468;1.1876825;.16012278;-.65558487;-.79807055;-1.6884708;1.2340046;-.81149787;.96456444;1.6701901;.43246037;.81497192;1.4678977;.9775641;-.91006535;.59713799;1.3750312;3.2451239;3.5921028;1.8402551;.47267559;.48737061;2.2180078;3.11621;7.3378057;-1.1050446;3.7322595;3.0208468;.89855582;.62903666;2.344275;3.142242;2.3697526;5.6909084;1.0138099;1.8340756;1.3865178;2.2067378;1.0098357;-.15253092;1.8068306;1.8208672;2.1854217;.79681247;6.4401097;3.1112108;2.3278325;.57138056;-.92051405;-2.3988872;-3.0273054;3.8906755;1.2239521;3.4444766;.24043787;.13467164;4.6389937;3.0214655;2.4975681;3.5509157;1.8086641;2.2524767;.29458806;-.25815874;3.6226516;1.5907719;1.4075919;-1.2227516;1.6077541;-.33417413;-.84467047;-1.7100571;.87186229;.86069357;-1.3688272;-.17459652;-.025445556;-3.4783382;.14453427;-.98192555;.50908452;-.50378388;-1.9338723;2.3248348;.6638152;-.14560236;-1.1341441;-.5545525;-.16020416;.92305762;-.95602095;-.60001773;-.96231848;-.2311689;-1.1191541;-.97423375;-.11536632;-.44981104;1.3063409;.53058887;1.5431011;1.5710113;1.9087917;.36053234;-.36912915;-2.1449909;1.5588846;-1.432876;1.0667853;-.64613348;.66192824;-.30294213;1.9756222;3.313056;-1.0436777;-.58754939;.25375533;3.4890766;3.676883;1.3416793;.72368377;-.28689057;2.9894552;2.1416914;5.8106151;-2.1493857;4.4506364;3.6300251;.36015683;.92097068;.10203728;2.0691745;2.211674;3.2759569;-1.7034272;1.2142859;-1.0063525;1.3822927;1.3615154;.76436359;-.012343335;2.8002591;1.0687584;.63881689;5.4787121;.3369866;.96154523;1.5038345;-1.3115401;-1.2651743;-3.730808;1.754967;-.19507909;2.9323242;1.1324636;.35212317;3.5370615;3.6463044;2.6244168;.57347304;.90527016;1.3831019;.93168491;-.234465;3.8186669;.48100099;38.324783 +.13660747;-.49740717;-1.0986543;-.15776953;-1.5080203;.73021722;-.29353738;-1.1680316;-.23540093;-.79131889;-.96529388;-.68273336;-2.0699558;1.1370053;.62061119;.68257117;.58989406;-.61862326;1.0262908;1.2116028;-.28542158;-1.1620407;-1.3169848;-1.5614269;-.77587557;-.052604746;.14374225;1.0180833;-.34504414;-2.0982113;1.9447845;.42128098;1.2160951;-.98056275;1.2976854;-1.0961024;.35596031;.43941256;-1.5521234;.33386591;.39280742;-.47295022;-1.1632603;.65089405;.5426898;.95024467;-.064945549;-1.4952397;-1.4592648;-1.2696906;-1.305467;1.2437137;-.41666892;-2.9008524;.55442619;4.6830606;-1.6976484;1.3326366;1.1697127;3.7533672;1.739197;3.7827933;-.54387265;2.7713301;2.0600216;2.8651915;1.2550339;1.3302621;4.9272861;3.6022656;4.4046612;4.646841;3.415803;-1.7416002;-1.2407675;1.8631859;.47369218;4.6251421;4.4452071;3.5678239;.82027972;5.2733769;1.7878048;1.7961055;1.0263069;-1.2408338;.19506812;5.5962906;-.38737994;1.1989934;4.3991303;2.9018881;1.1298703;-.64417988;2.2968767;2.4412928;1.9893503;1.3007524;-.95363849;5.5269208;-.84255832;1.4346747;.85449272;-1.176825;-1.0387907;-.82365036;-.81905484;-.95815444;-.23164575;-1.2472268;-.20881215;-.84750122;-1.5205008;1.2960156;1.2460538;.36773047;2.7848747;-.30663913;3.0893679;1.1495697;.73252392;-.59262407;-.88329345;-1.0495071;1.1385667;-.90948731;-1.0222095;.97561395;-.91747427;-.96284997;1.9993628;-1.3018991;1.7814543;-.58603394;3.5150251;-.22862823;2.704247;-.2924276;-.16347715;1.2382798;.40235665;-1.0488008;-1.6250618;-1.5429744;-.7155264;-.36714569;1.133514;-2.1004212;-.04418312;-.42603797;-1.870199;-.83808064;-1.5187283;-3.1123173;-1.0243845;2.6234112;.41422597;.5273301;1.359988;2.8483162;.25487641;3.8802316;-1.943204;1.9283705;1.3272266;3.1067357;-.99771029;1.7535113;2.420568;1.5882492;4.0153856;2.1066258;2.3250358;-1.0158209;-.83987474;1.6209818;.97285497;5.7238493;3.0252094;1.4913851;1.3018031;5.153266;1.7186625;1.0242652;.8037011;-.54198945;-.036320012;3.2135053;1.6901542;.49572897;3.3362844;2.1645999;1.2490999;.82453477;3.5583982;3.3108711;1.2706176;.80327165;-1.7320545;3.0201809;36.475716 +-.39530075;1.0079093;1.5577178;-1.950459;-.15900075;1.0097237;.43434533;-.81415081;-1.556314;1.2090052;-1.2571534;-1.8851041;-.19204076;-.14745444;1.8431852;-.81754851;-.27500036;-.68153697;-.65799278;1.1262301;-.92865872;-1.9629723;-1.0532947;-.48403534;-1.3039305;.94238698;-.39473638;-.21661402;1.1253481;-.060668916;1.8391312;.78799295;.32606477;-.84524167;.92639631;.76197225;-.94100243;-.40225494;-1.8498107;.10223265;.26135024;.80776459;.53453964;1.755998;-1.6059084;-.35482991;1.3788291;.15252978;-.29480359;-1.9711148;.016879875;5.1483817;.7801646;-1.5380112;2.3693671;1.8918437;4.5862551;1.5046076;-1.1562788;3.2056675;2.6860197;3.0064445;2.8465343;5.0870066;3.2370739;3.3455105;3.250658;2.778779;3.6057932;-.80519217;1.9147882;1.458789;-1.9365027;2.8318341;-.22891887;3.8219812;-.79353631;-1.3062037;3.8920276;2.9844306;4.6574492;1.8210744;3.2690709;-.040859371;1.5483131;4.9554524;.8822642;5.071929;2.2946229;1.6746486;1.8755201;.65724957;4.3762136;2.2235956;1.499388;3.9656503;-.77232116;-2.540395;2.2665162;.59395576;-2.2557185;.52506137;1.6410311;-1.6790632;-1.646646;1.7200782;.046488144;-2.2467909;-.4787488;1.5759894;-.86661553;-1.0901964;-.25212082;.16336483;1.2777033;.49608514;-.38936374;-.033839826;-1.988037;.76186609;-.53783053;-2.6534357;.63217694;-1.9532808;1.0890422;.78288239;-.25295031;-.40398937;1.1127852;-1.1180226;2.0288556;-1.0593753;1.518955;.27621296;-.16424769;1.0331604;-1.5507506;-1.8915333;-1.1154652;.099934004;.54745233;-.74428666;.079297177;.54413867;-1.1246204;.71393543;-.17580117;-.48757395;-1.4249142;-.38882658;-1.3317717;1.9305292;.96149158;-1.7549595;3.7514246;.69567287;4.0163193;-.94314575;.53599858;1.9132329;2.3038659;2.0965726;1.22893;3.1605349;1.8225083;2.8679202;1.1487499;1.701378;3.2498167;1.1999406;2.7095382;1.3656144;-1.4222496;1.8241967;.16100718;1.6698772;.012398594;-.16760588;2.3495777;1.2866046;3.5544775;2.0034733;3.2246046;-.35531569;-.38831946;4.7773862;.47202975;2.5012572;1.5413733;1.5160639;1.376807;-.14938998;4.1394176;2.1822846;3.2671092;2.3658767;-2.3229322;-1.2737631;1.3865874;2.1888206;44.11161 +1.3090444;-.43575129;.059565384;-.41197848;.74074924;-.69949865;-1.0344155;-.47404817;-.020801788;-.18795109;-.67899519;.082962088;.49448422;.19201346;1.43024;1.7984362;.059150979;1.2793424;1.1894726;.89896768;-1.6126339;-.83391976;1.2197324;1.6093173;-.2579363;1.8702219;-.0078463675;-.90906042;-1.0515301;-.50966036;-.14066772;1.3342471;-.12481866;.77273452;-.6310069;.18500021;.91172349;1.1203305;-.58985025;-.20841858;-.98051167;.83069438;-.089473672;-1.1191442;.82077795;.32436174;1.0453622;-1.3837905;.16123551;-.12483177;3.1121435;-.0030194223;2.9079828;.80706513;2.9560015;2.1286442;1.6828451;2.6231277;1.1746346;1.1023279;4.0935311;1.2392304;4.0023341;3.399709;4.2075109;3.3573313;4.1344919;4.1131134;1.0513493;-.39776433;5.8591413;1.6015725;2.0045271;3.1957705;4.2602158;4.1105461;2.2889736;-1.4970725;1.5702163;2.5698602;1.337024;4.2153139;2.6101782;-2.1444724;2.5832541;2.6537747;3.1510212;-1.160787;-2.1198204;.9658373;3.5561011;4.0188975;1.5075876;.65972549;2.5630457;-1.1268784;1.9200829;4.5314384;2.4573073;2.5025289;1.7457519;.97723788;-.038689215;.74354172;.46961623;.9775387;-1.1209153;1.1218625;.29252535;-.48210546;1.265713;-1.1208968;1.3553952;-.39142656;1.4652034;2.2970629;1.2352078;2.1855152;3.0114355;1.6854022;-.19894129;-.1423595;-1.5160741;2.4214344;-.17318511;1.1045085;-.24897647;-.22207339;.97257584;-.14445888;.48263043;1.1193053;.4573749;.47233725;.81217253;.57070595;-.11192014;-.28262559;-1.2330883;-1.5451636;.98563749;1.6794039;-.48900619;.11127512;1.2195764;-.88799948;-.70081055;-2.9230032;-1.108168;-.3941271;2.4625299;.66379058;1.9233024;-.63423979;.51176918;-.32921809;.36681134;1.2607144;-.084800676;2.1499035;2.903903;-1.3706615;2.4405849;2.4272103;3.6011899;2.8997087;4.0422139;2.7281685;-.026424348;-1.8277225;5.4284673;2.4008045;1.8188684;3.6189034;1.5746571;2.7874763;.24409993;-.97661704;-.3355794;1.7501085;.39577663;2.5698433;3.6226337;-1.4145923;2.9617405;1.142558;3.3347218;.90215176;-1.4686222;-.52705663;2.3986068;2.8878336;.34584606;.44051346;.58889508;-.55954707;.93806678;3.3056841;1.8364424;3.7703106;59.873638 +.69123065;-.052858092;-.83565134;-.58859909;.74804986;.72694677;1.1374595;-1.0653728;-1.0894541;.17461435;1.3686625;.044738766;.023641879;.079946242;-.62764549;-.025455251;.086444035;-1.2516212;-1.1851904;.86661118;-.59810752;-1.6819059;.73531342;.8829816;-.81368768;1.728088;2.3086262;-.34881306;.069690198;.72526497;-.69460523;.42810097;-1.4284356;-.19861017;1.2996924;-.50789642;-.44797167;1.6984215;1.039547;-.015310175;1.4292824;-.091360018;.2020032;-.00030860491;-.47768936;1.4272108;-.46750197;.025647072;-.54392707;1.0862576;.65994698;4.755394;1.2796638;5.2260308;4.1359277;.15554266;3.3812633;1.1546869;2.8052063;-.0088550113;2.2971268;.75126135;2.9016962;3.0509415;2.0530424;-.46129137;.70345956;.76085776;3.5658073;2.1654856;4.1649675;2.3998983;-.22835752;-.57330877;1.8123423;1.3660905;-.9927882;.80300307;3.4612222;-.65610391;1.897436;.064454213;.23591888;3.0422962;1.2986094;2.7644415;6.0961657;1.7568643;2.5811505;4.3422718;2.0212765;2.6126354;3.3282228;1.5606296;5.9194989;.25891382;2.3214655;3.8450906;2.0930626;6.0179815;.28176826;1.8448967;.023343403;-.052128941;1.463742;1.9848692;1.9521853;.68583697;-.52223939;-1.3426031;1.898342;.64569163;.0053072986;-.27461416;-.48154816;.72815412;-1.6882844;-1.385944;.49846521;1.3071791;-1.8994632;-1.1937742;.88922894;.1314625;.45419994;1.0438901;-1.0127257;.12349812;1.6215386;.85761398;-.82353485;-1.3195978;-1.7395384;-.2073306;1.2172034;-1.7247406;-.27118;-.63761532;1.9357572;-1.8502983;-.86380345;-.66266346;-1.026633;-.15587111;-1.0661144;.31820881;-1.7354571;-1.0391062;-.82949054;-1.1532416;.10271207;4.6577706;-.37920657;4.6172915;3.7973382;.3031573;3.7304087;.92193127;1.3285555;-.23659736;.28968301;1.3721837;2.2625461;.70257241;1.6158943;.42351121;.86458951;.92346358;.9983201;2.0959072;2.3294034;.23140499;.55451417;1.9540348;.23555179;2.2142818;.54233986;1.5259548;.43853062;-.97812498;2.6129854;.683254;-.36648107;1.0800648;1.1584498;.18520093;4.8022122;1.1227812;2.3787072;4.9479251;-.25302666;3.1685476;2.2540383;1.5058974;3.8410687;-1.550949;.88307923;3.4630134;.95256323;4.4532409;55.32148 +-.55057454;-.57412148;-1.5233163;-.53726977;.48370039;-.0091760028;.27300036;-1.0862863;.24191803;-1.3663638;-.14974467;.55347538;-1.1306907;-.18411481;.87996382;-1.5723779;.27825338;-1.1874353;2.1487188;-.36610502;-.25726578;.086086944;.44249493;-.28328663;-.43540266;-.67463499;.92251056;1.7458774;-.056309488;.0078268787;.85909903;-.015973585;-1.1479883;.69652522;.45830902;1.2531693;.55672431;1.3697716;.14095485;1.8033663;-1.4662969;-1.1985519;-.79413414;-1.2828234;.91596794;-.78405213;.65292209;-1.0490695;-.16771325;-.84057981;-.83752882;3.3196812;1.0214002;.49419296;1.8720437;3.4634659;.21183074;2.0168991;2.6572127;2.5792441;4.433147;1.2720425;-.18084875;3.5050087;4.6253052;2.2611523;1.049005;2.1350935;3.0158246;1.8258364;-.43876985;.31996223;3.1775773;1.1888301;1.9198843;.82161415;-.13338213;1.6236863;.61413491;3.3300655;-.45537138;1.5145782;2.3572681;-1.383261;.38260937;2.4580352;3.725419;3.484741;4.6226606;2.9010134;-.5835135;3.6522567;1.1713604;-.20728242;2.7613602;2.3951676;4.4758782;2.3439999;2.1640866;3.4778683;-1.698352;-1.1339248;-.58537012;-.83061248;.80908215;-1.1455727;.37722844;-1.7583451;-1.089187;.76182711;-1.2038089;.62134755;-2.5079601;-.84648454;.38109756;-.063827008;-1.1018754;.063608177;2.2809587;-.64257866;.88478625;1.1737829;-.29629752;-.76594967;1.2610016;1.4647288;.82173276;.83331931;-.49251905;-.16701901;-.11607928;1.434303;.43880484;-.040314164;.83350378;2.5130489;1.1411499;2.6658783;.96946877;-.032966144;-1.697347;-1.0356036;-1.5098929;-1.9598002;-1.2107648;.88721949;1.3474816;.47518632;1.0239444;-2.1074724;-1.3504292;3.9235704;.3746182;.1876674;1.4844171;2.5655468;.88043833;1.8824028;3.0418754;2.7795715;3.1665428;.22308087;-.85504979;2.4255514;1.9900608;1.4346206;-1.0122813;3.3127093;1.2961544;2.0643861;.83373272;-.32272887;1.7594494;.84515065;.80871743;1.607614;.54427403;.87539941;-.86380434;2.8172467;-2.2669525;-.52877951;2.7334714;-.99408442;.70820403;1.2644668;4.0517793;4.7422328;2.554039;2.8238325;-.27373481;1.9170357;.75402987;.38366807;.68576837;.34946933;2.1745942;.5698995;1.0237588;3.7762725;40.847862 +1.4882487;.30136332;-2.6253035;-.2768788;-.018347792;-2.8279703;1.1375164;2.4449561;.13551472;-.88965964;.37692443;-1.1408238;-.10702167;-1.5548745;.9888742;-.35779554;.95822752;-.070368767;.0016262997;.21314348;1.9754485;.047361273;-1.83322;-.52924341;-.96008903;.32810119;-.50892055;.3951253;2.6024644;1.0414318;-2.469717;1.2093167;.9054665;-1.0508777;.55699587;-.38834158;-.11758959;.28367293;-.67321908;-.052398115;1.0074775;.53627533;-.379125;-.47680491;1.3798437;-1.6116283;-.23095226;-.14990032;.46992147;.4820163;3.6970294;.98857176;1.4878513;3.836051;2.4837468;1.2279968;1.0328258;-.75903463;4.1483908;5.0915141;2.1098261;3.3417778;2.0886397;2.7681034;4.523448;5.1876154;.87598294;2.4354613;3.8864386;1.9447725;2.5886145;2.4665337;.81777722;4.8680863;-.35137367;1.1863933;6.6052332;1.9651072;3.0378187;.58728832;-.93472612;.51442677;6.5486202;1.4560801;4.4186029;2.0647123;-2.1130962;1.7065202;.11008502;1.0683883;.16511004;1.3991076;3.8176055;5.8876162;3.0922146;3.0421195;.64847296;-2.7186799;1.0769905;1.2739946;.80032271;-2.5643022;.56674141;-1.3592765;.028011717;-.98260701;-.76608121;1.0289557;-.35483763;-.88165867;-1.6565156;-2.1447361;-.71907365;-.97055107;.1755511;.19729367;-.14169213;.58989906;-1.5326679;.11975951;.056925256;-1.674585;-1.3955311;-.11655925;.61807793;.1972186;-.51609111;.016952049;3.4081383;.41551232;-1.1805754;1.9565481;1.6715593;-2.3181973;.29622659;-.391552;-.12002627;1.8418107;-1.856292;.78179485;-1.4314706;-.093831584;-1.4401973;-.050799794;1.8317431;-1.937058;1.0724794;1.6953619;-.44939491;.33594984;2.1949146;-.79252708;3.0966551;.66373992;1.3451303;.96190482;-.25373411;-.486442;4.5024824;3.584024;1.6271846;.86907679;-.30547148;3.0324147;3.1759491;4.3234696;1.4874151;2.9034188;2.4028242;.87952167;1.7803957;3.2926776;.63029516;4.6753254;.2565909;-1.4475704;4.7754779;1.7385451;3.0529706;.56223232;-1.5734674;.62823331;3.335809;.62022316;2.9427514;2.3764119;-.68393016;-.17564286;.15802971;1.1865858;-1.1942625;.53884029;2.6243677;4.3537369;2.191633;3.0176322;-.59075719;-2.2401342;1.3796751;.17538504;47.912949 +-.14900775;-1.9825431;-.80555022;.26659486;-.36061454;.60317713;.081962891;-1.3016158;-.26617122;-.59151411;.54002291;.15194826;-1.0429362;-.72125179;.74313116;2.1067843;.4003447;.63264412;-.42611173;-.43290651;1.0295088;1.4349725;-.18767658;.84982628;-2.5175171;-.42050341;-1.5736257;-.13479428;-.61736417;.44904587;-2.0480995;-.54154193;.72736442;.65694624;.17239121;1.6562467;.13525468;-.57190436;2.4276304;1.6348842;1.8261286;-.079731964;2.4254045;.24870493;.34822303;.2511526;.18687011;-.26744166;1.160733;1.5838081;1.1424901;.16446221;1.6366173;4.5800142;.79647291;4.1196213;3.1780839;3.5162656;3.3864765;4.8182926;.46570387;1.4856375;4.0089264;1.7725866;.97162396;-1.4780304;4.2798033;.40967849;.61464614;3.1568131;-1.8717381;2.7944832;-.56943238;.69077611;4.7874503;2.7875834;.8800478;3.3960698;1.6853459;-3.2266955;-.36015764;4.9395418;1.6449933;3.129215;-.72900003;-.3297933;1.8793544;2.9182243;3.0677073;.25823864;1.6247653;4.350512;2.1494505;4.833096;-.20018435;-.41730368;4.0627875;1.2737137;-.80275607;-.1699124;-.45689556;-3.4923398;-1.8207569;.14990437;-.72773141;.58506155;1.0178275;1.0961143;-.39635345;-.86919999;-.33885324;-.24834473;-.36169523;-2.3012209;-1.011017;2.3777735;.15110382;2.1558831;-.47341704;-1.142004;2.1856713;1.4696609;-.13592815;.47851521;-.40304604;-1.3182112;-3.8429112;-1.0299766;-.7123487;.92835832;-3.1762865;-.92067307;1.7594901;-.44744405;.78381962;-.018776255;.19165769;-.15873481;2.3132117;2.5741994;1.2648854;-.13193987;1.1540612;.27725944;1.2775476;.019208714;.69769174;-1.7545294;-.073588833;1.6577734;-.12499983;1.9590131;.1603526;4.3254118;1.5401962;2.754931;1.9939747;3.8186429;1.7990013;2.4031394;.9199782;.016043581;2.773829;4.0175056;1.189827;-3.0326719;2.8901396;.50397915;-1.5511745;1.4306591;-2.2472093;3.6995635;.32889763;-.082665704;2.5438483;2.7549992;-1.1451709;2.3965409;-.15003651;-2.5934343;-.12185949;3.2806106;.41944817;2.2635987;-1.6447792;-1.0763638;1.3797801;4.2455664;3.0054915;.23232466;1.2480335;3.4232597;2.3298068;3.5008132;1.2532412;.009476413;2.3484061;2.5584099;-1.6296074;.62935919;43.808392 +-2.4575748;.39458469;.37969413;-2.3669035;-2.0956943;.018959295;.67049986;-.28432745;-.64842772;.13885073;-.8798216;-.4877449;.088793166;-.99557847;-.20984335;1.0477805;.96537417;-1.0050341;.36220977;-.44866627;-1.0696318;.83535188;.95473117;.27563909;-.39638543;-.64904833;-.023331387;-1.2911056;-.97558677;.67491239;.32947093;-.23508728;.41047907;.88200277;-2.3973296;-1.6958318;.52014607;-.045275152;.066564202;1.4422241;.71759319;.050085574;-.2886329;.29355866;.88480097;.074633121;-.024257258;.51971811;.26291144;-.51476079;.50420839;-.25137717;1.8794668;.90677738;3.103771;.34113738;1.4975045;3.10638;3.9093723;-1.0024974;1.6284438;1.4492228;-.76899141;2.0046358;3.4169805;1.8827293;-.12183795;3.54125;-.68782949;1.2735753;2.3310478;-.11005503;4.4141941;.96286279;6.0198884;-.37917089;.79460353;1.7111566;1.7533576;1.5915871;3.446188;2.844058;1.6084816;2.9509051;-2.8256054;1.997923;3.6429617;5.0562482;2.3964069;-3.9432116;1.2952187;1.8218993;1.4029794;5.969224;3.8550744;2.8132181;1.2156715;2.4221396;4.6783071;2.7459226;-.98951274;-.53201759;1.0335557;-1.3478963;-1.8872322;-.83104503;.99948561;2.1613741;-1.9950709;.50818181;.24949247;-1.4355024;-.53099054;-1.2819933;-.046316087;1.7593454;1.3853381;.44046327;-.69262052;.83339882;-.085434832;1.0880204;2.0582979;-.66766751;-.65587789;-.86966228;-1.1270719;-1.9902897;-1.997313;-.509736;1.0746901;-.29103863;1.0337269;-.4963367;-.84352112;-2.1608663;-2.153686;-.68514067;1.2590029;.36652389;.47096333;-.92199922;.87254137;.9478358;.19408342;.68759269;.27008459;.84832191;.73831367;-1.8111142;-.4198609;.46230942;1.9880332;.71362883;1.6780468;-.080247536;1.7660666;1.8103687;2.9481461;-1.9516642;.28997859;1.0675869;-1.0347174;.69493687;4.9061809;1.4312088;-.44304785;1.0840695;.64217865;-.12424095;1.8426433;-1.2996117;2.2554734;1.5375195;1.4719778;-.76847237;1.3549507;-.07701394;.18228577;1.4069508;2.4832873;1.7483315;.3210479;1.1321549;-1.5264966;2.2423885;1.8740207;3.0282302;2.2369897;-2.6135039;1.516405;1.3752086;.32726601;5.3343115;3.0494752;2.981564;3.0751896;1.6771049;1.5163665;3.9654932;43.69207 +-.89643854;-.19957246;.98755431;-1.3133029;1.8856726;-.88179862;-1.1003344;1.8764998;-.82473218;.84718412;-2.1245906;1.8072268;-.053366352;1.0559771;.53853971;.23226209;-.14318125;1.0088795;1.1685548;.26080608;-.21540153;.67885906;-1.50423;-.8721379;1.0928364;-.85648686;-.96314806;-.985291;-2.2981758;.4011524;.13489951;.21109253;-.1086186;-1.9804238;-.74870533;.15263262;.95674574;-.7396118;-1.4611475;1.3274931;-1.7983317;.22916333;-.8364566;-2.054013;.55658901;-1.1013719;-.3734839;-.95770305;.0020979925;.10170304;2.4191558;4.379252;3.1583076;1.4083834;-.59668505;-2.4848783;2.9316134;2.3165963;1.5527815;3.0274332;-.10785315;2.4468381;5.3919554;3.2419233;5.0725579;1.63205;-1.1793939;1.6004983;2.678755;-.43970999;3.4586585;6.325171;.59682333;-.17951027;2.7364278;3.4246228;2.365339;-3.2847555;1.0530797;4.2091703;.81474864;3.8660448;3.5275412;1.3340286;2.2615905;3.527369;.95353723;1.7572911;2.7474651;2.0154297;.39046556;7.035512;2.2241817;3.7435489;-.011319558;1.7504131;4.7669473;2.4452324;2.7831993;2.3757203;-.58257884;.1122639;1.9661627;-.24416457;-.2663345;.40817097;-1.5177345;-.33586386;1.1701514;1.5318002;-3.8411667;2.0161633;-.023540089;.18474427;-1.2488588;1.3399148;1.7988757;1.1459502;.0081981085;2.0745935;-1.9141154;.20448241;-2.0456915;-1.9537184;.76884413;-.12050502;.54485536;.13298878;.47474021;-.97748488;.59131265;1.0006032;-.56713074;-2.630533;-1.5539434;.88736755;-.54649043;-2.5786107;-.82266062;1.4166988;-1.1502514;1.6854122;-1.8498515;-1.6055511;.030992106;-1.2030433;.032179907;.1667667;-.55948484;1.7984619;1.8230742;4.5008736;3.4393852;2.5038023;-1.0813718;-1.3495924;2.1799266;.72016466;1.8063722;2.1054635;-.57006395;.65850288;4.4240007;2.3187215;5.3961697;1.875771;-.1102821;.35612246;4.1759262;.29084581;2.9558253;3.6079161;-.34287053;.42976254;1.8370459;1.2432711;2.3594193;-1.7491574;.67065084;4.163424;.37718543;2.6262679;2.8007267;2.0653303;1.628908;4.455287;.90664876;.54451662;2.3447871;.78671497;.51796603;4.6249886;.73391086;3.2943013;1.8807406;1.5161496;2.9948385;1.1390016;3.667805;3.4108703;50.110516 +.3395507;.14106302;-.29880595;-.82116616;-.7619949;-.061465584;.81712741;-1.061263;-.77322811;.54030788;1.4097792;.25250965;-.11870795;.53421688;.90814346;.72236449;.97473919;.34427723;-.2486928;-.70583069;1.5228274;1.2936302;.67229772;-2.5891993;-1.0974269;.77832425;1.8491763;.17512631;-1.1312569;.41112474;-.54324931;.81055784;-.57528836;.43434364;-.45911369;.47866362;-.8272503;.12239003;.16466342;.15343036;.070449382;-.44513252;.96268445;-.84082562;-1.810405;.80178261;.31228703;2.3049827;-.61418676;-1.002268;1.5565126;2.8450861;-.85345668;1.9175684;2.6259954;2.8526397;3.9410064;1.586964;4.5131116;2.4954603;.14779146;5.5285692;3.5618851;1.2453736;-3.7479885;3.5854175;2.7224205;-.42909804;.25445491;4.4028759;3.4192748;4.4933548;.023925237;4.2143488;3.1777716;1.5285788;2.9743593;1.4223934;1.6632224;3.3386147;-1.2754422;3.447614;-2.2649233;1.0334239;-.90037423;2.1798549;4.828711;.055930912;.94581634;2.1764297;2.3694804;2.7029166;4.4072146;4.7098989;1.1445053;-1.1382754;4.6697617;7.6753526;-.29782978;.097406916;.32940856;1.2332686;1.3416431;.44486961;-1.7005507;-.075366803;.79575741;.98305541;-.24587916;-.28894654;-.012443146;-.99355119;-.61322898;.84417343;2.0466025;-.35604843;1.5593858;.70459259;-1.0582347;1.0684659;.6082145;1.5818276;1.8713605;-1.230968;-.42630556;.73816031;1.9063581;1.660748;-.93748838;.92766315;-1.6529913;-.29782853;-.37760779;1.6014066;1.2010016;.036276311;-.48723543;.6933977;1.9508179;.21594852;-.0074970354;.32244954;.25602487;-1.0333654;-1.495262;1.9993132;.31425589;2.3629894;-1.0705748;-1.7040812;.56416303;1.2964619;-.55732167;1.5200667;2.02724;2.9381909;1.8387549;.16370042;3.9820993;1.9380167;.97735065;6.1944218;2.4320936;.9418748;-1.898989;1.9138578;1.2749062;-.88872516;.19996189;2.0754001;2.6225183;4.0242047;1.6463176;1.7411551;1.1366373;1.5353643;2.0841007;1.3152002;-.10952988;2.9167426;-1.4655689;.74742103;-1.6505444;-.41717744;.31838849;.22085088;4.7259269;-.84720737;.73159981;1.6648935;3.6942797;1.5818909;3.9587948;4.4902997;-.96413797;-2.070487;2.8628938;4.7972584;-.14917985;.36654997;55.669594 +1.1555163;.026136354;-.72394758;-.50596702;-.070994742;.89655298;.043755703;-1.2609818;-.25786218;.66796643;.73589218;-.66504669;.75469089;-.75802606;.55605042;1.2342436;1.2947613;1.307255;1.3138072;-1.0565521;.31606206;.84559864;-1.0631636;-.012495232;-1.019715;.32962775;1.4834123;-.34250823;-.0064140088;-.32543433;.19021483;.64382994;1.5332407;-.13462554;.16929772;-.99391961;-.2871092;-.98007733;1.6596367;-.43809971;.97044051;-2.0310528;-1.4812615;-1.6923712;-1.3554063;.29479384;-.29068968;-1.2215693;-2.4346516;1.816493;1.4045569;1.8735017;.21529223;2.2663631;7.2948508;.67142481;6.4124918;-.42629284;2.1594183;1.5525894;2.0033045;1.0497199;2.9945314;1.4800355;3.6568513;4.3011808;2.8678617;1.9988232;-.29351899;5.0410266;4.5080929;.95252138;.88179159;2.5888729;.58648151;5.5849681;.65611929;2.3990197;-.71096009;2.3960891;.22699945;2.3316767;3.0701957;1.2582307;-.10997518;.33899558;2.6696711;-.56606263;-.41721529;1.8854995;.26586273;2.0990541;3.6347022;-.0099284081;-.085501999;2.8230121;1.4819957;-1.2357962;2.5275738;2.504796;-1.521191;1.7885499;-.67014402;-.47214973;.10936788;-.20146549;1.7056351;-.98847651;-1.647154;.26650995;.46801406;.32532212;-.38965997;-.96080804;-.16631466;1.3681774;1.3892851;.83818489;1.1374528;-.34830114;.32182407;-.50289744;-.75334775;-1.6740355;-1.8574407;1.18409;-.032554325;-.3538315;.32725021;-1.1083854;-.20409961;1.0167196;1.3136071;-.42555571;1.9599471;.010280028;-1.4882846;-3.3522396;-.25180843;-.39237469;.61596876;-1.5303965;-.50313711;-2.9621835;1.1136397;-.084589757;-.87599289;-1.5282695;-1.9118866;.96681052;.98830646;1.9398236;.28408414;1.2043569;5.7184448;1.1776987;3.202107;2.2281981;-.021675747;-.031904317;.6139738;3.1179135;1.9323626;1.0644616;1.2939546;4.1688561;3.246048;2.0089669;-.75979704;3.0096018;4.0432262;1.9177943;.15661614;1.0236092;.037000272;4.0161653;-.10476542;1.5588641;-.086326934;3.0728176;1.5534019;2.5563538;2.6923823;3.4380784;.25723726;.034977783;1.5907791;-.61552936;-.33864874;2.8630486;1.361541;.6871419;.6564464;.19720823;-.4652583;1.5190119;.31609747;-1.8784244;3.6855464;2.0811472;39.420448 +-.92749977;.084377043;-1.3019612;1.5250553;-.58449721;-.44247603;-.68550241;-.00048886536;.024217071;.083788514;.32974946;-.58531493;-.87567991;.16778739;2.6221511;-.63990998;.32740447;.54032975;-.073364906;.50457776;1.0332588;-.11411252;-.24637842;.34920478;2.9301808;.62088948;-.76568502;.62111789;-2.0977082;-.34151703;-1.2794429;.32314956;.15915097;-.89170986;.96734947;-.29709828;-.64484489;.43768623;.65142125;-.89367211;.58916253;1.4736093;1.9858121;-.97994238;1.1538146;-1.5711758;.17584547;.029980501;-1.562143;-2.239995;-1.93001;2.1948116;-2.5912819;3.0584667;-.39359552;2.7468731;1.5179598;-1.2193097;-2.6882598;-1.9535341;2.0505514;-.25170413;1.6692922;.62004042;5.0415411;2.3033824;-.20680244;-.73405945;1.7744622;2.1150255;2.6697335;.90248555;-.19931954;1.8151069;-.77649134;2.2486057;.77391177;1.652162;2.0115056;1.0081666;.14722569;1.1114719;6.5117335;3.2975543;3.4328284;5.128787;3.5508265;4.1432853;1.6163988;2.0601318;.5167349;4.6946173;1.6341406;3.0686979;.68903053;2.3797188;2.1317134;.32652026;5.744596;1.4842136;-.23261081;.54073238;-1.6634647;.76513141;-1.8970602;-.19698797;-.91926694;1.514411;1.2267822;.10492948;.27344203;.014519663;-.17060466;-.16574278;1.4514618;-.86238325;.1248324;.053769488;-.2933535;1.294302;-2.1071308;.21733958;-2.5477014;.097737305;1.7745354;1.2077521;-.61884379;1.8653777;-.66365629;-.047706883;.034893278;-.99414206;-.42351663;1.1785376;-.081909209;-.14682756;-1.4601064;.70836151;.85321707;-1.9638013;-.11231385;.22003427;-2.7307343;.69794911;1.0304199;-1.4707017;-1.4073375;1.0622277;-.13287987;.078518428;-3.3172038;2.603842;-3.6967344;1.7804583;-.32418409;3.0143652;2.6782813;.015412299;-1.1985917;-.88878942;.63237858;-1.8779923;-1.0129144;-.1970316;3.2794383;4.19947;1.604565;-.60285538;.50511324;1.3549681;2.4800832;1.5215023;.13682421;-.34431323;1.0128043;.97018701;.70618767;.79216564;1.4575118;.39141572;-.3007448;-.92919987;4.37362;2.7672458;.60970205;2.7192948;2.8010025;2.1235352;2.1564736;2.5146549;.73890108;3.6460052;.81114548;2.4146488;-.61341697;3.4271085;1.2393607;1.6029785;6.2467113;.33549252;36.862446 +-.57814652;1.0227215;.97258878;-1.7315366;-.55203396;-1.0098315;.63260448;-.81128836;-.13851869;-.87087941;-1.2794491;.81504083;.33947095;-.92005479;.13480659;.22530113;1.2941328;-1.0429513;-.44236597;-.33871737;-.16560467;-1.0422796;.67450458;-.085167848;.8114574;-1.2652794;1.0505621;-1.1010315;.055194411;-.0065611834;.15978873;1.206547;.9756729;.27078694;-.7270025;-.22004214;1.0007569;-1.0742432;1.1346533;-.084051766;-.44641995;.22337748;.72713298;-.19209832;.79454112;-.5623489;-1.7269084;-.016164036;2.3105545;-.15471025;1.0968277;3.3690839;3.0600493;2.9596241;3.5933981;2.7450614;-.52954656;-1.2460749;.96552813;4.5778441;3.0757232;4.3487883;2.3418972;-1.0415417;2.7026875;-.3127324;4.5137277;1.9157203;4.4791913;2.036459;-.54195547;3.712446;3.7892621;.38042617;4.8760672;4.3806486;2.1348393;2.9509213;-2.2266631;-.34666178;1.6124462;5.479291;2.1439936;2.0240009;2.8623195;3.3594811;-.97805279;4.4416108;2.9489951;1.6777086;5.8602238;4.3521667;2.6816702;-.94337511;2.7877569;4.8485084;4.1710339;3.7225716;4.1912632;-.43241477;-.47479758;.47072351;1.9398662;-1.3360648;-.1230185;-1.0596859;-1.3348678;-1.6526073;-.69892514;.67585337;-.81063575;.49075189;.8596108;-.28811419;.842565;-.61034268;1.5399462;-.60228807;-1.9346936;-1.879771;-1.5404477;-1.1105003;.18226877;-.27453196;1.6411953;-1.4713752;.62952006;-.51245296;-1.8435038;.26278892;-.032637645;1.4408243;1.5155514;-.22023369;-.35553575;-1.2803433;.80629843;-.2411088;.69905359;-.29614091;-.65715021;.049511991;2.1595159;-1.720397;.76000351;.32309049;.80700862;1.4773604;1.0980271;-.11935421;.85678196;1.3153613;2.1999278;1.1024082;1.2134243;-.091111079;-.86840165;.018000204;-.33558986;3.2545412;3.4755898;2.3864899;1.5801382;.6332587;.47000146;1.2374784;4.3102403;2.8508768;.67437178;.081065014;-1.5612515;3.7408257;2.4417801;-.82171214;4.7358847;2.3063314;1.6066133;2.4452686;-.76459944;-2.0325477;.64083129;4.228951;-.70454532;1.4656792;1.2497274;1.1069466;-.25239557;.71178418;2.219763;2.0065341;4.5003161;2.8709311;1.970317;-.10836886;.77157962;4.4093938;2.9136758;2.9851806;3.5882907;.051483933;61.665424 +.40405446;-1.0706599;.6438548;.55352354;.73706895;-.44372517;-.085885316;.13595194;.094091624;.60194892;-.25208402;.89316916;-.074798308;-.43262452;.68130249;-1.3999444;-.95542264;-1.276897;-.44635928;-.10722107;.36280429;-.57001269;.10340504;1.1379479;.71463788;.76340407;-1.231698;-.87696284;-1.1346184;-.83069384;.24242526;-.24361961;.89500004;-.87397373;1.6309034;-2.2426286;1.710615;-.12918997;.2542637;.17270933;-1.5828329;-.90011835;-1.9538878;-.015317037;.71194696;.59049755;.044332571;-.90716439;-.391864;-.64773339;-.21151403;3.925339;3.0354805;4.5228252;2.4873428;1.8949326;.51418734;1.6461797;.27979022;.46753675;-.3826662;.60445994;3.6518664;.48700464;-1.0248725;3.2351646;4.2709079;.33908758;1.5166373;-1.2575294;4.6642551;1.2173073;6.0784688;3.965014;1.5285809;-.046333868;1.0981768;-1.1156301;.55180377;4.1695094;-1.018127;2.5548356;1.9032288;1.0102412;4.1832924;-2.2737386;5.7854128;1.0332513;4.0492811;1.3491411;1.3836479;4.1460447;1.5168718;3.5142078;2.4741182;2.5126669;1.2327168;3.1131434;1.7741605;3.9079247;1.817003;-1.5094695;.90926111;1.4478705;.29854029;.70290917;-.06198344;-1.2549255;.9097985;-.47985673;-.059799355;.07791058;-1.0156382;1.0946099;.078831293;-.10367925;-.60856897;-1.0049165;1.4711342;1.3566722;-.83161283;-1.2129822;1.6662484;2.549238;2.5800521;2.5039201;-.44899842;-.52114749;-.68628055;-.12010509;1.9727426;-1.3718513;.93276;-.30235395;1.7123662;-2.411531;.82114422;.6482743;-1.8858012;-.13662142;.14514294;-.87268037;-2.7580206;.36450967;-.09610191;.40793598;.2792086;.94904584;1.2820734;-.10335821;.13377064;1.2939963;1.2360487;2.6395919;2.684464;.59362185;-.38882589;1.7091581;-.58411413;.53990376;-.25300214;1.2052662;3.9508691;2.1822796;-.13285995;2.2381768;1.6227243;1.246081;.86319953;-2.1566672;2.4519787;.3826907;3.1381094;2.1511796;.42407945;.72622114;.77612239;-.44261187;-.10355735;3.7544806;-2.5177526;1.4618605;2.5270045;.95165908;1.914452;-1.0243399;3.6892276;-.10960538;3.3551364;-.09933506;1.6500161;3.3161047;4.2718034;1.7448537;1.6242956;1.5124439;.041105889;3.5594499;1.4189847;2.6830921;42.43848 +-1.2942981;-.35969755;-.23655377;-.1662467;-.4992809;-.4893201;.16828939;-1.2165424;.37852743;-1.1388929;.45410711;-.75071591;1.6501703;-.27248719;-1.3065439;-1.5179604;-.73904306;1.6132087;-.94413632;.18966822;.63671887;1.5709785;-.76081038;-.21169114;-2.7154713;.35004735;1.3865805;-.97228545;-.88240921;-.65619886;-1.442297;-.31672543;.76339245;-1.4200802;1.0797855;3.0181773;-2.0627813;-1.877445;-.57900214;-1.093375;1.3485725;.59807062;-1.2255167;.4837347;-1.65289;.47114706;2.3037014;1.3971974;1.1222647;-1.7153947;.094962396;1.7884866;3.2083776;.034473862;4.9017882;1.8694679;-.40176988;-1.6556356;-.86574233;1.7231069;6.0163441;3.0550768;3.4614806;.12974782;1.8863925;4.028008;1.0479294;1.6742004;4.1528931;-2.1097765;4.1918464;2.1708653;.37772793;.71666473;1.9350044;-.97197455;2.3539791;6.9627438;3.0201035;2.2357476;2.7160065;3.1292419;-1.480655;2.4745483;-.34373796;.65795398;3.9891832;2.9726608;1.6451845;3.5407231;2.4209969;4.0292215;1.1830432;2.5417473;3.1265743;2.1025906;.62501252;3.1562357;1.875995;3.0871189;-2.2681334;.10125224;.72364116;.76039827;-.30797616;-1.5806814;-.48072863;-1.492829;.63503593;-2.3336251;-.99207628;-1.0471282;1.8134946;-.65722442;-1.5638897;-.83467442;-.78442335;-.041656233;-1.9008825;.48392025;1.1607702;.10333806;-1.901719;-.96115303;-1.5650704;-.67348021;.56234914;-2.3774762;.96449119;-.88017625;-2.782083;.45866153;.67026812;-1.4708941;-.67313176;2.7612944;-.15150467;-.89938223;.71111542;-.36373544;1.1699289;1.571213;-.82350302;-1.2450783;-4.8576608;-1.0866832;2.3900754;3.0611963;1.9583784;-.34420428;-.10575762;.32603216;1.7868694;-.076408178;4.1204934;1.0736635;-1.2105614;-2.9340758;-1.582273;3.4491158;3.668797;.64600718;3.6094587;-.58031136;.64527494;2.7331927;2.4954934;1.2626772;1.6179466;-.46607137;1.4904964;1.3538849;.082231231;1.0182621;1.3907764;-1.1320523;.87886053;5.0057116;1.3645558;1.5297333;1.1757995;1.2867543;.1243149;2.2075536;.693551;-.47530866;4.4032855;2.1769907;.58921742;3.8524017;2.3399606;3.4138381;-.069635659;-.36953813;2.051877;-.68497396;-.023005147;3.2924817;2.3478296;.098592371;42.364574 +.73638976;1.9683124;.37951967;-.38630706;.232554;-.98326117;-.39797339;-.2172713;.13559915;-.49461126;-.39315078;.20319724;.055702876;1.5125314;-1.2432028;1.251407;-.28164431;-.45970675;-.8194626;.53122932;.44479063;.61237609;-.70712602;.40072817;.64722896;.5853855;.35799137;.23209602;-.38835368;1.367782;-.59693426;-1.0364032;-1.3405179;.59224397;-.19052392;-.13018341;-.12065617;-1.9947255;-.37662491;-1.2121195;-.34001213;-.36229855;.20189002;.60863554;.51507604;-1.036725;-.5339734;-.14192681;-.51040524;-.3938022;3.6749022;-.74785966;3.7737474;-.45786327;2.71257;5.9676657;1.4631028;-1.3454666;-.2823624;1.0001324;3.2220321;-.63374805;4.2070708;.73952752;.18527293;1.021418;5.8624206;-1.0248878;2.0446994;5.4059277;3.0798585;.23201178;2.7711661;3.8502378;1.809576;.87999266;2.0469112;2.4242301;2.974829;-.72878075;3.9867814;3.8517168;2.9944448;1.7460386;3.2854488;1.9039311;.97437274;1.5467675;5.3379445;4.366116;-3.5819783;.091480628;2.3489788;1.2470939;-.90952849;.97496074;5.9350133;3.3369486;2.9149008;1.7806914;.29727927;-.19063284;.76687056;-.84783906;.87703043;1.8019428;-1.0147077;.91185677;.3033745;-.9313063;1.1096835;-.18031326;-.864236;1.6058619;-.88595152;.31344932;-.59266096;-1.654691;-1.0770466;.71960413;-.26296929;-.52525163;.18618655;-.56137443;.7298426;-.24464118;-.98276347;.63336217;.79561239;.74520373;-1.2917378;-.56386769;-1.1128268;.78456658;-2.2741477;-3.4360487;.91513956;-1.4961827;.69064558;-.85219431;-.41781044;-1.2645836;.52094626;.72177607;.41460204;1.1529568;.47558638;.20016775;.78635067;-.34689799;4.5813413;-2.0627334;2.9426506;-1.8635234;1.6066486;2.3074403;1.0238491;-1.0627269;-.83141577;1.3566473;2.8167994;-1.0203025;4.0281992;1.0306571;-.3298938;1.3122871;3.6801703;.31638125;.05936661;3.9365153;3.0786655;1.129573;1.5474691;4.5896807;1.1649628;-1.6392845;1.2358476;2.6821513;4.2042747;-.70511514;4.7317286;1.2505269;1.3953342;2.0817869;.48289573;.18883371;-.77673942;.35509008;4.9816613;2.5270839;-1.7679138;-2.8919756;.36204773;2.2792406;-1.5322635;.57451504;4.4412847;1.3084403;1.1177323;1.0983648;50.956676 +-.44063646;-1.0849774;.58326417;-.46746024;1.282704;-1.6892196;1.0870272;-1.2661611;.22416362;-1.267589;.53451806;.1075685;.45320421;-.48950309;-.78344452;-1.1387628;-.48742849;-.89444596;-.011169625;.11880717;1.4020218;2.2267339;-1.3460578;-2.1264646;-1.4608085;.47604272;2.359761;.74698818;.71051496;.095284387;-.22084956;-.25358373;1.028506;-2.3337729;-.05639575;-.32104796;1.1214458;1.6736466;-.42098331;.2700223;1.3234886;2.6472743;.011670579;.47502875;.901393;-.61083937;-.47088704;.72728264;.29705295;1.0369166;4.1028552;-.1123923;2.3900898;1.7304326;3.0777113;4.1366758;-.062063031;-.62686956;-1.5376722;3.0545461;3.013993;5.4286737;2.4531283;4.3993478;3.848016;2.4458265;-.37179035;5.0426016;2.4249136;4.404511;3.4719546;-.069414578;4.3389826;.34844306;.74855524;1.4634179;1.0794299;6.2352161;1.4054943;3.2178311;3.818357;1.5121129;-.8444044;6.1360707;-.059192088;3.4377952;-.47671345;1.158679;-.51348478;1.1594833;3.1696577;2.0216558;3.7013905;.51024508;3.6839449;2.410568;3.3297114;4.0564804;1.0627668;3.4692113;2.2882316;-1.6350722;.37902722;-.63702518;.2408103;-1.4718716;.77130598;-1.1949304;-.49778083;.7699644;1.5551757;-.97826856;.035002399;.51247656;.23701511;-2.3962581;1.3750348;-.44439051;-1.5429839;-1.3306503;-.53838378;1.6644081;.10516655;-.9334355;.62334996;-2.2782776;.37761343;3.6853852;.43302065;1.3746141;.2162037;.02909972;.11713839;-1.3918135;-.23153551;.15693201;1.1695827;1.3601091;.35608122;-1.2333291;.20228481;1.7238067;-1.2488495;.22783551;.79904819;.23082244;-.75829548;.83026552;1.938323;2.4898369;2.0372858;1.4874728;1.7535659;.39228341;-.098467194;2.7292471;.95859677;-.86448109;-1.4661227;.67061675;1.8045169;3.6951904;1.4177639;4.3661585;5.108706;.22936738;-.45608652;4.4380293;-.61914337;3.5001497;2.8753257;-.53850669;3.7403486;-1.0845809;1.0815237;3.0083861;.29174218;3.2903633;1.4705567;3.0586755;2.124907;1.147392;-1.5153025;5.2093697;-.096949853;1.6930813;.34222737;.34858695;.92393708;1.6285297;4.8702173;1.5445508;2.6494827;1.3464072;1.8098274;1.1033589;1.2377228;1.5972629;.515306;4.7069449;61.082047 +-.25788113;.62994349;-.69099951;-.14127751;-.20746677;.34782001;.039126128;-1.8221064;1.2504708;-.90410089;-.63967913;-.6750052;-.056706786;-.074137263;.65855628;-.91613984;-.44774121;.59532869;1.7022538;.73850685;-.25301948;.70900196;-1.5713717;1.642011;.56912178;.46894127;.1549696;.61508715;-.3198081;-.37568304;.45362237;-1.2860218;.20348881;-.2575849;.072169833;-.18062936;.91204244;.14368001;-.30889353;.96409124;-.58244205;.09731631;-.88393319;-.3060509;.68262422;.462495;-1.210762;1.2770079;.96973819;.40191519;-.32489866;3.0177977;6.1794481;-.67005676;3.2395864;1.5101217;.71612799;2.6081049;4.6423373;.70280504;2.755193;1.2789561;2.5120704;2.1185095;4.2818832;.54256183;2.104636;5.0738955;2.9573379;3.6062326;4.4693856;1.3556434;3.3312464;.081939019;1.9754913;1.9081002;.78635132;-1.6608796;-.33567652;.82134658;4.6161056;2.1311817;5.5692778;-.55553252;3.2185857;3.237035;2.63203;-.3282437;-.97662336;1.1684661;2.5183928;1.044312;.96727401;.13761726;2.574693;2.6820238;4.6613088;6.3058343;2.5987875;1.9452137;-.70244521;-1.2658621;-.24150889;2.415473;-.43551508;1.7153115;-1.0753354;-2.4199474;.49902347;-.73163843;1.1889881;.19160891;-1.1034433;.53685272;.24033959;-2.2889843;-1.3868417;-.89582324;1.086295;-.067747846;-1.449175;.69146603;-1.4345324;1.3814427;.28267643;.010733798;-.36170414;.71484601;.51974827;-1.0726616;.73065537;-1.6251318;.83652824;1.93528;-.57738358;1.130855;1.9622055;-.88396496;1.3113241;.30187771;-1.2403803;.45938981;-1.9702883;-1.1083302;1.230697;-.027365129;-1.3485417;1.0681047;.62168121;2.5669844;-.46148878;2.0102997;5.5142126;-2.3039188;1.6981589;1.9140105;-.021470621;3.8307269;5.6423922;1.7744895;3.1521318;2.334481;.64486754;1.0373443;1.6520478;1.0237824;1.7925421;4.8588371;1.8246766;2.3368981;2.9037039;.55228943;1.9337276;-1.4201785;2.4170361;2.2949076;2.0206926;.024074595;-.61133921;.67911279;2.4374359;1.7692717;5.0238233;-.8019076;1.6594987;2.0441284;1.141686;-1.5907015;-1.0172911;.11863796;2.5456846;1.2891927;1.0047503;-2.0721576;-.053447906;2.6439424;3.5925753;4.0530453;.24562885;2.3488121;57.678638 +-1.087526;.51306093;-.960482;-.0020489364;-1.3579884;1.7574588;-.44413367;-.27169618;-.29068008;.019769475;-.54142374;.44049138;.06005352;-.23617709;1.062915;.087810628;-.23552769;1.0996349;.37654531;-.37513772;.62617445;.13851216;-.40855613;-.63270575;-.77689725;-.14741556;-.22983298;-.33771238;.21867807;1.0461473;.37799147;2.0791943;-.55792665;-.18944101;-.073177509;2.1853282;-.63117647;2.2501705;.75050551;-1.5647576;-2.3732791;-1.6478881;-.091042824;.74139273;1.0925506;.67823976;-.24087784;.13740051;.054025028;.5063594;4.9837728;.6190421;1.3379763;-.36600146;7.1776357;-.71823525;5.1496916;2.903374;.30746466;5.1043797;2.2389541;2.2720928;4.2160611;2.9033895;2.7601557;2.8906419;4.0190086;-1.6563429;2.9498284;1.0485452;3.2232506;6.0164609;.63618231;4.3573394;3.1837285;3.0801601;.37169129;1.0944502;2.2150016;3.0836997;4.7553649;1.9558884;2.1996236;3.422359;2.1933472;3.1981413;4.8123403;-1.3839079;-1.2322472;3.8098011;.87263244;3.0875852;1.7515343;2.0704107;3.7950857;4.0567107;1.1942294;1.3640885;2.7143166;-1.0703173;.30323473;.70497221;-.38673189;-.86077678;-1.3157109;1.7678063;-1.2163812;-.066415258;1.8832643;.7153213;1.1461788;.20955242;-1.0681218;.48137441;.31107023;-.47790617;.9715665;.67559373;-.58490413;-2.5309186;-.57461214;-.42507792;-.51396972;-1.1255016;-.33545247;-.36607462;-2.2614758;-1.0212597;.23174788;-.31257549;.46262243;1.6735314;.053447656;.12998119;-.17802347;2.2483888;-.037433904;2.6448441;.63026237;-2.1153336;-.34046838;.28940693;.48796675;-.14108527;.82280034;2.1633191;-.44591621;.14836918;.25578126;1.1971955;2.0581441;.80849493;-.24747871;.59143949;4.2515168;-.79968852;2.6792333;3.0491297;-.13952874;2.9735906;-.057736885;1.9001961;3.1036098;-.25385129;2.0917072;1.9558398;3.4259181;-1.9260021;3.3957853;-.27782926;2.9106793;4.8216419;1.137372;4.2507153;2.7793496;3.1872368;.54947877;.90830272;1.6636695;2.655962;3.0041199;.75611401;2.7514033;2.5846031;1.9709828;3.5638914;2.3999956;-.57771313;-2.1290658;2.6031067;1.2314153;1.9291239;.18401526;2.3667767;2.5208056;4.8639784;.10676742;.63321126;3.1351702;-.45067593;59.179539 +-.57476628;-1.0934976;.24020712;-1.4586376;-1.3669735;-.10654175;.046258613;.7120173;-3.049499;.57991475;.86554343;.31795564;-.18580928;1.6513693;-.50997996;.26747587;.65059286;-.078175053;.13327725;.7396552;.24291071;.67943555;.40881026;-.76333994;-.26232541;-.057208922;-.80646539;-.58280849;1.6077164;.84974414;-.80680549;-.065143272;.37492749;-.66264355;-.49132213;.7348938;-1.8511449;-.22610192;-1.4364941;-.28983638;-.22924341;.74001271;.97345155;.14072591;-.45245442;.08919362;-.65697265;-.078724533;-2.6879056;-.89751273;2.8820703;2.201874;2.8829479;1.7300956;7.4718995;1.7471689;.67772245;2.8646643;2.5643313;1.46877;4.3093119;3.059056;1.6872641;2.023504;2.9585159;.38329184;3.8470764;2.9362006;2.6637821;-.67224562;4.8815351;4.5061879;-1.2119877;3.0271146;2.4492204;1.554059;3.3416712;-.61504614;.49212748;3.6001372;4.3366508;5.1653399;4.6035795;4.6961555;1.1698575;.37107345;2.8099887;.18909734;.66217619;1.4630789;3.7297146;-1.2551428;4.8176842;3.0059431;3.7534671;1.82087;1.2104564;1.9945462;2.8665094;2.3305633;1.0670209;-2.3071606;-.022517269;-.87293518;-.072412528;-.13506445;-.66002148;-1.0691102;-2.3217893;-.48399636;-.40409407;-1.91241;.29114515;1.1823111;1.8585916;.28381354;.15376352;-.54161835;-.0020317056;-.97655916;1.7195334;-.57670391;-1.1446172;-.069186658;-1.0778776;.47409272;-1.7973658;.73567373;.9411304;-.009106922;-1.6106198;-1.763158;1.0136421;-.46650654;1.4442443;.295017;-.83970529;1.1864328;-2.4489312;-.50968254;.92967254;-.082252786;.55802757;-.86526555;-.46956262;.86319691;-.013514624;-.054740351;-3.3327293;-.33283883;3.0929873;-.4809992;1.9362657;2.4727857;4.1687632;1.1860957;.84001482;2.0719495;3.4521089;1.620101;4.6816392;1.7157383;.40336907;.94422257;1.5003821;1.6656613;3.2413626;2.8737402;1.6575058;-.86543328;3.3463802;2.5384121;-2.2283361;2.4007497;2.9564354;.75006706;2.9079766;.66419387;.84270209;4.7548995;3.3680365;4.1025467;4.5944448;3.809679;2.7403014;1.4982872;1.4220405;.70453954;2.3630085;1.6311762;4.0433068;-.57687908;3.076705;.99257505;.82458079;.6805672;1.2432222;1.329742;3.1639657;2.696718;60.473049 +-.52905232;-.15104809;1.3434604;-3.2706785;.95764947;.13906652;-.00097053224;-.45782444;.33860853;1.1117554;1.2153611;.6818772;-.050112128;-.96986437;.83516902;-.22771564;-.03785336;-.1342811;.1780533;-1.6497298;.69497567;-.80518228;-.73230797;.1489509;.28326848;.5433712;-1.2094976;1.5315796;.91546088;.10243959;-1.0410324;-2.4278085;.20810977;-.024089282;-.62286425;-.13733959;-.3248688;.45078686;.13010947;.92214096;.77707487;1.0741166;1.4801213;.39048165;.73029858;.89370084;.27168003;.7606793;.8143664;-.78432333;3.3578436;4.5227227;2.891289;1.8260589;.12800285;.6764282;3.1902947;.30753645;5.9480405;2.9057775;1.7826387;3.7362702;-1.0151237;2.5034575;1.4390473;.4467451;.4223856;3.1447136;3.128623;3.3572352;2.8337178;.68752539;1.6296782;2.3118844;2.2719622;.1669075;.76966703;5.2707777;2.4207504;-.013156962;3.0719862;3.7580895;3.3662674;.47906935;-.80723274;-.39321005;2.7091103;2.6169262;5.6010213;2.0276642;3.276612;4.2801561;-.39102784;5.250886;1.8252833;.47376028;1.6508232;.3338533;4.8496246;1.5417539;.31065038;-1.3446784;-.095350824;-2.9853847;.92578113;-1.1088459;-1.4147669;1.7692763;2.1454067;-.13719331;.64900517;.26832762;.16359627;.46839955;.65311313;.14600544;-.22448945;.37833419;.10621247;-1.5782909;-1.4707172;-2.3874881;-3.1271231;-.21313564;.50933421;-1.1673962;-.13336527;2.0613949;.77317125;-1.2047751;-.38267645;-2.5030308;1.1302235;.095171332;-.46096814;.35368019;-1.3962295;1.1616145;-.22407433;-.114978;.88665813;1.3927456;1.0664152;-1.0929644;-.53651941;-.88209558;.52537882;-.44163004;1.8548101;-.68508357;3.4090173;1.5144775;2.2598312;.95614523;.056061059;.94041258;3.3371644;-.89561349;4.9461865;2.5834584;.76513207;2.6206257;-2.1076496;2.2575674;.18041049;2.3964071;.4502385;2.0819967;2.9636321;1.8272849;1.5299311;1.2311242;.40970844;-.23068123;.97660333;-.1509468;-.76301903;4.7346072;.69471604;-.40938833;1.5795485;2.0563428;1.2242837;-.14438966;.038117103;1.027797;1.9664788;6.1630874;2.8739531;1.6897607;.99206042;2.4214239;.22428347;4.3098097;1.0741878;-.3161869;1.2046677;.6398353;5.2183995;1.3129368;60.530521 +-.61570859;-.51369756;-.094953634;-.066784367;-.78944039;-1.7383338;-.46250525;-1.3230848;1.1156642;.43821818;-.22639228;.30719432;.81973666;.061848603;-.48730865;-.40857941;.46830848;1.4859055;.97574538;.78027564;.16335645;-.010369036;2.946017;-.59218365;-1.5617093;.06844373;1.6497722;.24499682;-.38311428;-1.1634542;.24289852;.063467145;-.71069688;-.95767903;.24274544;1.3942591;.25156429;.033763051;-.74577945;.90222216;-.26718819;.49147245;1.1175493;-1.7381395;1.7813609;-1.0250403;-.28049147;-.68245721;.034255523;1.924695;4.6869984;.19941527;2.4677067;4.3183417;1.0702964;1.5381038;.76071185;2.0121644;1.9611232;2.5827048;2.1998124;2.4305532;5.6799154;4.7186623;2.272228;1.5385619;2.3030088;-1.8111712;-.12391135;4.3605833;.88862109;4.4942732;4.6295648;1.3724202;.63990021;-.03182254;4.4035449;3.1869376;3.8852007;5.5528932;4.6567974;.74359268;2.4755452;6.1449494;2.5127048;3.6495318;4.0497618;2.5944228;2.2811401;.52494121;1.6056126;2.4723756;1.942277;3.0122993;3.93999;2.2777774;-.5347234;-3.7604475;4.4770446;-.62322938;.86160862;.30186102;-1.4574184;.23757543;-1.0507089;-.91518432;.6688832;-.55299151;1.1454548;.43465307;-.55962455;-1.4796941;.88939756;.083364971;.23338123;2.0926423;.007030407;.51726252;1.5792364;2.6787174;.98001885;.007268012;2.8988645;-.38986814;.72502828;.62269127;1.2946119;.8797946;.59883469;-1.8077172;-.19974324;.27741402;-2.2469749;.15423201;-.80176067;.12959681;.10170583;.24730107;-1.3420334;.85176033;-1.413541;.097170562;.52100092;-1.2436384;2.030664;-1.247273;-2.4315412;-.51269644;.47501186;.47320971;3.5440733;.90167731;2.8842111;2.115236;.27527252;.24647903;1.7023171;1.9533099;4.0646286;1.8320935;2.6372581;2.3392909;4.3623295;3.2117488;2.777849;1.5513713;-.085334659;-1.4948121;-.31186309;2.2457416;1.6254393;3.2813551;2.1708279;3.2465277;-.13461764;.014244435;4.2756453;4.236321;2.1160715;3.5479174;1.9524456;-.77563912;.98919779;3.2363615;1.9222002;.85780603;3.1533163;-.97955739;.56072551;3.2980306;.23625132;1.1944375;1.368405;2.2435169;2.6455104;1.5717024;-2.6781576;-1.7116246;2.7966199;-.4877232;56.981369 +1.3685182;.99166399;.9941625;.53606415;-.26286003;-1.1462635;-.39688861;-.64565289;-.23742898;2.5839839;.6604619;1.7472231;-.60843003;.23040853;-.57165438;.33045855;-.52818239;.83693427;1.8008097;.32467601;.80330914;-1.535875;-1.3183345;.15305646;-.45269832;.7576434;1.3272047;-.30196336;.75982654;.38221678;-1.2593877;-1.9352111;1.1342903;.7699132;.96258044;2.4292431;-1.3410465;-1.4982512;-.51618969;-.38698921;.55016875;.85030353;2.4117155;.88803005;.0096662678;-.45747155;.083780892;-.4887324;-1.087867;-.28565863;1.6078334;2.9288049;3.5268199;2.647851;-.91086835;5.2649231;2.3122249;1.0305612;-.46418893;2.0235403;2.2871258;-.54484588;8.1296339;1.7400017;-2.8065665;.38115457;2.0944283;3.242224;2.9672379;1.5991803;-1.1727865;-1.1790428;2.7858331;2.9951859;3.9514968;1.870068;3.3765905;3.8652344;1.9724414;.27066493;1.4312431;2.2932742;.63489908;-2.6937807;-.71993822;.1233803;1.4321622;1.4621592;2.8412852;4.1672597;.51163536;3.1442673;2.288058;2.9499884;2.1966298;1.8542815;1.9171345;1.0703309;-.67739624;1.5845476;.37308106;-.042508096;1.6011449;-.1020697;-1.3502555;-2.1984665;1.0446962;.49317956;-2.5452743;1.4472169;1.6685313;.78229505;-1.6532502;.16128753;.39211097;.53186899;-1.2984619;.25509357;3.3555295;.42929342;.94156843;-.029236488;-1.0963733;.38971269;-2.5761626;.65532845;-1.9285762;-.15245444;1.6008179;-.45414534;-2.0004332;-.91317952;1.392181;.37220857;-1.0317006;4.3795462;-.82626539;.18370418;.49670225;-.44983977;2.2252824;-.63343191;1.8959188;.1108918;.032388862;-.035885464;1.1642625;-1.624661;-.53384835;-2.2295344;.86732227;2.3049045;3.3074999;2.3171613;.67350847;3.458432;2.0885265;.70299774;-2.2363396;1.3105348;1.882277;-.35478407;5.6500278;1.4349042;-1.0442227;.54724085;.32058999;2.6813538;2.0452478;-.03712102;1.6163535;-.4984659;1.4886014;3.3654284;2.2002585;-.01406592;2.0621624;3.3393199;.73132193;-1.6003295;1.9896717;.82122403;-1.7385925;-1.5326934;-2.4970951;.63209403;-.030559955;-.16113785;1.7701668;2.4964857;.043511227;2.0253897;.31763628;2.3382404;.78699714;1.5852816;2.6165991;-.22582109;1.267077;-.73613364;43.109436 +-1.9480872;-1.0208197;-1.2229538;2.3352208;-.081087552;-.66408533;-1.7509116;-.88071394;.92016989;.27053493;1.7049346;-.17267089;-1.2941728;-1.5039815;1.312578;.73668617;.079664007;-1.3788624;-1.6723861;-1.50556;.58378762;-.70772707;1.429291;-1.5129634;.55076987;-1.3145074;-.51357198;.74988246;-.11800969;-.31605008;-1.0560343;-.75182366;-.91925746;-.53109026;-.15422116;-.063678712;-.083246306;.34671167;-.60628545;-.79243618;.081855647;.26786706;-1.7705811;.33097655;-.305318;-.8077544;-1.556484;.73202801;.13086382;.62674546;2.0497923;-.59524757;.90988392;4.8862181;-.35338596;-.4638187;.68900299;-.25765291;.93022799;2.716408;1.0969012;6.4481487;2.380311;1.7655993;-2.0619116;-1.3741972;.21642388;.71536261;2.9752076;2.5152948;.24221882;.97488087;.94175339;3.1473796;-.54398614;-.022028135;-.76186013;2.5268636;1.6907895;5.3739319;1.2852614;1.3769482;2.7461681;4.6623669;2.8537393;3.223917;2.0928872;1.0223857;1.509901;.63601357;.27071089;1.9378572;-1.1117672;5.3334222;-.76574951;-1.2176344;4.5214462;.9149943;-3.1784165;5.0816088;-.65880632;-1.1195912;-2.3334625;.91355675;-.17226067;-1.0212619;-.70791978;-2.4327004;.18307567;-.32283124;-.23917462;.35313696;-1.4851741;-.88487899;1.2847475;.31168205;.31847209;-1.0517099;-2.5948291;-.66983318;.67793864;.041880514;-1.2057127;-.73255998;.062512644;-2.4988198;-.16882642;.35669473;.9116559;.99621016;-.28155297;-.039095223;-1.2701327;-.13286448;-1.1554574;-.47411898;-.1539672;1.604138;.49508408;-1.8952022;-.35951319;.64797902;.77419436;1.8243217;-.042762332;.78846997;-4.0909719;-.16194718;-1.5333589;.83565617;2.635617;-2.0108502;-.1908848;4.85181;-.86047328;.70206839;-1.5007646;.38975742;1.8072685;1.5156313;.63737869;4.3127499;2.007138;-.87725383;-2.0761654;-.58705628;1.3884099;.46902597;1.1234763;2.1874573;.97100347;.21407452;.25689536;1.7953937;-1.5589159;-.28820923;-1.3389648;1.0089417;2.127527;3.1619918;1.0342565;.54445058;.84751225;1.9934459;1.1457338;2.6635263;1.9019047;1.0340688;1.9164537;.84061372;2.2896786;.12899525;-.1549197;3.5385785;-1.4309881;.38868862;2.6583562;.13525806;-2.2272387;5.1586413;24.722179 +-1.7834909;.011751133;1.4328283;-.34062594;-.27316511;.17322667;.16658352;1.9546806;-.81280416;.039483905;2.006062;.76722151;-1.1746503;.93098688;.58226472;3.2716403;-.77661878;-.66562235;-2.6832538;-.87168872;.76858747;-.45414063;.49974555;-.78439254;-1.6267564;-1.5248888;-.54211307;-2.1440177;-.56568223;.0004868808;.10756247;.90412796;.0056123375;-.041801039;-1.4936812;.21647102;.57612109;-.62604237;.66328955;-.79316539;-.91858876;1.5851837;-.67731631;.19681893;-2.6633439;.51440531;1.4962637;-.57065064;.78426331;.4572432;-.58215076;3.1790619;1.8279496;.79289567;4.3082023;5.2830029;1.2628294;3.731643;2.1074152;.67829764;3.3893888;3.9444063;3.1400979;1.6247658;.938429;2.0031712;5.5867348;1.3055602;1.5856454;-.28616846;2.2093353;-1.3111979;1.3288596;6.3975973;.80699337;-.40295121;3.5553634;4.0284948;2.9099419;1.2960464;3.4685988;2.4200184;4.866415;2.2216783;2.7934937;5.380518;1.0160576;4.0560961;3.3527935;3.7769482;-.47868356;3.935838;4.7407265;2.1599841;3.7880642;.66858536;5.3241692;1.1438242;.33861461;.26591095;-.47034284;-1.4916996;-.10519936;-1.5338132;.26194122;-1.5848451;.93983817;.83643043;-.38387933;-.47377202;.96557248;.055306043;-3.0547447;.66997939;.63446021;1.940931;-.29723397;-1.1440191;-2.1948836;-.74527138;.6883654;.59827328;.66343737;.67993408;-1.5397711;-2.3584027;-1.2291528;-1.7778071;-.20766258;.52715343;-2.2468123;-.24329321;-.2192453;-.21755442;.043972544;-.33460566;1.1089462;.39843374;.93850851;-2.1922162;.41174442;1.5239061;-.14865367;.29297802;-2.462007;2.2257988;-.71946067;-1.415578;2.98491;.40522546;-1.3580638;.10700111;1.3937019;.90826291;1.6583004;4.3498139;-.035319015;1.1400614;1.7598764;.048814476;1.1599485;3.045244;1.0431969;1.0287671;.11242662;.82411748;3.4466939;1.819712;1.9249736;1.1760937;2.9476333;-.56986326;.49964368;4.0438595;1.1619126;-.79945773;2.7686892;3.6161127;2.9017625;.55749232;2.450784;2.6193521;3.9941647;3.0951071;1.5086874;5.5408101;1.7876228;2.2187204;.6679405;2.4658704;-1.5855392;3.9459465;6.4188809;1.6046678;3.5054336;-.10270091;3.9783368;.1502426;.26477289;.91577613;57.934486 +-.54063576;.58737957;-2.4203508;-.85357642;-.78153306;-1.0543929;-1.0054239;-.89497268;.44812009;.82035428;.95408428;-.58805323;1.2027433;-.11746094;-.88710231;1.236671;.13086216;.95392358;-.80409849;-2.4670503;.44488338;-1.5130687;1.1688063;-.97474444;-2.2478056;.48846278;.72756207;-1.6980058;1.0014296;2.5415335;.33003268;-1.9889872;-.88156927;.40188706;.12845483;.16653924;-1.4422834;.95924336;1.8705405;-.63176495;-1.576548;-.26539493;.488772;-.74696469;.45535764;-.011290498;-1.1591089;-1.4823025;-.7337209;-1.2442514;4.7205887;2.0973403;5.0499277;4.184134;2.9627695;6.4775434;2.3863111;.50802714;3.4534523;5.8474779;2.0884912;1.4641329;2.1482449;1.8231722;3.5061877;1.7993677;.046802644;-1.2210287;5.6319718;1.0635138;2.6645641;1.8983526;1.3999298;1.2460626;1.8920854;1.1641173;1.7280624;2.2579942;.80034262;-1.4045513;3.6754267;5.25981;-1.3012018;.8802563;3.81497;-1.3033431;4.9556074;-1.0162288;.7242142;1.714344;3.5635152;6.2111893;3.8350959;3.1977918;4.1701317;4.7723141;.091580711;.43463567;.90194643;-.1884287;-.29266047;.15064012;.52346504;.77054328;.024104187;-.29287833;1.0821919;-1.240799;-1.0945318;.87438738;-.43585724;-.13303469;.77450949;-.36973938;-1.9185206;2.0383499;-.40514207;.99406552;-1.6361158;-2.6308081;2.0997255;-1.2343932;2.1641128;-.69856781;-3.0019307;1.2554803;1.6825513;.030005513;1.7829572;1.7120274;.43751094;-1.6782635;-.61711097;-.75922942;.37205011;.055827495;-1.5123612;.44123068;2.3163168;-.81434274;-1.483361;-.2657544;.56959468;-1.0141336;-.34584096;-.03062211;-3.3769474;-.89881915;-1.3889643;-.38651842;3.760608;2.6227083;3.7396789;2.2261412;2.9965189;5.6614466;.1200029;-.86944497;2.6947699;5.6169286;.82722455;.036161572;1.1487882;1.825259;3.6716347;1.8393933;2.2677081;-2.0040746;6.5139503;1.1001611;1.2331197;2.3246386;-.44664872;-.001307376;1.3720592;.504278;.28939632;2.8426692;1.8581642;.71365935;3.0222647;4.9272475;-1.4604121;.35830215;4.0872016;-1.4492165;2.4957025;-.11132208;.13754214;-.88877273;2.5051885;5.2255521;3.6386025;1.6354369;3.3290784;2.4238663;.30728373;1.180328;1.0254289;-1.7738985;51.402451 +-.51667374;-.11815673;2.1201165;-.90517884;1.965127;.60803938;1.031238;-.27856511;-.7046113;.52855742;-.98299181;1.1682755;-.43195605;.43866152;-.31539664;-.49481753;.065350205;-.51332784;.55260557;-1.8751825;.46155903;-.97095549;-.20379101;-1.0738105;-.36604503;.60917771;-.62188494;-.4334853;-1.0923347;-.20075102;-.99332768;1.2817816;-1.1265115;-.55935162;.46432656;.90710032;-.8114748;-.18053576;.57226825;-1.357047;-1.1682137;-1.9595828;1.1952744;1.3102726;-.12756801;.24175532;.30304706;-.37622994;-1.3787299;-.66040891;1.5086306;.32621697;1.0955622;4.642427;4.009522;-1.1087856;-.044352978;1.121365;-2.5901272;.7598241;2.0186646;2.4262059;5.1663289;1.2753474;3.2640564;4.298923;4.8151975;-1.2355905;2.3228924;2.2007563;1.208313;3.9641898;3.0567648;1.5904408;.23050585;3.1481459;-.64287615;2.7791502;2.4186573;5.1772175;4.1207089;.88963336;.94952399;-.33655953;2.6574717;2.0412891;2.8504133;1.1981343;2.879348;6.3362598;.2224319;1.9059958;5.5436215;2.9774442;3.3392587;6.8593626;2.283303;3.8488448;-.92585599;1.7506123;.17958574;-.0091065168;1.6859288;.54516745;1.759925;.096455939;-.26316401;-.12668043;.66974163;1.4358608;-1.0987147;-.14469531;1.314124;.78184742;-.74919313;.19434555;-.92060733;.11736071;.67224258;-3.0214605;.26205429;-.80531681;.78248411;-1.2862378;-.6984731;.82655782;-2.3429906;-1.0350959;-1.2208594;.38480833;-.68819594;1.8836658;.71339041;-.7273975;-1.1172372;.62358695;1.9637003;1.1045218;-.38234159;-2.321609;-1.4912454;-1.6855992;2.6592491;1.2684152;.63787377;1.2456385;.96579242;-.31170821;-.27665415;-.96146071;-.22700146;-1.0868449;1.0828854;3.3364987;1.6584584;-2.19523;.54296333;1.0932392;-2.243145;.59244263;2.0765522;.98903733;5.6384878;-.51824516;1.8387522;3.2790329;2.7842166;-2.0465829;1.8262209;1.083642;-.36101857;2.9208858;1.9285482;1.8970801;1.2207756;2.2119689;.67520344;2.8458683;2.06868;2.601516;4.0639386;2.3051777;1.2991517;-.77487022;1.4057238;.99522436;2.38393;3.3136301;-.33324081;4.2320318;-.41117224;2.4538321;5.2624993;2.8445973;1.1188866;5.8127494;3.6847644;1.2967738;.36332554;2.1065462;58.477177 +-.030365665;.49114555;-.62660509;-.38933718;-.20395015;-.17554586;1.1159303;-.31589088;.33986053;.70194882;-.24769914;-.68481565;.69948912;.54620808;1.0805171;.78640223;-1.0965621;-.79717469;.95101285;-.21122454;.3224237;-.034351792;-.34028798;-.84880233;.73278207;1.6872058;.39087251;.57858908;-.58900666;.51937455;-.90558434;1.7804532;-.13438219;.5520885;-.52591938;-.70159596;-.60964054;-1.7900715;.26497489;-1.8046046;-.92414486;2.2333784;-.72585326;-.53846806;1.6979803;.93382919;.3813042;.75881815;1.7179365;.39053184;1.1140164;1.140751;4.8258166;-.25683385;.47597849;-1.8787624;.96768296;4.9378219;1.5104851;.31907174;.82796878;4.5802226;1.1892495;2.0507443;.96618837;4.086431;1.8273939;8.0823307;2.3439646;1.8298674;.17378171;1.396382;5.0088072;.6989314;1.0691469;2.1236367;2.3445199;5.1031904;2.552645;.63245904;2.1839018;2.3451388;-.24740033;1.6456656;2.0636857;-1.3997374;4.3339105;2.3971097;2.4179001;1.0279415;2.3986111;3.2907171;.70316994;3.4058042;1.5029045;1.3334434;3.029422;-1.0917792;5.5722404;1.8299404;.49485242;.61836481;-.39155129;-.99362415;-.79941803;-1.1153768;-.19951567;-1.5086014;-.22679003;.18090019;1.6099273;-.020043435;.53410733;.46512154;3.2465258;2.4366391;-.36408585;-.76770467;1.2138494;.087708488;.0032962337;1.3960081;-.013799412;-1.4976979;1.2232797;.6231674;.5077439;-.61576855;-.46996191;.31392455;-3.0443306;.82368118;-1.6843784;.56979311;-1.832507;-1.127703;.44866231;-.64473593;-.59263533;-.87320745;-.90264982;.478082;-.4906536;-1.8100098;1.2931153;-.045064144;1.085103;.30542201;.57749224;-.50807524;-2.4427674;.81574273;4.1643252;-.035923019;-.72305322;-1.981034;2.3278496;1.9515826;.42484951;1.5417242;-1.1584367;1.643545;2.6048577;1.9839417;.47954297;3.7325618;2.5133512;4.0949249;1.2873056;1.8828177;-1.3544327;-.32830516;3.4328487;-.26654455;.39292812;.42153928;.55439913;4.0344167;2.3862021;.42259032;.66780579;2.7841055;-.82136083;.86768985;2.8138518;.49611124;3.4982004;2.596004;.78900325;.34516782;.4350841;1.6187238;.25251803;1.599538;.71413237;1.1076858;3.0487435;-.18550305;3.8439152;1.1283149;52.548859 +.96164805;1.0596313;-.74199313;.96677166;-.62658697;-.91940153;.62998015;.40746781;-.90853375;.54749459;-.86173761;.42906356;.31150454;-.84796643;.69793248;-.56562412;.97576112;-1.1041694;-.92111802;-2.0831442;-1.4215704;-.5317741;-.40252632;-1.0591227;-1.9787385;.084621876;1.3480295;-.96452284;-1.131278;-.93920863;-.87527609;-.52008861;.88121337;-.86824811;.78046232;1.6429646;.64498776;-.85288936;-.41993484;.31019998;.32711971;1.1106801;-.63883227;-1.9264803;-.71876645;-.65511841;-1.6309152;.72444296;.55012625;-.074151777;4.2129951;3.2726133;.1331193;5.8285718;5.6606417;5.5318904;-2.0949707;.84147036;1.4272822;2.9441786;1.521595;6.0307884;1.959246;1.2377969;2.0536437;3.0603516;-.94229865;4.9870663;1.7991769;3.1959562;-1.3904737;3.4362366;3.0700748;3.9742978;1.6593823;.37149537;2.9863718;3.1896889;1.353583;1.9392109;-1.0694609;6.1978254;4.2224917;3.0488632;6.9646544;1.5813465;2.7408545;-.16249691;4.7014251;-1.3375255;.20686619;2.0201993;3.7691119;.86963123;-1.1365294;-.71177816;2.1342883;2.0378313;1.5039535;3.3793616;.86577767;.61650181;-2.413064;.12277585;-.28997496;.64965755;-1.1319014;.86520106;-2.5577586;.034953494;-1.460592;-.65287608;.71455204;-.89612335;-.14570567;1.2742751;-.17706989;-.26133078;-1.8286293;.0074638817;-1.9811335;-1.0169353;-.26719916;-2.0324552;-2.8366072;-.24059358;2.034641;.14823647;-.080731161;-.42861724;-2.6227288;-1.8722776;1.6941822;.81342006;-.53097165;1.51623;.2855652;-.27753049;.0075364155;-.15825072;1.7746295;2.6620836;-.2603544;-1.5125116;-1.0149521;.14380834;-2.3339193;.12328315;-.63150609;-1.4577918;3.4911158;2.5216606;-.52308089;2.7615702;3.5681705;4.6683741;-1.7990408;-.45441535;1.5691898;1.0463921;2.1252322;4.0865369;.82508445;-.088035956;2.5481443;3.0354986;-1.345559;2.0427573;.23656595;4.45818;.31655487;3.1973972;2.4708927;2.9609408;2.1562107;.59999508;2.4796162;1.8312397;.20790137;-.12682103;-2.1783648;5.4323111;4.8740802;1.8721294;5.5411773;1.5719535;1.5349358;-.06812986;3.0123792;-.15397394;-1.6246004;.8292855;1.5576564;1.0390846;.70999885;-1.4613012;2.5885565;.10898435;1.7731289;1.6388603;51.806572 +-1.3068179;-.37943393;-1.7781788;-.85698378;1.7422833;.16977826;-.45931214;-1.4157352;.0025934326;.15218182;-.44281799;-.13516241;.89545017;.99154305;1.0031635;.16510396;-.13591546;-.88391107;.86016184;-.56887954;-1.5191448;.23943369;-.55591065;.081952676;-1.3676957;-1.1423355;1.5865208;-.58503902;-.43669051;-1.4478216;1.9053718;.44702816;.59229851;.4683466;1.6116675;.2511507;.013463783;-.024689056;-.17518342;-.47001946;-.74742454;-1.5548747;-.2451307;1.0084356;-.69331557;.40793291;.083721794;1.4139081;.05538616;-.025645236;4.161809;3.8189433;3.2622621;3.7317357;4.9092979;-.19500971;2.8383291;1.1749222;2.3617213;2.1618271;-.99160939;2.2096295;1.5060554;2.4865694;5.7518196;-1.3612254;4.8979917;6.3427086;4.6488194;.70500851;4.1362643;.90027392;1.8428575;2.17963;1.9218619;2.6718791;1.5304841;4.5885992;2.2328787;2.5140388;.027711293;3.2161422;2.6230876;.2187399;4.0242391;1.2168783;4.6011572;1.9963019;1.194818;.01957432;2.0504308;3.5759313;2.5480607;3.7738063;-1.0203276;3.5550931;-2.5534503;1.5449502;.81185663;.95095998;1.9211746;.95130879;-1.0038728;.18464319;1.4596078;.10773993;.44142404;.50189185;-.47129872;1.13731;-.10254766;-1.2174977;.63030076;1.7132583;1.3460962;-.16953549;-.75188571;.46173695;-.12401576;-.29671702;-.71199387;.31868887;.47600529;-.16773057;.18746832;-1.3339956;1.4176189;-.21690336;-1.0694066;-1.095584;.65228993;.86164331;.37394288;.79600471;1.8576907;-1.7292134;.10370081;-.62796479;-.97428852;.88635647;-1.543565;-2.1056509;1.192242;1.6873629;-1.6842209;.81650454;-.15193678;1.0868075;-1.0039427;-1.042829;2.8541625;3.4271789;1.2401465;2.1888797;4.6856647;.21980153;1.7247084;1.2691444;1.8555664;1.7657818;-.11463118;.60918671;2.8583739;1.3687935;4.0604334;-.61770254;2.141705;3.7493374;5.2481618;1.8757161;2.6034629;-1.3509506;-.048096985;.52363211;1.1368103;2.0714126;1.9352553;4.5841951;1.5816641;2.7849669;.52206922;2.2143798;2.9205399;-1.1767647;3.4090657;.7086398;1.6041197;1.4018216;2.3273413;-1.1129133;1.1579478;3.4546824;1.3983334;1.8772581;-2.3490138;1.8826028;-3.103188;.51405793;-.33098012;-.16163471;48.94976 +1.6829472;-.16040035;1.3940067;-.74519652;-.22274467;-.77029949;-.98213071;.41419494;.540793;-.68496782;-.12294997;-.48860797;-.28024906;.27505031;-.7305268;.23975359;-.12313581;-.011434606;-1.5732603;.85724711;-.1568578;.95255446;-.015904769;-.14456081;-.40503874;-.88595736;-1.3612663;-.98578393;-.78866321;1.2366184;.35700968;1.4763502;1.6271181;.30051622;-.69169545;1.1211617;.14910142;.27974623;-.47784472;.21662319;.26652601;-2.5281646;-.44542375;-.41241881;.043079507;-1.0432479;-.57185817;1.1444572;-1.2148395;1.2538171;1.7238028;2.1581881;1.7258179;-1.2557448;4.9142532;-1.4417272;-.20891105;1.9823102;-1.8935107;3.1342161;3.2795887;5.2064834;-.3455908;4.9428945;1.2907659;5.1858296;.98002911;-1.791993;3.8409214;1.0538465;3.5203652;-.60233527;2.7189324;2.4359422;.40807095;4.590169;2.6373096;2.0521667;5.6636028;2.8267002;3.5893259;3.0477893;1.2216418;-.29534864;5.0346398;4.8035083;-1.5655859;-2.7441587;1.2010804;-.7481721;3.5781555;3.2343512;2.655951;3.0091052;-1.0130708;1.7992542;2.5630336;1.8743662;2.5220749;5.8581939;1.2816641;.97308046;1.0812342;-.15300226;-.40483844;-1.3228986;-1.0813112;-.95991355;1.7729686;-1.672985;-.18045014;-1.7275804;-.93511361;-.64991021;-.067962594;-.7117129;-1.1666905;.68417305;-.36231646;.71903342;-.18028583;1.9254639;-.087927662;-2.029788;-.65313447;1.5221367;.77860916;-1.302543;.37762848;-.15217863;-.53015339;1.413745;-.34175518;-.90620679;-.27984321;.69972748;.01787331;-.43228695;-1.2417756;-.12616174;.23846158;-.42472398;-.74086189;-1.6933434;.48369041;-1.999994;-.80595422;.052763306;-.65143883;2.4864988;1.473107;1.6987439;1.9855012;.88625187;4.1062021;-.63409877;.29681048;.80850303;.86401522;2.5100379;1.6170363;4.1779766;-1.2778538;4.2449126;-1.2891338;3.0045793;.45100921;-.93831801;2.1595557;1.09574;3.6812751;-.24012287;2.224829;.81615186;-.366467;2.1571476;1.5381448;1.6870652;3.1356766;1.4503132;1.9015844;2.2066965;1.3544352;-.11684354;3.5020955;2.4419672;.32004005;-2.402607;-.044187624;-1.3865077;3.053056;2.4915042;.73716927;2.1080618;-.0034875248;1.0392962;.93741757;1.8495729;-.12512879;3.4368267;43.860302 +-1.4632971;-.5942744;-.19501166;.19036064;-1.3195738;1.1594605;-1.1295891;-2.7165761;-.6196208;-1.1341227;-.068549469;.71701652;1.2973316;1.2330632;.084698394;-.60077828;1.3202567;-1.9128594;-1.0984807;-1.1976631;.15491788;-.97360504;-.12621586;-1.4163245;2.2378631;1.2726147;-.16242401;1.4451809;.22002153;-1.3784703;.50843221;-.44751221;-.80907214;1.1695997;-.40654603;-.31952044;-.21970643;-.15777418;.77493948;.02122697;-.53858095;-1.5017606;.76326823;.50409341;.55578363;1.3072604;-.63367194;.94768959;-.76879841;-.26402587;4.9254465;-2.505198;1.9319595;1.7661994;-.69870436;-4.9373331;1.3511289;-1.563969;4.6392512;.90233684;.96787828;-.68918562;2.6996522;2.2130144;4.7780242;4.0275702;.15936962;1.8529165;.32006943;3.4023821;2.4434021;3.1098583;-2.1912749;-2.1357117;4.5904994;1.2346082;2.2765391;.41011086;.32601249;4.8665571;2.5839477;1.079969;3.219825;1.8887486;5.4077501;1.6225208;.89308941;.54245085;4.0738878;3.0640209;1.3664019;2.7700784;2.7722049;.72862393;1.6337463;.30949569;3.4552178;1.6500509;4.5455804;1.8090326;-.51032043;-1.8960376;1.6303834;.79789293;-.95815516;.61419314;.34536946;.12590016;-.59289771;-.52184379;-.93263376;.46367294;2.8430712;.65675193;.22441706;-.79034978;1.5379674;-2.4539664;.40625361;.60294664;-1.2354909;-.83066791;.87106341;-.61737525;1.5556288;.60174727;-.24583408;.69232094;-.93110669;-1.2648587;-.030264568;-.80277455;-1.0529271;-.86835289;-.32371667;.87260544;-1.1397506;-.62840748;-.14530469;-1.4651836;1.7507818;-.49417871;1.4875163;.69054431;-.62254769;.67026836;.28074563;1.0527391;-.63433909;-1.6578634;2.2434433;-2.9723556;1.2156999;1.0818913;.42453259;-3.6772816;-.29977581;-1.8337946;4.3310094;2.501852;.82978868;-1.7486985;2.5984669;.32878941;2.9479983;2.5805957;-.10697855;1.0549753;-.18471771;4.390543;1.8717476;2.9240086;-3.4628844;-1.7978168;2.6126821;.29867756;1.9162173;-1.5585082;.29479551;1.3314292;4.2142215;1.2079368;2.409045;.83649898;3.7284448;1.1659297;.55638933;.86424756;2.1863661;2.2034702;.82063931;1.8049339;.86556596;.45716122;.53790742;.53728729;1.7491803;2.0121934;2.5386617;.19606437;42.948978 +-.86131084;.80250603;-1.2122967;.70894408;.38668007;.15765615;.61261284;.80814606;-.26854983;1.6472855;1.4644443;-.47480211;1.0197892;.3893961;-.21514843;-2.4915693;-.26027313;-.2737318;-.36457926;.2639327;.21197423;-.62847823;-1.1487303;-.64361525;.2913118;.59478533;1.4312967;-.81712306;-.026615465;.23173115;1.1144698;-.68721223;.84047067;-.24517173;.91682565;-.85729927;.43364811;-2.4628718;-.92962301;.76967865;-1.3430353;.57337618;-.34241739;.57298321;-2.7862048;-.53902233;-1.251294;-.25128672;-.016757322;.88801759;1.4636446;2.2978144;5.1355286;2.7678759;1.4946263;3.1552682;.80090517;.47487593;1.728516;1.017158;2.2030373;6.2733626;-.75299704;.98277068;3.3894763;3.1187582;-.20428924;2.781729;3.1532373;3.4718421;2.8349562;.82629257;2.6762903;-1.177747;3.3695152;3.772311;1.8934863;5.6644263;.49780375;5.2054467;5.6897831;-.31683487;2.9459364;2.9172218;2.2158298;-.88038188;.36994469;5.3971124;1.9693065;-.27062145;1.7961345;3.6841109;-.17560634;2.6274242;3.0963292;-.80795956;4.1353326;-1.195753;2.8014147;2.9334853;1.0403017;.86973155;-1.4279484;-.93985301;-.010642419;-.66261673;1.8151256;-.77500767;-.88735408;.67515981;1.3044509;-.35452458;-1.5366482;.6774534;.49012414;-2.3647475;1.1375145;-.56160051;-.39047986;-1.1940234;.95516747;-.059758984;-.47073218;-1.6135494;.28448808;-.73691332;.65347397;-1.5469677;-2.0740588;.082019284;1.8939232;-1.1417748;.90316379;1.6069955;1.4613187;-1.3661267;-.6768837;-1.1808217;-1.9338157;.6489256;-.48492968;.62639177;-1.8338996;-.50932032;-1.5947641;1.281323;-.27515867;2.2274544;.34234434;-.64973879;.99025267;1.4855045;3.3858204;2.1999152;.45817959;2.2157767;-.53798246;1.1251092;1.9765608;1.5070467;1.9256252;4.7582779;-.70809811;.98829478;2.3731704;3.7054074;-.74947929;2.1295273;2.8113899;5.1258016;1.8631622;-.057247031;.73931569;-1.0255967;3.5608535;1.807364;.58328086;4.4541936;1.6329321;4.6775947;3.0788217;-.062252402;1.3141388;1.543862;1.6304013;-.65825689;.92758691;2.4875906;2.1732221;-.74792433;.49864388;3.7668355;-.32604566;.95457155;1.5741256;-1.6271398;4.0435367;-.2068541;.48485932;3.1260991;48.030914 +1.2940003;-1.4222186;1.9603238;1.0212735;.63878578;-.6299141;.19098812;.65144247;.30685493;.89580905;-2.4002521;1.5327804;-1.4719522;-.40806147;-.60379058;-.21161367;-.43163666;.89265579;.31727463;.69856393;1.0962807;.74869639;-.52460557;-.49330381;2.238193;-.76410449;1.5738429;.57358426;-1.7048845;.19963923;-1.7906822;.29537737;-.46796969;-.34228596;1.7697419;-.057575099;.57878184;-.29624006;-.54741746;-1.2899995;-.10837926;.29509604;-1.7481016;-.038480766;.34436229;-.11235719;-.7302199;1.2573373;1.6660447;-1.7212361;3.6171649;-.10025752;5.7870469;1.422848;5.1923361;2.7391107;2.2490277;2.6723566;-1.475324;.51753217;3.6904883;1.5495195;1.9711595;.60534012;3.863447;2.2830415;.86693817;-1.9117939;.33517051;.43182313;1.7933758;3.427686;3.8631375;1.5940834;2.9783909;4.0008311;-.35185328;2.9212635;4.3842974;3.8170938;-.13264082;5.6145654;1.4515245;-.083442226;3.5312395;2.2492616;1.2047114;1.3716497;.29652137;-.57913798;1.2634958;4.2072577;3.6092479;.98534131;.6205821;4.0468359;2.326905;.63895458;3.9242079;.21784365;.33538651;-1.8265556;.31811404;-.63868821;.94340622;.085611999;1.232729;.093884066;-.025399636;.64344472;-.029859854;-.53763241;-1.0379461;.79229075;-.59503365;-.12264945;2.0981507;2.1837409;.11959977;-1.4903015;1.0848898;1.0436904;-.47458473;.91527867;.37388012;-.65325212;2.3401091;.33173347;-.12077343;-.12887625;-1.3955653;-.4705005;-.090821728;-1.3786896;.091036439;-.67912328;2.3924954;1.502491;-.55676717;-1.430553;-.74074489;.70076019;-1.1971285;.45476922;.98620266;1.2499115;.012487006;2.09007;.86937714;-.082989983;1.7598222;.36915866;3.9328866;1.1895069;3.7190297;1.3836819;1.0730962;1.5005169;-1.8269746;-.89788342;3.0619395;1.2289134;.14796358;-.53420407;2.8051775;3.2038374;-.15867661;-2.2140381;-.47286999;-.62547618;1.3076394;1.3067021;4.0722523;2.0716627;1.6080337;2.2726612;-.84561729;1.3298441;3.1241207;2.2963331;1.1667017;4.3892522;-.23805059;.35292727;2.7663062;.98010212;.53793812;1.4024997;.18714352;-.37160912;.47903767;2.2135754;2.3756742;1.3280736;1.2058092;2.8157516;.88045478;.80636787;3.1173663;.94254571;56.983509 +.75636071;1.7998325;1.4432318;-.86596906;.88495833;.64554971;-.047154248;-.26119804;.2529366;.9062829;1.1760708;.57060236;-.66388017;.22465341;-1.1152242;.2222846;.57493633;.18423367;-1.2538081;1.1683034;1.1538227;.26652813;-1.6048301;-.82780564;-1.1923791;1.6043755;2.6199942;.4888221;-.085650712;.47748932;-.57693255;1.0731621;.89175892;-1.1816519;-.0091905342;1.4351306;.83723378;1.3699423;.097122915;.30519021;.391114;-.4979454;-.11721529;.50382864;-.94481093;-1.1832333;.43950626;.2596865;.3792927;.49096766;-.028565539;.95631671;1.2494175;1.6432097;2.4871511;3.1582985;.36749402;3.599499;1.4865073;1.2746727;5.3690748;4.7573295;1.8436793;-.79221725;1.2202582;-.32432872;1.964018;1.2902496;2.438098;-.48893538;2.6668346;3.2872782;1.9974605;2.7400374;2.1818008;4.2226129;.15095854;7.5384374;3.6046081;1.301172;-1.7535892;4.045352;1.4867636;6.9805069;-.33066264;.96001238;.47572038;.71911061;1.057444;1.9165626;3.2597246;4.2966032;.06454473;.82166046;-2.7298522;2.7734294;-.030944301;4.0064344;3.4721248;3.0583587;1.6010301;2.143785;2.3133872;-.68586797;2.6777248;1.1867239;1.0019016;.37403032;.19107053;.55243146;-1.1842282;1.5640159;-.67193466;1.2925072;-1.1241636;.52842438;1.5454649;.72693551;-.79462254;-.33055949;-.03136152;.41042021;-.003140762;1.5092436;-1.134997;.88000524;1.1880139;-.19743638;-.11324057;1.2715358;-.39789218;.66405767;.092584126;-2.3865559;.63499206;1.2629066;-.87775552;.040279448;-.63158762;-1.9699922;1.1954588;.38227567;-.22969067;-.92503554;-1.9078599;-1.4262308;.089937516;1.2649738;-.035162095;2.3914459;-.93795586;-.24120723;.86214608;1.1962633;1.482442;2.8436034;-.10102861;1.931766;-.12016179;1.3582348;5.3341489;3.665843;.72079635;-.84272808;-.55122328;.55870491;1.1966633;.20214407;2.4669914;-.97319353;1.3456872;.83165187;2.182972;5.307754;.83017004;3.795455;.25329027;6.1101384;1.295083;-.38989449;-.33477104;2.4036033;1.0955485;5.7190728;-.6559236;-1.115438;.60445499;.8297419;.51218545;.31092963;.16320935;1.8780168;.26326469;1.8175564;-1.4481411;.92519152;.48933008;1.8362671;2.7537527;2.9089451;58.689301 +-2.0030708;-.38441122;-1.4141221;-.92803305;-.033978049;1.4851429;.61384797;.32914865;-.43402338;-.58318275;-.22416458;.55274951;.028603651;1.2935549;-.11109705;.25116912;-.16693702;.22179198;.27195558;1.2681602;-1.4055052;-.73875171;-.45867524;.50956291;1.994908;.21786588;-1.8683214;.9625923;.78445578;.96638006;1.2438036;.4290584;.29767856;1.4042593;.1989052;-.031541966;.7487703;-.34747255;-.20665661;-.075760402;.47306797;1.2185807;-.20060882;.23328277;.22406313;-.72262985;.34786779;-.96316558;.27369127;1.6460149;2.7253752;3.8834901;1.2459066;4.5112729;.071356274;1.2876862;1.0281116;1.0185119;1.7167664;.576563;1.2480575;3.4349513;3.8587246;3.827559;7.1277399;3.3915656;-.36906353;4.6369348;2.3885918;1.8456666;1.9398977;3.0692708;-1.285736;5.7781935;3.7929957;1.4116931;3.6559913;1.2118738;1.9015684;-.2993705;1.6827033;1.374086;2.2920141;1.3039145;1.42891;2.228045;3.5565946;.74366587;3.1542003;.31194296;2.2273772;2.2082176;.71087945;2.3518631;-2.0376909;2.2885675;1.6631589;2.1769633;1.2149575;1.7834427;-2.0483334;-2.1983879;-.31276691;-.14887841;.44990987;.74811131;.40940967;1.7557826;-.15352032;-.69513232;1.5532783;.38053694;-.12647521;1.1109973;-.016529359;1.0809129;1.2237155;.29486293;-1.5255975;.72625172;-.57912642;-2.2428837;-1.1174836;-.083970167;3.2742381;.71462518;-.89198309;-.11808114;-.38603929;-.21247952;.28077933;-.064485699;-.5783608;.49827987;-.25710708;-.85554814;.11497825;-.60566342;-.52396393;-.689291;-.28343967;.81955856;.89448637;.13266546;-.8003661;.23557161;-.82538438;-1.136023;-.31056651;1.4171779;.094303042;3.3798416;1.321914;2.0685246;-.27690494;2.0004339;1.606446;1.0955776;1.2569665;2.3626988;.71981716;1.4527614;3.4422259;2.9673545;4.8411036;3.0561879;.42948505;3.6560345;1.1760707;1.9814138;2.1425278;.50257432;-2.3638203;5.2284455;2.6230445;1.3435994;2.610435;-.33631974;.51452243;-2.3632388;1.3955212;1.1451445;1.5635104;-1.0488582;1.0657121;.06035528;.93579239;-1.6892365;1.48367;-.19095737;1.5948981;1.2186649;.73157525;2.5271347;-.77027833;1.0238144;.83360928;.88307309;1.7034451;1.3144833;56.176582 +.5862121;1.1520631;-.42475128;-1.0439169;-.91390723;.15639699;-1.7303406;-1.3109393;1.2623188;.55821365;1.0068368;.51190573;-2.0274584;.58367223;.24129041;-.71389264;-.29185098;.45658422;2.3144541;-.65154546;1.9962734;-1.2675959;-.45795235;1.6479753;-.33598897;-1.1108575;-.45513606;-.93354255;.4136593;1.0586363;2.4603319;-.95819116;.1793877;1.1801583;-1.1057087;.97676194;.23429014;1.7171706;1.2300854;-.21087547;2.6478333;2.0231395;-.11292227;-.85957789;-.12539868;-.61315566;-.77619803;.29412606;.71304977;.022407113;3.8970592;.04997519;-1.7607408;5.6669421;1.6782891;.77702248;2.2807705;.12292183;4.4890089;-2.3908374;1.2889681;4.9968786;1.4633257;4.6020675;1.1279262;3.9212875;3.4255707;4.3644562;2.1778305;-.9909209;.64357281;3.7200041;-1.0816286;1.0662088;3.0382953;.7543906;1.7846466;-1.3224211;1.7403858;-1.9387002;4.6527281;2.7682619;1.2801328;3.0296228;.81295741;2.6420794;2.5255744;.42007539;-1.1325047;3.4055431;3.1832685;2.1777725;1.1021243;-.11408613;1.326339;3.2888005;2.1211634;3.3925707;-.64756364;6.0943971;.35228941;1.8238677;-.75674146;-1.5952666;-1.5397389;-1.0541607;-1.7558494;-.038045939;.088477284;.76310152;.69380003;.10240487;-2.5152836;.75487983;-.51082009;.34942895;2.2533379;2.817924;1.4604052;-.6451546;.15805142;-.61443001;-1.8747275;1.1462836;.28986239;-.40423712;1.1462303;-1.1536906;1.2221804;1.2892028;.74533319;-1.0849915;.16937585;.12854293;-.24048872;-.045846544;1.7665507;-2.1746418;1.8000245;2.0472627;.77754527;1.5101614;-1.0989056;-1.4801083;-.020064691;-1.0470871;-.3652021;.25625047;.38350222;-.24404047;3.1832442;2.5293813;-2.4992864;3.8797605;1.7099382;-.066579148;2.1848443;.31413698;2.7650414;-2.2859333;.76470137;4.2585053;1.7300987;4.3000264;-1.0885254;2.5722013;3.9921334;2.2418718;2.2210867;1.6474262;.67813039;3.0187883;-1.7632126;.20501675;1.5101954;-.33177209;1.985633;-1.0883852;1.5896482;-1.4289166;2.7054498;.55720532;-.95651186;2.5338733;-.10153393;2.4851601;3.316752;.024350647;-1.6194396;1.8237301;1.0028173;3.6983423;1.7790786;-.43631262;1.8582718;2.3436127;2.0401697;3.0910909;-1.0710399;5.1575332;53.107864 +-1.5837278;-.15857537;.50491893;-1.648016;-.8284024;.96591306;.087956406;1.6168113;-1.9829217;1.1057333;-1.6853743;-.82641202;1.0878434;.032221377;-.93406546;-.9850409;-.79415512;.11374035;-.22817488;2.5243087;1.3118241;.058111634;.37322468;-.6556474;1.7786264;-.70939219;-1.0764524;.1475126;-1.3109442;-.39857006;1.3145269;.7526381;-1.2199686;2.0251086;-3.0488212;1.4181274;-.83434474;.11809133;.88200486;-.014114611;.2575694;-1.731958;2.6292121;-.37524858;-.58179939;-2.8024788;.053129524;-1.4910188;.74171793;1.5318563;-.29808968;1.8840983;.52442575;4.6576848;.66843104;3.2982183;1.5140045;-.47785383;4.1929512;4.0534453;-.62443191;5.7000122;1.0208281;.83853626;2.0873401;4.7344031;2.0487974;.53224874;2.9595995;2.3655078;4.9371104;.42841583;-1.21847;.40100792;2.0207069;5.4305649;2.2582705;.85380429;2.963172;4.6935186;1.3913842;5.508626;2.6570542;3.1604414;2.7120852;2.1450024;2.1424618;1.6660334;2.8389819;3.234113;2.9271615;1.7833716;3.2098992;1.0148747;1.869278;-.62417161;.99678093;1.4350601;3.0531058;-.74240685;-.97517776;.13930789;.5023194;-1.3204683;-.19107212;1.9970535;1.110525;1.1180261;-1.412274;.58958536;-1.7897403;-1.5501958;.63085824;1.4122211;.55190367;-.58731622;-.71455866;-.54203796;-.59514576;3.4253597;.13248691;-1.0300573;.37068218;-.30601674;2.0645306;-.015673267;-2.8163886;-1.2695737;-.23001733;1.4755391;.6236127;-.47849798;-.36999232;.62552702;-1.0288393;.70183587;-.6024071;-.8959133;-.3856943;.5880397;.46146676;-1.1794788;1.2671583;-.60656315;.02952759;-1.7251321;.27948138;-1.1301976;1.2332983;1.2205657;.15271145;2.0621421;1.8199395;4.8949604;.14048642;2.3241773;.47999302;-.49303553;2.1796987;3.4517136;-.48026839;3.1518533;-1.3117517;.74771243;.37873483;3.6362879;.73013979;.49631682;2.4538672;1.8504059;3.35655;2.504312;.63391477;1.2559618;.99107271;2.2948802;3.1854286;-.43925178;.58468431;2.2207587;.64899528;2.8623345;.99273962;2.4645867;.1560827;2.1139681;1.591375;.18018746;.65294468;3.1485658;1.2878749;1.7165369;1.84148;.3837617;.18571298;-.89502037;.84263146;1.9140868;2.5818267;.22528192;51.906372 +1.4599969;.039308563;-.85900247;.98085731;-1.0168417;-.025922285;-1.2255927;.54869014;-.023685813;.64271379;-.45274609;.44794893;1.8172591;-1.0068409;.075501211;.30767825;.65505642;-.83131069;.97252303;-.036806725;1.54206;.024391796;-.65089655;-.25412527;.21993004;.39637101;-.9737832;.78624934;-.54657972;-.27019656;-.97644699;.57368755;1.3173842;.18052986;.22635639;-.71188605;.58105755;-.60422039;-1.1767918;1.6795298;-.78680158;-1.0047456;-2.9748261;1.7690786;-.61316139;-.132146;-1.2351468;-.15555833;.6237666;1.8075689;-1.049816;3.829843;4.6714439;1.8934984;6.3388;2.8754361;-1.2776097;3.6922109;4.0855083;.66155064;2.8317211;1.9627107;3.6725526;.99464834;1.8487958;1.2801261;1.6879468;1.6050928;-.53970695;-.48196602;1.4053867;2.5338798;-.31518599;1.1860036;-.079138175;-.96966487;3.6746976;3.2358146;.61100638;.40397701;3.5922539;3.2645106;1.0842464;5.065002;4.5540624;4.1111674;1.3655005;1.1967385;2.5085063;.35339466;-1.926734;-.11320056;3.0211265;1.0468924;3.3042657;6.5324264;2.7945013;2.7540846;.19619006;2.0518646;.0032283547;.39128101;-.49775136;.63806361;.59721333;-.41610473;-.97278839;.12196404;-.51294249;.42815197;-.61545527;.052030206;1.3761193;-1.5334243;.27303761;-.38336426;1.1241512;-.40464863;.07610248;-.31338891;1.9667404;.70537019;-.70961684;1.5732515;-.94058144;-.53367501;-2.4590974;.85435581;-1.3382698;-1.6759953;.50213778;-.6027624;2.746583;-.067419514;.99462098;.78284895;-.33089384;-.59801161;-1.1396506;1.1683685;.06592831;1.0539732;-2.3535151;1.3309122;-.25087985;.016819159;-1.0414814;.078402981;-.56273091;1.8812963;.49120489;4.2456822;2.4936903;2.3018622;4.0084939;1.3782736;-.26859653;3.1100445;2.239419;1.8631477;2.7494471;1.8508997;2.9925604;.20984018;-.70821381;1.3111963;2.3352072;1.1546276;-1.5402725;.40855354;.55225825;2.1083004;-.53214878;1.8347766;-.58959198;1.0971671;3.076313;2.5910499;1.6560675;.57842886;2.7578743;2.1156363;1.9358153;2.7810988;2.6718276;2.5786777;1.144359;.71481276;2.4755507;.37684962;-1.4010596;.038450044;1.0189365;.68500292;1.732824;5.0400467;1.5848628;1.3356838;.01768823;1.5550827;52.3964 +1.0479344;.46096361;-1.6054155;-.93473762;-.7122435;-.070858255;-2.334466;-2.2117608;-.223369;.93800175;-.56348026;-.29743931;.39769062;-1.7863712;.25946295;-.2291408;-.5729531;2.1030357;-.40930563;.52499419;1.1517602;-.75586355;.31569746;.11920658;-1.0937427;-.84638762;.47379872;-.85642964;-1.9532437;-.83937764;1.6600348;-.19348395;.61163586;.61716223;-1.1252856;-.97984731;-1.4000241;.89418602;.71694076;-.87611324;.809237;-1.3334688;-.46074596;.16046987;-.4662317;-.55211288;.040976804;-.08274781;-.57327271;.39838636;1.1242006;5.1779261;.97905606;4.685638;1.7697417;4.0162992;.53212631;1.1651293;2.2989073;3.0826483;1.8037314;3.5913119;1.5352243;-2.5997884;-.43271327;2.6093805;-.78740025;1.0823734;5.8380885;3.8809884;2.959938;1.851279;2.2631235;3.9774182;-1.4368308;4.4105344;2.7291684;2.2229464;2.7392285;1.3128228;1.5474063;-.53446782;1.6228093;-.038192913;2.6065965;-.11594916;3.1537604;1.6407313;-.045003109;.62435019;1.7912952;.00034285561;1.7649111;3.3184853;5.9751835;1.8639475;.295908;-.37594631;7.746161;1.9278226;1.2830442;.46404088;-.53175694;1.0292106;-2.050077;-.15986007;-.47533786;-1.0317143;1.5301495;.78269213;-1.0727222;1.0621998;.56063229;-.95511234;2.2137542;-.14821771;-1.0370826;.28517216;-.020650474;1.076058;1.5564622;.1159775;-.32688135;-.58792776;-.96509713;.85778677;.85682833;-.93338019;-.57191926;-.37733328;3.6831822;-1.5424628;1.2732826;2.0067976;-.65708745;-.78711408;-1.0876228;2.4806833;.61037558;-3.107394;.061205022;-1.1408724;-1.2693734;.12392513;.74649274;-1.5537893;-.22409344;-1.0409079;.53362757;.54118186;1.1758072;6.1916671;1.1721916;2.3549118;1.649485;2.1098917;-1.4992715;1.96579;1.2518531;3.1312797;.050668892;1.6807809;2.8406625;-1.6013414;-.58066905;1.8900959;.40386596;.52253836;3.9560719;2.0050044;.85300583;.71570808;1.3884451;2.3630967;-.20667008;2.9060705;2.4332178;2.7572117;.50999683;2.6570148;1.5374711;1.3522952;1.1422004;.51268142;-.14588825;.8550359;1.6093602;-.77664667;.018830962;2.4356115;2.6940019;-1.1053722;1.0426203;2.1617248;5.2498517;.32500839;.78731626;-.66562873;5.4166574;.89983958;45.668465 +-.9692989;1.6976701;-.0027321326;-1.9858563;-1.6147085;1.1002618;1.1856146;.90469694;-.25589812;.55948222;-1.49178;-.59908277;-.59330052;.63098633;-.86308897;-1.1396433;.62228727;1.2131655;-.13905361;-1.3680753;.86467582;-.44460893;-.079916678;-1.739213;-.26278785;-.51544547;2.1983495;-.64886874;-.32539347;.038839612;-.63091367;-.42894608;-1.3311112;.63091898;.17240606;.44451281;.39120275;-.51647079;-.30423725;1.1149532;-.60057783;.02575657;-.70374477;-.44760767;-.68044925;-.68184584;.98217189;-.18095243;-2.0972946;-1.1822553;.0164246;3.6775243;5.5510278;2.3474352;.034973096;3.8808601;4.4500895;5.4479251;3.1567769;2.8029206;-.26180226;2.3697157;2.4198911;4.2541227;2.4614019;1.5619395;4.8095007;-.97716254;1.5546952;3.764251;2.5802662;2.0446775;2.8033304;.45365664;3.3788526;4.6169038;3.3929579;1.0250852;3.1587157;3.40218;.2656135;-.87448114;-1.6535453;1.149673;.70158982;4.974647;1.300781;-1.5204341;2.6481676;.11416185;-1.8608593;2.4602678;1.9692118;2.6104705;-1.469324;2.7148554;-.45749536;1.3239008;.56414682;3.1066356;-1.3213222;-.33163002;.8460381;-1.1746235;-1.2251137;2.3806541;1.1128223;1.4707752;-.32573983;.75050801;-2.7124829;-.13225731;-.21554244;1.9271402;-.71304637;-.96242625;.1777178;.75759643;-.77567869;-1.8747364;-.28341722;-.98526198;-.46100107;-1.983659;.13184009;-1.0888219;1.4289086;-.55256957;-.10190628;.43642846;-.51241487;-1.2446247;-.96238065;.18311228;-.16387244;-1.5230513;.23468052;.15643924;-.23853132;.70294309;.87883222;.45269331;-3.6062748;-.31803039;-.14993487;-2.0751629;.069261678;.64909112;-1.2375726;-1.6210608;.30624402;2.8384652;2.8791311;.59522486;.45743126;1.6023558;4.64535;3.5602887;1.0911974;2.5885382;.38168049;1.7742796;-.14131434;1.7755644;3.4244645;1.1849626;3.8253732;-1.281237;1.0592129;4.115871;3.1212387;4.0936584;.72753561;.27306774;3.2371454;4.0936761;.91036451;.70462137;2.5495999;2.7737021;.82230067;1.1033455;-1.283003;.22640643;1.5985626;4.825191;-.13097703;-1.1439289;2.1939723;.4108521;-1.772508;2.3896463;1.5293533;-1.0074912;1.051796;2.9171441;-.88851804;1.8597707;2.0561945;3.3486609;45.842014 +-.59201699;-.2929332;-1.769904;1.1453326;.06855543;-2.1966953;.15376773;-.052156471;-.28327498;-2.662375;1.5698389;-1.3745059;-1.3242261;-.63587105;-.47720006;.95040452;-.75885117;-1.8206795;-2.2713122;-.71050727;-.8474499;-.62614417;1.2672215;-1.8895513;-.66001195;-.30540937;-.23020905;.044129662;1.1579189;-.96881491;.52201158;.63162255;-.12035633;-.46125069;1.2259752;1.2856123;.088175468;-.25108516;.81422329;-.59417713;-.044919655;-2.0447543;-1.4786786;.40672231;-.63261247;.69665396;-.73333919;-.73942637;.15926068;.5586006;1.9506871;.2440917;5.0436459;1.088415;2.6502843;2.7541587;.021551361;2.5670331;3.2966812;3.6095996;.56788611;1.5636339;.062041812;3.5096879;5.4828491;3.2204528;-.16307563;3.2942941;1.8051637;.028576;4.7653174;-.26604068;1.6227033;2.9601171;2.5436816;2.0921612;3.6861267;2.8611839;3.7389364;3.7598703;2.9514766;1.1961652;4.417099;.75623244;5.8998003;5.2532916;1.1682556;1.8769546;.16892926;.61244792;3.4776962;2.2654119;-3.5092075;2.4629724;-1.9160137;2.7253432;1.1435256;.7683726;2.5904882;2.8144255;1.0882753;2.3084249;-.82990456;.58486277;.8321923;-2.3122275;.43915418;.87535208;.76582211;-3.008585;.20836329;-2.1409216;-1.9481385;-.71433812;-1.7040578;.59356362;-1.4870728;-1.5124491;-1.0839024;-.2673738;-1.3196378;-1.0936283;.37254122;.46272126;.031537678;1.174156;1.1302525;-.65588772;.32888901;-1.9288194;2.8797188;2.175071;.31652147;-1.3967974;-.44337085;3.2277665;.5539372;-.84774232;.22262624;-.98034239;-.078226797;-1.2876376;-2.2953391;.71876639;-.61364686;-.39370021;.52262282;.33274662;-.95041859;-1.4624403;.57227409;-.11260969;3.1132767;.015870938;1.5696021;1.8951923;-1.6480625;.40854374;2.9082253;3.0967257;.59965581;.15274306;-1.5012763;1.2228032;1.9957165;3.9892051;1.6444597;1.6448843;-.52156729;1.0311674;1.9050046;1.4211911;-.14268696;.9084487;.8370229;1.5566765;3.5812979;2.3460627;1.4832978;1.1713939;1.8347038;1.1094371;3.9989655;-.57949358;5.0745239;1.6586874;.31031594;2.5627759;-1.1206933;-.57437843;3.2078199;2.2056363;-1.5093329;1.5805227;-1.3924528;3.3214619;.88691825;.60567933;1.0965929;1.1534817;40.697075 +-1.6494133;-.41171661;1.4192864;.047490958;-1.5595266;.12000087;.65129012;-.43947861;1.9371915;-.3328242;.064992249;-.31150842;.97391963;-.82303017;-1.6408546;-1.3271828;-.96760017;1.4741338;.55826092;-.29659343;.65114111;-.14333294;.73691201;.53872156;.63470548;-.44624358;-.71588594;.52202129;-.14010566;-1.2818471;1.5060921;.7883532;.80745828;.88414562;.60991657;-1.7235496;.17407872;-.76965415;1.2823564;-.24177088;.98674738;1.7126626;.7472074;-1.0623292;.41688088;-.56232065;.4959338;-.27647495;-.32102552;-.64571297;2.6592898;5.3565426;1.729609;1.7832534;3.0557837;-.10106155;3.0314398;-.65891922;1.4606811;1.2096484;2.908778;-1.6186463;4.0440588;3.1677828;3.6235635;.4644722;2.5584142;2.4332597;-.88822305;2.6506863;1.5993047;2.2622359;2.5484033;.34133327;-3.3774121;2.263469;4.1970873;.81359839;5.0575433;3.3670914;2.1539054;1.0936917;1.6904409;1.3409631;-1.5327109;1.7436404;3.9430549;.73785329;1.5451446;1.2967453;2.3384655;1.2145567;1.0925144;2.2152922;2.8486571;2.4076207;6.3659625;-1.4130951;.79339951;5.1769981;-.29611248;1.1070694;2.0130861;-1.6173493;-1.3300562;-.454678;-.36720023;-.89015901;1.7115004;-.49510992;-.60244602;.69660664;1.0666838;-.88607746;-1.4098059;-.35837093;.62486434;1.7513646;.48454937;1.8732785;1.9384925;-.24866652;1.1754789;-.62289006;-.057527486;-1.2308193;-.43872049;.84765083;.47533494;-1.1023661;.39028713;-.29482463;-.41185135;-.44252062;2.3841217;-.16177844;.57149059;-1.0569578;-.88313454;1.0755216;1.5974104;.92249078;.29884222;-.53091151;.24076574;.43512416;1.5202296;.34952578;-1.7847255;-.99520284;2.9082131;3.6599946;2.1544545;.91329479;.26574561;1.1729522;1.1185228;-.86187047;.84251386;.047180619;2.2832139;.3074359;3.0710771;3.9981441;2.6004112;-.67503083;1.3559091;1.4674077;1.9425558;2.8349366;-.20657094;1.4876577;3.9806004;-.13403855;-2.1360738;2.0539217;2.9678285;1.5910563;3.1369419;3.4487956;.28815341;1.3019338;.8285135;2.2927232;-1.4636124;-.16147117;3.2881472;.33162546;.21432164;-.12651752;2.3978677;.64341325;.89001632;2.5774584;1.3753978;3.382164;4.4958487;.59420389;.51813084;4.0590916;47.755047 +1.2821112;-.13668555;.16270991;1.7434978;.31858692;.54517537;.71476775;.4610104;.38256055;-.077998959;1.0499932;1.425356;1.2607777;1.8192432;1.1889778;1.9252001;.60725862;-1.1965251;-.61699069;-1.1986482;1.2711841;2.2328594;.42159501;-1.2224199;-.36493397;-.46519941;-1.7309166;-.89651287;-.2640385;-1.7059664;.5980404;.22498687;.33885181;-1.3483821;1.7490056;-2.5066471;.4346796;1.6315936;.78864288;1.562672;-1.2625071;.22692883;-1.9133947;-.14375553;-.54110408;1.4072896;-1.0919111;.40235952;.15583006;.20231245;2.9770525;-3.222234;4.4931412;1.4130951;2.88817;1.1464461;.62141651;-1.2825248;4.1583166;3.7153814;2.4343023;-.36843675;.17299853;3.9229181;1.2827059;-.73415118;3.6328351;5.4082165;.71166211;1.0177751;-.32717589;1.8406332;2.2700396;2.9116306;.69709468;.62105656;-.096220963;1.3345631;3.8948264;3.4400294;2.5323572;3.9662549;-1.6803181;5.6712313;1.5245634;4.120265;1.4162585;1.6069988;1.3908293;3.8952873;1.9658333;2.2568851;1.0281932;1.1786677;3.4949868;-1.2430476;1.3724663;1.0471681;-.043298051;1.7967008;1.5071243;1.5181413;.94481224;.70012963;-.61741167;.68749654;-.14545225;.063986123;.98989809;.69696718;1.170521;.9582268;.95642304;1.0318192;1.3245803;1.0682886;.3221474;-1.4508346;-.1908296;-.85071164;-.12326156;2.2089062;-.4587912;-.88633531;-.17981167;.024127021;-.94186264;-1.6773982;-1.6307789;.00017892537;1.010253;.98473656;1.9986192;-2.8161604;1.8569299;-3.1150904;-1.4524335;-.055546436;.81673145;.42230067;-.32776293;-.79998583;.093542524;-.84206074;-1.858678;.28383535;.081281602;.65368348;-.19115818;-.90913785;1.3918575;-3.2134111;2.5086899;1.8041207;3.0562909;-.12945744;-.16631149;.0023642927;3.3019981;2.704308;.5484606;-.03014539;2.1592135;1.9391;.78933841;.13268226;3.2618451;4.4139428;1.3695244;1.6883659;-1.3474492;1.7518605;1.9772866;2.2505815;-.38116962;2.1991856;-.86780983;.89698434;2.6550257;2.5135255;2.956167;2.4942274;-1.8318598;4.5851736;1.521758;2.7108779;2.8202269;1.0097427;1.0666472;2.8031964;3.7289178;3.0053895;.88867933;-.0090846801;1.3635442;.13977115;1.8814516;2.7379353;-1.0325439;.12655936;51.568401 +-.15422687;1.0225468;-1.4151452;-.21336721;.19902775;2.3717792;1.7766246;1.3452299;-.16877306;-.021635253;-1.6536136;.69911385;.28348601;-.10594374;-.30900559;.56527758;.90862274;-.66809952;-.16034912;.094645754;1.2176104;.93901318;1.0208752;-.37452254;-1.2716953;-.77785909;-.43567929;.034666244;-1.8937459;-1.1427298;1.38706;-1.7291648;2.4646235;.060471624;2.0171301;.26809251;.80998564;.4290708;-.25043163;-1.6582271;-.45188072;-.52868348;1.0976168;-.36474103;.58226836;1.2882853;.57865709;-.4722001;.49270582;-2.7120721;3.5738428;-.076477379;.73554695;1.9371746;4.0939178;-.48711982;1.1127235;2.8204968;3.1342747;-.54305154;-.19795412;4.533649;-.15103053;-.28809127;4.0503383;3.1946447;3.452997;.7100904;3.485611;4.6850343;3.680656;4.270885;3.5744421;3.9410355;-1.0800309;3.1638064;5.1870909;1.4744829;3.1778848;3.7942891;5.0930419;3.3109441;1.3965671;1.1700853;.14512227;1.6848167;4.6142812;2.8044906;2.5154312;2.1417572;-.042421091;1.4340593;.86270344;1.7504839;1.3345505;2.711551;1.0136713;2.2619951;-.16660452;-1.28048;-.74641973;-.37542453;-.29177716;-.70412081;-.90920335;2.056602;2.2590861;.68421322;.32396635;-.34081331;.27872077;.84689254;-.56337738;.060372848;-2.1544716;1.2748289;.18378894;.92533159;.76561546;-.89069152;-.82705569;1.2676206;1.3768266;-.44193456;-1.2230669;-.43727189;.19216925;.77036542;-1.0868956;-.32733801;2.9098279;-2.6354814;.73952156;-.855609;1.6823359;1.7012454;-.29202819;.079744987;2.4004281;-.26761368;-1.9274788;.47360939;.95688403;-.85204494;-.10823222;-.32195079;-.19370793;-.9718473;-.91616601;-2.3047426;1.3711319;.048772257;-.026943836;1.2803446;2.6493092;-1.7924287;.69333959;3.1196702;2.7583814;-.42512202;1.0325963;4.3415265;.95664811;.026705105;3.4426987;1.440061;2.7075768;2.0773966;2.5794008;2.8310647;2.4239275;1.5632179;3.7314773;3.0545287;.26502803;1.0766568;3.2582603;.9703632;1.4668849;3.8451931;2.6237099;2.8202667;.39457369;-.77905118;-.73404777;.91613173;3.6484478;2.8474298;2.264375;1.6578944;.10121143;.12164084;-1.3882203;1.0076623;.18169728;4.3335514;1.5635008;2.8684397;1.09769;-1.2689426;56.283394 +.5870589;-.17313834;-1.4144052;.71699548;.83024317;.22943431;1.3991355;-2.655561;-.8376314;.57123446;-1.4911913;1.8882872;.40452552;-2.4831302;-1.5373523;-.90116864;.2205628;-.74256229;-.18476264;-.089838333;.85224295;-.2306627;1.1700994;-.71964139;1.4839876;-1.603761;.011058636;-.69226789;.97398537;-.13302323;-.45328858;-.58559507;.079942226;-.8707599;-1.5894332;-1.4666417;-.10757943;.97892076;.3504315;-.67822897;.018078886;-.074993178;.36755854;-.58403981;-1.6758498;.84323132;-.19365984;.54317504;-1.0896677;-.30734557;.31640905;3.4437883;3.6714547;3.9495225;1.6536307;-.39384106;1.6757103;2.5451701;.74892783;1.3330059;4.954958;2.7182629;2.5906239;2.4222944;1.5211865;-.51831079;6.0617929;.64329427;8.8083115;1.8129073;2.6459243;-2.9991517;.42588848;1.6508222;2.958214;-1.3895916;.75684011;3.6805327;.55095631;.31102395;2.5257456;-1.3779968;5.2093983;3.7953784;-.12731345;2.6943908;4.1150031;.55360681;.75191593;6.0821099;1.2188672;1.6845671;1.8241094;.85979116;1.8553282;.36098447;.75844467;-1.1080869;3.6138618;1.8529861;.42341432;-.88640296;-1.9762261;.99356771;.50379378;2.1470428;.73764944;-1.7758025;.75249946;-.081259273;-2.7910137;1.5506314;.92467749;-1.6971222;-.87173796;-.54451501;-1.7555869;.19109051;-1.5502763;1.6999891;2.0793018;-.71286863;.1626001;-1.0323406;1.0080832;-.55991668;.13708907;-1.5035994;.73786145;.17860046;1.3266102;-.65360886;.029985087;1.9947972;-1.056886;-1.4816445;.61898607;2.9810121;.17239907;-.33190981;-.74637592;-.46852785;.34808886;-.64716083;-.61808741;-1.107736;1.3522757;-.80332512;1.3421098;.25927761;-1.4048654;2.5617821;3.7242033;2.8645265;1.6323252;.000073193558;-.66747302;2.8301501;.057168443;.38969436;4.710104;3.240999;2.791142;1.2451582;1.7581714;-.2658748;3.3335319;.061899401;5.5247421;-.62183529;1.8569587;-3.9480209;.83675927;.98506153;2.8906789;.0055210954;1.3978244;1.7391155;.73790789;-.36221585;3.2444184;-1.1151766;2.9935601;2.6202307;-1.0188465;2.3235517;2.9922822;-1.5185938;1.7939675;2.7545042;.86195558;1.382544;.10217838;-.40484169;-.50119865;.26748943;1.0150547;-.96336573;2.8952725;2.1664801;44.312237 +.25451377;-.049538549;-1.4896723;-1.2613022;-.83153975;.31715518;-.32367;.76212984;-.73527277;.15363503;1.5350227;.86339539;1.3158816;.26900879;-.8969754;-1.3122571;.1248344;-.30201587;2.0383656;-.76560724;-1.6794041;-.35068244;-.32476521;-1.4523612;-.44780681;-1.6918525;1.1760001;-1.2575039;1.3293631;-1.6719757;2.5426342;.86743128;.48374355;1.7082586;1.1787596;.049042799;.014330504;.406093;-.819866;-.7259202;-.1164759;.25980124;.10308705;-1.4461035;.54344231;-1.1565108;.37794921;.012990826;-1.490873;-1.3787608;1.2623078;5.9584937;1.2246841;1.0106989;5.3325086;5.3605747;-2.9920244;3.4623661;-.086721212;.24519315;4.749692;1.2528567;3.0715611;1.3439105;3.0478568;1.6759709;3.5361714;-1.929456;.056297284;5.1305113;.81785518;.87400496;.82324809;1.2767882;2.0728419;-.059275627;.20696445;2.3025796;3.7559621;.86243081;4.41469;4.4501538;4.4591141;4.1432748;2.7250609;-.57311171;1.6550117;3.3890893;1.8122177;1.299623;2.8032863;2.1053236;3.3558345;-1.9651374;3.0553124;.19256736;3.2248206;1.498987;2.4717941;-.50822353;-1.2812649;.32634854;-1.0252256;.20077427;-1.5837277;-.026217431;-2.1162353;.51323754;-.49713707;.53985173;1.7996749;.46015507;1.9992484;.96789825;-2.1817844;-2.1148686;-.57298833;.54946637;1.6333712;-.88471168;-.23160993;-.73203528;-.23462917;-.65325886;1.8304667;-1.4210826;1.3439577;-1.5189302;2.3009326;.10698377;2.1240544;.30237642;1.6718442;1.7410752;1.0279658;-.13598776;.33901802;1.2276518;-1.5873156;-.5630843;-1.968112;-.59451556;.39715356;-1.7679316;-1.2254854;.3468056;2.2446563;.97076422;-1.4254555;-.98748559;.25918099;4.3876562;2.0235105;.8565501;3.8907177;3.9700615;-2.2776225;2.3545649;.4198643;.21512839;5.7627063;1.4309882;2.8381357;.39954835;2.1857138;.10493667;3.1078067;-.91634262;.04452768;4.5728264;.88658422;1.631958;-1.1748549;1.3162599;2.3261306;.23992272;.6634773;2.7138605;2.7364137;1.5142585;5.1399322;2.955209;5.1055093;4.2319584;2.3894868;-1.247661;1.1101024;1.3673373;-.45725033;.05177087;2.8573773;1.1429582;3.8556387;.24864337;1.4382552;-.93691927;.55691129;1.4514031;1.9351346;-1.9712108;42.752197 +1.0252839;.10696044;.8247968;-.67316186;-.51346391;1.0790026;1.0443776;-.84552413;.067671984;.41293076;1.3713148;-.54434949;.45071912;-.24770294;-.17618071;.9028247;-1.0834851;.54316014;.84769964;.33628643;-.89841425;-.77953351;.33474386;.9946692;-.75984627;-.31267619;-.22568668;-.030883871;-.83284646;-.56432664;.12617433;-.51777792;-1.0003654;-.72790897;.19493452;1.1208874;-1.2596793;.4533473;-.37054485;-.40802339;-.046027962;-.68365151;-.27804205;-.68473846;.32267529;-2.4540439;-.74758583;-.83926284;1.8530369;.5777266;4.4167724;1.1874028;-.89972782;-2.1028759;-.88072604;1.3366493;3.3265648;-.2490969;4.994863;1.7742275;1.7123463;-.75347763;2.6100557;.38876355;1.3764095;.74557906;2.8672364;2.42769;4.242619;2.4317341;3.625129;3.4961591;1.2233183;1.9085724;2.5924037;2.1363261;1.8373038;.56783926;5.326004;.35076895;1.4447951;1.7103981;1.6774669;4.796494;5.7868853;.8934418;2.117363;.89923131;5.5558319;4.3785162;2.8850093;.10730653;1.9621841;4.6324334;2.8139763;2.1046674;2.5447178;2.4914951;6.8467488;4.7129784;-.95840114;-.50670785;.86527193;-.36159298;-1.7495754;-.26490629;-.95835263;.06301979;-.046447106;.19500163;2.6916695;-.82461202;-.37158707;-2.3600075;-.93611544;.13218428;-1.4943235;.45563409;1.4759362;.71460456;.40499961;-.32980701;-.086181626;-.34030807;-1.8660879;-.13812891;-1.7263129;-.80306238;-1.1762133;-1.3989804;-.73107636;.16950455;-.96548563;-1.8076732;-.85166401;.51267529;-.72801417;-2.199723;-.86004162;.52463448;.54408419;.32939872;-.020170059;.19925517;-.70918518;-1.0161459;-1.7636653;-2.1012361;.76054561;1.5439005;3.102864;-.0024978912;-1.2064918;-1.6551436;1.1573173;1.7349559;3.1765904;-.54316831;2.4987607;1.7689468;1.4051735;-.59234041;1.5968293;1.7598677;2.5725796;.051719759;1.1865085;2.6685064;3.9503713;2.4515688;2.5384519;3.5553265;.076375745;2.2686551;.69669116;1.6951501;3.2114737;2.2565846;3.7622313;1.7895575;2.0081871;.81267703;3.0328178;4.2285862;3.8305111;-1.4060031;1.9044638;.63692516;4.5295386;1.2165896;2.499249;.76067501;-.10935027;2.9385502;2.725028;1.4258398;1.0053749;1.9212736;2.7884393;4.1142864;58.326748 +-1.6750149;-.9184252;1.4025744;.020249117;-1.2307093;1.5630935;.22278401;.9420898;2.0320239;.94923735;.38214326;.33528727;.75296891;.52237189;-.058698114;-.56217277;1.5180234;-.86549246;.22735985;.40806007;-1.3353325;1.4115971;-.64230388;.58547497;.66479194;-.43386444;-.65141517;.46867588;.31146646;-.53635681;1.1568592;-1.0287993;1.3042368;-.468577;1.5740824;-1.7917627;-.90985304;-1.1795259;-.59259868;-1.2104589;.69401604;1.5401279;-.032626357;-1.4573405;1.6876739;-1.3943561;1.4295459;-.2630477;-1.6634866;.8158527;.62828594;2.2138166;1.8068514;3.4675171;5.2978692;4.1844168;3.5742638;4.8136597;1.6534045;2.057178;-.60695004;2.2022219;2.9152277;3.5637832;2.0885789;1.7925618;.79275298;2.80551;1.5260836;2.1488271;.18851259;2.7309403;3.1708169;1.4303507;1.56357;2.7389908;3.437988;2.8581328;4.8892374;.48066151;2.4503922;4.3995562;.60232788;.7961539;3.3020902;-.54387063;-.86984926;3.0951068;2.8636231;3.08956;3.4534945;2.8111944;-.94018465;-.59497851;1.49479;1.9421901;3.5993235;-2.4147074;3.8502018;1.5268465;-1.7702118;-1.8840543;2.5671108;-.79855436;.044572171;2.1815252;-1.8874055;.090118244;.7173658;.11728558;.65820909;2.5383074;.85854208;-.81261224;-2.5394769;-2.3600993;1.506428;.85772073;-.045272917;.7329697;-.89299697;1.2021163;-.012497948;-.99177927;-1.4513592;-1.8444734;.28705809;1.0326064;1.1458161;-.19120744;.46080902;-.90051025;.15081286;-1.1490622;.37207514;-.84685105;-.66366702;-2.0975678;.73387438;.09499272;.64687443;.41102001;.14742164;-.17081557;1.9466641;.51149583;.71369696;-1.5506504;-.24264084;1.2658982;.58156496;1.8537699;2.2404222;2.8603542;3.9710126;2.8810167;4.0867243;4.6537023;2.1176443;.028295942;-.83630389;2.853668;1.3490579;2.3289948;.519566;2.5769279;-2.455107;3.6038673;1.8236161;1.7537277;.9708612;3.5933919;2.8968983;2.4013667;1.1779772;2.2238913;1.5691619;4.2272229;4.8339243;-1.0397102;3.0689957;4.6880584;.094821148;-.66998732;2.2235179;1.079046;-.20739892;-.21675837;.91553575;2.2907465;3.3071973;1.6077201;-.92294186;-.55818915;.1718559;2.6094885;2.7587526;-1.7860998;3.5215511;-.70037508;48.20256 +.28936347;.48553273;-1.1515647;1.5833679;-1.6773682;-.85628009;-.91983992;.58709699;.6454345;.56050867;1.127501;1.4642735;-.96285623;.14167581;.1211069;2.2162244;.19919933;-.97747564;-.56018174;.96661597;1.8392011;-.0046208263;-.77269107;-.30510148;.23293774;-.28260341;.19546036;.14322861;1.4657781;.11833127;.6133278;-.67288727;-1.057333;-.64121503;.43167064;2.4143612;1.4107366;1.1108546;.26420838;.55049688;-.40916979;1.4887292;-.9078517;.36680982;.19387892;.40554067;-.42091113;.036755584;-.11132599;-.17829405;.99690819;1.6165181;1.5758357;1.7578249;1.8661175;4.1860304;5.5427027;.36694008;4.9991641;-.3191078;1.1607568;2.5995991;3.5072167;2.9111943;-1.3945715;1.7931359;7.1314116;.14054745;.1184282;4.7589054;3.6782508;.1768219;1.8567885;2.6892908;.96973944;1.4690231;7.373589;1.3330781;5.2659669;1.3016648;2.0386934;2.4641323;-.62067556;4.2403245;.22766344;5.1725073;.78459913;.064698987;2.9782414;3.418179;5.3333688;-.98459095;.5825606;1.7867278;1.2164046;1.332146;2.4223244;-.27930018;1.9261843;2.0234377;-1.2456014;1.6904708;-1.577646;.46807864;-2.3244245;-1.4456459;.047631808;1.9688358;.088478364;-.654706;.0745501;.14624915;-.10898256;-2.038089;.4740085;1.1252023;.30096981;.42151713;-.64827365;-1.2856615;.36811584;.57965922;-.46843958;.26071322;-1.191;-1.4074535;-.26538217;-.56144905;.34962714;.14504425;-.26880616;-.22511347;-1.837028;.7076295;-.57197684;3.7934117;-.12771773;1.5217757;1.5993541;.11001525;.0046474934;1.0259202;-.12069059;.024292663;.57692647;-.13823576;.099021949;.86798483;-2.5153167;.81514734;.7755267;2.6987307;1.6020077;.69435537;.38204905;3.4801984;4.7917304;-.98441249;5.0498109;1.2028214;.30217516;1.8265257;3.0849104;2.3662624;.63434583;1.269371;4.0242186;1.0118999;.12937909;5.1122136;2.0537071;-1.4034644;.76148939;1.8563634;-1.7877716;-.31662416;4.5340981;1.1376516;5.1844745;.12072199;3.0523319;1.2524617;.99709123;4.7701788;-.11262468;2.8270321;-1.6353663;.82755744;3.1922884;2.6808283;4.23241;-.91388875;1.3582913;2.5745652;1.5884172;1.3277051;.8482179;-1.997833;.59752035;2.2918487;67.580437 +.67705005;.10681528;.17621829;.19320223;-.055799503;-.60095292;.94104302;-.34698474;1.672722;-.6672973;-.38093573;-1.527372;-.48396838;1.6077986;-.41868943;-2.3103774;-.8318125;-1.103165;1.1254591;-.32815456;-2.446738;-1.5260139;-.42644462;1.1242632;-.29560924;.92608565;-.83080548;-1.5259126;-.77330852;-.10656677;-.65517014;-.76133156;.79061085;.18060374;-.097692251;1.6210802;.78863001;.94885051;.64311874;-.9162544;1.4296767;-.99408776;-.24210651;-1.512381;.51604182;-1.6648606;.71616715;-.72627461;.37129435;-.79232347;.76194042;1.8215488;-1.7797823;.52241862;.6392327;-1.3529495;2.8856807;-.010782152;2.1222396;3.1925385;3.2758119;-1.7455555;3.1772549;1.2819432;4.4425631;3.0216663;6.9770389;8.1723146;2.3112473;2.3449171;.43024164;1.4220375;-1.8354063;2.5926626;.091243602;3.9722283;-1.9217354;-.52151108;2.1469941;3.5072243;2.4415429;.92042506;1.5658363;3.5752032;.37203196;.37558067;-.81317729;2.6924875;3.2023602;1.8836824;-.19914757;4.3632488;1.9234241;2.8557954;2.6525478;3.1504009;3.273365;3.6371334;.051005807;1.7472315;.43610403;1.2385883;.92319626;2.816818;.91463721;-.12255239;1.802624;1.1820017;1.3752729;.27837864;-1.1674867;-2.462218;-.82223874;1.1971893;.88586617;-.87997127;-.48929435;-.46411237;2.1301658;-.8428005;-2.291827;-.2822758;-.84117705;.25507969;-1.4540212;-1.0321832;-.50128067;-.42245892;-.52988237;-1.0765435;.71353501;1.6670988;.119238;.033842064;.15446265;1.6874812;.86322051;1.6844554;1.6330566;-.44754407;1.6850938;.5299567;.33262926;-2.6602464;1.7718234;-2.4566643;.80175549;.077815309;-.32637653;-1.9046345;.37884369;2.2692111;-1.7938761;-.33138913;.10658413;-.93370581;2.6091168;-.22097839;1.6551483;3.4954898;2.0606956;-.8451885;3.1433017;1.1417217;3.3146932;3.3771746;3.9951806;6.2102013;.9007777;1.7494645;1.6101503;1.2049171;-1.1844269;.60114753;.43073207;3.8876107;-.88197273;.88034737;.16782708;2.7985122;.15648326;.55464488;1.0976703;1.1446393;-.42319319;1.3233248;.9127655;2.366097;3.0908287;.76040822;-.17031412;4.6635494;1.7183523;1.4967107;1.1850404;.61240005;.7408511;2.2840793;1.0031639;.52167445;43.743534 +1.5801026;.79376554;.21610387;1.0686501;.4896591;-1.0792212;1.6407583;-1.5151579;-.079407424;.065820433;1.6170325;1.0869868;.35960266;-.023414008;-.93998682;.14034826;.42658821;-1.0273317;-.46541712;.24626376;1.8956492;.50237882;-1.5302128;.1374871;.84435892;-.59535128;.5654307;1.0837263;.63316029;-.62258136;-.06411203;-.60032129;-.50658917;.67700261;-.14965546;-1.3675412;.071068943;-1.1923563;2.450254;.028772626;.79440093;-.62390715;.59506184;.86688429;.62672693;2.1663132;-.77675259;-1.575358;-.45389763;-1.0719151;1.6262435;.55566084;-.86776096;1.4964073;5.1951609;-.24387248;3.8665679;.14015022;3.8568645;.50506306;-.3195782;1.4890006;.84488767;.97245491;1.0675963;.19894437;4.384644;4.280663;4.1844463;4.9913754;1.2580009;2.0104485;2.212328;4.5879898;.14385933;4.3939905;1.4143475;.90995753;2.4587626;-2.286097;1.8718401;2.63396;6.1619139;-.62796909;3.3812063;3.181865;1.3172978;2.3540657;5.3329163;4.0916409;2.6228313;4.4229302;-2.0823834;3.261847;5.6109228;2.5771799;3.1273372;2.3013556;4.151607;1.8235319;1.5920987;1.2749988;-1.6213503;1.8450811;-.37051734;-1.1492355;.67615503;-.95604229;-.61967862;-.27937177;.60402608;-.28053266;-.25903949;.45586222;1.3793753;-.033217754;1.096743;-2.4506302;.50769019;1.743607;.53272283;.65147525;-.36629325;-.47489083;1.1332668;-1.8998737;2.0617161;.62973183;.73574489;-.44816172;1.5511379;.16324808;.65822881;1.9442462;-.60795075;-1.0549736;.45910254;-.86249918;1.2510802;.19642733;-.50651616;-.043103572;.7400744;-.19141077;1.510744;1.9601145;-.22325154;-1.2852958;.46151206;-2.6610897;.87265903;-.2184114;-.32139534;1.6098552;3.8829064;.87674844;3.8759577;.026003947;2.0922804;-1.7093903;.32792071;-.32241783;-.42156088;.63687754;1.4248831;-1.4246165;3.8985963;2.0201612;3.4167626;1.8649188;-.061526269;.7887851;2.5765407;3.0430772;-.12903269;5.0555091;-.02217887;1.1238596;1.85313;-1.0657012;2.0656626;2.2667196;5.5891142;-1.9201351;2.8163981;2.6726186;1.936066;1.2715983;2.3300173;3.8370364;2.2355039;3.4570429;-1.5286554;1.7253685;2.9785872;2.1430364;3.0685358;1.1082135;3.6254516;1.2455541;64.87989 +.17467606;.19125488;.44026095;.30503711;-.79258031;-.65807712;1.6437614;.27524295;.66578954;.52974153;1.2965932;1.6360745;.37161461;.077633113;-.4172613;1.0667763;-.011197395;.006199053;1.3805758;.35821056;.95097125;-.7769174;-.97763014;.83746517;.14317577;-1.2272978;.4630163;-.92470628;3.3374085;-.40261355;.97960299;.46182543;.29854509;-2.1197381;-.079239391;.090456001;-.50738567;2.1176722;-.431582;.6432358;.099883504;.60753524;1.0817435;2.0315051;-.799335;.19152069;.40064707;.26225242;.28772926;-.24882388;1.7533333;2.2200868;.66093469;2.8141968;2.5997267;.72247875;1.2603714;2.1264179;2.2409894;3.5296125;2.717499;2.6484668;2.4498093;5.3010001;3.7790706;1.5366263;3.095022;5.8913288;.30236298;4.6249452;-1.8434181;-.742001;1.345193;2.896127;.059398953;3.4357464;3.1091847;5.1186366;2.8916421;.41973728;3.5575502;2.9563568;4.37956;1.4199412;2.8396459;1.8971481;.97586954;1.75424;.39999157;3.8841484;2.6231482;.47957259;4.8518863;3.0610204;2.8240728;.98326337;5.7128196;3.0610394;1.427971;3.4386537;-1.2759606;1.3815579;-1.2254473;.99112624;-.097655043;.13010795;1.7625855;.83768719;.67552483;1.6023126;2.0034878;-.18768883;1.6045022;1.0292963;-1.2906603;-.34547645;-.060229819;-.043717694;1.9328979;1.7091222;2.8874221;-2.1504424;-3.952796;.61404192;.64707172;-.61825341;.85891712;.42370296;2.7737958;-1.565307;.59833497;1.1280806;.022411022;-1.7602506;-.84477532;.99372488;-1.9760213;2.7037039;.46925014;-.0014683572;1.2319959;.029363658;.13606916;2.5896993;.27948773;2.0985196;.50177288;.48273453;-1.2796923;-.67557544;.65135258;2.1041102;1.8437705;1.0840678;.881387;1.4944127;2.0532429;1.5876396;1.6537893;1.8418621;.082980424;.43931001;1.036505;2.7645466;2.5631077;2.3230302;1.411109;3.733748;-.87816536;1.8699465;.71328098;-1.6418557;1.253432;2.0293906;2.2209966;1.8410807;3.1286561;5.2375336;.93960476;.0067533273;1.2846899;2.6754158;3.3987124;-.34218451;2.6359055;1.2492243;.30361876;.87267733;.33559513;2.2158825;1.9354167;1.7988999;3.5321372;4.138298;1.9834099;-.43275413;6.564362;3.2699697;-.5581612;2.8322225;73.348297 +-.050744604;-.73675156;.69228804;.8638863;.15487759;1.3661226;1.9130589;.90875262;.66928214;1.7024627;1.0497611;1.9557265;.88443768;-.87314862;1.0427614;-1.1238179;-.74952322;-1.1058462;-1.6950371;-1.307837;-.25894797;.097120017;-.99878365;.81980866;-.43214959;-.44511408;.48142588;.82564265;-.35758552;.36878151;-.65119475;-1.8985065;.93011528;.15273587;.38018614;2.0638525;-.39723113;-.35774955;2.2767131;.025473304;-.62458283;-.2657966;-1.0916868;-.98944575;.0074755317;-1.0189546;.018571993;-1.2239406;.66427428;.5658915;2.39522;2.9776816;1.3128924;-.68616915;.92463821;.90771395;2.8811846;8.4898481;.71231472;4.8449841;3.0982275;.36697865;1.0459552;2.7819893;1.1096376;-.56692654;2.6685505;4.7626591;1.2036335;3.963326;2.7412608;2.2439973;6.8681507;-.13720098;3.3231587;3.4710581;6.0305805;1.0781854;1.1772969;2.7114089;.87336481;-.36944634;1.9013472;2.885;2.1777542;.68839067;3.0229943;1.6559749;-1.0470954;1.5161277;3.8641858;4.9657497;4.9194045;2.5514336;2.4945495;5.1875315;3.302712;.68003327;.96913373;3.5533767;-1.9855288;-1.4652591;-.7100302;2.1121914;1.0545337;.66035414;.82532537;2.9613085;-.66011316;1.7758845;.5469082;1.4313005;1.4597226;.46319208;.514157;-.36224598;.15981016;-.67319316;-1.2965424;.11089338;.11791144;-.13139002;-1.3349557;-1.1168188;-1.3978347;.049418967;.63292068;1.0283225;.72327614;1.1902107;1.8826666;-1.1091635;2.1018584;-1.0935007;1.2130587;-.26856318;1.09699;-.1961062;1.7053338;1.3248647;-1.5592746;-.67264909;.1702373;-1.8002084;-1.4289818;-.8536908;.90788692;-.92981088;-1.140512;1.190425;2.6724858;1.5381917;1.4710495;-.065731168;.76357305;2.4771643;1.9529243;5.7542453;.06877318;4.4762187;1.9058466;-.8825748;-.080035307;1.1855657;1.9469512;.7904883;2.7573018;2.1883988;.81687802;3.1542079;1.6559238;.97225744;4.5164232;-.39823887;2.1675434;1.3674762;3.5464435;.46845594;1.7293384;2.0803766;.013893141;-1.7249391;2.5549185;2.3797889;1.2118936;-.68269044;3.2890964;2.0542569;.21164653;.0096186968;2.6981134;2.8717928;3.5158653;2.8042333;.44354886;5.5581055;1.040657;-2.0124657;2.0229018;2.4086988;54.667213 +-.49923524;-.29615653;-.17670953;-1.7170318;-.58302021;1.3223956;-1.0014955;-.88337535;.15086707;-1.6926082;-.98389268;-.29846865;.427515;.15838674;-1.5176929;-.28856885;-.0959493;-.36625788;-1.8438871;.044635303;.48355526;.66262209;-2.0111501;-1.1458842;.25689387;.29195684;-.79446697;-1.2927324;-1.43214;-.53147608;-.42880622;.68148381;-.26217669;.3810761;-1.8895917;.01662511;-.11510668;.097579062;-.79023534;.75907642;.0039206063;-.74400908;-.783369;.063646421;1.5144761;-.43397516;-.005885879;.13658096;-.20571822;.36110267;1.4527413;.17371304;.4205654;1.5577469;2.1016591;4.0634131;1.8013508;-1.2867161;1.852434;2.4509342;.93207699;1.101796;4.638886;-1.2387214;-.39949921;1.1489006;1.778262;2.1398876;-.45852971;2.3260512;.86772227;2.0562193;4.4034462;5.530376;4.77037;2.7920742;1.1943107;.89640141;4.0700192;3.5292509;1.1615134;1.8152543;-.32133037;4.0723505;1.8538227;1.838176;2.8437011;1.4118818;4.8469768;1.9357678;4.2752824;-.5872739;-2.1212771;1.5454961;2.5387802;3.9665294;5.2037978;2.5272725;.95110625;.40753168;-.78930849;-2.8941946;-.12940535;-.94199055;1.0559909;.24071348;-1.3071349;.95217526;1.6750531;-1.8261498;-1.6844738;1.2258909;-.061338779;.83814108;-.16890492;-.9603923;-.49481097;-.33077952;-.12974487;-.56962413;-2.0087032;1.409012;-.89764404;-2.145416;-.23010756;.19419271;-1.6474314;.097936012;-1.0225712;-.64721811;-.012480419;-.30793768;-1.0492486;-.12017272;-1.1694565;-1.0674903;-.98675174;-.70617056;.32179043;.053010389;1.4990951;-1.2952014;.26583913;-.10504245;1.7946138;-1.7419505;.79257298;1.2277554;.34677511;.36966988;.24976014;.62863499;-.9733144;.54682487;.80412525;3.0379038;.29027945;-.85792583;1.8939279;3.3984587;-.53401762;2.1207137;3.4006584;-2.2130873;-.43921068;-.3496981;1.8783983;1.3206445;-1.3830581;2.6676698;.2545718;.43763024;4.3341517;4.8327842;1.9730382;.69013005;.76368695;1.283666;3.8506691;3.3830867;.39241424;-.94490439;-1.7671931;3.0761566;1.9081309;.9571569;2.6515069;-.23094656;2.5617738;-.25273758;3.8952134;-.15761243;-1.4080279;2.8626623;.7999934;3.2506995;3.6918814;4.0855618;-2.3482144;-.88010931;40.148087 +.3850089;-.27026856;.01297062;-.7397359;1.4084899;-.5815441;-.93534654;-.397219;1.1706439;.090923972;.25664446;-.7486949;.92886674;.28998429;1.039353;-.54122168;-.0071356907;-1.0305682;-.95654017;-.1965687;.84651679;-.77037185;-1.2411871;.29545426;.90757471;-.36914361;-.6967026;-.049006704;-.80827993;-.61804283;.047324307;.59487367;1.1405649;.29994655;-.018136045;-.83327955;-.34632874;-1.4628707;-.72827125;-.41286856;1.272156;-.40980747;-.69324994;-1.0243531;2.7103484;-.78034276;-.54879498;.57329172;-.12310567;1.8468488;1.8296404;.58655137;1.9876428;2.4931953;2.8920031;1.3053116;1.6539493;4.7460566;.50757819;1.7003988;4.443368;5.0158954;1.5806593;1.5990893;1.5947785;2.2543981;.36560613;2.6594913;5.0232372;.79696399;3.2579005;.51212263;1.3040133;2.7797968;.51998502;.57683355;3.2644243;-1.5451486;2.9562905;1.7862803;-.098713167;1.8286401;1.7230184;1.3978126;1.7168975;2.7029612;.5729841;2.0680003;4.1174111;3.0015447;2.4557872;.78878421;1.4541092;1.6666739;2.3987813;1.4466858;1.2758598;3.0224812;4.1679544;5.1246428;-.76816469;-1.4850546;-.775581;-.6509524;-.92649782;.38480785;-.3974337;-.068652093;.99066871;1.4763615;-.70400488;-.12541324;1.0761751;-.83617586;.89038587;-.097547993;-.91922575;-.73334014;-1.366272;-2.4655457;.8933419;-.3027426;-1.0945526;1.0197942;.68048328;-.11107092;-1.6779481;.61408591;1.0670801;-.93836331;.4971742;.77655309;-1.0526679;.24526806;-1.0397733;1.2684042;-1.3111492;-.61136544;-.1318451;-.78195494;1.7207696;-.77989423;.89700192;.23314238;1.6879349;-.7101714;.094770275;.36246523;-1.1796168;1.7908739;1.6675423;-.31572017;2.6797068;.51082647;3.5872502;.70338422;-.17252985;1.8823398;-1.3335738;.95542705;3.0027149;3.7989631;.84354579;.76877427;.9067958;2.4094639;2.5955765;2.057462;2.0952885;1.9241273;2.4793963;.22436336;1.2101339;1.9767046;.63702655;-.071182862;.90621197;-.8130402;2.5279119;1.2643837;1.0138856;1.4261016;.90262026;-.78237253;.81749916;1.104513;1.7709814;3.4019177;5.528944;1.6285509;4.2537346;-.066515602;1.6743369;-.3424775;.037895009;.76212204;1.2253631;2.1376255;1.4134904;4.1226506;41.786747 +.7280333;.78569484;-1.610543;.15476431;-1.472867;.25830194;2.3334;3.2582402;.57968271;1.3481383;.074365444;.1896518;-1.6912007;-.055686094;.59301066;.67592543;.52691787;.15153529;-.78400922;-.14713052;-.50215757;.6709128;.75702244;-1.8425591;-.2021794;-3.206413;.241963;.6082322;2.4017451;.70779192;-2.0064857;.78017735;1.3760161;.46691248;.51910973;-.85681552;.31466356;-.74541378;.68938708;-1.8457104;-1.128406;-.64148933;.59163249;-.1555129;-.73096657;-.97389895;-.26999933;.80373806;-.47823134;-1.4521537;3.6198635;.9437452;1.7258972;2.7194352;-.59773219;1.5015289;4.2730165;4.3042984;.25213075;.43843517;3.2438004;6.0834985;1.6384612;-.23283334;5.7581143;3.4807787;1.8492996;1.7831101;4.5380311;3.2383931;-1.3613675;3.789191;.13527344;-.12827127;3.0133579;-5.1563292;-.98499924;3.6364856;2.9101579;1.5588981;-2.4408572;1.8628876;.90705639;1.6627465;4.0867081;4.6769595;3.1219461;3.3296127;2.3472495;.15530318;2.2396386;3.363451;2.275805;2.1264098;1.2726829;2.8462;2.9550533;.25941789;.9496327;.032015365;1.138728;.97625148;-1.7295684;.95405728;-1.1062179;.90250528;2.9399817;2.2993944;-.30269924;.7153998;.83323622;-.12738262;.17273089;.77302271;.50161695;-.78290886;.64619303;-.85435706;-.26305059;-.77331716;-.42173457;-1.1877409;1.593104;-2.4599662;1.9649925;-3.1570797;-.47980756;2.2001543;.13457337;1.050853;-1.3658336;-.021181772;2.6073742;.38608965;1.6779178;.4536275;1.879853;-1.079632;.74809498;-1.3159256;-.56510246;-.10358146;1.232713;.61306357;-.34301269;-.14406195;-1.8022209;1.2390946;-1.3104608;-1.9974748;3.2226081;1.3896822;3.4096143;.21545734;-.24122226;1.4531155;.68717074;1.1792829;-.16357796;.36746061;2.0933509;3.7432799;-.99007922;.14572975;4.5124712;2.5719731;-.18238552;.36287042;2.7938454;2.5683382;-2.4489005;.69590026;-.28785485;-1.0093442;1.7742603;-3.409946;-1.0606569;1.381785;2.3788936;.30358735;-1.5341835;.3429518;-.25888565;3.256856;2.7429965;1.4959688;1.3367181;2.0812094;.42914265;-.72490376;.55598778;4.2192831;1.3100686;.77589768;-.98179287;.033100031;.51005602;.34687957;.41425923;-.20229942;48.035042 +.47793648;1.204151;1.1045007;.30347258;-.89630479;-.95657194;.70323771;.95977652;1.4994186;-2.0017257;-.10818083;.042661216;-1.2017426;-.89955938;-.31743982;-.65129131;-.36982241;-.39974511;.7079913;.19302385;-1.2489526;.40701377;-.76257139;-.13577338;-1.7273023;.31171954;-.20471704;-.33419874;-1.1134797;.20031425;1.8233724;-.22579563;.48406723;-.57347703;-1.4769815;1.4252768;-.64963716;.21013469;.62994307;.31110665;-.76944584;-1.1854327;.68497729;.43446019;-.42808861;.44261456;1.2041709;1.165841;-.91893023;-2.3614895;.9163363;4.4188933;2.864552;.59781069;1.2946076;1.7206291;5.0439215;4.451334;1.6026154;3.5121086;-.54893118;-1.249967;1.1813576;.9814617;2.3353848;-2.9806392;1.8202609;1.9455129;2.1267283;3.8942838;2.48824;2.6274862;3.0862384;.7453478;1.0815153;2.6381369;-.085823819;4.119617;-.43629923;2.856703;3.3278761;.87441647;2.9138906;4.4697838;.33137444;-2.2437696;1.9325889;1.1635517;2.4096041;2.6732767;1.6106641;3.4777131;3.5554504;3.8874936;2.4575009;2.5830152;1.8320483;.2841697;4.3466907;4.8561177;1.1130332;1.0504334;-.061860938;-1.1249434;-.21790907;.37932798;1.4200717;.45049307;-.20363536;-2.555861;-1.6489943;-.82651854;-1.4146142;-1.5762366;-.64803481;.54396838;1.2143584;1.8145261;.68978029;-.33796439;.10847595;-.96160066;.67144823;-2.1573672;-2.3822474;3.0872481;-1.1633452;-2.1407974;-.9102428;-.097398743;.087957114;.64724803;-.21113455;1.0275815;-3.9009585;2.57109;-.5057832;-.12416116;.96724594;1.47;.24939753;-.81203753;1.3107393;.37561616;.72295594;.84863812;1.3385389;.45696107;-1.7543598;-2.5958049;-.78821945;2.1739154;2.3488607;-.5502466;.78831702;-.36363089;2.644454;3.8759027;-.75367886;.9700948;-1.0420123;-.70708817;.40883929;-.10015506;2.7202861;-2.3330646;.054460555;2.199734;1.9591271;2.4596407;1.8194481;2.4984288;3.1028559;-.29457569;2.769388;.96385157;-.39578718;4.5549111;.095351979;1.3757223;1.6745787;-.70790416;1.0401036;2.5335975;1.0055124;.86018819;2.2068861;1.9170009;2.1412992;1.3144377;.023432488;2.8149171;4.4937506;2.8292127;1.8473897;.6692968;.084176436;.41278335;1.3339691;3.777082;48.539188 +-.58868945;.46910742;-.23051031;.57517284;-.1233421;-.54304641;-.17443164;.27311456;-1.0893151;-.0016455875;1.0533535;-.071105711;-.20943369;2.0433052;-.63881993;.13846961;-1.2016783;-.72804439;.85605949;-.93416941;.95028728;-.72716671;-1.1232274;.45391196;.28439516;-.94213313;.64404356;.14711227;1.1106565;-.10623405;-.71349329;.12787278;-.34955651;-1.5451123;-.051364128;.29987317;1.0743265;.174927;.43719104;-.77093601;-1.1836756;1.2611424;1.819482;-.46621701;-.33986327;-.58212471;.9092139;.38846371;1.4096472;-1.5417463;1.5162963;3.0368493;-1.1919211;1.3105334;4.3173819;2.4544079;2.2989581;-.36525175;.56642437;3.8453994;2.0706823;3.089927;3.754724;.245564;2.526978;1.306446;1.8908675;2.2740288;.81964678;1.3744245;5.3723216;.10074081;-2.2895305;3.6589808;-2.7624781;2.2910335;2.4115772;5.4311447;-.51669955;.8437041;2.5731459;3.7412274;3.0540891;1.5969398;3.1683946;.37046885;1.006652;-1.0841476;1.3411787;7.4178586;2.2778668;1.5684085;.60025257;2.6476221;-2.6732614;.06793043;.58492178;2.9396572;-.032963738;.56704772;1.1153187;-2.5591154;-.87943691;-.35133892;1.0697448;-1.1822814;.29364723;.29102069;-1.1988162;-.55843323;-.21756455;.68466663;.84356952;2.070528;.38119677;-.15717505;.3727527;-.93166542;.78142315;-2.0248539;.39073178;-1.6460974;-.85544968;-.4304378;.77800924;-1.9367979;-1.5326252;.46424827;-.76253116;1.3344624;-1.4286921;.5467242;1.5353825;-.22317369;-.76404941;.099733949;1.5264844;.77602643;.87951446;-.42795134;.39139417;1.978852;.40943184;-.87866235;-.50503892;-2.0147803;.71373755;2.5249271;2.0773757;-1.395403;2.161571;1.9407945;-.34989813;1.6319319;3.642509;.86290056;1.5027262;-.99239296;.24716765;3.8591204;1.4593691;1.8991292;2.8616142;-.10394413;1.5587598;1.5934237;3.4746096;1.5534537;.69045281;1.9754618;4.512846;.066319831;-2.7679856;1.1065508;-1.8611835;.57621974;2.3208096;4.4522004;-1.0806235;.87730771;2.5658104;2.3996372;2.0322165;-.40099809;2.4117324;1.7915765;1.3650808;-1.1862162;.72789949;4.9242949;1.707809;1.3344887;1.0884719;1.3140867;-2.795418;-.5323022;-.86224395;.7056424;.80237907;.1405094;46.010906 +-1.1482918;.50910783;.54806095;.54624861;1.3894615;.77513725;1.0008852;-.94801694;-.40983915;-.514301;-.79519409;-.50627697;.91895598;-.17892343;.4353115;-.33908078;-.52773774;.13132551;-.16404663;-.95332515;-.724473;-.25790778;.67343926;.88031811;-1.4122663;.47974932;-.20830455;-1.3250682;.67407793;.31310001;-.1289846;.1401034;.10409607;.70933545;-1.2062494;-.00089257775;-.04284079;.88446736;-.10843889;.32831904;.15518734;-.86608076;.57398266;.73273462;-1.7998939;-.33177009;-.58087903;.40546238;-.16169851;-1.0115948;2.6853297;-1.8158851;5.8775725;3.240555;2.2201564;2.6393542;.94301432;1.1607329;1.2960278;2.6204448;1.0158449;4.5741467;2.20398;2.6361568;4.8713388;2.9608636;.56046277;4.3364553;3.2411106;3.8792992;-.32517421;2.3476255;1.3184122;.79128122;1.1663615;-.24641447;.565853;1.2932394;3.5559435;.75591195;1.0198739;2.006309;.55054742;2.8211207;1.0401994;2.8890586;2.6992939;5.3270779;5.5870433;1.9383378;7.6759782;-.72724068;4.0433288;1.1893148;3.7930872;3.1854312;3.7789648;3.5354843;2.6321106;3.5701587;2.2425578;-.41120443;.55885464;-1.676105;2.3323667;2.4024847;-.86618215;-.82643104;-.060949493;-.69666445;-.5400179;-.50804317;.23603028;-.39797094;.17151867;-.1966591;-.58252156;1.1673907;.6388104;.21768983;-.91253269;-.28262109;-1.6408145;.24173491;.92377007;.87525558;-1.7335827;-1.4058011;.63909042;-1.0887629;-1.236249;1.0482076;.4162102;.85719889;-1.2022682;-.76767784;-.13012397;-.079280853;-.11107226;-.17650779;1.7381996;-.87816095;1.7788717;1.1755511;-1.9330662;-.40390578;-1.169693;.78478479;.31690049;-.61269546;1.3375763;-.46084777;4.4789419;2.2917643;.95834452;1.3459671;-.91685539;-1.1567767;1.5961317;2.0554304;1.0236225;2.1547284;.31575596;1.8970946;5.2179508;2.7230172;1.0133367;4.5591879;1.4876953;1.7641325;.44903323;2.9950187;.55201912;.57711864;.49665326;-1.3794092;.082459688;-.63777858;4.512403;.82385612;.27947897;2.0976059;-.31481025;2.9845066;1.5695846;1.5870993;2.503319;4.9084058;2.2361808;.6636399;6.0184827;-.45941082;3.7522058;.56493384;2.377212;2.2712817;3.7778642;2.6184912;.2258331;2.9602134;55.986607 +-1.0386894;1.0038257;.45521429;.088499241;1.6942853;1.9435201;1.9602169;2.2963765;1.6321354;-.93540102;1.0387491;.34242508;-.11504139;-2.0572569;-1.4946383;.97670025;-.55056864;1.5220696;.11157908;1.2979158;1.0754044;-.4783929;-.53117579;.34944919;-.041960754;.14308336;-.4064849;.81811208;1.5812135;-.54126257;.20922616;1.0986018;-.79024518;.055410031;.97706884;-.29832664;1.3935884;-.60880393;-.93193692;-.7966212;1.5852993;.36569372;2.3719704;1.0751482;-.65726691;-.99309725;.052883845;1.0790766;-.53546911;2.2792425;1.5478115;-1.6915141;-.37142822;3.6813734;4.7566872;1.976614;3.3306692;1.4455473;.99561852;-1.962324;1.8641211;5.3363566;-.60614461;2.5920088;4.5683942;.54469669;2.2145085;3.7130506;-1.4099486;1.0013751;2.4899082;3.9332695;2.7529671;1.9809788;.099086098;.38078198;.56400728;-.82048416;4.7427607;4.924201;.65364575;2.1402681;4.8844151;-1.2954286;2.1220036;-1.1725643;1.2197989;.81400019;4.581821;3.3183303;-.13933821;2.540803;2.2672706;1.9497724;3.8684759;1.0181704;3.5770304;4.3272228;.64812356;4.3769369;.49929512;1.3013062;1.0312886;-.54624653;.079055421;1.5823438;1.7658583;1.2276719;.80313104;-1.1596661;1.4315455;.49603474;.96279442;-1.0626082;-.86621577;-.55064213;.37178501;1.250578;.057992902;.080289349;.91687852;-.43398535;.13873549;-1.2289709;.54691052;-.29603282;.92850262;.56385618;2.0934613;-.033393886;-.27011842;1.3650546;-2.0507958;-.27734056;.75499129;-.9768557;-.99975121;-.85391921;.53802645;-1.3524853;.30346152;1.4854307;2.4820113;1.3534856;-.25166452;-.95427155;-1.3820461;-1.0382702;-1.1718075;2.11094;1.9848142;-.42050788;.0083169034;2.4652324;3.6931071;1.3783071;2.0292659;-.29002273;-.38473907;-2.2392492;.781528;4.3635988;-.62326139;1.1844981;3.3518183;-.86141902;1.0686355;2.3272185;-.66826105;-.58371246;2.4372032;2.8892767;2.6149321;1.8548504;1.3346748;-.5193727;.82136863;-1.1709974;3.570852;4.5675216;.1004093;1.0596719;4.6861911;-.99653703;.97617823;-.41656008;1.9555825;1.2711965;2.4907932;1.2619785;.45518377;1.9938275;1.4921308;1.6143245;1.7848082;1.2792802;2.4122961;3.000844;.29773238;2.542202;56.311913 +-1.3095148;-.87638354;.33141378;-1.4062806;.29668617;-.90118271;-.14788665;-1.140219;.10266488;.5549711;-.36091349;.18936837;-.40751433;-.47358996;1.2952244;.24510828;1.254604;.098608963;.039935268;-.71696532;.4455108;-.34530723;-.57772702;-.082201578;-.86213183;-.92190892;.72551262;-.062526613;-2.0008554;-.68614423;-.9507342;-.43981373;.16715199;-1.2015479;-.14552568;-1.2844882;2.3626049;-.28756943;-.28604153;.6827144;-1.5165912;-.044778772;1.6543565;-.36017266;-.57884288;.12363323;-.79948342;.15753329;1.4051958;.11940183;5.7916489;.19134578;-1.860495;5.7731452;-1.3395138;2.0716989;3.6272933;.40110499;4.2047319;.97363478;3.6905036;3.3753538;.22827135;.096391127;.83238322;.26947308;-.48218259;2.7639878;3.1071665;5.0669723;-.66269296;-.26739269;4.0963497;3.666419;-1.3641565;.10319023;1.0784732;1.9009269;2.8180699;1.7839893;1.757687;4.4921374;-1.2886747;2.8192356;-.68185037;3.2985396;4.6068864;.96045452;.57843536;.46923691;2.5304408;2.8027961;.54225922;3.5468502;3.3612664;2.8780534;1.9207319;6.1466446;3.6066022;.74256313;-1.5140927;-.48489243;-.077789977;-2.8827989;-1.2380282;-1.4615972;-1.9673998;-.96274513;-.82817888;-.1344088;.28126049;-.74556381;.25413957;.21775965;1.461598;-.18595044;-.7388761;-2.4681993;.17273125;1.2209876;.21959387;-.73268819;.83438814;-.86557811;-1.2185009;-1.3179281;1.9179897;.39547956;-1.7506784;-1.324856;-.27923208;.0044662352;-1.3675076;-3.2129772;1.1056739;-1.7869587;2.5176485;.70837629;-2.1606588;.91673881;-.56506199;.52394867;.25528356;.29696342;.29687327;2.2907584;-2.5743132;1.1226357;1.06564;-.6731317;4.2430654;.96912569;-2.8699338;4.4122219;-2.2462723;1.7614112;2.8616092;1.3297664;1.1911143;1.083498;2.4002695;2.1569028;-.83714312;.62338734;-.86797863;.10925928;-1.6641207;.93773067;2.7058506;3.7761247;-.34960091;-.86717695;3.499161;3.097491;-2.4406641;-.03261181;.80453008;1.9559101;-.52069712;1.4439297;2.0026658;2.7766647;-2.048435;2.67383;.23895672;.77893704;4.1804881;1.9011823;-1.6660032;-.46404231;1.2930703;3.840663;-.89711702;2.5593171;2.6193566;2.8808384;2.2641282;6.0200744;2.1809733;.31817326;45.644058 +2.2828028;-.34348822;-.59275198;-.37645262;1.6069678;.29368997;1.0288179;-.0099806292;1.5683298;.15269528;.98269075;-1.8683653;-.80630231;-.51426482;-.062391169;.48754901;.97532797;1.2453967;.59646529;1.6125175;.62167841;-1.1186799;.52306676;.64642376;-.58159846;1.748165;.40531012;-.4969109;-.93716419;-.58854151;.65859473;-2.3384185;-.81564653;.9593389;1.7492549;-1.5236278;-.94861263;-1.0743806;-.28949958;-.33834162;-.56433988;.1466347;.41452721;-.82691526;.49016243;-.67568499;-.52816761;-.7092644;.51912946;.76340717;-.16405661;3.6814013;5.634521;2.4274287;2.0298598;3.0004737;1.166068;-1.9770809;.96475089;1.571901;.78456426;.26707041;.94342685;3.1416848;-2.5332849;3.475548;1.4260681;3.9172974;2.7220252;1.8084182;1.9379458;3.9668696;1.8514287;-1.6425639;5.8667345;3.7680252;-1.6579945;-2.0268028;-2.0139482;.58565551;2.7164171;2.6200638;1.204494;.40594086;5.515099;6.1809831;5.0234399;1.622438;3.9902964;1.203544;2.1614273;1.5858941;1.9349352;1.3566805;1.5911152;4.0264058;-.063853398;1.8873096;1.7088569;2.0802121;.9474811;-1.0021764;-.41149753;-1.5992783;1.6917305;.076702736;1.4242561;.57709813;3.2540052;.056701384;2.008009;-1.3620143;-1.539753;-1.925822;-.95672321;-.37090471;.55755389;.34130403;.52238327;2.1645911;.4917745;-.57496536;.65328091;.94667941;.5964855;1.8505484;.56187946;.56852138;-2.2365124;-.404973;-.30969131;-2.9283752;-1.1762533;-1.2946327;1.9690251;1.0166345;.090354398;-.99615544;.050660606;-1.7456168;-.67399085;.39382404;1.0296257;-1.8411626;1.7423354;-1.2569652;-.12743965;.7575196;-.67612368;.84495997;-1.2403232;1.8006011;2.7627027;2.4483228;1.1263689;2.0879636;1.4061244;-2.5088809;1.0957613;.86895144;.52746421;-.31334367;1.1478834;1.6651828;-2.355499;2.9904528;.54602218;1.0489047;2.4142439;.63703203;.7258184;2.7818003;-.20029421;-1.2789261;3.5054433;2.6971133;-2.5654628;-1.5576205;-2.6114688;-.085466377;2.1590707;1.8688505;2.4617791;1.8619062;6.3317165;4.2279425;1.4855986;2.6463373;2.5285707;1.4815825;-.76641911;2.0616601;1.6130315;1.2715408;2.4536674;3.1855335;-1.3640535;3.0705814;.31759432;1.9243027;47.567612 +-.12067623;-.59769768;.97313339;.74308914;1.2084395;-.70259273;-1.9356872;.19024484;-1.3517233;-2.0081589;1.3093783;-.93564153;-.10255799;-.16574721;-1.6719272;.7470451;1.8097764;.12101112;-.015297478;-.38791049;2.1801641;.18427388;.2968846;-1.1290486;-.28694129;-2.2972553;-.35923213;.72810245;.1394823;.82420653;.47594303;-1.091135;-.15985164;.60642362;1.652985;2.0513604;-.64941204;-1.8220323;.30865219;1.643728;-1.0232606;-.40938479;-.53314459;-.85936278;1.9456222;-1.3707033;1.0648167;.9173227;-.17021482;-1.3609202;-1.0437334;-1.9520423;3.8025811;6.0394335;1.2400671;2.2785921;3.7325001;.39388841;2.7016966;-1.7193763;2.3393011;3.4981556;3.0576856;.49130991;2.2980294;3.2340105;.71754724;1.0818589;.86173403;1.7439054;4.5235376;-.98652613;.065898374;3.8150923;2.0553062;2.3746755;-2.0595088;.061823107;4.1413579;5.1737719;5.9988775;1.8630042;3.6326809;4.4743242;1.9411429;2.0618019;3.7846489;3.9036944;2.7813354;4.3976526;2.645891;2.8060927;.93793166;-.10050512;2.2910187;2.865015;-1.6016297;1.995086;1.8338965;2.7694321;.17261115;-2.8673799;.56519502;-.10993584;1.2873619;-.11999698;-.5951041;2.4121702;-2.8012505;-.18922782;-.71600711;.81391054;.42859951;-.34995839;-2.0984406;1.287326;2.9024062;-.83822578;1.5159284;.48506993;3.0153759;-.28457364;-.80085915;-1.917323;-.36278242;-3.6094003;1.5529119;2.1518257;-1.2455499;.22292091;.96706218;-2.2945716;.34742567;-1.0377687;1.227059;.18275896;-2.0514889;-1.3496976;1.0261034;1.0153905;-.70952964;-.87608266;-1.6192994;-.90839154;1.6319184;.50195634;.93186921;-.88887191;.85764664;-.29955226;-.66347164;-.67560405;1.5997304;4.9428835;.4111118;3.523627;1.3863523;.25053456;3.2181132;-.67195487;2.6181674;3.173512;1.5626788;.3909705;3.7916536;1.0709956;-.55503827;2.2791302;1.4373935;.93220288;3.8129799;-1.4154094;2.4630091;2.692451;3.5183568;1.9638586;-3.2286065;-.68511909;2.9536066;4.5023141;3.7162318;.95766503;1.1499045;3.45946;.23987223;4.0381222;1.5852178;1.6821361;1.8291419;4.6471095;3.386899;3.1421154;1.8604716;.3223964;1.635939;2.0897186;-1.5631098;1.6860641;.94339603;2.5472195;49.647308 +-.346259;.78820807;-3.0591288;.18876602;.55338359;.6441493;1.4089139;.83315033;.43689632;-.19967213;.29862565;-.41784546;-.071095034;.32353112;-2.5423148;1.4440451;.76822662;-.8214348;-.72072935;1.586612;-.24549811;.17079633;-.54738462;-.14231211;-1.0022492;.33981383;.99010277;.73595762;-.74368298;-.10825186;-.2136952;.82538152;.22958604;1.0086898;1.9781682;-.019318817;-.22323811;.31531176;-1.8436396;.57017875;2.868083;-.18905286;-.30207226;.68048376;-.55892962;-.44576156;-2.297425;-1.1750125;-1.3737358;-1.0716391;.68905354;1.7781752;2.158607;-.98363626;1.9494929;1.4812355;4.6794467;-.46422702;-3.4904702;3.4743066;3.1404612;1.0928023;-.22288381;4.732779;2.0465615;2.0804477;-.7350316;-1.7460424;-2.1620634;5.3510156;2.7068291;5.9006886;-1.2500906;-.14778143;2.2058442;1.373988;2.9719207;1.9378548;-.19307831;-1.7403729;-2.1129239;3.3007572;1.8646854;.71823525;4.9023399;3.0844142;2.8871751;3.5124681;2.7154589;3.6728616;2.8237264;2.6952701;4.2003498;-2.8909655;3.587213;5.8377337;1.9731296;-.60612899;3.6583655;7.0958929;-.3486971;-.53711778;-2.5070729;.23041596;2.8481002;-.86813563;-.60124898;.44067857;.67512548;-.018001249;.72118497;.19093068;-1.0309829;-.13691737;-1.9384235;2.832583;-.25374338;1.2573032;-.21677737;1.1768421;.84876496;2.6601322;-1.6730156;.8672263;.021384386;-.97532713;-.73785013;1.6607406;-2.5782552;-2.8344309;.64478767;.53056264;-1.7206804;1.7401799;1.8868319;-.22066356;-.70980376;.26321816;-2.0466418;-.46419597;1.2659171;-.6217919;.11241497;1.9226559;-.52386242;-.057763692;-2.4510014;.4366529;.029768175;-.50870264;1.0087433;.77776879;2.702647;-.85733682;.86097038;.6285544;4.0175538;-.37032032;-2.4170978;3.0122573;2.8554404;.96513033;.40564317;2.9090374;1.0715599;1.3791265;-.21106187;-1.0063517;.0032174853;4.2472725;1.1343749;3.2929323;-.26741478;.37877223;1.7113032;.49682391;3.3159533;2.6853657;-1.6324707;-2.1414378;-2.3214192;2.5533662;1.6703526;.43481037;2.1005862;1.7264221;1.0248668;3.6698124;2.2698133;2.5735607;.49478877;1.7520497;2.0209293;-3.0691767;3.3920987;3.4034665;1.7420101;-.68985134;2.0748963;6.1507392;38.110226 +.12620206;.0057396442;-2.320343;.5374732;-.73649853;.50931162;.29317322;.93046176;.64732289;.30080459;.35830829;-.64082706;-.31422594;2.515389;-.66400141;-1.0713751;1.1353531;-1.3515967;1.4567956;1.2636282;-.12561253;.6662814;-1.2036396;-.69353169;-.22013803;-1.3247292;-.2325059;1.7206452;.65379369;-1.0144447;1.0435911;.043988045;.34066018;.016729498;-.64824843;.56823844;.23706862;-.13200922;.98610938;-.56359613;.13031684;-.5384087;-.51334155;-.60848296;.42627436;-.42675745;.63446152;.44669622;-1.3903725;.26222593;3.7630343;2.196312;4.2690139;2.6225541;5.4670115;.73249793;1.3326217;3.9538209;.83609265;4.090991;2.9395499;2.758909;.19810484;3.4875829;-1.9393859;-.74795192;5.9994907;5.8055286;.70260572;1.195406;1.2189827;.40430012;-.76244897;3.2565432;.72123963;2.5973475;2.9227614;1.5966671;3.1301231;-1.434182;2.6615384;.41809776;1.8373704;.2922096;6.2068644;1.9520476;4.6244307;.83651227;2.7991006;4.0798836;.71547544;2.1477258;-.26343304;1.486936;2.6415381;.84411007;2.2914133;2.0964019;.61323774;-.97724551;.47556099;-.8744272;-4.0364952;-.60170579;-1.1641413;.22234541;1.0787888;.59262013;.38451788;-.88064122;1.0179045;-2.3526728;-.34531111;3.007324;-1.9541547;1.6602072;-.95906144;-1.4474182;-.45702735;1.3166687;.37618211;.23379135;-1.5830203;-1.0996354;.67010707;.95755333;-.93052846;1.3946948;1.3151319;-1.7137003;1.166774;.053888671;.41657397;-.93469596;.82489634;.66604173;-.6373558;-.011013086;-1.1865566;-.86500978;-.5367521;-.72791988;.4393436;-1.8174882;-.42279685;-.62096334;-.3191824;-.78510702;-1.1643271;.28061125;2.9775691;-.050223943;2.1940911;1.7136122;4.0887542;2.8950861;2.8038208;1.7127937;-.15054323;2.5332041;2.7110088;3.1100371;-.1616883;1.9418049;-1.3176697;.803029;5.1878338;4.1161208;-.25216284;1.3822;.47226751;-.27467471;.10048822;3.4204731;.039239027;.63128978;2.8244112;-.46604177;2.9610319;-2.7673378;2.061564;.97302818;2.5450013;-1.1563112;5.7336063;1.145026;3.1246305;.50130093;3.6462765;1.2835374;2.4169579;1.7132988;.73620933;.57561767;3.0696032;-.51890486;1.9475169;.084573768;-.0040101605;.22514074;56.783649 +1.461096;.15935512;.71078438;-1.0154885;.098394856;-.073819958;.35360765;-1.947858;.83093584;.384258;-.049940851;-.58613753;-.29711634;-.54068947;.32249036;-2.31779;-1.1305454;.49813029;-.023543259;-.24041767;.3679266;1.8065456;-1.0630177;.70814937;-2.0602334;.91072834;-.48428172;1.2869033;.36789891;.050404124;.72751236;.13200781;-.029647734;-.82039195;.19706537;2.1574652;.17065577;.85308743;.71951145;.32011685;.69111097;2.2344251;.41996878;1.131112;-.42262009;-.64324081;-.02087868;-.72005284;-.032725137;1.3663828;2.1717834;1.0120856;.71226937;.93545693;1.6827376;1.9069003;4.002007;2.0233274;1.6402385;-.51884115;1.5718883;4.9642682;2.1691072;1.9094238;-4.7170863;3.6972413;6.1245499;3.0946195;5.6228681;.74467939;3.4200127;6.7075372;.079358011;.53798217;4.0151505;2.9331901;.91892081;.50098258;7.5805335;2.8719776;1.4611293;1.4444377;3.756243;1.1539069;4.542027;1.2168928;3.689038;1.7977999;1.5237193;1.1241864;4.8767619;4.4592557;-.086499393;-.27429968;-.1156323;-1.7316296;2.6228616;3.1815426;.93094307;3.621309;1.4210386;-1.0478724;-.054550279;.75179595;-.73146904;-2.0261292;1.3418139;-1.1880935;1.4848413;1.1364217;.18841581;.031528652;-.67513108;.94050366;-.95896709;-.43985671;-.2676295;.53972834;-.24062322;1.4007329;1.944612;2.2748883;-.93558723;.30632871;-.40316594;.54123253;-.26318106;-.015036868;.93614382;.68992257;1.8965842;.23840624;-.1599201;-1.1036171;.32372212;2.4598904;-.85399663;1.0288134;-.44487599;-1.3176111;.2864933;1.7977229;-.84767669;.66085654;-3.14538;-.033618048;-.250312;-.3257269;-.3537499;.50351018;1.9714884;.60987157;.47096953;1.5174536;1.9749815;-1.3300339;5.1919332;-.19912757;.34776008;-1.6543385;.77329743;2.7002652;2.0227602;-.042356052;-2.9727516;3.3794286;5.4041128;2.2709188;3.2383623;-.25336137;2.419456;4.6316166;.38287324;.24452694;1.410578;.079456888;-.2927818;-.17584541;6.8365493;2.8713837;.8871882;-.29390353;2.0619423;.44067112;3.5510669;.63968581;1.6152865;2.2558873;.40232754;1.0936787;3.3761213;1.4833992;-.89934355;-.69606864;.41686609;-1.2806449;2.4567711;3.1260536;.44009942;3.2395554;53.012753 +1.6087527;-.34756184;.47763854;-1.3386742;1.4475781;.023014504;.3249819;-1.5398501;-.20806137;-1.1544727;2.1404471;-1.8127697;-.14855866;-1.0124024;-.63579029;-2.1241043;-.4392525;.50166953;-.30828163;-1.7469378;1.224717;1.3271451;-3.6472208;1.5680697;-.95380342;-1.6161197;-.23856848;.25329372;.11631303;.57619923;-.90253472;-1.3152311;.19616157;-.52695054;-.061736766;-1.0763332;.16399609;-.97408348;1.3835078;1.0207827;1.3994807;-.69723541;1.7277758;.29266724;1.5756526;-.09910576;-2.5543172;1.6151766;.22432072;-.028804844;1.8930509;2.5876162;2.4608316;-.95206165;5.3948488;1.3494797;-2.8728235;-1.0356244;.39306077;3.4319961;.65101039;-.27932414;1.8087937;1.6984035;3.2545636;-.33847311;3.1931689;3.386564;4.8049388;1.4605495;3.7876019;2.1572261;-2.3431351;-.65119749;3.4327185;.73558152;4.5815835;-.68809038;3.3699975;2.2751646;1.525547;2.1933384;.29676598;2.0841703;1.6650859;.6327998;3.2200553;2.097306;2.5878196;1.853901;2.2797768;1.096959;-.58553976;.8726899;4.5532365;1.9375067;1.6321217;-1.5173995;-2.9974828;1.3897902;1.2703758;-.59121019;.46646607;-1.4010696;.15093307;-.29126358;.55374432;-1.1243957;.64302135;-.29740077;.11446522;-.89516169;-1.187252;-.7091049;-2.2232206;-.53400052;-.54276758;.041830398;1.2521505;.36596212;3.2913094;-.30054486;-4.198175;2.4725125;-.10533932;-1.4703259;-1.268488;.91971445;.98928559;-1.2454991;-.78828174;-.23161913;-1.7166252;.13180478;.78575325;.22320136;.39236563;.4660618;.53406191;2.4146132;1.9468321;-1.198369;1.3477265;-.68953657;3.4304922;.51768523;-3.5309293;1.6859049;-.99610651;3.2499533;.76294982;.067859076;1.6113251;-2.1412098;2.7535667;.78110433;-3.5299199;-2.9842803;-.025488051;1.396553;.29956931;-1.9694723;1.1973267;1.5199137;1.7610995;.33109561;1.5096855;4.7269855;2.4507959;.9604674;1.2433654;1.0262368;-1.1610246;-2.9024787;.99951428;.62121797;3.8011069;-.01779213;5.0718093;1.5352478;-.37190714;2.494766;-.27585831;1.0520805;3.1352036;1.1691051;2.9601448;1.4803541;3.0676444;.77418059;1.3908775;1.9225442;-1.0711927;1.1351656;2.1394022;1.4940499;.94336778;-1.4877218;-1.1857955;1.2780035;33.00238 +.8546167;-.74049973;1.3624437;1.3436068;-.63928866;.97970736;.68873847;-1.980968;1.4328046;-.25438541;1.0957791;-.27058199;-.42580438;.74758321;-.20297305;-.046745989;.46716958;2.0899336;.51792669;-.18792553;-1.3935307;-.29407331;.40874234;-1.1178401;-1.9127178;.75914168;1.4948883;1.1445848;.66575533;.63501906;-1.6352082;.5925771;.69233841;.75561464;.050024826;-2.4842901;.75456548;.8496592;-.28879565;1.42986;1.1692705;.022698632;-.7096042;-1.1075388;-.33327177;1.030125;.52783978;-.91293287;-1.0219455;-.16206993;.18695794;-2.5391035;-.10438477;5.1372461;-.11761297;1.8190242;4.4556255;1.3147038;4.8508949;3.7075863;3.2142351;3.5127187;3.7225177;-.95418227;-.13954695;4.3407822;1.4828724;.37603641;2.0145509;2.6278198;1.1230255;3.1503654;1.6878637;.65869367;.78712839;4.7504025;1.1249117;.99938244;5.8098006;2.9962068;2.7201538;6.1724043;5.1349897;6.1269946;-.1298061;-2.3501356;2.8650601;2.800772;2.7676246;-.07234358;3.3358042;2.4448118;1.8971809;.39865282;3.3742785;-2.086061;4.2282495;3.3288574;2.7948527;3.8036082;1.6066866;-2.3478384;.7551381;1.9314989;-.11907486;.2647714;.46427801;-3.1041772;2.0210397;-2.934655;2.2311954;-.13363054;-1.6141567;-.91675562;-1.3867332;-1.5263041;1.6068957;.88812941;-.014156689;-.25129589;-2.1480212;.037924454;-.20859613;-3.0815287;-.85251665;-.28178334;-.24610002;.17044029;.022083642;.57225913;-.55257136;.72558343;-.059260316;-2.8777289;-2.1790919;-3.6753035;1.7058471;.59076494;-.23746268;1.6719133;.78178793;1.3113594;-2.4466929;-1.3986584;.53683507;.65892529;.24671352;-.47283402;-.48823816;1.2806053;2.1691859;-2.6183498;1.1165656;3.7016482;-1.5359468;1.40607;1.3322364;.69380724;5.2345395;3.3878384;1.621078;2.9905565;4.0130224;-.17183749;-.77639109;1.74362;.82677829;.44607928;1.6534379;.73415852;.42279783;2.0255332;2.5283947;.99463999;.081983447;3.6389732;2.0521576;1.679436;5.707469;2.5255792;1.1844679;5.197957;3.3520641;6.6594582;.80897176;.68834656;.66656375;2.1003547;1.3531013;.98322409;1.9606271;.075396001;-.045946468;1.1627326;2.5549579;-1.5721308;2.4816611;2.4916248;2.4049056;4.2229238;55.289677 +-.53319257;.13897331;-.36118942;-.84329945;-.27658167;.64302462;-.27539727;1.6475074;-1.3282449;-.85707825;-.30473179;-1.5404121;.26358056;-.26911348;-.53934729;1.255492;.23641494;-1.1534122;.90353251;.06459415;-1.2253538;.287074;-1.1308903;-.67998713;.26020637;.12516801;-.44528562;.41472661;-.92198884;-.10052226;.21816739;.69246656;.10347813;.03340248;-.86977631;.48696879;.17848466;-.46061701;-.93308425;.18640849;-.079583496;1.6907423;.59993529;2.1810462;-.84016168;1.3373426;.71189511;.083138473;.20928119;.00022792615;1.1026185;.36386266;3.1163516;-.95460063;3.1950953;3.9384868;1.1580373;1.3097018;1.3578382;1.5233642;3.0227609;1.6651375;4.6524119;-1.0208905;2.2831178;1.411028;1.0653986;3.8260863;2.2385626;2.8160415;3.5923915;4.0160484;.92779452;1.1951262;-.93099666;.16460046;-.17453457;1.7433864;2.6548295;3.2170467;7.0210524;-.28005835;1.1387109;4.6241846;.30975637;1.830092;4.9707394;1.0160043;1.7754917;-.97158623;4.9802718;2.1908185;2.0234346;3.4081182;.11856266;.375094;3.1352894;4.4748116;2.3719027;3.0733442;-3.2214148;-.82582211;-.97750819;1.5900936;-.73405957;.6229462;1.1270372;1.5236814;-1.0316793;.052657176;-1.9212438;-.77407718;-.66397029;-.27950186;-.38093299;-.17157887;.16151564;.2427365;2.0290151;-1.4629184;.01559818;.58407229;.26282278;-.88151795;1.2806259;.34864548;.17243691;-.76039279;-2.9077263;-.07229948;-.050236382;1.0652206;.80294222;-1.9426334;-.27723074;.92881984;2.4553347;2.114121;-1.8164096;.85266709;1.1416914;1.3072021;.67362422;.51119322;-1.4632745;1.345818;.052807521;.79546052;-.0080732573;.22329329;.74680692;.040753983;1.9148796;-1.6362557;4.1032414;3.9842811;.93970513;1.6737167;.94183773;-1.1515481;2.6033437;1.4598351;1.5190454;-.45701617;2.7486172;.87758702;.90347087;2.0249925;.62501198;3.3773346;3.523912;3.5207195;-.81497145;.85432714;-1.6610241;-.56371897;2.264179;.073904052;-.34830067;1.0504184;4.1881342;-.21579044;.052405603;4.7171645;.35145941;1.6375734;2.4898989;3.1727471;1.8085204;-1.6003329;2.2340243;1.7606827;.38769394;3.7628305;3.1232715;.39771703;2.0995216;2.2839122;2.6561098;1.1214919;55.554272 +-.6591602;-1.1260458;.2877765;-1.2693598;-.71030271;-.15728045;.08753597;.86541772;-.45400146;-.11012789;.52134937;-.7361275;-.24682981;.35812885;.16625293;2.2564669;-.14924709;.30563059;-.45501885;-.62903732;-1.982103;-.37192807;.033723354;1.0321978;-.97782302;.26009896;-1.7074821;.74368006;.36001524;-1.0573274;-.95691264;.20661998;-.24395536;.50956136;1.3189118;.95940053;2.0237639;-.73857325;-1.5694505;-.93587035;.36134964;.58188176;-.041800965;-.52167058;-1.1061544;-.49190533;2.8224475;-.16175678;-.44013828;-.54897726;2.3858197;.77371675;1.0151601;5.2231345;6.5394974;2.5147104;3.3562942;.070983417;-1.0131687;2.1748128;3.2782981;2.1622593;6.1086202;-.29940656;-1.8569465;-2.6529574;3.2341127;1.1593187;1.813004;1.1422064;2.6597612;4.4229307;2.9749269;3.0973446;2.4257329;2.638216;1.8989768;1.7606893;3.383801;-.48123485;.23253521;1.4049095;3.1668699;1.6204395;3.4393108;.57825345;2.452764;3.5365591;-.8755728;3.6909206;3.1223884;1.1917831;3.4893012;3.6480908;6.1120028;1.6186438;-1.0690811;3.7813308;1.196936;-.62581235;-1.0361749;-.301249;1.314795;-2.3890073;.19757332;-1.1566076;-.36285666;3.0002584;.74501967;-.1515165;-.74357069;-.11721018;-.74597782;-.61982411;.34024447;-.42098323;-.0085449852;-.68174189;1.1175226;.17725648;-1.8020942;-.99595952;1.980569;1.4118968;-1.985772;.56055748;-2.0384145;-1.1816874;.27864322;-2.9665771;-.71682125;-1.0843821;1.0867486;-.10986215;.95357251;-.43984064;2.8178415;.84632021;-.44285962;-.25898942;.50096291;1.6389164;2.0353749;-1.0249156;-1.2476482;-.072726421;3.3252478;-1.2060746;.055061106;-.62128735;1.9057328;-.041577101;2.0859065;3.8177135;4.6113462;1.3062016;1.5449294;.23522004;.29858878;-.69486004;2.9965312;1.4158515;3.4508672;-.055401552;-2.337292;-1.0922621;3.0788739;-.65377915;.95941454;.48906246;2.5165732;2.451375;1.791397;2.4019089;1.4815409;2.0301895;-.30878532;1.3417352;1.240761;.034870405;-.33945987;.75932699;2.7493477;1.4931076;1.2578192;1.2187643;2.51139;1.8813616;-1.0151496;1.4312176;1.8792862;1.3551716;3.4078753;2.7466028;3.6416855;2.352663;-.13190037;2.4228733;-.20755416;-1.4435344;42.971626 +-.048008442;-.3368645;-.19690368;.1215117;.39899722;.99347186;1.8137566;-.83171421;1.6301249;-.51397794;.3972041;.42572105;.45719972;-.068668082;.47886211;-2.0887022;.29823059;-1.3610158;-.4320145;-.011358236;-.94067329;-.45943388;.5589273;.80473632;.55908322;-.2444092;-.2821202;-.16252567;-.17020422;-.57852775;1.0089561;-.88571;-2.3690209;-1.5093526;.74218625;-1.7478087;-.12951081;-2.092201;-.50028002;-.51522428;.70103735;-.049728576;-1.9051757;-.3487407;-2.2779083;1.13307;-1.8816689;-.81682563;-.26089978;-.62216824;.56575274;2.1330881;.14018071;3.7781463;.87375152;-1.5640638;1.3665783;-1.70398;.78946185;1.0652443;-.16241112;3.9036429;1.033728;.59598243;.50583804;-1.3832207;2.4097254;.95855069;3.4395647;4.4131999;1.8367877;2.9440107;5.2314405;1.0619328;-1.2194865;1.6126453;.25626969;1.5224622;.63962436;2.4560554;2.089005;.43578354;1.9128567;2.622906;1.765426;.10274955;2.753094;7.3568544;2.4353681;1.0702962;-.50362337;2.9437809;-.98589206;-2.2557795;2.7325079;2.2025654;4.5294018;1.6846434;-1.0650494;5.1016293;-1.6303307;-.95846981;-.4183484;1.3525704;-.69813764;.13500617;2.3334794;-.28392494;-.20108168;-.23428079;.082479753;-.032644495;1.3624412;1.1152649;1.3986007;.89158154;-.017790399;-.97151661;-1.2585769;-.69370615;.54217088;-.48000535;1.4301922;-1.1535829;.69268942;-.76743931;.36168012;-.34865686;2.0066113;-.72829139;-.35348678;-.65337366;-1.1577739;.2698192;.47822016;-.55733818;1.7451578;-.6619361;-2.0813289;-.59939629;-.50891525;-.85776538;-2.067605;.78298622;-1.9751354;2.0143116;-2.5135067;1.1059741;.98678273;.77209854;1.084874;1.0071276;-.47944996;3.4280221;-.79014093;-.35827023;1.3235595;-.78244704;-.20846044;.046485152;-.55699259;2.9411745;-.61679733;1.2784594;-1.0542902;-1.2038757;-.43044233;.1753093;-.21920267;4.7504053;1.3897783;2.3909004;2.6961119;-.40424836;-.84040946;1.114962;.46718919;3.4165483;3.7754166;2.2985752;.91053104;-.65849131;2.873672;2.3931997;1.5641052;.080539733;1.6075313;5.155365;.49344826;.24862985;-.3614479;1.412889;-2.1534042;-3.1366322;1.7602881;3.9928818;3.9492893;2.4870827;-.02929298;4.7669568;32.425682 +.073427252;-1.3893657;.2292363;2.2523735;.78497308;2.3608186;-1.4536275;-1.3935381;-1.021733;.91470432;1.8843918;-1.0667566;-1.2233969;.74518085;.58637935;-.40457132;-.64917797;-.78116834;-.01082511;1.380477;-.049070049;.60208768;.6190151;.09612833;.80352449;3.4081855;.10634012;.57805574;.76514632;-.53784996;-1.5271505;.2770316;-1.6692352;-1.3568588;-.66463369;-1.4422072;2.2293851;.21854736;.71655798;1.9491669;.96304542;.49686474;-.61373991;1.0376295;-1.6400715;1.3316392;-.26108325;-.49646631;-1.0043461;-.54571629;2.046169;1.8748323;-.71735924;-.12130833;4.323185;4.8007078;6.1878834;1.7765117;4.5870972;1.1044656;2.5710785;2.51652;.61946368;1.0861894;4.77285;3.3655369;1.0475615;-.176195;2.2513144;1.4066719;1.8038251;1.9021261;.32677114;2.7524564;3.5158734;1.5382546;5.5125098;2.0199747;2.848999;2.453177;.80254668;2.7655454;1.6141638;-2.9114552;-4.5527773;.65727359;4.1248598;2.5492942;2.4338622;-.74753809;.53180969;4.3036656;.51668203;.57377809;1.4638585;2.2908027;6.7671008;3.9813623;3.5664699;2.6486256;-.0063702189;.26997557;-.25057435;.85043508;.42539194;.62002146;-1.2252798;-2.1987138;.21709079;-.56636029;1.7505627;-1.0721052;1.014953;1.2909333;2.0108588;-2.0049984;-.17239155;-.89776647;-.83646137;1.5024755;.18017656;-1.7058345;-.20686145;.4090654;.19318469;2.2318316;1.0091567;1.6326007;.50458187;.72112674;-.69480544;.042586848;-2.0961492;.19735672;-.55843627;-1.4516885;1.3286828;-1.0196775;.9145171;2.8168349;.12481759;.50083381;-1.6166511;.272008;-.47301036;2.5857475;-1.1801212;-1.8375863;-2.0760241;.009773856;.63660055;.071802244;-.93358976;-.95106417;.80784255;4.047369;2.704809;1.1916944;3.7003233;.99509436;1.4395694;3.0166979;1.561092;.49001652;1.6908987;.06073558;-.96692437;1.7773583;1.1254429;.94592434;2.007746;-1.3962325;-.24236055;2.3044803;2.4708271;2.2506201;3.5747645;1.3795193;.66445208;1.0950626;1.495628;1.2222983;2.5670707;-1.3383778;-2.6320448;-.36867633;3.3332038;1.402366;1.9951253;-1.5617069;.017723067;3.5370622;1.3067012;2.4719834;.44585612;2.2779393;5.2635069;2.5987167;3.0114887;1.8380636;57.138241 +1.5339088;-.96197462;-1.3474052;-.17287436;.2292887;.68100774;1.0285823;.38006285;.78692877;.91201156;-.15027264;-.13539474;.72857946;1.1620963;2.0311282;2.2922685;1.8061955;-1.9010034;-.31745303;-1.0845329;.39773646;.5409624;1.7949328;-.73359412;.015198874;.66570193;1.2936468;.18426108;-.91793555;-3.2213781;-1.2068536;2.0987;-.11816599;-.958781;1.3257809;1.52578;1.006345;1.3009098;.67189169;.68814021;.56250757;.34714508;-.3954941;1.1578319;-.030987613;1.1834621;-.2964927;-.50807065;.76436341;.74230999;3.1736512;-1.4841204;3.2560165;2.539701;4.6951709;.17261548;-.073346108;6.2732058;2.2751324;-1.5686954;1.5791291;2.5516214;.2578024;2.6233659;4.9896717;1.8216065;1.4664533;.57769519;-.57483953;1.0074574;.34745681;4.0285106;1.1842057;-.86007094;6.1791086;2.9338076;3.3960662;3.4752996;.58749765;1.2638981;-.021878965;.96752131;-.0211441;5.0187216;3.1760485;3.0117111;4.654572;1.3269951;.34148252;-1.6940488;2.9599504;1.0890726;4.2596159;3.761852;.15577213;3.4511979;2.0560031;3.7025399;5.6301556;3.6351106;.79862809;.044846132;-.86715782;.38744381;.92093098;-.69158417;.15121827;-1.7695664;-.93602002;1.7490892;-2.0439181;.087532237;-.95115799;-1.8206298;2.3630662;2.6809943;2.2162411;.29236126;-.46016863;-.15165375;2.0776587;.67298537;.47806016;-.11842189;1.4170364;1.1044974;.81643814;-1.2156411;-.39655006;-.36033043;-1.86809;2.0968606;-1.0430088;-.55246884;1.3953949;-1.4878861;.56514984;1.0009384;-.16301419;1.0006061;-.0072696423;-1.0198076;.9603641;.94575852;-.70116037;.39678371;.11117624;-.6218679;-.083604746;.10110032;.97894049;-.83218086;3.402698;2.782748;2.5625854;-.87692899;.74729395;2.3716726;2.3617013;-1.2606385;.43724096;1.8573694;.88302082;1.3704903;4.2240868;2.0420136;.87622732;-.27294171;-1.9939821;-.12260683;.92889571;2.624541;1.017933;-.59148562;4.7150016;1.7907538;2.3520331;1.2191379;-.94699973;1.7855947;.097616188;1.3613077;.25577268;3.3552153;3.1259906;2.7929809;2.9199197;1.1730827;1.6005518;.35289252;3.3252709;-.168852;3.4303844;4.232481;.57246327;2.4760561;.94116396;2.4486825;4.1060743;1.6676694;65.311775 +1.9458987;-.7208336;-.25798613;-.15017879;-.35446152;-.38649726;-.70926112;.08116547;-2.0762496;-1.8320658;-1.1128699;.49626961;1.0775254;2.7384152;-.6474365;.60710484;-.079648539;-2.6286879;-.93682069;1.543566;.67303526;-.17409633;-.77183598;.48946735;1.0312774;-1.8725796;1.865849;.48497409;.069324121;2.0162852;-.9106313;-.47253615;1.2100688;.37586188;.63571852;1.6845047;-.23673229;-.14153884;-.16747943;.21837337;.71737802;-.88677818;-.70970058;-.21495812;-.54126817;-.73523593;1.1562427;-.10418469;1.0247133;.73112333;1.8429725;2.1520419;-.068266913;3.6237638;.75629807;.88225925;3.2924047;1.2126089;1.9501977;1.7863278;.062794715;.64610422;1.65632;1.039466;1.4259434;2.9096723;-2.3020563;1.8876556;-.73436648;1.4283118;4.3933568;7.4097528;2.2844157;3.4079859;3.6610792;3.0405765;-.57199591;2.1626985;3.4733343;-1.3680201;5.9836035;-1.9901758;.6281926;-.24668141;2.9411471;1.3211613;3.1749761;4.9432821;4.6766162;6.5842853;1.9781873;2.9551306;.81210113;1.4437001;1.3136867;1.5903887;6.3654408;1.6916755;-.39211372;.8502596;.58781505;-1.002082;1.2695664;1.266387;-2.973439;-.80995363;-.52237785;1.2707167;.28700632;-1.1817048;-.080226444;.02969693;-.18722147;1.9714234;-1.216189;.20707807;-.58172393;-.55628937;-.45387021;1.5134336;-.39341304;1.7903279;-.17328724;1.6560711;.2767818;-1.0963361;1.5614812;.99612349;-1.6549306;3.2275043;-1.0225506;-.70986027;.39883077;.98757589;-1.6962248;2.2670648;-1.669131;2.726995;.4548429;-1.2501552;.27798229;-.69890881;1.2403083;-.10663927;-1.1149968;-1.3279973;-.87481236;-1.4974256;.48855335;.56385499;-.36661798;1.6889583;.79466134;2.2288651;-.43693873;.069672398;2.7868378;1.775658;1.2094189;2.9589198;-.25659111;.28177822;1.1385963;.68797922;.0061440938;2.2693732;-.84186053;.36287624;-.28494123;.64366931;3.2774141;6.3392873;2.9958966;3.3375423;3.833735;.78548175;-1.755466;1.1392946;1.5509944;-.053916693;5.5489969;-1.494349;-.078750409;-.89374357;2.0832505;1.5314323;2.6115787;4.8714871;2.5463521;4.7089033;-.049223434;1.9553521;.029344197;2.5505791;1.5394679;.93525511;4.3340049;2.9993224;.55955982;.8069737;47.440254 +-.074938066;-.71630299;-.37383878;-.3210392;1.2766457;-1.288069;.53459573;-.32722527;-1.0712171;.21044099;-.15266962;.8236019;1.1606582;1.4634777;-.21604155;-.47023836;-.61480826;-.88897735;.93771291;-.40067661;-1.2385066;.26598373;.10353153;-1.0996923;-.66467774;.71555573;-.68749601;1.1762085;.92325336;-1.5385034;.35834476;1.4281765;.99637598;.60798037;1.1951371;.58234751;.15375704;1.6059318;.57879132;.52524114;.42700416;-.49223047;.30306929;.70953023;-1.077845;.047665894;-1.9507302;-1.029959;-.92310214;-.21301311;3.2990887;2.3355746;2.6122899;5.0695944;-1.6978704;.57176316;2.9479361;2.1628132;.3002964;-.38875753;-.74212974;3.51349;-.32022598;1.3796393;4.912437;.77737564;3.2262046;4.5670414;3.8975601;3.5476031;1.0399528;1.6176513;1.8717175;1.2191108;4.0225539;-2.6129401;-1.5238783;1.1825254;4.5270972;1.5783406;1.9515673;.33587703;-.51539934;2.946887;4.8490896;.72586155;7.4198294;1.9468532;2.6797907;1.1805121;1.4941716;2.1611831;1.4427383;1.4546465;3.8150241;1.0601919;1.0582993;1.4324514;1.1944361;.083042532;1.4784615;-1.2484165;1.1599932;.59984195;.98535556;.42752284;-.12295675;-.64476126;-.61745107;.14427999;-1.000955;-.75988424;.44847694;-.78635943;.18345384;-.51876616;.35142237;-1.5230665;1.0877284;-1.1379352;-.3398211;-.54317266;-.81483966;-1.9005517;-.58444613;-2.1017544;.2361532;.81373477;.89500785;-.3832061;.75786865;.081652865;2.4243221;2.6702924;1.5842978;-.61167943;.95604718;1.3384271;.56138802;.69254643;-.64906317;1.1482887;1.5910982;-2.6366625;-1.1475391;1.1880275;-.3102555;-.76951993;-2.0934424;.7201395;2.6733077;2.6339447;2.9616294;5.5336652;-1.6102098;-.40607285;3.7068574;.99201757;-.5989874;-2.0708044;-.89104283;2.6508739;-1.1435635;1.3131924;4.996902;.28986582;2.0701406;1.4066328;.99053568;3.8154829;-.76253223;2.9720759;1.7055428;.88291204;1.4706656;-3.1623299;-.85492647;.46361208;2.5781398;1.9077425;1.2491673;-.024168953;.56320661;2.8402615;4.0726027;1.1331315;5.6847358;.65822816;1.9537002;.92145854;.82722533;1.5603174;-.81279081;2.6932964;2.0177484;.22057186;.13458815;1.1879301;1.077949;-.24132138;47.409729 +1.1048074;-1.0476135;-.75890452;-.72022778;.29982799;.97473574;-1.4013573;-.22104768;-2.4673154;.83639079;.10393345;-.80146021;1.196179;-1.4353741;.071276076;.55912793;.032794219;-.57907683;.84666061;.2649664;-.46227756;-1.1384232;-1.1677631;.066183984;.14699346;1.6862582;-.72989571;-.86960065;-1.0901569;.57043868;-1.2325522;-.13373052;.026823863;-2.4232616;.41804782;-.92277831;.22855721;.52994871;-.092796177;1.3249125;.7378217;1.4157685;.086572163;-.91158259;-.071487784;-.87337416;-.89843374;-1.8036852;-1.2444013;-1.5130823;1.8410465;5.319346;-2.7295041;6.3075409;4.2639685;4.4842973;5.0564857;5.9085002;3.7888136;3.6986659;2.5229423;3.0040038;.79948741;1.3068006;3.392246;3.8041718;2.756577;4.1675448;4.0856967;6.9012346;.61947763;.8547169;1.1321521;2.7973802;.93231225;3.8511145;.55213749;1.6791139;2.943862;2.9467833;.2453136;-.21415439;2.2807679;1.5652739;2.7514341;1.42443;2.9247746;2.5203652;-1.6591396;-.025664009;3.1633229;1.5759627;3.7231281;3.30708;2.2067909;3.7631576;-1.1228623;.55084795;.23324637;-.60671556;1.0000612;.57115674;-2.555958;-.13042513;1.619216;.050438277;-2.198904;-.93544316;-.98680043;.47189265;-.77708262;-.093698405;1.7762957;-.32671741;.72283471;.59929258;.63816214;.75038433;.17397293;1.1330392;-.29399708;1.1521629;-.37100163;.43879566;-.43466139;.61303473;.68369663;-.73808229;-.89937288;.21018605;-.59315062;.070229568;-.22312558;-3.0886755;-1.6761675;-2.4517515;-1.6770512;.60872406;.1781961;.62000197;1.1726675;1.4616194;.14006241;.22406188;-.7920171;-1.1330017;-.87955695;-.87892634;.11151688;-1.543741;2.6943336;2.8624921;-2.7478099;2.253299;4.2554088;2.9895201;4.4154482;3.6605363;3.0922201;2.3949442;2.4653361;2.713299;.93699932;-.5929957;2.2264628;3.5202446;2.6340795;4.0448494;2.9588242;3.9721949;.81510997;-1.2204912;-.85259557;3.0201631;.95178592;2.3560493;-1.5139799;-.55016559;1.6280726;.71132863;-.2134534;-2.7614212;.73801893;1.3902906;1.5553923;.88180202;1.5395048;.99154049;-3.0808463;2.3885384;2.0228646;.4841693;1.5005263;1.0078599;1.7022009;.81840998;-.56292373;-.0097411033;.31963968;.6171025;56.683754 +1.6459491;-.6566298;-3.0176342;-2.4285452;-.39044487;1.0771885;1.6195098;-.36913705;.72914332;-.37235954;1.6870204;.76567388;-1.3232641;.30400699;-1.4612596;-.30367708;-.12309092;.56477356;1.1888762;.12334845;.46273163;-1.1104628;-2.6374257;-.9167273;.54239339;-.051783103;.022535082;-1.2155459;.86684054;-.96073419;.77098769;-.0011489126;-.66044503;-1.2113858;-.8791675;-.70446855;-1.7279457;-.34459621;-.61210543;-.23492914;.32544696;.15933065;1.2287399;-.44702742;2.0153639;-.92239797;-.031351537;-2.3701594;1.6581743;-.45108479;1.2298037;-.73770159;2.861372;.43281975;.96400249;4.9928327;2.289259;2.1455312;3.8409653;.6725629;3.2699435;3.1798666;1.8186738;2.5361023;.10194377;3.1259344;.016038606;2.101393;.65063703;5.0759139;2.4161334;-.23536503;1.4996378;-1.3061162;2.4742484;3.1606948;4.9871359;3.3998628;-1.7351292;.7165668;3.9224501;6.5662966;1.8031646;3.4821267;.40913099;-.019079931;1.2974741;2.1068087;4.965271;3.0529659;2.8621309;2.9964378;2.8072839;2.3999701;4.149509;-.096608438;1.1010209;2.2240219;2.9135447;.12486797;1.6060044;-.059334468;-1.5894879;-2.2382975;.76559931;.93418121;1.7107754;.00068229594;.012597818;.29376107;.57929862;.49283636;.027618133;1.376894;-2.0056136;.52463537;1.3860897;-.75915051;.97195882;-.41596708;.89988559;-1.0010123;-3.3226962;-.91448772;-.26290074;-.68739033;2.1130095;-.96703869;.12250657;.54077965;.77237636;.38154024;-.64650905;-2.5612264;-.7433722;-.27094021;-2.8616836;-1.5973166;.15787181;.97344339;-1.1945835;-1.1118135;-.73329502;-.38990912;.83307946;-.31106567;.26717338;-2.1084864;1.327649;-.2450998;.84435713;-.22827122;1.8144271;-.76149821;1.2428966;6.0261097;1.1944687;1.1577159;2.5960011;1.6242598;2.0390804;1.9695991;2.8382277;2.4467118;-.034729611;1.9503597;.0023647144;3.2313638;-.056083776;3.0402193;1.1912805;-.7131114;1.2695658;-1.9684933;.89482796;3.6965725;3.174283;1.5035369;-.098357007;-.36267027;2.4460998;5.0175743;3.3025818;2.0915315;.65839344;-.099690184;-1.5706965;2.0476937;3.6784592;3.3289318;3.546406;1.6193219;1.8510276;2.1177006;5.3810058;1.8718234;-1.2824785;1.2932312;1.2508;-1.2745142;51.171776 +-.82418406;-.94604754;1.4560931;-1.2382194;-.31019136;1.0529531;.057398282;-.32726035;-.59483713;1.4227298;-2.531492;.34351543;-1.2550588;1.5450703;1.4319359;-.039405677;-.23589556;-.81182158;-1.2973993;1.5794382;.018777361;.40282866;-.41867882;-.59683657;-.94248796;.57394785;1.1845071;.17791703;.0089935325;.37497482;1.0100738;.76534271;.82221895;-1.3833257;-.76708859;.0058129043;-.7237258;.27330229;-1.2958326;1.3799505;-.19622304;-1.2952868;.30796754;-1.4949611;.13774711;.68039703;-.21930782;.23888047;-.096571997;-.56398231;3.4900327;1.7617838;3.2744277;3.0483334;5.4778028;2.1093552;-.073346227;3.8975444;5.1455564;1.7479743;4.6187701;3.7011549;6.281673;2.1924067;1.9311949;4.5416594;5.9706979;.91468191;-.36221725;.70654255;-.94095409;2.979892;3.1306446;-1.6253816;1.8007804;2.8293881;.19171694;-.018063832;-.18078317;-.74737042;2.7355547;1.7208314;3.1936846;-.40925524;-.052811339;5.8389306;4.3362651;3.3283546;3.6598256;2.1363294;1.9454956;.13239641;-.56007212;2.9959373;1.3366417;.960545;3.9169438;3.9442074;2.2940431;.73770595;-.50820208;-.12953579;-.78408587;-.029221112;.66263968;.045195069;-1.0738958;.51068622;-1.8034183;1.8128035;-1.4900525;.057775162;-.3322345;.20435406;-.33727935;.81399667;-.32652766;-1.3198464;.79118824;.94847912;-.18926682;1.0487148;-1.7099941;1.1200631;-.33411509;1.1169868;.64580107;.57012129;1.3025209;.48992988;.74867231;1.4197997;.58999926;.033367064;.53016144;1.0430841;-1.3191032;1.9085616;-.92251152;1.5385518;.51868635;-1.6620265;-.88756776;-1.5548124;-.41499653;1.676538;-2.0243938;-.5829016;-1.1625313;.69726652;2.6320643;.87737405;1.5038869;2.2650445;4.02351;1.198505;-.026249509;1.6103266;4.3352194;1.4093533;3.9257772;3.1624432;4.4012237;.59529549;-.34771004;3.9984376;3.9224734;1.0507344;-1.0322967;1.656054;-1.5174984;2.9339716;2.1776841;-1.9050567;3.1095066;.92746389;-.1419737;-1.0205301;.068283685;-.84176791;1.3682051;.60846663;2.8796153;-1.684693;.60958415;5.5041685;3.6892428;2.2673085;3.7882264;1.6029788;1.428596;.40998754;.59272552;1.876545;-.96888071;.58212328;2.0758846;2.4611351;.49267012;-1.1742055;52.203327 +.39880514;1.482058;.61546159;.032819092;-.0039737965;.64854968;1.1617887;-.35733399;.17274925;.96053237;1.0822741;-1.4843634;-.032649968;1.14092;-.22498225;-.96453947;.46116596;-1.036981;-.1486987;.53415602;-.69512165;.75312841;-.46426311;-.57496673;.8939268;.71150446;1.8307308;-.72493136;-1.2561771;-.74489427;-.69300199;1.0499456;.81267935;-.40058741;-.45244178;.47988057;1.5184088;-.83686721;-.56906158;-1.4145733;-.54258811;.29386777;.041625164;1.396405;-.67278051;-1.2930509;-.89247268;.44188443;.73447657;.54542482;4.4844637;.71919769;5.9230528;.31176761;2.4379501;2.2252064;3.4544635;3.1417651;5.8294411;.50879371;2.8682311;5.2207046;-1.0551169;1.3588361;5.3038378;1.6072813;5.1557813;7.1197004;1.441771;1.4840921;1.928031;4.4174514;-1.4423363;5.5107441;3.3189785;-.44849104;4.2935882;4.8059731;3.0533557;2.5567122;1.144676;2.8298576;.83751291;1.684005;.55589265;1.2663434;-1.8552904;4.1364374;.04618353;3.9389524;1.5602363;1.3442789;2.8468468;1.6711494;-.27969694;1.1989715;-1.3063232;-.89322788;3.1719334;4.5816464;-.30253723;.16783215;1.0936415;-.30297345;.78780878;.95350605;-.31769609;-.35928336;-.80625921;.41197819;-.58853161;-.40099758;-.49186605;-1.1378877;-2.1707289;-2.3353932;.95756447;.33561522;-1.9455055;-.12356921;-.66946864;-1.3979446;-.090588942;-.78759551;.39221263;.86718524;.80239618;-.92867696;-1.8011709;-1.8757406;-.61683583;.43798485;1.7836263;-1.5269275;.52832109;.29056147;-.686131;.82377708;-.078182794;-.99812084;.96598214;-.073431946;-1.0666386;.3878769;-.67359012;-2.5580981;-1.3996003;1.3351378;.5407117;.34982049;3.2144175;-.82178336;4.7616029;-1.0359447;1.1130099;3.1504042;1.9729259;2.847204;3.7995152;.2268997;.98372293;2.835386;-1.758608;1.1706718;4.2429214;1.0126904;4.0026922;7.2717614;.78369373;1.9023659;2.2143326;2.5203989;-1.0110127;4.3266697;.59113652;-1.4380862;2.0302026;4.0634003;1.2861198;2.3488073;.7198087;1.9304904;.60212594;-1.2169431;-1.0354824;1.739879;-.52148718;2.0958049;.4131037;3.3331981;-.23675913;.18181428;.33048967;.93718165;1.3369697;.98817623;.048766624;-.79034144;3.4586592;3.4579906;67.369911 +.30967006;.18048415;.37538791;.1571179;-1.421746;1.0202653;-1.2593254;1.3236939;2.7106001;-.04517458;-.99713737;2.1936674;-.044156358;.47809806;-1.5203005;.97914499;-.67719442;-.87221879;-.49980181;.57024485;.086530991;-.49669003;1.0365645;.13257757;-.18103227;.033475392;-1.62488;-1.1753985;-.64195973;-1.2575465;1.3517691;2.4568343;.77272457;.13961412;-.41547522;1.5119245;-.46669981;-.74601436;-.014512823;.6833263;-.34527302;-.50419599;.7973488;-.5423941;-.23376717;1.3378781;-.63547194;-.76981401;1.045719;-.19072743;4.9567995;-1.0836432;.42168787;2.6093388;1.1559755;4.1738443;6.7869024;-.19878894;2.4530504;2.2912753;.39292514;-3.4575827;4.2725377;6.9847217;.2656531;5.2239642;5.3323693;-.90379566;1.7002751;3.0353408;3.678483;4.9266453;2.746336;.6947872;1.3073525;4.3936129;1.628026;4.4861307;3.6681314;3.1048145;3.1336632;2.8292913;1.516655;3.5226476;3.8009567;-.42009193;1.1873635;2.1913507;2.8131964;1.1554974;-1.2884938;4.9286976;2.6335523;2.5892148;3.0113149;-.34007305;2.6185269;.90827179;.4344973;3.528657;.68660551;-1.2143655;.1892277;-.77412671;-.82302767;1.6378406;-1.0249856;2.0280128;3.1168778;.56822306;-2.2394001;1.1882017;.95290035;1.0150064;-1.170729;.025160449;.22969134;.46629912;-1.5747701;.11353152;-.23235652;-.13660382;.91238743;-.66799212;.38727909;-.12800272;-1.6986034;-.67153412;-1.557907;-.15887375;2.4734824;2.2170634;-.95017952;.40952563;.51736873;-.095516607;-.14387484;-1.0558684;.51865345;.5035978;-1.1149759;-1.5393306;.95512336;-1.439741;-1.6516479;1.1554867;.63476545;-.58101285;.53719097;-1.1000308;2.8630419;.084681921;-.98202753;1.0546033;-.78700542;1.437767;4.6288481;-.6483112;1.5722352;2.7469673;1.0806655;-1.5060059;2.6837978;4.2662492;.26134393;2.88427;2.6539397;.41882798;.79260856;2.784323;2.8420646;2.8758428;1.4182568;.68896502;1.2054942;4.0340581;3.4523079;4.1852565;2.5007715;1.3812485;1.4083596;2.0065424;.84395874;3.3142321;3.0079684;-.67537999;.96295142;1.0145177;2.6202857;1.1662343;.045835793;3.4444842;1.6789391;1.6652819;.70906407;-1.0117266;2.006532;1.7541821;1.3300205;3.7482846;60.797459 +-.60503733;1.1141249;.47256279;.72953421;.68141115;1.1798888;1.7996249;-.82618994;-.31182191;-.15333489;-.23144533;1.994162;-.67734581;.77965564;1.1407487;-.94350553;-.74145216;-1.2486712;-.36134335;.17308973;-.59680951;.74950552;1.1853595;-1.5022837;.25157407;-.0905094;.050465293;1.270272;.033901397;.79677767;2.4664443;1.4162221;-.98254049;-1.2269909;.96199477;-1.2165946;.197908;.91193688;.31845474;1.1871002;.78084105;.62314767;1.8828082;-.03399751;.96642971;-1.4265273;-.26946461;-1.5767205;1.4126296;1.1437473;.22906272;-.53480703;.77931499;2.0799949;-.78605604;2.2420862;.99169731;3.124372;3.0528848;5.1479506;-1.5408535;2.6354723;-.91158432;2.7856212;2.3518648;4.5867438;2.0206537;1.5367056;5.2372518;3.3548419;2.2582366;3.5549412;.92898524;5.1370387;.83671111;3.257761;5.3331075;1.085806;2.8835921;2.3114982;-.074793138;1.3182377;1.2592745;1.224496;4.1256981;3.1246371;.70172501;-2.1734366;2.1882408;-.84729803;1.7391132;3.23768;7.391675;2.0130298;2.8961887;1.7188467;-.39075133;.62782109;6.0967646;.47129405;-.23615916;1.3755713;.82056808;.23189823;.61983502;1.3124036;1.1692256;-1.0828155;.065745592;-1.0661192;.22032733;1.0569133;-.96056324;1.5416858;-.11506677;-.65219355;-2.2822044;-.035577025;-.80726248;-.68850756;-.12950788;-.47806579;-1.1803076;-.71751368;.67134106;.45167065;-.33427057;1.2285852;1.2635326;1.6497201;1.9792516;2.7825904;1.0654066;-.63607079;2.0799952;.13210475;-1.3608706;.66932213;.67487645;-.84231162;-.83922178;1.1708697;1.5188559;.46403936;.680327;-.91915393;1.242085;-.68038416;.75286454;.96023291;.51444286;.94274342;1.0937161;1.366545;-1.3963476;3.1273508;.20367256;2.4475055;2.887351;5.4698334;-.034336083;3.1966588;-2.3721776;2.5763516;1.4072739;4.3642244;2.0055065;.16973527;4.0986452;2.1985335;2.5696092;1.7996773;1.40631;4.9488435;1.2270275;.33434778;2.3195171;1.9071681;2.1523025;2.4968414;.82087636;-1.2946022;1.5776585;-.38276002;2.5115182;2.5715544;-.46797523;-.82915175;1.7112108;1.2208632;-.10265213;3.2715187;4.9117064;3.2448711;1.3244739;.25476739;1.3307024;-1.5777237;3.2587609;.52928668;55.771542 +-1.1662905;-.26960263;.91214049;1.0605556;-1.0745914;.34681544;-.31944141;-1.3523538;.091984905;1.0423572;1.2027591;-.21270771;.59125203;-.2626625;1.2767152;.84674668;-1.1961472;-.46643868;-1.1618385;-1.003754;-.66290432;1.0847387;.65146351;-.94145638;1.0227948;.63272434;-.82806617;1.0582278;-.34435263;.54527205;.27192637;-1.2987542;-.91459465;.2349218;.4328503;.031793863;-.50526446;-1.1149048;.089863382;1.2661169;.0067191557;.92219156;1.1650476;.52455688;.81316102;-.80207258;-.8251785;1.7385164;-.55756718;-.52222908;4.2507267;4.0197716;1.2543708;2.3313296;1.1203023;3.7406611;2.2077227;5.4018526;2.6278877;.11887476;1.50937;1.5217222;1.9275196;4.870563;4.3649077;1.2744552;2.8923287;2.6555536;2.1917503;2.6542778;-1.4188955;2.5518332;2.1725519;4.9302869;1.2207348;3.3829346;4.7094111;2.4200885;.099008739;1.9042784;3.3395498;2.5245073;-1.0229325;1.1281724;-.042501304;4.4811049;5.874238;-.85680765;2.2380672;2.1357846;-.720222;3.0795105;.034537975;2.4076641;4.2498717;-.30726328;2.1517963;-.46772745;.37012365;1.6523845;1.3981152;-1.4511918;1.3525695;1.5524496;.68797559;.71735841;-1.7499363;-2.1084199;-.33230427;.39237076;-1.080061;-.40732819;1.7233377;-.54018962;-.058862843;-1.1861399;.18677114;-1.1458163;-1.6086841;.50704414;1.2470247;.59850103;2.5613689;-.41720352;.87489259;.48258194;-.14029886;1.384468;.063743919;-.32717255;1.3034495;-.2573064;-1.7880691;1.1042316;.14524214;-.67051679;.071773835;-1.3935447;-.36660999;.26599309;-.03552549;-.83490276;2.300874;-1.0516446;-.31247783;-2.5958493;.60674381;1.0165095;.42284364;.60803568;2.5886612;3.6475024;1.3378798;1.8127033;.53025037;2.8048642;1.4181024;3.4851463;3.3615079;1.5963439;-.229708;-.59136534;1.450573;3.9266975;2.7367239;-.54864234;1.5423962;2.574518;2.1874032;1.318063;-.45453236;1.756354;.33199754;4.8785086;1.2970903;3.5968177;3.2790101;1.0779668;-.75269485;.35735589;2.2676835;2.1287713;-1.3175091;1.4994667;-1.0194699;2.9412768;3.3883069;-.85923505;.67803419;2.1404068;.25806838;3.1851509;-.90198213;1.246356;3.3394921;-.18600391;1.428914;.062708236;-.85447514;2.8421881;49.280602 +1.0034184;-.31835014;-1.3713938;-1.2721261;-.13822749;-.75286442;-.6999234;-.11676738;-.65201062;-.31277475;-1.0871183;-.81881905;1.708082;.55794752;1.6134392;.42951185;.057143632;-2.6684248;1.2729019;.006190409;1.380788;.82434702;1.2817979;-.29973567;-.48232615;.2377331;.99816996;.72173107;-.68977857;1.4879488;-1.4896739;-.50212967;1.2784761;-.32747459;.042380631;-.61772633;.63052803;.72159576;-.67265105;.13823731;-.6783638;2.2624238;1.3026083;.85127091;-.56982619;-.77473384;2.0631933;.45496929;-.11607191;.38527459;4.2619834;-.62605;4.7444272;4.9801421;2.8106925;1.2917514;2.3744555;.16075225;-1.9397448;-.63872582;.98401034;5.3827829;1.0559623;.36133873;3.3601902;4.0165119;.74554235;1.7107418;5.2961392;5.5950212;1.7849885;-.22131434;5.8196368;-.87232107;4.22018;1.8826792;2.8565378;5.8975072;1.688594;1.7842929;.37179562;-2.2530754;.93444526;.51686668;.7707153;3.2856143;2.4150951;.49678123;4.6242204;.524418;4.9416423;2.7445426;4.3913217;-2.2818184;5.2182322;2.5707152;.61983824;-1.899974;1.1743474;-3.618855;1.5366449;.48181114;-1.4077188;-1.4237607;-.79729879;-2.7123165;1.1984879;-.44455212;-.65270853;.65920079;-.4608027;1.6032;1.8393039;-.24797483;1.6560391;.32439813;-.55777264;-2.1662235;.47219458;-.14082076;.068658464;.0076924721;1.5037589;-.9679746;.3403779;.10754663;-.53189778;.85352123;-1.0682166;3.1333549;-1.6011029;-.92031872;1.3098074;-1.4286407;.04741241;-.15808013;1.9480822;.38226625;-.31166524;.097447954;.17308351;2.3066101;1.0289891;1.1782746;.97036743;-1.3823887;1.8901248;-.50709075;1.1112322;-1.1126648;4.5369215;-.83662242;3.0108423;2.608187;1.9025357;2.5450549;2.332536;.025404107;-1.0246148;-.0089043835;.23285124;4.7379985;.47700915;.27655602;1.9070767;2.4798095;2.476315;2.0028465;3.9987035;2.6569684;2.3455927;1.4978675;3.114413;-.035336487;2.360682;2.0325553;1.2236632;2.8168199;.4667412;3.1114917;1.2639886;-1.8447634;-.96558917;-.40880397;-1.3530959;2.5835214;2.5217817;2.470264;4.2638273;2.5674934;4.2159324;1.525905;3.047127;-2.5103555;3.946238;2.5677564;.69388664;.67888248;2.5318229;-3.3516881;55.866653 +-.71195352;-.9717142;-.57938677;.42629862;.44203791;-1.6592766;-.48013476;-.8466714;-.78150183;1.5330812;.47196257;.45473018;.63585448;-1.3324163;.044207513;-.41962048;.47992715;.20643286;.52645302;-.96699047;-1.438779;1.2656709;-.94510728;-.53672189;.22079754;-.24569824;-.83753085;.77734286;.88962185;-.94531846;-.86541736;-.018219078;.068461224;-1.8042495;-.56475949;-.87638462;.65015835;2.3397477;1.0342078;-1.6997828;-.49582735;1.7566648;-.18401712;-.51687938;1.1086168;-1.4280415;-.028403183;-.98052585;1.7492733;.99968117;1.450194;2.4472198;2.4187169;.53519726;1.0519089;-.3469348;4.4335189;2.8118763;-.34797269;.095798641;2.2330697;.17067331;1.5120667;.058588251;1.8035427;.35073811;.60216707;-2.854847;1.4425522;3.5503304;-.44022346;-2.2599223;2.0369027;1.5140448;-1.6261629;2.5040779;5.7982302;-.37185529;3.4417138;3.5831585;3.3727508;1.2894818;3.4599612;4.79739;5.6917958;-3.5376782;.71033508;.48584056;4.185843;-2.0191634;4.5607028;2.7606468;-.68763137;7.4284425;-1.3370237;-2.818804;1.6839863;2.3419769;1.6889869;1.0840518;-1.2841103;-1.4350448;-.47540385;1.0255114;1.1405612;-.98909473;-.2734417;-1.5027899;-1.149768;2.8997018;-.21609804;-.85010368;.4390237;-2.168638;-.74161947;.72549295;-1.2300447;-.26977119;-.43540296;-1.4032558;-1.3971822;.66411173;-.23172249;-.63234192;.71298701;1.0954467;-1.2126514;1.7117561;.39494896;-1.1157223;-.067014471;-1.8678992;-1.4962544;-1.1146168;-.099248566;.11951653;-.38220626;1.1485386;1.4222387;-2.1421955;.78094733;2.2268903;-1.4868683;1.3752267;.94802481;-.5828433;.96978503;-1.8028741;1.0570307;.080914341;2.525758;.76148152;1.3599056;-.043138355;.67338914;-.78407544;2.8933661;-.540398;.042296272;-1.4670599;.12389984;1.4186457;2.5524087;-1.032697;.21479541;.63392931;.27707174;-1.5801035;1.4747237;3.2919688;-1.5541859;-1.9544914;.90182644;1.1589515;-2.1725621;2.3470166;5.5828772;-.63747019;3.1935318;3.0472264;1.7265307;.89147419;2.5337827;4.1867714;2.4674783;-2.4707518;1.6269417;.19041558;2.6720769;-2.1728477;4.3530626;3.5231347;-.6080814;4.729353;-.12384364;-.74114501;.94621444;1.2068722;2.5159674;1.0147349;38.684273 +.85752064;.089887299;-.92786163;.46707639;1.3157334;1.8702209;1.6569839;-1.5159132;-.39654329;.29172936;-1.1875567;-.87932754;.64254731;-.15146059;-2.1994016;.62990654;-.6873638;-1.0179021;-2.5431588;1.4829628;1.8551862;-1.0802717;.3559128;-.63786656;.0014441556;-.71289659;.90148288;-.67969334;1.5185021;.52150798;1.0482467;1.0339305;1.4144714;-.44021979;-.39386582;.56261641;.65882057;.69832039;.50933576;.19830579;-1.5075979;1.097275;1.3277245;-.0077242516;1.9078776;.56645471;1.5474547;.87641263;.28700283;-.381901;5.7466664;1.8076984;2.2484698;.95561421;1.2403507;2.6646338;2.8536458;4.9357595;4.7129221;-.084293492;2.1315999;1.6710787;4.7888947;4.8231893;.50617456;8.0205774;1.8139011;5.737782;3.3984363;-.13038255;3.5919693;1.7647724;.86125737;-.58760595;4.4374452;1.5277431;5.3799272;4.4266906;5.0523715;2.5888252;-.76617479;4.7296257;1.0393782;1.8803257;5.1370935;5.8664689;2.115936;.25763565;2.1744776;5.2571177;2.7062447;1.9032072;-.81075454;2.486347;-.19786029;1.1842325;2.4223788;1.4914279;.67091572;1.941841;.34035787;-.52144009;-.57304329;.66362691;.96923417;1.0655884;1.744575;-1.9391528;-.74065411;.84177983;.30839002;-1.8424506;1.3762417;-.68041587;-1.2039798;1.0711052;-.081322655;-1.619085;-1.6930168;.57212263;.82852018;-1.5172122;.70000392;.38935909;-.89663541;-1.3305621;.24333175;-1.1735013;-.22581203;-.75207359;.21084401;.19843006;1.960587;-.31133851;.20796004;-1.6100669;.93079293;.43197453;.52584898;-.36914426;-.31770265;.84477407;-.35679853;-1.2275239;1.9290557;.82710958;.78261435;2.0818667;1.2771362;-1.5229068;5.9213195;-.28780663;.56149191;2.1796803;-.86974138;2.050698;.51969206;3.4304831;3.3500488;.098724768;3.265667;.45986852;3.3410866;2.2950218;-.21656704;5.8999271;3.0731626;4.433723;1.0315384;.20868976;2.0573432;1.9128673;-.29148376;-1.2703494;4.1001897;2.4919586;3.2849278;4.5398278;4.0650249;2.7759252;-1.8452646;1.8533434;.82019699;.9489848;3.6859453;4.7668734;.26539379;-.37306806;3.5044839;4.5420055;3.1560612;1.6664261;-1.1417177;2.0842612;.44400573;-.74774486;2.559371;.87499052;.61197907;2.1688805;73.987473 +-.44235381;1.3986726;-.39623529;.37726367;.85931319;-.61256552;-.50175291;.86974025;-.049028993;-.5301348;-1.1686397;.75128287;1.9136143;1.5348787;-.7181266;-2.0698659;1.3991663;-.0019538742;1.3202235;.27399269;-.16505921;1.2822789;-.98586333;.34680262;.50826043;-1.6830133;.16569002;.51337087;-.18434088;-.70056659;.69367653;.072016492;.47298005;-1.6485868;-.095870771;.5388608;-.46917608;1.1039153;-.47152951;-1.2600552;1.5204589;.7734977;-1.17545;-1.7667708;.77040505;.49881405;-.054213416;.28477332;1.4327672;.40288749;2.4105313;.89518768;.10620893;2.4443269;3.7177269;5.165453;4.0308127;5.794034;2.5658734;-2.4436049;.28923589;3.0180514;.058348294;2.7792296;4.0804868;4.2769527;3.0710924;2.6763818;4.8950686;3.1899099;1.5047348;4.3037281;3.6331024;-.20616706;2.688885;2.8206663;-.62997848;4.3552628;.0007574957;3.3186467;1.6897659;-1.1165097;.74780405;2.2668111;-1.0866979;2.8742125;.17615083;1.4139376;1.1856302;3.0642343;2.5717483;.74526697;.33044356;3.3593512;5.8687334;3.0490997;-1.4490569;.89098531;-.79453826;-.030788042;-.76524931;.90907383;.65600425;-.73947448;.53210771;-1.7305819;-1.3185996;.11665926;.096606113;-.49430057;.51353431;.22078678;-.6317088;1.6598063;-.94126886;-2.1776454;.25072157;.60198307;-.46447641;1.9512985;-.36547393;-.2551226;1.3250526;-.64691466;-1.4653535;-2.9548962;-1.3617653;-.54343218;1.6850876;-.41382059;-1.1412718;-.59203482;.029386578;-2.1291404;-1.5536978;-.73938602;-1.127829;-.2800082;1.7904695;-1.2149549;1.0652308;-.27649739;-.68272299;.030476827;-1.4879932;-.11364262;-.64346927;.23076141;2.0607593;.34875366;2.2642596;-.65255791;.49467435;1.9396114;1.0811616;4.6559463;1.9541434;5.9784541;-.095950983;-1.7126548;-1.1797189;1.574775;-.11977113;1.8763466;1.902043;3.5348277;2.8367813;.30132544;5.3811245;2.026891;.98865688;.63165224;1.6417484;.22059274;2.124718;1.4292243;-1.0781991;1.6450021;1.365769;1.3336605;.97730607;-.11661501;.44239393;2.2328992;-1.7513618;1.8058977;.01894334;1.9806398;2.3514147;1.5915836;2.6475372;-.29091144;-.70556575;1.3552679;5.1331964;2.9164507;-.9208647;.54187191;-.40032136;.52968729;49.121449 +-.25200719;-.020525312;-1.8093722;.1377825;.67893869;-.061538786;-1.259233;1.7546905;.66508013;.36303392;-.41053578;1.550123;-.54774714;2.2222273;-2.2846045;.4522191;.2302388;.47772226;.76238304;.38333893;-1.5115994;-.13583966;-1.4358897;.61396992;.27763399;.27262688;-.94422293;-1.5536085;2.1090062;.99870121;.59877062;.14356911;1.6728005;-.87906671;2.0570858;-.76178747;1.8767763;.093648292;-.11934247;.85405165;-2.0827968;-.38554773;-1.3437573;1.7564658;.3741374;-2.8345559;-1.2342361;.93189543;-.23006429;-.4526571;2.6236579;-1.8130997;1.3566259;1.8473282;-1.9267681;1.0148633;5.3787689;-.53963846;-2.6459124;2.8068688;4.6157351;6.6853552;.92959517;2.7867475;1.5356641;4.9129601;3.3780303;3.4397819;1.3061806;2.206224;-2.8262181;1.7638214;2.8346479;2.3446579;.04528854;5.1973882;.30369288;3.6651375;4.9688625;-1.471079;.15376464;3.4810846;2.1890111;3.349952;3.2112005;.84883702;1.6717259;.0407741;-.00093462766;2.759021;3.0348766;2.2012427;1.1926966;1.2150736;.28586599;.89052528;3.4682515;.55591893;3.0391243;-1.4651793;-.85265064;-1.6760905;-2.4861073;-.21878348;-1.3662447;.072644703;-1.007597;1.4672651;1.969902;.31827646;.43317682;.76997125;-1.1685854;.75530767;-2.4389513;-.85706758;-1.5463806;-.14404726;-.010576749;2.1026578;-2.5683126;-1.6393948;-1.7869471;-.15027946;-.52644849;.013825546;-2.853621;-.59035039;2.5648925;1.2019808;.89379483;.62619066;1.9472828;-.30086946;-.32301518;-1.6085598;-1.5237981;-.26184112;-.37532112;-1.2917002;-1.7003924;.24721889;-1.7107024;1.1376787;1.9792141;-2.1346524;-.99667162;1.5009418;-.34621471;.18274117;1.4398354;-2.8054216;.92659515;1.6314911;-.73826891;2.3807533;3.342438;-1.9709451;-3.6703794;2.7569854;3.022948;3.8708136;.20025714;.49049172;1.8101956;3.5688748;2.506186;3.3047483;1.5731704;3.207865;-2.4143209;1.5154353;3.3624785;.37444657;-1.2605486;4.4010644;-.55034012;2.9222362;4.0502648;-.86940289;1.453956;3.1783483;1.1846199;5.2548957;3.6817982;1.2076036;1.1888332;.95268583;-.54080772;2.3386242;.8423683;2.1480815;.5908227;-.70907331;-.059317511;.80939597;1.3849872;.28660348;2.7365685;-1.042052;43.96954 +.34860671;1.3576281;1.0208524;-.42300946;1.291527;.55190301;-.49483025;1.0722291;-.26248938;1.1629859;-1.8133337;.92792737;1.488752;2.3959389;-1.4666126;2.0126522;-.71021336;-.96271306;1.9361244;.68578506;1.4623164;.68099624;.52703774;-.14253144;.49877119;.48681226;-.4779498;-.081164718;-.13922054;1.0069658;-.19248876;-.41928524;-1.0696379;.087327845;-.82665485;-.39032146;.19680943;.79622114;-2.9266319;.13942114;-1.9219826;.085510068;.1588185;.43572238;1.4997934;-.27421799;-1.2283013;.21771699;-2.3472509;1.0941638;3.0932636;6.4792385;3.4369562;2.1654217;1.0230608;2.640456;.26036945;3.4524651;2.5454929;3.8655207;2.8582377;5.4842458;-.93764621;1.7846798;-.84442794;-.30955616;-.65165555;4.3413806;1.1721549;-.79905576;2.6787605;3.7346928;3.9857867;3.0563996;-.30942449;-.000064078173;-1.5404372;-.67588127;-.99351209;1.5394543;.26826856;.79338479;3.3572116;.57085419;4.4245915;1.3897361;2.7901506;2.6500866;-.32070765;4.5308113;-.41403794;1.0793486;-.22957166;.30653211;1.9675007;2.6200213;4.5588651;2.5155091;-2.0354884;.045951024;1.7759567;.19761844;-.0044743484;.77710229;.12890422;-.43021703;.53435385;.58793515;1.0342873;.48737219;-.094293043;1.2438112;.31460771;3.3956189;-1.7260509;.89082932;-1.5994509;-.54391605;1.5500475;.083373815;1.1022881;-.44755444;.33248886;.090512298;1.5221033;1.499416;-1.1363273;-2.1324322;-.64277107;.42780387;2.8589015;-.053600516;-.65228254;1.5114257;-2.4974627;-.90454459;-.34972689;-1.2164558;-.029781746;.57469088;-.64192504;.9429394;2.1753919;1.3439318;2.3869183;2.0444486;-.60312003;-1.6027099;-2.738452;2.189683;-.09431798;3.9171472;1.4164939;2.3362019;2.6212981;.82103616;-.12874551;1.3678448;.61111921;2.781435;1.589553;4.39853;-2.1750348;.96555036;.081641331;.15695791;-1.5412369;2.1006348;2.1512158;.3670634;.78228503;3.2044752;3.9192913;2.2975159;-1.2564957;-1.601101;-1.985096;-.52643138;-1.6423171;1.8025022;-1.3896939;1.3486557;2.9438541;.12129551;2.8155606;-.24706142;2.3026655;1.1697001;-.88565844;4.0549202;.57693446;1.5085819;-.64009446;.13514532;3.4150333;2.2450149;.79764098;1.452556;-.31563699;1.0978832;46.520626 +.87767649;.10297894;-1.0247134;1.5537682;-.1239791;-.49033928;-.19636953;1.2989335;-.36338207;.26459721;-1.0314261;-.78489053;-1.1874444;.34341538;.30281138;.95294958;.51653695;-1.454615;-1.5879802;1.8353575;.78505909;-.51592356;.045266528;-1.3885462;1.4877386;-.00082613586;.41921288;1.9821218;-1.8207604;-.68125439;.28330365;.38539365;-.033471897;1.1552778;.27938771;.17054994;-1.2391539;-1.3096032;1.2821437;.32477683;-.36371911;.36813924;1.3551421;-1.1798769;-.24589054;1.3760316;.42074284;-1.3819959;.41646028;.91383779;-.923118;5.2211461;3.5834539;.69450074;2.6830087;4.0478406;2.0707076;-.67521143;3.4925942;5.2397442;-.95172822;1.3150108;-1.0872051;2.6362741;-.4781782;-1.3276185;2.2577119;-1.042526;.21711607;3.3117795;1.4198024;.37230247;2.7048259;-1.4188352;2.8779972;2.9046924;1.6547804;.0095244339;2.9196005;1.0669088;.90544236;4.5209641;2.5319405;2.8920119;2.3012972;2.8257771;4.0748787;5.1640782;2.4229927;4.021996;3.3787415;1.1874844;-.87325972;3.3198512;-.48152715;-.96482849;7.1829224;2.8440943;.23650554;2.6391983;.46086875;.81716341;-1.366998;-1.7341655;-.2661292;-.1326863;.054740813;.37800401;-1.4501388;.49787763;-1.6144537;.33897561;-1.9002501;.84942842;-.26062641;1.2325935;-1.6539409;.3027955;.72205758;1.0373983;.21573658;-.94519675;.098735854;-.0026122488;1.3348306;-.41104165;-.036929097;1.079013;-.47148293;1.0673292;1.0763156;-.66274172;.016241703;-.33823699;-.78541142;.28572592;-.65204698;-.27921352;-.13418499;-1.9335803;-.12647878;-.51807106;.12074236;-1.4913598;-1.069073;2.3363097;.59804338;-1.6229507;1.6390556;.41854748;-.62808973;4.5937786;1.1226159;1.1676745;1.7385582;3.4542859;1.5766985;-.35713607;3.4513268;2.9466536;-1.1055403;.28498343;-2.3493204;1.6852663;-1.5230035;.065928154;2.1914773;-1.1785287;.91210318;3.797689;2.3966186;.59791666;.89395237;-.96868682;2.7078221;.52868557;-.038408626;.79869527;1.6616396;.46966025;1.6802841;4.0075984;.63390166;3.8871615;.90863204;1.8492545;2.3759859;5.2935925;.98793501;2.1125877;.92521852;2.2926435;-.18416111;4.4327869;-.12732419;-1.3110262;6.2805676;1.5228078;-1.6628982;.58994365;55.071693 +.85666901;1.0235368;-.77098125;.52703428;1.0211228;-.4430826;.70230675;.0091938665;-.17999828;.75626582;1.1720619;-.0092157768;-.16767453;.77326578;.34221998;1.8029478;.88582093;.77464771;-.11564966;2.1927056;-1.2081261;.39035627;-.74735582;-.58027434;.3592366;.1548544;-.34671062;-1.6739265;-1.4043264;1.3712102;-.49514449;1.1114278;.047710072;-.044211373;-3.2080495;-.48593047;-.94375789;.8463102;-.99352479;1.2522445;1.0338843;.49989736;-2.0103395;1.5651274;.53812325;.85263383;.24146943;-.55964267;.80989188;.36211941;-1.0916841;-2.5934668;1.6687638;-.7426613;2.7193551;-3.8157411;2.85741;.73065847;2.0819888;3.4381957;1.8062884;1.2492512;.097398743;5.134347;.419489;4.0945749;1.7151256;1.7148365;1.1760753;2.8724976;.72262722;1.5187114;3.0970283;5.426578;2.1810391;1.8625323;3.4532726;1.5189202;3.9624617;.052758757;.72821575;2.2520237;1.3203449;3.0694489;3.4109387;4.234777;1.5330852;-2.0475242;1.6463871;-1.577799;4.4664869;3.1850083;3.6767719;2.6707208;.97721326;5.7571115;3.7249062;4.2226372;.82250869;1.6481296;1.7605375;.38909021;-.53507471;1.2179158;1.0034839;1.2478536;.32228467;-.14321816;-.74990088;1.0188116;.84031349;1.0981005;-.10928588;-.88214695;1.2023754;-.20660669;.00055316993;1.5698751;-1.492185;.67570025;-.12121407;-.13122062;-.8751418;-.81950086;.73311311;-.41146839;-.64846164;-1.7766919;-1.6773841;1.9141909;-.20143144;.618092;1.406395;1.3802202;-2.7565424;.90390217;-.75794715;-.06638357;-.034091521;1.3574522;.63279349;1.4298508;-1.4308447;1.676046;-.11795454;.10153273;.57308203;.83313555;.077581488;-1.507028;-.96824855;-2.7523501;.94228905;.69631094;1.1352195;-2.4301209;2.5329978;.71373343;.1683788;1.1756145;1.1359298;1.819748;1.2758299;3.109396;1.3374109;3.8534529;-.78090161;.26425889;1.3085564;.073058218;-.50638914;.014097986;3.2964294;6.3509159;.92834872;1.1728506;6.0595779;.11135927;3.9084635;.41202754;.038414348;3.5075874;.82825762;.60344696;-.014401624;2.1124296;1.0098399;-2.2376647;1.826399;-2.6827002;2.7955542;2.3794849;2.6136386;.35399133;-1.0927204;1.8108473;1.2412279;2.0100772;-.02489651;.8047086;51.954487 +-.9495917;1.573982;-.55792373;.42688519;1.2366836;-.22157496;2.6387115;-.49277872;-.80342233;.81668377;-.98578495;.15724474;2.1531045;1.287727;-.98428309;.26191226;1.2644149;1.1671213;-.46192092;-3.6841664;-1.5747498;-.37334535;-.41246527;-.40922198;-.035257507;1.3932055;-.10391811;2.0276332;1.4891425;-.70156711;.484038;-.19446945;.54069525;-1.0213511;-.90217465;-.64249325;.90110695;.48810297;-.15116303;.12167028;-1.796648;1.192161;-.33604375;.071147256;.67277795;-.32142493;-.10130084;-.89060521;-1.8777362;-.049057908;.98262501;.27464408;2.3339221;-2.7737401;-.61620122;1.0633005;.83316213;-1.0221093;1.3542051;3.8624451;.87231553;.86120731;.27271882;.60866278;-1.6160765;3.2983897;1.7707843;3.409899;3.48595;3.44836;1.0949389;.26402605;-.96934026;2.7727835;2.5265648;4.7423854;2.1300967;3.1077609;2.2413785;-1.20428;2.7936375;3.9084878;1.1864339;2.5094216;.32622874;3.7610478;.28041601;1.7304941;3.4671819;5.3106394;.17365107;2.8180466;-.17597319;-.8459;.69379604;1.3806762;-1.861874;-2.0839727;3.7456672;2.1772239;-2.278548;1.3267021;-.0066780625;-1.5826799;1.1699945;-1.7003394;2.1708539;.78913271;.25200701;-.89324552;-2.0449915;.28018767;1.0768853;.40349168;-.38565978;-.97070944;.4419063;.21026114;1.0789758;-3.0978653;-.021609101;.69678855;-1.0989678;-.51396316;-2.0442078;3.4977212;-.58410496;.094154008;1.6297972;-1.1711043;.081452943;.15308018;-.92998797;-1.3298818;.36510062;-.77961701;-.9243626;-.14751221;-.83090937;.1810229;-1.4452413;.79227382;-.44802165;-1.5833321;1.2729416;1.3030131;.087510027;-.79848576;-2.3242722;.0026775456;.24454643;-.67115104;.57805061;-3.37625;-.020129183;1.4070473;1.2370386;.12879516;.21070701;3.113322;.34229264;.074308597;1.3788944;1.3180964;-1.7580109;3.1999745;.89607841;2.0570557;1.7831577;.25472361;.56098884;-.095290303;.29527792;3.1243341;2.5234652;1.7103693;1.108992;1.9192213;.90955174;-.4337424;.71453202;.93245876;1.4431005;1.0709356;.025906995;2.6370554;-1.9576396;1.7080288;2.1434951;5.4075985;1.7314104;2.2882392;-1.0825171;.42219406;-.47598538;.54992986;-1.4893343;-2.0560968;.70881742;1.5165662;36.833111 +-.76057702;-.54903662;-1.2875552;1.2596089;-.78610522;2.1861212;-.72685581;-.71141481;.098802984;.58350366;-1.058444;.36290216;.56137377;-2.6740754;-.055023659;1.7960306;-.037365966;-.61016959;.58357579;.1725657;1.1542976;-.52975023;.8058942;1.0885026;.50104207;-1.6264122;-.21842009;.29089147;-.24962987;-.38305512;-.66395867;-.98838842;-.10767343;-.75024706;1.4230751;-.63496011;-.5663597;-.35932088;-.24714522;2.0798624;-.54556531;-.54077834;-.49830309;-1.0336308;.87836671;-.20363764;-.12056606;-.28839207;1.220894;.85047191;4.4499245;2.0868285;4.1444817;-.15251388;-2.1220787;4.8850451;1.0574929;2.3258982;2.2924101;1.6417471;-.016491555;.70726222;.14291808;-2.0360982;-2.0378687;1.5871012;1.0306406;-1.7245576;4.3263569;2.5415542;1.2782453;.18515128;-.51865369;1.5624746;.13523538;3.2323108;3.1099987;3.5556097;2.8243558;3.3880463;1.3266157;-.13551083;2.121479;3.706851;1.317122;-.40363982;4.0183802;4.0753989;1.1920114;4.6873789;-3.4933181;2.9866164;3.1635942;2.6629047;2.0019162;4.7214665;1.6913244;4.7629085;3.7244873;.1166954;-.80682492;.98794264;-.6432035;1.8344771;.24654342;1.7179155;-.80800927;-1.521531;-1.7301381;-.81831586;.88025749;-.57272756;.21139103;-1.9247202;-2.3574982;-.51376736;-.31695357;.35284561;1.1213454;-.015838007;.8265034;.50073308;-.49110892;1.0565106;-1.1649971;-2.3068397;-.62336713;-.34723508;-.57085121;-1.7035486;-2.3723688;1.4185184;-.037138056;.23000829;2.1547804;-.95585632;-1.5978765;-.10985325;.46953484;.77722812;-.24077739;.65707839;-1.0128597;-1.0248777;1.1133122;.51929563;.15810616;-.41496673;.3281436;.97895104;3.5786762;2.4561076;3.0809627;1.6477575;-1.1247759;1.5220114;1.2882206;.23725398;1.6168725;1.7933946;.66692251;.53417963;-1.7495629;-1.573952;-1.7013328;.97335035;-.23597147;-1.6428204;3.124109;3.1152873;.22599658;-2.8542356;-.41286159;.56589073;.17394808;2.883899;3.6113479;2.0659866;-1.0963138;2.1110156;.78868407;-1.8716925;2.1529214;3.8561182;2.0977437;-2.2249014;3.2246203;3.7048397;1.1954106;3.3167505;-.65033495;1.932458;3.10378;2.7034605;.091956921;3.2556989;.54199255;3.4309077;2.1327159;-.41937354;38.630539 +.80734813;.81100553;.3479358;-1.0482365;-1.442099;-1.4926488;-.057390422;.45922866;.16828662;-1.266345;1.4203827;-.06788145;-.37252313;-1.9672453;2.4891422;-1.3241473;-1.1988866;-1.6353328;.56176919;-.50703549;.39916551;-.31594232;-.76220125;1.4934736;-2.305577;.33413821;.98982716;-.85552585;-1.557718;.99106967;.84700781;.87646669;1.5555531;1.2427821;.94913656;.13007073;-1.2046597;.33924448;-.028567828;-.43824229;-1.2119881;.4818061;-1.2481059;-.1508712;-.91964966;-.39673343;-1.1428086;.45689055;.61464763;1.3497202;3.4259923;2.0872695;5.0540304;.47551736;2.0498257;3.3132811;.42653385;.44154927;1.5209721;3.3312747;-.91217434;1.9862201;1.5730751;3.5295444;1.1988499;3.4539382;3.3563325;1.608624;4.9273934;4.953362;.075511992;3.3789494;2.8050766;4.4512091;-.38195676;-.27177167;2.1994305;2.3330374;5.4971585;4.8163142;-3.0056396;1.3580928;2.5589767;-.64613783;1.1634847;-.85873121;-1.7460304;4.9121866;1.8144625;4.9865618;5.4874616;1.8930613;-.13770853;-.33791056;-.2017436;2.8423357;5.6701002;3.86782;-.87796211;6.7149262;1.6985652;2.5560949;1.8923533;-.24958324;-2.5530841;-.26635405;-.068429828;2.3451209;-1.1193495;.38824892;1.9461333;-1.1330649;-.665425;-1.5872391;.9701339;-.21951137;-.51204681;-.050007597;-1.376173;-.14870809;1.4118977;-.83673543;.24308097;1.9542813;-.65280819;.2754997;.14414197;-.21633156;-1.0167178;1.1615885;-.64580071;1.4171326;-.44820774;1.3678669;-.506733;.11047092;-1.5412109;.13704693;1.7204399;-.31350762;.0066626682;.76105905;.41838121;.047187615;-2.3423693;.37393114;-.66644603;-1.312113;.36018953;-.60520524;3.0878913;1.4522942;3.8484087;.62067258;1.6771104;3.0967519;1.8829542;.13161357;.26796871;2.9464955;-1.2431026;.41643202;-.17950928;2.9073703;.24013409;2.4320753;2.2283654;1.0904599;5.238421;2.4720683;1.4334191;1.7077965;2.3194773;3.6724651;-.5311057;-2.4689734;1.8445156;1.7131369;5.2771397;3.7436967;-1.2513362;-.63168007;2.672734;-.38226223;.87504077;-.94847172;-.91855448;1.5149207;1.2408243;4.0826645;3.9965765;-.49171463;-.9453789;.20520121;-.014605378;1.7617277;4.8775454;3.2580116;-1.2808247;4.6098638;51.70018 +-.33002213;.66360146;.39227572;.60021424;-1.6394651;1.2319429;-.16541775;-.29361743;-.26382416;-1.1346754;-1.6664292;-.010494191;-.93216223;.64490378;.86857963;-1.7805251;-1.0662479;-.013313144;.43618953;-.40071443;-.72639787;.89040464;.2695913;.23757476;-.1368442;-.077468224;-.9512493;-.76407295;1.7423962;.57793558;.15658905;-.47733527;.59913629;.43198466;-1.1800416;.27941409;-.25953656;.61406744;.96097493;-1.3980222;.1275645;.7688421;-1.0051612;-2.0023301;.89620012;.29487839;1.5735234;1.0452399;-.17090373;-1.1557252;3.0105281;2.9366531;3.7801437;7.6507425;3.0259657;1.3605311;2.7797089;2.7750573;2.3725476;-.90759712;4.3590288;1.6933067;2.6798041;3.1010015;1.649397;4.8273344;2.1983242;2.4053893;.59832066;2.0493929;3.648438;-.97802675;.61602241;4.5893712;-2.2705791;3.6024108;2.5263422;.013995562;.90384978;.76720524;1.662196;-.93782103;4.4699879;1.0814639;1.2999557;4.7591467;.27097887;1.1946713;1.4845093;1.3224474;2.6966279;.49864528;1.2022663;1.9606547;3.0712101;4.0286455;4.188776;1.5336741;.51774365;4.3877263;-.23985399;.61758864;-1.2917988;1.0896235;-.681705;-.87093198;.42655143;.67733401;.20573778;.58155769;-1.8596557;.45538443;-.98032963;1.4164349;1.6965809;-.82478267;-.30872583;-.69581109;.96211594;-1.3543109;-1.8802636;2.0008333;.69205856;1.3204026;-.14654721;.0035402919;-3.3104599;-1.6185759;2.5624845;1.9024005;-.50210941;-1.0249404;-.31399652;-.17231338;-.088935934;1.2065549;-.79447263;.75702167;1.0299343;-.36142391;-.046753205;1.2701151;-.10648274;-1.8108894;.47599071;.4501802;.34594876;-.18382388;1.5195138;-1.803188;1.7820306;1.7247567;2.9534986;6.2897725;3.830297;.39395323;2.3795533;2.6728489;.50556231;-.70881706;3.8753209;2.3759956;.83703661;1.4744985;1.241901;2.0496736;1.5073025;1.1355746;.86208129;-.38071308;3.7405145;-.76110345;1.7993321;2.6177187;-1.1927836;5.0802703;2.6965814;1.3988423;1.1294239;1.2144042;.43781143;-1.1764237;2.626503;.55125862;-1.1956576;3.6730814;-.37339684;1.0325662;1.8274984;.94706434;.041877504;.5792945;.95979178;3.6002054;1.9839625;2.4914279;2.9686072;-.44891447;1.7560458;2.7415617;54.033154 +-1.1097333;-.94493043;-1.4984258;.97182411;.33194488;-.67225885;.81676161;.31528026;.077393956;1.8163542;-1.6495248;-.88094872;2.0592535;-.63288188;2.2627022;.11162402;.68121934;-.50524944;-1.8230256;-.17139831;-.64805955;-.28762549;-.20203306;-1.3362721;1.8612351;-.56856406;-.92187423;.40194872;1.2562582;.96509379;-.032874674;.3212246;-.30976853;-.7750212;.56940842;-2.1143906;1.3781908;-.26198372;-.37741756;-1.9382339;.80926746;.6734786;.58075434;2.6233203;.14033364;.29130054;.45082304;.3391459;-1.1948849;-.76480001;2.3758008;-.059671715;3.9285908;3.0733624;.13811618;-.22904928;.07683786;2.9132903;1.9993477;1.4847388;4.398622;-1.4643916;1.7428145;.94304371;7.8477497;2.0542991;.59285969;1.2649854;-.50185663;2.9704144;-1.2969143;2.1578071;2.4593375;-1.4343879;4.6935997;3.6556985;4.5452318;-.3266564;-.14100339;-.12912896;2.5792298;.22511126;.42273864;-1.2437931;4.7185287;4.7262449;.20264393;1.6151423;.14211902;.00069671491;1.7838985;.80716127;-1.0638397;.62554067;-2.0747459;1.387691;5.2067223;-1.1840907;3.2303858;3.350986;-1.4813837;-.76980668;.07655628;.39912668;-.20255776;-.32418081;.84970313;-.28504479;-.11164761;1.0346223;-.86180645;-.95496053;-.30551964;1.5337546;2.2796059;.36697513;.47955039;-1.2334388;-2.2371609;-.99569434;-1.3441521;.82328206;.34049472;-1.2139329;.60816896;-.35604987;-1.1133415;.86602765;.4789378;1.7489516;.91328317;.45790619;.48905313;-2.0691729;1.8303663;-1.9909942;1.3172544;-.36898327;.34503764;-.94180906;.34409958;.0097861821;-1.0636417;2.2039046;-.3077364;.34781736;.86935776;1.1718978;.2419972;-2.065037;1.8023107;1.3213134;.66376877;3.2796068;-.61254156;-.17779423;1.2462349;2.6991105;.46896645;.32597026;2.79074;-1.0974705;.85964733;.24370551;5.8541384;.6924957;-1.6080486;.37546062;-.30238658;2.3771648;-1.1159009;2.0101459;1.3806218;-2.1507688;4.8354459;3.3007777;1.9338948;-.56686693;-.37077487;-1.5136082;2.2239773;1.5534256;-1.9824241;-.2297384;3.6999676;2.7470827;1.1367286;-.53960139;-.583736;.5477398;.22544549;1.931585;1.3734996;.70521671;-1.8425437;1.259369;5.1434045;-1.0767448;4.0178161;4.1966391;37.92551 +1.3089713;.6573903;.53219366;-.61041665;.42285985;-2.486095;1.5524666;-.90451592;1.6701193;2.5143871;1.1231625;-1.9386803;1.1262447;.015201238;-.062344152;-.55548424;-.026161354;-.409271;-.037908889;-.42464522;-.56980485;-.84489256;2.35991;-1.3141217;.72543174;1.2990417;1.0496635;2.8745754;-1.4607247;-.44403681;-.38926625;-.31148291;-2.1641443;.98970371;1.0602244;-.581797;1.4561195;-1.0644119;.40853468;.49910846;-.49703136;1.0550134;.049047191;-.038998064;1.7497376;-.96804929;.072947659;-.7680766;.099426359;-.944161;2.9415886;4.1297235;4.0239115;1.4537066;-.84984785;3.2070179;-1.0496323;1.2893842;-.02247972;3.8016827;-.81220806;.65996236;2.0802579;-3.0525055;1.4702423;1.4638104;.25973266;3.7457578;2.722291;.31163245;2.7458923;2.8778694;5.3355656;1.7572671;1.1669265;3.7131972;-1.449576;1.4276466;1.7496185;1.9146183;1.9239379;2.3713908;.92302507;4.755044;4.3865609;-.1004975;.42276934;4.2272534;1.8085513;4.0042138;2.1050313;3.4859416;.84450585;1.2610221;2.7387271;1.5400807;2.8319354;2.7365515;3.3514965;-1.0352511;2.5705109;-.58349288;-.23491438;1.115364;.087968521;-.24675617;.58897299;.095829897;.8042025;2.9207995;1.6077062;-1.4042007;-1.3363832;-.27451277;.50178933;1.7496406;-.49737933;-.12726286;-1.0863825;.31458357;-.42053881;-1.9772809;1.9463688;-.97673756;-.56911922;2.825381;1.28931;2.5657291;-1.8642442;.94691414;1.3897215;.81924778;-1.2090805;.78280944;1.3287791;-.48782548;.61543924;-1.2907517;.21897905;.0040760897;1.492047;1.7177653;1.8220793;-.15915711;.89280188;-.96204132;-.79206848;.28484681;.12409291;-.86552346;3.0676124;1.9224416;3.2708192;.99784636;-1.5150485;3.0045867;-.68385708;2.3705516;-.34128663;2.6814635;.5824064;-.076211028;1.6273589;-3.4269247;1.9862871;.76797432;1.3572084;1.9579368;1.5991036;-.008167522;.61413676;2.4633574;2.7213144;.92683136;1.2802445;1.2232971;-.93512005;1.0571883;.03136773;-.0054403916;1.3450896;3.238162;1.1301601;3.415724;3.397084;-.67748654;.10219304;3.3437607;.94921052;3.1646178;1.8690224;1.7485286;2.1526258;1.6351901;1.5480664;1.181994;2.4945717;2.0223043;2.2575359;1.5486047;43.457035 +1.6194812;-.40626395;-.44777384;1.7971247;-.95488656;.3167606;.07087741;-.18228254;-.88025612;-.68064016;.0098362109;1.5527005;.044230584;-.14571373;-2.4593782;-.49570766;.75583792;.79603559;.39923891;1.2594755;.64648765;-1.517776;.82859987;.48275346;-1.8687797;-.24937797;2.5534108;.45514625;1.9725364;.31049573;.82456541;1.1155717;1.974291;1.2277031;-1.2402434;.59884322;2.5965443;-1.6727405;-.85489553;.67275709;-.07179448;1.0710983;-.65995187;.26063621;.70992571;.90343446;-1.1508176;-1.0401272;.73606926;.53075165;1.0704551;-1.1326274;.66943926;.95212382;4.8229346;4.4579425;2.4696121;3.9846959;-.87759227;4.6839757;2.7695425;2.0090954;.93168777;-.19248168;1.0405825;.35769647;6.7850323;3.0028598;-1.67891;-2.2613099;.76788157;3.953243;4.4074841;.76645201;1.9840456;.075412422;-.17964986;2.7505741;.38180342;-1.351686;2.7250104;4.9370542;-.25986823;1.3694404;.30354983;1.5409104;2.1056833;-.0091947401;.49273369;-.92421228;1.7027807;4.2822595;.80093771;4.5139546;1.3958099;2.2366116;2.5627017;3.2345753;1.4731864;6.6384788;1.3163717;.048712961;.46407121;2.797564;.2399143;.29357302;-1.3230855;-1.1600971;-3.0543768;-.84904861;-.28686535;.58371246;-.88079172;.99404091;-2.7536061;-1.4300854;-.32307565;1.1793234;1.7293416;2.2400002;-.73347998;-1.0161283;1.3460232;2.3961129;-.38955167;-1.4995604;.31715631;.84380865;1.1706032;.045397937;.3112835;.9434225;.68407023;1.0776581;-.069783829;-.587152;-.063206285;-.69214547;-2.8663862;.28017837;-2.5465846;.15434903;-.33428264;-1.3228736;-.31861511;-.39256328;-.76178753;-.5984323;-.61806542;-.013977866;1.5053689;-3.0713603;.036943942;.61922932;4.8349385;2.7597756;.9859885;3.7888877;-1.1128771;5.0208163;3.8023243;2.0925391;1.5504876;.54900402;.1817735;-.70398247;3.891957;3.472091;-1.7954738;-.81086737;-.32026082;1.8617196;1.0369688;2.0049739;1.5065606;.28379229;.76809132;3.0697911;-1.099316;-2.172224;1.0495461;3.7867591;.11385669;1.2114382;.77637041;.62039638;1.8089747;-.18067281;-.82048047;.19495982;.965909;3.2081099;1.0090431;1.8886125;-.061145708;-.3180669;1.3212886;3.1788924;-.64871883;3.5296612;54.902142 +1.5920107;-1.0361247;-.71786392;-.18105771;-.72963315;.75854534;-.28174233;2.4975252;1.7602655;-1.2535739;-.22240889;1.6125181;.77257723;-1.5632385;-.92425948;-1.9960685;.19680737;.20259514;-.59741127;.6528334;1.3830884;-1.3040332;-.52301055;-.39696485;-.030468823;2.1837196;1.4406297;.61147606;-1.1776849;1.10016;.30859241;-.61709464;-.94604933;.24806429;.24204199;-1.42144;-.41541138;-.64119363;-1.4152901;1.8908695;.69316643;.3305096;-.37387139;-1.5827289;-.33535883;.90035611;-.13503939;.011041435;1.1082227;-.63308853;1.7611275;3.8533506;2.4773505;1.3662298;3.4163465;-1.852646;2.2040534;3.2298503;4.1096601;1.2958671;-2.435215;2.2163448;-.59667581;-.74667495;-.6132502;3.9127669;9.1173;1.3350255;2.4090526;.30288029;2.7151845;.35457844;2.9353256;2.5705373;1.946596;3.1557391;3.373378;5.0669847;-.11877427;3.9212675;2.5715978;-.25212175;-2.1110163;-2.0237315;.73375124;-1.4794836;-.40549961;1.8972678;1.4345888;5.5484796;3.3942556;2.7496831;2.3393371;3.552458;2.5262914;1.7136424;1.0676086;.014268829;.65862113;2.041136;.79512674;-1.2636138;-.80627173;-.86283898;.29750723;1.2900679;.847628;1.5342255;1.8319538;-1.2362292;.82430339;2.0077007;-.79314792;-2.0668681;-1.7194635;-.7191959;.34085885;-1.0982897;-.8094629;-.083046004;.79904997;.83781368;-1.042519;.24006677;-.019440223;1.4984566;1.0977515;1.6740181;-.73980939;1.6252753;-.17091472;-1.4919628;-.7069906;-2.3785281;.40439379;-.71237874;-.26983744;-.45106328;-2.2104571;1.2061354;.63840371;.76663405;-1.3188702;-.22288994;-.7315889;-.43065372;-.069927357;.15267865;-.010378494;.02655955;2.7273524;3.4978175;1.4191884;.51918632;2.2558067;-.9877283;.33600512;2.5253816;3.7818294;-.24776319;-1.1656497;2.0220783;-.70469129;.16643363;-.22017194;3.1270034;5.1992931;3.2116296;1.6022767;.40672097;4.0250468;-1.1555223;2.0011342;1.0255468;1.59711;.94298005;1.7839833;4.6198668;.28155598;1.3601453;.66094774;1.3509002;-1.2674861;-1.3091899;-.89513052;-.34672195;1.1117783;1.7799549;.59471726;2.2791667;1.7966841;.69306439;2.6629982;2.6593149;3.359185;1.2030945;1.0669258;.18617159;.17730068;2.0173352;41.457821 +-.20449975;-1.49061;2.061069;-.72190684;1.2203079;2.0526967;1.3731463;.87297976;-2.3758497;.46718359;.14287275;-.27497193;-.077487752;-1.8568422;1.6041169;-2.429544;1.2171986;-.49629036;.093635403;-1.6398976;.13872622;-.71847069;.18894319;-.71559012;.5943566;-.017276995;.43080613;-1.3476262;.5891034;-2.1504533;-.59763938;-2.4895577;.16692853;.45881727;-1.080778;.91583884;.83353329;.50550562;2.2883365;.26433975;.22044794;.3979615;.43696082;1.5827298;.31428194;-.20385993;-.71522164;-.26538825;.58783305;.53132463;3.4601531;2.0218923;2.5945463;1.9487997;4.6893187;2.390415;.30837959;4.7633696;2.7241385;1.6945591;1.9038248;1.0479889;5.0041718;1.7352751;3.496382;4.035398;-.50129813;.76167983;-1.2595481;4.185142;1.8434696;2.1761808;-.2246208;1.2620995;1.8852681;-2.4026453;2.0832293;-.13558196;-1.1480097;1.2501003;1.6323023;2.1411953;2.5584211;-1.0461259;.9323979;2.8256187;.78850067;3.1262028;-1.38131;-2.0959818;2.3295853;3.8970795;.23183048;4.9965644;1.957731;4.4894147;1.5392126;2.1059604;-3.0973401;3.6606934;-.23063882;-1.6969935;1.8789541;-.98911846;.76258922;2.6991513;.45871955;2.1990414;-.91367769;.23019424;1.8626226;.21809933;1.7149827;.56263065;-.064779833;-.97216511;.43244874;.24624354;.2767508;-2.8314137;-.20116352;-1.1159029;1.3892376;.020728124;.1752813;-.92127633;1.3438336;-2.6419761;-1.3571049;-1.2316328;.062700607;-3.8352606;-.17664576;.6871531;-1.9424826;1.3947815;-.58308035;.31176266;1.232296;.43175545;-.30022499;.43269393;.42221978;1.2284088;1.2800431;.5237782;-1.6093059;.42720824;1.8691971;1.2994237;1.3915577;.13919143;1.5889647;1.9082116;2.8974643;2.6859245;.53207791;5.5798259;2.2933352;.069351181;2.6270721;1.3142492;4.8575344;-1.6046847;2.7413716;3.4513822;.21207242;1.0340292;-.57159406;3.5309713;1.6243418;2.6924093;.5559051;-.099967971;1.4621903;-2.029285;.42538336;.86701787;.45412239;.7081961;2.3864489;1.8568684;1.9282895;-1.5754232;1.7103943;-.066914044;1.3568379;1.6562054;.22691852;-.45139426;.7168957;3.2521355;-1.5735127;3.057296;-.97845536;3.5621607;1.3625749;.80934143;-2.6109154;1.2800826;37.307156 +-.29050419;-.17396951;-1.0558851;.70004416;-.47177163;-.35827726;.025236251;.53513926;1.1719214;.80184126;.2646594;.38604286;-.8332445;.50311691;1.2334636;.98486531;.42423868;-1.3236361;.09617307;-.69387579;.44126639;.73863447;-.14288653;.084335215;.96432161;1.2524506;2.1477351;1.332343;1.2583318;-.14079832;-.12367227;.25103587;.43637186;.55825156;-.68777436;-2.0787787;1.7005305;2.0823307;1.7483037;-.639153;.35338557;-.42022988;-.60511494;.3774097;-1.3062936;.33988678;-1.816131;.93586594;-2.6240525;-1.8172051;3.7920787;4.4698424;1.7972946;7.0451331;4.5700665;-1.1448355;3.6290245;4.0622921;5.9658852;.2605229;2.6904464;1.9930689;-.046146091;-1.0524848;.66893673;6.2601404;-3.3188052;1.1404876;2.7124829;3.218904;3.8372202;2.7480328;1.5960114;1.039305;4.6168871;5.7770381;-.35830191;2.1658964;.95325404;1.2633225;.6904608;1.2802035;1.7738004;3.1512015;3.5961061;.84875357;3.9174371;-1.9243213;-1.0346562;1.3493531;3.5980034;-.62127179;1.5210792;-.63663667;4.8552499;2.5642686;2.4856582;2.9775677;-.31432968;2.2622809;.60643351;-.62403905;-2.0724719;.73304784;-.25606984;-.39921796;-.59401363;1.7466911;1.4002596;1.7737077;.78437382;-.38887405;.028014226;.46715686;.85001111;-.47236136;.48203734;-2.0076866;1.0459871;-1.307184;-.050404601;1.9715868;-.62267858;-.81517315;-.24997553;2.1551545;1.7229745;1.9889096;.75699914;.18671048;-1.710772;2.9312553;-2.291822;1.1709085;.34805563;-1.5090125;1.4941044;1.9557559;3.2477756;.21267447;-.69517881;-1.0165716;-.6495176;-1.1367741;-.7638672;1.170342;-1.6541815;1.0225217;-.51306784;-.93755192;3.4882979;2.4941497;1.5602678;5.0670314;2.0712965;-.75759333;1.6251762;2.4798295;4.5295429;-.65281826;4.0262709;2.6759753;-.25256693;-.48786274;-.17197338;6.4015861;-1.7868137;.85728413;.57196307;3.592984;4.2792659;2.374341;.28305194;-1.5454708;4.5371256;4.7779632;-.72906607;2.1711419;-.052706093;1.3141758;-.708;.79393411;1.5752493;3.1545939;3.9176273;-.50576639;4.7318769;-.90097463;-1.2700351;.81230462;1.2467639;.085165992;.42080325;-1.4011804;2.7455521;2.0354776;1.5535363;1.355726;2.8273027;1.2998286;58.373039 +.68622297;-.1705201;-.26307192;-.059815641;-.37916961;.36154032;.22476636;1.7986493;.70253104;.44280711;.0057453904;-1.2812556;-2.5201371;.27997386;-.72493094;1.4803141;-1.3060564;-.71001786;.87331027;1.2693311;-1.3441925;.02698986;.34333551;.65917224;.98508316;.67678034;1.5372857;.50529528;-.69885826;-.32708901;1.5282933;-.3014611;-.8350814;-.65640891;-1.3477956;-.80896044;-.39802352;-1.6761882;.33584395;.28774458;-.80976492;-.30119959;-.2086606;.12138567;.31033638;-.84341919;-.60375822;1.0320271;-.73166847;.047350027;.28860477;2.7910652;4.2362757;-.91394192;-.79088497;2.8976324;1.3094904;1.886866;-1.0116704;.2190633;6.1809874;2.9066846;4.6904225;6.2347336;2.3963311;5.2918439;3.5446184;2.9641254;1.4236339;1.9722995;4.0171952;3.1395586;4.2692885;1.0098616;.10877477;1.8189526;3.4565647;.96627319;3.6056328;1.6988417;4.6448898;2.6495712;4.5340557;2.056426;-.053710479;-.15719064;1.5278934;1.2054338;.38011721;.23646483;.084182426;3.3796039;1.0075427;1.8927231;.56794482;-1.417628;1.0358772;2.5513031;2.028234;1.1091402;1.5109326;.41747552;-.85885197;-1.5861508;-.43773317;.53635091;1.2755417;1.4068019;-.53595281;-.39338958;.8549248;-.74933702;-1.0739315;-1.8069861;1.6472075;.86822486;-1.3088659;-.73293293;.87224275;1.4670236;-1.7008702;.44930935;-.41194662;.57379377;.4023518;-.09332563;1.0159383;-.00089429191;-.62571579;-1.1071463;-.20206574;-.94531876;-.81233406;.60599506;.94020754;-1.638849;-.091922112;.44871017;-.06567242;.016117571;.08913029;1.6355096;-.37131634;.55273795;-.69629955;-1.275412;1.5188589;.6142565;.6541633;-.82392222;.62817335;2.6211846;1.8378979;-1.0053642;.22433804;2.0013003;1.0964407;-.048633352;-1.2049488;1.2414054;2.7191472;1.214498;3.3247557;5.257266;.77345341;3.7468312;1.6476053;2.1315281;.80475205;-.59200621;4.2802873;1.2560953;4.8314199;-.11970672;-.56604028;.39772183;2.2764118;.73635477;1.9255147;1.6754022;4.3431416;3.1877115;2.7136419;1.8711945;2.2216659;-.79828364;-.11654242;1.2993981;.36763495;-.85993397;-.60135955;2.2799182;1.2419713;1.3849868;1.0252426;-1.0121874;.055362374;2.4575019;1.8774745;.8295269;47.067593 +1.7770301;.20407672;-1.3713562;-1.2017623;1.5080348;.90369779;-1.0135521;-.58894074;-.32594487;.11508153;1.6289209;-.3279601;-.90075403;.13448204;-.13571432;.54014122;.3357003;.5226602;.16697042;.275783;-1.0714359;.25209975;-1.0011272;-1.2814946;-.42135194;-1.3151909;-1.1949958;-.20805675;-.30798471;-.68081486;-.27387047;.24997878;-.47855574;.77610159;.83040744;-.70675665;.77244115;1.0671598;-.11373233;.35642898;1.1805823;1.0482279;2.3322713;.8816362;1.0128537;.35379547;-.85888988;-.090902746;.80312175;-1.6665893;5.5299067;1.4670311;.37616456;.98243386;.95807904;7.0557308;.82075483;2.6958334;-.34700936;2.5898662;2.6793087;1.0211458;2.3823218;1.0983477;-2.5155621;.42653871;2.8304331;-1.9099134;.50726074;2.6586933;.35841152;.95429939;-2.472657;2.5766311;-.72802335;2.6719229;1.6250883;-2.9710367;4.5971856;-.88097155;.75389564;3.4007785;.16179481;1.1185899;3.3541923;3.829036;6.8818984;2.4217331;1.4362643;-.043835007;2.7907712;-.81962377;1.0826111;-1.3417951;4.6416965;1.2802126;3.5230346;5.3142853;.08997605;4.9255848;1.2933191;-.37225586;-1.4666883;-.69820458;-1.601867;-1.4073684;.50616193;-.55066049;-1.5477413;-1.8228656;2.0638075;.27014503;-1.8536413;-.23756677;-1.0227734;1.1085495;1.230161;.63216364;-.92657065;-.47091743;-.74943042;-.15177716;-.28978342;1.2797527;.40551201;.67268413;.18420193;1.2119751;-1.2578877;.53614998;-.27916661;-1.1182303;.79911238;.43636709;.010501428;-2.4452441;.24555877;-.50520045;-1.7565212;1.2468824;1.5529644;-.027789015;2.3029797;.23764735;-1.2193156;-.51517785;-.22351207;-1.4820527;.69137502;.47053593;4.8180633;2.159368;-.38329315;.74495012;-1.2864807;6.0240383;-.60621214;2.7945063;-.032145262;.05060282;2.106873;1.4204487;1.6126829;2.2585301;-3.5779335;.90034342;2.5665727;.75838798;.74295372;.83864218;.26878878;2.7472351;-3.2021911;2.0284784;1.6171337;3.9331479;.020517038;-2.8724658;4.4170718;-.56118983;1.4288157;2.7623181;.50046962;.7775206;2.8362837;3.0925138;5.3909707;3.4326062;-1.551434;-.93660676;1.6740775;-.63852549;.54415244;-1.2688814;3.450726;2.0886443;4.3607054;2.6389782;1.053749;5.101727;40.744354 +1.1496104;-2.5818522;.25243345;-.49089378;-.33174691;-1.0015738;-.47904181;.5751701;-.030931761;.91246861;.31497961;.65897912;-1.8707181;-2.0723109;.30860096;-.45366436;.75717402;-.47402927;1.1070979;.65423381;.16444983;-.61030495;.84321958;-1.2037599;.70384192;-.69543511;.54120708;-.182595;1.324873;1.579357;-.16633752;.27693591;-.20009148;-.74346614;-.35646299;-.36652985;.64497238;-2.0495484;-1.6368839;1.2727537;-.60304201;-.32719401;-.16269508;1.021176;1.6701152;-.8142432;-.40288183;1.6953697;-.76438618;-2.278173;-3.8152475;-2.2577558;1.5191994;-.13231638;1.0009241;-.0046621151;3.1276963;-2.1550002;.50804216;1.2849504;4.9752231;-.075060733;1.1212813;2.9441829;.69556278;.97236705;1.7045673;4.5632181;.60453838;-2.4323492;.89975792;2.0983448;-.35595745;1.4615681;2.2526145;1.8962078;3.3026891;2.8235939;-.021812957;4.2376142;.88579077;.88255084;1.9954771;3.8264098;1.6046996;1.1302295;.52259791;-2.1295056;1.2471846;4.3588862;2.6796107;4.2859907;3.5852284;3.8432822;3.260222;2.4158511;1.4455012;-.3142015;6.54738;2.947391;1.5790377;-3.2316704;-1.4907436;-3.2998385;-.55639499;.38523856;-.69375235;.28055635;-.83099848;1.2817416;1.261333;.30904233;-.68134511;-2.9967256;-.33167377;-1.1318821;.015673565;.76298457;.91303647;2.0268881;-.97010291;-.61496496;.53383934;-.37183073;.30219668;-2.1119294;1.0989302;-1.2926296;1.0853437;-.2896257;.94341838;-.39569345;-.5740484;-.80345756;.69120395;-.37196636;.36513114;-.81857759;-.26861012;-.87632883;-2.628958;.53655165;-1.2573699;1.0153062;1.5703272;-.14944091;-.94488716;1.757605;-1.553908;-2.6191773;-2.3584545;-2.2060659;2.0006518;-.19420999;.19285193;-.52512425;2.6075442;-1.5623788;-.4660854;.91811913;4.2877655;-1.0060679;.8579514;2.4056358;.38000488;.0052316957;1.3476115;4.5434256;-.096028745;-3.7511306;1.7652169;1.9465245;-1.1335181;.89886677;2.2528887;2.0424619;3.7825205;3.594496;.47899097;3.6591876;.68898571;.49114448;2.4844759;2.504415;2.1896515;1.6521537;-.6129989;-1.1507832;.22508711;3.0569496;.59784019;2.9260798;3.1002517;3.1251423;2.0719121;1.4254936;.8818298;.044698726;4.5251865;1.082212;36.360451 +.82671231;.35929;-.25819969;.95562518;.55353719;.41060635;-.034055308;-.4989641;.54846984;.015224947;1.1642828;.30930272;-1.4716151;-.33543056;.79209304;-1.0719749;-.66955137;1.8784664;-1.1338968;.17169501;.2345909;2.7916007;1.4366744;-1.8237835;.48558706;.65654051;-.62144417;.5155977;1.2763271;-1.3983016;1.5223593;-.58041418;-.18311951;-1.6191337;-.048561003;.7053979;-.16321242;-.48246852;-.43464395;.68004191;.79628438;1.1401228;.851587;-.071427733;.64196908;.34759539;-2.6793015;.32910207;-.15700646;-.61468679;.70415455;4.1799736;4.3991737;2.8770809;3.5343935;.35072207;1.0848465;1.2225623;-.33367321;.64492118;-1.4038621;7.7363672;.70870262;-.14789869;3.5218806;-.75410932;.45607576;1.1213245;-1.0100754;3.2572734;-.44239742;2.2788033;1.096084;3.4133377;3.3460488;4.5329542;4.0704336;3.7503355;.73626018;3.2749434;.062853746;3.7049727;3.1520622;1.0481629;1.8045598;3.9565005;3.5886085;2.7788124;3.956569;2.0103412;5.1753316;-.46359679;.94228137;.71273208;.619726;4.8707972;2.0441818;2.4971166;.52048337;3.6773784;.31318718;-.68757105;.16313109;1.0911387;-.64346993;.48369351;.85605592;-1.1408103;-.97356248;.81587064;1.5678684;1.0549093;-1.768525;1.2761371;.78942651;-2.1891279;.22244711;.64566427;-.50125486;.87080485;.85747641;2.5071211;1.7819639;-2.0235918;1.9550905;1.8709139;-1.2448171;.11805909;.91600591;-.64357889;.513852;-1.5800221;.45316932;-1.0445162;.019902671;.64855224;.96946561;.66674966;.5059256;.79199761;.88448149;1.9585137;-1.0689309;.72221482;-.34673506;-1.7860875;-1.4260614;1.5631164;-.33437511;-.38063329;1.7927305;3.4168832;2.5158284;1.8429507;3.9346189;.9124772;1.3682081;1.4454364;-.51733625;-.34258857;-1.9901247;6.3145738;1.0212108;.16858397;2.4313886;-1.9073061;.42675796;2.6087594;-.61400247;1.7557923;-.67215014;3.2985258;.45680252;3.0272224;1.5301096;3.6123843;3.7539573;1.7326504;-.68161744;2.2752948;-2.4091365;4.0487866;2.5329444;-1.7706829;1.5829762;3.7119927;2.2589998;1.759266;2.0561621;1.526006;4.5643649;-.26120305;.99994302;1.5166845;1.3417014;5.4835954;1.2187202;1.0780168;.39410174;4.1953983;57.850212 +-.27725849;-.29601187;.56591737;-.72925568;-.44353107;-1.2049888;1.1824604;-.17699693;-.31662595;.022313306;-1.0100598;.95937073;-.70127875;.24660459;-1.0022348;.55752426;-.25534713;1.4742993;-1.0562084;-.2329389;-.36899945;1.0245521;-.51450944;1.3759965;.96200067;1.0724964;.84673309;.059527449;-.65775412;.41889274;.73701417;.64670867;-.30599231;-.36952436;-.30200827;1.2461987;-1.9734116;-.85552377;-.12322262;-1.0412886;.56222361;.99447989;-.20607363;-.81531322;.38870829;.056739166;.029128766;-1.1655627;-.65096271;.024667457;-1.670261;2.78813;2.8849537;2.2494946;2.4659369;.38410208;1.2780114;-.7834754;4.8142123;3.1623309;1.5725191;1.229602;3.5493031;-.6676535;.40801114;1.2320383;-2.1375144;2.233357;1.8982378;.24795723;1.5059934;1.0805609;2.840915;-.18006475;1.8462347;4.305069;4.2161613;3.2838573;1.0436325;2.1984682;5.3394446;1.4785904;4.6260886;1.3451763;1.2558486;.79454201;1.4513285;2.495805;1.083794;2.0230713;2.8049471;5.2384462;4.8065405;.093224406;1.5537093;1.4754931;1.2003322;.56212687;.2156297;-.36598986;.035066403;-2.2695429;.93008727;-1.5408037;.23212764;.35299423;3.8368416;-.45812753;-.24570046;.47874528;-1.0379518;1.6268064;-1.8354406;-.91605324;-1.4813919;1.1591558;-.21803018;.94040531;-.71648753;1.581038;1.819978;1.2064885;-1.4873701;1.4962037;1.4725837;.7421478;.51661414;.96968317;.43464592;-1.0509433;-1.4998794;.76293355;-1.5536398;-.83202493;-.87033516;1.3682361;-1.3831537;-.94464606;-.48077145;1.9580917;1.1830184;1.0390494;-.59698385;1.1936824;2.7579136;.96113396;-.92617071;-.39928868;-1.4516388;.47974783;-1.3224306;3.6098619;-.31729212;-.22484045;2.5724754;.24989487;.45383003;-.51726156;1.6092697;.49450248;.5117628;.70548224;3.107888;.09704309;.81972075;2.543644;-2.5533719;-.58443391;2.3156469;-1.2045938;1.0360065;-.1502433;2.1898565;.13444366;2.1764276;1.7545873;3.5588508;1.1669409;.65755868;-.28379413;3.9105625;-1.0610522;3.142849;.79181051;2.2309477;-.22166058;.87618792;2.5142868;.80021894;2.0738523;1.016963;2.6381295;3.4110699;.021859761;2.8805189;.82840574;2.0883017;-.73854864;-.19328287;1.1869203;31.677668 +-.91219771;-.17690881;-.10379656;-.82244927;1.4981334;.042605009;.83942747;-.66364825;.059187554;.54152882;.56968009;.2689749;.10080805;-.48668891;1.1179311;1.3093886;-1.8211306;-1.1489023;.9371264;-.15974747;.39160332;1.1088871;-.76168144;1.5537483;-1.4556421;2.0218806;-.44972786;.68325526;1.1952595;1.4047194;-1.114511;.69896513;.65886348;.4834244;-.051207863;-.42900336;.78545868;2.346359;-1.8919758;.40962163;.12463287;.84815818;.87406355;-.85151011;.31940824;-.51307106;1.2234263;.74992186;.0044744117;-.69828874;3.9027257;2.0515153;3.2503731;1.560791;2.1783984;-.26156569;3.6434293;3.0855024;.80888021;3.1397755;.69012421;1.0445061;5.4432702;.25516981;4.585423;3.2117133;6.1954594;1.5713923;2.5665092;2.6701527;2.9910393;-2.1555204;2.9259768;1.0709563;3.608706;1.6340239;-.52488381;.97519892;7.0970001;-.77488333;.41224959;2.7817273;5.0248928;-1.3806671;5.4013815;1.5347303;6.4782476;-.40193382;.1654619;3.3496106;4.2721024;.86576849;2.1841056;5.8432584;4.3737316;-.77771175;1.5217391;-1.6103109;4.7002506;-.60218656;-.4690609;.6065315;-.48729736;-.080730312;.084042318;-.66932756;-.66321731;-.400765;.25991163;-.10984044;-.58936465;-.45038906;1.7199031;-.45175177;.43271953;1.3969249;.52249056;-.77808362;-1.5786616;2.0251002;.28690454;1.5505025;-1.166085;.76071465;-.7343837;.98446751;-1.8859434;-.20923756;1.6528076;.76441336;-.43387604;-.35311201;1.302368;.52819455;.71190423;.69324261;2.0922389;1.9895519;-1.4866776;1.2939601;-.75496048;.9438442;1.3788887;.58679366;.60258991;.46679065;1.2566071;1.6144238;-.491157;-.050178766;1.4810561;.8170827;2.5458071;2.2647038;1.2469074;-1.4896824;.76167005;3.9931352;-.029654641;.90993345;.26792055;1.5493354;3.9554217;.074751586;2.2995288;2.4323664;2.4203095;1.7286843;1.9400526;.57000196;.52640349;.030258678;1.2917747;.010717441;.27738971;.58495998;-1.8437349;.34854555;3.3689144;.038844906;.35037541;1.9110577;3.9993553;-.080491036;4.0613704;.46436137;5.2783322;-.61390126;-1.6364807;2.1519814;5.460433;.0030402474;1.8035699;5.1705585;2.0889235;-2.2271991;2.3078032;-.015907014;3.4166553;-2.0559964;55.91539 +-.5941599;.20249684;-.084557846;.95168185;-.30648851;.31899902;-.026131177;-.69545054;-1.1454384;.77975345;-.0014330181;.36942962;-.29680732;1.6186938;.68474269;1.6939026;-.38468137;1.00433;-.57238024;.80319351;.99571753;.36647397;1.0400057;.59053719;.034882296;.30818683;.39867747;.095227785;.20990908;-1.0844965;-.7962386;-.45880568;1.3378314;.8555519;1.2262087;.76477432;.64815193;.74010229;-.23773403;.58965582;1.997979;-.38241556;.34329045;-1.3130872;-.0076418566;1.7451484;-.059609525;.25401792;-.16025129;.28653279;3.2824907;-1.1129465;5.0428791;.3189449;6.2750926;1.0929797;.75562608;.63701189;.12267503;1.7843877;2.5063066;3.4532444;.61750436;3.5242999;-1.5550978;1.7471393;4.7578044;3.234601;1.9841355;3.442426;3.8659499;3.9198589;6.0516539;1.2913722;4.2051945;.70328248;1.9851329;.47646683;2.7437072;.60546321;1.5267675;-1.0523856;3.0446966;.015322774;3.5284309;3.5276918;-.67581034;.47114828;1.145763;.54049271;5.3861933;.51036996;2.8449667;1.1903641;2.2761705;5.8115363;-.43656301;1.4716851;3.7361693;2.7939005;-.027795868;.75148517;.89373684;.76897991;-1.9866474;.46075103;.97044462;-1.3556343;.10709672;-.75576645;-.653992;.26489779;-.12970565;2.3962767;-.97321278;-.47376111;-1.1115549;-.33891225;-2.2298417;1.2141955;.44351876;.70361876;1.0279061;-.61568481;-.40400726;.31275108;-.12243719;.62019002;-.34404841;-.83468837;-1.2837237;-2.0589707;-.1040239;.098817267;1.0224363;-.92193669;-1.2904457;-.074161172;-.23028013;1.3143373;1.3866696;.41337642;.89150977;-1.862561;-1.3520914;.56381309;-.26258659;1.7854449;-1.3160191;2.178761;2.4824128;.33082488;3.292542;1.663716;4.9865537;-.31118324;-.30983907;1.5425097;.64215004;1.2245888;.76030785;2.4116302;.084064402;1.27082;-.80717748;-.36626813;4.0851588;3.1341631;1.6379104;2.9809618;-.088361956;4.5369506;5.369966;2.3357396;3.1162667;1.4951596;.79804569;-.014069457;.70969826;-.09085843;2.0774207;-.39351669;2.0253482;-.1895308;1.4815786;2.0411999;-1.4145734;-.21268304;-.07539551;.6813699;1.9016066;.44973764;2.6518509;-.12614553;.5727253;6.0717444;.40394914;.97967905;2.7685916;1.69234;58.934135 +.086726502;.51038384;.62824321;-.18055248;1.0780345;.65798455;-1.5219555;.72046041;1.7631068;-2.5889473;.058436621;-.87906975;-.17648801;-1.776175;.28857774;-.99715286;-.39012566;.3235819;-.5129028;-.98714864;.19037056;.41884115;.41765136;-.012233065;.67110288;.50892556;.24335898;-.6478532;-.37742972;-.2414158;1.0274324;-.4822329;-.70607841;.5459646;-.18405677;-1.4757638;-.35133559;.48736328;-1.0233889;.10396397;-.16315924;-.91376036;-1.6863879;1.8470931;-2.3564868;-2.7448032;1.1056694;-.24240631;-.83635736;-.62292695;2.0604284;-2.4411526;-.50863057;1.0704979;4.2706165;1.5080556;3.9375243;2.6247008;2.5250032;4.355268;2.676862;2.0807772;1.3024009;3.5688412;1.5573667;.72812361;-.3498351;5.3916516;1.9896375;1.4278493;2.4430604;-.14717166;5.5751595;.11268245;1.1940548;-.48121244;-.11051076;.0013369991;.81874561;3.9498014;4.9082966;.017198881;3.4711607;.44499233;.37330514;1.51923;2.5659788;5.5467448;4.5491424;3.286185;3.3617456;4.064528;-1.5042949;4.5203366;2.4403057;3.842366;3.3514686;1.326252;2.9354043;2.4676147;-.22427502;1.6361015;.10359234;.78300065;-.56066644;.52167028;-.81668794;1.1128895;.84482241;-1.9244902;-1.6076564;-.058601104;-1.3856173;-.76965618;.34042224;-.27828965;-.87705117;-.41704684;-.7663123;-1.5015514;-1.1650326;-.17806329;.71720159;.98423856;.68672198;.17282633;-1.0808371;.3539983;-.16956581;.1157482;-1.0199655;-.24173135;-1.1498446;-.60886651;-.07218422;-1.2322148;.25032276;2.8349242;.44206366;-.0012501106;-1.116892;-.96600497;-3.7185557;1.828656;-1.2398624;-2.0163476;1.0450612;-.87844801;.22655778;.11241037;2.5627899;-.013974516;.71266514;1.7013597;3.4621732;.7163595;1.396104;1.2831316;1.1380944;2.9891562;2.0478354;1.5951822;.40156978;3.5160034;1.1636924;.35501459;1.0528535;4.6889896;1.840422;1.6334742;2.4745195;.66932535;3.8151922;1.0893331;.12927984;-.33725744;-.47698751;-1.0238416;2.477644;2.3760548;3.0245073;-.69161034;1.7336144;1.112121;-1.6702392;.81360942;3.1054726;4.4330783;3.6914854;1.1749636;3.6772501;2.6086888;.59548163;3.1663175;1.4880689;1.9874929;3.0515349;1.2887695;1.8802544;1.6933744;47.112648 +-.32963118;-.75161219;.75039518;.849581;-.51367897;-1.5628189;.98989218;-.59003723;-.36670488;-.44518659;-1.3565342;.34907249;1.1900821;1.031895;.61931211;.17284153;.27371028;-.24280581;-.19872381;.22645731;-.17289753;.45936424;.25375354;-.26109412;.49437729;-2.1664996;-.45829174;.056913204;-.59438241;-.55510706;2.2205884;1.0618554;.90966028;-1.6862248;-.67421287;.65452021;.91870564;-1.3854891;.96254462;-1.4808439;-.72494596;-.17088324;-1.4144562;-.40340123;.78364813;-.91018355;.10285996;-.078798145;-1.9032781;.60747862;-.17894906;4.6516695;1.5083092;1.8526845;2.8145339;4.1933804;-.35269719;3.4238636;2.0667012;-2.1843007;-.010280771;4.3523679;4.7849493;-.15092415;-.02998182;3.1601572;-1.8879328;7.1507721;5.3341355;3.1498263;1.1953495;4.2866092;3.9310317;4.1458545;.7838704;-.84326965;.59579819;3.5247312;3.9148455;-.41270393;3.309437;2.2354875;1.1405156;.57199591;-.48674387;5.0128555;-.96072477;.51744533;.58309329;3.7927928;2.9291246;.9455843;3.5567095;3.5492315;2.5434368;3.8940227;.56450206;-.26849547;.57546443;.6485064;1.17635;-.28693965;1.2003597;.15613502;-2.0601068;-1.1513968;1.5817238;-1.194564;-1.4972763;-.26878673;1.1298444;-1.5196352;-.77227032;2.7551475;-.64924818;-.45749664;.21200258;1.0759317;.20807663;2.4843781;-1.1464589;.64584035;-1.6767397;-.12967861;1.3499832;-.72597808;-1.1503022;.54230517;-.61807907;-1.6255319;-.051111698;1.1837715;.074787393;-1.9111425;.71355015;-.034288362;.31422392;-.21724005;.033243284;-2.3253925;.71555752;-.40129352;-.40123847;.25820744;-.66027987;-1.5031388;-.60989338;-1.6933359;-1.2393458;1.2296722;-.9423275;3.6083062;1.7777394;1.3405411;1.2074511;3.7973683;-.034565743;2.4613416;.85048699;-1.6576034;-1.4847696;3.2431445;1.3528763;-.40937722;.59249479;2.913866;-1.3003443;5.2877798;2.859226;.9800784;.062620334;3.1808755;1.5297602;2.5644658;1.2305481;-2.4951921;.4249931;4.3689003;3.5837278;-.75461912;3.4113708;3.7091341;.76746815;-.11284114;.43589932;4.9980793;-.47690549;.16338061;.54904532;2.1996615;2.1075633;1.2790457;1.9159418;3.2250071;2.6987877;2.8880093;1.175046;.0047966284;-.77595222;.59143114;50.051517 +-2.0431106;-.22748937;2.8066752;-.4983106;1.199138;.2386037;2.7231419;-.37377822;.49522433;.81431746;.70435512;-1.5789511;1.0922121;.93484205;1.2604735;-.99365395;-1.1373762;-.087523565;-.36513597;1.2541962;.94124138;.72203571;.042520605;-.58771217;-2.3629169;-2.7178209;.28195187;-1.5636482;1.5165261;-.35389411;-.15000696;-.71232587;-.48052403;-2.2306788;-.092723511;-2.038435;1.6684996;-.75816125;1.9877199;-1.7282465;-1.6121372;-2.0354164;.55068588;-.059186012;-.68673319;.16272372;.87845004;.55418497;-.6433776;-1.3213588;.20297934;1.3789607;.63363791;1.507349;.62589711;5.6675625;-.53036845;2.3850634;3.7527075;3.3991416;.5391078;.12859057;2.510107;.80848801;-.60976112;-1.4034408;.63472348;-.2201734;-1.5458645;6.3664927;5.394249;1.4729983;2.7830622;-1.5784656;2.4368627;.58292359;5.9951591;2.8731258;2.0228226;.56392938;.79927206;2.844965;1.4689674;2.2801201;-.39529467;2.6919525;2.2471628;-2.1386666;5.7303987;3.1808908;1.3282515;1.664107;2.1326885;1.024518;4.0705152;1.3144201;3.8577724;1.7094436;1.596153;4.6918888;-2.2874312;.84935039;.74481446;.75004053;.8162536;1.2322212;1.6238513;-.86220115;.72130901;-.20291682;2.8034418;-2.1180577;2.1283119;2.283751;1.7426544;-.73523498;.21232432;.11685873;-2.1342578;1.4636977;.34270489;3.801944;1.4687743;.058032699;-.92453027;-.95789188;-.99701726;-.88785529;.89961213;.477465;.72600222;1.0500052;-.74140632;-.088300392;.46575478;-1.9412469;2.2484703;.24467285;2.2873602;-2.163933;-1.2975221;-.48121113;.73508269;.048234653;-2.4931588;-.07905744;1.2091773;.090066865;-.69817072;-1.0320289;-.67078;1.0594301;-.94630337;2.5764134;-.47097942;3.079628;.45690796;1.8405106;2.3344586;2.7716558;.91232848;-.34040028;1.4144322;-.70528066;-.022249397;-1.7230526;1.0072994;-.0031549884;-.32726231;3.8156958;4.1647925;-.27873394;2.466053;-.36075205;1.836252;-.29275945;5.5998178;2.1133502;.085093781;-.98861098;.68500262;1.6332182;1.2004257;-.61289877;.63495988;2.7345207;2.3267171;-1.8015875;3.2898452;1.9088519;.8170619;.38763469;.3989661;-.0073338239;.34094793;1.6020756;.21599515;1.8259562;.87042689;4.1030946;43.585579 +-.95721471;-2.5288458;-.51095355;.5724346;-.78975564;-.93483424;.44562358;.0095771598;-.056107499;-.79700816;.25964299;-1.8385624;1.4385252;-.54179001;-1.1506317;1.3305895;.47202387;-.29093954;-1.2220087;1.1167905;1.9408655;.31842977;-.92892271;-.015840899;.32067657;-.86577857;.55378962;-1.2920209;.066033393;-.36249539;.63088584;1.2960343;-.94884598;.4561702;1.233626;-1.7127494;-1.1152391;-.37127715;.276833;-.088006079;-.50943589;-1.7130229;.19956295;-1.0841867;1.3724606;.70101833;-.78226954;.043383762;1.4073977;-.76363218;4.4387937;2.0855465;1.3298659;3.2056651;1.8137096;1.0327892;-.72317553;-1.0563384;3.4264317;3.2918549;3.1485128;-2.0798194;3.4114001;4.0789976;-.12702988;.23951177;3.4570742;7.8052197;4.1926742;2.837683;4.7196245;5.5845113;1.6357951;1.4849371;.32245484;2.8961673;.045814242;-.1252172;.71175349;1.7407445;1.908118;5.5341229;5.1624918;2.0472796;5.3182869;1.801851;1.8096173;4.7287178;5.2525048;5.5519056;5.3138804;2.1399503;1.0232537;-.061352503;4.1513152;2.8951538;2.3659289;-2.0167279;-.085192613;.32613513;-.73495317;-2.2093749;.2906163;-.223802;-.60945708;.26491913;-1.1655917;-.2713359;.42709935;1.2216769;.30398667;.35952455;.80554819;-.85738504;.23405704;2.3316033;.35558677;.41719532;-1.9964386;2.4094567;1.7074699;1.0808915;-.77759194;.46482581;.062426865;-.32268029;1.0299625;.2206369;.73756409;-.72539985;1.703746;-.25782594;-2.3713539;1.7271708;1.3223569;-1.3939123;-.68323904;.28366062;.28411967;2.4895842;-.48945999;-.3596468;.70225382;-.026662843;2.1723135;.1471301;-.36154777;-1.2719431;.73437059;.78563201;2.9849041;-1.2742862;1.7149858;1.1050608;2.3117335;-.59797186;-.093624376;-1.2090347;1.2098131;1.1553636;2.412401;-2.7994192;2.531615;3.0100298;.9622438;-.00096952618;1.0488086;4.6036339;2.7845955;2.5908492;2.8415449;3.9251373;1.0458379;2.2297144;1.1257491;2.5971267;.54799557;-1.088696;-.14005989;3.4231911;3.7343554;2.402693;4.854363;3.6005306;4.5970821;-.20000839;2.0272567;3.3296502;3.1048996;4.7576814;3.3750846;4.4483004;.11002359;.09920492;2.4415739;-.12883988;2.618638;-3.5697563;-.80364263;-.18550548;54.384621 +-2.3388929;.074876256;.7527234;.63154614;.73256302;.50583142;.37624699;2.4739144;.07619869;-.76359022;.75344044;.32059482;.012618064;-.08831621;.36705235;-1.0680436;-1.1349293;-1.0639505;.26576126;-.12162811;1.3092849;.45209593;.94274217;-.80261785;-1.9132363;-1.4590844;1.0241011;.55524647;.50997359;-.46143857;-1.1385384;-.18430994;.068714842;-1.4104573;.33616909;.2091831;-.21593733;-.48414558;.73282576;.54124165;.87692052;.20841378;1.2715478;-1.037993;-.31348741;.63634175;.57849461;.79592597;-.65425247;.54357022;.31490248;2.5668242;2.7076545;-.47298542;-.30667925;2.6957273;4.8241835;2.0476644;2.7082286;-.55546612;4.4539962;3.7613044;4.2701526;1.4907001;1.3912271;2.2170146;-1.1715223;-.86614066;.20080771;2.3198235;2.7279429;4.5207124;2.2666867;3.9280953;.82901251;-.24447556;3.0224094;2.4208267;1.4050624;2.3298573;1.8320231;1.6772252;5.2593818;6.3281388;1.8547897;.34044063;7.4418206;-1.0221709;.25477603;3.0352745;5.353313;3.7459192;1.951161;3.0441201;2.9151146;.57433653;.38354215;4.5395312;4.0637836;-1.4731138;-2.1018128;-.47751585;-.28148407;.81973946;1.2392722;1.1054242;.96804887;2.0369265;1.8157178;-2.1826661;-1.2289127;-1.0983437;-1.5887872;-.9056139;-1.0460856;-2.0524044;-1.4280787;-3.8234704;-1.1667877;1.8862092;1.7183934;.23049664;.58564156;.35802868;-.97521669;-.41170317;-1.7584912;1.7080654;.55787778;-.99743134;-.80388874;.44965622;1.8568031;-.57983404;-.35036263;-.34729975;.86449009;-.87217784;.81717622;1.2821649;-.79844987;1.4228137;1.5448246;-1.8624375;-1.2698864;1.3254669;.076080151;1.8832526;.9867906;-.26066977;.084818691;2.2667389;3.688622;.0052715177;1.758718;2.9810407;3.1042101;2.611696;3.0171294;.15021089;5.1526957;2.6579664;1.5056431;2.0722516;.45032349;.18940498;-1.1833621;-1.9430698;-1.2427815;3.9658642;1.3685644;2.9241209;2.2180207;3.0074675;1.601764;.53155196;1.1890377;2.2161074;2.1994817;1.6380054;4.0951886;1.1729211;3.9494438;5.8418283;-.4328157;.57817972;7.3796053;-.070903972;-.85551995;.54029608;2.7082348;3.6306024;1.5633731;1.3036672;2.5371358;-.0580533;-.27604842;3.0821688;2.628001;-1.0507994;59.846493 +-.43380499;2.5467677;1.5554683;2.0635498;.079512782;2.2357237;1.4699949;-.94976956;.50215638;1.1471492;-.026890278;-.21188346;.40931731;.88720626;1.3767705;-.37933147;.11626077;-.19555251;.97819823;.48596266;.28234312;.41848043;-1.2807063;-.072808497;.83428669;-.3221783;.51149625;.45525941;-.65926707;2.1058176;.33550605;-.38565338;-.94635868;-1.9643859;.25226432;.72042912;1.3854654;-1.4039433;-.33890134;-1.7512358;-1.3368175;-.077803209;-1.0335274;1.4556273;-.8334015;-.33753157;-.24782223;1.2296945;-.12651017;-1.0617577;-1.0328537;.34836563;1.4047383;2.3968811;-.2071476;1.9863133;1.8511351;1.0181141;3.4615958;2.7890449;-.16373377;3.9743218;2.0475357;2.716794;-.98049551;.040899988;.51284832;.9184376;3.4520793;4.8965497;3.4358633;-2.0787423;1.1411215;2.907321;1.8398354;2.3004858;2.3480754;3.1812093;1.8422502;.67665315;-1.0961201;2.1691127;3.5772951;4.1486936;1.4241958;.52459615;1.1258057;2.1256864;2.034049;3.5290873;2.5854502;3.9695208;3.9699578;-.52391964;3.5592592;2.0423274;2.8084252;2.5350688;-.79577762;1.6515149;-1.0726765;.59956723;1.9402792;.98461455;.59681422;1.3273737;1.0432708;-2.4808166;.57980406;-.06302581;1.2401823;.43728665;-.1751135;.54979289;.28912511;.18310431;.47088164;-1.008613;-.3152737;-.55886704;.77591544;2.2162995;-1.1960871;-.40051535;2.5844171;-1.6444707;2.2082069;.1846412;-1.5467769;2.6832883;2.8643184;-2.0902255;-1.533499;-2.3790073;3.145798;.42394975;.80888015;.65481561;.80146605;-.80521601;-1.4373256;-.83365387;-1.9861362;1.8785172;-2.4532261;.02864239;.47250545;.9088921;-1.1439996;.30595824;.44570649;.36675474;1.6575576;1.3455935;-.33111262;1.5883576;.75096315;.7078982;2.8410344;1.9490927;-.021986311;1.7913663;1.9036138;1.7960351;-.14211416;.01118955;-.52999604;.6093443;2.1959407;3.3341548;2.5557492;-2.0318763;1.0775056;4.5515451;.059075616;2.7813253;1.8795259;2.7813249;1.6356838;.67969078;.021530569;2.6029327;1.3881575;2.7882042;.76329708;-.07755249;.45933324;.74328876;2.762243;1.0429906;3.4782898;2.3488905;3.6653872;-1.2976452;2.4643421;.94464552;1.7949355;.47805193;.74615788;-.17380436;50.336201 +-.04909711;-1.7821043;1.0712076;-1.1649405;.83597183;-.46412247;-.18657954;.0034380376;.63633955;-.14821243;-2.146805;.65239269;-.59775752;1.6808299;-.15480858;-1.0503086;1.7810266;1.4647677;1.3233113;.91127741;.18807113;-.34775361;-.27519462;-.71208823;-.78745693;.18352208;-.53980696;1.4989935;-1.6846707;-.19050863;-.58792084;-.071053825;-.12139646;-.0027315456;-.23906152;-.72156382;-.99700427;-1.5616125;-.009163511;.57468897;1.3508908;.61348969;1.2083877;-.92252624;.10052826;-.31164786;-.33715943;.058853358;1.9420335;-.56075734;4.026166;-.3090378;-.58045506;4.4349394;4.231761;2.3243828;3.2063184;3.6585336;.65617156;.99871486;2.0726278;2.6165676;5.6100388;6.7441945;1.9262273;1.6160028;3.5830586;-4.2200036;2.7936599;3.5964851;1.2102985;.26287785;.72481501;1.565539;3.6119232;1.538202;3.1796188;1.4219531;-1.1591904;1.9085838;1.559747;-.16229668;1.801784;3.6182985;-.72683281;2.2654605;2.1626172;-.51646602;2.300555;4.1789546;-.30542094;3.1410146;.28232709;3.5950301;.70769382;5.3959656;1.6094667;1.3342105;.88616729;.24404356;-.86106849;.89054275;-.16358733;-.65986758;-.41883191;-1.3124912;2.6665404;.12576504;.29653975;1.395471;-2.3291857;-2.3906;-1.8620414;.54306346;-.015576745;-1.4220431;1.4121523;.61714554;.92363054;1.8524487;-.24724135;-.002024695;-1.6168468;-.32748106;.47410968;-.13795456;.53911871;.97234499;-.94966531;-.35387754;-.80269504;.42452604;-.83836609;.9684425;-.83160001;-1.8136393;-1.7621951;-1.2763458;-.41558692;1.0685183;.59903014;1.0978086;2.4509003;-1.5866599;.68158543;.65928358;.75941449;.14430428;2.2342792;-1.0317764;3.7643421;.32541922;-.98691612;1.6592547;3.3202739;3.52668;2.1712189;.24283673;.24697168;.85964108;1.2292751;1.5525041;4.0736885;3.8012707;1.7138736;.061115798;2.9474845;-1.9059708;1.9051104;2.7408345;.40310431;.41847274;.88192481;.68130815;.9608897;-.2655189;2.2548797;.50216514;-1.7808322;.440308;2.1413732;1.1227539;1.4296943;4.3542304;-.052225728;2.5766885;.75333911;.43179807;.84611905;1.3807553;-.084687762;2.4208846;.32215041;2.3216228;1.4688773;3.1586657;1.3898379;1.7775677;-1.5819058;1.1695635;49.728157 +.25196537;.68368888;-1.6526196;-.46199256;-.20495096;.8427313;-.38206297;-1.2712605;-.42743918;1.032383;1.3128724;.10420502;.2737897;-1.1584864;.025027363;1.4254205;-.012477746;-.090610139;-.84868938;.34333351;.045869753;-.42199972;2.8650587;-.52242279;.19512397;-.82855964;-1.676577;-1.864854;-1.3049006;.15991339;.30310458;-.76957983;.37780446;.22667688;-.52345502;.39285895;-.66473114;-.49132535;-.059539281;-1.1638571;-.20906667;-.50544512;1.0691136;.47215897;.37223092;-1.4483294;.63716108;.26729497;.38253289;1.9585549;4.9613404;4.3012729;2.3896174;.53812104;.035762545;.90225083;.25976339;.6261903;-.60901546;-2.0625274;.51297778;-.33692321;.94945449;1.9726528;.63184822;.6668548;3.3302684;3.3428411;1.7623943;2.2353806;-1.7691544;3.8910246;1.6200479;3.8776965;2.2476397;2.6393325;.30290896;-2.2214577;2.8937345;-1.2232445;4.4336448;3.3805315;2.7068224;2.2248621;.88119024;3.0732996;6.035861;3.7336032;2.1312006;2.9254515;1.4064171;3.5698123;1.8019928;2.8750508;2.2353108;.89291865;7.4418478;.88625801;3.4847362;.73570973;2.1327684;.76308841;-.39066842;-1.1447994;.47913641;1.8499883;.03211407;.13059223;-2.0287342;1.1818008;2.6383379;.47689858;1.7900385;-1.9400178;.71455228;1.6796516;.72994059;-.76031077;-.53915346;.44333658;.55868554;-1.1920692;2.5746584;.82732862;.88179398;-.33899656;-1.6302148;.0006991562;-.001632993;.24942252;.34130588;-2.2110865;1.6026182;1.800642;-.20085827;-1.7757827;.81467873;-1.7065858;-1.5048094;-1.6089029;1.267127;-.47509784;1.4036732;.45082372;-.37964168;-2.1477995;.73605436;.11955526;-.88998282;-.15239701;4.7598329;5.0067964;.84805089;.79043567;.079758763;1.0779325;-.57677829;.68852127;-.83412427;-1.231818;1.1940093;.55998617;1.2125323;2.6026332;.29536423;.83493012;3.4739485;1.9038508;.0049394337;1.1579826;-1.6169997;4.1231046;.51120538;.61446196;.77363396;1.8359315;.69739199;-1.8248326;2.2424479;-1.0162318;3.4525142;2.1668499;2.350338;.02027417;-.062350232;2.5630145;3.610105;3.9302385;.58467352;.36070129;.49653023;3.1405072;1.5547476;1.4637072;2.9355159;.065812834;5.6500654;-1.1478918;3.4092212;-.39264241;45.832996 +-.60240084;-.66615981;1.6830044;-.2566312;-1.0079057;-.36333752;-.02306016;1.4849211;-.52743047;.74436724;-.63470495;-.17098249;.72968918;-.44864464;1.7037555;.67938;.64105546;-.37183151;-.5286538;-.84227854;-1.8673843;.55121553;-3.0581741;-.033311747;-.61593556;-1.2169372;-.027351877;.88645345;-1.7869924;.78064239;-1.6643186;.53526825;-.41459271;-.469134;-1.890841;-1.3106179;-.085178368;.14035603;.98359323;.19834405;.63828754;.16665271;-.99235076;-.022715069;-.77777678;-1.0344207;-.20759293;.0036852255;.93063968;.82276195;6.8919878;-.47177908;3.16029;3.4290717;3.1303127;3.2712803;2.1963584;2.494045;1.9272243;1.2735268;-.058123659;1.9408437;.9331013;2.9034793;.94948131;1.051226;-.24589239;2.4378111;4.2229767;.49964881;3.9793491;1.6201919;4.2749033;1.8579011;5.0836163;1.1405499;3.2406197;4.7881403;4.604589;5.061039;.039896965;1.5934194;2.5131564;-.80857456;4.4495635;1.5219404;2.3081837;-1.5445465;.094153516;4.1455698;2.999716;-1.3105102;.77049685;2.334589;.87970799;-.14453609;6.9743958;2.5560169;1.7484316;1.2833194;.76251531;-.50157523;1.3375525;1.093188;-1.4798719;1.0754032;.032003548;-.29535058;-.23897119;-1.1881983;-.39584526;1.1285678;-.15684372;-.85631883;1.074597;2.393508;-.59293038;.53650022;-1.0353336;-.70984691;-.67062646;.14534201;-2.0186567;-1.7374665;-.88589114;-2.9453259;-.36508009;2.4598725;-1.332389;-.82496828;-.47955704;-.9445039;-.38420182;.057210043;-3.1667457;-.5471276;.68033701;-1.3003914;-.23495862;1.0969144;1.8428017;1.8514563;-.52104986;.20610482;-.54622912;-.96854436;-.7757436;-1.3051274;2.5013978;-.66896015;5.9149346;-.77707893;2.7154129;2.565352;3.0054529;1.5241487;1.2483258;3.1025088;1.4208847;.65018773;-1.770905;1.183398;2.3761189;1.2889847;.37834227;2.0649416;.8476671;1.6288604;4.8750949;-1.9247062;2.0835712;2.7746611;3.7369919;.6671527;3.0504315;.062463976;2.539669;3.4473054;1.8126889;5.2597165;.5005495;.54635525;1.5502622;-1.4290086;2.8383713;1.9582572;2.0423229;1.3628167;.79251248;3.3025782;.86143529;-.23175451;.57736808;2.214798;-.46036875;-.46696046;6.0961976;3.3523736;1.1166521;1.2500387;45.897896 +-1.4220259;-.83842635;-.39860347;.15224488;.061639763;.061900374;.00080505206;-.10800292;1.3480016;-.60374743;2.8773701;-.65012026;-.40917134;.21914427;1.0369596;.23504744;1.0139934;1.1312153;-.56333464;-.1698315;-.47637767;.75022608;.12825213;.23419978;1.0025711;-1.079775;.045159332;2.0888376;-1.3533049;.31715468;-.038945749;.21478219;-1.2251796;.36168799;1.2446802;1.1441492;1.7185264;.71654892;-.40404218;1.7656164;.024282033;.97859985;-3.1931598;.049272992;-.6701135;-1.378085;-.18202281;-.357537;.5498032;1.247072;3.2245932;7.3462839;1.2002028;.72657502;5.2624812;2.1780453;1.3664184;4.9960675;6.5066996;4.7609015;3.1506112;2.2285683;-.50248843;.60641491;2.3678648;2.6531961;5.1261048;6.4062066;3.6527708;2.3258436;4.4798737;2.3322091;1.7968069;2.7253206;4.5317097;2.2223051;3.0960021;1.633682;5.1700072;4.757926;3.0100012;-1.9158037;4.9874125;1.3740379;3.3845129;2.8775384;4.3717799;1.4106003;2.3309033;5.7690234;4.5726089;3.8227549;.3406772;2.1594303;3.0537491;-.77103722;1.8500367;1.5186272;3.7503026;2.9451468;-.47862908;-.70702982;1.848242;-.71734446;-1.0905578;-.1383317;.27528468;.87158835;.64129984;-.028209671;1.8347591;.73780805;-.78047287;-.73287481;2.9522884;1.1223526;-.011637891;-1.0759972;.45869133;-1.7392044;.82593614;1.4769957;-.074128471;.52663857;-.17298737;-1.2434435;-.30008724;1.9000831;1.3112854;.8049385;-.31777647;1.8706863;-1.7909397;.27079335;1.6692688;1.0734904;1.5149679;.60271353;-1.2879173;1.0677344;-.95746446;-.69654739;-2.6566184;.88049161;-1.9383703;-.13054568;1.5518955;-.15443756;1.0741041;1.508976;1.7834052;4.3167958;.61390996;-.35287979;2.7174265;2.2849395;-.904293;3.808187;3.4102464;2.6413395;3.208957;.69377601;-.94353604;-.24206434;1.2613331;2.0862484;4.5968213;4.3159266;1.9758011;.048590306;3.6194909;.79303229;2.9579523;2.7975569;3.9039843;.94015992;1.7638419;1.4665476;2.3996582;2.4335442;2.0862556;-.052716468;4.5805297;1.8567129;1.3893503;2.2786977;4.3245807;1.6310169;2.1007826;5.2832675;1.8064541;2.723026;.98199821;.3485904;.0861191;-.79201192;.35696131;2.1476738;3.200789;.43688378;70.487373 +-.094495989;-.69659543;.38639501;.91145742;-1.145099;.50548339;-1.1200149;-.28435111;.68489742;-.040905681;-.33084521;1.9164245;-.38578707;1.1737224;-.13440119;.33560032;1.0362438;-.81341308;-.7243157;2.4198813;.10146742;-.2678321;.57269526;-.36879975;.43129089;-.047078181;1.5579921;-.018530164;-.14950964;-.091976933;.87706846;-1.1815689;1.0721356;2.2182505;1.467332;-.14654619;.40905902;.68321341;1.0576379;.68166018;-.78934783;-.41056597;-.39274788;-.77489144;.12167412;.14227892;-.141692;-.50954038;.69189441;.1849789;4.4879565;1.1726862;4.2176266;-1.4876262;5.5750041;3.0505586;2.1054065;1.0188271;.19656006;4.8288898;-.9864431;-2.4685366;-1.6098205;2.6846693;2.3629942;6.061358;4.3198142;3.6677659;.069754891;.99988997;2.7651207;2.2026258;2.3294892;1.8048425;-.03655054;1.7334787;2.8851595;4.9886684;1.9013352;1.8567352;1.2760025;.69943637;1.8657297;.27608845;-1.2922239;3.7366698;3.4002452;3.5414174;-1.3970373;6.7217717;2.3091619;-.88991457;2.8870876;2.0596588;3.2830315;.58876163;-.20413043;4.201798;2.9216626;2.0264173;-2.5276611;-.92738587;.73926353;.915254;.39739904;.4087719;-.62305635;-.8411091;1.7889165;1.4046944;-.63649482;.64662832;1.1557962;.80371809;-.44991061;1.6802762;.085612059;-1.1308547;-.048646007;1.1734091;-.50529128;.45597535;-.32831442;.25071493;-.49391368;-.24699646;-.1550702;.48285004;-1.4686953;1.5985776;1.6583954;-.34498948;1.1656682;.67100799;1.3267604;.17703649;.12985076;-.42813176;2.2632186;-.48478457;.49550992;-.44179502;-.91338497;.5279001;-2.3479586;1.0405824;-2.1828411;-1.5537372;1.6132563;-1.002416;2.5608592;.015711321;5.3585854;-.53508019;4.9190245;2.8107219;1.1596792;.24309948;.47072926;3.7501318;.23224878;-1.2292961;-.60276312;-.10469002;4.6014519;5.7856851;1.8747618;.92416042;.39610407;.28293428;4.4056673;.15903348;1.0308077;1.4126366;-1.8076364;1.2601949;3.4829142;2.4476175;1.8613609;2.8329353;.40192655;-.54672146;2.666256;.13946366;-2.4850984;2.4617174;2.9772539;2.2540386;-.56598812;4.7221484;1.9447168;1.8026321;1.844412;1.7069032;3.4298894;-.078609236;2.4418907;2.6753352;.70699793;.41679481;50.868534 +-.042375382;1.0171149;.18894796;.71046424;.43276781;-1.2202574;.52544838;.30049765;-.084190674;-.6475485;.54826927;-.058975272;.54994959;-.78318334;-.74793798;.34241709;.15681638;-.13264665;-.31363106;-1.7752727;.42604092;1.2331561;-.09070649;.36019829;.054311629;-1.1970305;.13826239;-1.1134077;-1.2861464;-.94679189;-.043668609;.012612451;1.3046834;.32167661;.53108048;-1.716065;-2.5451367;-.30231312;-.86842161;-1.0632551;-1.1784317;1.7565906;-.079218924;-.47692198;-.32915506;1.1714015;.5564971;-.61055672;.50766617;.20315339;-.73936188;1.535123;-5.5517411;2.3137465;-.085439593;3.9172332;2.1812994;3.3089895;-1.1745045;4.4875417;.83502936;2.9339652;3.8256967;3.3474352;.63025588;3.1846418;3.6641338;3.6314981;4.0411272;1.0861973;3.7346952;.66047013;1.7489665;2.1210477;4.8931718;-1.4386473;4.177928;1.7737123;7.5112314;2.7171865;3.2680366;.98112988;1.4700251;1.5973574;5.1421399;1.1763352;3.0402319;3.2997463;-.035501782;3.6519523;1.6623695;1.6302769;3.1134629;-2.5781946;2.5416117;1.4633214;-.31992576;3.7679005;.5342375;.58603477;1.5582426;1.8673253;.76649898;1.7950937;-.23006244;-1.9289886;1.0524906;.0017711223;1.7902927;-.51755321;-.81715012;-.11043411;.33921653;-.34598848;-1.6116275;-1.0158207;1.089636;.36011693;1.4934456;-1.7385585;.24117532;-.4312672;.10620141;.80880094;-.17642193;-.23352024;1.3014078;-1.2905357;-.72008401;-1.2216268;-.50983703;-.58859068;.50181317;.15564595;1.2696625;-1.8076866;-1.9191078;-1.4289663;-.24525227;-.29824358;-1.7174917;1.5254071;-2.1670613;-.17274468;-.22796671;-.65293086;1.767301;-1.4196856;.63417548;.47993246;-1.3261224;1.760938;-3.7477386;1.2675964;.60579062;2.8527956;2.2795684;2.4797187;-.45326003;3.442266;.22014078;2.7173932;5.2084317;1.6284051;.53723353;.6785717;4.5499578;2.3793364;4.3659492;.30153582;.9954111;.28541258;2.3512154;3.5200081;4.360858;-2.118413;2.8424609;1.8415878;6.4202747;2.0570626;2.6033835;.56287694;-.012663015;.23197164;3.2284491;-.4099099;2.6762891;1.9310267;.027914232;1.8807309;1.4027987;1.3533694;3.3403358;-1.3722248;1.9527565;.21076584;1.546051;2.3409598;.49169064;-.092612192;55.827763 +-2.0828373;-.62026727;-.030951926;-.67109281;-1.7185235;.83476824;-1.6283381;-1.8894687;.13040598;.17626621;-.60310984;2.0993381;.45652497;.046664923;-.11571245;1.031404;.11426854;3.6653681;.91830689;-1.2861092;-.96829426;-1.1731673;1.2084899;-1.3364207;1.1864144;.66234642;-1.4040573;1.4743803;-.44465217;-1.297416;1.1879662;.059489027;1.3579642;-1.2438701;1.425633;.39344433;-1.7600619;.55608779;-1.2435957;-.65493476;.71186799;.14841962;2.0105875;-1.1854693;-1.0772974;.63184142;-.74643427;.89025527;.036058575;.49417779;.28417742;1.032585;-2.3180263;4.2941818;2.4477556;.16618678;.038648818;3.678849;.25803676;1.1993713;3.8752127;3.1694808;1.1667007;4.0906467;4.2085938;-.19257662;3.042942;-.076446384;.56636977;1.840248;-.76978272;1.5092374;1.5080551;2.1291838;1.872304;.82283205;2.765466;.57066232;1.6914092;1.7986239;2.4977009;2.7292495;2.8779166;-.28257257;3.1164858;-1.201835;4.9793653;-.67061293;4.3183784;-.75815332;3.2868907;2.6555076;3.6656756;2.6641896;1.8493229;2.6894763;2.4658327;1.2778538;.038491789;.26440889;-1.2655363;-1.7419162;1.5729576;-1.638607;-1.6050557;2.0490675;.11763903;-1.4816542;.13075237;1.3369936;-1.6231207;.79927403;.15923497;-.79857779;-1.465837;-.47021329;-.89952278;1.8148549;1.4334123;-1.4261998;-2.2506976;1.0648689;1.8608878;-2.0972505;.66951454;-.0075379382;-.97552401;.8848033;1.6508694;.71729475;.93743765;1.5081992;1.4816548;-1.4682245;.5537104;.52101856;-2.0966938;.26990575;-1.7905965;-1.5679125;-.26154935;1.7434355;3.0359683;-3.6557288;-1.9207944;.33078721;-.06676881;.38049743;1.0270677;-1.364055;.56578684;1.0615928;-1.567873;2.7341752;2.1764181;-1.1334579;-.83046532;3.2716789;-1.2439514;-.47378898;1.9287601;.23066702;.74759173;3.4828486;2.9310606;.30516794;-.23418877;-.73387033;-.38155851;1.7307487;-.032743584;2.0207858;.11821276;1.3325391;.21642193;.093848236;.040556807;-.71310329;1.9997202;1.0147588;1.0691453;3.3297126;1.6195958;-.95773298;2.0137005;-.91985333;6.9477954;-.94046187;2.2812443;-.12031838;2.2230458;2.5352428;1.9576924;1.3928481;.40705672;2.468209;2.1073308;-.81283802;-.030294122;1.1191595;46.621166 +.91181737;-1.3125484;-1.3993353;.37283942;-.71849209;.16150007;-.66240788;-.49217457;-1.3396553;-.13471457;1.0281409;-1.3492979;.11413454;.64374799;-3.6427379;-.57162768;-.60169083;.21485497;-1.8825563;.0033447528;1.6597823;.78266388;-1.8051409;.24339536;.80756867;1.4690503;-.97438926;-1.4425209;.32907638;-1.8157825;-.66069311;.27310029;-.22722919;-.65578783;-1.3283985;-1.9644789;.8499831;1.618415;-.9817;-.45360908;-.3822425;-.35062835;-.3605299;-.52757335;1.2406387;.36348242;-.2592946;-1.3810639;.21562214;-.81489694;2.1911478;1.8749143;6.5435028;.16680233;1.6422644;3.6168883;-1.6655103;3.8213582;1.3551762;-.74497151;4.211762;.81332111;-.79014355;1.0859926;3.5188103;3.2549;1.5395451;3.341773;3.8249648;2.9718828;.3822903;4.0850511;2.318012;.3995764;1.9065694;3.9810348;4.3694401;-1.1899873;1.4415576;3.6249177;2.8430908;5.8833995;-.48196381;-.70375979;.14144276;-2.3671625;.59010541;5.684464;2.5213978;-2.5242407;2.8474183;1.8566664;4.0364084;.086045347;2.6893775;2.3411424;3.5922265;1.7413148;5.6481819;-1.0885406;1.4323888;-.65564722;.52135003;.16287462;-1.0317484;-.030484866;-.16561514;-.59319061;-1.6417245;2.0977352;1.7023883;-1.8414005;-1.724878;.80164427;-2.1848652;.22710209;-1.0790433;.59025425;.21183985;.92443937;.20725955;.77829754;-1.8885514;1.4535161;1.0223589;.72724313;-.20812277;-1.0638658;-.84987354;-.62812662;-.9580915;-.26576841;-.58129913;-1.3244665;-2.0407383;-1.4018698;.033407599;-.33200726;-.30863118;-1.1840769;-.3538911;.34682235;-.66969293;.38331756;1.3698025;-2.2359898;-.71168399;-2.117641;2.9524298;-.58805978;2.2597659;3.4879954;4.9347477;.62580746;2.0252867;3.4799638;-.28239164;2.1749885;.38139141;-.26577446;2.8843279;-.20397778;.62004244;1.5785767;3.1802704;2.1019657;2.6768947;2.1425083;2.6854022;2.9654603;.56321144;4.509007;1.2562557;1.7417558;2.5283811;2.5470502;1.7846289;-.95899212;-.47203934;3.0900943;-.55992645;6.1359944;-1.6732309;-2.0707533;-1.1181715;-.92345214;.096909501;3.7373343;1.3474958;-1.5310739;3.1338995;-.068357311;1.732247;.6409815;3.1088686;1.844575;1.0472325;2.9372962;3.8747602;-.053708356;41.974899 +.7098009;-.42786756;.93748152;-.28318012;-.84766841;-.13023874;1.2830064;.031617798;-.032334335;.86540443;-.029022826;-.092557132;.35268188;-2.061023;.69087821;.022960497;-.81549293;.57822734;-.71856105;-1.214265;.12061432;-.1194606;1.2398475;-.22315596;-1.0706342;.52501398;-.44260025;-1.0010886;-.84066057;.81813455;.75880599;.67882586;-1.4778513;2.9083698;-.35120568;-.012253596;1.376115;2.3727629;1.1960032;-1.1260382;1.2013721;-1.4983479;-.28657809;.31520721;.83182728;.091624707;1.3867822;.67470527;1.3842094;-1.4786704;.2664431;-3.1675365;1.6640012;1.6819731;2.9901874;.82643586;2.2953577;3.8356407;-.46049383;2.1487749;-1.5879235;.94024652;3.8874371;5.011281;2.0503285;.15272446;-1.0134395;1.3412566;3.7577803;1.5058661;3.8377845;4.6729488;3.1981564;1.9328328;3.7659845;4.3470592;2.7587354;2.9803929;2.9107533;1.1709056;1.7367013;2.8288338;2.670414;1.53501;.90427738;4.2712226;6.3962026;4.9618025;1.4639274;4.0781136;.76171374;1.2489502;-.014249497;-.25864315;3.2001023;1.4458399;1.388666;1.0380073;2.5980079;2.1283748;1.7697546;-1.7543528;.39144766;-1.6698431;-1.3591073;1.4352936;-.080908306;-.77488172;.53998178;1.8218117;-1.0563066;-.37892923;-.068722442;-2.2580397;-1.3536932;.87401181;-1.5543182;1.5105811;.19932678;-1.0962307;.78520441;-.045239422;2.2433255;.27803484;-2.0096359;.59596014;.48604798;-.35043994;-.95670003;.98851776;2.3314402;-.65418011;-.035625946;.58673292;.29253671;-.47829613;2.0706453;1.3255799;-1.1757085;-.85827553;-.39039993;.63459092;1.0944643;-.33877563;-.65262669;-.40603328;1.2709202;1.8136395;.38567567;-.74898213;1.4714388;-2.8195438;1.3281153;.45234287;1.9948747;1.4617796;1.6335303;1.7930267;-1.5754325;-.2791777;-1.7585043;1.145892;3.3626206;2.9220543;1.6573136;-.42620793;.036981933;.079544097;2.1342068;1.8747023;1.7215233;3.5469022;3.3547094;1.2146515;2.8287783;4.2011571;1.1646448;1.690096;1.6201335;.89146692;.036199812;2.7028172;3.9047756;-.1309664;.21797039;2.9966121;4.3905463;3.2348118;-.88790512;2.7490001;1.076542;1.499418;.48326591;.22468987;1.2113746;.5138278;.5318349;-.048372574;-.2492072;.32383123;46.905472 +.28281435;-.23403426;1.7868503;.95719582;-1.5125359;-.089827672;-.31853074;1.0969564;-.3945266;-1.4906992;2.1070709;.53917009;1.4831079;1.5455754;-.047461055;-1.2016131;.45419446;-.051873174;-1.3082833;.25792354;.20560047;-.030606605;-1.2841804;-.2229507;-.81259346;-.12218282;1.087546;1.0944686;-.44510162;-.15123877;.73160648;-.70798039;.32759207;-.88434547;-.53644043;-1.8620433;1.4788206;.61013621;.5520643;.1153066;1.0113018;2.1498091;-.11824354;-.46686044;1.2194954;-.08012443;.32053971;1.2188143;-1.0210942;2.3426862;.38434654;3.1617069;-3.1074882;4.7584772;1.8882272;2.7409604;5.3095975;4.9813952;2.9170756;1.3360763;.78839588;3.0646091;-.64033782;2.6029651;1.6371166;1.222265;1.9309715;3.9152689;4.481832;4.6480303;-.29018164;4.3135014;1.0767009;3.089041;.42188391;3.7020557;5.068296;1.3376225;.47541046;3.351697;-.11832731;.027273929;.2222949;1.0294819;-.35742462;2.0272481;3.8492887;2.407876;5.073936;1.9104619;3.5871582;1.1844378;3.9739792;3.2273898;.16308795;2.8887479;2.2852147;1.6642175;1.5291746;2.7786989;.39523292;-.69763052;1.1610914;.39157638;-1.5625113;.15827522;1.0166503;1.6031082;-.34446245;-1.4236251;.81000394;.30363342;-1.3346821;2.5713482;.22721951;-.3913877;.42016852;.83433574;.11401236;-.62052518;.5286234;1.6285418;-1.8918993;-1.3221003;.67713451;-.10864551;1.3664294;-.85179543;.50029951;.78383589;3.6480327;-1.0533899;.22134131;-.6134752;-.07712353;-.57503045;-.72699833;-1.072733;-.14553599;-1.2505467;1.9275696;.61730111;-.86245418;-.99700058;1.4579036;.22975735;-.50302339;2.0631485;.21720804;.72540104;.23722512;2.7236633;-3.7571139;2.7793305;2.8384709;3.1850235;3.9850895;3.2183535;2.2364376;2.4655814;-.13071716;2.9882035;-1.8407921;1.5069143;.30445349;1.3910601;.50767088;2.7410367;4.2851338;2.6624057;1.0112245;2.6490295;.22504501;2.0457664;-.3785564;1.8752433;4.562264;1.3626162;.8664642;.44929776;.27778628;-.94917953;-1.1195751;.61023557;-.89686918;.86238074;.56750834;2.4972615;2.6438391;1.3627992;3.6489654;-.55864269;2.0693178;3.5590556;1.0074958;3.1824043;1.0879065;-.44661319;.8073048;1.85988;59.19165 +.33123636;1.1353837;-.89732718;1.1891615;-.35940835;.89151257;-.39229035;-1.3954421;.29158369;-1.4945568;-.14040378;.65384769;1.2460146;1.7316141;.97383797;.47135055;.31485659;.7355758;-1.0031971;-1.1209646;-.40893966;.85085332;1.1801374;-1.0045835;.65474105;-.34825963;-1.5198115;-.83108956;-1.5790795;-.67034489;-.28950867;-.38084334;-.34349364;1.1212016;.36537626;-.68852562;.18197958;.54148513;1.3990874;-.32024992;-.83246779;.50295252;-.062893525;.42569646;.71084577;1.0395689;.76880479;-.9936316;.4539544;1.3318772;4.3812895;2.9288692;4.3583851;3.4735236;2.3080199;.83175135;2.8508625;-.096417226;.92539793;3.777482;3.6802964;7.7818065;-1.3468189;.56433296;1.0403582;5.3546696;1.8438538;4.451087;.36862284;4.3240237;3.2848155;2.2040484;1.2018086;3.1801126;-.65655071;1.2448393;1.2938305;2.085336;-.058099009;3.84004;1.7880023;3.4977858;4.8973541;6.0598083;3.4921641;3.1333756;3.3260152;-.30293915;1.6548444;1.9082261;-.9070127;-.91803199;.5686993;3.5821929;3.4804983;.41407475;2.0273287;1.1529984;2.7890997;2.5146976;.037474416;-1.1314149;-.86507696;2.1833763;.617746;1.3842247;.89344239;-1.4267006;-.36995384;.30293694;-.52814353;.12112734;2.2696693;.26905394;2.1294327;-2.1288538;1.3567866;.88603669;-1.5075666;-1.2182925;.41325852;-.88553953;1.7721767;.44387954;-.42240867;-3.3678608;-.480634;-1.6081002;-1.8514036;-.067038521;-.70685595;-.31436321;.91429007;.96162665;-1.7925514;-2.4636691;-.6815117;-.34535182;2.7954276;-.10849654;-.7739014;.29371449;.97804576;1.1362281;2.0850716;.19277054;1.3781595;-.92783707;.27680433;-.63902003;3.6191366;.17161812;3.250824;4.3309512;1.2047373;-.36008283;2.8026931;2.4848711;.12031806;2.5166945;2.838079;4.8616648;-1.5125673;-.435408;.20225109;3.7142873;.79952615;4.2071385;.85041738;4.1154037;1.683213;2.7960653;2.8299181;2.5706365;-.23552328;.2983706;1.5029355;2.7112083;1.1563736;2.7388878;1.9360281;.52971727;3.8719139;3.7072616;1.6183143;2.9752784;1.3111074;.25960517;-1.7126292;1.0817593;-.58672869;-1.0055665;-.46453375;3.4413135;2.6475646;.28549731;2.106462;2.396235;-.62061816;2.1625996;62.453384 +.71575803;-1.3256677;-.25210106;-.56929564;-.28959617;.57923532;.35099298;.13550241;-.060793683;1.4401798;.70603001;-2.0753448;-1.2176321;-.86234152;-.68583554;.44870839;.17603296;-.68888366;-.3324472;.78419256;-.73604548;-1.6429079;.30182612;-.11073348;.36836821;-1.1512791;.97400194;-.28028086;-1.0745454;-.0080424845;1.981396;.83137512;.25548428;.033121999;-.46619946;.88880205;-1.2435753;.72865295;1.3321044;.40921721;-.56279576;1.0123901;.37318611;.72504127;.39149106;.4766295;.71819466;1.4383197;.97962892;.98142803;.33827466;-.73223722;1.3234169;2.4764593;1.958853;1.9843533;.94603807;3.5172787;3.2682307;3.8335342;4.3246861;2.8199608;3.1809199;.41806722;3.9868536;2.7326307;3.2329931;-1.2660997;1.2755468;2.5701261;-.3623431;2.2335072;3.2205722;.63045734;-2.563293;-.88093793;4.5965428;4.7302475;.84077865;-.8892355;4.3393016;2.7616997;4.1468873;3.1890748;-.36416718;-.11502289;-.71135515;2.4049253;1.6191531;.13405511;1.1897124;.56245041;.57939571;1.125531;3.4524913;.30147764;4.2380195;-.36196864;.65458071;-.85938913;.50712937;-.83117753;-1.4390061;-.70314699;-1.8555616;2.2054768;.56574184;-.63062453;-.082434185;-.12082587;.83076352;-2.6755235;.69630438;.30599949;1.2591978;-.24797146;-.36609101;-.35941616;1.9864471;-.13446823;-1.0963128;1.400721;1.1310331;1.2710313;1.0212158;-1.1819764;1.3578815;1.4975619;-.94846743;-1.5040426;.11851878;.97100282;.20419033;.16616701;-.39409986;-.69912159;1.2151181;.50031596;1.2560439;-1.4517291;-1.125614;2.173666;1.4604261;-1.3808835;.59464157;.72309911;2.8731501;.33520061;1.0290779;-.56310898;-.51377648;-.1998018;.8616631;1.3128438;2.341707;1.0567472;.57150805;3.3175609;2.1526537;1.9794384;2.3703337;2.6241429;.2116518;1.8815098;3.5850458;2.0505908;3.300916;-2.6526403;2.9410141;2.4248664;-.37675101;1.2816705;2.01772;1.5389735;-.07808122;1.5503482;1.8401639;4.5375094;-.25592726;-.50001544;3.8253677;2.5012333;1.4137602;1.8001963;-1.8515228;.24926172;-1.1791567;-.21802382;-.011131003;.57723045;.63242614;-.29213002;-.32944664;-1.256577;2.02829;-1.8092719;1.6250254;-.1006648;.17455555;-.22608851;44.300598 +-.37206754;-1.6757464;-.38004658;-2.6684308;.87129653;.91836506;-.79826003;-.8742547;.28375435;-.65660113;.42576203;.46663907;-.5559904;-.65822321;1.2875459;.56059957;-1.0329989;2.6661811;.31989408;.13177212;.68769568;.74748558;-.03827038;-.08541026;-.014477299;-.85687453;.92076594;1.1984949;-.0043982491;-.41915527;-1.4223886;-.34271422;.22392172;.096309103;-.49016359;1.3816116;-.32595628;-.68161517;-2.0315363;.53749084;.16599855;.0091877291;.32946461;1.115734;.80723101;-.26027036;-.39360064;-.2522611;.0096652787;.29905102;3.8369238;1.2994622;5.3252778;2.522892;7.3535061;.74471331;-.14674038;5.7756901;4.971354;3.746217;4.5515614;1.0652317;5.0377841;1.0718806;.65476781;3.9505036;1.6463791;2.4759493;1.9913336;1.2078344;4.3908472;3.5813768;-.16038579;-.017404584;4.4596219;3.362262;5.1652775;3.9293475;4.443923;1.7690026;2.2171652;.83131981;5.0412388;3.5033472;4.5098386;-.5619005;2.3870916;2.8862858;-1.1511736;3.3751721;3.3787334;-1.6018103;1.260216;2.2273786;3.3318052;4.4278774;1.7637168;-1.7014946;5.5932922;1.7007302;.26127222;-1.5857459;-1.5342183;-1.0106311;.64401907;-1.1213006;-.1105627;-.32147837;1.3442668;-2.3109751;.0071246643;-.0062024011;-1.6965692;-2.3036029;1.7278382;1.1783381;.755144;.59978926;-.56413692;-.4502711;-.021051431;1.2365379;-1.921013;.17488636;-.8005954;.37095022;.67672753;.44130275;.97959954;-.41299841;-1.5250338;.18597633;2.4438541;2.1342463;-1.6143768;1.1335132;1.2832316;-2.5156152;-2.2600102;1.3614771;-1.1842029;-.68428844;.0086666346;1.8507408;.78116232;.25722629;-.51053572;-.46344873;1.3536733;-1.4505154;2.1529281;1.1078922;3.9646969;1.5086441;4.4073515;.022707114;.68105596;2.5338352;2.9443727;2.8488078;4.9824634;-.31117389;2.8759623;2.0311897;-1.9062181;2.1951959;2.9898469;2.3084221;2.2850025;2.7132475;4.450037;1.9655877;-1.6271614;.29237059;.25387901;1.8391068;2.850148;1.7030102;2.5320132;.5797528;.10631311;1.2087055;2.359653;3.6205616;3.7034152;.071720064;.91418844;3.0772531;-1.1157546;3.2203681;2.7082984;-.80978256;.19539654;2.058351;2.9119446;3.1966159;.42428419;-1.849805;3.2936592;.4303405;72.02417 +-1.0305223;.11439819;.46652055;.070734948;.73825347;.9117462;-.44608897;-1.1732131;-1.367062;-.022428952;.33647364;-.83361369;.63411283;-1.0513402;-.27545729;.67838973;1.0362144;.22181681;-.37216038;-1.347351;-.081243642;-.56028479;-2.0253191;-1.3075879;-.37719777;-.085477322;-.30823025;.9570201;1.7304311;-.20832215;1.8394008;-.99184316;1.12226;.1661983;-.72431338;.51925582;.084220335;-1.4913862;-.13315375;.31702611;.54505968;-.9709897;.39334634;.83807576;.42903635;-.65091914;-.14089568;.34886518;1.8348854;-1.2630922;3.9601345;-.11586478;.42065349;2.9343231;4.3713574;3.3969858;-2.5569623;5.1921043;1.1783313;.7398091;2.7952855;3.1596873;-2.211967;1.9376026;1.0799918;1.7738582;4.5622163;-.65292555;-.55865175;1.4860904;4.2531428;5.3826499;4.0567932;.36416614;3.2251172;3.5441549;1.4597874;1.1152471;4.2371988;2.0561695;2.3791833;-1.7846882;8.6046867;2.1798198;2.6894588;3.7782979;3.7706096;2.9074235;-1.3817059;-1.3890504;.10846375;.96752924;2.6732883;2.7636244;2.7197945;-1.5160966;-3.3137081;3.4912241;1.692816;4.7210259;.97034216;-.2443029;1.2740538;.99581838;.84292197;-.51665574;1.4677396;.62259436;-1.4520837;1.3794711;-.08917506;-1.0292345;.046123262;-1.1047161;-2.1301756;1.5404372;2.4328759;.50512838;-.14367829;-.71733707;.052361734;1.3557343;-1.9496449;-.95823187;-.69266063;-.74690914;-.90073836;-1.1299086;1.0000244;.69079036;1.6593484;-.89110255;-.70438862;1.3353816;-1.7177203;-.97034967;.1356167;-1.3109545;-2.4823685;-.11954073;-.52232677;1.5894933;-1.0522786;.016443981;-.72481298;-1.5548272;.055058129;.60059512;1.5904003;.62254798;.66969526;-1.3053762;-.90035909;1.7443099;3.748703;.84895051;-1.2163265;1.9027649;.95606089;.27707857;1.6718316;1.3211752;-2.6908078;.98315859;.83626616;1.2052414;3.1150789;-.97878098;.13108099;1.3773935;3.9839675;2.8288567;1.4791033;.84557205;1.0697056;3.3282442;1.170966;1.0942997;4.0242672;1.4008512;1.3168389;-1.5986633;5.6482825;1.3002061;3.0953488;3.4140923;3.0146959;1.9157308;-.50047362;-.775657;-1.0847797;-.5728997;2.4920597;.30755866;2.7171843;-1.9775347;-1.7828107;3.3119693;.84023839;2.37919;44.237385 +1.3735573;1.2468077;1.0393323;-.178463;1.011844;.60462177;.22584355;.68557066;.26569617;-1.5748051;-.37717891;.80913848;-1.0981232;-.15608123;.65522766;-.0001452728;-1.4768544;-1.6688091;-.93427867;-1.7002101;-.55275059;.96650493;1.2342058;.70347112;.1708215;1.5367869;-.093909375;1.2617978;-1.0025229;.06551262;-.29204667;-.24621783;.23651376;.58236426;-.16325927;-1.9871765;.51733822;.083728418;-.55357206;.32447124;1.6145302;-1.2762632;.89511961;.37304428;.74927181;-.41551816;1.0677011;-.13768047;-1.7951828;.21677214;2.3160079;2.7181642;-1.6433206;2.9913919;.51712161;3.3003592;-2.3912284;.28041434;.9324227;-.14299431;1.0928203;-.33645561;4.3729825;1.5356625;4.681201;.59318906;3.8172965;3.3296976;4.8117757;2.8881907;.49576965;4.3618479;2.4917605;1.5201776;1.1764426;.037144914;2.6505933;1.3309809;1.9803106;1.2935828;1.9162585;.56040919;4.3611879;2.5870037;3.2522371;1.2324493;.36982673;-1.3005084;3.1686304;1.6344395;4.4440088;1.8557659;-.43058774;4.4126263;-.053200308;2.9978116;-1.324464;2.0573685;3.435648;2.9546878;.54460895;.0059401453;-1.8729002;-.62635046;-.89146501;.17605659;-.45335999;2.4437397;1.7428458;-1.606324;.34490654;-.23810162;.73571199;1.5258669;.33781013;.36105779;-1.1668689;-.049129382;-1.3431724;-1.8725489;.30701023;-.16113441;.39672935;-.47604507;-.54503191;1.6487259;.9923473;1.7671603;-.5592187;.22407886;-.11515223;-.37401208;-.17596278;.42436549;.27140152;-2.0843077;.81957698;-.28120393;-1.6018234;-.22632973;-.13490582;-1.2948672;-.3045617;-.41730565;.62759626;.69256335;-.22744732;-.58911079;-.6483025;-.59183216;-.58368504;2.9849331;-2.8811758;2.6293912;1.2502129;.56994069;-1.4760411;.5311169;.021187602;-1.1064627;1.5769333;-1.2171582;2.8976274;.37326083;2.6969168;.90910649;3.1255102;2.7808414;3.2612801;1.6969013;1.4292309;2.6515973;-.68442994;2.2859395;.45177329;-.087518886;3.0023513;1.99419;1.6559108;-.5296573;2.8140051;.26629269;2.9842622;2.2881296;2.1180024;-.75205511;-.2843087;-1.1286604;3.5960767;1.2963709;2.9009497;.6262874;.58057445;3.1351423;.16963021;3.3905091;-1.3719082;-.65896386;3.1079929;1.6052761;50.874966 +-.013537497;-1.7739607;-.57248366;.70868152;.032976422;.45384687;.55262691;.72260064;-.89884633;-.78819889;.5625912;-.092686154;-.70158285;1.576224;-1.0133662;1.8664161;.15981399;-1.4308131;2.2077816;.10024835;.56897819;1.3408953;-.97365791;-1.0983993;.64171064;.47952402;-.06275522;-1.0122888;-.21071862;-1.1261711;1.3359374;.26201409;-1.5684195;-.26196384;-2.0220916;-.30343112;.57955408;.5330413;1.1560045;-.98066896;.73893225;-.20991178;.20510222;.195402;.22931902;.68041193;.40935454;-.22848548;.10803302;.4007988;1.136346;3.7557981;3.2371659;-4.2492509;3.7862723;3.6315093;3.6369493;-.99751359;1.954631;2.4302394;5.1245375;.46819264;-.85130286;.972251;-.055241186;2.1942501;2.2823176;-.23678683;2.241333;3.4404783;.38503549;3.9134195;-.83546466;1.8812414;3.9393268;-1.1129539;2.2532556;-.052467685;4.3040304;3.4931479;1.34039;5.3843937;.67258114;-.62187719;3.663291;-1.4653629;3.6044393;.23093411;4.3710561;4.6978207;1.9838947;4.4775815;-.045735937;.67751467;7.7770486;.97551924;3.8690033;2.3119171;1.6867959;4.4591651;-.63332653;-1.3581352;-1.2452627;1.1028126;-.49154943;-.9044432;.70699066;1.2544366;-.86351979;2.1143599;.88677084;-.14545116;-.2763913;1.0988586;-1.1451079;1.7557268;-.37645078;-2.5456462;2.4734421;-1.1188343;.59251761;1.1801275;.85033494;-1.3061346;-.28349456;-1.3557097;1.1412766;2.0402241;.39417353;-.81663036;.84902763;1.2756921;-1.0283167;.28497732;-1.2978731;-.79391646;1.0151135;-.44118962;.34976283;.84767431;-1.1329545;1.4112685;1.3934945;1.7715571;-.27092096;.67731565;.88391167;.10348167;.022474421;1.474293;.69412512;2.5476956;3.9753926;-3.6483788;2.2273242;4.1277342;3.1184673;-.74706626;3.280683;1.0537817;1.1016999;1.1268266;-1.8303176;1.4180795;-.62838966;.90075982;3.7286158;-.38628551;1.821386;2.4831159;-.34980372;3.0174756;3.1968179;.50557268;.2290141;-.97798198;.53245252;-.38796723;1.2390594;1.9565997;.1870185;4.2075152;1.0922604;-.49333155;1.9617721;.12202375;3.9075246;-.11313333;4.0773544;3.10673;2.2035623;1.7184125;1.1895171;-.21246776;2.8989129;-.52083439;1.4496131;.61191595;1.5511329;4.0546937;51.296703 +-.13476358;-.045209918;-1.3977654;-.64831924;.11794972;-.15219499;1.3672438;.30589655;-1.4035306;-1.8936578;1.7056967;-.20829925;.24579659;1.824855;.9431774;-.74925631;-.12670663;-.88264906;-.44247371;2.2537169;-.14101233;-.63423055;.15154751;-2.0008264;-.83110738;1.601912;-.18315279;1.8073946;.50852215;-1.8428874;-1.1628985;2.0594385;-1.5252026;-.083943523;.23551793;-.31985122;1.0194829;-1.9219182;1.8604763;-.51359224;-.38102239;.67616391;.50169843;-.6688571;-.29215491;.74655187;-.50334179;.3278577;-.091587014;1.467109;-1.4664459;1.0090197;2.7668707;1.962118;1.6572433;.054245483;1.5221107;1.241227;5.0012279;2.6962659;-.71339625;3.7693458;2.8343005;2.8472447;4.6851969;-1.642254;6.2238183;1.0965554;3.6233225;2.9080164;2.2066643;.49917692;.94398493;1.3160493;.95101655;.84728116;1.0282966;-.58894223;2.968823;3.0808754;2.4164109;4.6039171;-4.3241725;2.3001709;1.4953495;-1.4134094;3.8029687;-.8584094;1.0825577;1.1339662;-.20389542;2.9167335;4.7451596;1.4715722;1.5037943;4.4919209;1.9158375;1.7719693;2.4132547;.60829204;-.13926287;-.24055111;-1.9271586;-1.3967043;.38420948;-1.2766025;1.0981117;1.9067373;-1.193825;-2.3630934;.97476065;-.21993704;-1.077829;2.3909993;.89394444;-1.0825348;-1.120172;.63459837;-1.7419178;2.3983378;1.1652426;.40192053;-.5282107;-.73939425;.26563054;.73299474;-.24771079;1.8717475;.20087555;-2.1081417;.6119194;2.6208334;-2.144048;-.44180587;2.0008821;.80984896;-.1100069;-.42101142;2.5955358;-1.377802;-2.5734258;1.4799258;-1.7405475;-1.793853;.35294536;1.5275739;.048168585;-1.4569757;.029000172;1.705811;-.87106806;1.3430228;2.5652587;.68065768;-.0021782552;1.0143019;.6786837;.47181621;3.4433229;2.4727285;.11462679;3.1023772;3.5444527;2.3392451;2.935724;-1.3859948;4.0900736;-.025872404;1.4172152;1.2142099;1.86385;.39836296;.74135053;-.44091362;.025948299;1.0508277;1.4626299;1.5091516;1.522923;.81307918;-.12465148;4.71245;-2.9509485;1.5649058;1.0212724;-.12562141;1.800036;-2.618464;.66630107;.92968094;-.31944212;3.0921905;3.5386257;2.4237695;.11498873;4.5193563;2.2402592;.24437119;3.3512011;-.31077787;34.198708 +.24258374;-.64595854;-.90709293;.41860715;.021588013;-.45129749;.14446875;1.2687649;1.1780968;-.4861466;-1.2416692;-.23104282;-.15091361;.38094971;.70710599;-.36563393;-1.2109299;-.20353487;3.4352703;.6900574;-.30788934;.25895843;-.64521921;-1.3296888;1.3582332;.08026816;1.585158;-1.0673501;.71154469;.27350575;-2.1124949;-.33286148;-.46572635;.51712298;-.36264393;.052308157;1.8651825;1.7365105;-1.028598;-.43221191;-1.8736168;1.6185466;.5075292;2.4685233;.48798928;-1.0269138;-.37279123;1.149314;.34910783;-1.5752314;2.9983313;5.4678855;.83272564;3.8137901;-.25675142;1.2072098;2.4134812;-.81398767;1.3242257;3.5646963;-1.7445765;2.0479522;1.1551076;1.6129751;2.2330329;.41475746;.040046692;2.8774407;.38505998;2.7092259;2.4578152;3.948581;2.1006231;1.1699841;2.6405878;2.1748896;3.2270665;-1.5669258;-.045790274;2.3067544;.29048249;3.6567707;1.0996397;3.3264942;1.8353647;2.8951714;1.0637677;3.5406394;3.2355926;.13776231;5.7693248;-.36328062;3.3017888;1.1913365;1.7295147;.63918793;.23003717;2.2363279;7.346982;1.0579175;-.055719636;.89045209;-1.262584;1.3934745;1.026206;2.4013846;.18682425;.38223192;-.32021073;-.12355374;-1.6476536;-.71337396;-.5148834;.97232014;-.9068445;-.78315324;-.87989479;-.41824824;1.7251172;-.13838147;1.2127645;.16343732;1.0719825;-2.4742296;.9948982;-1.0746281;2.2677741;-.18910579;-.81771177;-.12511495;-1.6269898;-2.3057506;-1.1736122;-.14585078;-1.235492;-.015965244;3.0520959;.83347052;-.11799677;1.0037248;-3.2760141;1.3349196;.37552905;-.22533436;-.81472987;-2.7410395;.16218698;.59716576;1.0624312;-.62082422;2.2949479;4.0444641;1.0975245;2.5975213;.79361343;2.0766957;1.1014423;-.057140436;2.8252375;.76329321;-.69460332;2.8434525;.32440591;1.9382191;1.451197;-.28819373;-.30751389;3.596885;.5448758;2.3799999;3.5630591;3.2553484;-1.1681342;.41479787;1.9114953;1.2736156;1.7800639;-.9341799;1.0949602;2.2035801;.86547518;1.0301278;1.2574943;1.677547;.54112417;2.488379;-.65808183;3.4436972;1.4958117;-1.0407028;3.3269374;-.79292029;1.5339495;2.4886339;1.2425026;1.0993481;-1.9338614;2.7897053;5.8154693;1.1853493;54.979092 +.64442724;-.80882102;-.46304634;-.07477352;-1.2134831;.7896207;-1.1430813;.50227463;-.98688167;-1.2996492;-1.8292717;1.3236569;-.33073163;.075111978;.40402511;2.0444522;.72894681;.11923455;-1.8834168;-.32567281;-.34958974;.012377314;-.73079294;.50598478;.12944101;-.72069281;-.26266545;.4183206;-.012933949;-.84683573;.77605212;-.29797035;-.93658864;-1.0205603;.0054317471;1.0285088;-1.7973477;.014311159;-2.193341;-.64460617;.30007431;.039331716;-.035699848;-.079228453;.34572592;1.5279701;-.089619718;.43456993;-.97233856;.13245995;3.3142283;3.0988157;6.0385532;-1.4611877;1.8138909;2.9304843;1.3686448;1.0057306;1.6504265;2.9916155;4.8275647;4.6716733;.86875969;1.3844662;4.0206928;1.4869511;4.9497852;4.1359425;5.5570369;2.2163537;2.5241811;1.6521547;2.7419462;3.2159007;4.8604503;.35376412;2.7610402;4.2661357;.0099162823;1.3484776;.27947375;3.0332375;.92819065;1.4241905;2.7104592;-.54474926;1.8512979;5.263175;1.9370823;1.7621191;1.125851;5.0075216;3.1381016;-2.4392245;.88633293;1.5393718;4.3759742;2.2540936;5.0005322;2.8166699;1.0323783;-1.521652;.84220505;.84900427;-2.8063467;.047773421;1.1234657;.18617016;-.77978605;-1.7374833;-.068899788;.026585782;1.1360166;.68576974;1.0501666;2.1212254;.42906174;.80469942;-.082872026;.055492278;-.95702058;-1.0699914;-1.6783447;.49765486;.23787831;.8986336;-1.4194918;-.025637249;-.60724068;-.60147023;.041125756;-1.7293748;-.60173488;-.53882605;.70889992;-.60285103;.36319074;-.5621441;-2.1376412;.25389677;.1223055;.95375139;-.15328862;-.12861049;-.40754303;1.1833688;-.62357581;.56086135;.91150254;1.9760273;3.0011241;3.5642252;3.9088898;-.77481663;-.55700153;2.486351;-1.3888173;-2.3575695;-.059288472;2.1240408;3.133837;4.9771256;-.20892414;-1.2342545;2.8172929;-.34540921;4.6836767;3.8017786;3.2724028;1.8364614;1.5729792;1.0317152;1.9938293;4.1021357;3.5152044;1.1297007;1.4274971;2.8055508;-.23750499;1.2470254;-3.1503937;1.735835;-.6502046;2.3803082;.88300824;-2.415396;1.9134901;3.5802255;4.2420716;2.0032899;2.7120199;3.0260811;2.3065777;-1.460663;2.0770652;1.5128088;3.134228;1.6770811;2.6708591;3.5440381;58.638931 +-.12595344;.75088096;-.38928059;.71671367;-.78252625;.25435662;.014405147;1.6139001;1.3120246;-2.0020323;-.81424272;.6860159;.39251581;-1.4358474;.27541867;-.627298;-.59767497;-1.2128774;.43899307;.14005715;.20419335;.10489212;1.799772;-.90822399;-1.0751278;-.34600663;-.94182599;-1.224695;-.0057261349;-.64781457;-.33005175;-.83603042;-2.2186692;1.7198305;-.5060091;1.6444403;-.43794173;1.258019;.36761895;1.0359027;-.89633662;-1.0733575;-.60067767;.18521342;.62457293;.76442099;.19921565;-.64437664;-.57262164;-1.5366168;2.8953297;.86438119;1.4650629;2.7534778;-.082263656;1.4601418;3.4947405;.28303939;1.7518646;3.1546464;-.47948924;1.2932221;-.35154387;.2378277;1.9676884;.73570257;1.8455887;3.2553103;1.4373212;1.2343177;3.9095864;3.0137668;2.5165889;4.5703993;3.5753877;2.8404517;1.9938488;1.2690066;3.29615;4.8042474;.89043128;5.7839069;.45888522;2.2911868;4.1453557;1.7239743;.6761933;-.058932383;2.4096379;.95624137;.83160722;.26268032;-.15456216;4.3959975;-.71746492;-.10939131;.49692631;-.73493278;-.52515823;2.2968743;1.3947979;.94432008;-1.2099166;.10112244;-1.4689027;-1.8078184;.93065971;2.1161964;-.039897908;-1.5561329;-2.0669174;.3783792;1.1494864;-.65788043;1.2600794;.010753568;.70551598;-1.2410048;.34428406;-.16923681;.48629183;.57846081;.434861;-1.199098;-1.8597733;1.2306455;-1.4655699;-.9829973;.95835429;-.74554068;.70770818;-1.8701869;-1.3732982;-.8406015;-.30614841;.39230371;.34455007;3.52021;-.83563709;1.2340385;-.72777826;-1.0120314;.94638693;-.58372372;-.85954839;-.19971365;.86972731;-1.2167733;-1.3424252;-1.5088195;3.079412;-1.3129308;2.0338283;3.9330664;.10018242;.49328354;2.9167945;-.42304486;.73695856;1.3168912;1.1687275;-1.4858817;-1.9430909;1.3762678;.10752209;1.061765;1.4547859;1.7013924;.36691481;1.338205;1.6634274;2.5960345;1.9151617;2.8785346;1.719613;-.39831382;3.1058874;.25233382;4.0512624;3.8698499;1.7347876;2.12484;-.28037596;1.3879497;2.8826566;.29395178;1.1220912;.78220522;2.4894717;.28576735;.29631391;-.41439691;.11817399;1.8816172;-.092070445;1.3122466;1.77521;-.15467738;-.29436746;2.4597688;41.55175 +1.6327211;2.2778456;.84564775;1.4550308;.67964059;.96936238;1.6584496;-1.3166201;1.0422356;.42692572;.79253566;.38935018;1.2276095;1.0888309;.40037867;.032194227;.59862441;-.63405615;2.1038299;.32962832;-.29081365;-.73869014;-1.35852;-.29301918;2.0876336;-2.1316938;1.4822946;-.056929823;.46273273;-.52345634;-.15831436;.96778482;-1.7375957;.73681223;1.2142243;.13556013;-1.1481408;1.1007512;.17202225;-.45819077;.95906103;-.13246422;-.18222566;-.04860542;.061272494;.55696177;.55932134;1.5729287;-.25422519;.92206419;-1.3363277;1.0441537;-.3745338;6.08219;-.57179719;2.632596;1.3149436;1.4672843;1.307664;5.712172;2.2781723;-1.4294497;.50011164;-1.697799;5.2817297;3.4532254;1.6220604;-.68981868;3.1923032;-.26194486;.45442602;3.2231514;3.3370011;2.4525065;2.7984617;-2.2584069;1.7416828;2.4331708;1.6032927;3.9807549;1.2009408;.47879541;2.4504316;4.0675435;3.3099332;4.772861;.4645645;1.0781577;3.2372727;4.4555049;3.2568521;.49281716;3.2364156;1.503922;2.4508569;.2463323;1.6327733;4.2235188;.10184774;.89145815;2.0590971;.47724605;.50399572;.50652963;.0040014568;.14912736;1.5681682;-.071509257;-.19122349;1.8892922;1.0118293;-.5420512;1.0433468;.31160271;2.1461709;-1.105497;-.64845175;-.039336424;1.4464374;1.2915382;.32330251;-1.7451675;-.98820752;.15447645;1.9859143;-2.3998196;1.0501382;-.19300464;-.43446815;-.96243113;-3.6030426;1.6765336;.26061499;-.71915454;.46651289;.81009442;-2.5026722;1.5825542;.83494997;-1.5083287;-.9141258;.93143284;.10247223;.36319152;.17201333;.25323877;1.1853416;2.4068067;.75691605;-.91785508;.37345719;.8789894;-.2708874;4.4094334;-.94022745;2.7523923;2.0144734;.80081433;.47583234;3.50756;1.3787675;-.64164209;.65205079;-2.2258286;2.4373491;3.225863;2.7000215;-1.2952201;.14027111;-.058230169;-.80286723;3.5076308;1.4744796;2.6937459;2.2061474;-2.3458533;1.3286699;3.6419747;1.0069135;3.6246889;1.0293722;1.7752546;1.2341725;2.8855922;2.9773629;3.9370408;-.61586028;2.9185963;4.405427;3.7929196;1.1701425;-.20004071;2.4640887;1.8539325;-.16587104;-1.0189002;.71092033;2.7350867;-.31443229;.53337246;53.174797 +.55951077;2.4022019;-1.3413253;-.32091844;1.0465498;.042375129;-.86450839;.036225434;-2.0521243;-1.0873358;1.4821608;-.039658777;-.25570375;.1258183;-.17821942;-.56871957;1.2182834;-.029981416;-1.3832119;.1017358;-1.156003;.91652179;1.7767367;-2.5984659;-2.9015102;-.65749216;-.89725691;1.0228767;.65269041;-.2548745;-.84867316;-1.2430887;-2.3538818;.38626763;-1.2721624;1.1022141;-.6284582;-.32765564;.19856988;.39166692;-.39734057;.20892406;-.79197204;-1.13483;-.0029020996;-.26149657;.76294315;.078547142;.12226343;.35011441;4.3701382;4.2701001;.78720945;-2.5507963;6.1341534;3.0001662;.85321748;1.5441194;1.3835514;4.437655;1.4282532;1.5246747;3.1266215;3.4625144;3.0111217;1.6922482;2.0913076;2.1117821;2.61431;2.024709;1.3861126;2.9096997;1.7082481;2.8696189;1.1863354;2.207339;2.9235435;-.20565471;2.339627;-1.613083;2.4206655;.62982613;5.8827462;2.8565676;6.4579105;4.891326;.3673946;-3.4606447;1.3733791;4.5757565;1.526706;4.8174143;5.9924436;3.4571581;.97045606;-.68296784;-.4144108;1.6100624;2.1807179;-1.8774216;2.1057358;.60405606;-1.4242474;.92721808;.45177755;.34439439;-.1164295;2.0088799;-1.4551171;-1.0717002;2.0063703;.95475441;2.1962991;-1.8995059;1.3032556;-2.7688954;.29021668;1.6204283;-.86924952;-.21981841;-1.3980069;.42276043;1.8911246;-2.862478;-.66587359;-.41289011;-2.0920851;1.2122039;.73836774;.22069921;-2.0505335;.31912491;-1.6000618;-.22627306;.85066569;-.23314962;-1.0124137;-.026099607;1.3150061;.83522332;-1.0392815;-.24526794;-.88238329;.16623092;-.034695558;.8355608;-1.140817;.36367643;-1.1813457;-.53647554;1.9704919;3.5357761;.46545181;-1.9581704;4.2015276;.53996849;-.96574986;.90289456;.93854338;4.2122521;1.3703769;1.3009517;.95275718;2.9168603;-.092630766;-.03417233;.42096692;.69921833;2.1868656;1.4924574;1.3991991;1.8374969;2.7263155;2.820816;.84930438;-.84743172;1.0848364;.13131;1.4684978;-2.408272;3.4514213;.22339104;2.6357033;.63096845;3.5311739;3.7628586;.63558048;-1.6511011;.93158847;5.1336427;3.3126898;3.8552833;3.0519083;2.5552278;-.71117073;-2.0058405;-.4683865;1.9603007;1.3528556;.17186001;42.661026 +-.49125555;1.375962;.43844685;-.44711053;-.19430463;.82323116;-.61757672;.79301077;.0071955365;-.20004711;-2.012898;1.2126877;-.6285612;-1.5329902;-.82486111;.1981376;-2.036072;-.076847278;-.51262695;.79013413;-1.1455996;-1.1767691;-.23939645;1.0532629;-1.6718609;-1.2840583;-1.1544342;.11180475;-2.2630663;-1.214088;.16158287;.96743399;.51895493;1.8933185;.79471529;-.31307101;-.47963747;.26598278;-1.6295666;-1.9301414;-.47650674;.77148867;-.41520661;-.57769245;1.7659948;-.037444357;.81323117;.71161509;-.72232729;-3.0263815;.68229783;1.3435509;-.24493392;.75275189;.14325619;3.5293508;4.4602137;4.0916734;.4479146;2.4787142;2.4925859;1.3028919;.15214507;3.8563311;2.9334257;-4.9451351;3.1873689;-1.4439228;-.30828232;1.9845828;.33336383;3.6061654;.97404295;5.4887285;3.5259566;4.0476179;.6992557;2.269572;3.1387618;1.9956384;1.0761813;1.4907604;.80452937;3.7208323;3.2946868;2.9567237;2.0732548;1.4854422;1.4335846;-2.2259288;2.0613668;4.0307713;-.82834226;1.2313389;1.5196192;4.8148289;-.51525384;1.0506909;1.9900066;6.1052823;-.58857602;.65632629;.33221254;.90979898;-.8484447;.72858638;.792355;.22328794;.13118738;-1.2003796;-.64979011;-.28561473;-2.1353407;-2.9835563;.91943091;.27224588;-1.9833615;.87589878;1.5674231;1.203136;-.83275366;-.99149257;-.91190964;2.2998719;.73218209;-1.7610784;1.7607867;.87163079;-2.6706102;-.036680963;3.354789;.8734253;.65274215;2.3223968;1.1978606;.37096882;-.67105204;.4751876;-1.3906896;-1.0332167;.031476595;-.44886547;-.06656561;1.1692277;-.50815511;-.68457347;1.4740232;1.3748554;1.59872;-2.1775298;-.34693474;1.8457131;.084865816;1.743104;.40020233;3.5056729;4.2334957;3.2174194;.29727015;1.4081619;2.0212591;.78046513;1.1747568;2.0094528;3.373281;-3.7897248;1.9018039;-2.5457015;-1.2158775;-.21641763;2.1256127;.58346879;2.1210051;3.2745042;2.1881421;1.199772;-.040253207;1.9251405;2.0396154;2.1940205;1.2815932;2.202858;1.4554673;2.7155714;2.6394517;.94016683;.69620466;-.25901783;1.4988256;-3.1530728;.96119946;1.621839;-.38484257;1.0386236;1.076745;3.8918197;-.38765514;-.33717033;.54432791;4.2192092;39.127399 +-.93581891;-.78561383;-.84135032;-.84417927;-.40384167;1.3099699;.46136931;.52789176;.45131284;1.1592218;-.27662736;-.17355816;.012280374;1.3536261;.15343966;-.36907104;-.16303667;1.2729632;-.26088673;.53141969;1.083483;.39366558;.10141025;-.48279524;-.38023186;-.68641227;-.69547075;-.088031344;.4517746;1.0115473;-1.257669;1.4492226;-.57841247;-.1030001;-1.0998232;.62408113;-.26654953;-.58738768;-1.3162301;.29043236;.091744788;-.46490595;2.3421779;.89377904;.63590485;1.1839828;-.87958294;.3691408;-1.1793591;.69934243;-.049560577;2.9386237;3.7784126;3.1839881;.70467329;3.9632599;-.75692791;.23214591;2.478368;4.3471937;5.4309649;.28607419;1.1214445;2.146672;3.2176332;3.7965143;.93836462;.89249933;2.2788196;4.5269084;-1.8754182;4.1336927;3.31758;1.6777122;1.4857379;-2.7830338;3.7117765;1.4131703;-.26651052;4.1547723;3.9933851;-.23715185;1.9267539;-.41306409;-.061929472;3.3006701;1.6136082;.10038557;2.9052942;1.352276;.002500982;-2.5627329;5.0328817;3.4484019;2.3444598;4.880105;3.2351589;-.073799476;1.4316899;4.0904207;-.65283489;1.9187404;-.92603844;-1.3444711;.9036119;-.10422669;.9764002;.57530689;-.19795799;1.0024503;-.38481951;-.95206869;-1.4464492;-.17518409;-.22115622;-1.8992784;-.29001883;2.7934258;-1.1353582;.27974659;1.0067774;.83317447;.029478529;-.80632567;-.45321116;-1.2313162;.12871738;-.94802272;1.1119605;-.172067;-1.8487054;.67516309;-1.1031832;1.0835167;-2.2555487;.86509287;.20045854;.56815302;-1.5022699;.16576393;1.7233503;-1.8490356;.32744923;.70289075;1.1296645;.77530384;1.8326923;-1.6839914;-1.7962652;.65071076;-.52338278;1.7324992;2.4375532;1.8269595;.34267688;2.7547259;-.92249197;-.28452244;2.8894196;1.4354167;4.5840864;.25319481;-1.1023009;2.5341647;1.3849669;4.1349888;-.47022945;-.30416697;1.2567002;3.1235487;-1.5454512;2.5689261;1.7396102;.83864731;1.4750232;-1.5772529;3.692209;3.3419349;.073655754;3.6265385;2.9891443;-.4982996;-.61236322;-.74594831;-.79437017;3.5031757;.91331363;-1.5718882;2.2171681;1.1646948;.10334258;-3.0426862;2.6220715;2.3079855;2.2632082;1.2272687;1.8589395;-.20375255;.26626623;3.1799431;48.637135 +.47937042;-1.0469871;-1.140537;.16759962;.42171296;1.5397431;-1.3648764;.33356592;-.17810589;.22766988;-.50630283;-1.5721844;-.99710327;.49888879;.24692182;-1.9115748;.035645872;-.76497084;.10319433;1.2427179;2.4263823;-1.5682147;.71308285;1.1183391;-.23185477;-1.1575744;-1.2522587;-.49600545;.13094066;.12140446;-1.0293022;1.0167245;.37356672;-.1902867;1.1573757;.03335017;.25909466;1.1598339;-.26363552;2.2929211;-.245874;-1.1137924;2.4038303;-.81717908;.45946532;-2.2789788;-.57319361;-.62541473;2.3215122;1.2717609;2.611306;2.8704109;1.0729399;-1.2933451;4.7629752;5.7941871;1.2295501;2.375052;1.7851529;3.5668228;5.3824644;-1.4488589;1.3189925;-.24167757;1.0180241;1.0545082;3.7679579;2.3740337;4.5503058;.0060220738;1.2810798;-.72248542;2.6746266;-.23417278;4.6211395;2.6098676;.20222428;1.4966552;2.3323462;-.62872994;1.5468864;4.9142842;4.4725308;3.5905802;-.63911676;4.5281062;.23396581;2.9844012;2.519896;.8471595;1.5909865;-.034485538;1.1685917;-.04967846;1.3554276;.59627944;3.1240287;1.0855428;.14381057;1.3365067;-1.2858989;-2.3312967;-2.3963516;.61171997;1.0625763;1.1216507;-1.2238961;-.10755422;.1209279;.62756145;-.73344678;-.2443805;1.1790527;-.77387697;-.022968318;-1.0914066;-.73738438;-.42150882;.5180065;1.4772923;.66286808;-1.4939355;.81961471;-.24090852;.85883325;-.98283821;-1.4978104;-.095604293;.11230067;-1.0203205;-.70279115;1.0887507;-.02488423;-1.5958359;1.7898726;-.094355434;-.076755807;.45532048;-.64122206;2.3046107;-.80443865;-1.4010215;.15026338;-2.0785117;.89653701;-.97914302;-.57882798;-.63042694;1.1117318;-.44840205;2.1696646;1.9407842;-1.131067;-.089891158;4.0089498;4.3521538;1.4170161;2.4175997;.5676257;2.4428318;2.1131032;-2.028425;2.0342438;.88482726;.33481321;2.3663981;2.1421697;2.4661825;2.894655;-.58777243;.57369411;-.16520835;.91784704;-.9446075;2.5381427;2.0428765;1.7697701;2.1100061;-.4696385;.391664;1.5771656;2.7138863;2.4376078;2.6639504;-1.1387384;3.1783879;-.58676052;2.2112403;1.8445454;1.6283613;1.8794825;-1.048488;1.2738161;-.044247899;.61855948;1.8817133;3.4570146;1.8815776;.43268454;3.6751175;39.906334 +.16042125;.90850925;-.78679007;-.74610984;.44858375;.49179274;-1.1816194;.28021041;.80373359;-1.0126595;.45631421;.85362464;.31947121;-2.055109;-1.4877746;.95521688;1.0603399;-.27555445;1.710512;-.18283312;.13325635;-2.1869256;-.72434825;1.1581719;1.6141491;-1.4070632;-.38325384;-.032358475;.57268155;-.84752184;-.46679106;-.78199309;-.36446151;1.3046768;.15605962;-.51083809;-.31512308;1.3801875;-.099916197;.1365767;-.7347905;-.44038767;-.096118525;.097999997;-.48364913;-.43073526;-1.6565387;-.33067343;.2787255;-.084122732;2.8497775;1.5162292;2.2228715;2.4663646;1.4523351;6.0046468;-.49339303;3.2570269;4.0124016;3.813947;3.8475499;.97633362;5.043076;.34648201;.78235394;4.7593884;5.8471508;.86318392;3.5949061;2.5670805;3.7447569;-1.542206;1.8974071;1.4241878;.63738525;1.2683755;1.1307234;-.42174205;2.1144898;1.7088141;1.683058;-.73829067;.40691927;2.7897093;1.0454041;1.514443;2.3975317;1.4855738;.012314707;.012437913;1.9931166;4.1671157;4.5153852;-.98973346;2.1423259;1.245831;3.9309142;1.5938294;2.4864266;2.1871872;.2882838;.31534776;-.0024365031;.33933884;1.7516623;1.5905151;-.70767635;-.33735967;-.048376262;-.24633385;-.65979314;.049642131;.5808115;-2.2663898;-1.2500987;1.3588127;-.23515822;-3.0064285;-.68640804;-.96932113;-.93505454;-1.8313049;-.34933347;1.1428105;1.612174;-.76906395;-1.9323269;-.67368126;-.59517491;-.59294337;.5666759;-.27869356;.14124681;-.76048237;.036286823;1.0376427;-1.2610623;1.4783387;.27736756;.52501577;-1.0877578;-.45305938;-.18056911;-.90748543;-.30517733;.34963048;-.55838197;-.035225127;1.0863205;2.0045624;1.5071692;1.2338692;.37966257;1.5297568;1.7633157;3.1353149;-.94339752;3.0015407;2.0808809;3.3132641;2.3490751;.67093843;5.0050836;1.1011989;-.58439881;1.3062882;5.4650297;1.7727457;.89885056;.32388636;1.5746924;-1.0929818;.5365122;1.032424;.94556695;.46209267;.25256568;-1.067977;2.2980087;2.3056171;1.6831023;-1.5246457;1.3275733;1.7969542;.95823276;1.6214778;1.1734619;1.851953;.79890043;-.71151012;-.26889756;1.5772721;5.1450272;-1.7584159;2.6639225;-.55930513;2.7739995;2.3382378;1.7606664;1.7398899;47.612095 +-.37889999;1.4068871;.50370151;.43585873;-.86056632;-.3809914;2.2541182;-2.0294235;-1.7847582;.28107759;-.91752404;-.62440848;.64347905;1.0760324;.36441785;-.43543798;.57520866;-.59836835;-.71040684;-1.1910703;1.4135758;-.57563549;-.47339097;-.42703515;-.28245607;-.44137496;-.2005658;-1.318784;-1.6705259;-.52872849;-.5950886;-1.0292021;-.39995766;.23090518;.069263533;.13761991;-1.7302313;-.9360112;.091770306;.12706338;.45392826;1.532101;-.59920937;.96901131;.88361603;.67369962;1.4336455;-.48830196;-.56333679;.16976617;3.3365657;1.3824939;2.1312485;1.6961673;4.1542125;-.021011854;2.292747;6.1769209;4.4648108;2.4210987;4.4701228;2.3785155;1.5900837;6.2200065;.83809942;1.0790186;2.8642116;1.9102293;2.315855;2.6431024;4.7625451;2.8861513;-.61320275;3.8941002;-1.4159466;2.254878;-.82887685;1.1842598;.20833378;1.1214726;-.14638354;2.9258559;2.370872;3.22299;3.5897396;-.55165237;2.8672006;4.8906837;4.660924;1.8925893;2.3057878;-.21494295;.55370122;-.041449215;3.5477054;.64957154;3.2350018;2.8167088;.84561467;-.92341697;-1.6768614;2.8906162;-.21578732;.59791237;-1.2975935;-.088368073;2.2047644;-.91968191;-3.2600093;-.57471579;-1.4320832;-.73194748;1.1167914;.24852993;.81011915;.21199696;-.83532482;-.25067806;-1.3424857;-2.1378882;2.3193362;1.83152;-1.9252353;-.43144765;.53184128;-1.2238556;1.2683662;-1.1790158;-2.3240938;-.59655166;.70044065;-1.0808662;.041491639;-.83202493;-.3169212;.30080575;-.92850971;-1.5350829;.5615012;-.46816584;1.9229921;1.3545867;-1.2950338;.032104708;1.222934;1.1703032;2.4008532;-.11153726;.14413901;-.98783702;2.0509465;.036992259;2.1139178;.42921343;.79732299;.79702789;1.3372664;4.4835377;1.5485172;.28153786;3.9832473;.62790859;1.8016587;3.7902737;2.309932;1.7893012;2.3830218;1.4102845;2.5483832;1.443203;1.8030772;1.7285308;-1.1222922;1.6505152;-.47458881;.82385278;-.093514957;.64210451;1.4340314;-.16569537;.0017342571;1.4642569;2.4044585;1.7463512;3.5525982;-1.013615;-.082714953;4.5072284;3.902607;.9822337;1.4603221;.018033098;.66603076;.54334098;1.6765157;2.1704037;1.4434086;2.80809;1.2651362;-1.5317498;48.991547 +.41280562;1.6071862;-.07055442;2.3947318;1.039216;.58739042;.63264859;-.92609328;.77834463;2.0940707;-.75587761;.25187582;1.5532945;.15642005;-1.7586212;.56599134;-.80342144;.27827135;-.48683852;-.7389062;.15655845;.34391388;-.78510618;1.0102097;1.4071463;-1.3803765;-.77325577;-1.0664309;1.1016551;.43181518;-.69978052;2.5767758;-.67912477;-1.4081353;.60457724;-.23270234;.91900802;-.75385135;-.35710081;-.44746286;-.7070989;.2967591;.52333236;-1.0357518;-.15360507;-.062088441;-.57047027;-.27781743;1.8047764;.3559863;.70050347;.47042882;2.3367426;1.732613;-.2280436;.82937825;2.2196517;2.710845;2.7257452;4.7948318;5.4459553;-.69955617;1.2854763;2.388222;3.2614558;3.2567458;1.8365664;-1.1074653;4.0783277;-1.2930204;-1.2043327;-.38645515;.23160318;1.8059223;5.7994442;.23380065;4.6352773;5.0899224;4.4809899;3.8802118;5.3651109;2.7950847;4.8427167;1.5869811;4.3735762;-1.4277829;3.0480115;4.3613768;-1.6379372;3.1986024;-2.0859423;1.6753517;-1.1159768;1.0536063;2.5984061;-1.3179182;2.7978539;-.059399083;3.5029609;5.1567941;.20429505;1.8655571;-.11066615;.69977993;1.5535976;.40630087;-.54286671;-.25242418;-.54951757;.6131826;-.72047347;-.55918813;1.8368756;-.50256932;-.19491209;-.07354597;-1.2946745;.98158205;-.92495012;-1.8813533;.36342815;-.070541896;-.40600735;1.089798;1.1784573;-1.6482743;-1.719244;.41394323;.22962059;-.12297395;-1.5716531;1.5515008;.38612515;-1.8810239;1.1836443;-.59139991;.66737717;-1.1105555;-.88528061;.00013680043;-1.8363013;-.48423022;1.7295749;-.67303586;1.6263438;-.70379251;-.43565434;.1793129;1.037935;-1.6957098;-.76773179;.19191864;1.7054684;2.3930991;-1.8080052;-.24175841;3.2131338;.45022836;1.6488141;.5050779;3.1355143;-1.3549062;2.190058;1.876527;1.0735775;1.7330072;1.6519513;-2.8112812;2.2653418;-1.8694749;-1.6552188;-1.2875731;.43779323;-.73014301;3.5990977;.73195982;5.0745153;1.9417739;3.5233481;3.6279476;3.2021041;3.6860952;3.8936858;.87702352;1.9664491;-.0029478329;3.5475616;4.2761889;-1.0221496;2.4577904;-.95919442;1.3316323;-.4789035;.35193905;1.3889678;-1.0070026;1.4452384;.17167242;2.5674105;2.3628478;59.411686 +1.3800163;.90520781;.16951469;-1.7860627;1.4982474;.87596095;.14614663;2.5622046;1.1978253;-.62494379;-1.5980507;1.2888763;-.28055078;.14449434;.14518143;.217885;-.23133145;-.900181;-.45360547;.59493232;1.2140976;.67135632;-.45239863;-2.10514;-1.3364363;-.14785372;.46965918;-.74000359;1.5335152;-1.6389898;-.53647619;-2.1843922;1.911534;.33457959;-.019421784;.38359749;.60352921;.27719048;-.07085672;.57335103;1.925907;-.17311555;-.74787009;.37054121;-.59914035;2.4851658;2.1850235;.38669345;.41140166;-.59859914;1.0971216;2.5249515;.68982226;2.4399366;-.20715281;-.42985952;.25908107;2.4437361;3.4585536;3.8356605;-.57923311;3.6071641;4.8991776;1.418704;3.9460106;2.820029;-3.3503873;-.3715235;1.3200018;1.7714605;1.0223856;1.9819334;1.3266459;2.2422566;2.8124857;5.6359749;3.1185396;4.6291385;1.7723337;.43845266;2.1067033;1.0858212;2.9938819;2.6279242;1.7881047;1.6622431;.31148297;2.6109312;2.9404521;.53029072;4.2547116;1.9161434;4.4063325;.6719054;.38753647;3.9012189;2.1869378;3.9438026;-2.3839333;5.0343947;1.5185517;-.064162642;-1.1562835;-1.9834526;.19148947;.32050809;-.12668897;2.1952682;.35693735;-1.4719993;-1.0012937;-.85959417;1.1615325;-.30748829;.75024062;-.71084762;-.3893733;.1138716;.037331067;-1.4482503;1.3453506;-1.4994618;1.0567566;-2.2033114;-1.5605012;-1.7351223;2.8528512;-.35710764;1.3004211;-1.3094492;.73811042;-1.2881072;.091390409;.70738;-.19456728;-1.1024621;-.37365812;1.7239089;.011843277;-.20585811;2.2048616;.73369277;-.90088069;.58965242;-.43149862;1.383004;1.029758;-.74929076;.64465952;-1.0994108;-.71606266;3.2222435;-.1678749;.20382185;-1.6202859;-.42300826;.37860891;1.8999318;1.5406016;1.3443716;-.4105778;2.7259822;2.9219818;1.7335292;2.9335186;1.5843955;-1.7678198;-1.4220693;-1.6079016;1.3483754;-.80944008;-.0046360851;.37378669;1.7468913;2.6252446;3.8622222;2.2954204;3.8329895;1.8331201;-.24304302;.57063782;1.0824932;1.2607093;2.6724312;4.1845331;-.31992415;-.28851688;2.6461141;2.9069655;-1.1473668;3.5217505;.99303597;4.4036613;-.38643044;1.6672912;2.2089572;1.0017048;1.8548557;.28087553;3.4411659;45.455147 +-.19992812;-.24110092;-.8094843;-.66604483;-1.2831347;2.2423639;.33631852;1.4561628;-1.1391482;-2.1854565;-1.3624628;1.5408032;.83052504;-1.0304066;2.1898105;-1.1412675;-.63560599;-.2461675;-1.3340514;.7753647;.41806102;.67623699;1.2655152;-.53657734;-.39270008;.70429277;.28195068;.80787289;-.33692628;-.41493645;1.3069557;2.3876131;.34290206;-.85733104;-.53600025;.29162458;-.64304656;.080265626;-.33386984;-1.3986005;-.61340147;.47573215;1.4144732;.54675037;1.6566821;-.35715795;.35499284;-.55104023;-.64810246;.047565989;.47823337;4.77631;-.51190603;3.1391819;1.2294604;2.3208053;4.1561174;-.093243182;.36043915;2.2775123;4.9228492;5.5548582;4.6623988;3.0701072;.47040105;6.1789441;4.7393308;5.1519537;1.7737731;3.751899;2.8665166;3.4290984;-.61773384;.32698727;6.3354759;.48526987;1.4271342;2.1006744;-.026064737;3.5028229;5.0254555;4.0229335;.057977345;4.5307755;.33111006;3.6322949;.63042659;1.7401282;4.0489998;-2.1210263;3.7491827;2.0298727;3.3482225;2.7847207;4.8439689;.3866123;5.2271776;1.6454904;2.0293205;3.6789896;.25859612;1.5006841;1.026598;-.82510692;-.50213486;1.4051909;2.4187083;2.4853346;-1.4842373;-.70585155;-1.0101032;.64580566;1.0019716;.76739925;2.4979472;-.28761363;.42238215;-.30957168;-1.4084699;2.5805151;.5481407;.99397528;.15385391;-1.0358887;.4188545;.16331935;-.28487906;.44442493;-1.334883;-.045185477;-.92284334;.17018557;.40012911;-.29718748;.014578418;1.6031545;1.4612381;-1.1851488;.79063821;-1.4201638;-.52588832;-.38924256;.31330243;2.2283578;1.1681952;.041272402;1.2779635;.3198846;.82949686;.38298205;.97474682;3.7644479;-1.6414069;3.0087984;2.3949099;1.4964761;2.5560005;.87098819;-.39659488;1.9308327;3.8029101;3.8439076;3.042625;5.0665216;1.0435867;5.8566322;2.1176031;1.7416337;.56709373;3.254674;.51341969;1.1817054;-.49359465;.87379116;4.4765248;.81852537;.66387403;3.6589835;1.2651303;1.595529;2.1688058;2.505033;-.42331544;3.1986728;-.65623724;4.116363;1.8864415;.84402508;1.9962234;-2.865361;3.5815532;.2856048;1.4845426;3.8103688;2.9617419;.19501474;5.1587067;3.6079001;1.2616489;.24341264;70.317856 +-1.1777169;-.26017097;1.8262089;.50303018;-.19769958;.015567849;1.7555853;.65762806;.76555163;-3.467068;.12136488;-.048299372;-1.1092559;-.6079725;.3945896;.080443151;2.0589399;1.3935322;.30394638;-1.5829157;-.13416682;-.12954953;-.093051717;-.48396719;.52250791;1.0120112;-.33337653;-.079821467;.069401786;-2.1215248;1.0120281;-.32681641;.16295154;2.7201698;.47796357;.66739213;-1.679871;1.8282416;1.2770483;1.5869337;-.3283295;-.85459012;2.3215106;-1.4002018;.8492744;1.5387169;.53760731;-.30735093;-.58338183;-2.688499;1.6025659;.45719343;3.208271;3.4184215;1.8928235;1.852188;4.5550251;-.5919525;5.5045347;2.8522797;2.9103434;2.1262515;2.574142;-.75547403;4.1299357;4.3207898;2.459636;5.0127783;.61866391;4.6412144;-.31743792;5.5019326;2.8928602;-2.1476319;4.3725734;2.8510005;3.1040702;1.6366289;-2.8098037;3.4117506;2.837357;-.65112793;2.3500006;1.8258318;1.696263;2.624073;3.4852962;2.6457431;2.9270139;5.8205857;3.5790567;2.174367;2.8110151;1.4084672;3.7366562;3.0258849;4.4899135;3.1431408;2.1394682;4.2927561;.74177659;-.9401468;2.4266808;.87480301;.12547633;-1.3900394;.049552046;1.1112694;1.5138288;-.68201286;.64865869;-.56523323;-.36840424;-1.9929653;-.82954234;-.18197064;2.1716456;2.0415034;1.0177613;-.87365466;.55361462;.83891225;-.23525208;-1.1534863;-.97044986;.64642698;-1.5578963;.0084562032;.45946205;-.89217448;1.6513929;-.056625322;.078290306;3.9766111;.60371262;.63149685;.92462242;1.7452878;.071093112;1.1004475;-.36321002;-.74912184;2.2446339;.40048748;.88832664;1.3644387;-.06478253;1.0193242;-.67797559;-1.5067077;1.4172862;.61135381;2.880373;.73288149;-.20982382;3.1954193;3.6976604;-.40334198;3.9758596;2.2653289;2.7461851;2.398293;2.4912271;-1.7959249;3.3469718;1.710205;1.9415596;3.8692286;2.3337684;4.4459314;.6573801;3.2883925;1.5035975;-3.4445138;2.7272017;.8240934;1.2204124;-.60147554;-2.6850958;3.265507;3.0197623;.14362809;2.9549789;.97874874;2.6778846;2.1638515;2.4226296;1.3972381;1.3885304;4.4048042;3.6921327;2.5482371;4.551125;1.5013393;2.9881029;.73128992;3.7167137;1.3956389;1.1735314;2.5493355;68.563568 +1.1732553;1.3751029;1.3007333;.65986758;-1.0924807;-.61263114;.81304002;.39282113;-.44354612;1.5670437;-.01439073;-.68026525;-.99031204;-1.6659552;-.60604453;.20125324;-1.3137428;-1.0934777;.53791225;.22700177;-1.9031267;-1.4674731;.59368688;.76949036;.44522813;.095212162;-.6816715;.068792;.02992163;1.6241425;.30893576;1.3271977;.29634005;-.5172841;1.6610333;2.1776681;-.84842157;-.92889339;-1.0470297;1.1175984;.85694593;-.3182717;.79067254;.56891519;-.15805367;1.0559175;1.058102;.7420364;-1.7164193;.80741584;2.4716301;3.4267128;4.8398161;6.7505922;2.7005072;2.1694283;.51655573;3.6588497;4.1477299;3.3505852;2.4005711;1.6827241;-.91723174;3.2088878;4.1416693;5.4261837;5.3167305;-2.2597611;1.6953136;2.9710739;2.6881688;.83796787;-1.9521582;5.5950537;.66954428;.95551336;2.5234141;3.2300925;2.591486;1.8452226;3.7579381;.46419409;-1.0837625;3.0023193;6.308351;.34362102;2.2781615;3.8223617;3.5441942;2.4142158;4.0717282;-.50044423;.44307762;4.4851909;1.2188694;-1.6317313;-1.5325558;2.0749595;4.4435005;.7079522;.83760417;1.1522079;-1.280943;1.3800488;-1.3834752;.53664446;.99563694;1.8059782;-.30624279;1.5279535;-.27563399;-1.1267924;-.40828329;-1.4173409;-1.6227822;-2.1224518;-1.2652553;-2.3813329;-.29870313;-.43954921;-.95994246;-.76905382;-.45095712;-.24779619;-1.5253786;.68161714;-.42243046;1.1869973;1.631644;1.1973264;2.5537713;1.5933874;-.31325012;.030660937;3.022635;2.7386925;-.36358422;-.4772664;1.0274744;.468692;.92905003;1.0727314;-.084722534;.95629054;-1.5432249;.97605056;-1.6978385;1.0268044;-.24289456;1.0749449;.018941946;1.9069968;5.2650857;5.879385;2.083503;3.7661293;.88250583;1.2456601;2.9799132;1.4834484;1.1282494;.48388368;-1.2245804;2.2805898;4.3743563;4.4196186;1.816062;-1.5890543;.58869684;3.437088;1.3433623;.55977863;-1.5421888;2.7028389;1.1598941;1.0881521;2.0189464;3.5881963;2.3975682;1.8577503;1.1127011;.14716861;-2.7223513;2.7729638;3.6178458;.54647601;2.7583394;3.4600942;1.8760034;2.3929811;2.9614887;-.78265119;.49980533;2.4955368;1.0323913;.028178932;-3.0920351;1.0350015;1.9255786;.62992936;60.204044 +-.90273458;.45313272;.38617027;-.66029602;.95620126;-2.0405192;-.57305676;-1.5865198;.88174629;-1.5587932;1.0800031;-1.8482274;-.31431118;2.0254464;.48721349;-.27715635;.10068207;.49125341;.018491467;-.37108007;-.10884728;.27246821;.052814357;.063298002;.12668675;-1.1040411;.7810986;.040511873;.60735762;.75987738;-1.6386386;.764687;-.33446226;-2.926883;-.073298238;.16518521;-.32434112;.38555029;.85051429;-.21962291;-.048447847;1.1217011;.65154523;-1.0775299;1.1256492;.57261252;-.91769832;.2351523;1.3151207;.13101827;1.7326998;4.5882812;-.15058312;.19122495;3.8450868;.30904889;1.8465569;4.2050548;-.91046065;3.6302121;-2.1151972;-.14778812;-.12180141;1.9863009;3.502598;-.26241085;3.4352112;.77593958;-.71986729;.31829807;-.058361281;1.2142172;3.4419887;1.3228526;-.29829606;1.522778;1.679625;.92695612;.4836292;-1.9677465;2.3478227;3.35905;-.79398859;-.32865795;3.8784084;2.289923;1.8097419;-.29330009;4.1540523;1.5623413;3.9272046;4.4872484;-.36602864;1.3849659;3.491554;1.8098503;4.0238986;2.8149965;.56242657;-.77052593;-.88154429;.29584223;-.71881133;.025269426;-.35331291;-1.500482;.28078562;-1.9280659;.58403635;-.444996;1.4399461;-1.0109422;-.64998662;3.8894663;.79026383;.34634832;1.4942763;.36705139;.68306565;-.29682863;.37339458;1.4671669;.67501402;.052607942;1.0632377;-1.6461309;1.9397742;-.34944636;1.6745235;1.2435449;-2.8346965;1.1592664;1.1685821;-2.7729957;.10261983;-1.0209459;.32523718;-.72853899;1.0993038;-.54249775;2.2213378;-.020345772;-.98117918;-.12824912;.97635537;1.3924032;-1.1870079;.65768445;.39121449;1.6550217;.21123834;2.8279171;-.85621852;1.3167602;1.7304856;.32295734;1.8605306;4.1487908;-1.8164365;3.5687828;-2.6411846;-1.2353042;-.27281594;1.7693321;3.9668045;-.61366272;2.37889;.63632745;-.73376638;-.23037039;-1.1577712;1.4023973;2.799263;2.7235358;-.54683626;1.1408402;-.34419605;1.4940264;.20479713;-1.1361467;3.9781473;1.7269945;-.0015933112;-.16697496;3.2931175;.99438679;2.2360351;.95019114;.56835955;-.4311161;3.3035877;2.3857794;-2.0091259;-.10987945;2.4958131;-.20317498;2.5472479;2.6481099;-.32213438;-1.4790496;43.668076 +.44162902;-.91634959;-.23519431;-.82794356;.41581726;-1.0362178;.36643609;-.56346279;.98184496;1.0442512;-1.5550433;-.22690991;.32497007;-.29394442;.64879316;-.23927729;-.94766617;-.76832736;1.7883363;-1.6960636;-.018148614;-.61897707;-.49699354;-1.0740147;.55371946;-.56639451;.43251401;1.1204062;.58212084;-.8199358;-.23192076;-.94406968;1.1486403;-1.0696257;-1.5950007;1.2700325;1.4259288;1.0302306;1.1607325;-.75876737;.81514627;.092544764;-.096712254;.82008916;-1.1423218;1.6754516;-.72998661;.78384984;.16997339;-1.3612076;1.7523559;2.551718;2.9794095;1.7876151;4.1062903;.98774159;2.949187;1.5870742;1.8462845;-2.1490867;.26189649;-2.1052978;5.0741844;4.1781917;3.1812236;4.3048105;1.7674959;1.0906473;3.5508583;2.3115697;-.72073179;4.4204617;3.726783;2.6818616;5.4410625;1.0616039;1.0086129;3.8268058;-.012588185;2.1850979;1.4968234;.83534288;2.705538;.74008256;2.0173588;5.3125811;2.9629736;2.8373373;-2.1374633;1.0938789;1.6303238;2.0957541;3.1170783;.88123512;3.8728652;2.6674926;.038824338;1.0502988;1.1407421;.28114629;-.96000093;-1.9462965;-1.109394;-1.7136905;-.44017646;-.19796976;1.6941534;-2.7003779;.33183625;.52730089;-.62448657;-.77789605;.39449844;-.82006574;-.66785783;.26371112;-1.721246;.53816164;-1.3776813;-1.6757764;-.40992141;.24023284;.17327257;-1.5145894;.58496469;-.91786253;.7351256;.48297989;.94325137;-.42408109;1.8398317;-2.2547784;1.7554145;-.8408972;-.45226124;-.11314032;1.0814211;.69411319;-.22920129;.35754248;-.046887096;-1.4198827;-.86337781;.91963494;-2.4363458;.70221442;-.77540636;1.9341682;.8348006;-1.9770585;2.7193756;-.33508703;4.0933385;1.874717;1.4586347;1.0725483;1.6436036;2.5818965;2.9858856;.29061925;-1.197088;-1.2071443;4.1386046;1.8937215;2.3281143;2.4250016;1.3433872;1.1944342;3.0493369;.75130564;-.6339317;4.4310575;.47200638;-.25039324;3.1270876;1.2645397;.2458396;1.9750581;.93415976;2.0742543;1.1249549;1.2397448;1.9781394;.65181345;2.7026525;2.6145504;3.0005732;1.9130495;-1.2745708;-.80489677;2.868012;2.5569019;1.7641878;2.2573602;2.3091514;2.8993878;-.41960838;.70708597;.82738554;-1.4585501;45.77882 +.17038611;-1.0655552;-1.1516001;1.0424697;.96458709;-.57624555;-.17987078;.66952878;.59396774;.57038701;-.5271771;-2.325325;-1.7247932;.05066048;-2.1236892;-.80930418;-.45647514;.19207926;1.0120506;.1879469;-.91138595;.47223821;1.0501945;.90885222;.14695413;-1.1736962;-.29229185;-.22024207;-1.3497154;.82691711;1.6022788;.081156127;.66952395;-2.0445435;.1177493;-.18989936;-.71895224;.24306189;-.9725799;.9076795;-.16768216;-.70651847;-.11501545;1.0188332;1.5775276;-.13145666;-.013146005;2.4185853;-.81575525;-1.2950511;1.0358551;.36553749;1.6728036;.19762371;5.2068796;1.4673856;.76192141;4.1988497;2.9887657;2.4958973;2.2882774;.12902339;3.4362857;2.3487735;.57107627;2.124882;-.62850827;4.1971912;1.6202656;1.2440917;2.7275209;3.2750471;1.5791317;.97963709;-1.5139977;1.4167659;-1.5138793;-.15629533;1.5590947;4.0220218;4.5452576;-.21559598;.37541306;2.7240853;-.033960696;1.6335459;3.139514;.65364552;2.0804789;2.6422093;6.4577003;.27648911;-2.1297278;1.5079511;-.59089822;1.4778941;.69199491;.532911;4.9692883;2.5137675;.91077387;-.60999078;-1.9587259;.48345333;1.2899685;-.27649581;.15088384;1.7790449;.033626761;-1.0021353;-.53298283;-.73697793;-1.0692466;1.2725987;-1.3661952;.67303574;1.1608378;-.69907576;-.23538251;.16677924;-2.3396611;.088042937;1.3481433;1.0278224;1.0031366;-.27594927;.11923753;-.40874198;-1.034062;.36550876;.29149625;-.49887979;.22067977;-3.687402;-.97600216;.53686458;-1.6045146;1.0118299;-2.2223921;1.1461616;1.6383681;-1.1907802;.034558952;1.357759;2.2588003;-1.0190696;.56638986;1.8124517;-.20339221;-1.7761025;.3602404;.62824696;.7951563;.20794347;3.5056596;.65570784;-.38940749;3.6922252;2.0374646;1.4700395;1.0348713;-.55688775;1.2963251;1.4482764;.63772207;-.29970241;-.98849642;3.9205401;1.1132586;-.34620982;-.071286924;2.5687575;1.7694322;.42421588;.75456733;1.2138873;-2.0993459;.32859683;1.2229306;3.0169842;1.6472229;.65571415;-.11970386;2.0959895;-.25076196;.29080623;1.626218;-1.1893495;2.4427993;2.0416055;5.2233644;-1.0044832;-1.3698241;-.35144377;-.77638572;.41789854;-1.5791368;-.50124449;3.551676;1.6756183;35.325272 +.6499756;-1.0922257;-.77393866;-.38736033;.18162487;.86483836;.76589501;1.7551477;.65309078;1.9559867;.79179078;.69121611;.61063117;-.3214497;-.68377972;-.90191263;-.018966937;.32619873;-.44554496;.97212034;.81534696;-.83010769;-1.284933;-.066868216;-1.075307;-.41082495;.048456859;.8823756;-.18984048;.29163563;-.29637817;.083230689;1.0865909;1.6415789;1.1328777;.023988487;-.81528062;1.2360613;.19558549;.31370518;-.7904864;-1.0263168;.29414627;-.28135216;1.4994316;-.47153729;-.41453168;-.32147482;-.86534768;1.3567541;-.8397333;4.5202456;5.3654385;2.029846;.01507498;3.9563692;.23969176;3.0806148;-.71633953;2.155477;1.9383364;-.9189443;1.6214328;4.227787;5.1219587;2.2465477;1.3586558;4.5474634;2.7900374;.80770707;.68141955;5.3852448;.43440306;-.44629455;1.303533;-1.5597292;2.2989156;1.3953305;2.891113;1.447984;4.424509;-.48551622;4.7629161;-.48840719;5.4860692;2.1000843;3.8445475;1.7908018;4.6749063;2.2137094;6.5475101;3.193697;3.8163795;3.2624333;2.828131;2.7788033;-.31716478;5.6741238;3.5225487;-.37211362;.48245409;.78962356;-.078941472;-2.3224618;.76315278;-1.5953532;1.7403003;1.9757148;.80700225;1.2014531;-.57870603;.15691081;.59423423;-.91978633;-.41391513;-.14703862;-.28990376;.95381558;-.39287511;-.58421087;.74387801;-1.1800805;1.2556522;-2.7203381;-.81225669;.65193123;-.48166999;2.0605619;-.68860924;-.43589583;-2.6122999;.76875508;.1023969;1.42046;-.016912514;.40080971;-.22638346;.74304307;-.57037431;-.54070061;-1.422895;-.54010737;-.11993586;-1.1586314;.67779815;.17746817;-1.2113599;1.2845849;-.95983726;.077607475;.6792146;3.5697501;5.6338019;2.3928764;-.88899934;2.2265706;.38305777;2.0948691;-1.6852276;2.0189857;2.1871316;-1.4415293;1.2005565;3.1601129;2.9579222;2.6387703;1.1738214;1.0876521;1.0477329;2.7284799;-.61743641;3.2504528;.72294718;1.0571959;.99355024;-1.8148255;1.9957783;-.52397007;1.7477005;.75467843;2.2401896;-.29467061;3.5192473;-1.0145155;3.8713305;.82987767;2.0272379;-.99885315;4.1334124;1.4287542;4.5249386;2.9718256;3.0311649;1.0499873;2.093895;3.159153;-.79335499;2.6690667;4.7770801;-1.0812161;60.785549 +-.69991994;-.59299237;-.27293339;.29880449;.37457454;.27238786;-.24825059;.037736602;-.39018816;-.47566932;-.40040702;.97006351;-1.907334;-.2067129;-1.3271372;-.95089835;-.62026227;.19660269;.81904614;-1.4857645;-.48667261;1.0057088;-1.0200009;-1.2508216;-1.1484524;.23991273;.14253278;.50317901;1.8210851;1.0201888;.043190386;-.079571366;-.056564599;.41132984;1.7201692;-1.7082839;-.64113915;-.13247013;.18226156;-.64906234;.39036652;-.26007357;-1.142344;-.17033792;1.4117626;-.6984154;-.20298617;-.78392369;-.45396975;.32710376;1.2981944;-1.7392176;-.024245707;.74158418;3.4205687;1.8778605;-.14022359;6.2443166;3.0790477;-3.3061919;4.8964653;-.26121709;-.4211781;2.9551489;2.0677626;.47457102;1.1442976;.53105444;1.503901;2.0280552;1.7753481;2.3392353;4.5569525;4.8954415;4.1366158;-2.8360889;1.0618961;7.0139155;2.7810943;3.6155758;-.8651008;6.9343228;3.8305051;4.8133292;3.0381143;-1.6012849;3.2632921;1.9653174;2.638768;3.2296569;.58290559;3.7127814;-.55181533;1.7366771;3.5560107;.48177132;3.4021528;5.8323379;2.3067298;.70178306;-1.1832472;.33923861;.22792763;.61218911;.725945;1.4161059;-.056485239;.78212857;-2.8178837;.064078756;-.98829597;1.3023432;.07551872;.5720408;-2.277848;-.6689347;-.21222751;.2237687;-.18660685;-.32636786;.17080551;2.7209098;-.18855728;-.09271308;.89023632;-1.301935;.34044969;.038259652;-.23728436;-.27546453;-1.5413052;.12867193;-.21096288;-1.4618858;-.0090160407;-1.1490078;-.68711638;-.77387327;.55892742;-1.2130629;1.3373126;-.22824028;.18617734;-.83010995;2.300607;-1.7394611;-1.4592952;.25331336;-.64173627;-.61924571;1.30053;-2.2596762;-.1722928;.88638657;3.2988317;2.5024159;.48177099;4.7868447;3.6300833;-1.2306397;3.4669673;1.0517151;-1.5807036;1.2083523;2.3856416;-.90958279;.37374207;.23830852;-.29234493;1.9727589;1.9886532;1.6845173;2.0674663;3.7597818;.9867152;-2.713449;.81916243;4.408258;2.6070251;2.3585885;-.13905899;4.8328981;2.9858317;2.8642523;5.0532966;-1.9556564;4.0832934;1.3708888;.20394412;2.2974157;.84798235;2.5657365;-2.6143148;.85302866;1.481352;-1.3759637;3.0943263;6.0158377;1.6707346;.1121732;52.106892 +.47306886;2.122709;1.0334697;-1.790383;-1.63335;.24197313;-.081377022;-.48566523;1.0258636;.80432218;.76428074;.8615995;.043847721;.20010984;1.0807191;.20912267;.97872573;-1.2663273;-.29945245;.45964116;.39622411;.42201215;-1.3495466;-.47928429;.82963681;-1.1239296;-.5261516;-.51770627;.90480369;-.039593853;-.10249633;.52316809;-.9965952;.51947826;-.65350431;-1.1361845;.69349074;1.1578287;.99117279;-.32232708;-.61356711;2.5271807;-.6225875;-1.757658;-1.0225961;-.33612517;-1.2388124;-.8410989;1.6914878;2.7260106;3.4184856;-.6506204;6.2179337;1.7085713;.78536195;4.1101618;-1.2623856;3.7074714;1.6360623;-1.7231951;1.1461918;2.4840708;-1.5322739;.26203254;2.4709427;1.2349943;1.973755;1.6077141;2.4722474;4.7183619;6.0764861;-.52594149;-.66190308;4.3900733;1.6798368;6.9692445;-1.1541601;-1.2901099;1.3692056;2.2189467;1.5131211;-.62216687;3.0306604;2.1655254;3.3872414;4.4614406;-1.277801;2.9958911;2.7438929;2.5096784;2.0059619;1.4547871;3.4275663;1.1492445;-1.0522134;-.4759607;2.9940872;1.1051916;6.0361753;.81922793;.28465775;2.2358522;1.8671994;-.45659497;-.16205795;1.0190954;.93334335;-1.5709069;1.8822564;.73006058;1.5590446;2.3682077;1.1320808;-.95721364;-.038620353;.5327931;1.7590402;.22185637;1.2694346;.58001643;.69144952;1.9924164;-.89494705;-1.2635145;-1.3090031;-.63343436;-.92496991;1.040705;.93365949;-1.8789108;-.10550303;-.25877589;-.83780259;.36074546;-2.1825221;-.085421555;-.35406676;.38568446;1.4442229;-.40648586;-.59620076;2.1345892;-1.3744348;-1.2687981;2.5920486;.32533854;-.4834646;-1.0188215;1.6624594;2.6142108;2.2060702;.86840463;3.4698384;-.41924065;-.44932875;3.3111186;-1.2968743;.66276753;.78185266;-2.0943458;-.0026559546;2.0200276;-2.2531028;.68238741;2.4068496;.21183899;1.4884279;2.3503435;-.4895778;1.5632952;3.9965715;-.67878813;-.49688399;.44288993;.67052507;5.9489865;-.24314475;.53638887;.59809327;.62405598;2.3022454;.5571022;2.6579816;1.0948305;3.0824883;2.7643933;-1.1336731;1.609118;4.47229;2.7207487;.52011013;1.7426552;1.1026595;1.1169635;-1.1418993;-.33516127;1.4056202;2.2331638;2.7825558;.85157448;50.048733 +.89297891;-.093741931;.54550719;.2622667;-1.0537115;-.59990191;-.76277375;-1.5663837;-1.4873641;1.428985;.72777826;-.048064306;1.573059;1.8527361;.59576255;-1.4552753;-.6734792;-.011409443;.6096037;-.65868717;.69359577;-.14877184;-.4246313;-.36198038;-.19345796;-.87136036;.44167888;2.3103466;-.5854879;.27479973;.60492587;.39485675;.6569851;-.47093141;-.7637381;-.2315321;-.65221012;-1.5155261;1.6996541;.11843035;1.4710906;.98345351;-.7069065;-.37275174;-.35571161;.48765495;.00063006696;.91949272;-1.6517909;-.22709447;1.7742807;1.4864508;3.588186;1.7237302;1.5904393;-.58058232;.49795407;2.7077222;5.7057257;.54965574;3.7750235;1.9394011;2.4866283;1.9084088;3.7941542;.57571626;.86880565;2.3634026;-.12321455;3.2425115;2.5781195;2.6521492;2.6659825;3.7118363;-.55151051;1.521124;-1.380056;.89583141;2.1432292;3.1369958;2.2876163;2.4532361;1.0026377;2.2875509;1.3049266;4.6582732;2.1573246;-.1488248;6.2645979;3.3534327;3.9659786;6.0553565;.95922983;4.2218199;.58743352;5.7322769;1.8752133;.35075268;1.6581819;3.3946216;.31624964;-1.0102563;-1.3145725;-2.5942409;-2.6826198;.43243256;-1.7276266;-.85080868;-.78132999;.14635438;.17613003;2.056284;.68854624;-.42775181;-.9092055;-1.3768442;.3154304;-1.1437591;.54863572;-1.9578162;1.264923;-.67882425;-1.112663;-.99846613;-.60780448;-.37376183;-1.0811031;1.6202184;-1.7531698;-.8647632;-.12213099;-.71727026;1.3653723;-.36276242;-.63048303;-.27606392;-1.2662218;.98636597;.87087095;.7567417;1.4907876;.57866925;-.14803432;-1.1033307;-2.36847;.72030091;-1.0609487;-.35213009;-.37988055;-.51383102;1.5212781;2.5547948;1.9602239;2.1419981;2.093914;-.44070691;1.5799069;3.08829;5.1207991;1.6533171;3.5846274;2.8270371;1.4599019;3.4667237;3.508888;1.7872616;.79267275;1.8999498;-.46366873;3.7589319;2.6667757;.40350947;1.3030924;1.6879245;.98680061;.56015301;-3.7580757;.35072505;1.2901647;2.3646576;2.0201786;2.8554318;.89100122;.065517463;1.0804905;3.2771287;-.62615722;1.3302199;4.1824651;2.27739;2.495297;4.553638;.19937757;2.7640712;-1.0020792;2.6484039;3.4953279;1.191138;-.06196985;1.5777845;51.190311 +-.63337678;-1.1732653;.64080125;.3527737;-1.1874657;-.92526376;.28329244;.5846886;.62384242;1.0021355;-.1659278;.06756115;-.57389605;-2.0164924;-.38636443;-.73413312;1.7990607;.80865073;-1.8802592;-1.3450472;-.22943906;-.067288339;-.48405904;.25111294;-.64972627;-.1901027;.52386171;.51941526;.18464045;-.64388061;.95033413;-.71893239;.011829993;-.0037453279;-1.2051358;.071142539;2.8549454;1.5415677;-.16164587;-.83584279;-.44212785;.021696106;1.6997843;-.87000692;-.086577475;.096762598;.71741372;.61528391;-.89009297;-.45811638;2.1000078;-.45636323;3.7043335;3.187676;2.4346757;1.0330501;.20138779;.23766001;2.3935573;.67363119;.94249821;4.1174026;2.3843019;4.5925016;3.7180142;.67734593;2.9549508;2.9006531;.67237854;4.3854508;2.0669386;6.0008392;2.7402608;1.8141836;-.026699267;-.76602012;4.3786416;1.6722895;2.3112931;-.64674073;.74223769;2.5282001;3.0017781;-.10966755;-.21798319;1.8988189;5.2225518;5.4972534;2.8331847;6.9925456;3.0283711;2.4679892;-.85366136;4.2345419;1.5159467;2.6598344;1.0153784;2.3508961;.36839932;7.2680979;-2.3106833;-2.4382262;.15142654;.28659528;-1.8914753;-.95323747;.45896959;.17511457;-.38345417;1.6247733;-.91959888;.92782462;-.41286501;-.080292203;-1.760426;-1.2215437;2.4499609;.36215726;-.98664933;-.90185583;-1.302557;-.26614875;-.75458813;-1.211393;1.1600515;.56176805;.91541624;-.50079679;.83039659;-.88591582;.89608186;-.65342659;.98816729;-.51215851;-1.3233825;-1.3927245;1.7153898;.70426458;-.56696671;-.18860812;-.17400785;.23041095;1.8245343;-.36758035;.053778313;-.73261166;1.1939406;.23456736;-1.9663939;-.15308355;1.5750885;-.22127661;3.055635;2.0480361;2.5758615;1.1199855;1.5756772;.2015591;1.6066331;1.7947067;1.2806327;3.6219261;1.8374791;3.5119469;1.8827757;.1374089;2.4432282;3.1519792;2.6052294;2.9777703;1.6819574;5.1402669;-.19738135;-.68252623;-.21835163;-1.165411;2.8613737;2.0054767;.16423635;-.9380455;.70430106;2.757977;4.0327592;-.87030494;-1.0368395;-.68439192;4.559968;2.7935853;2.7009194;2.946485;2.6882987;2.1209121;-.58261055;2.577646;1.0768309;4.0179987;.39975336;2.9396012;-1.4863704;5.3149147;52.236317 +-.71724325;1.4695934;-.88691223;-2.2133641;1.6122217;2.0081458;-.49039438;-.89396173;.69618267;-.21538201;-1.9139657;1.2435098;-.13714804;-.56845677;-.57339305;.62560332;-.022901915;.65138763;.13979447;.34920523;-.17600347;-1.2537602;2.053153;-.99586213;-.9975456;-1.8285954;-1.009662;-.59598184;-.57525957;-1.7417991;1.7522585;1.9591578;-.48563188;-.25745067;-.045794502;1.0170461;-.89735812;-1.1228091;-1.8057095;.65614873;.51518482;-1.3968463;-.90016329;.77550495;.60931581;-1.8269165;-.72899073;2.5005026;.92579043;1.4909619;2.3938603;-.8908844;4.9075356;1.0100019;.14905226;3.7790487;.53100306;2.1240547;3.8283873;.84823054;.57084364;1.5547885;2.6441619;1.5132098;4.2068548;-.1371516;2.3224247;-.2889103;3.4101577;1.8942006;-1.402871;-2.5183954;3.5594769;4.0361447;.92419022;-.5359326;2.9991293;-.85540944;3.6670163;4.2926545;-1.0631558;1.7035556;1.8235716;.85297376;3.9155011;6.5267191;4.2281604;3.403511;4.9307551;-.52237064;3.3042929;1.4968607;4.2257414;-.66012686;.76694918;2.570904;-.82248753;2.9779766;-.48226178;4.2348537;.4661653;1.0895174;-.014263745;-4.3297033;.15074995;1.6618158;-.11703014;-1.7640424;.60623765;-.87134051;-3.3047223;1.1552632;-.061870608;-.71646821;.51599908;-.073779747;-.79668319;.41213092;.57232636;.83888125;-1.3903739;-1.6879717;.14314975;.84280032;-.90359515;-.84993905;.53465998;-.31775233;-.64264154;-1.6536525;.86330092;2.2057989;.019655;1.8432201;-2.1161015;2.288389;.82085562;-1.011652;-2.1688869;.81094033;-.20691249;-.77526492;-.9444899;1.2351387;.59572428;-1.1841125;-1.1247869;1.4858353;1.4652387;.93161428;1.2909814;-.53372061;4.9201069;-.48597497;-1.4144919;3.9181826;-.076680355;.21549632;3.3683472;1.7583444;1.0533804;.9863112;1.3470589;-1.6962534;2.1579559;-.36841679;1.7358941;-.84426761;1.8580726;1.5680108;-.94453335;.21741097;1.3622134;2.2624328;-.76681387;-1.1972302;.17278299;-.74605733;1.809134;3.3514745;-.53054273;1.7408848;1.3069708;.37296164;1.8672295;3.5737183;3.6480582;3.3892493;3.0065272;-.47674683;1.2629331;1.1668575;2.4253914;-.88729113;-.039362859;1.1480235;-.0001816859;2.5840893;.12000275;3.5379217;44.871849 +-.50436074;.34266928;-1.0217557;1.0469708;.37281728;-1.5521495;.87577951;2.168262;.49908817;.73864353;-.19707844;1.3761026;1.506116;-.95309985;2.0552788;-.32403547;-.34734854;1.7938269;.85944146;3.5229499;.79982471;.86993861;-.28217718;-.027517173;.53581387;.57231587;.2489052;.17386955;1.0256042;-.42284706;.81102264;-.086908571;.4874672;.12621623;1.2685065;-.52794296;.13055968;-.65762001;-1.0487708;.47006446;2.2620928;1.5701579;-.64171523;-1.6432199;-2.1397753;2.6188509;.88777798;.017664589;-.13209711;.87812871;.99870521;3.4017012;-1.8850571;1.7058052;-.40882316;-.588714;3.1668174;-.69408965;.5245198;1.495373;.013566186;.023392575;4.7655635;4.1594753;-.35576156;-1.95011;2.8728147;3.5788145;3.2572696;1.6747658;-.57072967;1.4926345;.035389096;.45019424;.45895055;1.2718524;-1.6447833;2.8031006;-.85894942;2.5203016;2.3396406;3.7289379;1.6421938;.38633129;1.0290545;-1.5680722;-3.3078589;1.775447;1.9195894;.37804434;3.4313126;2.4197628;5.3209319;.9506045;4.1492524;3.7438877;-.71176618;-.57303143;4.7748947;1.7009447;1.048103;-.72287875;-.46711889;.6542384;.65483636;-1.3827779;-.85046178;2.3238873;.22300892;-.4232578;-1.3242165;-.56686193;1.3499997;-.25850463;1.0135589;.95010561;.66648841;2.9860549;-.069955692;2.4560671;.29460055;.83364868;-.17220584;-.54450208;.29806966;.42055765;1.7736356;1.1560819;-.33914408;-.15053909;1.0080318;.12649162;-.25475326;1.7723964;1.9381852;-.98646462;-.30161574;.77192909;-.96910948;1.4614875;1.6603782;.95003134;-.28178042;-.58224219;-3.3539267;1.5971142;1.7117803;-.20153813;1.2068568;-.38569638;-1.8725737;2.9205887;-2.1598506;1.2782999;.15985836;-2.6911609;3.0655124;-.65004951;.086594656;.40291825;.83207864;-1.6582747;5.5455875;3.1502569;-1.4222718;-.67997766;2.0496712;4.3144894;2.4273081;2.6299555;.69187641;3.1380899;.53934234;-.63730985;.26825395;.7767905;-2.1260889;1.5370984;-2.1403813;1.3451554;.88189393;1.6802171;1.5390531;.37089241;.28623751;-.7098487;-.70107794;1.3139544;1.4988861;1.8847722;2.2724223;2.5404744;3.2384424;.23747018;3.5678127;2.5815592;-.17485531;-1.6529942;2.7973936;.87372887;36.397789 +.023856696;-.96443343;1.1020283;.78481174;.28962043;-.51253051;-.594037;1.7264979;.68255603;-.35728297;.87667286;-.82559144;1.6616859;-.75079894;-.16663334;-.30367145;.21510249;-.034568232;-.027136335;1.2697018;.47660676;-.8387568;.38233036;.73487103;.19298956;.69042569;-1.1044383;.66207725;.57030052;1.7846071;-.2329679;.059307855;-1.110522;-1.4411576;-.040554401;-.58669233;.46354789;-1.0034313;.53375787;.85095692;-1.5115041;1.431816;-.038882703;1.0725025;.58617586;-1.0485287;-1.2693681;1.0385578;1.0183657;-.9867714;1.7416745;5.0343804;1.202301;2.6385646;2.6759808;1.9100426;3.3727338;4.9778619;1.6700975;-1.0139434;2.948591;3.1934631;4.0013084;.076276012;3.406101;1.9025514;-1.1912311;4.0068851;1.9211378;3.8363516;1.5778269;2.7642002;1.9311825;.53091979;2.5820208;-2.489665;1.5323932;3.295784;.64566314;.25708038;-.36722228;1.3610715;.67434347;1.3767687;3.0884733;1.7476318;3.5365098;1.1362773;2.7474577;.72133529;1.369256;2.8749917;-.29095522;.33911514;2.5262949;5.2857466;-.66859442;-.308442;-.75641382;2.1231413;-1.1110159;.48709092;.70117027;-.041013796;-.72651327;1.0161023;-.86352581;1.4695115;1.4251649;-.57847327;.17271015;-.25250688;.29446411;-.66511816;2.7471302;.61454701;.82356197;.050979752;1.6227164;.090766549;.041512314;.020626493;.88847232;-1.3684218;1.3518193;2.4403234;-2.1394112;3.2989564;.28612289;1.8185166;-1.1891428;1.3477733;.024461711;-2.2179222;-.33470538;.4615851;1.3427624;-1.2603285;.48441961;-.30262712;-.61338383;2.5609183;1.0315466;1.3462499;1.7386314;-1.3795811;-.14332162;1.0311345;-1.0921953;-1.1249266;.35051993;3.5651608;1.1641089;3.0995977;.97419715;2.1299326;2.3323555;2.3857672;1.3174311;-.20813812;.79644853;2.3602347;3.4887738;.65809715;3.2143905;2.8008637;-2.2968793;3.3074617;.99261647;1.6563791;.60239172;1.891481;1.2716419;.032962143;2.1307375;-1.1208806;-.42838675;2.850035;.19068578;-.85295832;-.95406616;1.5097069;2.3411038;.4949185;1.7297279;.26018041;.93142217;1.4707003;1.0656548;.39105478;2.2200756;2.6536007;-2.4293678;.31927836;.43766934;3.1022463;-1.3403126;-.62704939;-.094592817;.9287619;47.677387 +-1.3767678;-.83718163;-.2117575;.99067944;-.39738345;.89669293;1.1025798;.26366609;.58266801;.72076911;.48499936;.79181886;1.1310387;1.3483776;1.4155523;-.015897173;.86452711;.61502999;-.25531447;1.4829466;1.613485;-.06031115;.11571227;.73398429;-.60912031;.50835752;-.16500103;.87650698;-.5071454;-.71727914;.15788254;-.50620669;.26245674;-.037846658;-.83916646;-.52127534;1.6352513;.068735868;-.42740667;-.5144676;-.080010854;.44902769;-.80244768;1.149546;1.1274031;-1.1784467;.013025183;-1.051363;1.6488357;-.84425956;.38285059;-.5261243;3.47084;3.5520241;-.27546477;1.0084727;2.0246453;3.346385;1.5947777;2.1943944;3.1165781;3.243995;4.6912131;1.063513;.44847438;2.1394272;3.7905767;5.8638878;2.3250957;2.2301657;.58364713;2.4779155;-4.0583749;1.7385191;.12351903;4.8295569;4.3276944;2.8563793;3.6169658;6.6112442;.8673467;-.080071472;1.0777588;.75717413;2.3718982;1.3528357;1.1552681;4.6824584;-.49796316;-2.1709917;1.1321701;2.9732475;1.3945854;1.9988791;.92869794;2.2458367;.96472603;2.4433146;-.49652216;.94104445;-.72469068;.17837277;-.45056167;1.2055353;-.2934978;1.8029721;-.82488185;-.17873631;.040551342;.85507089;.0092947418;2.0710831;1.8370091;1.7902836;2.5919161;-.13634917;.99376535;-.77395672;-.19749004;1.9054836;.89414585;.98199445;-.12123456;.8543812;.54336643;-.55382603;-.53449333;1.7866399;.020452596;2.1631906;.68385386;.1323588;-.45152751;1.0942137;.43104616;-2.0314131;.08693891;.015742049;-.11902539;-.72373509;.15095533;-.49385762;-.040336341;1.8818691;1.6366662;-.82542163;-.74686557;.040287115;2.1039839;.56218058;-.047847778;.26225525;2.7535694;3.861737;.41109079;1.0750507;2.017977;2.6118631;.26704651;1.9875607;.21803373;3.2595463;4.0048113;.3274996;1.0499407;2.300247;2.1858923;4.5595226;1.1812907;.53898627;1.0813655;3.8405757;-3.5014784;.47452363;-.42105281;3.2390263;2.693655;1.8186215;2.1991827;4.1441488;.13809127;.059654117;-.81806052;1.9733493;1.7109573;.98589814;.92179018;2.4134617;-.63144255;-3.2452366;1.241721;3.2833352;2.2416506;4.8830628;1.108112;.87340719;.56304401;2.3642445;.03370107;1.216043;54.680923 +-.026296981;1.1725863;.40636629;.45764527;-.69650012;.59496003;.24358997;-1.20597;-.75412112;.013207009;-1.3273309;-.33351418;-.10262993;-.51742136;1.7076244;.84751141;.060686242;.12644319;.0016327308;-.73899734;1.5248011;2.4487317;.42222294;.96378422;.7162618;1.100265;1.0137312;-1.885783;.27240294;-1.2282946;-2.0280178;.3559899;.21340498;.79057425;.95868367;1.8146485;-.73997414;1.1759274;-.062848181;.36338869;.50244963;.28361028;-.27383459;-.79195988;.86728334;.52230734;-.79644889;1.5600802;.43147588;.16615048;1.3008332;-1.2298344;-.31447059;2.5586543;2.3883543;.9534263;2.7556753;6.1785507;2.0001619;.32770771;4.8784828;.30308044;2.6896579;.1912138;2.3120656;4.6438398;.24962646;5.8898191;3.3710663;2.2795205;-1.0097444;.6147812;2.9658706;4.3138466;2.1754355;3.9409449;1.2446889;-3.4265051;2.4992909;1.3924555;5.7003188;-.014969251;2.6022766;-1.3900204;.75676787;.93383753;3.493957;.44078869;3.5049803;4.572875;.50828832;2.7670929;1.2079304;.19573671;2.1066604;-2.7200274;-3.8142271;2.608331;-.55858546;.78353608;-.96822846;.69093013;-1.543028;.33732128;1.0849922;-.78784531;-1.1401581;-.75426698;-.6147061;.6000309;-3.1121721;-.0041054268;.84065366;-.85102934;1.7057574;-.12056004;1.5739917;.45298266;1.2921655;1.1441479;1.0438436;1.6912962;.38724828;1.5114633;1.8134066;1.420351;-.73998404;-1.2097104;-.04197662;1.7991339;-1.6704409;-.19830464;.52188551;1.3637571;2.5738113;2.6308143;.96887922;1.1528749;-.20527789;.62224931;-.80008495;-.53278136;-.36637151;-2.310689;-.058831502;.59843224;.1552185;1.0919355;-.90898317;-.20038474;1.9092705;-2.1868746;.23203197;1.9890847;2.1389182;.70262825;2.9687405;4.1433711;.17411806;-.55221552;4.1262531;1.3419703;2.7575169;-.24200106;2.582196;3.0654042;.66389799;2.9929509;2.6355114;3.0652795;-1.3267742;1.4964334;1.5813533;3.3620508;1.3887842;3.0337367;1.0190942;-3.8756983;3.2393293;.7370348;4.0309849;-.17831931;1.5223312;-2.0945864;-.026522208;-.5725112;4.3611526;.70260501;.6081211;4.809967;-1.187536;1.0720584;.07632532;-.68040073;2.7092161;-2.6574969;-2.6329846;2.4670384;.57024288;-.98290527;44.34753 +-.27724722;-.62727177;.26280686;-.12664406;.41315931;1.3067969;.45598942;-.20085582;-.34358397;.30007395;1.2595477;.20387104;-.29475704;.95013386;1.3229773;-2.171279;.48856768;2.1871638;.028466597;-.53605723;-1.0943929;-.2072192;-1.1151239;-.303664;.3402662;-.65190339;.66534555;-.078229874;-2.0287464;1.5223532;1.7394075;1.2298141;1.5656558;.175671;.032795232;-1.2557894;-1.173952;-.26894948;-.79417235;-.079203069;2.1618605;-1.3985002;1.3345228;-1.5112492;-.043868411;.35040104;.41064751;-.5599612;-.013128058;-.51754677;3.3268137;2.1871326;-.76961088;3.6779363;3.1033895;4.0030875;4.1488643;-.09497565;4.566339;1.1162835;4.8743782;-.64969558;2.6382258;.58598959;4.2394958;3.2807951;.9360714;2.823524;.55153173;1.6254389;2.6372097;1.0104375;2.7380176;.07060425;1.8196141;2.2420664;.094920725;-1.5735847;3.8172042;1.3386879;-2.0454516;2.1525817;2.8229437;.43168014;2.762851;2.7769103;1.2328336;4.7047653;.4364965;5.4284391;.067546658;.62233335;3.2379069;.8054381;4.7254891;1.9455512;1.7137454;1.8032197;-.7883001;2.2703564;.035646599;.45241758;.23716941;1.881385;.53420007;1.011891;.095037133;.95109481;-1.3221451;-.013167645;-.49326783;.70499957;.84137517;1.0422846;.20298116;-2.7946746;-2.6840358;1.0579748;-.37919009;.80315077;-2.0378273;-.22587089;-.7366277;.19704168;.89659262;-.98919624;.60661179;-1.2523849;-1.5972141;-.65679783;1.8654406;1.6749721;-.43384263;-.51823497;-.35910669;-2.8172557;-.21705551;-.076578848;.49090445;2.0535831;2.2879608;-.35274094;2.791471;-.69301087;-.084223859;.1805836;-1.6961608;-.39677283;.82585287;-1.9931941;2.9708719;1.6583688;-1.3915203;3.1037614;2.635056;4.6288624;4.6208968;-.17040201;3.6700208;.58838552;5.3527641;-.6963647;3.2776999;.98876286;1.8341905;1.6849482;.29458141;-.4972949;.26483122;2.6523242;2.3730915;2.1256652;1.4512948;-.60151458;-.60619092;1.1147137;-1.165543;.027687771;3.1149597;-.98729897;-1.8729903;2.4034801;1.8383886;-2.0780802;.63092613;2.5486994;3.8423893;3.4768269;-1.603967;3.3217859;1.6851218;.1566963;.65758818;1.1408679;3.9237678;.99951118;3.7878578;1.2890978;-2.288954;1.115634;49.488869 +1.2469318;1.0780034;.73640418;-.49741226;.56639594;1.6396852;-1.213567;-.79294324;-.64026463;.026880881;.30988339;1.3131552;-1.2613553;.7303673;-.81338042;-.42707035;1.5650098;-1.1174036;.77137768;.53540683;-2.2317145;-.25227529;-.98998052;.50236833;-1.1310787;1.0917732;.25260258;.19287032;.64661032;.047752522;1.4580576;.56679428;1.4710217;.28930113;.76504582;-1.5208514;.29499936;.69255781;-.32808879;.45539123;-1.395582;.61104506;-1.0999042;.43928337;.98212385;-1.1205841;-.70424443;-1.5609193;-1.2617764;-1.1321249;.86394233;3.8986716;3.5625503;1.1070334;1.2214185;3.4630935;2.7618213;3.9385536;3.4019651;1.3503246;-.53125685;2.1802101;3.4349167;.94756043;2.2394447;3.800791;3.3746815;1.828681;5.1160331;2.1901624;2.5897248;.9529714;3.5222821;.8576653;1.2778312;-.72581381;2.322278;2.4865389;3.4469547;1.4080329;3.0551884;3.1349471;5.5196304;-.56571347;2.7683504;1.3511044;1.1922848;-.043354038;-.30113792;1.6840391;-2.2339964;.30498672;2.7871401;5.6931601;2.0505855;.54819435;1.7771486;1.2853478;.36028093;1.1755337;.84021091;.9469291;3.6655746;-1.3596559;.85905552;1.4733659;-.52273494;-.55608886;-.67550194;.62066114;1.2009501;.5225116;-2.0222254;.96032965;-.88504905;-1.4400176;.032289725;-1.0531522;.28765091;-.27329078;-1.4804255;1.0313371;1.0055277;1.1892681;1.6366706;-1.4560114;-.061154757;.58219326;1.5028279;.66911018;1.4846277;2.0054715;.038946327;1.9051106;1.2285153;-.19153193;-1.1575776;-.11367977;-.90766835;2.5315597;-1.8539338;.07678204;-1.0042536;-.2305949;1.2892916;.3712399;-1.2349925;-2.3524721;.70785093;-1.8176681;-1.1627342;2.4379833;4.0768228;1.4690033;.87456077;2.2967501;.59423476;3.9631956;2.1474848;-.16285674;-.38429886;.57499993;2.2304459;1.6287162;.84558225;2.2818775;2.235693;1.0458724;3.757194;2.5013535;.10026724;1.1030612;1.4657056;.87123185;.29288581;-.359431;1.7406373;1.6960856;3.0857852;-.36597207;2.4574418;1.4221783;3.8967528;-.090742774;2.9217603;2.817822;2.1512792;-.27478498;-1.0738299;.27668434;-1.8416762;.10878474;1.1675144;4.6068158;1.3482255;-.58660597;.4741101;.85144067;-1.770772;1.4667598;53.272724 +-.3692908;-1.4072043;.53315526;.37741974;-.043671578;.78075784;-.46809909;-.14279534;.18304986;-.55330986;-.19519086;-.23170902;-1.6386765;-.52392411;.19718432;.88259572;-.97655177;.654167;.96430248;-.4728213;1.1772686;1.1910254;1.3938798;1.3778545;-.28872088;-.056108449;-.043268509;-.069941401;.61570907;1.5801246;-2.1249175;-.06897606;1.0106846;1.4254502;1.4730036;-.60529852;.9925186;.22154965;-1.0566369;-.26675537;-.48504171;-.72468323;.46104872;.0083067976;-.84962237;-.51005971;.92825407;.18925346;.84238845;-.60567647;2.2974508;4.8037181;2.3875246;1.8534641;5.5734706;-2.2957089;3.3725505;3.5895078;1.1360614;.45427787;.33944336;3.6309164;-.7157163;1.4677926;4.0203876;2.3748639;3.5793242;1.2626657;3.1453161;.66152298;.78815365;.92312264;2.6175249;4.0942621;3.1627817;3.3434949;-1.4464278;2.9116888;.90487623;.30517671;1.0239716;3.1736202;.23587489;2.6965158;4.4434462;2.6911414;1.6588891;.86173624;1.2543567;-.92698449;3.0503442;2.0276759;.6795181;3.2573357;3.1439917;-2.6194818;.80353779;2.1258326;.81168878;3.8196764;-.98882806;-2.0169191;1.5006369;.84402072;.68007052;1.1118383;.0086886855;-.49912623;1.5068383;-.86512476;-.51858884;-.11074069;-2.4590073;.9066937;-1.2390115;.54566485;-.065770254;.89011681;1.6172301;.31492227;1.3424211;-.080717683;2.8776143;.23053795;.87672132;.62130022;1.0597125;1.4613944;1.1291169;1.0253515;-1.4187969;-1.4814641;-1.2406112;1.487775;1.0743643;-.75424117;.68098527;.63262373;.1241704;-.80248576;-1.3657572;-1.7634318;-1.3032068;-.72781634;-.46365273;-.28780314;-1.2447277;-.20103568;-.23349251;.048385832;.0035339743;2.7775838;3.8630207;.87849325;2.4779706;-2.8119371;1.1503143;3.5106459;1.161921;.19788639;.97854042;4.5328579;-.27128047;2.0458543;3.6445484;.52973717;1.1646439;1.114692;2.498373;-.33084974;-1.7100657;.16606687;1.4675021;4.6261148;1.968459;1.6268476;-.058904838;1.1941262;1.6996948;-.88510185;.3349044;3.5282772;-.067431338;2.0465999;1.500017;.76454479;1.1706074;-1.6428264;2.0274913;-2.7805033;1.9509201;-.66789562;.0020180496;2.7773445;1.9680537;-3.4862218;.2809979;.81552422;1.0090594;1.9397882;55.635426 +1.101123;-.31059477;-.71044827;.5231877;.57084066;.53334445;-1.3211186;.20873465;-1.3103527;-1.1491011;.76425689;1.0080416;-.27535164;-.74060023;-1.3110434;-2.2179379;1.2660035;.98699325;-2.2103;-.43633524;-1.530688;.82527226;-1.6600363;-.3387439;-1.9197334;-.38750383;.61180884;.55158085;.29595712;-1.3808603;.51752925;.68245465;-1.2836989;1.3352731;-1.2661319;-.038009375;.86880469;-.36188325;.59272969;-.18301454;-.10249811;.47969994;-.96833086;-.54917878;1.252779;.92571211;-.019576674;-.6742186;-.27891976;1.0344434;-.80764771;.67792606;3.353848;.99926573;-.84420699;1.99507;.44892451;2.4134824;.0095420163;4.5013456;3.0543296;.99334067;2.1821988;4.5660839;.093138099;1.8506017;4.3516841;3.0095556;.61055303;5.4877119;3.6741014;-.60098499;.86614543;4.4089308;2.9942484;2.4880192;2.423094;7.9636831;3.8736889;.51871747;.53088295;2.4580894;-.83737797;1.2900424;5.214673;2.8648615;1.2153388;2.755414;-1.2124354;3.9836957;-2.9836755;.36973214;-4.2799335;3.2124476;2.2300689;4.0168986;3.1045244;1.4751639;-1.8535833;-.37193969;2.7836316;-.65748715;-.25109622;.62292868;-1.102529;1.5507737;-.64270383;.23501891;-1.7950596;-1.4430233;-.64488369;.57153904;.72543323;1.0523831;-1.6604319;-1.1802578;.66916597;.7108478;-2.3283594;2.0466802;-1.6020696;.73677945;-.35136461;.18060733;-1.7652551;-.5826354;-2.1812866;.59135956;.7586109;-.65664518;.47878304;1.1558443;.033100862;-.91605324;-1.596294;-.96839303;1.6451849;-1.8625555;.64572895;-1.0286751;.41681373;-.72355634;.25650942;.60362542;-.80107206;-.64264613;1.0155755;-1.5128223;-.7596432;-.72705048;-1.0162168;-1.2400706;1.3758389;1.9467177;-1.2922033;.4822292;-.3964428;2.3041544;-.05713889;2.1937032;1.5871887;1.3902562;1.3303236;4.8024149;-.015214912;.74331415;3.2029378;.620821;.14436817;2.3542924;2.7106543;-1.193899;1.5788592;2.3444021;1.3182315;1.2437149;3.3790791;5.2616491;2.2695527;.25239128;1.4858551;3.2089951;1.1519917;1.2316931;2.6743312;1.9545658;1.0795544;3.112932;-1.0930108;1.7107184;-.95159209;1.1470127;-3.7717564;.12346652;.43451178;2.5047157;2.3010318;-.41945219;-1.8353748;-.58699161;39.50082 +-1.2285391;-.91341615;-.24793442;.23625238;-.69638461;.97952253;-.46847928;.4077504;.89059013;-1.6806672;1.1006498;.92291534;.23108551;.2564778;.018845452;-.025505725;.37011534;-.021151332;-1.1117064;.75771421;1.5318503;.26863128;-2.5193236;-.61182719;.81922263;1.5854477;.3184444;-.13065243;1.1595078;-.79947162;1.0468628;.22736624;-.75519747;1.8448263;-.31607857;2.0516655;1.1770246;-.82259816;-.74750388;-1.2774552;.28935599;-1.514588;.014315901;-.33240584;-.87259156;.43077385;-.59733611;.96429294;.14650773;-1.5458872;3.3948743;4.1317692;3.7978919;.6043936;1.5349702;.24782985;-1.6138893;4.5870795;.26642597;-.10538471;-.31913263;-1.8671149;1.4366051;-.13819042;1.3232802;-.50731486;.98483747;-.9197849;1.3317592;1.5335764;1.4836227;2.4325209;-.71797109;-1.858332;2.9108808;2.243372;3.4411132;1.0590916;2.437639;3.9162803;-.53102994;2.0498102;-.060870338;3.3854551;-.86445034;5.3531976;1.5386162;.96309668;2.6557801;3.6874897;2.622699;4.4853711;.14657114;-.70052302;4.774869;2.4379718;2.0065222;.11958393;.62879068;5.306952;-1.1958947;-1.5305132;-1.9481337;-1.0719657;.77525043;.26773596;-2.1825254;-.35210347;-.72137266;-2.0206964;-.16027837;.91331315;1.5553156;.30340779;1.7759746;-.071996696;-.11522345;-.32946897;-.29827502;-.92465448;.63288814;-.20293461;-2.4202721;.1571241;1.8232439;1.6670461;-.88080013;-1.5185788;.11976387;-2.296036;1.4699835;-.73934335;-1.4782785;2.6598771;-2.1109586;4.0203395;1.6792964;.18692359;.0369872;.68524247;.55096418;-2.1370096;-.31833124;-.8516044;-2.0931718;.19638829;.50627881;1.5020306;-.85813856;.28479266;2.7437911;2.5618477;3.7369382;.47783387;1.2723505;-1.5846803;.87773919;3.5188518;.023486769;1.2858354;-.49984846;-.94900483;-.57130617;-.078667872;1.66075;-.27845007;2.2250896;1.2588346;.66758555;-1.1599877;.10748024;1.3541318;.032922596;-1.9949832;2.4690406;2.0088317;-.46119413;-.41374037;1.5243508;1.3611189;-.10778049;3.6234353;-.56698573;2.7987766;-.23221081;2.974221;.72796059;.40261832;.24135368;2.5244217;.79010266;2.946898;-.0064565125;-1.9780552;2.2578492;1.8985798;-.44047225;-1.3671873;.21887954;3.3360641;37.520447 +-.29978153;-.11342236;-.2493894;.81257313;1.7334158;-1.3037466;-.061790224;-1.8778408;-1.0720153;-.44285083;-.14266159;-.46691862;.17353779;.098132215;.089454867;-.89519119;1.0167538;.27852744;.64914346;-2.8128507;-.42459694;-1.2283261;.61783129;-.70242733;-1.3492167;-.26875237;-.63519472;-.15407036;-1.1529744;-.89866668;-.10196815;-1.0717354;-1.6890922;-.37104258;-.43439567;.79537785;.54456794;1.271262;-.23024909;-1.5106293;-.47960883;1.3423904;-.70995104;.19095413;-.22903828;-1.1896201;-.68858832;-.47489616;.61904061;-1.1779531;.28138852;2.2453301;2.7325604;-1.8828722;.72952658;2.3359232;2.7377;1.6351877;.90304583;-1.5597314;2.3198104;3.5606034;-.39851901;2.368392;3.9516027;.078683466;3.5455263;1.6188513;-1.2487171;3.3195648;3.4683509;-.3298721;2.6649504;2.7054243;4.2015877;4.8273454;2.5820284;-2.1977491;1.7107052;1.2378745;4.6330743;2.0663924;.51064014;2.7302921;-1.6234483;2.8570242;4.4370494;.71504378;-.82125151;2.0473654;1.1489043;.11521108;1.5454574;2.4158525;2.4102921;1.3805985;-1.1245883;1.1631569;4.2473903;3.3075809;.043769699;1.2373507;1.1583704;.43020436;2.0895836;.25631937;.86835277;-2.3844488;-1.2977451;.36180079;.23585676;1.2689607;.38686404;-.9073512;.93228501;-1.0374615;1.4507904;-.45785651;.41632563;-1.3366187;-1.4465461;-.8941831;.1879701;.23525847;-.37970388;.1478774;-2.1065259;-1.1577495;.084570825;-.80790913;.16763341;-.45974129;-.29809842;-.41545972;.083097719;.69037485;.22430365;.47998348;.44587594;-.50736111;.43938696;-1.0099915;-.41076052;.029256025;-1.1775178;-1.8411;-.77440357;.50448716;1.519771;-1.7202085;-1.5737261;2.2260833;1.2019986;-2.2342227;.77451229;2.1321471;.80682647;2.450294;1.8184897;-1.1375214;.67069674;2.1823361;.54019153;.41799068;2.1727579;-.81697077;4.0560608;-.31847215;-.016857458;2.650105;1.7430487;.0017301266;1.712508;2.0022528;4.7767234;2.8581071;.60827768;-2.1795981;.29334122;.58555239;1.7311971;.6862216;1.0410051;-.36308816;-1.6919954;2.3498824;3.155344;-.086524978;-1.7530887;.68794429;1.4489175;-.2313201;1.6714441;1.3391168;.78461272;.80749077;-2.329946;2.2928197;2.7159276;1.8537209;35.675728 +1.218272;-.85937411;1.4070071;-.22581267;-.2818583;-1.0463382;-.40596473;.69702619;1.4195607;.48127267;.49314776;-.81388122;-.10368375;-.10846136;.65183043;1.5761708;-.85840929;-1.4863125;-1.0432843;-1.4619447;1.197365;.49911565;.32949603;.55637634;-.23488143;-.070466392;.84289712;-2.1194212;-.56193417;-.32533267;-2.2374327;.69833422;-1.434935;-.86423033;.0094058421;-1.1557966;1.4880415;.082134977;-1.0486859;-1.3198471;-1.3548419;-1.0470569;.12514418;-.39811903;.96217859;.72138178;.81440449;-.072437376;-.98673272;.44591323;3.9470313;2.2287359;2.4450517;3.8307431;1.3615366;1.1929413;-3.1088359;3.2070146;.64618653;2.122849;2.0068684;3.7776508;1.8036139;.016581286;1.615959;-2.856643;3.4442368;-.0030944988;2.9040225;.44265276;-.51847297;1.8772645;2.3176548;3.1762254;-.19627956;1.6465572;1.7122149;.16926588;2.1387155;.11742232;-.53788137;.75873697;-.50946581;3.9562011;1.6841999;3.499635;-.290005;.99007487;2.4491713;-.20301259;3.634949;1.510695;3.50442;4.4882455;3.294179;1.1458685;3.0533545;-.67422622;6.7392764;3.1122558;1.3439196;.18319151;.23100789;-.56367075;-.12735149;-1.0134784;1.2155361;2.4385936;2.091188;.59726101;.88396996;.41578004;-1.3952435;-.13674282;1.419378;1.7671063;-1.2980276;.6118297;-1.5117443;-.39472854;1.2181323;1.2299626;.34707007;.14339156;-2.4036412;-.86573356;-.60909182;-2.6551793;-2.5346897;-.51009333;-.24847728;-.43607569;-.023500899;-.73467201;-.84592408;-1.9526658;2.4051704;-1.6184878;-2.8255563;-1.3939214;-.20349759;1.4450331;-1.7226534;.27881727;2.2748516;-.47412315;1.7078116;-1.2788776;-1.3373406;.79851395;1.9725926;1.235904;2.3191781;3.7070358;-.27311444;-.12287625;-1.4297928;2.3341315;1.5759405;1.2631204;.81471372;1.7562931;1.1041859;.41070622;1.4993602;-1.7632093;2.5798304;-.50166035;.9419902;.14451087;-.19654347;1.3676453;1.9418395;.097855382;-.28999257;2.7992229;2.2486713;2.7010076;-.068454489;-1.1357437;-.28135222;.71787208;-.40505481;1.633167;2.4696236;3.0881176;.80343604;.040102366;2.4222143;-.0044742497;2.8426089;-.9773261;2.9108944;4.234571;1.726898;.96994466;-.42115641;.1928205;5.4375596;-.077641696;42.87994 +1.3881886;-2.0469086;-.5142116;.53628898;1.1053292;.10878554;-.99968141;.66936213;-.16291377;1.3671775;1.9839435;-2.0263705;.6351248;-.39862037;1.1011109;-1.7808939;.84347928;1.6265448;-.049851581;-.77578282;.05163496;-1.2733086;.6291095;-2.674473;1.0817755;.77434021;-.54881549;-.39483109;-.2032005;.49377736;.14689247;.87369007;-.30863595;-.39451253;.12659441;-.87540579;2.1303177;-.11179376;.6002087;-1.5687953;-.46792269;1.4414004;.37014607;.46012837;-.12464093;-.27614406;.94892281;-.89752084;1.1124473;1.5275135;4.189661;2.3328841;4.5208049;3.4016232;-1.4163109;1.5761981;.44541979;4.1078706;4.2327256;-2.5733523;.20926198;2.6772227;4.4755707;.17151614;4.4027944;6.4742336;5.0172582;2.1169438;5.0879555;1.815625;4.6802111;3.8806422;2.4422796;-1.3386745;3.8992553;-.082162231;3.7680626;-.35370848;3.2261465;2.5000801;.20002806;1.5298543;1.6481506;2.1499836;-.92131108;.24508549;3.265841;3.0667427;-1.2722567;3.4397051;1.6410226;3.0461862;1.9285398;2.4910674;-.73437989;3.0129471;1.5147367;1.2989563;-1.436227;1.6888269;2.7287219;-1.4878337;-.59410775;.054697789;1.271193;-.60564882;-.26074359;-1.3450302;.34241387;1.1921904;3.0140228;-.15737005;.74169415;-.80873805;.099492878;-3.5534024;.27238455;-.11477572;-.01923568;-.38058731;-1.5248164;-1.1471236;.16197208;-2.4404216;2.7508996;-.68052208;.7484591;-.22926529;-1.0438596;.76997;-.52160895;-.94474936;-.91308433;.85439754;.79652238;1.2459244;1.2805276;.88126552;-.33501077;-1.2369777;1.5305002;1.3362129;.39359906;.13340566;.71307594;.86451948;-.067461535;-.89808834;1.6523957;.24280125;3.5397487;-.3386564;3.0870903;3.545198;-1.1283741;-.84407037;.25663313;2.6991498;2.8394582;-.46453354;1.1848322;-.31510967;2.0954411;1.1732862;3.5065167;4.6508064;3.2950275;.17595616;1.92532;1.2947536;3.0530176;2.9164536;-.33474299;-2.6162686;2.4235711;-1.7066863;4.1289186;1.6882069;1.4126927;1.1809597;.2933251;-.40811652;-.84389669;.90942144;-1.0610783;-.29852808;1.6974467;1.8289382;-.51856565;3.7146678;-.35753006;2.9452167;2.8010807;2.5685477;-.7358551;.90349996;3.5317998;-.28492281;-.37850609;.0005130847;53.720943 +.095223531;-.98438936;.67195517;1.0080483;.062539898;-.44463941;2.0650589;-.72648579;2.08676;.23765785;1.4647546;-1.2438027;-.54701257;.4926849;.62571698;-.87491304;-.86016673;.28500241;-1.7735198;-1.4958863;-.90199715;-1.1667092;.13791822;.29153329;-.074136756;.44286221;.0073191291;.25585261;-.26644126;-.84105647;-2.3490674;-1.0749854;1.0720234;-.07624352;-.41042492;1.0949814;-1.3049861;-.4325192;.1220731;.3370713;-.47069392;-.39180064;-.49754581;-.2477376;-.14762127;.82792157;-.40841636;-2.7017574;-.90687144;-.29298213;.97880131;3.7740667;7.3331852;1.1749985;2.8225923;.077854738;1.0158331;2.7419589;3.7568216;-.50105196;.66430253;4.2838607;1.712168;3.2793732;-.8147611;2.6870816;1.6013417;3.4596913;1.6041449;2.9775677;.60180259;3.3107967;-.19457328;5.0114174;2.9166708;4.5877776;.93751037;1.6280384;-.3422212;3.2325089;.942514;3.5863709;4.6215868;2.3120105;2.0500643;1.0462129;2.7606685;5.4613843;-.29069975;2.8133941;5.2404594;1.2369511;-.72571182;1.1071484;3.4817255;2.0642972;2.3855298;-.49084955;.5876165;2.0491188;-.77666616;-.16659649;1.1859503;-.055472054;2.0800102;-.5255639;3.200856;-.89399892;1.5469129;1.2104255;1.1368719;-2.5328107;1.5987003;-.17867364;.020314621;-1.2888113;-.91130978;.74746716;-.98165989;-2.7226408;-.31615517;1.0994818;.068999283;-1.0193933;-.80693281;-1.2428318;.17059712;-.83653337;-1.9130816;.20087969;-2.5310974;.7579236;2.9252048;.57414687;-2.2759638;.26376536;-.92692876;-.2615068;1.0556509;1.946231;.24598219;.95790744;-.064031266;-1.0598038;-1.1630371;.96972007;1.2310207;-3.2537603;-1.3825339;.23461197;-.23914605;2.6261482;4.1812735;.62618846;.76696515;.80657005;.49745038;1.6684195;3.2156458;-.81127012;.9955911;3.6672812;3.3366427;1.1960883;-.21861143;1.6643022;.64231497;1.6682763;-.69490629;3.3553667;.73579156;2.8775032;-1.1448201;3.7425044;1.3100266;3.0587256;1.2052559;-.29356459;-1.1801375;1.2867537;2.2926569;2.4257836;2.1834023;1.8226433;.38609552;-.15659364;-.19028507;5.3113694;-.26178709;1.7154839;2.5754244;-.1961067;-.66036958;-.044303704;1.6466715;-.8881951;1.309489;1.1388073;-.14825165;1.6357585;57.080433 +-2.3656566;-.70057255;-.92378432;-1.0682257;.21772388;-1.1008592;-.65545714;.25015604;-.14396732;-2.6971416;.78189391;-.22335848;-1.4109095;1.0335402;-3.1754785;-.85677165;-.44374013;-.19150443;.15422629;-1.5913254;2.3468273;2.9582462;1.5138724;-1.5316846;-.13385089;.98658496;.33665958;.3937417;-2.6429586;-.70383668;.24532323;.69789106;.11836226;-.81002164;1.1571703;.49523079;.70605212;-.70498812;.23498107;.87783498;-.454988;-.075073913;-.87634194;.9852525;-.24589737;.023583563;-1.023172;-.42299342;-.81298149;.65100604;1.3149952;4.6237779;2.6539478;3.5407438;2.0870833;-.40601546;3.7824619;-.73659104;3.2895126;-.08121632;4.3790369;4.5552435;-.25233567;-1.6742194;.20415176;.93739301;3.0144675;.48150098;1.2315458;2.1308198;5.5616183;2.6290536;.60431343;4.1847062;1.2874696;5.2735014;4.6788864;-.45007917;3.2864535;1.0708112;5.7764521;2.5942578;-1.4218464;-1.8647122;2.4610078;.85559636;3.1094489;2.4105299;3.7402136;3.7729762;1.8920898;2.6316416;3.4123034;4.1979117;1.690811;3.2391458;-2.2051866;3.2728648;2.9494679;1.3854953;-1.6425148;-.042215567;.91520691;-.48210302;-.047896691;-1.0525358;-.62854695;-.76191014;.39306211;-3.2795031;1.727484;.2991567;.048457205;1.6181722;-1.3919277;-1.6859361;-1.9609845;-1.6096445;-2.2038722;.35509148;1.0090735;3.9429586;.47537848;-1.8273964;-.036846027;-1.0259627;.89283264;-1.7130104;-2.6890483;-.53279579;1.0385746;.66630471;1.2271044;.5022524;1.4710056;-.045675453;2.4499497;.14157884;1.2646364;.57871389;1.6514835;-.04729706;-.47920406;1.1091622;-1.5968467;.054948945;-1.4589382;-.56219715;-.78962922;.6238268;1.3883319;2.1663625;2.5420842;3.2786558;2.6627247;-.68928242;1.7152745;-.020906344;2.7740841;.63781333;4.7998552;2.7795591;.84359324;-.67077106;-1.1090569;.69786102;4.1784449;1.4282771;-1.0048866;.8999033;2.1155558;.6588726;.75130904;4.3893228;.1489974;4.5749493;2.4847546;-.041409351;1.8127208;1.6777272;5.183702;3.9024222;-2.4043624;-1.2418253;.42678085;.0063483552;.37054366;1.295148;1.6616728;1.2435582;1.6119195;1.5285906;3.088753;3.1535931;1.2677515;2.821995;-.40986729;2.2787726;1.66715;2.4322121;49.693665 +-.74311572;.39306664;-.76510394;-.01796454;1.701745;-1.1001438;-.040461548;1.4305851;-1.1847395;1.2462649;-.61753827;.93941391;.53214276;.51763695;-.45391029;-.83144462;.71360129;-.16478229;-.74327207;-1.4471099;1.2724489;1.64187;-1.4664773;.032144658;.10319838;.94784522;-1.299751;1.2581942;1.1935167;-.18377656;-.700831;1.0110692;1.339184;.1105198;-.71487683;1.6557292;-.95791566;.73754704;-.14096713;-.82034969;-1.6237731;.40337148;-.84730965;1.142037;-2.1858726;.80986881;.36222267;-1.6780387;.62287575;.69367754;2.8591707;3.0888278;.77242696;3.1308811;4.5460434;3.0115788;1.9786164;3.2648144;2.277688;3.8362708;1.5054498;.95615965;6.9847174;2.0534647;-1.9002407;1.6902615;1.5380018;7.2284751;1.5483494;1.5818421;1.455345;-.28339431;.47463298;4.8871188;5.6884432;1.826578;1.1486644;-.388704;3.099386;1.0361842;2.8715901;3.7598526;3.6557436;-2.4255493;.44944519;.74026829;4.382493;1.9905796;7.4808078;3.5953431;2.6704233;5.158083;2.0888438;2.5662045;6.4484015;3.0511107;2.2329874;-.65455019;3.0880871;.65557611;-.96843886;-.34925684;-.092004016;.21976945;1.6732562;.058336139;.91961056;.56467783;.084649056;2.1162095;-1.0402181;1.8426746;-.01827009;-.074208796;1.8483833;-1.0810102;.80195969;-2.1524446;-.67464906;-1.5195239;1.5220305;-.15147509;-1.1785024;-.4817979;-.0071961796;.6293925;-2.2284381;-.022438958;.60780489;1.5877293;-.063835546;.34379044;.90068728;.0032427148;-.50049669;1.215435;-.68569368;1.0266931;.64941561;-1.3647306;-2.3656991;1.7339026;.071200646;-.53877437;-1.1035564;.080570057;1.2282354;-.99070996;-.77545953;1.0344152;1.0079664;2.2390366;-1.6722498;2.379822;2.6577859;3.328989;1.5475197;2.1459353;1.2842453;4.2152767;.86697978;.79341763;5.1634398;1.9885205;-2.7732399;2.5898407;1.2735037;4.1890664;-2.2258837;1.7134113;3.5990624;.46208706;.53108287;2.1784022;3.612541;3.3508351;-.20400663;-2.2428424;4.9949737;.22719419;.58772492;2.4173517;.52894837;-.97192305;1.7789841;.56589484;3.6068416;.45261705;5.7777929;2.0147874;1.126693;3.0689969;2.5407183;1.3033257;4.8361969;1.6691135;1.8076452;-.4875358;1.9801619;.27587453;70.740173 +-.23983176;.98477328;.72972333;-1.7353061;-2.5366836;.62678206;.078397498;-.004389714;-.91583741;1.4708813;1.0428731;-.54985428;2.1634059;.46610722;-.98584771;-.29073882;-1.9432801;-.34354949;.89345306;-.087061793;.42183122;.69627589;.59513229;-.3641302;2.9831038;.5819813;-1.1610457;-1.0151174;1.0612723;.75521362;-.90764385;2.1022978;-1.7776045;-1.1900505;-.48384464;.20036134;.30946985;-1.0015377;.36780331;2.0414617;-1.0055007;.3766551;-.69191241;-.2218938;-.45672333;-.39170143;.52368975;-.19497088;-.071146034;-1.2067239;3.243458;-.84653383;4.2645593;1.6615218;.93026209;3.1048524;8.8925581;-.80646878;-1.6357008;1.1388695;8.1930876;.077212118;1.7894791;3.3558214;2.5339074;2.9776549;2.5900047;1.520854;2.4042168;3.4572725;3.1332588;3.0065601;1.291375;.098615922;-1.1766455;1.4325052;3.8580074;1.987905;4.7485199;1.1094191;3.548702;.98230118;1.0848063;3.2981584;-.68306708;2.4907186;-.93003166;3.7773063;3.6062422;1.8295289;-.83233768;3.0146017;2.2242992;.2893289;3.3423307;1.402187;3.5744958;1.4872088;-.68701082;-1.7339027;-.74386859;1.0757383;-1.7569354;-.010547894;-.47587553;1.990978;-.95004636;-.10304485;-1.1005018;.40286705;.62945503;-.8884868;2.0154252;.71252567;-.048088271;-1.1665764;-2.4892504;-1.1284057;-1.1289796;-.5619415;-.18027706;-1.0215012;.89856696;-2.3359194;2.1906841;-.04463606;-.32107636;-1.5507704;1.5002882;1.4872589;-1.1193132;-.89117807;-.3945401;-.12240779;-1.3971747;-1.3166193;.089569226;-1.9364492;.086220175;1.843909;-.067335732;.026802219;.40224147;.036417738;-1.8107914;-.050304659;.67470556;-.55747753;-.48622701;-1.5923951;2.0272663;-.45865536;2.8761308;-.17766924;.17621121;4.638268;6.3962083;-1.1340432;-.26604566;1.1369735;7.0915585;1.1303864;-1.0358316;3.4038513;1.5609574;2.9752705;2.7234104;-.58653694;1.2922442;2.1666472;2.1539907;3.0541813;1.9547064;-1.2704828;-1.9611611;.7284559;1.6348586;2.0551636;3.406296;1.095336;3.389219;1.0522456;2.2261801;.37757444;-1.0909333;-.038868491;.43909237;4.3627586;1.6037678;.1257216;-1.3242561;1.9881878;1.0850022;1.6556536;1.3730025;-.11496876;1.5675336;.028717631;-2.2807772;-2.9266322;52.978485 +-1.609285;-1.716404;-1.0916085;1.1094786;-.30324706;-1.8768237;-.35300291;-.66500902;-.64600992;.33084741;-.13572219;-.23278232;.34651038;.5397622;.20326394;.31776115;.15033989;.010265721;-.98437446;.85863942;-1.7747765;-3.2037754;.73823416;.37495172;-.68610197;1.029888;.35669112;-.68467414;.30010006;-.29735962;-.65694255;.4762201;.53683889;.28117576;-1.6457313;.48924109;.68379754;1.0566132;-.39025602;-.89922214;.27447063;-.52044439;-.67941177;-1.7163643;.21195415;1.0831708;-1.5896612;1.4010898;-1.7640309;-.50684494;-1.2707725;3.2804949;2.4422128;2.4991801;-1.8650026;4.8465223;3.7056575;5.3620739;2.193891;-2.9598844;1.9942162;-.57957554;2.3720932;2.4755526;.48629174;3.1810641;2.8618786;.97797942;1.8387851;-.26790264;-1.2049249;3.2695899;3.4861124;.95523447;3.2496111;6.6692257;6.2381477;-.58911854;2.5744591;3.8116672;.34974805;5.5986619;4.542429;1.3701462;2.5600021;2.158155;.15069291;.36836073;5.1350808;3.1582153;3.2768059;-.74137264;3.9896297;2.233532;2.2566998;1.4665602;2.4238801;1.5635929;.78750253;1.7375945;-1.0369885;-1.2424442;-.48763627;.80998755;.44938308;-.58097249;.93349123;-1.4127582;-.7608425;1.6851356;-.2235669;-.52992219;-1.0767838;-.069067478;.70512283;-.59081256;-.20440738;.19370629;-.53290927;.21552008;.11234599;-1.0666944;1.5704679;.69219887;.22860961;-.77761853;.87610918;-.84076452;.47263587;.7186504;1.4098139;-.30761552;2.7846293;-.65338778;-2.3437793;-.80895007;.60382164;1.3460402;.67706329;-1.2031929;.26376203;-3.2705274;-.15661533;-2.1707308;.25514218;.25944272;-1.2563434;2.3015137;-.11326972;-1.4957207;-.23294039;.42622715;.74763632;1.4990041;-.051811557;3.8463018;.99614406;3.6488264;1.7139752;-1.3701537;3.6684852;-1.2404521;3.318841;.34557068;2.2985408;.12289132;1.3861822;-.84151363;1.3550273;-.59939116;.36998805;3.2493131;1.2279903;-2.3503146;3.9094307;6.5669594;2.3887749;1.1007733;2.0250871;3.1191349;.8534863;3.3532498;2.4673185;1.8760087;2.0170581;-.068910293;1.556784;.12163392;4.5310416;3.0168474;3.1487539;-.33509222;2.4325523;1.7129252;1.0645709;1.9395883;1.2679809;1.6487942;.040048014;2.1356516;39.325966 +1.6606517;.63460612;-1.0457038;-.31014425;1.8174443;.63386548;1.13671;1.1232775;.80914509;-.34621659;.37968257;-.51559317;-1.411382;.25715452;-2.0442467;-.12477957;1.2209588;-1.2601485;.8012774;-.90590203;.86414957;1.2020204;-.14503635;.22664495;-.96656454;1.3342736;1.6871873;1.3894258;-1.3582035;-.87968957;-1.3927732;.1565565;.27418885;.62353271;1.2507231;1.6928586;.47123605;-.56974185;-.3838135;1.0773854;-.279248;1.8039981;-.55423474;.01464262;-2.0497985;.47425053;-.33045235;-1.5509501;.0013975075;-.73215657;.98611832;2.5490069;3.9656751;3.8960576;1.3212638;2.4835734;.82071108;.9128136;-1.2769004;2.94677;.48029017;4.3716044;-.29439625;3.7336805;1.1453314;3.6033602;2.354429;3.8086951;3.9570909;.19922692;1.7254282;3.2330558;1.1248039;-1.0404209;1.6717317;4.8795853;2.4916222;-1.0887474;4.2585683;1.4822937;6.2501307;1.5934659;3.5851874;3.6617067;-.29446852;.88023466;1.6285664;1.8496577;3.1358018;5.7441945;1.5950108;5.3785977;2.5663218;2.6890428;4.9669456;.44080028;1.3293121;2.4792254;1.1057986;2.5211132;.30773979;1.1683903;-.0036785065;-.18820523;.84805983;.8622458;-.41593036;1.7572695;-.20706818;.23822987;1.0001647;.9731921;-.37422547;.4996531;-2.1830647;-.39735746;-.31202647;-1.0799164;-.38465971;.38506201;.68150854;-.2012492;1.2226177;3.3671255;.54142654;1.1212757;1.6107905;.95716202;-.14498673;-2.0950913;.007449945;.133101;.42739868;1.136138;1.2285578;.55594456;-.91336322;.90747845;-1.1469761;1.0432458;.58058524;.9661414;-.74964631;.39762238;-2.1631868;.21488945;1.1130022;-.74827939;-.7104041;1.5876074;1.0693651;2.2776828;1.2514882;2.1787407;1.1659408;1.493701;-.39925617;-.16701873;-2.1730058;1.8028164;.77381814;2.8785357;-.61958796;2.9634001;-.29233885;4.6765909;2.2353022;5.7182927;3.4820011;-.34920138;.89892721;3.0906496;1.9275606;-2.1006813;3.4152527;3.6787877;-1.2974;-.73305041;2.7950099;1.2808169;4.3726187;.88121134;1.6428872;3.6474915;-.76530671;1.5504382;2.4827833;2.7533593;.32496327;4.177166;.55617952;3.9803629;-.29208434;2.3379197;2.1920357;-1.1161118;1.7698522;2.7813022;-.17554803;3.1287251;63.577637 +-.44558263;1.7599515;-.92785847;-.18813598;-1.0544938;.79063857;.36313483;.55343533;-1.0809047;.79965264;-.6096828;-1.401647;.74814415;-.7898128;1.8577391;-.72016048;.95201993;-.39447775;-.39194381;-.54676265;.48795968;-.076478012;.61581951;.59647232;1.5634301;.92900455;1.7727704;-.2984055;.70332152;-1.4763395;-1.9306152;.86665112;1.7377164;.64210325;-2.7685208;1.2672971;-.9212696;1.4807971;.78345865;.33893332;1.817898;-1.2866623;.098988608;-1.3992356;-.088445708;-.31156781;.60521561;-.57391566;-1.3300781;-1.1774775;5.091363;-1.1580889;1.158952;1.946263;1.157149;4.1732116;2.3864689;1.6569456;3.8002079;2.0862803;1.8482506;.7213766;3.2278028;5.3779459;3.3631256;3.726711;5.1590443;2.644635;-1.0929017;-2.4792838;1.6958709;5.2720938;2.4634275;.60542059;4.1024938;1.3995413;1.0695823;2.5815611;.36468282;.23952183;-1.3802248;2.7138016;1.1536623;3.4591155;3.8165097;2.1210008;-1.3877248;2.3682191;2.4426506;.96095532;.34667352;1.9029428;1.5554067;2.5372443;2.4020209;3.8651493;.42210761;2.2039571;1.4796054;-2.6255033;2.6862786;2.3441091;.29531193;-.67569137;-1.0567099;.1587248;.86112994;-2.3988099;-.51106316;-.30681506;-1.4060992;-1.185848;-1.2717018;-.45608807;.35328209;-.87627673;-.82911777;.26813933;-.24576439;-1.0589173;-.31759426;-1.1178113;.064706638;2.379391;1.7486397;1.3948711;1.7364746;.61831009;3.3732266;-1.6250066;-.090254359;1.7086641;-.20458138;-.14658262;-2.1556098;1.7560877;-.72803962;1.0900121;-.99030823;.062803149;1.5791671;-.52286571;-.45084089;-.80318123;-.18259625;.63642192;-.45440233;.34897181;-1.8423007;-.56268018;4.7300439;-1.5208787;1.1843585;-1.2676053;1.0899203;3.2852006;2.0443845;3.6651359;3.2195828;1.1784416;1.9353784;3.2666204;3.1000633;4.9731388;1.9102989;2.3102865;1.7635837;3.8100841;-.92388731;-2.0986776;.77437967;3.0309098;2.2366772;.34717506;2.5049169;2.1601672;2.0302024;-.075715527;.12260629;-1.1381283;-3.6396065;1.3941797;-.34823933;2.2105067;3.1728458;1.022724;-.86598009;1.0251389;2.8174284;-.26724637;1.0768867;1.7005911;-.12343621;2.5425932;1.120569;2.6169903;.80206841;1.1970047;1.5404052;-2.5752993;45.374344 +-1.4553362;-.99649;1.1807126;-1.9772326;-.40097436;-2.1359444;.88561034;-2.3449967;1.6547359;-1.071685;.8936283;-.064111114;-.34631404;.46108496;.59741855;-.37323111;-.041037798;.074184731;.035899218;.075360738;.37464905;-.44399911;-.63076574;-1.847994;.50354695;.1826444;.80308247;-.36880198;-.39739546;-.028712649;.52215987;1.3301401;-1.5860571;-.38779339;-.24794105;1.3364018;1.9939363;1.0381798;-1.1654432;-1.8349999;-.052150328;.88350958;.14406355;.045173552;2.1087646;-.17930001;1.7892389;-1.4357324;.64491516;-1.7122229;3.159266;.68036228;-.036625024;-.33335602;2.9759243;2.1871648;-3.1275365;1.8074143;.50850683;-.8648231;.14971778;1.328739;5.0072837;1.4024966;3.6628165;-1.1961449;1.4946196;2.5275755;-.49559247;.57108915;2.8129141;4.6237073;3.4728439;1.5025208;2.6210127;.21331273;2.9195232;.83790976;3.0565464;-.7465983;3.8107836;5.6195846;1.790814;4.1434298;4.3540087;3.3630598;2.1510241;2.5105431;4.4040599;2.0132926;-.52154636;2.8265452;2.8472171;-1.429191;-1.6234635;4.1070242;2.9079382;1.9915239;-.90747666;2.9393516;-1.1114669;.50933379;.78277057;-1.3122079;-.1616488;-.91541588;2.2010419;-1.7815995;.86192375;.36634138;1.8779588;.69221747;.35013556;.50587398;-.54173315;-2.196429;-1.3132554;-.22623087;-.21583909;-.81686521;.26114297;-.34002483;-1.3633571;-.88204551;1.7041081;-.25789705;-1.7463598;.36221111;.15896872;.35976255;-.63218546;2.4142573;-.14489099;-1.3080578;.9323948;1.1924497;-.22581968;.60578215;-.83552557;-1.6311597;-.46832082;1.9175193;-.082743853;-1.7508332;1.3572696;.47177595;.50505894;-.51585728;.77338898;-1.2475849;4.1419611;1.2910776;1.6453265;-.59161627;3.9289713;2.3991351;-3.223248;1.7991209;.3391771;.6817382;.80555385;1.3519427;3.3599925;3.7218974;1.1029204;-.63438141;1.5508966;1.7972045;-1.0355078;.00311644;3.3221865;3.1457822;1.5795854;.96518946;2.3774135;.7837165;2.4702778;.47563684;1.9051976;-2.1854019;3.5407596;4.6778169;1.6076479;2.4697599;1.8371434;2.3009701;3.5703087;1.7620155;1.9624009;2.9685004;-.68589568;1.907959;1.9245838;-.96182501;-.40634689;3.7516661;1.2517903;2.4421201;-.34386542;1.7092319;50.144386 +.14156476;.20896363;1.0910894;1.3243306;.040503383;-.014175411;-2.5184584;-.80659789;-.4989213;1.5144506;-.042427801;-1.0118468;.46413448;-.380427;-.015774012;1.1567063;.81534779;1.0972047;.89047366;-.14996146;-.14164495;-.42775384;-.3620095;-1.6734623;2.0830088;-1.418077;1.2286619;2.6269021;-.23329727;-1.868627;.25603256;-.84558541;-.83152032;-1.9050159;-.91123396;-1.3001664;1.1138964;-.66389322;2.3117442;1.4802408;1.038082;-.45631677;.34934729;-2.1505013;.32371888;-.4390935;1.2462722;-1.348235;-.10298334;.019189797;2.3688204;5.788311;.39714998;-.49097383;.10908765;2.7638001;4.9754238;5.4151688;.92287511;4.3687749;1.3538344;3.9271765;.69808906;1.7422916;3.5501599;.71901006;-1.5045173;2.4365618;1.4254804;2.4791253;1.1704971;1.9478021;.39321545;1.201833;2.2550199;.65984559;2.1293669;-.5860284;2.9286509;1.0792612;.12127688;2.7036984;3.563302;4.3841028;3.6700313;-.17808005;1.0746881;4.3699265;.1300538;.77199799;1.5934082;1.7086303;3.7392282;2.422168;-1.5132748;2.9365451;2.3853645;1.890311;1.6339961;4.3231244;-.3625218;-.89844531;.64683717;1.1583174;.76028371;-.12692738;-.66371441;-.033785351;-.092025906;1.2976571;.7909416;-1.1907151;1.3419055;-1.0088311;1.3758814;.36357838;-1.4619223;.21764486;-1.192531;.77049226;-.78695345;-2.5276089;-.51470506;-2.0363758;2.1644523;-.10242902;-.55442309;.977696;-.77048308;-.96739405;1.6550889;-1.2975619;-.68091911;-1.4681317;-1.279809;-1.2859559;.61374205;-1.3303;1.7408019;3.5369108;2.0610175;.68019217;.45450684;-2.3632436;-.39119643;-1.7853253;1.4336669;-1.1802832;-.097398229;-1.4254149;2.7260063;4.5314636;.0016446682;-1.4945579;-1.3689141;.60435456;4.1326904;3.1812687;1.2160373;2.0351644;2.8973556;1.143268;1.8707132;-.012372857;1.2061563;-.25325599;-.99417365;3.1905417;1.0559796;1.9440073;.54191118;.48577631;1.0929146;.37989989;2.8946316;-.74128926;1.9448686;-.38118303;2.5139234;.16188838;.082518697;.88513714;2.4966965;2.5256939;3.666326;-1.2795075;1.4067296;1.3262863;.9528808;1.4524732;.9199667;1.2960403;3.2912195;1.6098169;-.96111208;1.7487999;1.6366884;1.6384767;-.3648614;2.1940119;51.001625 +-2.080807;-2.1941571;-.19945027;-.16368832;.4741028;-.23907305;-.016738895;-1.3410984;-.041386977;.45847052;1.0642389;.52406204;-1.9763577;.1766382;-.41619676;-1.9000999;-.58060509;.70953858;-.45446432;.47804359;-2.4456744;-.076292448;-.12148903;.28345227;-.73586017;1.8949604;.37647167;.40435341;-.62639433;.43324763;-.11944389;-1.2950943;-.71907097;-.073638454;.59251976;.56547457;1.3467317;-2.5498452;.085239962;.50953496;.19042113;-.42417255;.49570248;1.3183932;-1.3625838;-.91822582;-.86116195;1.1962762;.20575635;-2.0924633;-.91594887;.79731911;1.6427079;.65873432;6.419991;2.0573757;.60125428;.93051577;4.2857466;2.6703765;.098190747;-1.0956103;.4551295;3.6518385;3.7154391;-.38817582;-.022268221;4.3613067;.53490025;-.60477424;-.42142501;.047175661;2.4593697;1.1140414;3.8941565;2.8749363;-3.5448725;2.105633;2.1304631;.89429563;2.1562226;2.360919;1.414238;3.7685235;-1.1697793;1.5063338;2.5305929;3.9858568;3.176846;-.043925855;1.1188167;2.0763767;3.8219235;6.2492938;1.0354456;1.8583697;3.0268474;2.3457358;2.256093;1.0894924;-.11459395;-1.6668264;.21514219;.3623125;.37454313;1.4678584;-.86889923;-1.1144431;2.0557473;-.48788962;.56997979;.0039178375;-1.8084438;.7026782;-1.3488582;-2.5900166;.48870325;-.98653424;-2.2642305;1.7794098;-2.7623842;-.16113247;-.74300742;-.9661662;-.013818373;.26540777;.095088735;1.612525;-1.4949188;.12466315;1.0847334;-.03193967;.57955879;.42969725;1.2309837;-.00089025329;.71771502;-3.1324394;-.56128067;1.3747557;-.28611395;-.69473517;-.71253955;.73595876;.68558317;.91998756;-1.7983325;1.7674572;-.62046117;-1.564988;-1.1165541;.45630351;.18644837;.63098335;4.6347375;.71765226;.33545592;.42529437;1.979524;2.15962;-1.0976194;-1.4475795;.97539049;2.7646489;3.5167084;.71912986;-1.5598872;1.829739;.48791227;-.42533436;-.44233391;.52143878;1.537841;1.086391;3.1743691;2.3628376;-2.2092476;2.9256694;1.0033953;1.4339613;2.8151371;1.1154186;.55977267;4.2696304;-.9559561;2.1698105;.73205549;3.0091331;1.0429672;-.73084933;.15191492;.78975052;3.7816758;4.7090669;1.6244007;2.982451;.90987629;1.5301967;3.435581;1.9537086;37.256401 +-.24675074;-.77493119;.079073086;.60792488;-1.2683227;.3592957;-.59664243;1.4527042;-.13337183;.61446553;1.84577;-.20685562;-.20341502;-.019190613;.98845297;-.050972234;-.71759135;.01454362;.26907995;1.0040137;1.3615755;-.17725575;.4895978;1.5177543;-.70854068;-.4951072;.67205495;-.18260714;.96899104;-.84094077;.5953697;1.566396;-.56506199;-.20327599;-.63551444;-2.269707;1.1578361;-1.6393472;.39018074;.69430149;.99322629;-.44447774;-.45566413;-1.8819807;-.2489564;.31230763;-.78696936;-.81743199;-.11008023;-.65486348;.79209447;-.20149951;4.0450425;5.8131251;2.185571;-1.7282497;4.6248832;3.8512363;1.1164126;3.5923026;5.9514594;4.9575233;2.4579008;-.92558944;2.27547;3.3143768;-.84431535;2.3374057;2.9352305;5.6992517;.33227652;4.5315037;3.0098615;4.5988126;3.0235162;4.247118;3.4515018;3.1243689;.38943958;4.7917571;-1.025805;-1.0716012;2.2264676;4.5426106;-2.9675863;4.4174867;3.2306323;3.2834275;-1.6344198;-1.7428882;7.7814469;5.5260987;2.2988763;5.1756024;.33715442;2.8681579;-.904567;3.4246817;3.1384108;-.82023644;-.28530988;-1.3345565;-1.7633148;.069617063;-.52157456;-.47060847;-3.0496886;2.9212749;.097186059;-.033318851;4.1840701;.74146879;.096470535;.32619908;1.5967244;.037403036;-.11864265;-1.2523082;.83391488;1.1224948;1.0512516;.92176944;.54092789;2.8331211;-.0097608091;.35352501;-.036262944;-.57395869;.41927582;-.49702603;2.4810822;1.7259394;-1.4366;-.014394311;-1.1492118;-1.2486393;-1.7402653;-1.3244629;-1.2233768;.5013414;-.53805029;.24473873;-.72845232;-2.3398407;-1.1294376;.12471056;-1.0331622;-.00017905376;.067026794;-1.0558883;1.4226637;.5396564;2.342541;5.1287322;2.34323;-1.9367732;4.4115109;1.616222;1.2679565;2.2734768;5.3425231;3.8260856;2.5315931;-.98114169;1.8199589;3.9370489;-.011024892;2.6755574;4.0942421;3.6897936;2.6832895;1.7087779;1.901894;1.6298937;3.5395136;4.8163896;4.5003524;1.9971052;.98642957;1.7326846;-.068672493;-1.7467637;2.0074365;5.221262;-2.2337592;4.0362968;2.1351187;3.6002882;-.663845;-3.1610634;6.3781428;4.7217684;1.2056006;4.1915836;.79833686;.46161821;-1.134011;2.9578221;1.1934544;.34094003;60.30777 +-.74791461;.27329004;-1.1677344;-1.4524735;-1.0095996;.44800183;.61345816;-.51838082;-.1071402;.62307;-1.5061165;1.3898979;.86146146;.80540121;-.93895113;.038214315;-.46559885;2.2369921;.11882903;1.0518483;.40476975;.87902957;.76787633;.26498285;.22472809;-1.9599637;-1.9025694;1.6607816;1.3204849;-.14624073;.78221828;-.17746478;.88351125;1.3838112;-1.6046858;-1.0189965;.089196444;-.91115737;.52102679;.13863453;-.67721182;-1.7204525;.55127037;-1.076867;-.0059657707;-.36855459;.66053849;-.84187454;-.32028145;.50668824;-1.309492;2.464859;-1.8098627;3.7024264;3.4858308;3.0863888;2.2517886;2.8597713;4.0362949;-.35935491;4.0535016;2.4674563;4.1186008;1.5706719;1.0711117;-1.9257739;1.8804103;3.9794929;1.5717969;-.66789812;.66057569;3.0299101;-.2318977;1.4995204;-2.2727218;.45749873;4.242238;.47039211;1.5687634;.80376685;2.4173639;.66478926;2.4938886;1.3280756;-.4945848;2.321099;3.031172;5.3461523;3.2792008;4.1431861;1.5039506;.25941545;.15864636;-1.0840769;2.3442326;-.66656017;5.472929;1.7516901;2.5647249;1.1606896;.26730683;-.7710343;-1.1024518;-.28112376;-.24618694;-.015622822;1.4884229;.057738163;-1.289811;-.30224293;-1.6730754;1.6038247;2.0464404;.75295877;-.44068271;.018120591;-.70082963;3.0269611;.28209078;1.8969198;2.8473852;1.6364489;.5072093;-.18420415;-.083750315;-2.8615637;-.47875813;3.1072607;.75326246;-.044272982;.26826721;-2.1776936;-.22372735;1.7353079;-.23433697;-1.3449378;.90867138;-.41115239;.76558071;-.2011804;-.27268758;-1.940917;-.98670876;-1.3126727;.6091249;.67851186;.59320039;.64833874;1.0531774;.35825866;-1.5698431;4.1959786;-1.8694295;2.2144938;2.2685027;1.3269379;2.5083373;.60667145;2.7368848;-.29432592;3.1805556;1.4741129;2.4895818;2.6466546;1.4978045;-2.7801743;.078461438;3.6365626;1.1120118;-.89764321;.47369298;2.5257678;-1.4443394;.79448891;-.36092111;-.5501343;.94303626;.99319679;.84376478;1.2527685;2.5921156;-.69332665;1.4952276;1.1412729;.4087534;1.8494612;2.0900867;2.991318;1.8003826;2.1258807;.66231567;1.3557827;-.23911518;-.2270647;3.439945;.6422618;2.9661181;.66899472;-.83226216;1.0131537;39.532242 +-.73668331;-.028953828;-.63824236;-1.2642456;-2.1976528;.20944229;.11363774;-2.1964095;-.48123455;-1.5981753;-.10221401;-.34070534;.068398245;-.64256817;-1.6559595;.58688712;-.21924122;-.95051569;1.4405234;-.65821129;-.50008368;.56534642;.11823812;1.1392368;.80150503;1.4367474;-1.2153708;.2739962;-.11639166;.48875064;-1.2346838;-1.1346768;-1.2282987;1.1107314;-1.2763797;.39996001;1.1501311;1.1134921;.024706835;-.50867057;1.0336168;.59265029;1.5104797;1.1062595;-.9500683;-1.2339298;1.5757574;-.15402548;.99472451;-.68626791;3.2833242;-.70101374;3.1616495;5.730896;3.1259632;2.7914636;3.5887103;.067442939;3.2154427;2.8799658;4.7289028;1.4378358;.73530412;4.1726341;3.3887689;1.896324;.029408121;-2.4428625;1.8117065;1.9866717;1.3674297;3.0919874;.84775907;2.5541;1.0594195;-.29118073;.9856329;.074503876;.66081536;-.25488684;1.4213085;2.0466654;3.5967484;-.32613531;3.1736119;-2.7160797;-2.8308215;.64441323;2.2356253;3.1220493;-1.31648;-.14602228;3.6899137;3.9667392;3.9558957;3.479811;5.259212;-.57001537;5.525671;.96923035;-2.8616977;-.67690694;-.83103353;-1.6819948;-.92734069;-1.0588664;.40544745;-.22820832;-1.7857155;-2.5457637;.043576419;-.44985691;.1632203;-.23526885;-.59993362;1.678924;-1.0736091;-.35410589;1.4951876;-.47939768;-2.308718;.51668495;-1.2069489;.81300801;.78215611;.21462545;-.9083637;-.67325681;.1815719;1.9058573;-1.8620484;-1.1946248;-1.2389959;.18154895;1.0602301;.85144246;1.9373003;.82003909;-.89209926;.3747482;.94444054;-.74494487;.81549805;.66105533;.027122108;-.41125533;.84544826;-.42171872;.33568788;-1.3334739;2.7781532;.17968452;1.3214228;4.9099741;2.3082864;.18006505;-.28308755;.28154889;3.925328;1.5262805;2.5749154;1.0794344;1.4481353;2.573653;2.0218287;.7213878;.068143748;-1.7353992;1.34015;1.7079413;1.6383539;1.682991;1.3886704;-.71945262;.40033582;.99187177;1.4185417;.82180989;.57232845;.1883368;1.2696362;2.1335285;2.5517204;-.17036894;1.6300067;-.27249506;-3.3266973;1.3733407;1.019794;.37288731;-2.3458004;-.5202291;2.5924368;2.6513646;4.2064028;3.2885785;4.9227743;-.5961296;2.1305401;1.8629742;39.515945 +.93571258;-1.1186458;-.10849846;-1.3435426;1.4624341;.57744664;.063713506;1.3097767;.47032002;-.70672023;-.41300359;-1.3399774;.54531896;1.2358665;1.1726701;-2.2996387;-.95816803;.66684544;-.32669237;-1.4133017;.58146095;-.50167757;-.31013885;.3005811;-1.1814249;-.079885907;.20284881;.1374408;.092002496;-.21927252;.78138894;-2.1748772;.67077303;-2.5155261;.57310241;-.61986476;-.46646369;1.5371625;-.69514865;-.034415439;-1.1459593;.74174613;-.78174955;.80510974;-.35149193;-.58361495;.35563043;.24597175;-.51106137;-1.2023023;.72816765;1.0771991;1.9759711;.54489499;.55039811;5.9185634;-.18055564;3.5568614;3.8636601;2.7823551;2.6252522;-.13232575;.15380004;2.1014249;-1.2068186;1.0069573;3.0015574;1.0514041;.96873856;.81081188;3.6996067;.64436096;-.32518962;2.1614914;1.6516387;-1.265293;1.0547719;-1.1584406;-.38019067;-.79431498;6.3078041;5.2955003;3.2874401;2.5365958;.86151785;1.5057317;4.0320492;.56274563;2.7925694;.66962892;-2.2127061;.25618309;2.4851518;5.0064845;3.264698;2.434413;3.1211524;-1.2283618;-2.643538;.69656265;1.885422;-2.9677155;.064885631;.1705305;1.4284294;-.018967178;.42622206;1.6517519;.70130605;-.097654179;.55043316;1.0356257;.3848331;1.6061856;1.7202754;-2.5825083;-1.0412067;.012486347;.99643046;-1.6480693;-.63868922;-.077018462;-1.3556522;-.37167484;-1.1146525;-.79722214;1.0757024;.56097931;-1.1106342;-.60099071;-.72402662;-1.4796709;-.55099362;.39964023;-.059957393;-.59448284;-1.6163926;1.3842348;-2.1617677;-.16055523;-.35201266;1.1622899;-1.209749;.49740696;.50451672;1.2413669;.86149955;-.70701844;-.53363603;-1.0765622;.46258992;.30478114;1.4598354;1.3805265;-.54899007;5.252378;-.29775399;4.174921;1.5332893;1.1762129;2.5167532;-.71953166;3.0911806;1.5691978;-1.5069003;.45356467;1.0377581;2.5775816;.23271951;1.6051108;.87142766;-.47383118;.92020798;1.3589288;1.7403845;-2.1672802;-.25766703;-.1517352;-.94676715;.85308242;5.0038681;4.2255569;3.0311086;1.8499426;-.98024589;1.0541886;2.0077636;-.079773434;2.7973824;.95788032;-2.2207332;.087953739;2.0429654;2.7249575;3.6403246;4.0505643;2.2183063;-.12859672;-3.2359285;-.15227053;37.108734 +.52910864;-.32829273;-.10115083;.14899856;.72604084;-.60020936;.45863253;-2.1743236;.70819283;-1.6135638;1.1114482;.018661648;-1.0422812;1.9592304;2.4640255;.035515778;-.41864353;.02958104;1.1771154;-.82458365;-.76223105;.09471368;.68991393;.27668563;-1.1656569;-.43763256;-.97263366;-.14930274;1.7425272;-1.8657526;-.6733495;.57538545;.50544524;1.0871122;1.1818639;.18613727;2.0221648;.16919193;-1.5398055;-1.6385733;.84353101;.76391983;-1.5310545;1.539885;.095734037;.6395089;-2.1191347;-.37438324;.28247005;-.13351285;1.990517;2.2230296;.22423983;-2.2730949;1.0387961;-2.5453246;2.8517663;4.6248655;3.0737693;2.0244896;1.1337187;2.3002071;2.8516753;.089675315;1.2881775;2.4180472;2.7933161;1.047222;.40750033;4.0832314;1.2512389;4.4253578;1.4411753;-.11166878;4.644814;2.5493553;2.7398472;5.384377;.62802303;3.6906149;4.6247001;4.1297188;1.071974;2.9788809;3.4734473;2.74336;4.5194311;1.3936708;2.9209063;5.0501642;2.7956645;2.4417005;.07591068;1.5200347;1.9989094;4.7271347;3.5343881;1.1585618;1.3490301;-1.1700813;-.23797545;-1.1584885;-1.8303462;-.66653347;.068099387;-1.8106443;1.4964414;-.33212954;.53153712;-.53005487;-.22135822;.77751237;-1.6432393;-.49707201;1.1064137;-.49397177;.47899482;.84144843;.68973958;-1.5547694;.20074372;-1.405035;-.726071;-.44165206;-1.5785447;-1.7672958;-.81300557;.86478263;2.0972645;.23152484;-.92971104;.42480206;1.2974366;1.5609308;.95969033;-1.7298316;1.4415953;2.5546472;-2.1202514;-.6374445;1.3630791;-.27834246;-.18431631;.44471669;.95058882;1.3003509;-1.6192673;-2.6374497;-.42576385;-.59891921;.91414768;-.099436507;-1.5546607;-2.5373919;1.1750785;-.85750908;2.4881635;1.958846;4.2216892;-.66007525;1.2468631;2.6153843;2.829011;-.92158234;-.72945672;1.8684493;3.5088782;1.0286901;.51791149;3.8558671;1.6563042;2.1223824;2.1820216;-1.0633572;2.6708508;.61805367;.74390346;4.4198513;-.83247465;3.062438;4.4195991;1.2688702;.054248445;2.3681095;4.5088954;2.58076;2.3041821;.30034703;1.0167323;3.22156;1.1854101;-.16567737;.64009923;2.0583673;2.7443514;2.9748347;2.6273358;1.5641352;.48907241;-.68413913;56.071568 +-.17027338;.95646465;-.42216653;.67791682;.055139177;-.094768196;-.25191137;-.61241394;-1.0246816;.29459417;-.072521932;1.8198575;-.86120176;.20086649;-1.6067066;-.8022331;-.2217771;1.8040067;.74719959;1.5116974;-1.9463965;-.31118289;.083654545;-.92074847;.0082639735;-.2560719;.70946389;1.1015015;1.0142988;.4991048;.51682663;-1.1869276;-.91968477;1.5969634;.89990389;.0016252453;-1.1626045;1.5745776;-3.3229928;1.2446194;-.79115909;.6384486;.25866273;.49962416;.49244297;-1.4553596;-.43146113;.18193503;-.34998342;.19902222;1.3760688;.5276705;2.4984648;1.1090124;5.2129207;-1.3076504;3.2571051;3.2190878;3.6294618;5.9649482;2.6873875;4.1006241;-.75415111;1.0369838;2.7728631;3.5486131;5.2058725;1.8511246;1.5685076;2.2721274;.76978523;.25941136;.81471646;6.5309362;2.3889666;.1049628;1.0716896;3.2563999;2.1225843;.46454188;4.3985391;3.8718438;3.7629337;-.63334668;3.7616537;1.6304415;.23494838;3.2421689;.14137696;.99677974;6.7374978;3.4647031;2.5429645;-1.7413892;-1.23471;2.984731;4.2576666;-.13478793;2.7425814;1.5416867;-1.1346678;.79212552;-1.7395308;1.3951849;.33351696;-1.35269;-.4920401;-.26968187;-.27718759;.23848683;.031260069;1.0178267;.8806693;1.9239806;-3.0860837;-.17278321;-1.8452156;2.0724401;1.4893166;.79187053;-.53128004;-.10470418;-.16780607;-1.158586;-1.4957289;-.53900295;.63745737;-.61405659;-.32701293;-.63442886;1.4987718;-.62210429;-.78780836;1.3285397;-.25412774;1.960984;-2.0736005;.95067048;-3.5971878;1.2176622;.42697269;1.0805494;.8041963;-.40188852;.14572741;-1.0610113;-.84261376;.85831374;-.023877548;.24933961;.062300358;-.61163008;2.6326919;2.3920412;4.6239128;-1.0890106;4.124856;.42107928;2.5744932;3.977638;3.0263348;3.0001628;1.2027599;1.6737685;1.8878554;1.2209833;3.6072686;.60857028;1.512038;1.0571049;-1.7177396;1.6559628;-.22930789;4.3226337;-.77550101;-.10737733;1.4495391;3.0941508;.54648542;-.6580795;2.4498713;2.2776451;2.2893984;-3.3521755;1.0094942;.84967566;.8702786;1.3850852;-.5613547;-.25831759;4.9820762;.79114872;2.9887681;-1.2725201;-2.6428583;2.0189111;2.9799778;-.70565814;2.1045802;1.5052162;60.792473 +-.683312;-1.6544635;.91354901;.53471953;.50263691;1.9562824;-.85288024;-.047492668;.029103177;-.97803396;-.70051372;-.10087629;.74813139;-1.0529463;-1.9638658;-1.1364466;-.8634817;.0046424107;-.020572169;-.52008092;.51264924;-.36101452;.71458477;2.1251204;-1.8486333;.11768505;.54173285;-2.1117933;-.15292132;.89370346;2.6806054;.21240263;-1.177991;.97982174;-.34654072;.92137873;-.27855986;.80504656;-.73350501;1.7284526;.86102074;-.36220166;-2.5589781;-1.200478;.24765325;-1.1684742;.19631641;-.74515986;-.28168005;.032211304;3.8635919;3.8502913;3.3592846;2.0644121;-.51863062;2.8653269;.73317218;-.34888735;5.5984192;-2.2324765;-.31838542;.63062525;1.1841449;1.0619364;4.5548587;5.5834999;3.7992885;2.212003;3.861259;2.2085252;1.1674653;6.831058;4.9332376;4.8203239;2.1406193;.084160835;3.4818738;1.5060184;5.7339993;3.5846803;3.3826215;1.8667758;1.0718296;.16547021;.26117921;4.4076657;2.7921789;3.3258784;2.7993038;2.2153645;1.5550807;3.1678147;2.5088413;1.929552;1.2646809;-1.4184698;2.6926258;4.3850703;.41625378;3.6140256;1.4384174;.14499463;.0363065;-.017744558;1.8608003;1.8703344;-.17108846;-1.3800862;.42704099;.068279475;-.9490189;.12643452;.87686002;.29869244;-1.8028761;-.7480036;-.93089968;.4535341;-.098932177;1.1646974;-3.0162358;.89036977;1.4372379;.22175324;.068053842;.1197245;.014813505;-2.0801311;-1.4590797;-1.0477674;2.5701511;.89811063;-1.2826341;1.3702178;.82067853;.79682016;.3603068;.28597409;.03750924;-.80204642;.65179628;-1.3766587;-1.4398613;.65011203;-.99740773;-.77672487;-2.0529649;-.26182252;1.2186559;.67410129;1.7033523;1.659205;1.8517295;4.0882692;-.74506044;1.4917903;-.18382564;-.3562851;3.3153727;-.80510312;-.6823262;1.4063458;1.1387935;1.030888;5.2554841;3.1038535;2.1963601;2.2507975;2.1188626;.72703093;.30597183;2.7050173;3.8894958;3.7332108;1.6109468;2.212446;.93513614;1.632859;4.1809521;3.3492827;1.6515702;1.875726;1.3850678;.90367508;.1245034;2.8676755;1.8270998;2.1151137;3.6484461;1.9751977;.18681185;.6691975;2.2781415;.40009746;-.11078367;-.11149691;2.1924348;3.9232428;-.62839776;2.4186828;52.757492 +-1.8582636;2.1100664;-1.2184552;-.74348193;.074669778;1.5779878;-.14122739;1.1159637;-.0047598528;-.76810694;.39622879;.96365213;.23557474;-.99299544;1.4417031;1.1369328;-.82565624;1.1931214;1.0541873;2.275744;-2.0097256;-.1593796;-.45461142;.545699;1.5686548;1.4205728;.65720958;.40326262;-.12240981;-1.2064722;.88728195;.11568837;1.1261728;.046272963;.20991074;.91678154;-.72289872;-.84460646;.47343111;1.169921;-1.3228406;.29378828;-.49587321;.099053465;.62695611;-.7993747;.4396002;-1.023423;-.48800853;-.19825074;-.35221571;1.4053785;2.3118682;3.0009844;3.2536361;4.1281438;2.4600854;4.2023258;-.88028526;6.8348074;2.9850764;1.0315387;.44935063;2.0433874;1.882706;2.169322;-.70304787;5.4754643;5.0087652;6.45082;3.1555545;.16763037;1.7294999;5.0323782;1.6291332;3.3004854;1.1307658;2.4559727;1.4126805;5.3155069;.050345991;7.1664586;3.0473523;1.7145844;1.0062467;2.55058;3.0627248;2.6861386;.64564639;1.3721511;-.66561955;4.0815043;5.0358362;.87293601;2.9493475;1.6357609;2.5428419;2.5888274;-.094991699;3.4161363;-1.3574293;1.9417952;-.62509149;-1.2823867;-.37336877;.6893149;-1.1441334;1.6160445;-.26661789;-1.8481343;-.28528577;.28835863;.65689045;-.14440373;.9588086;1.320953;-1.0128167;3.0636461;-1.4596032;2.7477684;-1.543743;-1.308695;.27127191;-.25415313;1.1139266;1.7273588;.089558676;-1.2155421;-.34262142;-1.2672632;-.40074527;2.0133486;1.91092;-.14495772;.7217344;-.92334878;-.39460868;-.6660682;1.9992886;3.5897985;-.35279846;-.47616428;-.98301488;.44291535;1.7246389;-.48643366;-2.5703924;.016679997;-1.2273828;.12051248;.33365831;.64203113;1.9782532;2.5415099;.46733189;3.4056203;.017872047;2.3664868;.34976786;5.6307321;2.3576992;1.2231537;-1.0412363;.69231695;1.1028711;.74239415;-2.187212;5.2465272;3.0419772;5.865129;1.9305868;-.22314876;1.4074377;1.90352;2.0872817;3.5814154;.51556742;.5279057;.55332845;2.5003037;1.1924244;6.3374157;3.0473218;.096342824;-.077578761;1.6373627;4.7525535;2.878217;.38706946;.74435216;.67771345;1.4806389;4.460433;-.50840741;1.1902443;.62200725;2.5109384;2.4014349;-1.4138345;1.3058262;67.861053 +.38383085;.80753386;-.075784907;-.0035651475;.85803217;1.8726214;-1.299415;-.52093953;-1.8891203;.17275201;.2039057;.22351864;-.22486216;.10163364;2.0322218;.60104233;-.0026667963;-1.3072805;1.2792126;.82592583;-2.109843;-.092371501;-.51759428;.69243383;1.182611;1.6133749;-1.1973724;.8289296;.45056596;.4984237;.30105641;-.64967757;.12585331;-.67144591;.81441396;-.49920651;.55085075;-.73207271;-.39495516;1.8218465;-.83642179;.17253971;2.046149;-.57721305;.14026757;.004106944;-1.0339226;-.097128116;2.0574262;.44065553;.58927244;2.6667521;4.222218;-.093420662;3.6390231;.91852611;1.3106117;3.0807977;2.5689497;3.4507058;-.32137373;1.9467092;3.7894685;1.6863242;.9154104;3.0461555;2.2225671;1.0063795;-1.7665141;.96032321;1.3833479;4.0015612;-.11099856;1.0901006;-1.289952;4.0976968;2.2662606;.70999825;1.0923541;3.0678773;-.39172804;3.9562008;6.3518553;3.2063494;4.4524393;-.8627106;3.3392851;7.7987514;2.4139776;-.86416817;1.6687553;.84142053;.087460667;1.8152665;1.4703684;3.3360937;2.7086411;1.0265421;4.4955955;1.4320371;-1.9658554;.89393902;-.27617753;-.55126512;1.6615701;1.897477;-1.4732089;-1.1877131;-1.9507487;-.61485207;2.0120592;-.1972075;-1.1262764;.97408122;2.3292224;1.6146787;-1.1815604;.80306947;.10544178;.67491025;-.43817636;-.96049792;-.63986039;-.13024697;2.5508828;1.7572203;-1.0828956;.66066837;.36196342;.7593798;.14419156;.53995806;.25622416;1.3579206;.96558028;-.95732999;-1.2377253;-1.2824273;-.8831194;1.5153513;-1.1173915;-.29945171;1.6325538;.55771077;-2.7593544;-.098516569;.93535596;.70943534;1.2483633;-.77434313;-.30831203;.82382029;2.0578108;-.088749506;2.6749749;.53330386;1.922457;3.1511662;.048794862;.12201753;.01528921;2.5466151;2.1343663;1.3094035;.79069102;3.0097699;2.2961049;.23476228;-1.2045964;-.60214156;1.0942376;2.9464946;-1.8256553;1.4054319;-.69937754;2.8521128;2.7231355;-1.310887;2.9725199;1.6303165;-1.2081919;3.2380695;4.8250108;5.4002352;1.9549693;-1.4531332;2.7758482;5.81814;1.6399063;-.46901295;2.4317386;-1.214853;1.0795043;.94258577;-.46574929;2.7165935;-.37388101;-.6914314;3.3234301;.15844934;49.161381 +2.3173769;1.3316493;-1.1040159;-1.4828732;.73796648;.95153409;1.1695895;.71647942;-2.8465652;-.43489373;-.97350699;-.50959855;-.31147954;-.50226969;.70216745;-.12949727;-.12643975;1.7248644;-1.7199337;-.43446901;-.28059533;.30282009;-.36396155;.46210176;-.92477363;-2.3851957;.0032223174;1.4159759;.55613285;-1.8257389;.074421786;-.4587588;.9017002;-2.2326179;.16702871;-1.1308993;.10849519;.59094846;.48873606;-1.0011957;-.85411859;.79361475;.25715509;.61090046;1.0880672;-.90658337;.87721473;-.35398707;-2.4945221;.16820966;2.352839;-.94063044;-.32655177;1.801355;4.5910449;3.9041822;1.2905265;1.6112732;3.6088459;1.800612;.83718884;2.669363;3.918998;.62818998;-1.5241239;3.0270047;1.5803676;-1.3342258;4.5742917;3.0005598;.15463421;.30193636;1.4037106;4.0172191;3.1354406;2.2001808;2.0512364;.31640527;4.5397363;2.5501368;2.7546947;-.73006219;1.9747331;1.54092;.50888199;-1.0081537;1.6826164;3.2698197;4.3539481;.91302758;-3.5212386;1.5410768;3.213444;5.0306215;-1.3354045;1.8751183;1.4487746;.17944059;8.8221073;2.8059359;1.3071324;.77025491;-1.8514112;-1.5364214;-1.6198086;.75462794;.57126474;.67074913;-1.8734192;-.26973429;.095444746;-.20566557;-1.3468618;.19678915;.12656876;-1.493873;-1.31945;2.495266;-.43752202;-1.6171905;-.90906072;.27932397;-1.4334211;-.45323569;-1.7310625;-3.7182527;-.10369121;-.20473002;3.3096201;-1.3932816;-.5136863;-.075476699;.55593801;-1.0799329;1.4279476;-.58794308;-.46432263;1.4220303;-.11063769;-.26372162;-.58947307;1.0969576;-.55280077;3.9762976;-.78916121;.61884856;-.027539944;-.8228001;-.89455932;-1.3149749;3.5331101;-.20740587;1.1118114;1.5072449;3.078604;1.4375006;1.1127393;1.4429002;2.7046258;.44151339;-.70656937;.68636501;2.2885957;-.66018683;.5297519;.28446323;.29617468;-1.2516713;4.4259429;2.7279594;-.25147822;.96050668;1.5039901;1.4374627;1.1007112;.78684038;1.0463873;-.42308283;4.9747601;3.8271627;1.4874848;-.78233343;1.5919378;1.8340273;1.0953162;-.072886869;1.706802;.92465216;2.7737455;.35247201;-1.6649889;-.43635252;.32504442;3.234596;-1.5799257;1.8225833;.61525434;1.3185302;7.8902922;2.9025557;40.509106 +.23843239;-1.3863293;-1.3648316;-1.680638;.41812944;-.010816919;.20176615;.37586176;-.30424035;-1.1674351;-1.4211013;.35387287;-.86946315;-.63098264;1.6105546;-.79034609;-.94033134;.11713194;.033059318;-.23699547;-.75435543;.48462909;.10341305;-.72688109;-.23538682;-.34583518;-.037104178;.075267471;-1.0572371;.050671648;-1.1898916;1.2656827;-1.0314369;.11314449;.16655557;.62832862;.84844345;1.884954;-.21699746;-.015031763;-.21165885;-.17333558;.57959479;-.54891503;1.897894;-.52783656;1.5802796;-.14825258;.4151102;-.39634648;-.89269459;-1.0601457;.43775529;1.0326418;5.0333405;1.351518;1.8590623;-1.3204358;1.1516387;3.0450573;1.8270801;3.5519896;5.1168966;4.8736501;1.9721948;4.383441;2.7509446;.26253337;1.1513393;.43065789;4.0025878;2.6399925;1.419284;.44313043;.52469927;4.8943748;1.0843563;-1.3643982;5.3019705;4.1182165;1.0045066;-.48258597;.65138859;-.73019511;3.0277619;-.055587962;.31674168;.25245848;4.0876551;2.6685627;1.7610098;1.2442567;.42254344;-3.6120179;5.9565892;2.0820856;2.8108094;2.8094368;3.2926598;1.7701442;1.7959986;-.12413066;-1.6921608;.13078916;1.3866272;-.87910718;-.5460974;-.75632566;.48042837;-1.3208485;-1.2653201;-.43543792;-.22514515;-.7627849;.20835513;.12599163;-.95123369;.096470907;-2.0917637;-1.1766565;.12524715;-.078721859;-.69161493;-.87731731;-.51260126;1.4241517;-.030718815;.44547158;-1.3243209;-1.2579484;-.4248001;1.5408357;-.45084697;.46979499;-1.0399146;-.082775749;2.7480338;.7997852;-1.0522114;.66809893;1.3590661;-.787857;.24195758;.8454271;-.35862464;-.4849838;3.226486;.1025281;-.48818362;-.35135883;-4.026897;-.77069044;1.1067905;.61246657;3.0391264;-1.1443082;2.6699479;.47697455;1.3048987;1.7881722;.87932396;4.3672514;5.1927004;1.8221463;.78854364;4.3779855;2.2004073;-.27111903;.43683535;-.4564887;2.9693172;3.2698069;.42755702;.1976665;.31012034;2.743077;3.5193398;-1.3651655;3.6759555;3.1113641;1.9853698;1.0711212;.41293219;-.42328507;3.3093126;.13225974;.87182033;.33587515;4.469243;1.8374921;2.360992;.96039563;.51434463;-1.9252669;6.3954244;4.0398574;-.31887147;2.1233993;3.4511833;.66635555;40.239845 +-.84534585;.38093567;.35793468;-.31142858;-.98128933;-.55055088;-.25878912;-.16953069;.017237535;1.2820313;-.78593171;-.011096944;.54449463;.3784264;-1.5054497;.63003731;-.91783923;-1.6439705;1.0257198;1.0279891;1.4511415;-1.626696;.61065352;-.92381907;1.4087638;.67955613;.80111933;-.056993797;-1.0026785;-1.0047609;1.1018001;-2.1494837;1.1930572;-.19710951;-.48498169;-1.8125597;1.1765715;-.43038553;-.23077121;.034612972;.91772932;.18962766;2.2750924;.59622037;-.21511401;1.3648921;1.6928706;-.66842133;-.50858676;-.68791217;5.0466719;1.1749672;3.2233949;.66829216;3.7862675;-1.082165;6.9381695;.31044853;1.4494717;1.6522284;4.8071594;.8403576;1.3730844;1.1409488;-.77412957;4.0504189;.33083504;3.571877;.040654007;2.4712591;-3.2503352;1.3533857;2.0550299;2.3683228;1.9572597;2.8127043;.83393568;2.9496701;2.5593719;5.0446653;1.1291414;.81119031;4.2044249;3.1958048;.84996063;2.9436195;3.4431212;3.3887103;4.6531258;4.5985694;4.0127339;2.1159103;3.3175862;-.1474296;2.6615467;.58204472;-.29310215;4.0303617;4.9419727;2.4900298;-2.0215626;-1.2530189;-.5788613;-1.4408827;-1.3503801;-.097843751;-1.3111733;.93893051;-.99259311;.54817671;-1.2022638;-2.2355323;2.6550765;.88501012;-.78727245;.39130935;-.57478201;-2.4946499;1.3315284;-.31964722;3.1756096;-.83362615;1.816425;.069794193;-.24972406;-.35695899;.082834251;1.0367926;-1.4929937;-1.828727;1.8896248;-2.5762508;2.1667411;-.43245822;1.9179864;-1.495343;1.8681874;-2.2635872;-.54545063;.34854779;-.64526409;.58235037;-.023995671;1.7639104;-.64156371;2.0664155;1.3809904;-.20451353;-.21544319;.71716446;1.7359536;.33740893;2.6904533;.67592835;3.3347692;-1.0481993;5.9165392;-.40500465;1.9603027;-2.1850843;2.98564;.64984089;-.18256746;1.1978916;-.71402985;3.3080959;-.025626302;3.831136;-.7473973;2.9219444;-2.8292859;.29998296;1.0496129;1.1716501;.79617369;1.9928647;-.43218789;.96792519;.36680102;4.5487151;1.8206619;1.2426753;2.3886197;1.6627212;-.12460177;3.1272616;4.4327683;1.9230671;2.7260935;4.1927938;2.8080699;.91931468;2.0455668;.16489707;1.8927507;-.62201494;.19170995;4.5677371;3.59688;3.0477033;57.117573 +-1.2912116;-.25790823;1.4397423;-.090892479;-.96741259;-1.9568447;-.4661133;.98505336;1.5496436;1.1867136;.014290154;.97552776;-.31813002;.98202878;.45672774;1.7660495;.42960173;-.69640642;1.3791478;-.065052561;-1.0563744;-1.3201386;-1.0244666;-.71763653;-.4285067;.13701516;-1.0835288;-.85572082;-.63752216;1.3684001;-.10550172;.090672947;-.48098484;-.43771163;.22876473;.13144957;.24012473;-.71228439;-.11921167;-.30468941;.81898034;.65515471;.025128596;-1.2972007;-1.8673124;-.63547009;.53114992;.1367005;1.498203;-1.359009;2.6974378;.083882086;2.0229824;-.97452706;3.5228217;.66134119;3.531903;-.17206073;2.2166846;-.32708111;-.20611368;.20650251;5.1153293;3.1955953;3.355588;.41658202;.8838048;4.6543255;-.30887544;2.1577463;5.6186185;2.1198375;2.2886193;4.250041;.4706293;.054701813;2.8875475;2.0541081;2.1038718;1.7515305;-.34838563;1.0085514;.33547932;.077998661;1.4968882;1.3295968;3.1795895;2.7452416;2.5112016;5.7919798;1.7237233;.77619129;4.0276651;4.932065;3.1484475;4.8732305;2.4271543;2.8521171;4.2492409;.55297977;-2.0349405;.00061013509;.5189178;-.051726323;-1.3403355;-1.2820271;-1.1094005;.33114004;.89833003;.67450011;2.0873721;.56254625;.94536144;.30048919;-.60615253;.57321525;-.24025971;-.84150475;-.61928117;.76892364;-1.815478;-1.7540373;-.86923105;-1.6103743;.51788354;1.0314338;-1.0692459;-1.7905173;-.12935902;1.018754;-.074514329;-.20099896;1.4708443;.70504928;1.9720516;-.32950518;-.22509898;-1.3926872;.2433565;.081881784;1.3375273;.30816704;-.25078249;-.91022748;.49759352;.38087776;2.7876396;.41359255;1.246333;.11345319;2.686244;-2.8657017;2.6204426;-.042074718;2.2049739;.80747122;2.3168259;.99110281;.48077977;-.11192162;1.1258858;2.0816553;4.0479827;3.2647061;.99187195;.76340866;1.7535553;3.6948776;.25252172;2.4763906;4.7039576;1.2558835;1.5000978;2.1767683;.23954193;.72257322;3.4513853;.91943967;1.8222967;.4915489;-.025590962;1.5213152;-.69550401;-.47431549;1.0146496;-.18064505;2.4353449;.45268059;-.38629648;4.7796025;.66999811;1.20575;.63738006;4.3080449;2.2723818;2.8047452;1.1258348;1.7480522;3.6820982;1.3952729;47.172134 +2.7202926;-.40650615;-2.3413367;-.14942752;.32164112;-.70180827;-1.0657382;.014648312;-.20895666;-2.0567338;.47475913;-.98749065;.64596474;.047796715;1.8975706;1.3886641;-1.3529719;-.40763026;.88491762;.56446272;.45677188;-.67590088;.74253809;.48206252;1.0485936;-.20384602;.16417623;-.32745034;1.4500004;-1.1440194;.84594542;.45533839;.35675073;.30281645;-.075151406;-.76866192;.094909482;.4795453;.27533659;-.13422309;-.48110446;.50177002;-1.2425073;-1.9132133;.56636989;1.8116788;.079522125;1.1436775;-.18331921;1.9952761;1.8078328;2.9804871;5.4542847;1.6199919;.56175572;6.1337032;3.0804615;3.4372168;3.2626209;3.2457614;1.7675389;-.44420755;2.8655756;1.0087984;.57262349;.73311681;.5936479;4.2957368;-.32430083;3.8408451;3.0691319;.92236799;4.3258448;1.1274961;-1.7457716;3.5992553;.6694963;4.6426134;-.70860451;1.8254384;.088962786;4.0826759;4.9317331;3.194272;2.0357928;.076632753;.1949245;2.4152913;1.5883636;3.3268526;-1.240563;4.2879586;.80850381;1.3135828;3.2253993;1.6076624;-1.7182173;2.0958867;1.499252;4.5155597;.66225451;.52252316;-3.2868969;1.5477538;.45143929;-.74538177;-2.3211088;1.3570547;.20043844;-2.0659385;.13407798;-.44748569;1.6911875;-1.4120452;.83041775;.059835974;-.12610061;-1.760681;.21626595;1.6393098;2.0624332;-.025871038;.23190132;-1.351656;3.2670455;-.79419512;.024509821;.6844545;.25320482;-3.3241153;-.95972425;1.4356205;.08429227;2.2145646;-.58200675;-.37044901;-1.7046822;-.56553864;-.65845251;-.14670941;-1.2752782;.82693642;-.68046868;-2.3245571;.24884361;1.5680532;.15482941;.89959329;.91061842;1.0559343;.92874432;.072148398;4.3158164;2.3497865;.99059355;3.9715011;2.5979187;2.5549088;4.3938375;2.3118858;-.42376637;-1.2284814;2.8759785;.031949472;-.54298079;-.4247058;.77169144;2.980581;-1.1790574;3.17312;2.932708;.45053652;1.9733593;1.7840123;-1.2380921;2.9968576;1.145205;2.4413812;-.068762794;1.1175238;-.52519774;2.8511581;3.1622622;2.278038;.4762325;1.511052;-.52106726;3.0840037;2.0996013;2.0608122;-.46113005;4.2770033;.41415703;.89754218;1.1582086;1.6509153;-1.6068114;2.3579063;.9465782;3.3672655;54.753647 +1.7016209;-.16413367;-.60028034;.73130363;.9102875;-.91698426;.43956995;1.0096194;.41047505;.88790643;1.1572042;-.37674507;1.3924713;-1.5856553;1.2969618;-1.121609;1.4476533;.91023707;-1.6823159;-1.0053152;.010547659;-1.586722;.14766654;.767717;.5729118;-.36788991;.71307898;1.594979;.82093841;-1.4431372;1.0695506;.15768194;-.91235393;-1.7798758;.44537422;-.70965987;-.010576284;-1.2476025;-.71042401;.52000773;1.3091732;-.82565725;-.37649783;-1.9406077;2.1680984;-1.902675;-.18080005;-.53189832;-.7380411;.11176988;-.51158524;3.4353421;2.2002385;-1.6812338;-3.0835087;1.7383325;.42074338;1.9693218;.28142923;1.6754819;1.4830717;2.7055163;-.51156068;-1.0373932;4.429358;4.268476;4.4542551;2.1698549;3.9152865;-.11663205;3.6068628;1.3021208;-.5161432;.36730832;3.8527417;1.0223424;-1.4769909;1.688413;1.5353636;2.4750695;2.6115117;2.0525846;6.0114713;1.0145218;5.4385386;4.3667479;2.6771164;5.457777;2.0880456;2.8007355;.56364232;1.1425152;1.7684512;-1.1929649;2.9964733;1.116632;2.6263845;.65408903;2.6887338;2.5377836;.61975181;-.021522058;-.015395402;.23757532;1.1753786;-.99333018;-.65260637;2.5726955;.15036702;.18300068;-.28465268;.79237491;-.78140706;-.61919636;.91875362;2.3981128;.72190475;-1.5168686;-.6750378;-.78332174;-.46173874;-.45551953;-.33292434;-.9779678;.57871056;-1.7583983;.29399627;1.4634982;1.9314407;-.79752892;-.0646272;-.75409055;.16163771;-2.0091136;1.023639;.13134843;-.7055245;-1.7026187;-.56956601;-.045323476;1.3815156;-1.092489;1.0063417;.51893371;1.971525;.43195358;.19055389;.61225623;.26279244;-.41413569;-.62737066;3.9795101;.98306817;-.71676284;-3.142096;1.3205844;.21707663;2.4248235;-1.0948199;.73933488;1.3599613;1.6748173;-1.8820652;-.18945448;3.9769452;2.3814657;2.8402381;1.7238301;2.7369411;-1.2951572;.034944639;1.310428;-.34695745;.025210373;2.2942078;.19004078;.68535644;1.387257;2.2364166;1.2702961;-.16392687;2.3019876;4.1232195;-.87191206;4.1844072;1.6829214;1.2879827;4.0409827;.70995069;2.8501575;-.11794257;1.9579027;1.1483353;-1.0707282;3.588486;.69602394;.18683784;2.075093;2.2993941;2.812362;47.630733 +-.458949;-1.0227422;-.59011388;.67655778;-.20050925;.24676219;-1.5749687;.17209348;2.1704791;-.29503584;-.57774746;-2.3559387;.28434443;-.99408263;-.34828255;.18803459;-1.132871;1.269387;-.3548882;.22052723;.27913013;.7825554;1.5743062;-.21373691;1.2669344;-.15835452;.31145886;.95929301;.55794466;-1.1908833;-1.8187116;-.50501943;-.59924638;-.8372674;-.4311066;-.67491817;-1.242862;2.1696711;.092097737;.92025554;-1.7509875;-.62622839;-2.3117378;.7234984;-.58494264;.37413156;.79863936;1.0200157;-.51374871;.17801942;2.5810142;4.1179819;4.1573191;.69889581;3.5714478;-.0784382;4.7917042;3.8990092;2.4275613;5.6488218;4.680295;-.22289859;-.29741976;.78009605;-1.1625276;.26087418;4.3942122;4.1543236;3.0046091;3.287704;1.4343749;-1.2334526;.86294115;.16044714;2.5511599;2.256052;2.8316455;.61755449;-.1441043;6.0273757;1.0983931;-.24763912;2.1242473;-.24197924;5.0838881;1.6357758;4.1100221;.84063894;5.9114676;-1.4917908;3.8162222;2.279964;-.25742605;.55042642;2.1388061;.18955831;.72981101;-.52834302;.86134076;6.0926828;-.3943648;-2.3220394;.18606147;1.79377;-.1764781;.68796939;-.57049507;.58725655;.1682563;1.2174287;-.11344198;-1.9698851;-1.963307;-1.6500597;-.85290867;-.62500781;-1.1993294;-1.2801038;-1.1759309;.34405586;-.93337476;.043931149;1.6943611;.15221089;1.227137;-.43780199;.15640149;.39286515;1.0797805;-2.2191327;-.94145745;-.34381443;-.050747339;-.70697397;-1.3988029;-.64894974;.73722082;2.157048;.90996003;1.9992909;-1.2941722;-1.7493705;-1.3103698;.61942124;-.028714692;1.0820018;.76207972;.58866292;.24231999;-.73355848;2.2945156;2.6402085;1.5233204;.52879047;1.1610795;-.25642642;2.6866724;1.3396271;1.9600897;4.9420381;4.4812074;.4521488;-.91917783;1.7627758;-.5569042;-.058901645;2.6718152;3.699115;3.0886631;2.0021636;.18712018;-1.0965245;1.8796914;.14014295;2.1826954;3.5014455;.83506012;.61721718;.15653355;4.6136022;.90992945;-.47509086;2.581526;-.21315254;2.0997891;2.269984;3.5587888;2.3822069;5.491097;-.47434381;4.3500519;1.6196135;.40280956;.044982933;2.2231879;.61904639;-.33782858;.4343242;-.45979673;5.4354587;43.881561 +.83889347;-.077999912;2.8536661;.80066949;-.69980687;.82371515;-1.4650244;.12236685;-1.2688792;1.8659927;1.3702147;-1.3335075;1.4607086;-.40494111;2.2479568;.83391076;-.64566171;-.31003243;.97956681;1.2675976;-.39610058;.63405466;1.5102956;.41073921;1.1104362;-1.3341575;-.26792535;.29740986;-.60204327;.22547083;1.013195;.27839822;-.67284912;-.011742008;-.48675132;1.4927673;-.44551942;.27820387;.10798668;-.0029733919;.48980227;-2.2614191;1.591103;1.1542633;-.51288509;1.0133237;.27634999;2.9613619;-.18381512;-.52032346;-.16619778;.95797712;1.0223553;3.669481;6.903358;4.1837764;1.4349569;2.5235112;3.7997601;4.959619;2.8798211;4.2580762;1.7030607;2.1631138;.4078756;2.2410166;2.8104591;4.0681849;2.7181339;.51073647;3.0984707;7.0967269;-.71463925;-.84086078;.15901859;3.6169591;2.4774961;1.8479018;2.6005316;.1508114;4.4259181;2.1155479;.73523605;6.2265639;1.3174263;.010510236;1.0993788;.6666255;-1.0398625;4.146966;6.5232654;-.57251811;2.7580135;1.6146741;1.7524244;1.962677;3.2500544;.99058467;1.3572701;2.7102728;.86956519;-2.0134203;2.3138847;.48490831;-.81118304;1.8074814;-.14562365;.23343089;-.33530352;.67925453;1.4624108;-1.7214453;2.2329302;.78045833;-.26393679;-.29988515;.34066826;.77861595;.99363065;2.4137762;.66259289;.63252217;1.0065708;-.6922558;2.2547922;-1.1203008;-.50054413;-.28794071;-2.965215;.34837729;1.5443764;1.1709048;-.8872757;.55400008;-2.7366445;.94713575;-.14555256;1.436918;1.8333981;-.64360875;.53296936;-.60570478;1.0559489;3.0078547;-1.2441845;2.8138733;1.7040671;1.7330852;-2.3188834;.57759356;.20407245;2.322206;1.324296;2.1407683;5.1832886;3.4703653;2.3899102;1.8553759;3.2795558;1.7280508;2.1256337;1.9889524;2.1597385;2.4630511;1.1513025;3.2822385;2.2826724;3.2975318;3.050559;.072589606;1.1887729;5.7401032;.50403172;.33246878;.29826158;3.6537855;1.2593979;3.9932764;1.855176;.84253532;4.0814838;1.7794257;.62319076;4.5093555;3.1887364;.41925198;1.3872738;1.200362;-1.5661938;2.6667821;5.2106285;-1.2849611;1.2183071;.68544531;.13515203;1.0045083;1.9187611;2.4170108;.068563119;1.9729377;67.09214 +-.80947697;.47477871;1.1142588;-2.1251473;-.70607328;-.89822727;-.055139419;-.61057287;-.64307779;-.78369319;1.3775611;-.29086369;-1.5088332;-1.1201751;2.6211648;.84781688;-1.3079491;-1.3555096;-.82702273;-.85170853;-1.297646;-.49289057;.099350333;-.6177876;-.14362669;.30101246;.93073964;2.1941733;.73199898;.41114804;1.9706805;-.28893;-1.2133826;-.81372905;1.042981;1.1104511;.73680902;-.12181638;-.60896319;1.4600819;-1.4076766;-1.7430986;-.65361756;-.41977358;-2.4285455;1.4259802;-1.912145;-1.3296789;.16818494;1.2231894;2.0713882;1.5233209;2.2234855;1.2837551;-1.1631007;2.9691331;.29586783;4.9315696;2.187371;-1.514757;3.2293065;4.7445602;2.1587224;2.0898266;.54534197;1.2074025;4.4097991;2.2608604;-.60582346;4.100482;6.8590083;2.8078597;.98928636;.55994713;2.0119631;3.3942137;.59205478;-.9174419;1.3181658;.32691887;2.3157649;4.7572203;2.5560575;1.0720501;2.226388;1.9020642;2.6992271;.1244891;.95143753;-.54993033;5.0227003;-.80353135;3.8404994;2.837683;2.500953;5.6428018;3.2807376;.46082205;6.2803736;3.4134748;-1.1820691;1.7422714;-.5508126;-2.0841222;-.70090002;-1.343122;-.42183378;-.14774415;-.44604829;-1.3587391;1.2713153;.56283379;.77754384;-.61738211;2.0198469;.44356501;-1.2544713;-.94370317;-1.9800307;.017162573;.80088967;1.0008092;-1.7623218;-.50899845;-.1534774;-.27847233;-.096832275;.50677186;.51381075;-.076527484;1.1030867;-.91925567;-.92252678;.1435854;1.8542128;1.0268807;1.2121875;-.046325453;-1.0528847;2.3391078;.32867199;-.13255961;-.95763159;.65019286;-.33210599;.49604961;-2.6215763;-.91080427;-.10703383;.23119357;.97347969;-.81239903;1.3622453;-.66950446;-2.6223645;2.6467516;1.3495109;4.3162575;.42755687;-1.2919446;2.6915042;4.1609778;1.0747772;2.9692311;-.15497774;.94117302;2.8893433;.91102988;.14925838;2.5166743;3.9910424;.3262535;.18704121;-1.1771634;1.7794193;1.5474186;.74836105;-.52538538;.99850309;-.6708439;.048181806;3.3923547;.87170309;1.9818347;1.7369846;.013680468;1.0052452;-.7586754;-.075417481;-.48352057;4.3921342;-.96243995;2.5228314;2.2044475;1.8870108;3.4783723;3.3712363;.91108501;5.4640255;3.097398;50.112976 +.085498668;1.1117766;1.7760029;-.33467895;-1.9768894;.93931085;-1.3211304;1.7154297;-.31106102;.45712194;-.19965096;-1.1941549;-.57559514;-1.6590692;.19135895;-.71387661;1.7000794;1.2817241;-1.5700777;-2.1082141;1.9971662;-.55114937;-.16191633;-1.7735837;-1.0225488;.52364159;.053374909;-.40519822;.24747923;-1.0265281;.50146234;.45195103;-.8077538;.57115322;.44433004;.32420686;-1.3365769;1.0573291;-1.4136105;.88002145;.0027109913;.953794;1.5940788;.50427926;.55286062;-1.8329209;-1.5539753;.68325019;-1.2883327;.46372753;-.48115775;2.1771517;-1.6964108;.12753586;5.393856;1.6370384;4.6439261;3.1857965;2.6261358;1.902299;3.5972421;.8822192;2.7569616;4.0452342;3.0687301;2.6403022;-1.3064402;-.045867346;.71290427;5.2498145;1.6864941;2.0114584;6.0238562;-1.4661353;-.48726621;-.022888092;-.30648327;-.0029777337;2.6823964;4.3155808;5.4415474;1.0107434;2.2053511;4.7712617;1.5081338;3.7997861;1.9472045;.82153881;4.6778021;3.628381;2.5300083;-.57189316;.8484655;-3.5571759;4.4124227;4.3785753;5.9341841;.60083824;1.0155948;.36998641;-.52831084;.47487333;2.1819692;-.41170135;-2.0015943;-.73790509;-.19129325;1.2768347;.23545575;1.0697683;3.0570965;.60258698;-.99086922;-2.671309;.10686649;-1.452901;1.2618219;1.0716548;-.51475716;-1.7372262;1.2996651;-1.9253448;-1.1291593;-1.6256306;-2.094522;.86158228;.1108282;-.83830464;.43508196;-2.1559565;-1.3785267;1.2784333;.3576135;.85429209;.68770897;.42958057;-1.7338978;.059901249;-1.2139595;-1.1459888;-.68839294;1.5220137;3.1053274;-.24297021;-.18325506;-1.6756999;-4.2499347;.77154344;-.22060302;.44713712;-.98740238;-.23618607;-.99621987;2.4013493;5.4041471;.97088975;5.3354049;3.20119;1.1511283;2.2840569;2.8750331;1.9353359;1.2525182;3.010603;2.2432716;.91439569;-.66636175;-.24869937;.81815994;4.0142198;2.0268145;1.4850371;4.1198268;-.67205483;.095824547;-.59993452;.48294502;-1.0654548;1.5013788;3.5230393;4.5042334;1.0271254;2.5601568;4.1622853;-.23046024;2.8038132;1.8902192;.46826744;4.5338802;1.0777038;-.39086449;.0044662878;.98040193;-3.488996;3.8703918;1.9474649;4.7131128;-.75017923;.21790527;.18384415;47.114101 +-1.2320179;.96931499;-.19464755;-.80723965;-.92520106;-.17300105;-.2418694;.069488272;.2994315;1.7428145;-1.3252378;-.64950186;-.2270546;1.9807228;-1.2174063;-.14350545;.12828767;1.4626986;.20476702;-.30413738;.31808707;2.5062788;-.52517462;-1.7635028;-.4915401;-1.4986557;.73618811;1.8798577;-.43734398;.095938727;-.23487353;-.65219164;-.3940959;-.30067798;-1.7436996;-1.5685071;1.1941159;-1.4292812;.94473022;-.86484104;-.74177694;-1.4501028;-.11902387;-.11935741;-1.117426;-1.7499378;-.053172503;.16042155;-1.7702683;.098738432;1.401418;1.2877278;.81175363;3.6961689;-.058459707;2.967891;-.92071283;-.78064173;2.23315;.76521081;1.8482655;-.55870819;-2.6666491;3.7396166;3.2057478;-3.0483544;.61212015;.27140597;3.5017898;1.2369088;3.6679614;1.633635;1.0887984;.99648792;4.3792419;.98071522;-.0052552866;-.95268327;-1.4818031;1.1133443;4.1705141;5.7619305;4.7532425;1.3490613;-.66728818;5.7889857;5.5877442;3.7020204;5.1155753;3.0645573;1.5201575;3.8035052;4.6425118;4.8137918;1.9953622;2.9082355;2.8455968;-1.0957819;2.9423268;3.314368;1.0685016;.43197295;-.34252837;.3827166;-.77651685;1.2127895;1.1037061;-2.6891537;-.78074348;.38831794;.88073194;-1.3545659;1.0530411;.19224867;-1.5917671;-.73112929;1.1004642;.32555318;1.102705;1.3183007;1.3176891;1.749271;.0053589446;-.30316052;-.81292361;-1.3520803;2.1218772;1.5039432;-2.2015793;-.2555818;1.3150911;-.33259559;-.94070905;-2.4165349;-1.5985305;-1.4113194;.5257895;-1.2906547;2.0507183;-.17079364;.19397773;-.071385756;.33551285;.7093572;-1.6763333;-2.7196248;.61320019;1.5188122;.080035217;-1.1546106;.22868361;-.26810265;.61692649;3.8721957;-.77086067;2.1163604;-.53973019;-.64097303;1.5120603;-1.1199635;2.7954905;-.83680481;-2.3526673;3.7117653;.8841297;-.44121575;.1474237;.3506963;3.0774581;1.3267807;1.9838567;1.740634;-.24470697;.15250124;2.6537488;-.64003456;-.84153301;.067942172;-1.2352082;3.0797615;2.0605557;2.6558056;3.1093705;.55401051;-.38882914;3.5644028;3.8766716;1.945074;1.5159187;1.9818066;.42934528;4.6125183;2.2437298;3.0586045;.71717334;3.1832323;2.3582144;-1.1784289;2.5541081;2.1565061;43.986671 +1.9601108;.40528765;-.4612734;1.0767733;.30601141;1.2792203;1.170892;-1.1674057;1.0891079;-.49524549;.40546173;-1.2914369;.062017668;-1.8490554;.089543492;.40349409;-1.639661;1.3468714;-.94289541;.6189521;-.29117677;.02007412;-.19995917;.36170316;-1.017655;1.0815341;-1.7263345;1.5808345;.89379305;.52235854;2.1977031;.59175599;-.20597611;.8264702;.83867186;-.024471944;.46844479;-.82447755;.17780088;-.35760215;-1.3675674;.51360399;.046599541;.9596386;-.89974183;-1.151896;-.44121867;.32810923;.76414663;1.2244767;1.2946746;3.8964171;1.2580874;3.2347574;1.8225498;3.0066073;.5900631;3.6474557;2.8266778;5.0810747;1.4195769;-.19893765;2.457571;3.2872279;1.7065014;.62640351;1.5553659;.75016457;4.2253342;-.72807616;2.0986047;4.1533723;3.756958;-3.2042339;1.4944328;-.4883604;6.2804284;3.7343879;3.6006849;5.867528;3.0589182;.64424115;2.0130901;1.6510947;2.001991;.33832026;-1.1838392;2.7446523;.79646641;5.2396307;4.5579591;.5213728;2.5029573;-.35431784;2.9018314;3.3973358;1.4506649;1.3527451;7.3707576;1.5860637;1.1131605;.51887345;.16218831;-.87316287;.92431277;.94521427;1.8609385;-.1383141;.64208972;.32978609;-.073066227;-.57702237;-.25875181;-.55951768;-1.5492615;1.4657263;-2.0364747;1.5056375;.06738624;1.3575828;-.52046323;1.6782652;-.47821951;-.54119647;-1.3169304;-.67785275;-.49514893;1.1661855;.15362228;-.68075758;1.3125955;.23521192;-1.0478996;.37978062;.6910091;-.19503927;1.6230638;-1.0732529;.30939135;-1.1616647;-.011000486;.16529107;-1.4025185;.47992393;-1.4080793;-.52350718;.40319964;-1.7530162;.29789549;-.58328956;.67293561;3.2146089;.86016822;1.4670967;1.3855437;2.5168104;2.834296;4.0388823;.52400529;5.809989;1.3517187;.76325899;1.29989;1.8247808;.52122974;.91712219;-1.0429463;1.5822096;.94745404;.88591117;1.1440877;3.0004575;2.0684738;-2.9295125;1.2369876;-.70670611;5.9925056;4.1067572;3.0573015;3.2128513;.6150201;-.029673427;1.0083753;1.543998;1.3680712;.23772092;-.94089466;2.5005581;1.6617538;4.0820837;2.6235964;2.8361297;1.248239;1.6112473;1.7120938;1.6228086;.57209396;.32789177;3.9083323;1.4249755;56.414803 +.34926629;-1.0158715;-.7303592;-.88554484;-.36104974;-.11324712;.7234472;-.99383599;-.36970323;-.039792355;1.1204535;.052936289;1.7840894;.73535907;-1.3345166;-.41680777;1.0836108;.62805307;-.55068666;1.5130918;-.42764467;.82305306;.64355701;-.75318849;-.27106631;.5678035;-.051732637;.44078895;-.48638752;-.46644574;.10434291;.080447771;1.720179;.4733547;.52083158;-.34835592;.29673454;-1.4550903;-.45745379;-.039746203;.19460508;.42206466;-2.2272527;-1.7142646;.27351901;.30532086;-1.2759831;-.53400004;-.92951655;.17434527;4.3192086;-.49172896;-2.0075281;4.1193762;3.9634559;1.0800973;1.2419809;-.36999089;4.4048953;1.2575802;2.2706776;2.2015884;1.7234242;3.4242294;2.3431907;-.34270599;3.4098451;3.6880605;3.7857096;3.4567189;3.1278777;3.0103292;1.0817802;6.9183669;2.6740217;3.3309641;4.6331625;-.99775535;3.3181906;1.4309393;-1.9580938;.92072999;.88787341;1.3993934;1.3779074;1.1549282;.87664109;3.2228832;.31271586;3.9229479;5.4208541;1.7396781;3.5900619;1.9288273;2.0618687;5.8387609;3.7980092;3.2304459;1.7614139;2.6543617;-1.4654802;.59440517;-1.051545;-.62376696;.59006917;1.1067681;-1.0050646;-3.5101435;-1.1716669;.2932595;-.07655438;.93740827;-.13264494;-.18494919;-1.7096237;.72762221;.97993785;.63809752;-.54106992;1.985375;.16266464;1.0078713;.21094832;2.4583299;-.093916945;.39388317;.17311145;-.11983936;-1.6659521;-.84276664;1.3949952;-.80359322;-.5115639;1.6474973;1.8890476;-1.0801191;2.1385009;-1.4844315;-.63211399;-.099741541;.66892719;-.96366364;-1.2697054;-.71673703;.036278687;.034993008;.66855991;-.65627378;-.1386297;-.66921955;2.0696695;-1.4563361;-1.6233059;1.5860573;3.0190551;-.23180659;.36501253;.61288494;2.383399;4.470592;.78609997;2.1282246;-.27190724;2.9926078;.69226646;-1.1003919;2.1276133;2.4075398;1.7266506;1.2682127;3.2022474;2.3139935;1.418521;6.7049022;1.7731743;3.3793273;1.7643244;.60770595;2.5476081;.3245925;-1.524855;.093937494;-.51124072;1.669125;.066882774;2.9704173;1.3967339;1.6051594;-1.340963;3.0489788;2.9676604;2.4762962;1.573867;1.3481735;1.736331;3.7496493;3.9899492;2.4503679;1.2112354;1.3319507;60.322739 +.021992298;-1.2389009;-.75377834;-1.1206369;.78133786;.97036391;.74497157;-.14652133;.37062332;-.058079265;.83842534;.15514919;-.89500719;1.2463324;1.4784434;.67745811;-.60736221;-.44758296;-.48389971;-3.0993924;.39951122;.94141901;-1.1917861;.52836633;-1.4262508;-1.1938719;.42682478;-.38623962;.058088332;.38708207;-1.1262934;.43785712;.69708991;-.75443733;-.65214413;-.95272702;-.42339498;.3903729;-.25623786;-.81725222;-1.000912;-1.1670147;.2869615;-.37374255;-.24646348;-1.4840215;2.1233823;.93250597;-1.0053176;.91081756;4.0918021;7.5322347;-.11273777;3.7348711;-2.5709624;4.4763169;1.6118757;5.1373072;.0077993944;-.83079869;2.6084514;.92722279;2.5143578;2.6916358;.84352714;3.2032914;1.5546921;3.209914;-.49680838;4.8998966;2.3703883;.78233367;.79098135;3.6596797;3.7013295;-.35421339;4.9024048;2.5736928;-.12425335;3.4563563;2.380574;2.8165524;.36715445;-.40333778;4.8186579;2.3519301;2.5115764;-1.3488582;3.0928168;3.2150433;2.4090583;.30837217;-.0066486523;3.1210876;2.5538702;3.0825891;-.085002504;.53195119;.73977953;.4710204;-.58044684;-2.3570533;.93513834;-1.1568433;.65105915;1.9327413;-1.1409173;-1.8089896;-.47393876;1.6379465;-.032133732;-.41975001;-1.2793288;.38079599;2.1251214;1.2981352;.19188188;.86704236;-.21732998;-3.2215216;.81654578;-.17357309;-1.2487807;-.81861758;-2.13714;-.94775432;-.3041099;2.3670108;.57008338;.47557887;-2.0623076;.33443284;-1.5702384;-1.3358768;-.88042891;.25236911;-.50908864;2.3844106;1.0170887;-1.1173968;-1.8618143;.80159318;2.371649;-1.051387;-.1279773;-1.2887996;.62529176;-.18122202;.36685944;-.31127521;3.4963129;5.8920059;-.94616222;3.863169;-1.3008525;3.0007846;1.3983245;3.644532;-1.1402652;-.37851596;1.8937087;1.3976314;2.0417073;.63291216;1.1937518;4.8073997;.95017523;2.8546822;-.87244064;3.4351532;2.0743971;.50931901;-.16207092;1.6226263;2.9084826;-2.3946824;1.4535444;3.0470753;-.32580531;3.5800087;2.2535257;.46108302;-.73575312;-1.6971294;4.7843957;.90500063;1.4912571;-1.4600878;4.6058307;3.1311338;3.5755289;1.2589147;-.50051838;3.613009;.40380022;4.4540896;.30224392;-.62656021;.12112162;1.3411793;44.914509 +-.079729162;.075325266;.54779321;.27389166;-1.3634119;.84660131;-1.427619;.93811733;-.48662406;-.62753463;.4167423;.7074241;.36815992;2.0650516;.92478234;.10733531;.25979772;-1.9037528;1.7313213;-.9872489;1.6512712;-1.9046985;1.8642697;.83956981;.34924012;-.35069478;-.45497116;-.34459859;.54904741;-.28690895;.93476188;-1.0533742;-1.2982711;-.80038899;.27079251;-1.5203594;.35931572;.43235141;1.1083355;.58412302;-.41465697;2.3705168;-.14812282;.43133092;.6201576;1.9276373;-.65273708;1.3925653;.099345207;-.9365685;1.6912323;4.3127069;3.1248903;4.9123607;4.0796351;1.6450323;5.6449804;3.6545255;5.0107512;1.6332539;-.46016139;.41805738;-1.9767855;3.1979005;.40365756;4.0599656;-.41959274;3.53723;2.3379755;3.9900472;3.9667716;1.5786757;3.0275226;4.1127086;.62068999;.46369925;4.0823727;3.3135245;2.7363374;-.66622585;3.0855153;2.048018;2.114337;-2.1314018;4.4142933;-2.1284351;3.072686;2.8512967;1.5330836;3.9871321;1.4092547;.9061873;.62827772;1.7330945;3.0925019;-.67110515;2.2367129;1.7086027;2.486485;3.1513109;1.5638582;1.8861234;.61649257;-1.3429712;-1.7472123;.15251495;-2.0008404;.023940219;.088810556;.82420903;.80649579;1.3587818;1.4416373;1.0962899;1.1545079;.53108054;-1.5710368;-1.8631113;.51815051;.13307522;.093428969;.45021355;1.2458616;1.2894316;.41757169;-1.6281929;.025791317;.35814327;-.1585978;.88636166;-.05066783;-1.9830809;-.24385144;-1.6434201;-1.7697521;-.85676122;-1.7227671;1.0584023;.67819017;-1.9533257;.96676672;1.4863806;-2.4042153;-.50501537;.95412797;.35565025;-1.0601423;-1.0149187;1.4736639;-.092316195;1.1838362;3.3191588;1.2298011;2.9824886;2.9584293;2.1256702;4.2015686;1.1166472;3.0542133;1.177736;.40244681;1.1149461;.72181213;1.2376225;2.0247645;1.8493896;-1.2339793;-.37942052;2.5617859;2.2060978;2.6590462;.83681118;2.2588592;2.7427151;-.97796094;-.14654782;1.9096507;3.1751087;3.3407159;-.47712392;2.14674;.77836663;1.7758971;-1.8337164;.7205348;-1.1547592;1.3909032;1.9685647;3.1568811;2.8195121;1.5155478;-1.0230105;1.010473;.013584373;2.5544646;-.72703815;2.80758;-.097202256;.47916153;3.860405;61.917561 +-.086068079;1.4548664;-1.4375449;-.29184562;-.033292599;2.0396092;-.36197045;-.12214494;-1.8697357;1.1037682;.58363199;-.52651089;2.6505592;-.87583876;-.40030965;-.16208032;-.79731977;-.73193449;.14004508;-.3073028;.18889834;-.47535557;-.16545427;-1.397423;.11062958;-.014133269;.99771833;.45451963;.73929262;-.2277175;-.88796085;.62117577;2.9561024;.10334453;.061729245;-.2707226;-1.1238014;.21469523;.061250933;-.63682753;.8838709;.35865623;1.9715577;.27203491;-1.1692721;-.58885282;1.170058;1.4512769;-1.0655555;-.29226559;1.6832461;.30735952;4.740108;1.9528922;4.4479985;-.17346911;-1.3858483;1.4831414;3.0648203;.091357768;3.5721838;-.068328544;3.2587059;4.6677871;1.5398512;.84813577;1.6734798;4.0333667;3.7187252;-1.1281401;-6.6868377;3.1215961;1.8275304;.50438249;4.5346889;3.434835;.87731373;.21714525;4.4267826;.51019591;-.083546758;2.9054182;3.3260021;5.3733187;-1.7392926;4.5197458;.015164505;1.7857808;4.5907907;2.067977;4.578259;2.1721611;2.4222164;4.0543056;.72367179;2.4847856;3.1934099;3.3409102;1.7261139;3.9864135;-.93777579;3.0893166;-1.7139462;.20344305;-1.4901664;1.5226157;-1.3377056;-.16665465;-1.5080746;-.11681582;.6766547;-1.4143522;1.9407557;.20439322;-.6205368;2.026752;-1.1288044;.15718354;1.0938298;-2.4538162;1.3393089;-.11324024;.8416124;-.21202584;-1.4252445;-.55296487;.56867039;.20107;.98953956;-.18517289;-.24208175;1.5025744;1.2120843;.43833795;-.43443465;1.5075541;-.93490249;.59244752;.33938149;.017243987;-1.3710258;1.2721038;.63002431;.72221416;-.71022063;-.96327823;-.0064163757;.30458298;.38513514;-1.4762102;2.091253;.20723565;3.3081112;2.1538126;4.3177137;-.69958431;-2.5873957;.094111264;1.3795136;-1.0648215;3.333586;2.0127914;3.4652944;3.8417265;2.5641897;1.0766163;1.7312287;3.6690383;1.1027721;-.090737246;-4.068099;.19051464;1.8810261;.41007599;4.7620506;.89462388;1.3791013;-.16933371;4.1441364;-1.3940526;.015276032;1.699177;1.6628749;5.5744915;-2.223093;2.8491545;-.80719173;1.804419;2.5692642;3.0821729;2.780149;2.5520763;3.4413826;3.9251673;1.1429044;2.6976602;3.6138203;1.9718975;1.043052;2.5513389;51.28278 +.019016832;.081179149;-.51939362;.32112086;-.013367245;-.27293557;-1.6496043;1.1047313;-1.4369954;1.3902545;-.0012555257;.20463637;-.78391302;-1.1109486;-.49649516;-.52500129;-.12346008;-.29442194;.4532626;-.43297538;-.2187853;.41621122;-.29663947;.10488451;.23856845;-.77319115;-.24326195;1.0089037;2.1176698;-.70248878;.49507657;-.70716161;-.40938634;.12872666;1.4238942;.44638446;-.43110472;1.6402915;-.99350679;.48100504;-.91247231;1.9335643;-.04926331;-.13270918;-1.809399;.040635794;.1789251;-1.1428961;.32657117;.085697331;5.1028967;4.0806861;-.71688998;6.3512435;1.1581414;2.0862694;-.28215474;1.2825539;2.1302419;1.1184394;2.6640053;1.7376479;1.3972622;-2.146131;3.1193092;1.4571307;2.7807975;3.3786168;1.3214428;3.7196023;1.3474467;-.090769775;.59052724;.5569104;.31587067;1.6849414;1.0631932;1.7729121;1.6395479;1.8642699;-1.2526441;-.10492762;.7098704;2.3992567;2.4411409;.048223939;-.16451487;5.1207576;2.1661122;3.7411175;3.2191892;.2818644;1.2742882;5.1748915;3.5902066;-.40812647;.44955954;4.9480629;4.5596342;1.4596347;.26145113;.51989591;-.63475609;-.44190642;.33253604;-.14761227;-.50024211;.35452572;-3.2559574;1.8127575;.79745686;-2.4729459;-3.1494637;-2.0679963;-2.3893833;-1.1510563;-1.2397076;-.46356133;.039517876;-1.2172242;-2.0478816;.24971949;.58074212;1.1088387;1.240494;-.030248532;.73870599;.6594044;2.0871065;-1.7418606;-.19617383;-1.3402478;.0588561;.65936041;.087001622;-.63420701;-.52004421;.56701696;-3.0797822;.63324046;.5744338;1.0761116;-.27578896;-.61783838;-1.443737;-.85878336;.73380041;-2.4428778;1.6367135;1.3514276;3.5285628;3.6225579;-.13734837;5.175272;-.32555944;3.0283735;-.32296413;2.0955896;3.7646883;1.1592802;.53886354;1.6171852;-.46259975;-3.0220628;3.0641301;-.33788842;.45599651;2.4569499;2.8039455;2.1407917;-1.1007048;.21834877;3.7358944;-.98270893;.49987176;1.3187612;-1.1537637;.20020863;2.3236911;-.53696853;-2.7296526;.92225277;.36935809;1.3251016;.41410828;1.3914728;.27574044;3.3045411;2.1733484;2.0775361;3.2895434;1.0473303;.61561203;4.2291002;1.8992316;-.40301901;-1.7191732;4.6915936;4.842227;-.20688128;49.587158 +-.77112424;-.79555929;-.19530009;.19916786;-.25016269;-.74954504;-2.4559569;-1.1409281;.34037355;.96331155;-.13558057;.47825953;-1.0953249;-1.6831075;-1.347402;.62436938;-.22309789;-1.022916;1.672478;-.61683875;-.060635284;-.4798075;.10910553;1.9018396;.17137253;.53470677;-.25725308;-2.177454;.89067888;-.31182265;-.82155943;1.4140592;-1.9230496;-.15946008;-.29959226;-1.1619976;-.077130012;.3281799;.36376518;.064466968;-.42106926;2.1879447;1.5049644;.13686334;1.2549875;1.1942019;.3997052;-1.2100242;2.3153157;.26260179;-.12107091;1.8638934;4.0178828;2.7522323;6.6378918;4.3040547;.26431274;1.803087;1.9838692;3.6251912;1.6572623;-.014071796;2.9772754;-2.0529022;3.4646707;1.1754234;4.0050726;2.7283642;1.4140666;3.505652;1.5165987;1.7286398;4.9494257;4.0535159;-.92014849;.80331302;4.3899636;1.4112035;.83711898;1.7802126;1.8500164;1.5457706;2.8516309;3.2919245;3.1426034;-.35154864;2.2935121;-1.252972;3.5237668;1.8827289;2.1069357;-1.7747016;-.077918254;-2.5630157;2.404587;2.1809385;1.9559554;2.437228;1.8829979;3.3699527;-.32174128;-.45652953;-.65669221;-1.0426915;1.904337;-.67737639;-.20140494;.69476032;.29522067;.14808734;-.61608404;-.37575138;-.46799645;-1.2415209;-2.7130773;-.60223389;-1.5341536;-.57148218;.27306566;-2.3327947;-.54740506;-.44311735;.59227079;-.0050206133;-.61805594;.20038328;-2.264056;-2.780751;1.349739;-1.830778;-1.1762617;1.9459565;-1.6791477;.59569329;-2.815594;.0021967404;-.024005288;1.5755749;-.090838142;-.99458802;-1.5069745;.22481428;1.4438845;-.30873999;1.3722647;2.10762;-.30951634;-.79114068;1.7992378;-.099039532;-1.6035695;1.5820551;4.0113306;3.0770202;3.153657;1.3848306;.95027214;1.498674;.93284684;1.8051022;2.8595772;.258964;1.960628;-1.9455794;2.2649071;2.2462943;2.3313761;.9026798;-.86307156;2.2590744;.55129433;.99801433;5.26476;4.1483784;-.67260265;.52190536;2.1047032;1.1123664;1.5774753;1.2366244;2.1764247;1.8092241;3.0743206;2.0597661;1.541442;-.64507121;2.911056;-.074987106;.94688833;1.6922349;.54340363;-.39840087;-1.0963252;-2.3389616;2.3416698;1.9172556;-.11565613;2.4692039;2.5401123;1.3123769;45.26384 +-.62630671;-1.5564383;1.4203825;1.1482778;.1141636;-1.5732125;.20065357;.77222741;.095663786;.54735529;.49555492;1.4803689;.81940317;1.8879851;.82796407;.53500861;.71077293;2.0297453;-1.2483748;-.6434164;.14153045;-.41475824;-1.7336264;-.20443048;-.83556378;-.30443475;-.44309455;-2.5698581;-.00078160519;-.46012163;-.83678967;.46924829;-1.0639964;2.7846239;1.3109418;.2265683;.19530389;-.32488683;.56273323;-.020370236;-1.4036741;.09403453;.86147815;-.4147054;.062543757;.63451904;-2.0947692;.31602615;.52428341;1.7180718;3.768501;3.2703779;2.3467047;.43726411;1.7380464;4.0168681;1.069455;1.7396773;1.9337678;4.1020784;.64172572;3.8254113;-1.5659671;4.5111842;-.66838229;1.4838134;-.028691635;-.24496929;4.4205523;3.4859304;2.1891761;.11136953;-.26798403;2.5603824;1.4193438;2.1587284;4.6503139;4.3646665;2.2635636;2.4364712;2.3059182;2.0900803;2.0174026;1.9641002;4.1717443;-1.0107495;-.61733115;.13399157;2.2903974;-.40433004;2.1129;.84682345;.59670454;-1.3215795;2.2010663;2.7735095;2.4399996;2.9381309;3.5067697;.18171224;1.117422;-1.8252677;1.2919209;1.4615412;.2494612;-.43955883;-.33824843;2.2768037;-.16319697;-1.2605571;.24793187;1.3132592;-.94992429;.54107153;.92668456;.94161355;-1.7265325;2.601208;-1.1538708;-.8552798;.34198192;.79890776;-.57443094;-1.628364;-3.1466863;.63711613;-1.0143011;-.019012289;-1.4729795;-1.2823623;-.87940019;-.89339304;-1.8656234;1.6233859;.71309054;.43901113;.087895855;-.61660665;.36903191;-.12667572;.024301061;.20930716;.53885078;.26499373;1.3250557;.14356188;-.53005558;.19037256;1.6641207;1.6242062;2.6217506;2.493547;.063582204;.22525597;.82703769;1.6262498;.13217254;-.94372106;.77213472;3.3740461;1.0881411;1.2470669;.052818172;2.205162;.6661489;.72610348;.18177067;.16679104;4.6620021;5.4004645;.60260385;.45334542;-2.5147099;1.531772;.41228148;2.1842697;3.0573893;2.924299;2.2257001;1.3240342;3.2410123;.68253416;.97692746;1.3259337;3.1229665;-1.2319549;.66860706;.41297883;1.5565104;-.16429806;.36473531;2.2981608;.17887913;-1.4859807;2.5776749;4.1273265;2.7056546;2.4970436;4.2625723;-.65689921;44.424911 +-1.1433889;-.042246457;2.2986612;-.052103285;-1.0135547;2.2181671;-.7253899;-1.2177522;-1.1469178;-.35416606;-.91092163;-.23104526;2.5965133;.26941332;-.74936295;.0088242972;-1.2980205;-.39973021;.005883554;-1.5833743;-.097501807;-.37888676;.3413206;-1.6013082;-1.1283289;-.32090899;1.3478557;-1.2316667;-1.174474;-.58588433;1.6161406;.8563422;-.35894781;.18578684;-1.5094432;.98309869;-.67534083;2.3072748;2.657021;-.10624233;-.3303569;-1.2907118;.14065692;-.21332927;.32322076;1.4315559;.45052797;-.26786891;-1.4555089;2.4770825;1.3473717;2.3447926;4.1660299;4.1807966;-.0024135865;4.272408;.49922106;-2.8592284;.0030668406;.85796267;4.4458618;.59066194;-2.4299593;1.4127476;1.1832036;2.0382044;6.8493524;4.2511616;1.0796746;3.265569;3.1515465;2.8929064;-.90086603;1.9746058;3.2902853;1.7148148;-.13941513;3.4326396;3.0936098;2.0983706;.97913265;2.2536099;.357907;5.0870204;4.1415009;-.678653;1.7146276;1.701333;2.909137;2.9086826;.72898287;3.1844997;2.0676103;2.8825538;3.5631981;1.2962286;5.1466384;-.76903433;2.7929955;1.5594616;-.32479808;.063775308;1.9232285;1.3305374;-1.057972;1.7384338;-1.1548654;-.30422863;-1.3635247;-.37511915;-.21926577;-.25791648;2.0044758;1.6528622;-.22085924;.14314012;-1.9356778;.48253316;.064401247;-1.6524974;1.396311;-.56855375;.52459693;-.35473579;-1.2755446;.43155831;3.5975308;.025923731;-1.2562122;-1.4801658;1.2739533;1.8030052;1.5420505;.56935471;-1.0562265;1.1837394;-.70234913;3.8986702;2.0916247;-.22066425;-.76221645;.71897417;-.33346957;.92526144;-.78359914;1.5415194;.85724455;.96747786;-2.1721659;2.7727368;1.0233005;2.5312154;3.0999479;3.3794739;-.032945495;2.3329926;.53729731;-3.8338757;.4438076;1.8643243;3.0490077;.52388489;-.63321573;.70355624;-.255283;1.2052665;5.1070867;2.7894449;2.4285791;.42752942;.72779036;1.6414126;.98196;2.6714718;.67091769;-.18115459;1.5539294;3.0612943;1.5661402;2.0623178;1.5770851;.44389793;1.0781033;3.2461088;1.4545743;-1.0597869;2.8275173;2.6300259;1.6691328;-.72291654;-.82966185;3.3169782;1.5604644;2.7597399;2.6971319;1.4153633;3.4058743;.062637389;.47814861;2.5960822;57.407925 +-2.0762548;.60556126;.7496289;-2.1360881;1.4613817;-.53503913;-.13858473;2.7659423;-.93556285;-1.3030342;.70900196;1.5505322;-1.5106033;.52404481;-1.9017484;-.70189989;-2.1857979;.71704513;1.6431191;1.0283754;-1.1254064;-.21440914;-.26542079;.8772698;.19761631;.47525197;-.92441148;-.45555717;-.86000955;-.88165677;1.4771051;.69547236;.22292291;-.59229553;-.99752867;-1.2319812;1.2109648;-1.0574894;.86850321;1.0377084;2.1302838;-.021254294;.77064168;1.0374019;1.0337329;-.15588604;.24961233;.67987096;1.6442376;-.093615286;.90562487;2.2873764;.61050296;3.7509727;1.6776239;-.056685187;4.607091;1.0275589;-1.1771915;.18630564;-1.3049977;3.8693774;3.7844424;.94923282;.61888528;.98038298;2.1543679;-.15602356;2.6834152;3.0723867;.96830207;.61876637;2.9981863;.20715642;-.65963143;-.92965597;.31903869;2.0050659;3.5006218;-1.34683;1.3539679;2.7639642;1.0252708;.89098889;5.696744;4.3737526;1.7479529;-1.2690599;2.4581451;1.458993;1.0713844;2.2060246;.98531681;2.7968388;.072852217;2.6187446;.50799286;5.2087336;2.5651128;1.0217119;.99054641;-.020105708;1.2689229;-.99474037;.80485511;.097639479;-.16895607;1.5530537;-.6135866;-1.9066489;2.633261;1.7820768;-1.7068074;.77025145;-2.2536278;.3363927;-2.9232607;.62725055;.62243283;-.44340211;-1.317961;-.36165056;.49066901;2.1002266;.2856856;.11636443;.47575286;-.38979098;.20283373;-.92889994;.71357679;1.2630117;.10856858;.15807147;-2.3682258;-.60576737;.58267319;-.18932377;-.10244958;2.8504591;-.022857567;-2.2101893;-.23774612;1.6812451;1.3716555;1.1798826;.34631914;.23542318;1.674618;1.083472;1.5016778;2.0984242;-.34070638;2.3728464;.87722832;-1.1674967;1.9012423;-.99868059;-3.5180745;.81256104;-.51995218;2.3925521;2.7494235;-.94342268;-.45631829;.95781767;.45794746;-2.6803477;.39046663;3.9949884;1.99062;-.24602583;1.5039276;.42856872;-1.5715423;-.53533006;.070871986;1.8348334;1.7815921;-1.0500318;1.1411228;.62741947;.78424501;2.0712502;3.182656;2.48632;1.2308942;-.28472885;1.3809438;.9964816;2.7229278;1.6994466;-.48814085;2.4657388;1.0035652;3.2055695;1.0504431;3.9944129;1.9129938;1.2640065;44.255318 +1.7070068;.61666203;-1.0518547;-.83044732;-.92707694;.093510725;-.23361306;-1.0551288;-1.1096088;-1.0190055;-.74818826;-.48689052;-1.2329297;-.051531352;-2.0475056;.38656539;-.28504992;.77354789;.8083117;.25361079;-.69641566;-1.064587;1.0231776;1.2640744;-1.8496649;1.1426741;2.0911536;-1.682627;.31572983;.73451173;-.47850192;.29828125;-.81753463;-2.1196544;.75631541;1.3508494;.52169722;-.21170191;-1.146571;.52804136;-.54368734;-.15011956;-.37074006;-1.8736852;-1.5463573;1.4310443;-.0093638618;-.39946523;-.50673902;-2.4434958;.12439034;2.3561151;3.5850601;-.13967076;5.1904907;4.2245989;.21386148;-.24267934;.49494568;3.9513147;.3611567;4.129838;1.4265497;2.2259498;-1.064634;4.8204298;4.8871846;2.0394726;2.0667298;4.8639078;1.567415;5.5853143;-1.6968155;.72442698;3.4865141;-1.8750967;.74526918;.86234093;6.5150785;.55508715;2.2861581;3.6037884;1.0937859;-.75015539;5.4097981;.20763615;-1.30308;1.4652634;2.7420545;4.3574843;.62362862;2.1079578;3.9246387;1.81197;-2.1229293;4.685472;4.4670568;3.7848837;1.7127157;-.3302187;-.078354254;-1.5614614;-1.0869846;-.0078484667;.85377026;.08698523;.72097898;-1.3491845;-1.6503611;-.31480479;-1.8393273;-.96381462;-2.1256456;2.023433;-.65051121;.53203726;-1.4059002;1.531242;.74243772;.3811326;-1.5167483;-.13958959;1.2624023;1.3927081;-.2695708;2.7440965;1.5504771;-2.2832634;1.1229941;.37942874;-.55721152;.58754158;-.79950124;.33682132;.11004678;-.091287829;-1.6804276;-.52324802;.52823299;.59321886;-.47024858;-.83104426;-.28132942;.27422056;-.92487985;1.2208111;.58194864;-.64706868;1.6947016;-2.6798582;.14971243;1.301182;1.980545;.65768862;3.6293337;3.9650705;-.41992968;-1.2926489;.68712211;2.6744671;.30243757;2.9890993;1.116756;1.3995473;-.61989427;3.2615271;3.6347442;1.7190423;.93477947;3.5868933;2.3717327;4.1097503;-1.8090246;1.0648805;.75411856;.065238275;.11370955;1.1110358;5.3508272;.38770986;1.5837406;2.7501752;.74498737;-.32094073;3.9629381;1.9460714;-.58288282;.54568362;1.6854669;2.8391349;1.0575949;1.373311;3.1831048;-1.117927;.30219132;3.6740665;2.3172371;2.0201011;2.5270269;.88948178;45.623665 +-.38130212;-1.0320802;-1.0253745;-.40098777;-1.3205121;-.48893723;-.55645263;.66710114;.39879233;-.52845061;-1.7142713;-.20961061;-.36239403;-.023632476;1.1836579;.40755063;-.01314844;.02851966;.58613455;.65662348;-.062037304;.068130516;.16842681;-.029193519;1.5571315;.71779203;1.1911517;.38964176;-.21660034;1.0239147;-.69045329;-.89945096;-.98276633;.94592327;-1.382037;1.1949472;.49490404;-.094315268;-.24183707;-.70970291;.30240142;-1.5704691;-1.4374759;1.550485;-.50088412;.13320032;1.133306;1.5041718;.25067291;.50392479;5.0491147;7.9642386;1.3901682;3.3515043;3.738102;-1.0138481;-1.9452806;4.9319539;1.3428755;3.5199394;.40086529;-.35673234;5.357471;4.7490215;-1.0481238;.80589408;3.9594777;3.3713913;1.79486;1.9813865;1.9256034;7.5355825;3.4112818;.56387496;1.2267835;-.51712698;-.74731165;-.019461939;1.9172795;2.1773355;.0096011925;.35597077;1.6535538;2.799901;.43716693;.85821706;1.5264122;.34157366;.25160664;1.5104362;4.2949767;-.24208251;.97264147;-1.40378;.99543095;3.7368159;2.2437308;4.0677023;4.1326118;-1.4103128;-1.1064953;-.45453802;.0040566344;.93188131;-.97980869;.81244951;-1.5408016;-.48124582;1.9010266;-.2480707;-2.4223299;.68697238;-.47115695;.55631763;1.580532;.63780802;.46107677;-.3682659;.26537922;.45432839;1.1056274;-.016205855;1.5721785;.053208761;1.4349943;2.1877441;1.0832788;.33765385;1.8418663;-1.0789719;-.081655674;-.12457941;-.36363488;1.620641;.070484541;-.36272016;2.3194366;2.4523988;-.99507374;-.4983153;-.48644754;-.072455265;-.62050045;1.0396284;-1.9104236;1.3305609;.82582521;1.3696294;-.4407537;.53353918;2.5293407;6.2415814;-.13347438;4.25875;1.6393042;-.55611467;-.73292279;4.5020161;1.8242421;2.9052551;.78597838;.094579093;1.8093699;3.6961741;-.3516134;1.1757213;1.1897515;3.3054974;1.6918489;1.9853693;1.1057533;6.3725424;2.5588217;.51983219;.44184595;.0011644593;.21636124;2.4353874;1.0709438;.5782789;-1.4278476;1.3709885;-.2098178;2.1049869;.36118704;1.2405267;.85154802;-.31083089;.8973515;3.3025188;5.0598898;.15633728;2.3828652;-.53129625;1.5986449;3.6509624;1.2213981;3.7700305;1.749001;-1.7796032;42.346882 +.43407175;.82190073;1.2931596;.71090859;-.54122752;.0021859473;-.11390675;.082268342;.2516135;-.47948799;-.32934377;1.3492309;-.64430839;.33975878;.8286714;-.94677484;.58650851;.55848712;.0579907;.2621595;-2.9548731;-1.5686347;1.0358093;-1.149336;-1.6013931;-1.1435457;1.1549784;-1.9575332;-1.4319936;.74805933;-1.5385208;-1.0062099;.18413714;.73822683;.49393854;-1.4523901;-.86782402;.19981273;-1.6100132;-.26701945;.47904885;1.139717;-1.3998741;1.1524282;.96539533;-.80074435;-.15483858;-.13238886;.33232927;.38853198;2.4704671;3.5129085;1.1511662;.97784108;-2.3773289;.59630579;-1.4450163;3.3223543;2.2479708;6.2411885;2.8156271;4.1449409;3.9788473;-.57445419;-1.1021087;2.3685517;.96407419;.98053718;2.0766723;-3.1992276;5.6712313;4.195076;1.8890131;-1.6546943;3.3722327;1.412843;-.68891519;2.5203571;1.3545202;2.4752948;2.6085172;3.4073057;1.6220645;2.8750026;-.12544303;6.8606377;1.469402;1.8992629;-3.1514795;3.1331584;5.000865;-1.8468114;-1.1650494;4.0117869;2.7449405;.35700744;.36328074;-2.1592622;5.1507692;1.7358906;-.23962264;-.40288419;.46974519;1.4286302;-.011517706;-1.0950491;-.82347548;.26332659;-.25769985;-1.4207789;.063423;3.0560217;-.36714241;.37767747;-1.1274228;.57352769;-.0045172316;.71048689;1.8225049;-.48059833;-2.4112608;.59224099;1.4838395;-1.4123415;-.81436312;.11049642;-.44984207;-1.1864512;-1.8820812;.53175825;-1.5022715;-1.8139988;1.0960974;2.3122218;1.9866232;-.093087979;-1.0075203;-1.0195918;-.88619858;-1.0074826;-.70069432;1.5380102;-2.704587;-.41829222;-1.8611194;1.6780667;.0018756401;-.52845252;1.3452168;.075488575;1.3401846;2.1836441;.92271364;.30766863;-1.0424136;.035170145;-1.5157065;3.4640493;1.1589131;5.2762876;1.0596744;1.9728569;2.6573694;-3.7831383;-.14858721;1.6256514;-.25213304;-.27121782;1.7971584;-2.2156544;3.2588613;2.7887342;.29968563;-.64411891;2.1376274;-.12505382;-.2767024;1.5896751;1.1805586;1.7904072;.12512234;2.4086926;.81482637;2.89257;.59335232;4.3581553;.68207741;.44162533;-2.7630908;1.5169852;3.2088847;-2.9838536;.15078212;4.6424761;2.9146676;-.16418785;-.41468561;-.43777126;3.5206318;.61273843;35.836445 +-.20161141;-.41821799;-.87506872;-1.1438903;.19565685;2.3563344;-1.6613257;-.31828865;-.73517311;1.1302243;.37928456;-1.2768407;-.86474395;.40172336;.90703309;2.4526227;-.18285774;-.65384161;.60133159;-1.6490344;.45935938;-.41353908;.035525851;.57151759;-1.0098575;-.13570608;-.36703497;.77022505;.44344264;.47320589;-.97348952;-.85524392;2.6887877;.65946829;.1216524;-.39101583;-.69248933;-.024688376;1.2865391;-.22843076;1.1900818;-2.1778007;.15577401;1.4030749;-.11604366;-1.6180876;.42601135;.62100846;.17627683;-.19726869;5.0619555;.12585294;.4877314;3.1253722;-.02187559;4.0323801;.051833834;4.6198578;4.1806326;.93020844;3.34287;2.6563985;4.5766745;-.07971286;.97800535;4.0800066;4.6737304;1.85382;3.0478985;5.2215152;2.7774246;3.8007674;2.4837995;4.3548927;2.5273371;.77987921;.48842165;1.4035738;1.5063224;2.270802;1.4950985;.62127966;2.5950806;1.4208794;1.3948752;-1.9323398;3.6300275;2.5248253;1.9670682;3.5472584;2.8578656;2.229707;4.5256209;2.7910202;2.409481;2.5940895;2.1090338;3.0911367;.04575384;1.5435042;.4145157;-.40212867;-1.8672435;-.47338119;.56289572;2.6143582;.40593284;.89134854;1.0627055;1.4204643;.94248664;-.28841257;-.14732572;1.4684317;1.2019906;.91382819;.32175121;-1.3178792;1.447089;-1.0925;1.8349172;-.16359779;-.77649313;-.93226212;-1.4566405;-1.5997384;.52827501;.305558;.4417648;.64773184;-.75497782;-.18973422;1.7957863;1.5125556;-.29435205;-.25269082;-.33022335;-.78663027;-.21467231;-.48266143;.26554686;-1.145559;-1.6415653;.66715735;1.1738428;-.41100121;-.88119626;1.5287669;-.58645958;-2.0938087;3.5629628;.63064247;.83213663;3.1528239;-1.128583;3.4504116;-.15049838;3.0138714;3.481571;.29790333;3.1309674;1.3878634;3.5877974;-.85110021;1.3404427;2.1148219;2.9980316;2.1922107;2.5859444;3.5387518;1.2257897;1.5389986;1.1490185;2.7606499;1.3100995;-1.1010606;-.42235523;-1.1234597;.62184042;1.5809348;.6586538;-1.2247039;1.435039;2.327944;.16976762;-1.5043392;1.1905874;2.772229;1.0992098;1.7432032;2.9116979;.89113605;4.0403738;.57901567;1.4015869;1.3795978;1.0592413;.38530996;-1.4429313;.8247695;63.884678 +1.7533507;-.50809276;1.2805225;-1.6940552;1.2628314;-1.0463972;.18755519;-1.0843841;.75471723;-.28129917;1.5629554;.1849131;-1.9320544;-.53983718;-.030913161;-.61566436;.48106918;-.048205685;.58710921;.37300399;-1.2307798;-.079512157;1.3348553;-.82199681;-.81109571;.74703741;-.80800593;.36172441;-.29599297;.61946881;-.58628213;.34028336;1.2402797;-1.1729795;1.674879;.89827913;1.4223136;-1.0348263;-.82515937;1.1741621;1.0148096;-.024790077;-1.9156173;-.49451807;1.7102077;.91922408;.61183697;-.032553088;-.65116042;-2.2811329;5.2378888;3.6289063;3.5275323;1.4926504;-2.4658229;1.4664567;-1.4275522;2.5551476;5.1548667;.59041864;3.3815858;2.1285708;.35776624;.27361813;5.2307186;.9690569;.43189853;2.5023627;2.8499162;-.10015994;1.9097862;3.0417516;1.5124457;4.3185697;4.1041903;.68887365;2.4977145;.66397035;1.1630397;2.3418839;2.7628994;2.9480021;2.485872;1.2125183;3.2558315;-.33836183;4.2913461;.59664524;1.7180963;.1170022;4.9508305;1.7506757;2.6815131;5.521524;-.84033519;-.3788456;4.8476582;2.9499431;2.4424417;2.9070981;1.9374017;.46965477;1.1970202;-1.0822698;-.32763577;-1.7647135;.78671628;-.39228627;.23869903;.46053201;1.6092589;-.37772259;-.28275716;-.40282148;1.2220629;-1.360459;.23770913;.24190918;-1.5266383;.055610437;.40747425;-.9902423;.69576836;.53063917;-1.6380816;-.6020599;-.31831211;1.2040691;1.247159;.95621222;-1.1819673;2.0057921;-.14375579;-1.5333625;.83454335;.15443514;.25466686;-2.3462553;-.34740806;2.5322626;.98792988;.48026633;-4.0022321;-2.7730401;1.1322809;.98657233;1.0081073;-.62941498;-1.6269454;-.24997126;2.565244;2.8171127;2.8629653;1.6717741;-1.4500406;1.713376;-.27409625;1.6421771;4.3293118;.6117608;1.4994587;.9428854;.067415707;-.8088116;4.2532287;1.8176111;.013075865;-.36733112;4.2356052;2.1939771;-.30468863;4.1573324;.75306714;3.1092422;3.6124318;1.1501;2.2907455;-1.0579746;-.65110898;1.8446947;1.6940159;3.2034647;.58357179;.54187608;3.3762498;-.029929256;2.752687;-.83422995;-.83290559;.99448711;2.6119914;1.3227484;1.0526747;4.2323308;-1.2249138;.41393155;1.5020645;1.6109784;2.3916039;.20120209;54.492523 +.87652934;1.5086066;.46614957;1.1646664;-.46639866;.35674968;.34214386;-.47923851;1.8431532;.25583744;.23754254;-1.443176;2.6259544;.19627492;-.67575979;-.92932051;-1.5081528;-.10062842;.11910616;.12658158;.38378748;-1.7425855;.65894562;-1.4134498;1.2097845;-1.1091195;1.4451822;-2.1634834;.36740068;-1.1091486;-1.7793114;-.48236454;.94842893;.40732914;.87854248;1.3249915;-.27540278;.46772397;-.29112697;.5117625;.19259259;-.068380579;.60675776;-.64132798;-.13471611;-2.1854236;-.085276358;.68478835;-.16550356;-.60676593;2.3895271;-.098721221;-2.5633721;3.1340718;2.0318005;.2392879;3.2332749;2.1391695;4.4684968;4.4561052;2.141135;-1.4358395;2.0908067;1.7723467;4.9724998;-1.627427;1.9299642;3.4517982;3.900099;5.2142043;-.041227777;.64968836;-2.9869933;3.4702351;.51921493;.94538802;2.1086388;2.3507235;-.1593398;1.6529093;.65754789;-.94878012;.61695576;2.777714;.33342764;2.3976567;3.5953491;1.2718977;2.4776411;.66379076;-.47734761;4.4091597;.88066667;1.2301238;1.6990874;3.5042913;1.0564139;2.413692;2.5944149;5.8779402;1.7985203;1.7595752;.17727424;.6184237;-1.1024468;1.1762209;.68485528;-.69984114;1.3535252;.3605487;1.6862392;-.46598122;1.0471321;.33496794;-1.895014;-.42922848;-1.124685;-1.2194191;.75867105;-.99470377;-1.5062528;-1.3364868;1.270893;-1.1099344;1.3026782;-.75678086;1.8565418;-2.1512668;.0026408965;-1.6527607;-1.0477096;-1.1672937;2.3709414;.15877032;.05690467;.80853015;-.71497971;1.270556;-.27131602;1.9912959;-.046907376;-1.001724;.89645714;-1.2745367;-.58466405;-2.458446;-1.9091282;-1.5590135;-1.4174891;-.48450941;1.7192732;-.055271946;-.20945619;3.1462018;.15437618;.91565597;2.4749625;1.2671092;2.8549736;2.5431969;.35790834;-2.8035493;1.5306866;.15835801;4.1376443;-.83606666;1.1102256;2.7075222;2.3147378;3.8769219;.2502251;-.24545538;-1.6987283;1.0618134;-1.3890355;.6793921;1.0015818;1.8057812;-1.7869971;.39121616;-.33914924;-2.5390208;1.4474401;2.1134295;1.2522479;2.2658308;2.1017184;2.2356203;1.9197501;.63012516;-.34703255;4.412189;1.8570812;1.9338254;1.7717662;2.561615;1.0050831;1.6885309;2.5601463;3.092056;40.308781 +-.42105058;1.0529466;-.030102998;-2.5166845;.92360556;.17727536;.8908366;.078544699;-1.2206742;-.72589391;-.85806483;-.71369016;.24106851;-1.4096206;-2.0852072;.62199968;3.3099973;.27430764;-1.0017515;.1199884;.074667886;-.14147356;-.15314619;.8080793;1.4398953;-.254899;1.3007904;.57942241;-.51568341;1.0385991;-.22039378;-.33752;.10842208;-.67306864;-.65867662;-.12516564;.62151986;.50731075;1.3555669;-.96577638;-.47116747;.93952781;1.1397514;.10866669;.81110001;-.87816072;1.1884702;.99472952;-.22877209;-.85349935;1.9448298;3.0725384;-.8223967;.54070514;.88082701;5.80129;.36948061;2.4257855;1.7707579;3.0155745;2.552525;.13809422;1.5341961;2.2932851;3.1660962;1.8376254;.82234544;4.8235393;3.4775357;-.19641845;2.6360734;1.3855889;5.1596222;4.9197388;2.4100473;3.709585;.91938937;.10989972;6.791522;.40653783;3.8272743;1.9465847;-.62216717;3.8888066;5.3299589;1.7776228;5.3692412;1.8896394;4.0546994;.53554374;-.40222013;1.4546745;3.9679406;3.5565009;5.6324577;5.9310575;-1.4506835;.25512847;2.3708436;3.2622607;-1.4384754;-.70274687;1.4220501;-3.1512446;1.0182836;-.80211359;1.0588932;1.4536753;-1.6237437;.42055553;-1.9048684;-1.5244985;.6314913;-.2760593;-.73088545;-1.4734139;3.0828063;.17354606;-1.6651111;-.97701406;.55491227;.67710078;.24644858;1.928954;1.170229;-.58047843;-.018591953;.96265608;-.028783077;.77767861;.55606472;.90054423;-.44561607;.5996986;-2.4711552;.77964997;1.1927495;-.044387236;1.1711628;-.18294342;1.1620517;-.19395712;-.55822539;1.3451502;.1202846;-.98482209;3.4908135;1.5600853;-2.4396808;-.3457045;.72657597;2.7657957;.93436134;.76040852;.84465235;5.4500737;.14205582;.91402757;.62503976;1.8364112;.79005593;.60022342;.5860799;2.0565901;2.9814315;.74428219;1.3410386;2.8947227;2.8894284;1.1006484;2.2990508;2.4190245;4.1634893;2.2489982;1.2370263;.81417793;3.1151712;.42266023;3.0812552;.35947517;2.4271019;1.3449218;.19956794;1.8807257;3.9245009;1.4762274;5.3538156;1.0516427;3.8999355;.16866703;.16563621;.29314333;2.0281053;2.7791834;5.4802556;4.747736;-.35875118;-.84523827;1.4334072;2.7454228;57.838634 +-1.8455136;.22886364;.36257958;.61234069;-1.461905;.17229147;1.3554634;.63043517;-.2895247;.75099486;.16964914;-1.7962394;-1.1856877;1.3601259;-1.0239489;-.16286638;1.1322155;-.63497794;.0085042687;.24986106;-1.2697294;.71082437;1.0002599;.04163225;-.34589261;-.20850174;-.49590927;2.675621;-.076654524;-.57846844;.70327955;-.43072328;3.0954773;-.32113725;.87835068;-1.0212094;1.8839523;-.43893793;-.74187189;.048326734;1.4639119;-.19489463;-.37043524;-.037817232;-1.8962989;-.34019288;-.25477499;1.5950714;1.2899077;.058519658;.92574561;4.0308323;-.14453693;-1.5545061;2.3737295;1.1024811;1.7977269;.10426214;-.68007249;5.4300508;5.9423389;-2.3956385;-1.7917792;1.8647064;-.75476539;1.7525138;-1.1233674;3.9375129;1.3682259;4.1566768;1.494127;4.8865271;3.0080359;-.7634607;-1.1063254;-2.1803749;1.1616958;2.6144421;1.7130464;-2.0486262;2.1369236;3.1139009;4.0000048;3.0346198;.49409702;3.7452993;-.66360134;-.65921885;.75182784;-2.1320548;2.1150918;.30009475;2.6568682;3.0900786;-.89983076;1.0246804;.08092574;.23487589;3.7602513;.69365424;-.51289862;-1.5147052;2.2587056;-.15996395;-2.1348753;1.0508617;1.4080975;.49924159;-2.6482174;.22136834;.18694516;.44399276;-1.155169;.82299387;-.77430588;.47038504;-.50033039;.29422218;.3728402;1.4137257;-2.3807576;2.0270648;-1.0191355;-.40091002;.6437993;-.58420748;-1.1432008;.82725751;-.76218086;-.22114672;1.7837861;.43083823;1.079037;1.0064691;-.60883301;-.86771715;2.6052635;.29391417;-2.5771868;-.23521313;2.7491724;.33727533;-.49387223;-1.1753219;-2.4780858;1.0736202;-.55966949;.25608671;.47449625;-.73016608;-.22212155;1.7908764;-.48934913;-1.4053057;2.9258454;.9182567;2.1511519;3.2091377;.54763985;2.4299979;4.1032877;-1.9510274;-.78432626;.45258722;-.62183267;.8955828;.046860147;4.3936138;.63174582;3.707407;1.1945025;4.5619125;.58764207;-1.2472718;-2.7287347;-1.3906873;1.3839192;.82082015;2.1107321;-3.0102162;.68556619;.54215187;4.2625556;2.483685;-1.0543184;3.2851644;-3.2572114;-1.0334219;-.035105299;-1.0521187;2.5707517;-.44621509;.39208147;1.8908243;-1.2692401;1.980387;-1.64972;-.41126081;2.0254812;-.73967338;31.830709 +.54568166;-2.0238247;-.0022975758;1.7781187;.64388096;1.1961156;.42497107;-1.0061377;-1.3032281;-.47563356;.27654606;-.79892612;.81367695;.1382041;1.3746674;.51210451;-.46082637;1.0548732;.8109991;-.76848441;1.0383848;.55438423;-.86786222;-1.3914648;-.90020865;-.21307938;-1.5613638;-.89946616;-.99807787;.30045858;-.46907136;-.79805475;-.7222259;1.7412122;-.29492226;-.67763841;-1.193367;-.51116651;-1.2763269;-.61695951;-.76141948;.062560059;.43164572;-.51512456;1.4325237;.05458295;.40204015;.75335246;1.0482713;.74045026;4.108501;1.3528413;2.2279923;-.38403231;.56392872;-.28333217;2.0455174;.26653746;2.9209986;-1.1311157;3.9125371;1.8847719;4.7752328;4.9946046;4.0755367;5.5631518;4.5216751;4.8032703;2.3293834;.48076579;-.41922686;1.7287745;3.1277981;.46584392;1.8123854;1.0047905;-.023386309;1.4837234;-.88385957;.58799225;.88651544;-1.8420687;4.1287136;5.288116;3.5166655;4.0029559;1.8459046;3.8961601;5.2284107;.8022747;4.0961008;3.0177805;5.0884929;4.1877627;.10182627;-1.0269448;2.6062567;2.4879272;1.5237429;-1.2092221;-.097397886;-2.1391654;.43401816;.78517514;-.12235133;.65142357;.77814305;.15855587;-.98315322;.8676722;.15622759;-.46409345;.93135285;-.81100774;.57414377;.90313226;.23939176;-.47109121;-.62554783;-1.1043925;.43286148;.32680106;-1.6251894;-.2044712;-.036996357;-2.38502;-.80994302;-.24689431;.20603696;.1471792;.76406211;.070622407;-.92992467;.60584146;-.074890919;-.031529877;.088233612;-.21634449;-.92984802;-1.2073333;-.5983007;.025809893;3.2206912;-1.2707227;1.0923113;-.11648856;-.057685651;1.3388582;2.0289106;1.0903678;4.4727683;1.7199279;1.8776708;-1.929999;1.1331619;.59209287;.43337703;2.4017551;2.3921783;-.06462235;3.380398;1.0007302;3.3017867;.50526547;3.7825258;3.7191672;2.2984724;3.0031929;.88124186;1.2160684;-.42618597;1.6588942;.44838497;1.8803624;1.138141;.30376971;-1.6121393;2.2248514;.13932927;.96349204;.6118955;-3.1963913;3.715575;3.290396;1.6452633;2.1584578;2.2156332;2.8916881;3.5958643;.44516948;1.6132858;2.4660761;3.6881635;2.4266112;.22740614;-1.1596886;1.1804903;1.9623796;-.38381198;.5199222;53.241188 +1.302026;-.00063595123;-2.5591779;2.0550485;.91233414;-1.3843223;-1.0872185;-.71410471;1.6620393;-.14356929;-1.2867196;.17767632;.32857439;-1.6921839;1.4448878;.15512921;-1.042876;-2.8079488;1.3466645;1.8112429;-.14577995;-.59028047;1.5652032;-.45318663;-.41877702;-.29429522;-1.7158993;2.1144314;.015135239;.36418557;-.074933238;-.0099354051;.32252809;1.1188033;.002567878;-1.7604578;-.24841422;-.00057220104;.25638312;.66040146;.4370676;1.727587;.53429192;-.33034095;.72524768;1.8094369;-.85134095;.036668252;.75127864;-1.0633191;2.1903076;3.6068554;-1.8971431;1.4831749;-.65056556;-1.4087228;.46536431;3.8906565;1.2212832;-.16697665;3.486563;2.1207678;1.5580431;.094385892;2.1902251;1.393997;2.0971856;-.69945955;1.0263629;-.75563747;1.7404978;.87495816;4.2321229;2.8819995;3.7365587;3.5652723;3.5654635;-.59526747;6.8141313;2.4374843;2.3154023;-1.201396;3.2008173;1.8187565;-1.1681616;1.2311716;1.5739586;.88770145;1.5651668;3.3785958;2.0224934;5.6146021;-1.79199;3.695961;3.9961646;3.5816481;3.1255064;3.8562975;1.7950567;-3.7485602;-.24798654;-1.179943;-3.2708776;2.3155174;.38384175;-.52119619;-.59749568;-.14026108;2.2853997;-.47609717;-2.5946515;.63684613;.75033092;-1.9007782;.89488506;-3.6107059;-.92248559;-3.1898613;2.2000978;1.5373394;-.80206245;-1.6524872;1.2034776;1.1087748;.29098544;-.26761505;-.36372277;.44728559;.08676827;1.2455131;-.51369733;-.16913222;-.42371553;1.2217015;1.5978857;-.30371892;-1.3233048;-.60282177;.37130564;2.2945642;1.4177636;.4509587;1.3452795;.63092923;-.90596116;-.10383248;-1.6681526;-.26355952;1.289072;1.7805874;1.201937;2.822479;-1.3859522;1.4470221;.75870353;-2.528686;-.27062586;4.2119927;-1.2909306;-.92068797;2.6519802;.42961341;3.4110866;-2.4278023;2.2574332;1.6995188;.79751676;-2.1397223;1.2753483;.46333674;1.2120843;-.36891735;3.9435532;3.1717191;3.8288109;1.5749513;3.3441596;-.68544012;4.937839;1.746392;1.0888226;.64422655;3.3975129;2.7181697;-1.1785946;.7945357;2.1983249;.02238689;1.2035379;1.6901488;.4393017;5.2537565;-2.1980855;3.0164752;2.2186294;3.0014367;.62703776;1.2020477;.16871378;-2.2162068;41.337639 +1.0668708;1.7367876;.35188165;.88963223;1.1998372;-1.9874482;.66863465;.94030219;-1.8797319;-1.3463185;-.23026593;.38184664;-.187536;-.24761181;.52056825;.56874329;1.0100006;-.61745262;1.325472;2.5169125;.78527808;.80914861;.42612597;.86225569;.43428993;-.8114807;-.28291744;-.76660085;-.025728809;.86607051;1.3202528;-1.4454113;-.15504318;-1.3925483;.41615242;-2.2920129;.79677856;-.96938843;.3121711;.0032634411;-1.8097097;-1.314147;.51136291;.40936106;-.01602005;.31628409;1.7766902;-.49028209;.38376623;-2.067049;2.609772;2.3419075;3.8063459;2.6330311;4.3417869;3.2483189;1.6981562;3.8909922;2.1819491;1.0708861;2.255857;2.7365522;2.8383005;3.3125112;3.2283244;2.2695904;3.1963501;.70135403;3.8651702;.51212525;3.6821303;.43479982;4.0300541;.62005579;2.4124215;2.8769915;2.3311374;6.9930749;.000028327122;6.2236104;.71209466;.37772042;1.4827338;3.4144471;1.963299;-.27216098;1.1953387;3.1174321;.7501018;.7242623;3.9067738;3.2027352;1.3710198;4.2588835;1.2810415;.9389258;1.3758804;1.604079;2.6017747;2.5324428;2.1754441;2.9499962;-.50630015;.50772625;.72701651;-2.1643291;1.2501354;1.501189;-1.8229555;-2.6453094;.23138084;1.8965734;-.46044022;.45105642;1.0860622;-.5154438;1.3896979;-.32960394;1.1010275;1.9543397;-.57703036;.87241477;.61490351;.71582913;.15032169;-1.8909878;-.76947677;-1.1607691;-1.4168004;.62719166;1.1490325;.71804082;-.24808614;-1.7867837;.76121861;-1.4270723;-.84758067;-1.9474289;.63843572;-.57548857;-2.384222;-2.9280651;.35328162;-.010442364;1.1518558;1.8330814;2.6342759;-.8647877;-.92415017;-.18491389;1.7763342;1.6438732;2.1516013;1.9039623;2.8458819;1.8919704;.90513009;1.927161;.78865063;-.29559815;2.1853762;1.0505203;1.748279;2.6388419;.69188726;-.023920404;1.4735489;-1.3316927;.5136593;.50805545;2.4968207;.296258;1.5283169;-.84252328;2.6208358;1.5169592;2.9882278;5.1425133;1.5860307;3.8589163;1.5478307;.73111784;1.4291523;3.2194846;2.2754552;-1.4808824;1.373987;.34504396;.23003033;-.61214286;3.0889764;3.3822451;.037928175;3.6731083;-.23685066;.37726253;.72710186;1.5834794;1.969076;2.9918914;59.850182 +.70380563;.090055555;-1.4552338;1.6868346;-1.3069912;-.82856351;.60653728;-.79407865;-.44116297;.51229769;-.30045483;-2.0186188;.021288503;-.022303531;.2775062;.74318415;.47383904;.0029005101;.4015792;-2.3048062;-.056055956;-.67795146;-.24300663;1.1633309;-.79932278;.0607614;.20689961;-.78316063;.53949994;-.10565787;.21224348;-.27138489;.62449676;-2.5545192;.94926524;-.19648971;-.30821836;-.57452554;1.1726993;1.3439579;-.73129553;-.019235972;-1.5600829;.068929151;-.54424626;-1.8360112;-.31555995;.29147589;2.0662274;.76913685;-.4164139;3.7327998;1.9669721;1.4753511;3.6730082;-.66506833;2.0735853;.33052817;.38091418;1.534905;6.4847693;4.2127514;4.1409645;2.9673645;.90667468;1.9008815;.82831842;2.8610163;2.3362324;.091387868;1.4423867;.79671121;.64160854;2.3603656;1.436237;2.5778015;2.0293074;.44600579;6.1736636;2.2267046;3.2588282;1.8612198;.018677311;4.6527591;2.1707473;1.6066599;2.7915444;1.1222292;3.9552503;2.5310974;1.9346895;3.4648826;1.7295964;.90212625;3.5110803;2.3716681;1.8145416;4.1948738;5.2429771;2.9707887;1.1955175;2.9136984;-1.3988247;1.2913496;-.21401282;1.1568636;1.419536;-.56508279;-.46374118;.65605205;2.5450733;-.94459367;.5845111;.47359318;-.38207027;.69999963;1.7239418;-.048362024;.77428573;-1.9519199;-1.1646386;-.62346691;.24878278;1.0613635;-1.1146008;-1.6146313;-.23989108;-1.7345812;.16546942;-.88384855;-.57047254;-1.4456245;-.37964544;-1.400687;-.3563388;-2.1192217;-.71342194;-2.0838346;.92838734;-1.3018821;-.52831376;.63050812;-.01079796;.24110292;-.14411633;-1.7235332;-.37741348;.26919058;1.1689612;-.31411204;1.0173355;3.2146499;.11074839;1.5251849;1.2012483;-.13697968;.92346293;.44138438;.96061599;1.2010658;4.9932961;3.1268418;3.5600905;.552562;1.252849;.90433788;.72422487;2.8590999;2.6546755;-.49413633;.12789011;1.8027983;.64211464;3.5655031;.74425703;2.010483;1.0592653;-.67454666;4.6845255;2.6815889;4.0813532;1.4507246;-.64416748;2.9109259;2.5394626;.31256783;2.4247758;-.98481667;1.408801;4.1435013;-.09740258;2.6946232;2.2483265;.19431739;1.0220408;2.9608064;.97153807;2.3642845;3.7651529;2.1846719;51.6334 +-.85390514;-1.9025985;-1.7200898;-.86921167;-.73393381;.15853226;-.79121047;-.2841846;-.69320571;.068328448;-.1147412;-1.1242117;.35609433;-.067317799;.039826982;.079809345;-.85977739;-.4069339;.17892951;3.6112568;-.092273772;1.6019707;-.81740999;-.059128866;.25236207;-.31028289;-.097704969;.18704563;.80621785;-.7851823;-.68518919;-1.1408862;.66011125;.03398215;-1.0705601;-.71160007;-1.8040946;.65303862;-.47294629;.44498932;1.1014012;.40993711;1.0617346;1.0353295;-.41395327;-.42413566;.78621221;1.0067104;.12236316;-.040033944;2.5504882;4.4455047;-2.4293265;1.7214358;1.1023906;2.4046545;4.5045838;.21078905;1.0086379;2.8253009;4.8685155;4.6575627;3.2518163;1.4029907;3.5918524;.10879974;2.8787367;1.1574558;3.6680827;-1.4835637;2.0359919;2.098098;1.0143429;2.72963;3.3034306;2.0230958;2.0713508;.97556806;-1.4509118;1.644106;3.8672962;.36078736;5.2300296;3.0686748;2.5298834;2.2975724;3.4995844;-1.8264619;1.9651138;1.9748541;2.0854104;.48428681;.72450924;.70727819;1.4426355;-.77766383;2.1163483;1.1047003;.1461909;2.1900527;-.22380456;-.64998084;-2.0579746;1.4958369;-1.6261642;.27967384;.25535116;1.4997967;-.8875097;-.224766;-.78654081;-1.1051377;-1.0637401;-1.517982;-.48628175;2.7400486;-.15100434;-.81327075;.40390036;2.1293867;-.82411116;1.6152884;1.5478383;-1.463658;.020600095;-.6582461;.12496078;-1.5832061;-.11518487;1.1808509;-.60552734;-.8459391;1.6485335;-.42155126;-3.0322323;-.67037463;.35429963;-.96437693;-.29927307;-.25296953;-.082360029;-1.6163859;.21775673;1.3499315;.38098356;.30950013;.81596273;-.58383501;-.72230273;.45400426;.93996733;2.6060879;-1.8968782;1.5388911;.25212148;3.318341;4.4470787;.44174272;.13840672;3.438549;3.2319558;1.5674658;2.4582708;.19631137;.632765;1.0501699;2.7347023;.55182803;1.5747299;-.92566121;2.9769492;1.6118575;.0091886036;3.3221376;.89290142;1.8767328;2.4182365;2.3125119;-1.1038858;1.5365434;3.2618096;-.80217648;4.0481334;.76815253;1.1662163;1.4818786;3.7404737;-.78254873;-.30017865;2.9072409;2.2722726;.41204888;.02243402;-.16073737;.90758526;.26229388;1.0909095;-.17015637;.29107389;1.2165431;50.849087 +-.20705552;-.94282508;-.4867954;-.23719053;.44848767;.96380413;.2418002;-.047511425;2.0374417;1.3367237;1.8632908;.49330345;.64855689;-.17614833;1.1012366;-.72728258;-1.1865015;1.6802644;-.61907011;-.23286968;-.53917301;.14713189;.4487313;.93335986;1.0695971;-1.7376343;.10229875;.33946511;.1314867;.15266864;.11301359;-.3540892;-.16173208;.65460896;1.3944595;2.5343173;.13340595;-.51673681;-1.7264193;-.19276589;.67171431;-.95823991;1.2203708;-1.1025242;1.6673073;.75316781;-1.2535459;.28041059;.46120626;1.1846019;-.61970842;3.4330337;-1.6490061;5.3441277;-.34871185;1.2757944;3.6379271;1.934184;-2.5940917;1.0803087;2.091542;2.9286814;3.9930937;1.9232829;2.7425413;1.6073935;1.4477001;.42724055;3.5247934;3.1779282;-.65338194;-1.0279044;4.0662041;5.2711267;4.3792095;4.9834471;2.9482274;4.1063066;2.3162892;.59516209;-.40448457;1.9837612;4.1792507;3.459095;-1.1297688;3.9213619;1.2964437;.1965825;2.9877369;1.7560024;2.7453692;.16691035;-.27556702;2.9187815;.98679316;4.8601747;2.8202341;.18950784;3.5064831;-1.8298157;.96664083;-2.0911021;.22485755;.90710843;-.30600137;.050465185;-1.7050266;-.31503612;.64705461;.90726399;1.5216081;-.21037035;-.78537285;.69188517;1.1225454;-1.0335759;-1.4548523;1.4182247;-1.7156504;-.6359024;-.75831681;-.62501895;-.67441469;.012016299;2.8517396;-1.5332921;-1.7403307;.57147086;.75540268;-2.1276345;1.3779365;-.43428099;.43490958;-.26621544;-.23030148;2.9306653;-.80224276;.809852;-1.2522017;-1.7862203;-1.2088386;.40617552;.53727454;.25422922;2.595401;-1.8046565;-.73150802;1.1036514;-.39877418;-.31516126;.87386942;2.8891144;-2.8588061;3.1546035;-.088236324;.50005728;1.5469058;1.5719538;-1.5094841;.32642195;2.6990533;2.7832606;3.3913839;1.2960044;.92906523;-.43176159;.28161919;-.7551288;1.1479533;3.8967285;-.17172219;-.54530025;1.9296937;4.1722245;2.4584222;4.3343511;3.5898504;1.9659803;2.6978841;-.31283361;1.2261106;1.8950956;3.2489429;2.1052437;-1.1028947;2.1898792;.15107122;2.1151078;2.1180353;.3816058;3.5528708;.13642986;-1.3380138;1.215688;1.1560614;5.1112685;2.1055415;-.10103669;3.8289227;-.85948664;57.644112 +.027186353;.76237589;-.82146394;1.5646417;.93673015;-.71529955;1.2734011;.074534178;-2.6815403;.34316796;-.001087736;-.9236784;-1.2102244;.6795904;-.016459156;.89821494;-.18113142;-1.3584561;-.40805006;.85533893;-1.5577185;.34610584;-.95644879;.52159864;1.9433167;-.71937072;.61213231;1.5287054;-.84722567;.43753076;-1.1505139;.63317001;-.49062771;.28520834;.84014553;.86903524;-.72734076;-.36352393;.72758943;.99935448;-1.7293237;.83267856;-.35580051;-.72677332;.57805204;.93386012;.56154478;-.010169958;1.021801;-1.1287248;4.2162476;.14923501;-1.8459798;1.079561;1.7082998;-.15924452;.82146496;2.846776;.27249107;3.7274108;3.8029611;2.0132341;1.2343783;.081241362;2.050298;-1.3024272;2.144556;.5837695;4.744173;2.4011543;3.0815372;-.26689544;.54664958;.26077795;1.995236;.92084414;-.72861767;2.0798528;3.0949414;2.0045798;5.7594075;5.65238;2.5682025;-1.8605598;3.5062473;1.1905705;.20430924;3.9783967;2.3742642;3.7575853;1.3650925;2.6016703;-1.3534809;.042773027;4.1504731;2.5710802;3.1749794;7.1730471;.28640896;-.8615821;-.61248338;1.9950072;-.33821809;1.2363471;-.10507609;-1.2843536;.98484451;1.3367136;-2.6520622;1.4130334;.59693182;-1.8694607;.16020861;.52416748;1.6717638;-.96131372;-.20368716;-3.3821793;.84682333;-.98534697;-1.0277914;-.17691565;-2.4339724;-.66978627;1.7044227;-.61317492;-.37812495;-.077391066;-.70242763;-.42936856;.13617143;.89559925;-.56722641;.66425174;.31087238;.078761615;-.48703003;1.1032851;-.023969961;.025615962;-1.4824311;.27005062;-2.3261528;.048644066;.027951719;1.6133703;-.3364062;-.61498117;.71326989;-1.3356202;.78310931;.9615882;1.4839675;.72933412;1.9022474;-1.1970613;.46221796;1.1808099;2.4534225;2.8824158;1.5366824;-.46347424;1.2428374;-.9495399;2.8728907;-1.4481044;-.31047821;.40659204;2.0526028;1.2833269;3.3611786;-1.7738214;-.11563724;.40578547;1.2063999;.78398782;-2.5337992;.055968877;1.2514213;.91454524;3.6993048;4.4030409;2.4104054;-1.1833249;3.0700169;.3532618;-1.5227116;3.3948567;.018440133;3.5402207;1.8611776;1.6689003;-.89630967;-1.0947049;3.7483146;1.7208239;2.1353221;4.7151909;-.92537606;-.73861635;43.246437 +.975532;.073215708;2.0405314;-1.0437568;-.14764929;-1.1955787;-.81055224;.67152691;-.079636127;2.1923113;-1.6859545;-.13458538;1.3727142;-1.2867633;-1.9242852;-.95484477;-.16063125;.21706744;.94084066;-1.3151176;-.28227541;.69064611;1.1893518;1.2271602;-.077905722;.15198572;.43899235;-.04148367;.064214028;1.0911671;.81049275;-1.3687676;.90830982;-.51050633;-.88846195;.38869193;-.98653603;-.045032877;-.87574917;-1.0335774;.37105641;1.3116548;-.16954599;-.84987754;-.28257987;-.12566534;.14467792;-.87330371;1.2982723;.30314803;3.0254149;4.0014234;2.7952104;5.0183406;.09811867;2.133245;4.3148236;1.3011067;5.9584775;1.1194645;3.3086576;.49680421;2.8814559;.95950317;-1.2998073;1.2186065;4.5189815;3.5904942;3.0780015;4.0313187;1.156832;.88594532;7.4792981;2.9913583;1.0526032;2.8509169;2.3421197;-.42055109;-1.222962;1.5039335;2.3793306;1.2772135;5.6825862;-2.1091709;1.158361;.054520249;4.0489645;3.5152159;2.1059029;1.2768599;2.3165796;.44758174;-.14791442;1.5304811;1.8918264;.84136701;-1.3333228;1.5803939;3.9214373;-.54608214;.3980172;-.88802838;.46074525;-.24971788;-.084133111;-.34689447;.44047162;.54328406;-.64758635;.98078716;-1.4933797;-.82763058;-.43424228;-1.1151502;-1.5682594;-.48341316;-.88500273;-1.8908281;1.8442278;-1.1082618;1.7515965;-.46380326;1.0989462;-.54970461;1.6315717;.47703633;-.58946097;1.351228;-.28540471;.24467711;-.30256683;-1.7646266;-.44243351;-.70553178;-1.1211259;2.0585773;-1.8248246;-.055042189;-.045135867;-.3157793;.095773093;.69208843;-1.3506434;-.80927604;-.92386597;.041934896;1.0006188;.34899297;-.20556234;.64519614;3.5359032;2.5830889;1.0707312;5.6058364;-.53727043;.95300549;3.3977025;.34386328;5.6144185;.55670828;1.3004981;-1.3500105;1.8461126;1.116781;-1.6819195;-.26064083;3.2873306;2.3760939;2.3330441;2.93648;1.4408777;-.0042193094;5.3607464;2.3249111;.614259;2.4756088;-.42598501;.57008195;-.53188109;1.5012957;1.8711462;1.4711679;4.0348334;-1.3588799;-.53491133;1.7238623;3.5370743;1.4519655;-.31588498;1.7088443;2.6209178;-1.0548302;-.23660487;1.4235449;1.2765795;.65396184;-.81479639;.80158216;3.2346764;-1.8226432;52.9492 +-.88374537;-1.2990758;-.87296987;1.0388224;-.9901877;-1.3937377;1.3423022;.98281771;1.433863;-.38115153;2.2319086;-1.499072;.6110338;-.59582067;-.33796021;-.88102096;-1.31554;1.6480736;-.65555876;.39859727;.81818688;-.13804942;-.28410399;1.0173697;-2.6373467;.2787182;.72581917;.25370303;-.80810672;.13741866;.068075091;-1.3030705;1.4721863;-1.0687751;.20867689;.71495837;-.41264674;.91140962;-.86851758;-1.3981799;.37829363;.56753582;-1.2231617;-1.1560849;-.01816983;.88470882;-1.7352314;.63946122;-.65441191;-.9271192;4.6312156;-.058659274;5.4009581;-1.1109914;-3.1028874;3.4059505;4.7649279;.022463979;2.2290123;1.5322399;1.0543649;5.2902694;4.312232;2.7892401;-.38369852;-2.3605378;5.4462595;.73790205;-2.126322;3.3015871;4.9725189;5.291719;2.7682958;.045596436;1.3001691;1.043655;2.7132063;2.8704882;5.9327469;1.9806392;1.9818908;4.9900703;-2.289959;-.13716887;2.0220208;-.29187578;.56336123;2.2498937;-1.8301702;2.5054386;.17393804;2.1081243;.4647145;-1.9043002;-.42090094;2.4055886;3.8562591;4.1600275;-.024839506;1.5435334;-.99857402;.55912149;-1.1995167;1.0216547;1.0544859;-.47365841;1.4783833;1.4465841;2.2425666;-1.6320482;2.8991268;-1.0664996;-1.6896899;-1.690383;.71609885;-2.1801338;-.19376644;1.6001039;-.76498467;-2.162514;1.6088965;-.45919791;.78075182;1.9622699;-1.870966;.91920465;.89625764;1.5855269;-.11038039;.43149769;-1.1525601;-2.2178075;2.8145354;-1.196219;.12713644;1.3903487;.29318029;.64807314;.55796248;-.010359204;-.76614976;.30184311;-2.3252661;-.93728805;-.94859356;.39020658;-.58070832;-.23676839;.66637498;.011105807;2.5388148;-1.5896357;3.9666767;.95033997;-.49126977;3.5312877;4.7202811;-.99951506;2.7013659;1.6041974;1.4265467;2.1037784;5.3028684;1.8464862;.37614584;-3.377872;1.9324973;1.8867232;-2.0249429;2.032413;5.65062;3.6440163;1.6616395;-.68001544;.284271;.40590343;2.6790421;1.7784231;4.0130606;.31559771;-1.3497353;3.142812;-2.3820345;-2.4611015;2.5427411;1.0321269;-.20067267;1.0958847;-1.3501946;2.0541341;2.4646254;.45916685;.30052313;-2.6336026;-1.8276414;1.8889436;1.5373741;4.0125165;1.7295485;.33046037;39.726864 +.77889764;-.4252401;.75905734;.65912575;-.081202261;.42190129;-.055089246;-.54058558;.12322856;1.1745265;1.2092351;-2.1556606;-.14606108;-2.1836009;.065950461;.21053939;.83991128;-.10507178;-.97827011;1.6329583;-.42517623;-.3667281;.30841386;-.33522308;.7151255;-.21572091;.65909296;-.92438668;.78138793;1.5177231;.73793668;.33457437;.31508008;.33872077;.603342;-.12272736;.65995079;1.5112329;-1.1163733;.92404681;.8678273;-.5006243;-.18215293;1.397702;-.98984253;-.71067727;-.085524641;-.22124572;.22929505;.52743226;-.36309963;1.053082;-1.4113907;1.1634743;.83039832;2.7522411;2.5442708;5.2349386;-.36576656;.75486374;-2.062881;.98042798;.26050067;1.6444051;-1.2986714;2.0391896;6.1326699;4.6891551;1.8440298;2.178679;2.3265035;1.4177064;2.0692294;2.0722191;-1.0220069;.9968518;6.0905762;.19067344;.54412144;5.413631;3.6953871;-.98778814;6.6102223;.86332047;.001391492;3.8305516;2.2363348;.52396172;1.0488604;2.9481187;.8594054;-1.8461742;.86926538;-.17470182;3.7246089;2.9920065;-.62600255;1.0727661;3.413733;1.4864408;.24326354;-.25407863;-.049078383;-.050904106;.95294857;.31695384;1.7137817;-.36763006;1.2787769;.47216594;-1.6922476;-2.332191;-.65655273;-.97537714;-1.6797472;.093178384;.31426328;.0072471644;-1.7594141;2.3567424;-.10029496;-.76844466;-.52955651;.81314683;.60125154;-.089774795;-1.2813998;1.8023126;1.6491784;2.5193441;-1.0723695;.61143225;.32672703;2.1186028;.42258176;-.057105158;.92325938;2.6742013;.32127422;.84801185;-.11414701;-1.7299172;-2.1896241;2.0724504;.12811716;.21285298;-1.437543;-.27492708;.41776556;.68923837;-1.0465736;2.4442255;-.40854076;2.0381107;-.63299954;1.6825627;2.1269596;4.6286502;-1.033777;.82143915;-.88446361;1.0434914;-.0418914;2.3412397;-.6324845;.49377188;5.4801006;3.425149;2.0005312;-.3897157;1.9455;.99886775;1.9481509;2.6647561;-1.33657;.12362362;3.6692269;.51183707;1.6335008;5.0503302;2.749697;-1.0305864;2.2059886;2.994581;.74442875;3.6006927;1.4890406;.88773209;.91473162;2.7608626;.42414552;-.26007128;-.31601581;1.2427914;2.2746685;2.1521511;-.74468142;.52216202;2.8300974;1.030268;43.362583 +-.98910445;.33025134;.5925284;.79026592;.039730944;-.68972367;-.58381873;.11326654;-.31705046;.095182016;-.55180579;-.4311142;-.52345568;-1.2826614;.21513829;.56916833;-.57233977;-1.3448752;-.04788962;.20438978;.9545728;.61884481;.32081762;.57603943;1.6429285;.94552326;-.36638039;-.45233431;-1.9084219;-.70235896;.31049609;.55721319;-.39905724;-.88411027;1.4951386;.66482633;.50770992;.3515895;.20534761;-.056080796;-.75101304;-1.1995686;.14034891;1.7169368;-.09250211;1.7543609;.50353694;.19316563;-.67060047;.91239172;4.3103914;5.2953506;5.5858722;5.2719541;2.1819024;1.9896016;2.7734294;1.8080608;-.21099059;.31439859;3.2457042;2.0991776;1.2292929;-.3237232;5.2992535;-1.0026165;2.7405186;1.1818897;1.5502117;2.534425;1.6942154;2.4486995;2.6828804;3.3633068;3.7131281;1.3736193;-.052327089;5.1380453;-1.5259084;2.9899056;2.7468185;4.0012317;.38085616;3.7134454;5.8841844;2.3243384;4.8992562;-1.7468504;-.093060903;.17611937;1.6006796;-.80574381;1.9804099;1.9255424;1.9882569;2.4078963;-.48752564;-.73156416;3.523349;1.050432;-.031172996;.40058136;-.92570841;-.24126954;-.09212631;.4051829;.92922503;-.6246264;-.75388902;.1652267;-.25926772;-3.7024846;-.6380012;.096596234;.71029055;-.23045155;-.74907053;-1.2983989;-.49812877;.60465378;.53250945;-1.0396918;.55393106;1.8854012;2.9093776;.87524986;.8233341;-2.1129234;-1.3193887;-1.0073593;-.5013839;1.4255979;-2.9150808;.48876113;2.0898578;-.022465279;-.75481856;.02645749;.10186067;-.92768222;.76043689;-.52714074;-1.0994896;1.8385112;.91911161;.53791976;.16919434;-.32113406;-1.5513866;-.87189466;2.1982231;3.3833542;4.1465549;3.2265859;.90106118;1.28702;2.4942765;.73003429;.16226341;.73068333;.87776911;2.5900667;1.1502639;-1.3439987;4.1471491;-.44552845;1.9470884;-.17113481;1.3134145;2.7678297;1.4144754;1.4070729;.91157353;2.8260171;2.1327758;-.047991239;-.16632426;4.1507244;-.69126683;2.8764706;3.0203688;4.6547213;.48713571;1.2172487;4.7054267;.34701309;2.4225545;.0952705;-1.0440753;1.0152962;.59037828;-.079273485;1.3704133;-1.9336526;1.4275466;2.7366812;-1.3042194;.8470934;1.361845;-.069202319;51.992805 +-1.0510942;1.0839535;.63940942;.02989856;2.0420499;.58776981;-.41967854;-.43331525;-.17141894;1.6924679;.94826579;-.55388469;-.81540424;2.2671854;-.51967472;-.84162045;.15430191;-1.359769;-1.1711974;.076547019;-.55080783;-.81543219;-.15262571;-.69254738;.86297911;.28414232;.38698125;-.93888909;-.084470749;-.12584184;.073709495;.082057908;1.7128087;-.38536942;1.291802;-1.8272543;.72559476;-1.2615337;-2.1729181;-1.454353;.74012363;-1.036764;-2.0957088;-1.1404359;-.021988127;.10050778;-.9273504;-.74212921;1.3369939;-1.5707902;5.2611108;.75190157;5.2084551;6.2220082;2.3534682;-.12487838;1.4051765;.99000043;2.2231085;5.014605;4.3315983;4.133903;2.3964877;-.060461253;.39460272;2.5773528;1.7719035;1.1694534;3.4678531;2.7715547;5.8459187;-2.3624437;2.2290905;2.3432856;3.5812089;2.8557267;3.3716581;-1.8366535;.39534619;1.7494551;3.7447343;4.176414;.49383965;4.3208423;2.5206914;3.0522857;.87487257;1.1984445;2.2652736;2.1627886;.95975542;-.23730086;-.36742368;2.6094134;2.1353378;2.4912186;-.15446971;1.3042047;3.4852459;-1.1184872;-2.1141629;.82555431;-1.0814954;-1.4420151;3.7471046;1.1596916;-1.312144;.30684885;-.28417352;.22825229;.81865346;-.66198719;-.67515773;1.9153515;-.65102839;-.89010006;-.70222694;-.83891737;-1.1280445;.28339165;-2.1910024;1.9972113;.5923056;-1.0479175;1.2656573;2.8749754;.11321368;-.91547215;1.4603977;-.35270578;-2.148468;-.89091367;1.5565212;-.038389686;-.20065026;-.36645788;.018578516;-1.1457402;-2.5605276;-1.8393056;-.29303923;.63284832;-1.6888986;.12013567;-.61614698;-1.9029536;-1.345369;-.75125074;1.2052444;-1.3522037;2.813271;.19162308;4.3562922;4.1518421;.94909757;.16778986;.76025558;1.2486198;-.45189452;.10830385;2.4663393;3.2945065;2.0490787;-.7228179;-.36761492;1.1989477;.41108412;.23004627;3.7109609;2.3075194;4.2142773;-1.3724998;2.5243154;1.2969731;2.9077985;.81391782;3.3474386;-.50744534;-.93613362;.8709541;1.2942538;2.602458;.7780115;.82706875;1.5236585;1.9573025;1.422165;-.03898944;.38446864;.93870187;.82888561;.14836688;.4503122;2.6728265;2.2289717;.93912411;-.36680907;1.3000714;2.1734374;-.45178792;38.079414 +.23441425;.032269504;-.011835542;.84871304;-1.041398;.1712482;.19236775;-.003432397;.12469778;.48469695;.8287816;.33697394;-1.8952565;1.3546298;.21755807;-.024823114;.034781966;-.30244756;.53601468;-.87592018;1.4925798;-1.4087873;-.39513597;1.3394024;-.9968552;-2.3174064;-.5924595;.14714216;1.4261913;-.78410912;.20101181;2.8792806;-.71132517;.78694606;1.6433022;-.34718022;.223327;.58963215;1.1224287;-.1756583;-.68929118;-.47656098;-.22290966;-.30650091;.63780051;-.86477983;-.71013111;.31376535;-.093464985;-.52375484;3.016983;2.1759093;3.7026331;.76308334;3.5778806;4.6612692;-.11872605;2.0230365;.14005736;1.7193819;-.9128564;2.215662;-.45063341;1.1872603;-.39191312;1.8701419;3.3844795;4.1114907;1.1646398;.6953209;3.309685;5.097589;.63185668;2.1420906;2.854234;3.1450338;.76691031;.54987139;1.7414131;5.2776108;-.022537094;4.7488456;2.9287214;2.0604424;5.0022821;6.6630063;.67881155;3.7697341;2.7417836;2.7190373;1.3542588;1.4524056;-3.3386381;1.4203749;-.86830205;1.9677876;2.8148317;.28556386;.26185694;3.9244945;1.0437411;-.50422949;-.1202441;1.273062;.12972587;.95186532;-1.2194873;-.28826624;-.9411636;1.4632382;-.068354085;.78976655;-3.2606473;-.18715876;-.74728882;-.69406956;.61016971;.1182934;-1.5727229;-.45439628;1.5795857;-1.1462389;-1.360204;.76924658;-.31878719;-.25068274;-1.6590558;-.41485563;-1.0459822;-1.8261396;-.5032903;1.3352286;-1.3380551;-.49206823;3.3151114;.026601853;-.63634181;-.13721307;1.8483148;.63030338;1.5683208;-.54079187;.71191752;.34095815;.40210974;-1.3744856;-2.4830542;.48003617;.93041438;.99763823;1.6059191;1.9636717;2.0953963;1.3838347;1.3966154;3.8195007;-.32422912;1.7390333;-.26029232;.42684942;-1.6503552;1.4394063;1.425312;1.1454128;1.2602853;2.2205575;.9071309;3.4140682;1.8012139;1.3097864;2.3580575;2.5118632;1.4722109;1.7004805;2.4564364;1.6911657;.74164295;.1686243;1.6442105;3.1751425;-.4998818;3.2255666;3.2165017;2.4778574;4.2122045;5.412384;-.38788661;2.2344911;1.5156679;3.1962922;3.1188388;1.1319206;-2.7696533;1.8511057;-.66998565;2.0280406;1.6923953;.64679384;-.63257515;.17074047;51.385563 +2.3939743;-.071074262;-1.0180211;-.81618243;1.0001875;.32393473;-.26297757;.66850752;-1.8043593;.13292545;.95654869;.62417662;-.56450838;.59312177;.65287828;-1.4737602;-1.4020588;-.96820647;-.56009692;-1.9363451;-1.4559361;1.1793971;.24712506;-.40987617;-.36794153;.34728494;.89447451;1.1429294;-.97195756;.79580909;1.1380769;-1.9713967;.43182495;.05860129;-1.6884654;.4792169;-.45507306;-1.0272511;1.2016584;-1.2240694;1.1018401;.60624266;-.81844383;1.5124484;.56722802;.97912288;-1.2276558;-1.2822406;.15141638;-1.7839788;5.5815167;2.0470376;4.1708465;2.4674628;1.2207983;1.4680737;2.4522717;4.5941834;2.5652447;1.6293612;1.5124472;.97776318;-.9659735;1.0385329;2.3665307;3.1830697;.45851639;2.7007775;3.1462939;2.9430599;4.0846319;2.0984006;.028159453;3.276582;3.850909;-1.184713;2.0721123;3.4472294;3.2101004;1.7081248;1.9327248;-.58349383;3.239969;.37535894;-.01572085;-2.7963991;3.3711655;2.4547358;4.3426704;.87624866;2.3716633;1.7819338;.85298854;-1.3139417;3.4414902;-2.2571404;2.6512413;2.2491195;2.0180211;.59505814;3.6897268;-.20566458;.24716781;.73960441;1.1387956;-1.0906495;1.4677681;-1.1858284;-3.142669;-1.0043405;-.12708926;-1.2174842;.058630317;-.77310014;-.56017518;-2.1000841;-.44910377;-.27832758;1.8553063;-2.0078166;-.56139714;1.7012765;-1.5008061;.037490495;1.0866578;.29069608;2.2308564;.48272207;-.98919076;1.2604806;1.3885052;-1.4936967;.39803213;.50412405;-2.4437108;1.0888392;1.2308464;-.65277904;.39458784;-1.0258625;1.153558;-.062445134;-.38703966;1.3812031;1.9674231;.25051337;-2.8164089;-.63564682;.81860006;-1.2892066;4.3110743;1.1626174;2.0110514;1.4788096;1.5605522;-.46838078;1.8641405;3.2564435;1.7015116;.6557672;-.54328156;1.7143617;.60768813;.65892935;2.1667988;1.3289675;-.56855756;1.8329419;1.3428882;1.7279557;2.4791205;1.1341885;.17038843;1.8095578;1.2361612;-.69182307;.74438125;3.9715788;1.811401;-1.2177353;-.20721881;-1.6864717;2.4930925;.22775657;-.18153767;-2.2265151;3.9081302;2.6894081;4.4427934;-.22052938;2.6056366;2.0491695;2.0171995;-.9417268;1.9343597;-2.0288076;3.519141;-.84911221;.99106938;-.21569008;46.28978 +-.84620875;.45581713;-.53035086;.23715329;-.16540736;.38550523;1.0528899;-.55054355;-.64051181;-.13149558;.27418265;-.89832729;-1.6306627;-.97858781;.13714869;2.3622749;.66884965;.66240543;.56470716;-.36211908;-.61535591;-.92975372;.21990789;-.78731936;3.1097012;.78667098;-.66833752;.92205602;-.31557196;1.251753;.89844799;.12418523;-.80983275;1.4344217;.72605562;.16907966;.83967644;.90118229;-.36489841;-1.4545714;.61268127;-.26581538;.7392661;1.1079527;1.1179559;1.1974573;.023723837;.84065443;-.15895379;.48136634;3.0690198;-.58725399;5.5767212;3.9136655;1.8475251;.81756896;1.9881102;3.6483572;3.5353489;4.0057445;2.3115628;3.72157;.25950849;4.4223847;2.5068226;2.3721886;1.2735516;1.4577529;-.84467578;.63350797;2.6675591;2.060735;1.0588746;1.746732;3.7867606;-.8761915;1.4925941;2.6591692;.47396296;1.6823219;2.8555808;5.6656723;2.8102026;4.7388773;.5552215;3.035531;3.5368581;2.6464105;1.0415099;1.6656957;3.1841044;4.8899622;2.1958859;-.97258604;5.01789;2.0345886;.77595305;.45156461;2.3135102;2.5198131;.91940564;-.70779425;-1.6841395;-.62089533;-1.0135528;1.5982718;.33810994;1.0086365;-1.0049042;.49657083;-.53661132;.34396705;-1.664557;.16130076;-.93469971;2.659956;.027205914;2.3333254;.78046864;1.0178546;-.68101811;.077077612;2.1788645;-.4347477;2.3959765;.069707088;2.1474004;1.9668598;1.783638;.68153417;-.17928609;-.094315253;-.066459067;.64520603;.35664734;-.019224677;2.6141634;-1.3797667;-1.5508753;-1.4649307;-2.5797451;-1.1924278;.90923452;-.29144537;-.71963501;2.3693149;-2.0722954;.40178275;1.4345744;.62209666;2.2931416;.73037577;3.5339139;2.7011554;-.077995837;.36584598;1.0889895;2.8586705;2.4663281;2.5732114;.50768316;3.4242113;2.8490639;2.7844858;2.7784231;1.2815856;.10318418;2.1634252;.78220701;-.83348101;3.4101682;2.5937264;2.059479;.93176609;2.9935346;-1.0442551;1.0253454;3.6160843;1.6039903;.084297851;2.1867764;2.5589728;2.5875077;1.9598563;.9593581;-.13207386;1.1726502;1.0246176;-.09404067;.15527184;3.6583419;4.7149591;1.6099255;-1.8032192;4.4256611;3.1252706;.87220842;-.5992763;.96776229;1.6559744;67.414009 +.69648904;.0081088739;-1.8216666;-1.8212053;1.1288316;-.4606216;-.24082734;.26475155;-.47581005;.67676425;.9480896;-.50304663;1.232514;-.39387059;2.0400057;1.3254117;1.0475699;-.53230315;1.1679307;.19094266;-.058188673;.59806305;2.750304;1.2134112;.18645264;1.7556781;-.39019334;.60380352;-.20430906;-.083734252;1.8095495;.75968069;.12049748;-.52924681;.97256356;-3.4689724;1.214182;-.50060743;-1.6210687;-.037869692;-.90513343;-1.5893539;.28227463;-.90561533;.7472893;1.6653198;.47593886;-.18656221;.63981104;.058097031;3.2366765;5.1556544;1.3891946;2.067107;2.0902994;.91830087;4.4444156;2.9708202;.79816675;1.5326504;3.9899929;2.2176166;1.8391949;-.65294385;3.1308665;-.044920601;2.1188302;1.2735633;4.2556887;.66299891;-1.6849087;5.1638327;4.7129617;4.0352044;2.7967558;1.7812703;2.7743239;1.0392752;1.112536;1.0068563;3.4171784;-2.4011719;2.8772309;-1.0080576;2.4564817;2.7063744;1.0478749;-.50799322;.0015152824;.3197121;6.0889721;2.1791835;8.1873417;1.5936537;4.7471972;3.7002895;4.7007127;.97209364;3.0759857;.5642333;1.4929712;.22437221;-1.8957306;-.8920911;-.37959719;-.16569735;-.84355211;.97867405;-.84125471;2.1102209;-.032490596;-1.2046374;1.3267982;-1.9081006;2.0312386;1.8057375;1.7025942;-.37941569;1.4677979;1.2861345;-.48553821;-.55352741;2.3315864;1.1503801;-.84187448;.77395767;.06710472;-.025676424;-.28442749;.3776879;1.0608029;1.9165895;-.84975368;2.3903756;-.40822542;-2.4666634;1.031775;-.39919955;-.69724137;-1.2189313;.14292112;-.22813846;-.44268185;-.44471857;-.86106604;2.9977465;.052379988;-.16917549;.7517575;.30832806;-.25703126;2.9792378;-.91081482;2.2795851;1.9470663;-.16893628;3.6365345;3.0783081;-.1806867;.75006551;4.4829507;1.2852736;3.5668814;.92589462;3.2843101;-.82220423;1.5265042;1.8553207;1.6181924;.96987933;-3.0789328;3.456316;3.5565331;3.6746185;2.1852593;3.8688288;2.1082339;1.2443558;.64822894;2.4548507;3.8308353;.0030042639;.97873449;.47287384;1.7490871;2.3962901;.55447268;-.59227395;-2.3171184;.82034236;4.3918519;.54919082;6.1666017;1.011637;2.1926079;1.0260941;3.8866186;.034692079;1.4802568;.20201674;59.998848 +-1.3436408;-.055431694;1.187515;-.019020926;-1.6227432;-1.1437774;-1.0191278;.70296133;-.33470792;-.82595044;-.10418954;.2007958;.68047351;.60882604;-.23966238;-.18383189;1.8082563;1.6411132;.36029732;-.78269863;-1.3134768;-.53883207;-.48630169;1.9635746;.15225357;-.51393044;.67560434;1.062211;-1.0435706;-.81488478;1.1152198;.70788318;.67583358;1.5770102;.48105729;-.059213817;-.42517594;.1992541;.4561246;-.61689889;.15908664;-1.7481164;.17432387;1.0041267;.58554494;.43513998;.87572664;-.12048949;.73048526;1.5023689;3.9318566;3.7208772;2.388243;3.2665048;-1.5176704;3.4219773;2.8971293;3.1373434;-.17143194;1.7973624;1.5732142;5.7396226;4.4429708;2.3839889;-1.9874122;2.8308935;3.1247945;2.5969131;2.2289479;2.6006992;1.1357011;.1336765;.88444811;7.0480399;1.3511571;6.3175859;-.37836444;1.6094258;1.7270039;1.754475;1.7141207;-.87877744;2.7460725;3.1761284;1.6031138;2.4649317;2.9277697;4.1952987;-2.5122595;3.3293331;.71516168;5.9280562;3.2073298;2.0477755;.219616;4.2447224;1.4306812;3.4862978;3.6198261;-1.0044446;-2.8697677;-1.2048844;1.5115972;.7361778;-2.3424439;-1.5598366;-.769005;-.11464744;-1.2077535;-1.6394871;.65748179;-.98108524;.43426231;.77722365;.16586535;.8315959;1.3128147;.68604243;1.0980632;-.31029347;-1.0917699;.35608941;-.9049927;1.4164671;-.051284611;-1.5696287;.66430569;1.310986;-.69237435;.35431314;1.5022291;.62846106;-.37605506;.83008873;-.60081112;1.1018542;-.018186573;-.69523627;-1.9662305;-1.2149224;1.7484905;-2.7940192;-.88464499;-1.3185133;-.069899708;-.15370724;-.61727965;1.1400771;.67198038;1.9602185;3.0875576;3.6430998;2.5781987;2.551965;-.2708219;2.30864;2.5903389;3.0474992;-1.0321145;1.4176066;1.984109;3.1943376;3.6865456;1.8668749;-2.2533507;4.2126703;1.2633926;.93383682;1.8346592;-.39516249;-.80994976;-.63174462;3.0837648;7.5173197;.085522197;6.0659142;-1.2606616;.38301724;.48810011;.7294575;2.6678102;.25461683;2.4672742;3.3258331;1.2820587;2.2851133;2.1022806;3.0733311;-1.5261061;1.6305435;.93211943;4.2433996;1.8104157;.91450477;-.52693248;3.5631685;-.81611556;4.1024337;1.7929699;-.54338127;59.978359 +-.24764813;-.3439818;-.45316985;1.1284881;1.2904164;-.79073095;.47932923;-.78211558;-1.9234408;-.21573463;-.24411738;.51161385;-1.7032536;-1.1079462;-.50468236;.22098128;.59716976;.15981272;-1.0953963;2.3907695;1.017953;3.1447186;.91287696;-1.2488953;-.28334025;-.91516161;1.0823793;-.82231867;.84690124;-.94430202;-.0054135644;.70109016;.032669682;.16025344;.50136715;2.8067453;1.8836926;-.16335736;.37542406;.87085062;.72902369;-.14194356;-2.1037793;2.1835256;1.0516684;1.0757185;-.47480363;1.5381479;-.47051123;1.1806101;5.3155766;-.58993965;4.2465515;6.8247595;1.4557364;-2.0642679;1.717627;2.0954223;4.2400527;1.8313708;.94348234;2.3315732;2.5421753;3.4764929;5.0471029;2.9392114;.66716045;-2.7693136;-.59853691;1.1862873;-1.1907796;2.1344655;3.9443977;3.0687482;.86491847;1.240742;3.0435119;2.3936288;3.1615951;4.2647095;-.88733238;4.2163692;-.61824685;3.1225157;-.17794466;.77527899;2.8828604;2.597939;.59219819;.18438458;3.4177082;3.1314075;3.1988549;.66808486;-1.2029102;1.6825168;3.300863;5.9366269;1.4030242;5.4482527;1.0135913;.4723438;.94719738;1.7601632;1.431637;.66466677;-.19211763;-1.7665497;-1.0342484;-.11292415;2.175632;.5265457;-.85030925;-2.3366404;-1.6488372;1.0923901;1.2942125;-.072041117;-.19024701;1.3357575;.44449127;3.5668812;-.66714382;-.32393163;-.64578438;-1.5591385;2.0376463;.21637741;-1.6836768;.52168161;.15337193;-1.5771791;-.83158696;.021901667;.87811542;2.6269271;1.0966668;.49146527;.33690977;-.75420445;-.48265165;.76667392;-1.854885;3.4324858;-.12732171;1.1649487;-.06911125;2.5761144;1.0534092;-.082656689;3.2688973;.035757754;4.3441229;5.077877;1.9249473;-3.2241387;1.3073674;1.1499175;2.6408901;.73612124;1.9539542;3.8255224;1.9106507;2.1833932;5.0326395;2.1078434;1.1283889;-2.0389378;-1.3394548;-.18917894;-1.9905487;1.0829506;3.6313901;2.6563919;.71626526;.56942809;2.2791538;.026107404;2.759095;3.2337155;.033802826;4.5425539;.48917276;1.8736831;-.86431801;-1.0679232;3.3871768;2.0989406;1.8726023;.49913493;2.2224133;3.2238541;.92353213;1.8771236;-.34431958;1.0354997;2.4155035;5.2008739;1.3476809;4.1555934;59.768135 +.64603353;1.4315969;1.5116094;-.67067629;.25768343;.07020089;.93408889;-.32758641;-1.5045805;1.6252717;-.50070179;.22741871;.82136142;.61024427;.50612718;-.85893792;-.79824668;1.4264858;1.2824872;-.81811154;.26387927;1.086475;-.49380243;-.10112641;-1.1250776;-1.4266603;-.39918199;-.0012743763;.63075447;-.31132326;.93847686;1.7864236;-1.1960514;.89234549;-.63028836;3.3240938;2.1806405;-.84386486;-.19215775;.94393557;2.7970777;.21584046;.59387022;-.569592;-1.1705961;-.38864949;-.19309808;-.14731991;-.59215671;1.4780221;1.6276362;4.3455815;3.4490356;-.22376564;3.2581711;3.0088317;4.8193583;.048728932;2.0298688;1.4478117;4.8566813;5.5724511;3.9609489;-.41554669;.34661952;.66760892;2.231658;5.1861501;6.6065278;1.7678519;2.5249195;.95270377;5.4904804;1.9686298;1.6333708;3.1445527;2.8009357;.15882407;4.3476396;-.54554999;1.0815691;3.3657551;5.6031318;2.224251;4.7216039;.68499964;2.4183345;.9618541;2.4318626;-.56788594;.5153926;1.9018055;-1.6895933;-1.4088057;4.3159785;-1.4580441;.072609782;3.7605603;2.098398;1.1124774;-.75968766;.92307633;-.11946404;-.55742055;-.091730811;1.2224332;1.7174604;-1.6796575;-.72270113;1.5517735;.98242217;-.1200419;-1.7846358;1.308527;1.8280019;-.58192098;1.2816211;2.6011355;1.8204355;-1.6225888;.81238669;-.78644615;1.7355437;-1.2483426;-.23133466;-2.2701766;-.9957844;-1.7120643;-1.1060251;.11040991;.76388496;1.6788527;-.22701065;.25745219;-.75607371;2.2094536;1.2356135;.6357137;-.92496407;1.1597161;2.8769934;.60978305;.52186459;-1.454874;-.3062768;-1.1199789;-.4538267;.034901094;.36541006;2.1614339;1.5381892;2.3179376;1.5083102;-.45024505;2.4407222;2.7526846;3.2407098;.045879252;.75528669;3.4822328;4.2940025;5.0342464;1.9740063;.5805552;-.12775283;2.4445028;1.4289968;3.5968063;3.2905157;.94416714;3.2946665;1.2596875;3.1376975;-.67311889;1.3586249;1.5252148;1.4125037;1.6279889;1.9240986;2.1765454;-.20469917;3.2695329;4.4922528;2.0953195;4.2696061;.03041723;1.3346436;-.26494652;.19844417;-.58992219;.16081776;3.6098988;-.61812037;-2.5769043;.74568069;-.43032953;-.12638924;3.434948;1.919415;2.3850243;57.744614 +-1.1746368;.18131219;-.08970274;-2.6501653;1.8460802;-.61299241;1.6099873;-.14944918;-.64913869;-.16194634;.66147387;-.79417735;-1.505496;.06246502;2.0733809;-1.5537391;2.2939835;.33288902;-1.4189597;-.63080919;.84424186;-1.3758029;.66202402;-.87418783;.4303101;-1.6267549;1.1584865;.52854502;-2.0247838;.14114763;.66745663;1.3140222;-.0077232881;1.0759958;-1.0337915;-2.1605761;1.7447045;1.5474145;.79367328;.94603193;-1.1909037;-.88091683;1.2207625;-.40506247;-.091805436;-.0015134573;-.60157287;-.14205362;-.73703754;1.2097145;2.8012536;6.494112;.51912236;2.7535224;4.031857;4.476624;2.2084436;-3.7603009;1.8447167;1.5260633;-.38034615;2.120095;2.9122589;1.0790606;4.2477703;-.29462796;2.2014029;2.437113;5.0198946;5.0355377;4.1212344;-2.7313995;-2.4886503;.57343251;.13415095;2.2169423;1.7925215;4.4614925;.33667266;.99653059;5.0295076;2.2600346;1.6786875;.29266477;4.9965253;3.7374833;1.2431711;1.1606133;1.811141;.65341955;4.5644851;2.0996327;4.1537199;1.1163632;1.6450633;2.9788544;1.6747203;-.36242309;2.9845417;3.2717149;-.78763574;1.0249897;-.048810333;-1.0393089;.69434881;-.16073172;1.6925288;.50876307;-1.0334717;-.50083768;1.7573414;-1.4718337;-1.9521182;1.0665506;1.6410909;.7089563;.63488233;-1.0161662;-.9761861;-.8307547;1.4893948;-.7610901;.65707701;-.65802091;1.9221704;-1.1834096;.76043057;.99726468;-1.1902972;-1.3942537;2.0332189;1.2432573;-.026188361;.48247302;.39297223;-1.8189416;2.0804808;1.1536562;.17555924;2.394716;.10447595;-1.1347785;1.7162527;-.84633219;.44184411;-.28689483;.13729717;-.46564707;-.065521717;1.8917472;2.8636143;6.0737677;-.32201484;.92337143;2.7615983;3.2926962;3.3297958;-2.3966281;.92573494;1.1401141;-1.2631614;2.6655848;2.2331827;.98423433;3.9044638;-1.8859661;.7528922;2.5280786;3.0363514;3.4078221;.7718147;-1.7963493;-1.6695384;2.1891174;-.10224959;.59863508;.91972816;3.5703363;.084786795;1.8038113;3.28089;1.2838101;.52537954;-.87766147;4.2251163;.4858101;.24122019;-.053141683;2.2086492;-.359626;3.3212013;.21973817;4.3642082;.24110733;-.18643019;1.5687453;.8397119;-.85913354;2.3137474;2.6309929;51.594791 +-1.4360449;.33854926;.31100711;.97706842;.98559397;-.50603402;.44825569;1.5966786;2.3624353;1.3788958;-2.0439634;.83576137;.85150009;.32156375;2.5779831;1.8958529;.23438093;.80497116;.72262013;-1.256633;.059636001;-1.133957;.028865941;1.0442013;-3.0201175;-.39607576;-1.0980707;-.45513046;.39120111;-1.271775;1.0572771;.23878798;-2.1115885;.49166176;.50629175;.38478327;1.2181547;-1.6948582;-.92876804;-.71853024;.22150221;.20890836;-.45316899;.083585352;.12664272;-.047776055;.11558053;-1.8912355;-.95603138;-.94410866;1.3451014;4.2605886;3.6750755;4.7470059;1.3688177;3.081172;.3446421;2.6399121;4.2710929;4.5037627;2.0197883;.47513765;-1.3941427;3.5813756;6.5486751;5.084672;-.95508409;-.29342967;3.8823164;3.0409799;1.2014673;2.1949568;.88903362;1.6399454;.93854171;-.92731345;-.3351042;2.4844091;3.190845;-2.4262762;2.750416;3.3628237;2.2151482;2.926033;4.2992492;2.5469606;3.8734553;2.4831188;4.3883491;.5339489;4.5738168;1.1401898;2.3518429;2.4645107;3.1640444;-1.1906708;4.3018475;-1.0544749;.52255344;.94834989;-1.6615995;2.2375011;1.446555;1.2922093;.86791933;-.6642701;1.5452596;1.5001189;2.9243016;2.150784;-3.2767165;.020353792;1.7393796;.3891871;.26507723;.27978158;-.1218264;-.59705597;-.2152402;-1.1631359;-1.0565866;-.44892412;-.42509449;1.1107643;-2.1348026;-.80504048;-1.4069123;2.0590129;2.1175768;-.11689799;.14513591;.10155288;-1.9738336;-.66897398;.84578413;-.36319509;-.043759502;.58998346;.060290247;-.26301837;.055031609;1.0223575;.16521822;1.1585095;-.81239641;.66566211;.5537203;-.95645159;-.030073952;.44013321;-.3148824;4.2135515;4.1361799;2.9608157;.0067995638;2.0483627;-.10244706;1.4478728;1.5590949;3.8581076;.62319773;.72287577;.57643592;3.3799441;5.2622743;3.1156495;-.65825075;-.19512132;1.6094761;2.7612364;.81599796;.59865874;3.1085024;1.0425619;-.51536971;-.57541394;-.32080758;1.9568403;3.2528181;-1.275701;3.6243236;1.9942466;1.5103949;3.0720859;3.266082;1.7810529;3.2803018;.9930107;1.0149326;-.10801401;5.1847124;1.1922373;3.3958211;1.2920127;1.8180261;-1.1338534;3.83483;-1.9154726;-.11550593;1.2434944;54.412529 +-.87869191;-.19094568;-.38296482;-.89367825;.5088926;1.5260102;.69581562;-1.4627199;.45478085;2.4082072;-1.4129337;-.037641041;.71601939;.83795065;1.7814113;-2.0090628;-.13443254;.8271119;-1.4922224;.51279193;-.09846732;1.7138556;1.926005;1.0850596;.3013241;-.15285519;.50825286;-.086435452;-.19794899;-.83439231;.036598653;1.3943248;-1.163849;1.2172545;.61367041;1.7345891;.32071662;-.006580926;1.1939479;-2.4943044;.31699756;.090136491;-.31623334;.41996583;.23305795;-.11918972;-.66994011;.62797451;1.3576406;.62873578;4.1249504;2.0450051;1.6702317;.76799428;5.0310597;.3183938;2.370975;2.1833725;-1.2994413;3.4359496;2.1593239;.91760772;3.2250917;2.5608435;2.6339462;3.0688081;1.73496;1.00287;2.1468699;.97516364;1.0345775;-1.901168;4.0285635;2.7612324;-.61922663;.92811126;.23950535;-.7067498;1.8486831;.042422391;4.0117188;3.6687958;4.1609216;3.0608296;3.367712;1.2564707;.97661793;-.59071803;1.6952775;1.6438534;.09446919;2.1131494;-.022419404;2.9194105;-.81021965;2.5769057;3.5641823;-.42594036;2.3584692;1.2222898;-1.7935023;.61072081;.13289215;-.62556386;-.99367166;.26734158;.052666761;-2.4156013;.48530281;-.38855481;-1.5456299;.17981589;.35336772;-1.0676333;-.83009404;-1.8120166;1.3204762;.17440018;-.62091732;-.14390752;1.661816;.64734387;1.9984019;1.4619372;-.59269106;.55101043;-.85522485;-1.442191;-.31331921;-1.4646672;.030373143;-.44325829;-1.551223;-.24469393;-.49895027;1.596031;1.743539;-1.1627688;.1793317;-1.5297915;-.92895192;-2.4348783;-.74605;-.67062742;-1.3294557;-1.3337581;-.74907136;.11356795;1.1717294;.42983988;3.9640477;-.26671034;1.3366663;1.0333179;2.6062763;1.2800763;2.7241025;.14886843;.33991703;4.1468925;2.0626202;-1.3194437;1.2905014;1.0704578;1.8640014;.31050593;.56978756;-.26884568;1.1281323;.4843519;1.0295178;-.79756248;2.5795426;2.0027187;-.44662854;1.099009;.87474859;-1.1551092;1.3071691;1.1841075;3.9780498;2.7816205;2.0984426;1.8308635;1.1986256;.24035898;2.3139715;-.12541996;1.8886107;3.9243124;-1.9769273;2.2427738;-1.5283276;1.6423229;-1.7736511;-.70589817;2.5330751;-.82503116;-.25012952;-1.0753347;42.524612 +.47007757;1.4722573;-.62895882;1.5507021;-.8381415;1.3825995;1.2630712;.97322607;.28075534;-.58273351;1.8761356;-1.444154;.84836078;-1.2150434;.92593575;-.74315161;-.28382358;-.2419485;1.1285112;.39369485;-1.118577;-.59083551;-.34283063;.21809377;-1.2012147;-.4786557;.03715891;-.37307435;.20934412;-.77364022;.52404535;.60559613;-.50335789;-.38774887;-1.5685503;.12739272;.60732323;-.60281116;-1.1465478;-.4629851;1.3720922;2.420392;.87822998;-.43113208;.29904091;-1.2884724;.96045369;-1.054162;-.084991798;.04140041;.39769632;1.7697881;3.7364841;2.8950334;4.3575826;6.5185733;4.230659;3.7273734;5.3932981;2.8309371;2.1478992;2.2581203;3.9368787;3.5751607;-.40401515;3.7737455;4.8148704;4.5096855;-.81043029;1.667384;.47596964;3.8943696;3.5653355;3.7697952;2.3000469;1.3414441;2.2479634;2.9919984;5.9332018;3.4148116;3.962605;.61927742;1.0650742;2.9876761;.0085629839;.8328256;3.1384878;.5755356;.13243861;-.68701321;4.2188277;1.3882731;2.1039491;2.0086851;3.0086918;1.8904139;.66738862;.95759457;3.7760561;-.66088539;-.72665578;.91226423;.36114261;-.06436336;-.73284703;.56248456;.36240628;.15199469;1.1846404;.77625042;-.57183099;.30252904;.40282375;-.06274315;1.7776283;-.0029876814;-3.2312169;.56164706;.7564289;.25165233;-2.7484429;.34151757;-.52171469;.24593838;-1.0872445;.42318702;-.4113633;-.47049502;.85197228;-1.644192;-1.043751;1.0504142;.54482013;.27473748;-2.5646665;.47394174;.85484618;-.19461398;-.50048578;-.30372253;.53651386;3.8751862;.18695118;-1.1584145;-.13199247;-1.6145129;-.92552799;-.64398313;.68223614;1.3323284;.86969072;1.522621;3.0654826;.9260965;3.4175999;5.1131535;4.1414104;2.4497397;5.3223071;-.0097304294;1.600759;1.1966362;3.3510025;3.9461677;.92368323;.80817616;3.5132499;2.1548369;-.84660709;.1905766;.54223144;2.181006;3.152993;2.656369;1.1343973;.94031316;2.2115111;2.8150814;5.5085411;1.6258955;2.8742015;.2632108;.13019674;1.887872;.43787643;.060403962;.0046260334;.12744009;1.7799873;-.45504379;2.6425381;2.0434799;2.4337897;-.42330107;3.8394821;1.5618904;1.4812499;.38611442;2.9615302;-.8677634;67.404274 +-.79784149;-.63655406;.371218;1.5019072;.41479859;-1.3094435;2.9704697;.25102046;.17200914;.86467534;-.37395126;-.94750148;-.48409474;-.01500749;.047905922;.47143838;-1.3393751;1.2574018;1.0945336;2.2476642;.17861554;.37405819;-1.0009154;-.11145115;1.236577;-1.4998482;1.0836904;-1.7689012;.13406067;.7738682;-.24563269;-.25920928;.48492217;2.0983045;1.1135223;.82147902;-1.7973088;.83252132;.80783492;-.52624917;.55984944;.79288155;-1.5541759;-.093083106;.18726592;.093581513;.25046271;-2.150212;1.3587629;-.95434773;1.8770888;-.78728098;-2.1238141;.90633428;1.5639466;3.1675336;-1.5626131;-.77693039;1.1356405;1.1633527;2.8082466;4.6190362;4.1035581;3.0172603;4.7284207;3.4993083;1.0141315;.18959534;6.3888426;1.4579046;.0039848215;5.9750748;3.4895005;4.2446918;4.2365417;3.331835;3.950407;4.7549982;4.7511129;2.4776955;1.2755427;1.1740445;4.6060023;3.9789999;1.6657029;1.061765;1.4457637;2.1056659;4.5030103;.87859195;3.2215476;2.0482943;-2.4867845;1.1455258;3.0006897;.50536042;4.7296495;1.6445103;1.4004922;3.1118519;.33767587;-1.2374182;.074415773;.9294008;1.0218832;-.67192638;2.1235912;-.42014152;.75084478;.95993781;-.87542605;-.096198469;.55407232;-.60102046;-.21999866;1.4468228;-.93350679;1.0561923;.67375427;2.6330245;-1.0486332;.074174047;-1.3195006;.43895602;.60834813;-2.0351994;-.0087159574;-.49134839;.95000893;1.824497;.94355017;-1.6150484;1.7067554;-.31714508;1.3305022;1.2922425;-1.8630028;.75098193;.74847358;.38523886;.77513236;2.314955;-1.2374256;-1.0649879;1.0350416;.63452667;-.46573111;-1.8275894;1.4852129;-1.1534246;.86773109;-.43101332;.42914051;-.43784285;1.8473411;3.7325463;-1.2537949;-1.4356041;.15805854;-.94507611;2.018996;2.6075723;2.9090319;1.5365826;3.8020685;1.0446696;.85329968;-.8441456;5.3394041;1.0019457;-.75714058;4.6376562;1.9145244;2.2223015;3.2748945;1.8750864;2.8522632;3.4898438;2.3602138;1.4371542;-.48091677;1.9831671;2.3768969;3.2362518;.61551857;1.8483883;1.948837;.87565833;3.3526821;.86098307;3.8380423;2.9218671;-2.4648852;2.1774998;2.4395418;.5729984;3.3793106;1.17;2.1385529;3.3737662;60.850239 +.70599306;.90832585;.22233243;-1.2374166;.13943174;1.1055479;.018946754;.0466289;.0063718539;-1.2930782;-.44185004;-2.0879846;-.10788308;1.8432194;-.29162419;.75610352;.098533407;-.26141751;1.0942668;1.1735753;-1.6403852;-.81112748;-.38125101;1.0646927;.62322819;.67526126;.7378338;.046835687;-.73137212;-1.7324806;.65495008;.70997059;-.49228051;3.0741918;.21353801;.7226454;.56913221;.09274178;.1819033;-.15760894;-.58791471;.21095657;-.71509224;.68231088;-1.2788041;.61212468;-1.5526109;1.6830097;.44400412;-.65014935;3.4811561;-2.490942;-.1952778;3.479717;5.5193009;4.4294047;8.0592098;-.40997767;3.5252862;5.5374131;.64532143;4.5859027;1.7328762;1.9829236;3.8628221;3.4046905;2.5452671;.12284872;.96763498;1.0968647;4.3676572;.74365753;-1.3176107;3.0408938;-.10733235;3.441699;1.2490406;3.6599801;-.52402806;.86801279;.36562777;3.7876167;-3.0428586;1.432474;1.7215831;.13020664;2.2424862;6.1509104;1.932147;1.6619626;3.034759;-.37200537;6.5924182;1.6437516;6.0548067;.68310726;1.9364007;4.0628815;.10037481;4.0818601;1.581097;.91143727;-.96941781;-.64578915;.013657207;2.3250022;-.91152763;-.83903503;-.63099784;-.90868956;-1.1193129;-1.0223314;-.2339289;1.5794897;-.50799721;-.44004703;.52024633;-.57411122;.27833629;1.4613276;-1.8198349;-.57977074;-1.1231792;.87226206;.9853676;.35861224;.43198866;-.12415168;-2.0311663;-.98435628;.98937345;.57458347;-.96472698;2.485831;.28008425;.73952568;1.4833715;-.26780275;-.90270197;-1.1404887;-1.1195396;-.11844821;.3725664;-.50180727;.055935595;-.4356893;-.94854474;2.1492991;-1.1090829;-.61297685;1.5790567;-2.3980567;-1.9948316;2.4079196;4.6093779;2.3250532;6.6958156;-2.445044;3.063175;4.253437;.61717862;1.9428623;-.37172195;2.68224;2.7433589;2.8770437;2.6519661;.18410379;.093812585;1.4053297;3.0664623;.95735705;-.24342792;1.6430647;.20565775;2.5839217;.73293084;1.2611464;-1.0997909;-.43259475;-.084790528;2.5793941;-1.7348787;.19637002;1.5883265;-.29780617;1.4265121;4.3868289;1.882266;1.3675038;2.3826964;.66868991;4.4684095;2.362879;3.6177559;1.8961954;.80205399;2.0832655;.58908129;3.5898447;53.180954 +-.65488935;.078086704;-.81399679;.39227673;-1.3553332;.62549788;-1.5596069;.9791947;-.65171283;.18938799;1.3188136;1.150036;-1.0951498;1.013238;.028146246;-1.5504466;.21507744;-.45999286;-.59202129;.37038288;-.51604676;1.0500612;.090094566;-.20351155;.64721441;.010942098;-.48635682;-1.134658;-.0062248511;-.21701781;2.4351275;.4908869;-.21758619;.81768924;-.73136628;-.93349481;-.89336145;-2.0916972;.46454263;.077223159;-.62317038;.12774242;-.35214749;.57293361;.34557122;-.68228376;1.0917959;1.832608;-.40323532;.37907705;1.3617221;.46835893;5.7203784;5.8481441;4.3009133;3.5634036;.42370114;.49200633;-.64504892;1.3584853;-.79620582;3.9075732;3.762212;3.3846331;1.4681236;1.9260291;1.8497137;4.8619719;-1.3814218;-3.1694865;4.8743153;-2.5867486;3.8142579;2.4557142;-.52620101;3.8753543;4.0624638;.9173069;1.3805465;.16859876;4.6442599;1.7688452;4.1880298;-1.3136717;1.0034667;2.5431452;1.3941314;-.11520696;.042830054;.074002162;1.5315394;2.8823674;1.418895;-2.0745413;2.8859553;3.1449473;3.474535;3.0006723;2.2506392;.35747197;-2.8376465;-.18353914;-.42631948;.98982614;-.88229251;.78748745;-.3895036;.58982044;.92629313;-1.4694415;.53811002;.49961627;-.44417414;.68979096;.67941743;-.20521015;2.1398654;-.41504461;.89682239;1.0318681;-.45271191;-1.3014514;.96341306;.18062;.440411;-1.339654;1.8006706;-.02665706;.91382575;-.33738649;4.1164479;-.81581718;.9989661;-.69693124;-.30371383;-2.2753625;.47402009;-1.3672069;-.31934676;-.46704936;-.9409613;.65153962;-1.3231549;-1.6271757;-.14122441;.1013702;1.147701;1.0451378;-.66287965;-.029701246;.033069044;-1.067894;3.4675953;3.2491794;3.8957593;2.3244462;2.1399887;-.62362105;.069643721;1.590727;-2.1365147;1.4805461;2.9209826;1.4453976;3.1002412;1.5021849;2.7095702;2.1218979;-.080063812;-1.0009669;3.8415725;-.39410725;2.1637342;3.8832805;-.62604648;1.9693284;3.6374848;2.7800534;.71309149;-.32297102;2.2235293;1.0128565;1.7030203;-1.9646789;2.8451936;1.8226132;1.4789132;.62060815;.47756097;-.61169487;.21461891;2.1438243;.20872843;-2.1075985;3.1140959;1.9807655;3.456589;2.2792265;.8633492;.183642;40.079006 +.20835535;-.67332172;-.19150615;.19689539;-.50766784;1.6632965;-.88334697;-1.9079105;-.95485681;.41934904;-.10057767;-1.1589019;1.4371428;1.6408664;.68081868;-.28719592;1.5140361;.16207466;.059437495;.12666331;1.227792;.50289255;.081701294;1.0241122;1.1405151;.65421969;.38168031;1.3267865;.30637041;-1.248688;2.2188213;-.52272576;.89182788;.19539243;-.79050386;1.1917278;-.24001582;-.75813895;-1.0715646;1.6530771;.88457298;-.72855085;1.2666813;-.096363842;1.1798626;2.4289751;.90857989;-.60912412;-.60525268;1.0097643;4.8306031;1.6695284;.77643073;3.0310104;1.1575804;1.2352387;.34234339;3.5315514;.86492348;2.4692357;6.3760185;.74003941;6.3830161;2.0485876;.93057191;2.3830695;2.4655957;1.5804199;5.224082;5.768374;3.3002415;2.3329504;1.4895587;2.0695505;1.188318;1.8802493;1.5687137;3.5737994;2.9763157;.0038464891;.59071147;.63777745;4.2064342;4.2684803;3.1180475;5.1192474;.98916513;2.8465245;3.9597142;5.6515856;-.65544724;2.7668703;4.6617789;2.1560583;2.2519672;-2.3207474;1.1414031;4.0777841;2.7243166;4.7894964;-.14058521;-.026894275;-.46768963;1.495797;-.43584681;3.1149106;-.76039112;-2.0572586;-.86486602;.78088856;.83944595;.78024483;1.5882447;2.2206013;-1.1820772;-1.9132979;2.2312133;1.5990735;-1.4029881;-1.116576;1.3770565;-.70247942;-.50478244;-.57012081;.6493513;.82862836;1.2318052;-.016494123;1.765501;.63691044;1.6254212;-2.4763849;.47369465;-1.7737864;-1.0752541;2.0089827;.15973936;-1.7417709;-1.1387695;.52738667;.69879007;-1.6502626;1.1367766;1.201965;1.5766834;1.3747352;.73837674;1.7690685;-.19590062;1.3298256;2.1675301;1.6002871;.29748991;2.6852562;.0081366682;.19315016;1.6259059;2.2480927;.45175946;2.1018591;5.0255342;.36545461;3.7830606;.40917203;.11125097;1.1085709;.39897633;1.7542683;4.7623472;5.0055161;2.809499;2.190779;2.2821431;2.7552278;-.33688965;3.1108177;1.0379492;1.9034556;2.558902;1.0172017;2.1687579;.70589465;1.0538412;2.6891425;3.2976601;3.8913491;.76792675;1.6469337;3.5937767;1.4763547;.39517632;1.9243639;3.2377534;1.8356701;1.4256369;-1.5671757;-.26263711;3.3970408;1.28285;3.4950771;70.385986 +.28972781;-.20009658;.11552791;-.74332398;.73476565;1.3929796;-1.4971709;-2.1147165;.90547818;-.18292104;-1.4385464;.69466585;.69293541;-1.9198412;.27910274;-1.4608216;-1.4988233;1.5808891;-.34525073;1.4679936;-1.316579;.91633004;1.0874839;-.87640482;.77451873;-.45446438;-.14071323;1.3651912;-.4679268;-1.7256261;-.95908147;.3185389;-2.0708957;-2.106632;1.6194013;2.098875;.05265066;1.0263113;-1.3044647;-.29479396;-.76859015;1.1942527;-.62513721;-.12610285;-.51543778;-1.7765641;-.44561595;-.33272687;-2.1981268;-.9784776;3.6153848;1.2220126;-.32669371;1.5282583;-.42386666;2.7597482;6.1390781;2.7962306;1.61431;5.4057269;3.765126;2.507452;-1.0298305;3.6764808;-.84807914;4.387289;1.9992847;.47473311;2.7165163;.89273167;.63642144;.60270411;5.0036874;1.6541488;.083484784;3.1000118;2.4278066;2.18926;.39109936;-2.845681;2.7648149;2.5423722;6.9128609;2.1848748;3.2627528;.95361084;2.9256709;2.4127691;4.2766786;1.6766762;.17017017;2.9350986;2.192935;3.3734434;3.9515605;1.3239565;3.9710963;1.9204403;3.1938388;-.86334342;.57698059;-.53262579;.23438564;-1.0416218;.44086665;.42866346;-1.6840656;-1.6842904;-.3455309;.56569076;-.27755386;.27428958;1.6817582;-1.0256258;-.3478429;-.15801477;-.69586277;-.74507004;-1.8437999;.78323889;-.92712724;2.012985;-.12108096;-1.4724311;.20388792;.34296557;-.12388001;.95469594;1.3503792;.79396391;.65833598;.60566479;-1.7766584;-1.037202;1.8385808;2.8923736;-1.1894557;1.6564963;-.65029866;.4664644;1.6987598;2.7337358;.37031808;-.42368382;-.91870201;-.36168486;-.55008197;.91651827;-.14762604;1.1719055;1.8667879;.1589355;-.18670493;-.67922437;.73020428;1.2210097;4.1570892;1.1566093;.50847667;3.1020474;1.5257636;1.9330919;-2.1941173;2.8454525;-.16465406;3.1423891;2.3510604;.064981155;.99377418;-1.4987198;1.3834443;-.057333075;3.6209631;1.0617242;-1.0528536;2.1422806;2.6930027;.65948921;.26152539;-2.3184845;1.6630418;1.002116;4.5950031;2.0689559;1.7992634;1.0238328;2.3082027;.40829748;1.4866863;1.0875496;1.3624507;3.9049206;.63104934;5.2707505;2.3784263;.24056986;3.5410314;.94343024;.73673075;-1.4144365;46.123722 +2.4191997;.53975379;1.5688169;-1.5908322;1.550208;1.2015092;.93151438;-2.054388;-.65813178;.60393816;-1.4538298;-.4361712;.31214359;-.63654214;.55084354;.36211398;1.8463458;.19541369;-.10528738;-1.4287865;-2.0624404;1.4798902;-.92963016;.81826615;1.3899037;-.19206727;.34271288;-.84175807;1.4223887;-1.6078366;.32415;-.41828939;1.2678347;-.12963466;.90202123;-.95732617;-.43687397;.080418773;.0033808588;2.2887766;-.033162229;-.87032723;1.0906882;.038285453;.2151197;-1.2581639;-.97438776;-.64719594;-.46048555;.60848296;4.3304663;1.6903567;1.666067;1.3356867;1.0095893;.5258323;2.7445986;3.1262279;4.5187311;2.113307;1.8825952;3.6423516;1.5292158;1.7391182;3.305423;6.1974649;-.29399824;3.7945621;-1.3820155;3.9620707;3.4267588;.96882796;1.334514;-.61208248;5.0912457;2.4304111;2.6946459;4.806098;4.8857102;.0049298364;2.8802569;3.9929883;-.37419304;-1.007964;2.5647788;.12259679;.10319897;1.0568885;2.8929713;2.589581;-4.0723262;1.9258175;2.6196878;2.0767903;4.6067553;1.6947259;4.3266821;.72925562;1.1654524;3.5030875;.21967994;-1.6505051;.52848953;-1.8867573;-.79573476;-1.0040808;.59380656;-.40454563;-.74886835;.13034035;-1.244715;-2.1734869;-.73349464;-2.0158844;1.4782778;2.4745226;-.54638803;-.91955441;.16218458;-1.2862694;-1.6318874;1.1782991;-1.1760963;2.1283927;-.45655179;.14726527;1.2708524;-1.7321438;1.1745851;.034742866;-.44915694;-2.4205287;1.5413712;.27335587;-.47223705;.53312147;1.9600132;.79777128;-1.5716722;2.3181205;.99085408;-1.5124798;-.33353862;.51520437;.52483666;-.0011064316;-.18056025;-1.4835294;-1.6230468;.48259372;2.7348297;1.3839351;-.033433687;1.5837506;1.1578004;.36724612;1.0807958;1.6058432;2.7945786;1.699198;1.8668824;1.7282759;-.5614804;1.7977864;1.6659547;3.7822199;-1.3538567;1.7769316;-2.0539176;3.374764;1.2616528;-.096156076;1.3573732;-.0012908842;3.9374049;1.5368789;1.3105171;4.0285635;4.3409963;-1.2459165;1.958264;4.3552198;-.85503948;-.30913475;1.8561136;-.75243795;-1.1077187;1.7415459;3.4132392;1.1935464;-3.3993278;1.8759828;1.5452077;.33306822;1.4252323;2.4645841;3.3058636;1.3792132;1.6946421;2.592586;54.841473 +.60262376;1.3543124;1.6240859;-.25473064;.74676645;2.2464826;.12089512;-.1764591;.88817632;-.46569264;1.3383144;-.8406142;-1.0054926;-2.3491919;.74896288;1.031127;.70354289;.40855512;-1.3065941;-.92604101;.034173198;-.19207281;.83580464;1.1367337;.75552869;-.91587704;.21598953;-1.2604817;-.59668118;1.3229855;-.14742105;-.64744401;-.87336826;1.8700991;-.73453897;1.0851417;-.41071782;.066989839;2.071466;.90519488;.56786144;-.62316281;.96553987;-.47371373;.19477151;.41168529;-.7441228;-.66117942;.89019561;.069351569;2.2750194;1.6159269;3.6817052;1.2026204;-1.1029685;-1.4686809;.79904956;-.26999035;-1.559636;2.2875924;4.2145042;4.5134196;-1.4378232;1.9508864;1.2415737;1.6351616;1.688696;3.6268704;.098744951;.90043801;4.3404865;1.9221799;-2.5407169;5.7630291;.35702696;3.5648079;3.3541062;1.9048126;1.8591813;2.2331491;1.6732107;2.5115469;3.7111697;1.5589944;1.334442;.77350873;-2.2632887;-.87720221;2.7440729;1.9022942;1.0023423;-3.3050277;1.3774314;3.2672005;4.5873356;.91790801;1.1119736;2.7056956;2.5234363;2.8074698;.40071547;-.52993709;1.426785;.44791219;.38774735;3.0178633;-.2521311;-1.4335541;-.76290995;-.3178626;1.7455891;.46873099;-.92946893;-2.2220879;.36864722;2.4339144;1.2198101;.49679911;-1.1773179;-2.0552788;1.5798619;-1.2039599;-.85600513;-.15696019;-.33157471;-.24641123;1.1848933;-2.7134542;1.538142;1.0088806;.67534226;-.21126167;-.34981605;1.6888391;.95616513;2.0937092;-.26598391;-.66566658;1.5001835;1.3453135;-1.1604534;-1.4877585;1.7614481;.58724666;-.80496931;.51114839;-.033262245;-.62534702;.63945943;-.2708196;1.8258327;-.22166684;2.6424868;.63367575;-.26555854;-.13222919;.67548591;.57231766;-2.664278;.84197855;3.6359053;4.0701733;-1.6059668;1.5006076;.35352489;2.7386699;2.1025586;2.1834283;.94424474;1.5910841;2.623435;1.2130222;-1.5872594;4.0711756;-1.7509234;2.3290055;.27097321;2.4237645;2.6312299;1.9350587;1.223913;2.8223679;1.8677458;1.3742661;1.7601331;1.4537977;-2.3310432;-.73872924;3.9595668;1.5495675;1.8129252;-.48168901;1.8588135;2.4050126;4.6618705;.153475;-.76789141;2.2006838;2.0229852;2.1153479;46.143459 +.14613402;.76002246;1.2915872;-.18271743;-.8309536;.38356033;-.46224886;-1.0381765;-.42275143;-.58086866;-.82850081;-.80513769;.37141427;.53972173;-.46449327;.015338155;-.41764775;.025164727;1.5148371;-1.6675143;-.8328371;-.57458586;.48587441;1.099;-1.2240132;1.0701182;-.15226837;.76064736;.40189821;-.6374864;-.54865599;-.38485894;.07805334;.30600441;-.17317571;.77365947;-.86093521;.86626697;-.70522702;.52136213;-.33501017;.56233591;1.0130765;2.3050869;.039394177;-1.810488;1.0163893;.72975314;-.96655762;.58837819;6.3131256;1.1682872;4.1728978;.89306784;3.10254;4.1377735;2.1322935;-1.6067457;3.7185295;5.715796;2.6772423;6.1362133;3.5635545;3.9004562;5.3888197;3.231771;.99260092;4.7760186;2.9992502;2.2562129;-1.6765361;3.9672298;1.7255502;1.9208158;-1.0164614;.51099318;4.2180614;.51868922;2.6886404;3.7010221;.29752287;4.3796673;2.7029259;-.21694702;1.8866456;.87334538;2.391494;-.99645525;.91114795;2.9796059;.89423287;1.9795568;3.831604;4.1653032;3.3471642;5.8385382;2.018779;1.2661167;7.6192889;-2.1459751;1.1058007;.13729143;-1.2861841;-1.5837855;-.55086994;1.0285821;.33117169;-2.7218742;.8808282;1.1411322;-.14380383;-1.7058356;-.9317978;1.0313877;1.0696349;-.76627606;-.32983568;.37987378;2.8737421;-2.035207;-2.6948607;-1.322391;-.43009934;-1.7632915;1.2568711;-.81883132;.60640585;-.27804905;1.1390587;-.92417622;.67154294;-.41243634;1.0317131;-1.4540212;.56913447;-.99762028;-1.5195947;2.4816201;-2.5488157;-.11445019;-1.1777618;-.61571997;3.2294784;1.529183;-1.3903334;-3.0538027;3.0458639;-.48019072;-.61963123;.5347994;5.0784001;.48694879;4.1153355;-.65980417;2.1348999;4.1167989;.87184608;-1.5140826;2.0527139;6.7238827;1.1989883;3.2339456;3.5226214;3.1655288;4.0422277;1.8317813;2.1123984;1.9563376;2.4162784;.71798813;-1.7244192;2.6393824;-1.1638955;1.6863501;.74409235;-.498656;3.077162;.16315871;1.8855212;1.8726789;-.85481012;4.5923882;3.9694545;1.4100764;.80693877;1.1488826;1.5519484;-1.8345401;.34957126;2.3924961;1.1450983;2.7030127;3.1882141;2.2736464;2.9327776;3.7780199;1.7571231;.66278434;4.779882;-1.5968519;61.144253 +-1.5697738;1.5519738;-1.4365642;.012518577;.32147804;-.70909548;1.210938;-.93580431;1.9143007;-.072280824;.42525086;-.34776399;1.169103;.085395642;-.83329201;1.5975366;-.21718743;.77174246;.97289294;-.75895578;-.9604705;-.51975203;.99041528;-1.6097114;-.73686486;1.1102109;.84806275;-1.3981186;2.2659829;-1.1470188;-.59245908;.79208285;1.7370927;-1.2803001;1.6448594;-.37721628;.67179424;.61762702;-.027181199;.40198705;-.40032652;-2.1644287;.5765534;-1.3206325;.73092765;-.20223103;-1.7893274;.77435517;-.096273422;-.80017251;-.49418318;2.2845893;2.9751735;-1.1625015;3.8948894;1.7729746;5.2495399;4.3106656;2.4955509;4.8823519;-.28831631;1.3752494;3.6708508;2.9346025;2.709219;1.9645514;5.0939565;.81673533;5.667232;-.50884169;4.2509112;3.6453102;1.732926;2.7839575;1.2891183;3.6450481;-3.3688018;2.4193978;-.65999264;5.6528811;-2.8057597;2.4134836;1.07133;3.2256634;-.98236817;3.0362582;3.8317368;.50653231;2.0234435;-.52382004;2.1770136;3.8223042;2.3851926;1.1914403;7.3413548;1.2639859;2.7109563;2.1414471;1.3303072;4.0360351;-1.8860483;1.5417205;-1.3723118;-.77443469;.60904169;.63088769;.48803151;-.082747988;2.9059141;1.1679248;-.29840595;-1.2524828;.48032358;.67523009;.57489622;-1.1684288;1.0966446;1.506296;-.52747577;-2.8894606;-.098833375;.49340233;2.5270965;-1.4935859;-.75534034;-.36066061;-.27999824;-.92510879;2.2018218;-.99511123;.50503182;.75713342;.2418333;-1.2514132;.059346791;-1.5143557;.60133904;.33889312;-1.3880994;-1.7751336;-.015802626;-1.9228289;-.58081532;-1.786185;.96139026;1.2907304;-.57466823;1.3239015;.67263114;-2.2249923;-.35274041;1.0484535;1.3105339;.13084632;3.9857631;2.3340609;2.3459132;2.4176874;1.2459117;3.0183165;-.56919122;1.6681974;2.2863395;1.8609537;2.7342436;2.1489983;4.2759771;1.2233326;3.9609189;-.5602867;3.7078311;2.1457422;.95678627;1.0278797;2.2146714;2.5583146;-2.5891876;2.7978852;.66130137;4.9295073;-.85926002;1.341176;1.2994913;3.4257834;-1.0650955;.76187581;3.3756862;.6008628;1.8318222;-.069800861;.79253525;2.9880824;.1665033;1.619482;4.6040416;-1.2012047;2.2185109;1.733988;.89780271;.34441492;59.58905 +.65994418;-1.2113045;-.14898096;-.21034329;-.78698695;.77945769;1.1243472;.85375655;-1.0565758;-2.3898828;.75876099;1.998268;-.37963593;-.0076738945;.67329019;.35874578;.013513756;.17203286;.34263924;-.78760499;-1.856238;-1.7659492;-.30251265;-.97108132;-.97904819;1.1321603;-.44402006;-1.1014332;.78609103;.31838104;.048830818;.23752555;-.080799393;.99121106;-1.0527211;-.19108586;-.6452179;-.29827961;-.76118565;2.4068713;-.43856552;1.7659879;.66826218;-.42103112;.47775871;.44245267;1.8265803;1.2526659;-.82102031;-.46131828;2.8717732;.75165373;2.5436487;1.6901025;2.7588959;3.9483261;1.8112884;2.3268027;.74282986;3.6970065;2.3043516;4.2776628;3.6667776;3.1890564;2.4619362;1.516168;3.9987097;-.30311465;2.7904758;.28430843;.32587412;.70546013;2.3003428;.15928005;3.4780378;4.5223112;3.6793206;3.2536135;3.3868041;1.3618184;1.5367286;3.9999762;3.3263245;.082440518;3.6367531;2.7439227;2.8697057;1.2173411;.96682656;4.4377203;1.193668;3.1674769;5.3291116;.91648692;1.9653611;4.2793207;5.7407608;3.040395;1.3931466;1.0983192;.01526078;-1.142457;-.2058567;-.31547055;.6522665;.85699815;1.1268547;.079499245;.43208507;1.3038208;2.6346009;.96338922;-.71223867;-1.0526881;1.7141658;-2.3956351;1.0748271;.59430033;.64316654;1.0208298;-1.445974;-.71425182;-.59585255;-2.2948735;-3.0239699;.46014071;.34328929;-.87703204;1.8887464;-.73645401;.39361075;.40354499;.1986956;2.9204049;.22884299;.22824608;-1.5076785;-.1390214;.50781113;1.0411478;-.27004409;1.076787;1.0440319;-.31741041;1.8759457;1.0615604;.43354103;1.5394442;-1.2030705;-.28578758;.86144805;-.8522163;1.8840252;1.6615177;2.4452078;3.8224826;.084494829;2.1473789;.81924576;3.4802823;.23940624;2.5911512;2.4813926;3.180701;2.2649841;1.3549899;4.5301561;-.26083198;.87462533;-1.7493554;.11672127;-.37493792;-.85242933;1.2776023;1.4574267;2.4625869;2.403053;.4408474;4.1455932;.37663683;.82079333;3.0624177;3.0269554;.071872152;1.3684837;3.1087613;2.8885612;2.4529262;.72580582;3.215091;-.15272754;2.6928875;3.849674;.85254264;.69710529;3.9734769;3.730139;1.4843882;.72212344;2.3055499;57.661579 +-1.0231425;-.28345388;-.72547603;.51741171;.66279;-1.3846225;-.98685336;1.4733231;.47702795;-.29700339;-.55004227;.83741951;-.35621485;.12427743;.35219768;-.076670617;-2.0992346;.30274108;-.86536366;.93829381;.1995351;.0053929482;-1.6537414;-.67068279;-2.3477075;-.55725735;-.31125256;-.53029883;-1.2893476;-1.3731897;.66620165;.14088669;.28850996;-1.0184243;.8854003;1.525275;-.34781054;.84528983;.12127846;1.0203139;.43956736;-2.2802641;-.5263527;-.65147471;.82366818;1.6970682;.19801964;-1.4666218;-.16803502;.78861719;-1.7938217;4.7004275;-.38444242;1.0493999;-.5225789;2.920676;-.014568499;2.3791511;.34806919;-.87455696;2.8969522;2.449373;3.6813843;-1.0756325;4.9340982;1.1376851;-.077585243;3.8479943;4.5742784;-.72250521;.33856282;-.19628184;1.3012731;.14708099;2.7916815;2.9176126;4.8386908;2.7514756;1.7461553;5.7165146;2.9573462;2.5889356;4.0280375;1.5995981;.86471647;1.5649387;.15627868;-.030591816;1.4929075;-.72953713;1.5595767;.86806148;3.1848643;-.21995452;2.3085649;2.0966322;2.3382828;.47246233;4.6554666;3.6285188;-.055728141;.47050104;.074330166;.87301171;2.6821976;-.14047706;-1.2705897;2.4874599;-.38247585;1.8032491;-.091390312;.51249653;-1.3434116;.53786302;1.8076165;1.0757643;-2.2194543;.13208911;-1.5330299;.82014728;.40672633;-.17466903;-.41908112;-.14015107;-1.9485055;-1.4408721;-.95282274;-.88122481;-1.9504421;.082581162;-1.2519736;-.52368331;1.0038873;-1.0056438;1.7274387;-1.5536488;-.86600149;1.2646346;.41706228;.89499521;.44539934;-2.1037269;.32311961;1.7902619;1.9024065;2.8760593;-.57723439;-2.2982466;-.94836336;-.051483866;-2.1887596;2.0963042;.53366905;-.056222513;-2.3285441;2.7332036;2.136971;2.3643844;-.334537;-2.2495129;2.4059699;3.5554523;3.7158442;-.27811339;2.9331107;-1.148684;.33540094;2.259923;3.3705654;.23460326;.062568493;.32273316;1.2702725;.4891707;1.4351008;2.7524137;3.2400422;1.7243683;2.2227681;2.7706838;2.8825781;2.7072182;4.8592939;.98788124;1.3881899;2.4090714;.18595499;.0021932086;-1.2731067;-.60084105;.87177122;.27378422;2.250047;-.24580681;1.5554655;1.2540828;3.1016221;-.29140991;2.9718704;4.1080995;41.749626 +-.5415355;.37544176;-.27342474;-.52440584;-1.5159444;-.65815592;-1.1109675;.18827495;-.24014822;-.21924108;-.75183797;-.20066151;-.24594323;-1.9873796;-.66615027;.51129085;-.39649847;-.093476012;.3415024;-.42866614;-.11086328;-.5419426;.90256023;1.1268746;-.071741231;1.6455418;-.023378929;.4310801;-1.4588189;.90335679;-1.4384087;-.12388296;-.73431575;-2.0478654;-1.4378387;.12226927;1.953351;-.72794271;-.4715142;1.3269871;-.84936351;.21448638;-.30128008;-.76479936;-1.7064488;-.56377482;2.2633927;-1.4166993;-.07741078;.3782436;2.5950708;.1614579;4.68185;1.9319965;3.7296;5.4705758;4.4117141;2.6774333;.33610812;3.4248946;1.1015463;2.2169762;-.024527499;2.9016361;4.4260235;.65066665;-4.8180614;1.5206269;.065972202;.30377039;-.060618766;1.3610924;.33251357;2.6714997;1.3369616;1.6686292;9.7169046;3.9619174;2.653312;4.5084009;1.0712889;1.7382991;.48389387;-.1698686;-.75624895;4.5329113;.14084613;-3.2027042;2.7203455;3.7278883;1.2947752;3.4786763;.29511386;3.4594321;-1.0412098;1.5025184;2.0649228;3.1687703;3.1128795;1.7422523;-.67836922;1.9369241;-.99515092;.10756642;-1.9200158;-1.8145549;-2.5697136;-.93860829;1.3645592;-.26913425;-1.5342462;-.21328738;-1.2754276;.73651725;.044527799;2.7960393;-1.5874903;.58274925;.8712101;-1.2677329;.65342337;-.76821709;.93735045;-.92062259;.5622443;1.6997867;2.3853517;-.18135226;.32246134;.83515561;-1.656936;1.2084805;-.18308274;-1.0923178;.17338274;-.38424477;2.5797086;-.00318694;-1.2602395;1.493023;-1.1754789;1.0497072;.97975814;-.53073972;-1.1771337;-1.5060496;1.015453;-1.2659724;-.1137382;1.4952239;1.6974739;-.61454296;3.584585;.90668625;1.1745194;4.185811;2.2100317;2.0959389;-.12003451;1.7266346;-.37129503;.50353777;-.63565034;2.765836;2.7721088;1.0045153;-3.7198234;.49709269;.25259802;.24901059;.32514551;2.5947978;.19505699;1.9398;1.5981871;1.3033243;5.865922;3.7588613;2.1931517;3.272069;-.053127892;.97816002;1.3306082;.011411684;-.73893619;2.6348026;-1.1759585;-1.2163064;2.772613;1.7054923;1.5104519;2.7615049;-.17153779;3.16166;-.87232399;2.8973055;1.7355025;2.6940007;3.5966761;.56584007;42.107159 +-1.4259331;-1.6949842;-.98093557;-.014338268;1.1575136;-.4793734;-1.613153;-.46978924;-.009165559;.90809798;-.63955873;.74881607;.48402005;-1.5790972;-.57342166;.3153576;1.3486913;-.41020846;-1.1875747;-.18698545;.69372141;1.7308134;-1.7105179;-.27301291;-1.8445407;.047776047;-.18740441;-.42098492;-.34115228;-.85007656;.87730652;.95966101;1.6585959;.31609535;1.7689373;-.79757702;.38790956;.30706924;-2.1433067;.4951005;-.15789163;-.87767708;.35556075;1.0245326;.041128293;.66673416;-.78649849;.65458184;.14587015;-.096002601;6.1009736;2.0113747;1.529243;.72985828;-1.3103025;.27551678;2.8482957;-.42526031;.74216682;2.6234965;1.052284;2.0798879;3.8756063;3.4289396;3.8130474;4.5360961;4.7764897;1.0642682;.62614745;.78384995;.83796775;1.8496112;2.7559268;.046860348;1.2956269;-.14512956;.98810661;-.33621907;1.7387887;-.90400136;.74324912;4.9067321;.826774;.38782224;3.4153821;.58980292;1.5019631;5.4503512;6.9236135;4.4345355;5.3054876;2.4772925;-.6529603;5.280972;5.208724;1.3118628;-.1759602;1.4565746;2.3659632;2.3831167;-.80843741;-1.0795177;-1.3060336;1.7114583;2.0833459;-.14606148;-1.7777356;-.1286594;1.7494969;1.2824918;.24312796;2.1057312;1.6939876;-2.819474;-1.9920052;-.18860877;-1.665133;-.96508902;-.47442359;-.245359;.5847348;1.806193;.56553227;-1.0196995;-1.7710205;.18288428;.98647517;-.19102484;-.57188535;-1.7432047;-.97712278;-.83563203;.27351108;.74209392;.90888911;-.80406016;1.0890428;.29408631;-1.9169004;.55646896;-2.531337;.56079918;.25744405;.18384749;-1.0831331;.42564267;-2.4668441;1.3126907;2.0454431;-.66762632;4.1825843;3.0010045;2.59568;1.1387179;-.18096076;3.1047132;1.9889023;-.27994004;.9530623;1.8886437;-1.2732115;2.2606454;1.6016293;3.6492531;2.0496368;4.2521696;2.5839016;-.10048659;1.1565586;-.65447217;.75136209;1.2475109;.70238411;-1.1791028;.69844991;-1.3458946;1.422417;-.28022557;.83880466;-1.4828147;.65209079;3.6971858;.26327342;-1.3050735;4.1831956;.59609878;1.687071;1.6957531;5.968822;4.3353229;4.5385313;1.9081235;-2.0259602;3.6356478;2.7262771;.49479002;.76541787;2.5743132;1.5882926;.9560836;43.296722 +-.14188199;-1.3426332;1.2917449;-.1356394;.085485265;2.1824443;.51674861;2.4358816;.50385785;1.1683872;.61362135;.35147136;.6776225;-2.0288694;.23746292;.36907762;.21543589;-.16883963;.36480695;-1.4310262;-2.1272237;.81352413;.34763131;1.2611676;-.31258759;-.30639708;.81345928;-1.3064935;-.77567536;-1.2481728;1.2693177;-.021997368;-.83116567;-.11060578;-.47058102;.36756411;.21382067;.94701898;.62452084;1.73779;.63907927;.64034945;-.22164518;.20276548;.64057368;.31163338;.020933175;-1.0397694;-.63533062;-1.1479044;4.4156613;-.85071558;3.9611256;1.7532065;-.29651201;6.4671426;4.1229568;-1.1420438;-.10637939;2.0770721;2.3028042;2.60483;3.512068;5.4814682;-.557446;1.980052;-.17389239;6.1631231;2.9633408;4.6486373;-.59667897;2.5636654;-1.8729187;5.546741;.059518468;.99552041;5.0424004;1.2824539;.94273984;.70392448;1.8275079;-.025880773;.30120546;2.48334;2.6744337;1.8644542;.88024449;.48092145;.59698832;3.7876115;2.2615788;3.2887733;4.0633759;.53324348;-.23693058;3.1397133;1.0652584;-1.1958264;4.0499191;-.46555969;1.0781996;-.46579057;-.96247792;1.6785295;.022837874;1.7744027;-.86952955;-.10380517;1.1553627;2.1287525;-.61918932;-.23964912;1.0830587;-1.8983873;.29646438;.018556789;.99025625;.58496505;-.21527264;-.50320196;-1.1400746;-.14160791;1.4668902;.32141352;.17095605;-1.1626136;.90869623;-.33256498;1.0787122;-1.9074957;2.1567693;.10361236;-.72316277;-1.3435811;-.91574025;2.1344182;2.6143353;.88460881;.18040672;2.5403407;.65372562;.6440081;-.72347593;.016430298;1.4900901;.73460257;.8282302;-.4690102;-.67401671;-.44639751;1.7097009;.57780546;1.9588981;1.0787259;.89145863;3.6452265;2.5760345;-1.5702972;.39267835;.51411438;1.9332951;1.656389;3.0239451;1.8530163;-.14746141;.62043792;-.34258357;2.7570155;1.6607991;2.58407;-.34817231;1.3631899;-2.425462;2.9399145;1.0898852;-.24235362;3.7091165;.48208126;1.595319;-.93291795;1.3248686;-1.4368378;-.38899395;2.70594;1.2766875;.30024415;.60198683;.14275885;-1.3593071;2.1675386;3.793586;1.9138939;1.9108738;1.7999945;-2.4512041;2.4537742;1.7044061;-1.1066762;3.5581279;-.22388677;53.559971 +1.0155482;-.39320636;-.4857868;-.80590791;.6711992;.33030388;-.61380845;-.10893241;.71354043;-.45915729;-.053472321;-1.6171473;.60276061;-1.4003452;-1.5681264;-.5459767;1.6819597;.64612412;-.010618915;-1.0740854;.42023337;-.41452703;-.13624296;-.68143052;-1.0837288;.5532496;-.32380125;1.3471681;-.31016409;.70984757;-1.6613168;-.46735698;.58548391;.25620481;-.52604675;.48195222;1.7147323;-1.6497439;-.2080836;.11589929;1.3560169;-1.4370402;1.0472472;-.1444077;.28523284;1.864736;1.0649533;-1.2607968;.34039065;-1.2991121;.31678376;1.8642758;2.0745091;1.8982986;.68915439;.018119598;1.7754639;1.8096403;5.407928;-2.3733916;4.6960239;5.0523524;3.1976123;3.5491729;3.0100417;.89107502;-.0136684;1.1057088;2.5835099;1.7155236;2.5549049;1.9321619;.17623417;.5208531;2.8084331;2.8684695;1.6164081;1.754451;1.2080436;.18883273;1.4271407;4.0590692;4.3353338;1.5615202;.63830692;2.2572005;-2.8508384;6.6701159;3.7195663;2.7995663;2.3119714;.44424233;3.5717309;3.4961209;2.2229261;1.8221456;1.6664051;3.5097511;2.2762234;-1.4977921;1.5344247;-.30296937;.34834513;.83329964;.41408432;.52403021;.93594569;-2.6963615;-.20013011;.71830696;-.13204156;-1.3570216;-.15825666;-1.83226;-.64692181;-.99809271;.06397225;-.38001361;.27457091;-1.3068348;-1.0442095;1.0627815;.59319258;.94411969;-.24550197;.18647273;.66168064;.51470721;-.15061601;.70391285;-1.1435694;1.5047379;-.050553594;1.126717;-1.4900399;.12797455;-.086683281;-.73626453;1.7421519;-.99603659;.64246517;-1.866506;.62176853;-1.2994515;-.3985053;1.1491507;1.0341603;-1.0094383;-.7491799;.26985639;-1.089934;.79341662;3.0217512;1.632887;.70592511;-.058598623;.88020664;1.5157599;6.2801247;-2.6640692;3.3141689;4.4691739;2.1452949;2.9005029;1.9770209;1.2085546;-.96546632;1.6736418;.92503554;1.8743917;2.215652;1.931717;2.638551;1.5373889;.71430355;1.9154685;1.8125201;1.0400665;-.18063635;.901851;2.4112618;1.5525995;4.2417765;1.2373062;1.1205747;.43217099;-1.9759442;5.9509912;2.4728701;1.2186764;2.0665283;-1.9857961;3.1753328;2.8026896;1.5223536;.49887252;-.418917;3.4479101;3.6874161;-2.8116384;48.916462 +.89048553;-.57615685;-.00041232444;-.54053897;-.91477966;.55407333;-.85350776;1.7691768;-.20157281;-.53003836;-.030800305;.31314871;.77272928;-.14827307;.82882226;.0011975875;-.90924203;-.93644637;-.28684533;-.14503235;-.20003939;2.0950499;-.3993324;.41189191;.55219716;-1.3097337;-.33373681;1.9768236;1.9363344;.14198506;-.21984005;-1.2339301;-2.2387028;.18516582;.63138765;.58009195;1.3853481;-3.1671669;-.89835894;1.4481113;-.43515041;.27171651;-.080924928;-2.4156659;-2.0553694;-.1001005;-.97915971;-.6389609;.77741981;1.2913914;-.024675269;4.0626721;4.402915;1.2414982;2.4560223;.92585635;2.7521005;.18440005;2.8765957;3.3609605;.88433015;.99234653;2.287818;2.7523499;-5.7069631;2.5354393;5.6144853;1.1187415;.82877225;2.7706561;3.9304621;3.6184618;4.1869555;3.2478299;3.9333522;3.9977984;4.0285115;2.7835593;.28255814;.78971344;-.98794913;2.9263861;2.4578178;2.0621111;-.26413357;3.7892792;.9594003;.19515561;1.5537881;2.0476322;1.4061503;-.9425239;1.9972889;3.6752517;1.8602165;-1.3954359;-1.5333748;2.4026353;2.4288459;3.5553339;.057180673;.12715216;1.7656957;-.50925654;-.61207956;1.9197718;1.0030738;.59262443;.5161677;.45636013;-.29606187;.20380686;2.0056419;2.1851306;.31762281;1.2829034;-1.8518836;-.5687778;-1.4591701;-1.057003;1.79053;1.0746251;-1.2289405;1.6206816;.65724552;-.93037802;-1.2312384;1.3402841;1.8035195;1.1085817;-.22553259;-1.0156322;-2.7601857;-.41327301;-.19108756;.32096937;.61222821;-1.7852886;-.054214481;1.8999199;.24840599;.011695135;2.9049549;-3.1010294;-2.191539;1.0351702;.43789053;-1.013485;.37087414;-.88977993;.62959713;3.7798095;2.0429025;.74834687;3.3553584;2.3754885;.34725782;.5720253;2.4151375;1.7805653;1.6347208;-.45150313;1.0990722;1.2054267;-3.4301674;1.732216;2.9548092;1.2538955;1.3959517;.51751167;2.6421683;1.8514849;1.5490842;2.7502065;4.34866;.84401476;2.3537204;.98332685;-.17556317;.11743671;-.30495924;.70163709;1.9325559;1.4517418;-.66350734;3.6851244;1.8768308;-.86044431;.044702131;-.30686191;1.113398;-1.7099386;.38603953;2.5104718;1.7336304;-1.3924921;-1.5552059;1.2489791;.034005441;1.7096258;41.808937 +.3310464;-.17558162;-.30872396;.052654169;.61474401;1.3531312;.80561048;-1.3092003;-.21702135;-1.7488744;-.4197931;1.3437816;1.391824;2.5434372;.51263666;.8418811;-.96466702;-1.223954;-.086153045;1.2091959;-.12865531;.17535792;-.32772905;1.3153099;.21751934;.11678832;.0091306809;.78066987;-.36722738;1.2857418;-1.0066352;-2.0415483;-.050406162;-.21721475;-1.5482131;-.48427463;-1.4510031;.771824;2.3465559;-.46172854;.90865892;-.7546019;-.11403591;-.4861477;-1.8647321;.70796931;1.1710653;.75928599;1.0776476;-1.0912201;2.432883;.10026936;5.7051878;1.7836322;-.004167784;.71966523;.69340551;4.4155545;2.4989867;1.1539987;6.179563;4.0250759;.17257075;1.779429;1.4847742;2.5508533;.90828454;1.8553253;1.1555161;1.4660503;1.8836361;-.83178532;-1.1291813;3.4589036;.61604017;-.28142142;.38157079;-.45214999;.44920596;4.290329;5.6642013;-2.8108625;2.8992789;-1.0720277;1.7556612;4.2360835;.42834249;4.6773601;2.8320034;1.9643033;3.5242565;6.4498849;-1.9025968;1.5176226;4.7146258;1.7591447;1.7354332;-1.6250812;2.6088514;-1.5543382;.54863745;1.2019773;-.28563431;-.37205979;1.490441;-.40585741;.58582604;.049678031;-.82624191;-1.3157824;.48820436;-.62749261;.6684463;3.4407613;.80642587;1.6108859;.65818262;.47268942;2.1014361;-.78396475;-.075025976;.40283155;-1.0440599;.26016712;-.47215712;.62011039;-1.1659443;-.29776758;-.40626195;.96683913;-.17932935;.67755282;1.2259554;-1.9310359;.29084268;-.68195862;-1.2433099;.13625413;2.5813804;.79956549;1.5157132;-2.2018321;-.93391979;-.1797391;-1.5295576;.0013932745;.13023284;-.26259768;-.38450703;.90102112;1.0446167;.38824013;2.4813015;1.4176797;-.93680394;-.71998268;.60817498;3.8711493;1.9938838;.74473566;4.3165569;2.7399499;-1.1367573;1.3486054;1.1872009;2.844007;1.9153508;2.5382214;1.6808223;.78722668;2.8756924;-.79953313;-1.2289846;1.3342247;.71089798;-1.8887628;.68783838;-2.124928;-.81732863;1.0426654;4.538939;-.10211037;2.8156049;-.056650739;.12823458;3.256084;.8475278;2.6011119;2.9456475;3.5657027;1.6906419;4.6403751;-.1560604;-.65654141;1.9723506;2.496237;1.9857979;-2.3491468;1.9051474;.7091164;52.039856 +-1.6382014;-1.0662819;-1.7799747;-.055946399;.61441821;.82065201;-.57096881;-1.220317;1.2515433;-.51920754;-.15668634;.27594167;-.12963991;.0048119444;-.94710618;.71127623;1.0558269;-.34529367;.057435844;-.28654411;.22774357;.50666809;1.159096;1.417348;.94710195;-2.0135355;1.2353669;-.30375415;-1.6175995;.28046337;.47997981;1.2698425;1.0082943;1.8451393;1.7207609;-.1770034;.40585026;.16895151;.062872238;-1.0200211;.81515503;-1.6343784;1.1647667;-.60138983;-.4353953;-.61329448;.60655081;1.0931351;-.23382972;.80698258;3.101054;4.3826065;.93954551;.2022101;.98861498;3.7564924;2.1932745;-.13258564;1.5323946;.38487649;2.5721123;-1.3708241;.46552297;2.0982435;5.1345716;1.2456224;5.0502019;1.302191;-2.1269581;1.4863899;1.1258029;4.2353058;2.4666176;.7338919;-.371638;.94480836;1.6361986;2.1792014;-1.8974121;2.1413434;3.3810282;-.26477262;.15910576;-2.8265002;1.878256;1.9607236;1.5330828;1.4994465;1.3622067;2.2413628;1.4766208;1.8050919;-3.0745723;.27979502;-1.0661411;6.2951307;-.7534821;-.22594999;2.7458761;.026210392;-2.4256446;-1.649865;-3.3715694;-1.2912982;-.93710375;-1.2275721;-2.3152192;-2.0978184;.85622931;-1.8020985;1.0252156;.090607934;-.71546221;-.41170153;-.35519958;.17237142;1.1703287;-1.8367443;-.051820047;.9230842;.77279729;.86953825;-.78277177;1.5673931;-.78251445;-2.0642328;1.6509944;-.72706091;-.077718891;-2.133738;.23310253;1.1007494;-.57175761;.88928509;.086554714;1.0442698;-1.1357832;1.2574894;.73435622;-1.4285059;.50819468;-3.4588947;-.031467836;-.34430858;.23567457;-.66184068;2.0695205;-.11198006;.83146042;-.51912892;3.2382953;3.5121603;2.6393723;.65287787;1.0560535;3.319442;1.4625914;.046397317;-.19274063;.41801578;2.2290363;-.24643394;-.052711032;1.7708738;4.594317;-.09873753;2.6805875;-.43447384;-3.3774197;-.77843559;.026560245;3.3504827;1.5942233;-.57178092;.037202209;-.65680349;-.23883125;2.0163677;-1.699916;-.37978467;2.4917414;.5969519;2.3231876;-1.5839983;1.5517029;2.703021;1.2025837;3.0949233;.0083880369;3.1153996;1.8116276;2.6619737;-3.0851598;-.12463699;-.80567908;4.2166042;-1.4446449;.67193979;2.6179721;2.0924671;29.303108 +-.052229498;-2.9881358;-.43712118;-.52643436;-.039345924;.18553571;-.78611881;.53242582;-1.3734678;-1.7432289;-.52291453;.59424931;.33175135;.9979645;-1.3714375;-.75398874;-.37547463;.026274825;1.9522119;-1.1333257;-.43091887;.53488326;1.777776;.076998353;-.025564356;2.5846269;-.77399695;.23298135;.1041101;1.275973;-.45428029;-2.0459995;-.16174008;-.49868363;.80820626;1.9000639;1.0950593;-.010082021;.37392059;-.31549877;1.2486899;-1.7868363;.22210199;-.27531746;.52011514;.57530713;1.0655844;1.6217442;.45779887;2.2396967;3.9674165;2.6336048;3.1853168;.056115661;2.3437269;.42669493;1.4996935;4.178525;.72079611;3.9016104;-.16947173;-.17556739;5.0957971;3.0602226;3.7002602;2.2222061;-2.3539929;2.9496491;.92191958;1.2555029;2.5779054;.0022776215;.450066;2.4338841;2.2325845;1.6430242;-2.6768258;1.3241036;4.006237;3.7044013;3.2413781;-.23743615;1.8205884;2.0650332;.1687524;4.1314969;1.5126035;1.9704946;2.6076872;1.8977023;2.113476;.47240445;-.89371276;3.1769817;4.6472597;.41676885;1.4935943;5.5450602;1.8540914;2.6865103;-1.3755826;-1.1865017;.35660142;-1.4141003;-1.6025621;-.047513004;-1.9648489;-1.0947503;-1.7985781;-2.4096138;.91210234;.62395114;2.6611371;1.5004438;.63751596;-1.72469;-.20674142;.86253726;.032321904;-.44555578;1.4000428;1.1299607;3.1209562;-.052715685;1.3135761;.67000103;-.60312527;.097179011;-.30274701;.89237505;-1.381779;-1.3373979;.02717194;-1.3475406;-.22227424;.26307699;.035132036;.4921115;-.93067139;.22841397;1.7845378;-2.0254524;.45510748;1.5479234;.995139;-.31150997;.98193449;.98162854;.68105286;3.7477474;2.2672777;3.2206459;.61163878;-.73152655;3.0868754;.79895294;2.7397745;3.2432563;-.13166614;2.8566113;-.26887074;-.035161931;4.0034671;1.4224513;2.0532758;.75798088;-1.5089368;2.3123949;2.2184799;.77815855;1.7486029;-1.0795113;-.93538225;2.3845606;2.1562223;2.2355466;-2.1744175;1.2264866;2.5128958;1.7708995;1.2729936;1.2413012;1.1336907;1.9911064;.67057675;2.3288646;1.1669806;1.686621;1.2209347;1.1682307;1.067337;-.44441059;-1.3922987;.87027961;3.8095105;.86649114;-.50096661;2.8070681;1.5133983;2.0649889;49.713551 +-.68590844;1.0646818;-.15661788;.089374766;.32733878;-.98291194;.22319369;-1.0320326;-1.1802571;-1.9298494;-.00033591216;-.42798182;-.34800935;-.27064341;.26635113;.47498596;.78048038;-1.2433822;-1.1753825;-.33004558;.57278562;-1.1616964;-.10070422;-1.0934508;-.37621385;.39111149;-1.0143305;-.68950135;1.4391141;-.97558373;-.092240356;.93079734;.47957939;-.31448823;1.4601537;-1.4899191;-.91086966;-.18902217;.028552573;-.062531061;-1.0587828;-1.5077565;-1.446926;.09172909;.073596939;-.28283265;.48575956;-1.5665536;-2.2140045;1.1534017;-.32971928;2.0924425;2.2070494;2.3136177;3.7453372;1.1902261;2.2433643;.79384369;3.0958548;-.97555584;-.80993629;2.3485529;4.186955;2.7698522;-1.2451177;.62537235;2.5920563;.48375547;2.5950909;5.4791327;-.37902734;-.18918204;3.1435635;-1.309028;6.2298646;-.084572852;1.7253009;2.7116585;1.8165768;1.3249813;3.946701;1.9531571;2.7592373;2.2104881;.38205579;4.1358385;2.9021306;3.4771881;2.9656441;2.8739896;1.9474438;5.3514214;.97472334;.42814866;4.1642208;.01803099;-1.3921124;2.0528617;3.9376819;-3.2918215;.3419219;1.5452155;-1.1756693;.43338683;.96215957;.14517772;-.087769642;-2.4564424;-.50596225;-2.0905535;-1.7834721;-1.715102;.22330081;1.2438917;-1.1926335;2.2839582;.28556874;-.72251362;.57951987;-.33027446;-.55379128;-.69735408;-.57253152;.28285691;-.59114486;1.483274;-1.0290642;-.66094625;-.24281776;-.9349764;-.61049372;2.8264611;-.48890781;.079198435;2.8663454;-.41005588;-1.2128359;-1.677655;-.76196039;1.2762448;-1.4035059;-2.4834886;-.54950392;.95568413;.51875198;-2.0974405;.85930175;1.0064632;-.59536374;1.0560291;-1.3770659;2.218338;1.8725933;3.277055;1.5148642;-.84046423;1.7219852;.41870245;2.7857077;.1290019;-1.464354;3.3247914;3.0691495;.33475751;-1.9561173;.77695149;2.6663563;-.5707438;.30209354;4.4070482;1.6852158;-.27034968;3.3068357;1.0374051;4.7799568;1.028059;1.3460327;1.9863691;1.1715198;1.3887004;3.383903;-.99174225;4.2512307;3.1711471;2.4082339;1.9300385;2.4586375;2.0636058;4.2678218;4.7531323;2.0578175;2.9724898;.39380324;.78864413;2.3433709;-.37205356;-1.6106433;2.1848285;3.0005639;-2.1031227;39.180149 +-1.7171623;-2.525619;.42838556;-1.3098356;-1.3868322;.37224969;.74496186;-.33320996;.46113724;-.40602925;-.95524359;-.079269536;1.5770148;1.212847;-1.6339324;-1.5401789;-.96217698;.46376637;-.77907276;-1.3321645;.18198699;-.12202587;-1.4007386;.067214862;.20723571;-.93502307;1.6651208;-.20854159;-1.0296643;.5496785;-1.6664127;-.89197099;1.6209867;-.75903964;1.3536584;.60824901;1.6381791;-.16994251;.7933768;1.5113455;-.035199024;2.7910988;-.1308011;.79805052;-.18270499;-.30043602;.0045917444;1.8459297;-.62076414;2.2809062;1.1128249;3.1382508;2.3115597;-1.4418278;2.8561828;.32564399;4.3630538;2.0279198;3.7341752;-.063505188;-.74943018;4.1625624;2.4434369;.53520727;2.8115885;4.1774664;3.7078359;3.4109316;2.2378139;3.6300747;-.604684;2.2162459;2.9038551;2.4027669;-.95237827;.87194568;5.5654707;3.4024506;3.5799103;3.3538294;2.708251;-.40981248;1.1970468;7.3280287;2.1490269;3.6172845;3.3511374;7.1796894;3.6566372;-1.7884345;.33926341;1.1677997;3.1299798;1.9878641;2.8359311;1.324978;2.3417253;-1.5529715;4.4215608;3.0953493;-1.7456666;-1.2901596;1.2442366;-1.9864945;.3273381;-.34642658;-.098159835;.67377961;.13962582;-.2110849;-.71820277;.8820129;.36504453;.54662704;-.37877294;.014678308;-1.2157643;-.84409255;-.79398829;-.62122792;.37396461;-.91716999;-1.5919554;1.0644501;-.69468313;-1.9186366;.33528256;-.72324932;-.89650279;1.4934762;-.99799979;-.64019901;1.6689098;-1.1998538;2.4672225;-1.0803041;1.8803666;-.48163885;-.63595462;3.4388123;1.8389053;2.5886014;1.7762564;.32991919;-.20741162;-.31672335;1.3176466;.48158348;1.2518729;2.0776918;.77559084;3.6350408;2.9710946;-.42966187;3.4586351;-.18964045;1.2143888;1.5872293;3.5360823;.064457826;-1.5034943;1.6873131;1.9242699;.81708425;3.3028855;2.8157434;3.6542249;3.8648036;.12319304;3.1141794;.12532443;1.5759695;2.3604012;1.0415789;-.25489461;-.031945225;5.1972895;3.910409;1.8011315;2.7196949;3.2545764;-.24946533;-.16059871;4.6297197;-.057810653;2.8634441;1.6223273;4.719677;1.5224353;-.75249338;.90588224;.50982285;2.3348258;-.26017538;2.8841231;.82939136;1.7589008;-1.7297182;4.7531934;.29870504;58.801792 +-.23822796;-1.1827724;-.32609159;-1.3096051;-.64818293;-1.729266;.31694442;-1.3475351;-.70973629;-.91156363;1.5173647;-.77159607;-.32819545;2.1120028;.8504895;-.62732333;.13981563;-.80456567;.096314557;-1.0197599;-1.2230866;-.67003566;-.83478612;1.4816611;.73492032;-1.4904282;1.5019585;1.2585994;.11646221;-.71748853;2.3515358;.3018505;.14866254;-1.378234;-.41604486;-1.2051262;-.61604792;2.0076308;.14841892;.54026753;-1.9787233;-.65284783;.54929358;1.0136681;.55755413;-.65460914;.18580107;.083452001;-2.2232506;1.4289201;3.7786047;6.0012536;2.0028925;1.1267079;1.9399025;.81911069;1.6045538;3.2442179;2.3891344;.43466473;4.0283966;4.1359911;3.7517955;1.4690574;-1.2405893;-2.5538788;-.51458716;.98687381;2.9669213;-.59827918;2.6303101;2.0308032;.91444373;1.0805495;2.3503621;3.4957073;4.6086335;-.079466686;-.32557201;4.8403106;.4931629;2.3461804;1.907581;-.69876927;3.2099538;3.1130512;4.6607308;-.64477849;2.1004267;1.3251764;2.8873355;3.1985731;.20990509;1.6633866;.91172338;2.5859151;.73393959;1.9286312;1.4660858;.51573098;-.43158606;-.58359456;-1.7983129;.48707157;-.49753487;-1.1909889;-1.0830325;-.55306762;.9794668;-.24251163;1.3120253;-.55316907;-.61952525;1.4846003;.59136754;-1.7327178;-1.6370766;.51236743;.3256712;-2.7265346;-.53758693;-.3217752;.067626834;1.2223852;-.27082384;-2.3661079;1.2523724;-.312433;.26203266;-.059777938;1.6562304;1.0746495;-1.1287873;-.49063924;.1837358;-2.6634057;-1.0590246;1.6714029;-2.5622864;.65439874;-1.0032386;-.5752725;.67134452;.35855576;.49357545;.42745003;-.14115022;1.0288848;-2.736227;.46016166;3.9911022;4.4594059;.66634804;-.30802685;-.56930226;-1.2820801;3.5662036;2.2754698;3.0390217;2.2241256;1.2576262;1.6144508;1.7295035;.88251013;-.56910497;-.60989493;-2.0349045;.23237555;1.2156138;-.23736145;2.5629354;-1.2433971;.35618696;1.2344674;1.9564773;2.878376;3.6777806;.46561232;.6161868;2.042398;.99608296;2.1574128;-.84380257;.79606384;3.1033897;3.1004848;3.6967959;-1.567569;2.8827407;.62961739;.79861104;3.6576972;-.23097023;.8160913;-.45039257;2.7232659;-.55397624;.9513427;-2.1566615;1.4426106;39.399143 +.34484103;.50896531;.48214933;1.3068626;-.039999124;1.5355417;-.17138116;.035820853;-.36430028;-1.1322583;1.2809966;-.18869326;-2.7171669;.42147976;-.57339549;1.0142224;.15458912;1.497993;.44619066;-1.5631757;-1.2960745;-.034703307;1.3146061;-.3726013;-1.0573581;-.50272822;-.36361703;-.7232666;-1.466682;1.1658883;.57357758;-.51813823;.0093411682;1.0715816;.31845179;.32224199;-.45426112;-.46406981;-2.922745;.22047067;-1.2528752;1.4553664;-.79969585;.76894611;.58989781;-1.4317451;-.84898555;-.75646937;-.26961017;-1.0241927;1.7650915;1.4911836;.61165315;4.152185;.46408591;2.6244633;2.2326853;-.48505032;1.2007213;.29142886;2.4505982;3.0426548;2.3628008;-.18793595;2.2547748;-3.4292834;2.7141998;.096240669;-.66426539;3.7173729;2.3092961;1.5262066;.64272285;1.0545573;4.4830561;.87095952;2.3835442;5.4107227;2.9028709;1.3910419;3.4096985;2.2894123;.32821283;1.2128946;.79826248;1.6115063;4.2771626;1.9167846;5.5441909;-.14493823;2.1576877;.74542791;4.8735075;.29421827;4.5846124;2.4213617;4.5208888;-.10596439;.17877515;2.0218809;.5485819;1.1221628;.19732851;1.2637782;.95142812;1.0993496;-.96241277;1.744256;-3.0662205;-.85824609;-.084606707;-.15141223;-1.0598699;.13209301;.36521685;2.0069048;1.7144587;.70250428;-1.3400661;-.73587126;-1.5857909;.056264006;3.522244;-.27616665;-1.2584723;-.80403495;-1.0580636;-1.0168182;-1.0927253;.13880096;1.1514078;-1.5926549;1.3428146;2.1842909;.72331917;.52653432;-1.8735801;.23986909;-3.3260331;.52990776;-1.6479644;1.9018253;.006444654;.0033596035;-.67769074;1.3526934;-.74573779;2.2289288;-.068325922;-1.1780508;1.8553742;1.6712676;.365549;1.709479;.67032075;1.1694953;.23654275;-1.1542611;1.309189;-.36862895;-.30120641;2.9153454;.60378838;.60356933;1.7268027;-2.2463479;2.2508378;-1.5606211;-2.1666167;2.4439077;1.0553919;3.443203;-.95896876;1.805195;1.4472715;.095168404;1.8159583;4.8184915;3.2641935;-.6937964;1.80379;1.8723258;.30873612;-.37274414;-.90953761;-.82082331;2.5911567;2.7353919;3.3742418;.27143258;.67953819;1.1940885;2.3413291;2.3935168;2.9547472;3.8194575;2.4465754;-1.4508363;-.097286962;2.600461;39.728561 +.1759403;-.66614318;-1.0767205;-.10654177;-1.3623595;.34768257;.44229424;-.28934759;-.15296952;-1.0997622;.45724022;-.94835931;-2.5248017;-.046644818;1.1393832;-.45088181;-.38591063;2.3755326;-.26754001;-.66696465;-.18459965;-.52470404;.2584236;.14362627;-1.1258059;-.81820333;-.56905299;-.62683511;-.57186645;-.50146723;-.50140679;-1.3717699;-.38912085;-1.20649;-.028654579;-.34980786;2.3213542;-.089697972;-.25591308;.14227884;-1.3795943;.18171705;.8607015;1.2454746;.51327395;-.54560322;-.08258111;-1.2076731;-.93789411;-.67705876;1.7741599;.7862789;.10748399;2.9397318;2.6451581;1.2545859;1.700637;2.864403;1.2228891;1.7932147;4.0982256;2.1528475;2.492183;2.5543733;1.020624;-.5818702;-.19563358;2.5001433;4.2913971;2.5067561;2.6973114;.1075404;1.6164937;2.4589412;-.39981279;4.9274421;.65583885;.35598418;2.066638;-1.65345;4.8358922;1.9884154;5.0142593;1.0617174;-2.4626603;-.011863681;3.7828887;-.2295893;.9168005;2.0087268;3.2311034;4.4596362;-3.1080465;4.8043566;2.7971463;2.7275209;.58130866;2.7945757;2.1150956;.17915115;1.2981608;.18087564;-1.0541712;-.33947027;-.99381196;-.3241567;-.48248625;-.62414342;.16727187;-.40062934;.24181359;-.61497551;-1.8076546;-.29216215;.94881594;-1.471326;-.83310992;3.0265472;-.32803899;-1.0680759;-1.2821058;1.3566732;.33676159;-2.0694644;.73898178;-1.3962975;-1.337216;.90226293;-.60909218;-1.2007391;.68058383;-2.0995398;.25760728;.80051178;-1.8367403;-.55273509;2.0526392;-.76064914;.34322721;-.012611268;-.28715119;-.83457506;1.7734485;2.2964261;.57522023;.6452325;-2.5193474;-1.3654537;-2.8500519;-1.1887949;.99976826;.37742776;-.78989047;.94205201;2.9502888;-.27357599;.81972057;1.3305072;1.5623776;-.56039751;2.2123685;2.5609634;.73083115;.3956376;1.5995165;-1.0694031;-.012098135;2.7247441;3.201077;2.2738061;.50712013;1.981554;1.153523;-.092615359;-.3636443;3.5097396;2.0585611;.43570355;.88615352;-.78237987;4.9963136;2.1661079;2.9707587;1.2326536;-1.6105442;-1.0924153;4.4138937;-2.1943929;-.53876275;2.8479753;3.0351791;4.5560517;-1.2129139;2.2316694;.84855723;2.684437;-.27758533;-.0091561805;-.90177011;-.8043403;34.629555 +-.89874434;-.80305469;-.62699342;1.5366812;-2.3445513;-1.4227223;.40331605;.23701267;.34179303;.75783658;-1.8187718;.75243491;-.15415168;.076904453;-.23151653;.042118959;1.0010512;.54184657;-.92223966;.70173246;-.67277646;1.1378012;-.6350202;-1.0402126;-1.7262398;-1.4176767;-.25014937;-.11397262;-.86547047;-.2966786;.58187789;1.3868511;-1.0016618;-.26528543;1.1904137;1.8866867;-1.2037879;-1.0260978;2.1642511;.074501701;.23051989;-.2570236;.17471378;.11461175;-.081691325;-.36341724;-.70601821;-.30044737;-.54306197;1.5011405;.029278938;2.5855393;2.9755819;-3.9994247;.073534556;3.5636437;2.3687661;2.2312944;3.6359909;2.3744323;.66287804;3.3824046;.89486098;-1.8451911;1.4675542;.72758871;4.9659772;4.5947552;.39147365;3.4078417;2.6578176;1.1277652;2.7405436;4.5353088;1.0825392;2.6652532;1.5792373;3.8425264;-.15640275;2.2093792;-4.2450457;3.151083;1.0738714;2.0708685;1.634127;2.0512662;1.0527688;.044637755;4.6196752;1.5211035;.69818401;1.0997787;.75738889;.44319302;2.8350065;3.3558481;2.5322366;.050254568;.90153158;1.7357178;.60169381;-.64622772;-.1364855;.78442883;-1.7735918;-2.1576154;.70260245;.52715445;2.1707666;.13603178;-2.3909752;.52920115;.08672937;.79251939;-2.0613596;1.2038251;-.14450257;-.5302366;-.15377939;2.4199946;-2.2399595;.86622006;-1.5521091;.54731512;-1.0077397;1.4347152;-3.4158709;-1.5268742;.86705291;1.0577242;.41076356;.8017984;-2.3640051;.32625642;1.2921863;1.9919891;-.48217961;-.31471661;.95030385;1.1497772;-.17603555;.90962881;-1.2424046;-1.1225621;-.3859545;.43056157;-.72339851;-.77474636;-2.4971449;-1.9044152;-.22674645;.85326481;1.3910974;-2.2321699;-.81179094;2.4210577;3.1915894;1.8534023;4.9981327;3.1067605;1.1333202;1.9230034;.95142508;-.4200139;1.5120378;.77412206;3.727546;4.5151496;.78391224;2.5050864;2.7144074;2.6333025;2.3305006;2.4692507;1.850862;1.3879219;.2121897;2.6442263;-.32758445;4.0730009;-4.0806236;.9223814;-.2891635;1.6662749;1.6989257;.90437996;1.8814517;.44333306;3.8947618;-.26027781;1.2067459;1.3608685;.27377811;.97992003;1.5682245;2.5871205;2.1370177;.99158359;1.6086357;-.68061984;42.204655 +.73243326;.42991224;1.4507353;-.9105733;-.90429711;2.0684209;1.5151225;1.1908327;-.19771186;.1812593;1.0266664;.70068789;1.0570616;.048924688;-.94470441;.85571814;-1.3188686;.41345704;-.86541694;.17255694;1.2234645;.14117685;-1.1883076;.54179901;-1.1570317;.16278549;-1.5712199;-.22429715;-.054178324;.014608003;-.30485699;-.21940412;1.6544126;-.032583773;-.3376618;-.76057726;-1.0986421;-.31198737;.91207409;-.11178076;1.6929531;-.083130024;.64012915;-.059482519;.88618219;1.0469737;-.62317401;-1.0068423;.68668616;.52862507;4.948329;4.6971545;1.4284585;2.4241552;3.4360266;3.7352004;.10178147;2.4648309;4.8222208;-1.5168482;1.2065326;-5.5420909;-.79882663;3.8186901;-.61314148;1.3286123;4.5487814;3.4146264;.44441721;-.4851844;2.3655903;.35826007;-1.9267082;3.5515783;2.6091857;1.1320426;3.527169;-.41234899;.6636036;3.855844;.0020782985;-1.7484365;1.4748458;4.0669231;-3.1382947;2.6380405;2.8964713;3.041049;.59984273;.57797962;3.9822187;-1.827737;4.351656;-3.0895965;3.5599203;2.8755755;2.3407049;-1.8758136;.39930812;3.0644598;.054076038;.32141358;.40456742;.13561188;-1.3832829;2.0041926;.77109975;-.35133398;-.3079572;1.114046;1.8482366;2.302748;.27825215;.069285147;.78094435;.5374735;-1.9396204;-.86163157;.54446316;.13292061;.47091678;1.836216;-2.6743813;1.3226568;-.85775405;-.52827805;-1.1426636;-2.1734996;-.34502915;.32488689;.10720035;1.562609;1.1115472;.041422717;-.85962236;-.5698511;-2.5042803;1.1702224;.36629489;.12754907;1.3479307;-.46584338;.75657493;.32028863;1.5170969;2.3153725;-1.2472029;-1.377726;-.68627697;.35492545;2.7124133;5.3023157;.54211104;2.1750078;2.7842815;2.3793387;-.50371987;1.5091957;2.4644327;-1.0365807;1.4649298;-4.5075998;-2.2844305;1.378616;-.75997406;-.25069803;4.5145388;.80076903;1.0849447;-.58459932;.97615182;.62374991;-1.4332302;2.9944842;2.3340123;-.59882277;4.0606451;1.4597857;.50569421;1.7388841;.69351554;-1.7624968;1.361609;3.4147327;-1.7736974;1.7285168;1.5022011;2.8747129;-.64191777;3.0578275;1.1756802;-.70868236;4.0831704;-1.7997975;2.1804566;2.196332;-1.097513;-2.2138803;.56493896;2.9218919;42.803345 +.7325471;1.1032752;.73419088;.85704345;.33344772;-.8076846;-.4355236;-.15050657;1.8288516;1.7813333;-.84591174;-.25447857;-1.2281426;.31019869;-.34653348;2.1293354;-1.4630618;-.037200443;-.39610347;.58103186;-.90876979;-.018465728;-1.7326323;-.032597583;-1.3072637;.35376221;.28585023;.13032611;1.7321447;.053188544;1.2872945;-1.8766679;-.24786435;.41344711;-.19023173;1.3566146;-.77520835;.7463879;-1.2580968;-.68806481;.44951603;-.26021349;-.15277255;.31834513;-.17575237;.49053356;.65096259;.80357736;2.016006;.11463688;-.65703607;.86374313;5.4466262;-3.8515882;1.5596581;.48380679;2.2325263;.95968699;1.7242017;2.3025112;2.9989986;.85472637;4.2232237;3.0543613;4.3382735;2.1812136;4.1298614;1.3614718;.97360486;3.2502763;1.6367469;1.050351;2.5886629;2.27019;4.9496183;5.1207776;.26339215;.94563675;2.1610284;3.2974586;.21069977;2.6858354;4.7083769;5.6259441;3.9510572;2.0985835;.37546697;1.8032504;2.0058818;3.015583;-.4363116;6.7388568;2.0437384;1.2963115;3.8259814;3.480536;3.5028832;3.9968057;1.2870071;2.8598835;.31908336;.7285223;1.2692628;1.0951136;-.416197;-1.293525;-.14018558;.6425029;1.2890116;2.1440341;-.90480232;.94259214;-1.7284771;-.18929595;-1.4423038;.63013703;-1.6754467;1.5205033;-1.3977895;-1.9270808;.70863664;-.5511471;-.88075066;.18630242;-1.3911151;1.2066151;.70661861;-1.1384152;.5495854;-.031396318;.030369459;-2.3120148;-.74221373;-.24932344;.5509547;1.5053663;-1.1148919;-.66360128;-.57261157;-.26796386;1.2276859;2.3325729;-.85567725;.5479359;.10230711;-.71063972;.75726551;-.55684417;-.51606911;.22305271;-1.0011249;1.1833118;3.0691204;-1.2693692;1.3713539;.70877951;1.4178987;.95762157;1.7924238;.87894601;3.3531926;1.3254224;2.5082147;3.3753104;4.4685144;.80821353;2.3342826;2.263164;1.0953574;2.7240758;1.8377661;.68384069;.94905597;-.36587471;.93075627;2.7556715;.70785505;-1.1089996;-.032961547;1.6576272;1.1704764;2.7143011;4.319015;4.8339825;3.6894999;1.488808;.35191697;1.3248367;.97824883;3.3063946;.45907396;5.4355125;1.9427187;2.6221068;2.8714557;3.529803;3.5253334;2.5856254;.25477237;2.373759;59.741646 +-1.8861537;-.13316613;-1.5203918;.22127351;-.14559974;1.9659829;-.22182474;-1.2503098;-.53264952;-1.6364071;.040839579;-1.613537;.084594481;-.89828485;-.97937667;1.6301029;1.4898195;-.13500197;-1.0563755;1.4840829;.091545813;1.2187018;.61704779;.62715822;.86613834;-.59963423;2.0949459;.79216868;.21151774;.17409267;.57063895;-.32430631;-1.1039844;-.41499612;.67970794;.13177307;1.0881613;-.23695529;-1.2207141;1.7980675;.16546419;.32208544;-.30145922;-1.0236443;.62923962;-1.062591;-.88730055;.34887195;.45513093;-.075683862;3.4629145;2.8794882;3.6871538;3.4678502;-2.5541558;2.360811;1.5739574;.43850592;2.8432786;2.3701639;.40765724;7.3852816;1.683901;.31473348;2.2721548;3.5400355;.56481534;.78152972;2.4791253;5.7787876;.78786898;-1.4075203;3.9261129;4.7011409;.48428097;5.4136715;4.8050885;.8401131;3.8289688;6.0235429;4.9548149;2.4030719;4.401782;.85357744;2.4789102;.61933178;4.5604548;1.8418384;4.2576561;3.1755555;2.0873799;-1.3299012;.59622002;4.297606;1.765515;5.2200742;2.6087172;2.5364172;-.52354425;3.4432259;.38517904;-.94758326;-1.4391242;1.7754664;1.2815256;.48770419;-.4198156;.57280737;.69358736;-.17633465;.10674787;-.84552586;.54870009;-.53168595;-.93265164;1.7825688;.55826253;1.256379;.18688555;.56770426;1.4295516;2.4452899;.23945899;.60279363;.43159348;1.1245908;.57376605;1.0122238;-1.5943657;-.32344082;-.81512755;-.23817506;-1.7226571;-1.3289529;.19825371;1.0682907;1.920509;.21500015;-.81457555;2.0076449;.37024119;1.8510011;-2.556325;-.26725593;.68870848;-.51817173;-.24290982;-.46640813;.26998261;1.0104243;2.1737993;1.4603388;.92898387;1.2674361;.13910532;1.8758271;3.321259;.22878528;1.6628711;.052691821;-.12178019;3.7963808;3.0442936;.96479505;1.9738865;1.4551034;.61023247;2.6108451;.6737619;5.21102;.86153644;-.68218189;3.4432914;2.9674327;.19802932;3.9513831;4.4133654;-.21423973;4.3746457;4.0797887;4.5973587;1.4148667;2.6485138;.97611368;1.9838172;-.61116791;2.6566277;-.62742728;4.996058;1.4454663;.80990064;-1.1357151;-.76764929;4.2478337;3.0018857;4.3626227;.98645747;2.0093746;-.45363501;3.0829589;57.029678 +-.19147395;-.46032637;1.8997557;-.60052764;-.15706886;.038713567;-1.5704477;.88421828;-.40790328;-.84342498;.1837448;1.2441068;.0010893246;.75049144;-.56017184;.71476448;.33322707;-.21374279;.61608058;1.4594803;-.77792865;.34272441;-.11175104;-.714203;.77701062;.2507132;-2.4585309;-.42095533;1.7095143;.0046052923;.78465408;1.6234602;1.2778883;-1.2784177;.31965727;-1.0225346;-.09479811;-.30518934;.28995335;-.28256387;.70298332;.44415742;-.37677675;.49255875;1.5404485;-.021724541;-.3611525;-.32118833;-.57482868;-1.7524188;4.1096401;1.2309742;2.6966133;-.29975149;2.9778502;3.1616423;6.5493751;4.0159025;1.7724962;1.3489521;-1.6978369;-1.3101343;.83059043;-.70257342;.311488;6.7508006;.85836613;2.445457;.89551127;2.9608481;4.0333157;1.5440475;4.9267688;2.7468529;.30914563;4.3300548;3.3402147;1.27484;-1.4907424;4.2332129;2.1111124;1.610667;-1.2796658;2.2276969;5.3162069;5.9550252;10.695914;-.051526051;-2.2401526;-.60701853;2.8744884;2.8979421;3.1475201;1.8976537;2.5328066;4.8586764;-.61132741;3.3376079;6.8694248;2.1113772;1.1826659;.15739562;2.7821698;-1.4319695;.050886936;-.15712966;-2.5554042;-.55854285;.089129329;-1.3105462;-1.152581;-.16243926;.46634418;.25053933;-2.0868514;.31000942;-1.8392444;-.72379869;-.077259138;1.203281;.31488463;.85657537;.24587829;-1.9408171;.30092251;.6735329;-3.175952;-.14891569;1.9530004;-.065497383;2.582058;1.0597889;.80469126;-.80901051;-.63065141;-.74292409;-.44019771;-.69632161;.58871484;-.95255482;.1604723;.22725677;-2.0914407;-.2746692;1.5587626;.13179728;-1.1117369;.19128326;-2.6582332;-.40012392;3.4084678;-.63090253;.045553859;-.21738353;3.0966682;1.8714279;3.990057;2.6642196;2.9254055;1.8663723;-.76318663;-1.511048;.35714018;-1.225432;-1.328384;3.0022843;-.6370154;2.0013578;-.90249699;1.4490049;3.6958873;1.6799058;1.8716803;2.3714485;-1.2148613;4.1556654;2.4601979;1.4229611;-.29858002;2.7836812;3.0726013;.33069184;-.29461747;1.2899418;4.150599;3.985868;5.7872262;.59160715;-1.8558242;.13984631;2.4293535;1.6748915;2.9944823;1.3233322;2.09374;2.4539909;-.3204349;2.9576104;6.5879989;3.4688451;54.815857 +.20481671;.91960251;-.23414707;-.25260803;-.3055321;.2137333;-.07303749;.92893338;-.60039461;.99311531;-.44069791;-.62054241;2.1068308;-.057871882;.79174602;-.71991521;.81182551;1.0870045;.038422272;-.63002765;.97568488;1.5318203;-.94723088;.53974348;.16163924;.015188532;-2.3348072;-.40895438;.34917441;-1.8486118;1.0517672;-1.6488023;-.094884567;-.50668943;.16596374;.70195806;.48741016;-.61049372;-2.0135558;-.25990871;1.4773197;-.99040413;-.63608974;.34126827;-.89965695;.88797355;-.7069633;-.79183656;1.3379625;-1.7400892;3.3343561;-1.1812509;2.3820994;3.4264948;1.2462986;.86225265;2.3940804;3.8742142;3.0311623;2.3071768;3.7924132;1.3483242;.89249784;1.2092588;-.72590947;2.6360519;7.1778326;4.9724483;4.7777576;-.62748945;2.2171271;6.6320143;2.4580276;3.3361881;4.8202348;.90024298;.57078147;-.081776008;2.1608164;-1.0388297;.49721137;1.8905112;.84646505;.99602544;3.2384012;1.600785;-1.2242302;1.1213646;4.3555617;.3087649;2.5777814;3.4762354;-2.2265594;-.895868;2.4992476;2.6393416;2.2319212;3.0399542;-3.6276886;2.4031699;.46268988;-.19172759;-.058183752;-.45590943;-.29880154;.4324629;1.3472298;-.16486877;1.1655813;1.5738037;-.96946579;-.58654958;.27067453;-1.1104088;.13165507;.24974427;2.3661222;-.70703053;.9464035;-.35363436;-.29990703;1.0868076;-1.8511493;-.99073964;1.015946;1.2134423;-.91086376;.54477566;.97457218;-.96484298;-.42532012;.13347727;-1.0954231;1.4090233;.58962464;1.6177341;.10552324;-.75004959;-.44400048;-.29952875;.28323403;-1.0262219;.37720567;-.50245154;.097873785;.19031195;-1.183956;.19714688;.014326064;-2.1789982;1.614195;-2.2979777;4.1882329;2.191957;.24434377;2.0335932;-.58403075;4.7549272;.24033578;2.3507874;1.8541877;1.7129573;.38044658;1.187067;-2.0145085;1.5922968;4.7397795;4.7925148;5.2272277;-.14627531;2.6792545;5.267487;.99788886;.068994686;2.5483818;.22323513;1.2216601;1.1826916;.92037058;.52404326;.70114756;.56677228;-.44619593;.69127655;3.2338133;1.3063283;1.885782;1.310174;3.5673909;.56716675;.97756118;3.550982;-.72099406;-.24000497;.65830833;2.6188786;1.0682824;1.2139286;-1.6644984;3.0668721;50.137718 +-.2623744;-.31675127;1.5365112;.39265448;-.64862317;-2.3098178;-.80194205;-.013967315;1.3758479;.4000361;-.50824499;.34824598;-.57367855;.65655255;-.16489702;-.48327544;.28503206;.13084885;.45652544;.58148038;-.49689522;1.7665108;.086605772;.89107621;.0099486774;.48045456;.0019354142;.10412699;.059752904;1.4433788;2.0303535;-.6566667;.43887192;-.31590608;.94231093;.4162896;.11831611;-1.5883515;1.7997998;.58745092;-.37800571;1.714262;1.4661894;.39010346;-.97495872;-.16650237;.93029201;-1.6970059;.52510589;.90098977;2.5955067;3.2666426;5.0456944;3.8553643;2.0183725;.80458659;1.9342989;6.7361255;-.21965504;3.9256825;2.0954714;4.5830798;-1.0476385;1.8642159;2.2677391;4.7266097;2.9292669;2.42079;4.7342076;1.7089138;5.4141369;1.3812795;5.2365179;2.2405417;2.9926593;-.38586777;3.0022626;5.5847983;1.076385;3.1299624;4.9932642;3.4585962;2.038945;-.19266567;1.6693459;-.62995774;-.36188191;-2.8605025;2.4680512;3.1728947;.5437007;-.64030516;-1.8353781;2.0161114;-2.5063264;4.0018806;4.3088412;-.29601139;4.1822982;.69587141;.37417606;-1.4898424;-.52809036;-.23374513;-.092149578;-1.040187;-.53124052;-1.2933191;-.064622127;1.1208867;-1.3314134;-.98869073;-.14545077;1.9637692;-.062974952;-.83025229;-.69034052;.31247723;-.32271519;-.80801636;-1.5770448;2.8788865;-.0043008067;2.1603565;-.20975457;-.47444877;.86988062;-.5566439;1.1763821;.26612395;2.4912603;-.22206682;1.1686387;-1.5821378;.90500784;1.2881014;.55275685;-2.1149635;1.8523457;.74310708;.10193825;1.8573805;2.7818727;-.027843561;-2.3150561;-1.792221;1.2545353;-.96810013;-.081150837;.30164751;2.5096307;2.7494695;2.6426301;2.7266757;1.3759302;1.8984326;1.574666;5.2092466;.48160091;2.5267594;1.4659079;1.7680765;-.36395639;.55074692;2.6471455;7.0847826;3.312396;2.7725482;2.7970653;-.12079614;4.5602045;1.3195872;5.3262568;1.0902958;1.9441489;1.1020383;.70847595;4.6164684;1.5245938;1.9892436;2.4713738;1.9073317;3.1031911;-.30422518;1.1530434;-.28384948;.06078225;-2.7342463;2.3631392;2.1416643;-.31887621;-.97638655;-2.2134938;1.0025854;-1.5265136;2.6753998;2.2007987;-.44396794;3.0492518;2.17856;53.035831 +.44169605;.58954316;.80902386;-.27556771;.11330447;.20816815;1.069695;-1.5204566;.81383532;1.4968545;.92466033;1.863278;.87098783;-1.3700193;.99611986;-1.155557;-.1078485;-.14366165;-.44498861;-1.7579706;.024229657;-.88710141;-.6628809;.8605724;.79839885;-.41589877;.85541725;-.38686806;-1.8912519;.071283668;.088384762;-.90823823;-1.3899301;-.49746045;-1.1673738;-.88997191;-.14005536;.070665486;-.76643592;2.9574218;.40216947;.039395217;-.054112565;-1.3656181;.16639797;-.39801386;.58713377;1.7595731;.30927277;-1.3218389;.36965007;.23267491;-.72881633;2.923913;2.8440688;3.0983679;1.6631531;-.60840404;1.1544467;1.8409963;-2.7342486;2.1330914;3.3667445;2.3163207;1.710766;1.7201169;-.13955218;2.8488348;.68647039;-.7644878;4.4843102;3.7927668;3.8654397;.29260781;2.3023536;2.2346473;2.2773881;.42564216;3.9843996;.9245156;3.1158111;1.9707819;1.4099357;2.8499036;3.3190069;5.0261445;2.2003984;2.3990991;2.1385562;-.94043487;1.9161254;1.9059662;.93226796;.75856203;-.038154397;.14870794;4.8770275;1.6190583;7.2702832;2.9843414;.34854192;1.24212;-.55652815;-.31791249;.87558758;1.1024386;.23187715;-.43065268;2.4674597;1.133351;.062351648;1.5428448;-.36600134;-.48528689;1.584646;-1.8350009;-.44226199;-.6744858;-1.3063601;-1.0739108;.12093168;.34104627;-.39465535;.61345571;.18860413;.32063422;1.1706169;1.8515831;-.010241486;-1.371455;-.28138378;-.36085483;-1.6139712;1.4147164;-.10357553;.11477838;.44206735;-1.4233031;-1.4005691;1.3459268;1.0574596;1.1567315;1.4563901;-.35198018;1.0590427;-.047302421;-.15278324;-.26701525;.27675971;-.97457778;-.37575272;.13117893;-1.1565169;1.9615152;1.9362955;1.8765682;1.0982466;.9606396;.082356133;3.3365717;-2.9557333;2.0026131;2.5405149;2.4422109;2.7130897;.046645284;-.78383195;1.3187999;1.3607191;-.74842262;3.6481254;3.4146023;2.4849665;.60766131;3.9740648;3.7506044;.3144677;.53744668;2.2102106;.18787596;-.22589594;1.6737684;1.3154417;-1.1470438;3.082253;2.5109034;2.2838185;.92374706;.28245154;-.90092379;1.9292352;.89457625;-.29935971;-.20535311;.21269223;.3591603;3.4762042;1.862957;5.668335;2.5569272;50.702488 +1.7011774;-1.2014433;-1.2528723;.8341524;-.21150738;-2.0426488;-.22043994;-.46443084;-1.3015367;-.83847952;.27507159;-.8563897;.14507112;-.33762711;-.50086641;-.96730298;.81486875;-.27221665;.029821662;-1.9437705;1.6033314;.17967702;-.21904905;-1.0631087;-.15574338;.70144784;-.32701436;.25169271;.67500567;-.45157135;1.5631174;-.19448955;.59579164;2.0455709;.089239992;.35231093;.031550743;-.49073967;1.1029065;-1.4219801;-.29501954;.50104141;-.096750952;-.23535892;-.90827113;-.19871062;.4448742;.45100838;-1.0114385;.43694299;5.5778041;.8563785;-1.9640919;-.64540535;.30843523;1.502266;3.0533979;6.3134594;7.2433224;6.0762053;.69814032;4.807869;5.6149507;-.86906397;-.56567198;4.0226026;-.62374544;3.2555161;3.6491358;.47158024;4.0282397;4.7789235;-1.7206881;5.1290417;2.0104771;.1991301;3.4258559;-1.3674426;-.59574306;5.201817;3.5912383;3.1512015;1.8137488;4.1637645;2.8901024;3.8276863;2.60583;.95114625;.37257507;3.1311438;-1.265438;2.3437972;7.2278218;2.9184289;-.72064704;.084292069;1.5122309;4.2132435;2.3254049;.79012787;2.1838288;-1.3687986;.41515407;.32146189;1.325935;-1.5117105;.8588863;.14346364;-1.9416466;-.55329645;-.570858;-1.6992648;.30687091;.40587491;-1.2658036;-.67987955;1.0129243;-1.6705344;-1.4897799;-1.3353559;.3501429;.058933862;.88320297;-1.0400535;-.56119877;.2787711;-.37272248;.63625908;-.59918344;-.13799191;.30594429;.858836;1.95228;2.8338122;1.4781899;-.22141851;1.2338202;-.55344576;1.4143523;-1.7502202;-.70288801;.56526202;2.1314623;-.55724436;-1.9358259;1.8126979;-.51285565;.066391371;-.51794034;1.1634492;2.7014041;1.5650791;-2.1182976;1.5110911;-.044826854;.86578149;3.2838571;4.404798;3.4948831;7.4634457;-.81287181;3.1487434;2.016705;.92533952;-.59526896;2.6222284;1.6146873;3.7159264;2.6906152;-1.2404361;1.9532034;3.1689098;-2.0929093;4.2006383;3.2476218;-.3103255;.95206016;-1.4153844;-.26165134;4.9727283;2.4276974;2.2376623;1.2581939;2.8002937;4.6753659;3.5528827;2.4632049;1.8629915;-1.0765897;1.0495645;.44805917;2.0442169;5.3904033;2.4344065;-1.1417507;-1.2054044;2.3541348;3.3711119;2.2560375;-.26994655;55.855583 +.20153396;.86899918;.74986643;.861386;.59695548;-1.5378587;-.82267523;-.035630237;-.51120901;.84791458;1.1975263;2.2466049;-.34054887;1.0189178;-1.2914896;-.20731868;-.20985994;.51884574;-.57907069;-1.0565208;1.618019;.057097886;.36384049;.54269516;.88275927;-.35466745;-.11186698;.099381335;1.1037287;-.91692585;2.3810713;1.1464335;-.85613632;.15833929;.31432384;1.1201732;1.0739555;.99477643;-.11376505;-.34444499;1.5567329;-1.1056448;.836429;-.86105371;.07033807;.81755447;-2.5139797;-.0052418401;-.24150594;.37468156;3.5388656;-.18047602;1.1500312;.078288883;2.1900985;1.8495809;1.1066236;2.4618952;1.5114425;4.7465014;2.5795588;.84737003;5.8712859;1.3653554;1.09217;.5616805;4.7521896;3.0059056;-.14788398;3.4001732;5.2402391;.86774457;4.0828595;4.6238666;-.33479309;.5169096;2.5340238;3.0265825;-.271155;.029462166;1.4196088;4.28298;.95029801;3.5444989;3.0342174;1.6991308;3.6750844;1.1262282;3.5942571;.73911977;1.9108382;2.6480858;-.72365814;.72211987;3.9937582;5.7767701;-.78572655;2.4240193;3.992579;3.719506;1.6530882;.89097053;-.14064474;1.833198;1.2067802;.22792885;-1.3494245;-1.4510669;-.39242956;-.91696775;1.0140264;2.4092913;-1.762899;-.67517251;-.39042988;.27603921;-.25723016;.67226541;.069065608;.74850124;1.8886489;.89178413;-.62724912;.26993272;2.0869157;-1.3385633;.53144634;-1.1278641;.46844602;-.73980886;3.8847885;1.0936023;-.47753295;.67324173;-2.1061347;.17361245;.26290679;2.3481178;.96365511;-.69570595;.57553029;-.73861855;1.9295456;-.79871422;.21034439;1.0647671;-1.6329615;-1.4195107;-1.6149719;.5845477;1.7647121;2.0173376;.43207771;-.6261903;.71705502;1.0165969;.21165702;1.7624164;.95823884;3.2759836;-.41612959;.33347851;2.4801457;-.012326499;1.6601397;1.3191422;1.7459066;2.0688055;.64359355;1.0013973;4.6293926;.44348386;3.6509314;4.4424748;-.22088796;.26518404;2.9888315;1.5052289;-1.4848793;1.3696979;2.2494235;3.2657526;-1.3752253;1.9781266;1.7268515;1.3773299;1.8215712;.88367647;4.9555988;-1.008047;2.1327496;.5821529;-2.2258387;-.34249058;1.5806996;4.3559937;-.9525755;1.6107798;3.648916;4.4857316;56.518715 +.013268363;.71439803;.86517847;-.22321846;-.2523219;-.42768911;.76016921;-1.5681428;-.33354911;.47797489;.4062089;-.089592129;.25256264;-.12393419;-.49210373;.60887825;-1.2714387;-1.7903576;-1.1960189;.18820524;.095166519;.58050478;-.41457802;.84601134;1.0260962;-.9887765;.77250552;-.17768675;.053875491;.45391506;-1.156611;.51374674;-1.4988552;-.36936238;-.71750915;-.21903306;.86511809;1.351353;.60679996;-.13905156;-.045866583;-.42155182;.90707004;.81268787;-.67108816;.61260551;-.31603467;.42350441;1.3433086;.34564912;1.5514685;.028142894;2.7030201;.81119758;-.57138783;2.8877971;3.249963;1.5080643;1.4242703;3.3123839;.4595201;1.3499486;.7372877;-1.9990923;5.7749138;1.0346316;1.2289659;4.0118346;2.8375337;-.29417363;5.4158454;-.0032442706;2.2136776;3.7914767;3.6678238;.92279899;2.6720893;2.1052773;2.3286436;3.1748459;1.1521266;3.032809;.61441857;.63118392;2.9782968;-.55249703;4.0474601;.2309849;-1.1035495;2.9430439;1.7612158;-.14667536;1.5933443;5.8791037;.098882489;-2.3337154;4.6788507;4.375402;1.0259875;3.7159133;.41157463;-.34866646;1.0014402;.60597223;1.236284;-1.5964458;1.2870191;.25726596;-.7957322;-1.9787565;.8138023;-.65498465;-2.2282629;.21219222;-1.1850516;1.1229277;-.18137868;-.73820305;-1.395668;-.10854612;-.071080625;1.1760561;-.013280672;.77871758;-.19372833;-2.0266535;1.9320419;.61302811;-2.0039909;.18315856;-.21731739;1.6626782;-.96587598;-.56928837;.59853166;-.65905929;3.3986962;2.1071353;.44656852;1.3831168;-2.3378305;-.26271009;1.1141555;1.9687006;-.78200513;-.12663835;-.58411348;1.4400094;2.7003117;.58529544;2.4174778;-.42563066;1.2223116;-.44271165;-.72135395;2.3250315;2.2094104;.74581635;1.1437483;1.6737754;-.090692677;.12984984;-.22598699;-.02367785;4.349287;-.43370998;.92038441;3.8115544;-.045852818;-1.3001442;4.3060603;.34087595;1.0171691;4.1695848;2.9368877;.73561865;2.0696607;1.8308933;.89505148;3.1738873;.43719101;2.9713054;.47625828;2.5178347;2.9603281;.9894616;2.9543626;1.0099759;-1.7475182;2.5756865;.15113786;-.52695149;2.1695356;4.5212102;-.36314553;-4.0763235;2.9003177;3.3249323;2.6426647;1.4535253;47.289223 +-.66886926;3.2236469;.35614762;.27510846;1.1313431;.41558543;-.52132148;-2.4940891;-.78589249;1.4360479;-.1246639;.04945166;-.96321565;-.5413875;-.73646796;.84347135;.94029868;.53100902;.56482887;.33043343;-.58999157;-1.3691137;1.1625702;-1.1938804;.2808224;.54499757;.11707803;-.076099724;-.42134291;-1.7117125;-1.3001121;1.5039148;-.86141771;1.0839286;.82960021;-.070957504;-.56674546;.77762747;-.80792922;-1.8852274;.58190334;-.17482562;-1.7496425;-1.2413086;-.19659401;1.1718539;-.13239269;.73283517;.92336422;-1.6146164;.57932353;1.5029668;-.40453511;2.0930603;1.1715618;-.66936487;1.2492789;1.9832339;2.0424192;3.6780879;2.8194952;3.4287105;.82757932;1.8185751;1.1745049;.787319;-2.0195847;2.843848;-2.1711557;5.092629;-1.1272299;3.1240716;2.4460623;4.4327106;1.0233178;-.56459892;-.43503213;4.4524412;2.9592974;4.0940232;3.8157322;-1.426706;4.5598488;-.29150891;-3.6315989;1.2979336;.14631236;.25366953;6.9941878;.1538109;1.3316281;-.28425452;-2.3821964;3.6907682;2.4476769;3.4834034;.11918812;1.9458635;.90354633;-.072969973;-.84265476;1.5043567;.42710626;-.92241186;.40158844;.70019907;.4156287;-3.1282127;.41876191;.4701755;.93543041;-.19687591;.10707566;1.36169;-.89944857;1.2004989;-.79518431;1.4077188;-.04882336;.59547627;.1626135;-1.0146667;2.4874644;-.60729122;.63162959;-.12789938;1.7410281;.45408484;-.80019426;-.88032657;1.2992896;2.1442566;-3.0134251;.19452766;1.58527;-1.2325183;1.378011;2.6141608;.45606226;-.83606255;1.2353903;-.91838866;-1.660569;-1.7860163;-.99306071;1.2219448;-1.0233936;.15775141;1.4043827;-.14443672;.90735871;.23626469;-.24206765;1.3421203;.6386953;1.1398311;2.2451489;-.71141499;.027936339;1.4222989;1.2472821;1.942414;.17234863;1.0117403;-.54011327;1.910121;-.67877799;1.6261997;-2.1254072;2.0595841;-2.9784334;2.0176592;3.1854181;1.7742059;1.8828441;-1.2948995;-.3144041;5.5344348;2.3910429;4.4890909;4.5570755;-1.3422617;1.8972905;-.30281848;-2.7844172;-1.724364;-.55025476;-2.5109131;7.23241;.23858224;1.171025;-.91748625;-2.2680874;3.523478;1.2253486;2.9634292;-.60604131;2.4555838;-1.1488233;-.11034604;27.661545 +-.36146718;-1.5562447;1.8376606;-.24325453;1.7331592;.29741481;1.3677242;.94159472;1.4068482;-.060156718;-.24509145;-1.6857147;-1.0046301;-.63515949;-.9451158;-1.1421883;1.8773974;-1.7463214;1.6446596;-1.0007961;.87190205;-.74022937;.60638332;-.53787702;-.098773435;1.6302267;1.9946491;.25618944;.23891431;.023914644;.94668204;.42712468;-.099836491;.567608;1.3186798;-2.3081179;.33883741;.37963134;-2.3173528;-2.0278444;.18001935;1.360307;.94645447;.8364538;.93110877;-.30241147;.68992442;-.88189411;-1.3131524;-.25101778;1.8919038;2.3975425;-.48739198;3.5339594;3.388279;3.1106937;3.2581458;2.5257118;1.3296096;4.9148612;3.4099929;1.747615;.38231114;1.9341878;2.2714515;-2.0004494;.61717993;2.5736532;2.5358415;.021860024;3.6974707;4.7393517;3.7673702;-.041717816;-.41524428;3.4785404;2.6030231;1.921796;2.8715832;-.420663;-1.8603108;1.115151;4.0276937;4.3389688;3.0380108;-2.6919768;.11128161;5.0552297;3.8943298;1.3088672;4.4182358;3.9732792;4.0867562;1.5631199;1.306491;5.4994025;.98693174;4.4783087;3.8966172;1.6885613;.054774448;-1.4593861;.97605002;-.59717399;3.6431906;-1.5020354;.59001482;.93445051;.45524973;.68263781;.75022507;-1.2927217;-2.9369323;-2.1779053;.15070017;-1.4074291;2.3815618;-.97632617;2.3761213;.098924868;-.13740306;-1.3457299;.082033552;.5161823;.1922098;1.0039181;1.2692267;-1.2451128;1.0412275;.64462304;.55284458;-.8622793;.77967685;-.16239713;-.87044448;-3.3510098;.24899121;.8885594;-1.8052382;-2.070699;-.1176727;1.286903;1.3913656;1.5539265;.5400424;-1.130667;1.0719025;-.16925009;-.95091373;-.095551088;1.7991383;2.0914586;-2.5083902;1.2811087;.35567278;2.5906472;2.9641016;.28372735;1.4758859;4.8972793;2.6179819;1.4446946;-.88308394;.72890031;2.4833448;1.068166;.52737921;2.3160224;2.930619;-1.1409671;1.9490005;3.0655344;2.3966999;-.45138821;-1.2942564;1.8228976;3.7089553;1.9087255;1.3948478;-.20570463;-.70911151;.77824777;2.8817816;2.4197514;1.4373529;-2.1012926;.12862888;2.2823904;1.1426169;1.0139666;3.9741979;3.6091032;2.8020501;-.41640657;.72001612;3.9079106;-.45436949;.36823422;3.2186885;.65719563;53.391621 +.49046123;-1.2351564;-.36014327;-.67142028;.57495666;1.5296106;-1.4081832;1.5442334;1.1704066;.10070661;.89678937;.94358772;-1.6227293;-1.073943;1.4960985;1.0626789;-1.1603291;-2.0305035;-.33111784;1.1418371;1.2529377;-.69227695;-.42333123;1.5003321;.549115;.54314107;2.3181;.13853352;.35613185;1.1555598;-.023907579;.10706963;.97346222;-.38327569;-1.1886076;2.177969;.78045273;-.88590795;-.5044812;-1.4275137;-1.6292582;.9777981;-1.0978761;.13481005;-.60912424;-.021714836;-1.1648734;1.2919936;-1.0392529;-.37617022;4.3647981;3.4234545;5.5377145;-2.5966177;1.4227413;4.9764829;1.6411823;4.3894982;-.26758006;2.3246868;5.8060503;3.1918721;-1.3631526;2.6162791;4.43999;3.9088264;-.5334146;1.5120267;1.8315907;-2.0628073;3.6196127;.26928571;3.4942112;.14043976;.052884825;-.62005574;.80129462;-.61248875;.677984;.80276144;1.9285007;.16826199;1.6795413;2.2993891;-.84967548;3.7228322;.4875873;2.2071688;1.0003177;6.6450739;.48498681;.5140909;.036652613;2.63606;1.6571552;2.4159307;1.135869;2.1996489;4.7687283;4.874299;-.18867728;-1.3324361;.36799848;-1.7482216;2.0919538;1.9124472;-1.5685161;-.053503424;.98965138;-.57490593;2.6124148;1.6074246;-1.1707958;-2.126637;1.4651592;.79595268;-2.2361324;-1.3938898;1.7934026;.81264573;1.1029158;-1.4291373;-.61734307;1.6430955;.46002504;-2.6126976;3.8257427;.13623573;1.0457103;-1.9777497;1.6116592;-.11671584;.18147881;.017658923;-.24456815;2.5441439;-1.2996447;1.7778722;-.23353654;-1.9275331;.50580752;.7842595;.73056608;.83356905;.21601887;1.5204188;-2.4306247;3.249259;-1.3113426;-2.2089243;4.6571465;2.5469074;3.9995117;-.14373809;.61489195;3.8112445;-.0035300148;6.5074239;.50842887;.4998852;3.9990106;1.3787221;-1.8395655;1.7384738;2.8438456;3.6079786;.69860923;1.4628686;1.9805669;-.99852562;3.4116337;.66404718;2.5636461;.27903354;.60942888;-2.934593;.9428196;-2.1389611;.54647112;-.099564008;.46637326;-1.3664715;-.18674062;-.23515929;.77709937;2.2049401;1.1478665;2.5210283;1.1597754;4.785687;-.77886236;1.6361465;.28388387;1.870407;2.0358906;2.5441122;-.25298491;.61639601;3.2806911;3.3484781;45.870216 +1.1967177;.29417118;.12605482;.12142697;.20008069;-1.7813437;.7080825;-.13474561;.98438704;.94113076;1.1552122;2.0490258;-2.4576623;-.43720734;.3337177;-.87539244;1.3201939;1.9074516;-.056755204;.10160069;-.72731322;.071514308;-.42632633;-.56655174;.31978256;-.2751942;-.99673754;-.99250847;1.9454061;1.1241126;.35875052;.10772443;-1.2796617;-1.1386073;1.7448428;.54769063;-1.2730523;-.67052734;-.99897659;.32890192;.3793585;.58001876;-.89068127;-2.329875;1.0189135;.30534673;-2.1779535;.46785703;1.4397463;-1.2240571;1.843124;2.7889988;7.1938286;2.774591;4.1760664;1.1968049;-.96169466;-1.4763057;3.0080774;1.3289808;.13636419;.12517342;.693165;1.7334379;-.8771739;-2.0999506;2.94261;1.8629594;4.2955127;3.8701766;2.1671271;2.4589064;-.44399101;2.9906375;3.2107403;.91837656;4.0392113;.3685053;3.1094794;1.8375741;.44663554;1.45618;1.1864493;1.49902;4.4000349;-1.6312352;4.6640821;2.9537427;1.3486264;4.8643742;1.9878831;3.3287838;3.7734878;5.4065433;1.8146524;.22707188;-1.3158596;.44658351;1.7947891;2.6546731;.93940032;-.20809835;-.27783328;1.8954083;-1.4000257;-.87284011;.5761165;-.24445719;.87105876;1.5589322;-.063117832;2.3008232;-2.1979799;-1.2543769;1.5256947;-.073941983;1.5191375;4.2015009;.75929326;-.044634733;-.029932139;-.078077234;-.0085598584;-.47251949;-.018892653;-.29623863;1.1339669;-2.2548332;2.2387238;-.044931836;1.289987;-.15354502;-1.6191807;-2.2519457;-.45771143;-.2025723;1.3938392;-.76482886;-.82994205;1.0756036;-.4141421;.30152506;-.14117102;-2.0935292;1.5165824;.057590123;-1.540888;.027303474;2.1794899;-.80756193;1.8309103;3.8234799;4.6581211;2.7664514;2.8716369;.88779747;-1.8596886;-1.1583002;1.3600404;2.1018898;1.957191;-.29951796;-.65072674;1.2772382;-.85904425;-.4343259;1.7370678;1.7253293;3.3003535;3.002588;1.4116398;1.4598746;-1.2057786;-.15332279;1.9884973;.78808159;3.6509092;.035964139;1.5686082;.56651002;.01408158;-.10616582;-.33182168;1.0586405;3.3453805;-.10773954;1.8200688;2.1194096;.73393261;3.2470908;1.9831972;1.9136598;2.5566857;4.1712508;-.22096983;-1.1902457;-1.1229893;1.1155838;1.8267251;3.0763953;39.156807 +1.491341;-1.0189894;-.37650964;1.1475283;-1.7185843;2.1316888;.10070854;.031850073;-.32991028;.28706619;2.3262899;.37473273;2.1375732;.32764825;-.97503227;.36937654;-1.4778153;1.1720539;-.27159733;-.29274756;1.008615;1.5001355;-1.2455039;-1.1920886;.62190551;-.62066418;-1.7389374;-1.3930093;.98847151;1.6799701;.6283204;-.87340415;-.79485875;1.2168088;-1.0715137;-1.2187867;.18084441;-1.7485173;-2.5272794;.53781372;.097786702;-1.2808869;2.3675072;-1.1095988;-.011731443;1.6232177;.70128608;.42169842;-1.2819667;-1.918124;.64677954;1.1734134;2.3130922;3.2112536;1.6923455;5.253859;4.8513722;2.5381029;.55546981;2.8111799;-1.4489083;3.5805545;.43767926;-.9284575;1.2572706;3.6956565;4.0080142;3.8448055;.94257331;-1.7081435;3.2893512;2.1168673;2.3453217;1.1637627;1.6343377;-.52206939;-.50073045;.82497412;.56386822;.87004209;4.1615758;2.5024426;2.9977822;4.0514307;-1.3790091;2.8460491;.6138345;3.350203;3.2290626;1.6139795;1.7065111;.17404808;2.6489174;3.357136;4.7355518;2.8348501;4.6201491;2.5461771;.033109203;1.2066915;1.2669163;-.46528021;-.2658112;.27414918;-1.318055;2.2168262;-2.3538506;-.042814959;.30432731;.27589998;1.4633286;1.668817;1.9997728;-.53600287;.79550362;-.32441521;-.14858565;.78355151;.97052908;-.2634981;.66600943;.34485373;-.73723;-1.4209789;1.2309623;-.25137496;-1.8398466;-.24748023;.67543322;1.1407739;-.17158821;.29496053;.55862755;-.26268083;-1.8476593;-2.1164753;1.6619091;.13665681;-1.6040691;.043280188;-.16467772;-2.2036624;2.8361704;.21344079;-.54437643;1.0901675;-.39159149;-.47664905;-.33622217;-2.1798236;1.1886764;.28046361;2.3439817;1.0701007;1.1287104;4.7813377;3.7339768;1.0126227;-1.4913753;3.6602426;-2.7743726;1.7786868;-.76397258;1.1527907;.92692024;2.1460881;3.8306258;3.6317899;-.88068265;.86123747;2.0600951;1.2798369;.64047992;2.4631846;2.1388516;-.82239777;.52215838;1.0018907;-.46923915;-.27042994;3.376646;2.3221257;1.6937124;3.0581014;-.25683323;1.6545788;1.0236901;3.165354;2.524087;1.4823536;.055319406;-.2657353;1.3676553;2.718473;3.3001478;2.2842858;3.3155799;2.270561;.17457783;1.3152376;47.307247 +-.56568712;-1.2477362;.6200304;.51953214;-.043884877;2.4231572;-.033450726;-.43054134;.4362826;-.38115036;-2.0083177;-1.7888714;-.73336005;.81669694;.29443598;-1.3463899;-1.1372956;1.3106306;.6045559;.1673681;.38020855;1.6350741;-.20814456;.58463812;.35453257;-.098322198;1.0126958;1.7920891;-.11627935;.2588149;.28106222;-.025617559;-.12383992;1.2522749;-.99777293;.49389416;-.14732486;.23095551;1.7620947;-.39919269;-.25670385;-.93887568;-.37102172;-.47862783;.25174767;.38329089;.1965252;.30726337;-.43614715;1.2956046;3.633177;-1.1894929;.51348364;4.7222238;2.0824256;1.9222738;1.729826;3.6680634;1.5724406;-.59413826;-2.1416395;1.6731521;2.4085941;3.4784391;5.2934566;.88174558;1.4364787;2.843292;3.5033205;.19597158;-.044319045;3.0356791;1.3096539;3.8140354;-.25350919;3.6069064;1.7097871;-1.6155005;-.35228437;1.9214902;1.0031317;2.3448679;-2.0228055;.94321883;3.9898822;4.3763223;1.0561721;.5749073;2.3049517;-.74307114;.95969003;.66640741;2.4834146;1.2183427;3.1814566;3.1517327;5.989171;-1.0255318;2.5946617;1.7049886;.0087614469;-.43137276;1.8156263;-.92674291;.14725751;.93855268;.27681953;.02973461;2.4118125;.46374521;-.23002404;-.74595714;-.71668935;-.59718901;-.83728343;.46226892;-2.664938;.3332257;-.085114986;-.22519709;-.52999336;1.2410709;.39445069;.35000789;1.8082497;.45232555;1.4221545;.84324735;1.3101118;-.92607987;.78139794;.16674978;.45176452;.52380878;-.034446996;2.1248479;.11425612;-.51104075;1.7251178;.68852884;-.97254592;1.5642754;1.8805283;-.72672147;1.4108129;-.14817855;1.1641508;-.25015569;-.31574869;-.59928638;.7966097;-.21799429;-1.1727195;2.668607;1.8693552;2.0804679;.16488712;2.9248581;.14406514;-1.7355272;-.75513667;1.1173056;2.4537122;2.9384193;4.7189565;-.33391893;2.4849212;3.3974092;3.3122578;.12257102;.066847593;.3218976;1.6353931;2.7952578;2.8325157;3.1391592;.46400908;-2.2135911;-.63018137;1.2971265;-.16828069;-.37753454;-1.2195846;-.14166027;2.9699223;3.8004725;.47855291;-.51203102;2.2974157;-.57910889;1.5116389;-.56104523;2.6605861;1.8670149;.98376411;1.5747719;3.688946;-.89751083;1.4420646;1.3969774;53.052444 +1.1853939;-1.5366558;.98790765;-.81347376;-.31170091;-1.1774296;-1.352761;.57657033;.37663674;-1.6967814;-.4123854;-.95935696;.68417645;.54559606;-.77797759;3.0794704;1.2284309;-.87758231;-1.298521;1.2173861;-.50824839;.17760471;.09146975;1.1601535;-.35141382;.50237381;-.48685339;1.1706462;.36654586;.80911028;.12262372;.20111617;-.97627854;1.224175;.26685274;-.65640956;-1.0278783;-1.0526266;-2.0113268;.40186396;-.82374841;-.43948236;-.37945405;-1.1462309;1.4055655;.63896686;-.7899093;-.59390152;-.41897649;2.0987396;5.7142658;2.8218651;2.4746485;2.0130827;.068034366;3.2735612;2.1897957;3.3677821;-.13317259;3.1322923;5.9367919;-.30359313;2.8369856;.70922369;2.8553512;3.5924888;2.2531428;6.5357137;1.8198792;-2.5896401;2.5339382;-.10364866;-3.3491595;4.6686263;3.8783047;.33366096;.06305021;3.3350494;1.5995245;-.71767402;3.5861275;3.1974115;-2.1684537;5.8951621;1.0747356;-.91770703;3.6836529;5.9075527;3.0774946;.10936235;3.3676879;-2.542635;.18065068;1.7225181;3.9234784;1.5164549;-1.9202918;3.6548064;.51950091;2.5181611;1.5231849;-1.2724531;4.3409734;-.11447157;.0097657926;-.54405558;.10485483;-.22541851;1.3997591;-2.1213017;-2.0006926;-1.0990317;.44868129;.9950884;-.24079971;3.0736017;2.2809811;-1.0848249;.057278149;-.19571431;-1.401986;.31024355;-2.1018581;1.9545791;-.3647491;1.171388;-1.3448511;-.27447751;1.8672565;-.020692343;-.43471956;.44692856;1.9287934;2.1173422;-.020553691;.65602845;-3.376173;-.75368166;-1.3874289;.41290596;-.25807369;-.76852727;-.82714736;.60479391;1.3882467;.38717228;.40097418;.37022489;.56181055;1.2415991;4.2355747;2.4350669;1.7467914;1.3709683;-.28375351;2.7920737;2.5307827;2.390202;-.24087816;2.9707963;4.5567427;-.78421515;1.6536641;-.51826388;1.0140629;2.5216236;1.5014139;4.1698036;3.4248114;-4.1127992;2.303489;.58523828;-1.9665829;2.2031739;1.3201572;.18308434;.18605499;1.7929029;1.0161067;.90544689;1.7081534;2.4538007;-2.713413;2.0973248;3.3907406;-1.1746173;4.6779432;3.4848144;1.9804456;.012055563;1.5480902;-1.1768628;-.49284399;1.5851765;1.3674996;1.4813845;-.74670559;2.1880579;.41074657;2.0239027;45.319828 +-.17225349;.023679895;1.0692822;1.6569557;-.43394405;-.5268653;.43182397;.17251296;-.35878468;.14383645;2.0637987;-1.3135387;-1.5038284;.44204623;-.04587613;-.96008331;-.31881431;1.01712;-2.2911899;.57623601;-.53477269;1.0658138;-1.1563103;.094245873;.17080237;-.4974007;.52499694;-1.5882788;.27027345;.15783198;.23171571;1.1189232;-.88238847;.29181388;-1.5032915;.92582458;-.5945968;.45915109;-.96357268;-1.5801334;.11984067;-1.2334491;-1.1633368;.84297252;-.9432621;1.9620082;-.85584855;-.41882905;-1.766488;.91196179;5.0321169;.31656852;-.55609119;.078931063;-1.3951261;.79031909;.25117868;5.8500152;2.3075774;2.1549363;2.0310237;-.5678519;2.0400937;2.2428746;-1.4418266;1.4253662;1.1895075;.012524113;3.4008138;.76407397;4.2404895;.86327028;4.6382565;-.88306296;-.74718249;-.86465585;5.9548531;-1.2684067;1.6022586;.79373908;4.4268527;6.3307257;.66433257;3.5920115;2.5736825;5.7354374;3.834579;1.3652514;4.2793946;5.8827343;1.8714694;1.9686638;5.582056;3.2269199;2.0387864;1.5762658;-1.015236;3.789675;1.4491453;1.3165629;.41589421;-1.2268306;1.630242;.57914573;-.71623886;.12436817;1.4656444;1.0957397;.77173477;.52937007;1.1015145;-.29911718;-1.7391988;.72402489;-1.2601608;-1.0500681;.65363395;2.1720929;-2.4164369;1.4485081;.63529962;.87971753;.35688514;1.5555152;-.19180734;-.5868659;.3674652;-1.2315736;1.0493574;-.23763436;.56016105;1.8837616;-2.0576658;-.21904667;.59468651;-.54471928;-.84700459;-.45981428;-2.386899;-1.3370197;1.1995324;-1.2753372;-.75826156;-.27220362;-.63413358;1.5172322;-1.3552451;-.90256876;-.42806113;1.9124472;2.4616647;1.5982095;.090855487;-.67143023;-1.2901834;.84183908;-.4435496;3.5097466;1.0623889;1.8973242;2.3059845;-1.3763089;1.7371085;.32997265;.1307106;.43269736;1.2235818;.60847753;.71753949;-.3141771;2.1378212;1.4924744;4.3546934;-.23346989;.0098865684;-.35257077;2.7808197;-.85072976;1.9462543;.0038101217;3.0996535;2.7401633;-.20521578;2.2693372;2.0557992;3.9738796;3.0007946;1.5508962;2.3626254;3.0974057;.48733959;1.9769517;3.8350661;1.9238335;.67056686;1.6097542;-.94892341;3.2536099;.77884513;1.8025504;46.825066 +-1.2373389;1.0448245;.98903692;.21830849;-.57885939;.17822827;-.44101235;-.41617626;-.78431958;-.70568538;-1.2958931;-.43702832;1.2368364;1.7006993;.54904723;-.095704548;-.3394556;.20920794;-.18481763;.23094037;1.5598311;-.37402382;.74769986;.75608999;.58888936;1.3291285;-1.328335;.40256527;.097258888;.8804239;.24773346;-.75332326;-1.3496926;-.45899904;.27528459;-.7110979;.74436909;-.21806762;-.80828315;-1.1788985;-.90386808;.0080025047;-.82835221;-1.4081998;-.21847405;-1.2260306;1.9724984;.13888046;-.22740057;.61040634;1.702204;-.53758937;-.33934227;2.8963854;4.8726568;-2.8442616;4.2102132;1.0383012;2.2779539;1.5686544;1.0916859;.28815025;1.7812634;2.9006858;5.1585388;1.8709283;5.6611614;2.7126226;3.4901533;1.4056127;1.754934;2.6531656;3.9060838;2.1507199;.98033297;.82280344;1.7583988;5.5401902;4.3280034;7.2498612;.36806369;1.8367682;-.30171472;3.5084059;3.1533535;.11175854;2.2910905;3.4304106;3.1377809;5.4503632;-1.4273317;2.8682251;-.45057398;2.3796268;-1.0191453;2.1515863;.19249615;.31406927;.24597692;3.1559355;-1.2870038;1.472877;1.6588883;-.46638942;-1.1963209;-.061051726;-.79206079;.40209198;-1.2743233;.68287522;.69478327;-1.1501583;2.7795739;.87937909;1.5431023;.35899195;1.5877639;.85052103;-.5170024;-.83150434;1.3528794;.71996433;-.89214647;1.3206434;1.0607103;1.2969699;-1.9302092;.071122289;-.0052827867;.33777079;.46396974;.64600569;-.60039365;-.059678998;.49324697;1.4008737;-1.2989595;.2118243;-.48027486;.99992144;-2.492332;-.67836922;.26250333;-1.3079493;.88455498;-1.7148029;.51184392;-.53869689;-.5375942;-.62993687;.82074386;.74482048;1.3640537;2.5280137;4.5517764;-1.3047807;2.9745238;.14056794;1.6793782;.62215251;.78095061;-1.3424065;1.1534606;2.5094745;1.5572106;1.4216472;4.7010245;2.7797966;3.0748646;1.2818774;2.7280157;2.9142861;1.3188059;1.8994403;.9476558;-1.5445713;1.3490447;3.6903801;2.1445141;4.4667211;1.7697674;2.8987727;.20776685;3.5688665;2.9268224;-.20110728;1.7915881;2.4964161;2.2349474;3.419054;.57862991;1.7368515;-.40817878;.93406194;-2.3590417;.34640631;.53352755;.62626582;-.96065116;2.5281107;47.018082 +-.067379527;-1.1322834;.3717424;1.9467827;1.0836709;.57999909;1.5927473;-.95150369;.83063251;.1482878;-.1591845;-.54119736;-.64718062;-.25380087;.03303225;-.75838184;-1.6491845;-1.3036714;1.0876169;-.83284861;1.5522362;2.2570403;1.1263984;-1.5388821;.22233385;-.36115369;-1.0481069;1.29746;-.41216403;.15978914;-.53234076;-.33280492;-.4407686;-1.556931;1.3140526;-1.1532041;.32683364;.556081;.4105989;1.2046423;.18266581;.75085628;1.0863891;-1.9482733;-.54779822;-.60345215;-1.1894493;-.033543132;-.17323567;.68954253;3.0007398;1.7299751;3.4852896;2.2649529;2.2046723;-.29926133;2.0677967;1.7766124;2.5740385;.46330243;1.4892765;.78921878;5.8695068;.40745604;2.7344651;5.4634304;4.9072676;2.5317996;3.4092324;2.8321919;4.9516454;-2.9381144;3.4850845;.12330257;1.3557851;1.5860471;.30694985;-1.0470016;2.3435853;-.13235594;3.621917;3.4371645;.64006746;3.2872334;.63096517;4.7432351;.17546049;1.8783575;4.6223907;2.8504953;.19739585;2.2461565;.80172533;3.8667433;.86280805;4.0553298;3.4445548;1.3501145;1.9379762;1.0415368;1.1164351;.71340406;.77283514;2.026469;1.7061301;-2.1331823;.74400526;.79014218;-.10610055;-.25594845;-1.5765814;-.33240139;-1.2016928;.36132893;.43985778;-1.0201848;-.60467345;.27746978;2.0001285;-1.2567602;1.2234211;2.2916732;-.81113821;-.67337048;.16609034;-1.8519737;-1.4913478;1.1079931;1.1887189;-.024791021;1.3719728;-.032012276;-.49285972;-3.3550513;.58524841;-2.4488325;-.53059113;.64425749;2.301657;-1.9275545;-1.6185164;-.50889349;-.057982549;-1.0306503;1.123464;-1.290169;-.71933639;-.91907036;.77203608;-1.6171561;3.4960051;1.7642708;2.8030517;.4476572;.70988226;-.72896856;1.389264;2.8666766;1.2035111;-.28582916;-.2536841;1.7689922;3.0830612;1.3258289;.16821055;4.3715348;2.5993376;2.9677258;.92246073;2.1309853;1.7919548;-2.6084809;3.492264;-.99171311;.89647108;-.64760274;.90468955;.32429713;1.5508686;-1.6879631;2.8282783;2.9802358;.38266221;2.4400156;1.8014697;3.0126078;1.5040566;.86671799;3.1124969;.75223285;1.1945205;2.5466068;-1.0439718;2.4345272;-.080666542;1.8684464;2.7099476;1.1513251;1.8046894;1.7158849;57.97213 +-2.0462909;-.70522565;1.364471;-.47044241;-1.4454134;.095987849;-.44724211;-.62411314;-1.1982462;.33983055;.0059907129;1.9115416;-1.0084802;1.8073198;-.2608605;-.093948938;.79950458;.95802832;.58988976;1.3346832;-.1928536;.19682848;-1.4466311;-.81886625;-.46292949;.37289947;-1.176003;1.4668759;1.9888988;1.2421491;.13178743;-1.1891727;-1.2395023;-.83247846;1.306945;-.10709146;.47372872;-1.4706237;1.2712814;1.4700235;.7004956;1.2209252;.89986259;-.38903099;.24485306;1.4186838;-2.0240378;.51656431;-.46772859;-1.174991;1.1844139;2.1702204;5.1784;3.2816703;-.015793193;4.9376173;5.4038205;2.352304;2.4432454;2.4091756;2.5093145;2.0445497;.31163171;2.4689453;4.2642441;.031018186;-2.3024533;1.910969;4.6906071;-.65853643;2.0495646;-.47646204;-1.6129435;4.4423828;-.011250179;4.3114729;5.4408231;.87849087;-.075535499;.53858781;1.7083625;-.70829284;-3.0216043;-.82274944;1.1677812;3.350986;4.0841064;2.7243936;-.8945626;1.4320089;2.847116;2.8365743;1.3826437;2.1234751;5.3325825;1.470719;4.1949844;2.5140913;1.3316219;3.8760166;-2.4579685;1.3935504;.86222887;-1.3644459;-1.3538822;2.9112232;-1.2586063;-.14443047;-2.0817728;.54086876;-.076452099;-.86157703;-1.6121126;2.1704381;-1.874724;.053857286;.53910732;.3020615;1.463869;.73237568;-.8941921;.90210354;-1.2339275;-.35779548;-.29581827;-.50513202;-.84343749;.42883533;2.9940844;.5569104;.14063734;.0043696677;.35901114;-2.1877277;-.15792373;.2718679;-.35552871;-.44533065;.17814581;2.3127782;-1.0796605;1.6623809;1.2195951;-.21202546;1.4519404;1.2711238;-.82658923;1.7544618;.032794435;.88014138;-.10659778;1.5384727;2.7419686;2.3559575;-1.0993569;4.4717064;2.8448284;2.2253942;2.909409;.13588478;2.4767532;1.2168732;2.1297364;1.0201005;2.6999624;1.9798425;-2.0806177;1.8836564;5.0067663;-.45453495;.58606672;-1.0591867;-3.6184614;3.0723188;.086486556;4.2541876;3.4127748;-.13612685;.37609327;.45047605;1.917295;.889099;-.52667737;-1.4065484;.96914446;1.6648972;1.686085;3.0098286;-1.6929823;-.07413125;.49879223;1.3385624;.47527179;.78123486;3.1149464;1.897687;2.3357325;2.3134301;.7689684;1.0063753;52.394592 +-.55062824;-.0084848795;-1.5305104;.6083107;.90871996;1.5161307;.7116819;.56637162;.40468305;.51548892;-.82038975;.43381819;-.27014521;.41603029;-.28553143;.056236427;-.071176231;.36743134;.51441759;.27870181;.10609204;.88214236;2.33955;1.0712585;-1.1732831;.44675034;-.74552965;1.1328621;.47064385;-.18581013;-.64767534;-1.3420035;-.88933522;1.9163001;-.0086146677;-1.643173;-.16177706;-.099800192;-.51999599;-.18350115;1.0059084;-.23200205;.51239753;-.41870832;-.7711888;-1.057238;-.13443176;-.69711649;-1.3059237;-1.0558044;4.4671226;-.23127632;2.8596411;3.0238328;3.8527462;3.3851545;3.4334347;-.54117161;.13830027;2.0278461;3.0540438;1.9852365;5.1313477;3.0511484;-.42727003;1.648878;.96705371;.19014071;-3.0636411;3.5567057;3.1066241;1.497878;1.2178941;4.5911088;1.8980477;3.0454545;.54670477;5.6521115;1.4151922;5.9195881;4.0819769;-2.0150239;2.1448588;4.7449841;2.4133213;-2.2748783;-1.816949;1.7517051;-1.035284;1.6907692;1.302237;1.3488038;2.9805329;3.5845807;.84464651;.36356965;2.0410962;.69687176;1.7309247;5.6738176;-2.1372259;-.69589067;-1.9322244;.7937271;1.5967267;.87574077;.46609861;.89902377;2.4517248;.20429122;-1.8232944;-.057541169;.08357878;-1.1559154;1.6281143;.41713908;-.8092621;-.38425601;3.2729149;.43974286;-2.0791192;1.5665612;1.4833151;-.32473162;-.7618944;.84357291;-.94197023;.83968896;3.0280471;.23119365;-.96797615;-.61600572;-.21546961;1.0421842;-.34636793;-2.0074186;-.97497618;.17798619;-1.9066216;-1.2995459;.3922632;-1.5918481;.40051478;.44295394;-.24509323;.36755863;-.2002895;-1.2785069;-.67255974;.35936737;3.0765748;-.6525647;1.2563862;2.0589104;3.5834627;2.378794;2.5345664;.27885202;.24593402;1.0178214;.2722885;1.4087638;2.8636127;.27379507;-.70919216;-.3470138;1.3170401;.18064365;-1.6212032;1.020279;.998815;1.5351135;1.8929486;1.6459715;4.4291501;2.1414256;-1.1276184;3.8795979;-1.0344905;4.0056734;4.0380783;-.6997605;1.1102269;4.3484259;2.0178382;-1.983745;-.73125386;1.7790955;.068642952;1.3041787;-.084378108;.56601441;2.146441;2.1747234;.23335454;-.021472039;2.6985843;-.08166308;2.5023615;4.2596393;43.019463 +-.88220495;.65831947;1.3594947;.67923582;.071939394;2.3946135;.4269363;.11457694;.013215022;-.047997586;-.61314911;1.0248474;.70160663;.12762636;1.0259405;.56315911;-.46591774;-.73888868;.21769671;-.092905045;-.41640809;.25937432;-.30314746;.026654862;-1.8563895;-1.4931824;-.67825675;.74867749;1.375186;-.68488616;.49063966;1.4251071;-.11538219;-1.8780774;2.2775013;-.58994198;-.27851599;-1.784304;-.36829373;-.68027097;-.57656097;-1.3299443;-.61803246;.49941549;.80746794;1.4586643;.77085668;.41896698;-.45493343;.8090508;-1.8943607;1.0589375;4.365438;4.1699262;1.7223442;-2.7921999;2.1234486;1.5347563;4.6560602;1.7523031;1.0363573;3.3435252;-.04339334;4.4149442;4.5231872;.25366268;-1.3252505;-1.5162743;2.7944784;.76510704;1.8574245;.47483283;2.2363989;1.6841873;1.0333753;.62823975;1.4471102;2.7392695;3.8386297;-.96175158;4.3470178;-.39708793;1.8098694;1.739861;2.0252151;1.149606;6.0137401;-.38027501;6.4935508;1.4135922;2.625608;2.3855493;3.3357244;5.2898817;1.9687339;3.6191444;-.43551034;4.2520137;2.0185645;1.4186207;-.26736403;-1.1415507;.27174383;2.1433799;1.1925238;2.8277814;-.37420437;.54322475;1.2427022;.47366929;-.76496464;-.77462757;1.9667134;1.3076051;-.11752442;-1.2034862;2.0128129;-.064666219;-1.3567131;-.46242559;-1.135625;.3125506;-.28848287;.51925772;-1.7338722;-.96031582;-.51368868;.16882512;2.5772903;-.71035278;.24523078;1.3588531;.60189062;.54917598;-.13953772;-1.6083158;-2.0486994;-.72792566;-.43480465;-2.5279937;-.32795379;-.78123248;-1.5312035;.78812844;1.2535449;-1.0120066;.52258068;.37919325;-.35973087;1.0545965;-1.4438217;1.5174211;2.3765051;4.7725096;1.9860888;-3.7989266;1.2145847;.021106677;1.253639;1.4552149;-1.6264468;2.9327006;.86462945;3.7474658;1.7018504;.9165597;-2.585609;.62706566;2.7924445;1.0790147;.81822658;-.53498769;.82373077;1.4990008;1.1470438;-.91019464;1.3364775;1.2800463;1.2047733;-1.0882008;3.5693383;-.99783474;1.3774904;2.7336006;4.4153733;1.8808444;5.0542579;-1.7071234;4.2393022;.31693232;2.7087982;.98921442;3.0845392;4.9939737;.6034503;2.4656084;-1.6374953;3.3158014;1.7678808;1.206327;51.820133 +.60991114;.87400657;.76937288;-.077855133;1.3310634;.28552866;-1.9535652;-.71055406;-.91035521;1.2757615;1.8176326;.087177403;.57212359;-.2108627;-.86896402;-.87963319;-.02209954;-.036179226;1.6002474;-1.4918768;-.20038491;.94598866;2.0930378;.78098106;-1.2172754;-.28585619;.26400825;1.6923311;-2.3253713;-.94807035;-.614025;1.2881444;-.46208975;.56164038;-.6700846;.19244158;.38185069;-.09200085;-.424674;-.41759998;.88580823;-.79195321;.34886497;-2.3212147;-.47424358;-.67300409;.82520866;-.466654;.7474224;-.64259177;6.491724;-.6009075;.82128894;5.4844441;2.663573;2.5531633;1.6035868;.90931278;3.7530673;2.8236659;.085624978;1.0301749;3.1509297;1.5048254;4.8319874;3.214983;-1.9997464;2.1178057;.6909712;3.0708516;3.4896102;1.358381;2.2869201;1.5699515;4.4663901;-.26071173;4.3498034;1.1375719;-1.617662;3.5847003;1.0793076;5.3260322;4.6882229;.41436613;-.50217986;2.8757541;6.3785586;1.3945097;3.5811341;3.5071833;2.6509144;2.3442783;2.0993311;-.44861984;1.6895906;.024514712;1.4872831;2.7419441;2.6405604;2.335608;1.9168541;-1.3440175;1.5214688;-.94591916;2.2386987;-.33961728;-2.9058518;-1.1400115;-.29578623;.49376968;1.0789587;-1.3169349;.12250637;-.93673903;-.87880552;-1.1813364;-1.1612201;-.046389382;2.1690915;-.8087908;-2.3471308;.040607553;1.5299453;-.71501118;-.25831679;.911861;-1.9821774;-1.0707333;-2.7030482;-.91441137;-.041791882;.10346464;.81078392;.20851097;-.84149969;-2.6069613;1.8103261;-.67960691;-1.2036127;.42396238;.14710364;-1.0350477;.35722512;-3.4139664;.12401739;-2.8173459;-.044970389;-1.3204001;1.2486833;-2.2829728;4.6075954;-1.0398085;-2.084599;3.9798436;1.5904273;.46668175;.81419259;1.9561682;1.4725444;.36682695;.75911599;-.40176699;.99243414;.57226741;4.8567529;3.4178824;-1.8994042;-.34428662;.13502528;.77748531;2.6580868;.32040143;-.32572961;.87600094;3.5590975;.461678;2.9311216;.013974208;-1.1772867;1.9978688;1.5386689;2.5305383;.12462659;.95502287;-1.4800242;2.8632586;3.825042;-.020672157;2.2275934;2.1980219;1.7565495;1.8666234;1.2013301;-1.4825191;-.74581039;1.4381236;.47513562;2.6743519;3.2769964;2.45208;52.346043 +-.50209886;.89336044;-2.9227607;-.2296661;.66879594;.28093049;2.8616481;1.5126202;2.1134355;-1.8902271;-.025802134;-.75156498;-.5117414;-2.5310833;1.4283677;1.3411812;.18905182;1.4460649;.41223958;.21458526;-.47629955;1.2879028;-.11967605;-2.5544729;-1.2321985;1.3685786;-.2306868;.23732226;1.3276602;.58715671;1.0717405;1.0384185;1.1016645;.13538204;-.49963117;.49046764;.28843391;-1.6022236;-1.9032475;1.6984456;-.43520433;.1285063;1.4894898;-.7330693;-.56026763;-.31999648;-.44452381;-.70804197;-.66370791;.10830568;2.5325091;-.48662269;3.208075;-.030476861;.71310782;3.2453668;-.44729897;4.6979351;-1.3900331;3.762104;-1.3417511;2.9074342;-1.421373;4.5298896;4.774477;-.10193194;-.36515844;3.6475339;1.7283636;6.0618997;4.9160509;-.25811082;-.23461124;1.4810091;1.8892446;1.328542;2.6289001;3.0804212;1.0172639;3.1640046;.79379421;5.1700525;3.0293343;2.6806428;2.6788502;4.6230822;-3.1873078;2.587559;.77118093;1.7901573;2.2171776;1.8881871;-2.74031;2.7359772;1.0835965;3.184428;1.2495675;.83840305;2.6715508;5.3055124;-.56817943;.72032672;-1.9390049;1.2930759;1.2029113;-.66389269;-.066180311;1.8653626;.75738364;-2.2529721;-1.4597516;-.97598231;-.48865628;-.17692713;-1.3506163;-.85322821;.87973291;1.2441092;1.2345325;1.7657568;.52575892;1.1490641;-1.9400166;-2.1317861;-.61351442;1.5417854;.95904022;1.162742;.30507961;.48224652;1.8568231;-.39202005;.46927324;1.2510641;.60712051;.33600459;-1.2488754;-.57490003;-3.540149;2.6946368;-1.1919289;.24854092;1.8771539;-.094904564;.78502125;.35470325;-.96587384;.52593213;1.3297268;-.21856852;2.7044969;-.91095048;.66923714;-.4251726;.44390246;3.5777638;-.62237936;4.5775738;-.34923851;1.8640395;-2.6133988;1.2371856;.49474198;2.1988618;3.597255;.91563421;-.19724059;3.2187946;.12944651;3.3800073;2.8418717;-.13833703;1.4193238;1.175364;1.9253069;1.4137698;2.0099137;2.2183616;1.0810312;2.4965148;-.095227651;4.1915078;2.788913;4.7544379;3.6806419;4.4106336;-3.1909673;2.3410084;.81406832;1.3947575;1.2863724;1.7641591;-.7368024;2.6369684;1.4831125;1.7266095;.53421354;1.1024307;3.2642415;3.5157571;49.798492 +.54879582;-.96676916;.12013345;-.75989312;-.043991804;.20616253;.43315378;-.69883901;1.0158583;1.2709935;.073908299;.27844408;-1.3200927;-1.244678;-1.1748713;-.93188852;-.74364781;-.67684215;-.59451771;1.7754817;1.0852174;-1.1799998;-.16506132;1.1912063;1.0750576;-1.2585938;1.5447097;-.11299498;.56291378;-1.6400949;-.78383297;-.058584861;-.81105798;-.86186093;-.39237675;.65051007;-2.0275831;-.7196427;-.5350545;-.04415952;-.22942236;.86365885;.66075522;-.31740186;1.8324702;.31391722;-.26664177;.44279173;-.45976695;1.1152207;3.8773439;4.9380941;3.7073343;2.7621303;-.74870563;4.9929209;2.2064424;3.8875678;2.4553232;-.21042311;.97865838;2.9315886;2.0813258;-.69599032;1.3191053;2.8286889;3.043014;.83651584;2.1429646;6.1313171;2.5088034;-1.1174512;2.189326;4.3711519;3.8413403;5.4798174;-.068554074;2.608156;.10878419;2.5321577;2.7148201;2.1345918;5.3553419;2.1070068;2.3194211;-1.2575691;8.2605696;5.1010375;4.3887033;-1.5120492;1.0590324;3.4780071;3.9260812;3.8677597;3.4796205;3.6516292;1.0963887;.88063622;5.0238838;1.0445325;.94880879;-1.872641;.71731079;-.67451769;.17398058;1.4423333;.89360774;-.87600696;-.61665285;.28315255;.32763407;2.4331765;.43352658;.33460993;-1.2212193;-.4203507;-2.0229783;-.61133909;-1.2840805;1.1342152;2.5523059;-.97895169;-.22382307;1.4552244;1.4734229;-2.1654346;1.6889027;-.47812027;.69422579;-1.6857913;-1.8421961;1.0913804;-1.4514486;-1.7093021;1.171069;.041676451;-1.7974041;.59078908;-1.7957137;.67833579;-1.6886684;-.23341835;1.8018014;1.409819;.80971926;.080557898;-.3805185;-.011146772;-.82170111;1.8742592;1.7041725;4.356564;3.7626569;1.5094062;.39924693;3.505518;.66381943;3.689667;.9914993;.46004266;.17527589;1.7579339;2.2364771;-.69484103;1.1572936;3.5031552;2.3345098;1.4154114;1.1856619;6.1937675;3.7084179;.66876227;1.7167619;3.2205176;.76485896;4.3413086;2.3768311;1.148301;1.7931613;-.24455982;3.4570184;2.4054573;4.0332527;2.3486176;1.5976256;-1.0131439;4.4293928;3.0979023;1.5576493;-.44951287;.53158361;2.7985287;1.5729313;2.3420439;1.2393117;3.7909074;.81411612;-1.0889539;3.2355101;1.354983;66.21077 +-.084704392;-.23157442;-.88116628;2.4998822;.43058431;.27238569;1.9219754;-.60040045;.6980679;-.69006836;.41565427;1.1219275;-.63091123;-1.4546821;-.36858693;.80515975;.40661466;-1.2780958;.23331659;-.02364229;-.12339888;.12572648;-.55960798;-.82998043;.11062889;.28031075;-.31837052;.89136899;-.25962907;3.0238986;.36443439;-.63172531;.65751642;-1.2363844;-.15048921;.56583941;-.88743281;-.35935718;-.75991797;-.67737156;-1.0605401;.58121336;1.3471134;.34592217;.9454698;1.710517;-.51653415;3.0394912;.1895595;.62797034;2.233928;3.482785;.74369758;2.7001333;2.2298589;5.392889;2.7736921;3.9150128;6.1990085;1.3656799;.86355823;3.2325306;1.6349059;4.2595267;-1.9601978;1.7268177;-.68106443;2.3777592;4.5994;3.1874514;3.3167286;1.716136;1.8417126;3.6110561;.68362457;-.28890863;.92553645;1.959271;4.0541482;-1.7813722;2.0182679;.34658229;5.4895892;.98430926;3.0484028;-.4965218;2.4323502;1.87652;.90664691;2.2662389;-.11625788;3.0564089;2.098037;.64565873;2.0670192;2.1701732;.43923235;.86044675;1.0501537;.5723443;.57973737;-.22404045;-2.3180621;1.5766461;-.063611984;-1.9828584;1.556668;.37948745;.02423032;-2.0865302;-.083520256;.6548003;-.11067516;-2.5474281;-1.3245146;1.194942;.81784427;1.2473295;.44725764;2.5836089;-1.0337281;2.5721843;.12240615;-2.1354711;.80887759;1.9080559;-.12940091;1.8844914;-.90743941;2.0460956;.53024095;-1.5496782;.49666035;-.30127981;1.0404332;.10143749;-.40387869;-1.0142413;-2.2614923;-.48090377;-.037068453;1.1935219;1.4068745;1.7212636;-1.3742288;1.1003051;-1.8824669;2.362303;.31771943;-.1206812;-.19439729;2.2715924;-.32243648;2.2086964;1.2416908;1.0735996;4.7993059;3.4099162;4.7192016;2.4980028;1.4137472;1.0307766;2.7035029;3.001646;.4036375;.45852846;-.56166464;3.898782;3.5783534;1.7200035;2.7626715;2.3036611;2.0372488;.56118155;.9875921;.40563086;.77075636;1.6075962;3.8612158;-3.0210471;.87151742;-.23258612;2.9859955;.27276966;3.1107447;-.93048584;2.7128847;.049782127;-1.4097863;.21018773;-1.0936402;4.8667397;1.9340003;.4348208;3.0606251;3.0272422;-.14657815;-.82311928;.51648366;.37571517;55.32246 +.92813081;-1.0377649;.24454041;-.8003571;1.1088033;.21536392;.43397257;-.34753868;.22396173;.43785137;-.51588154;1.0418504;-.4751744;.71284974;.24262008;.0098485043;.70247692;.32522741;.68968397;1.3640153;-.54109007;.38239536;-.56295699;-.3048946;.89064342;-1.0209659;.98740691;.65681386;-.085906945;1.2626667;.96065515;-2.0281262;-.39018899;.72425771;-2.3222475;.49446183;-1.279421;.22406486;.15987699;2.1564786;-.27371186;-2.1511574;-.97048807;2.0668817;-.61733276;-.27102414;-.6518417;-1.9161918;-.34461376;-.22844397;6.8620968;3.1830771;2.3469727;2.7655842;4.3046451;5.9850845;1.6245029;.70744401;1.5498738;3.6583779;1.8701136;1.3577465;1.8600281;.36147785;2.7185507;.40034753;1.6356959;-1.0013653;-1.2880825;1.8775603;2.7305264;-.2392863;1.5853548;.3987681;1.4781922;1.7740597;5.5977879;2.5140989;3.4540699;-2.626508;1.570565;1.6104733;2.9988911;2.3955765;4.0137873;-.29190052;.5137468;1.0963608;4.3039503;-.73066181;3.6820838;2.7950695;-1.3917308;-1.3841401;1.0748016;2.4516783;3.5437286;2.3063776;-1.1821041;2.693254;2.0630512;1.62933;1.4248685;.38118172;2.5172665;.0050712284;.45416012;-1.6776793;1.7396656;.78978693;-1.1001296;.2182408;-1.5849057;1.6593193;.066499941;-.074409015;1.5230757;1.142522;.093919747;.5308311;-.41850528;-.2874718;.13342553;-1.3575866;.8500706;.53386259;1.8480197;.59818041;-.89287657;-.010674703;.75225395;-1.3704038;-.15681523;.5145672;-2.6722462;.63106656;.81866866;-.052598789;-1.164342;-.0057098474;.86991793;.32558894;.4498443;1.6298488;2.3213658;.61301464;-2.2505372;-.56109273;.85868758;1.3768128;4.7683516;3.9074824;.71976405;.97137105;2.6859181;4.8454247;1.5356278;.31965563;.0018734103;3.6555223;1.0641216;.70922971;-.42556912;-.92735773;1.940693;-.3858546;1.3173862;-1.1844314;-2.5073619;.31282568;1.3867155;-1.0340869;.31976524;.34344959;1.1702164;-.010651901;3.8315742;2.3281252;3.7749269;-1.1759354;1.2417932;.64535135;1.950114;2.7417905;.97832096;-.39666134;-.019682985;1.5263784;2.1909981;-2.3005953;.72765565;3.0939548;-2.1351249;-.75054401;1.0937388;-.33123571;2.2640038;.69823325;-.046366889;1.2572479;51.383415 +1.0692267;-1.055496;.6496439;1.0859934;-1.7932619;.1632212;-.17188032;-.34631529;1.4074539;.3684434;.013807412;-1.9352087;-.39931497;-.56736916;-1.7542076;-1.8798813;.57808387;-.57178855;-.88354832;.62731141;1.8386343;-.38429517;-.75451303;1.385867;-.21193179;-1.0898664;-.36973557;-2.0974834;-.90935302;.038712926;-1.6944112;-.91336364;-1.4634179;.90704465;-2.3563731;1.1737415;-.13930474;.54319698;-.27013656;.14224289;.5739615;.76494515;1.0321013;-.66872513;1.2109905;-1.349874;.091489509;-.53928065;-.51235622;-.21468715;2.2731831;1.0092441;3.3493502;1.7211218;.85561341;5.9228759;5.1863623;.77565521;1.1715237;2.992172;3.0255342;1.3291496;2.2546175;2.8576066;4.1711769;2.840421;.76468378;6.483223;4.6417069;5.1554976;2.484349;-.54297161;.42654407;1.4945008;1.7861307;5.7279654;1.9279761;4.0876603;-.90192747;2.1234953;1.8344549;3.9198811;5.1592135;3.8923824;2.0169992;1.9463452;2.7460887;1.7581412;3.6277385;1.1325572;2.106523;.51774931;3.2180521;2.9349294;-.088040553;1.2997489;3.4219112;.97517633;-.55639112;-.043256592;2.2267945;-1.7695688;1.1159549;-.083902135;-1.0347356;.96596205;-.068147838;-.18794705;1.1345087;-.099995911;.46376628;-3.8036163;-.40615347;-.8226561;-.68857098;-1.5709821;1.2603638;.013675981;.09231215;1.0761055;.64751315;-.63898599;-.29479143;2.3652654;2.1211121;-.84862185;-1.7735153;-1.6516165;-1.7709706;-.14232315;-1.6306479;-.19843176;-1.9606981;-.39421025;-.58477449;1.5965118;.55730355;.72797704;-.84655452;2.3526828;.56615788;.33161417;1.3260139;-.19498271;2.139528;.12621175;-.75681221;-.3500694;-.041800052;-.20393011;2.1054363;.87495673;1.8352729;2.4582095;1.0516137;3.4322515;2.3210266;.85092735;3.5012224;2.846642;4.4789906;1.6804737;1.1362851;1.4573742;3.7059934;1.0692003;.71961659;4.9532108;.90533179;3.6652174;3.1679852;-1.67237;-.24839565;1.7086109;3.0059404;3.0633962;.11339104;3.1953404;-2.4739323;1.3156719;-.03486824;3.363693;4.031702;2.7576859;1.1587958;2.473968;3.1845376;.069837749;2.6488304;1.2331787;2.1267631;1.4882379;3.1242597;1.7142923;-.53696835;.93794709;3.8784699;2.1144655;-.93732589;1.8263725;50.444988 +1.3421996;-.89331007;.53248441;-.72836977;-3.1612368;-.92624295;-.5711866;.11210816;2.2775409;.53008616;.24567854;-.63192487;.25715876;1.8379726;1.6434963;-.17564209;-.86074489;.0090906862;2.0605023;-1.3431093;1.321138;-1.2478492;-2.2222321;.49362278;.048591565;1.3677397;.93991899;1.1497507;-1.478931;-.23141056;-.94063455;1.4424171;.16881503;-.6225484;-1.1928713;.22248402;-1.6717041;-1.0345917;1.03658;1.0563933;-.46111065;-.32722113;-.47640607;.66717488;-.59291035;-.3131884;.99035591;2.5521741;1.2183695;2.0933793;4.1594324;2.5340769;1.303149;2.64516;1.1790084;-.83674443;2.8773327;.87883145;2.1854761;3.3689415;-.019323271;6.0975318;-1.6298813;1.726046;.1402379;1.5291748;4.1606283;3.6978607;3.1269119;-1.4657831;4.6599517;-1.3845463;.078953639;4.1518974;.71814823;5.0443807;4.4689536;2.5846579;3.41817;2.4178185;-1.2074002;-2.1329732;1.0554056;1.2291328;2.9880555;.32607344;4.7014866;4.9257813;.95501602;3.801728;1.2733825;3.5844831;2.6471226;3.2106822;2.6276739;2.5916047;.92463446;5.3856344;1.571903;6.2808328;-.59398007;-.082649902;.51722783;-.64821142;-2.4814291;-3.1819503;-.33694199;.38837251;2.7319882;-.11111528;-.13408707;-1.9678615;-.36411583;.82902771;.54370129;-.50237375;-.085086823;.71573639;1.9095973;.10469367;1.2847441;-1.415134;-2.5062327;-.36458766;-1.1884135;3.3171492;2.1511984;.65928382;-1.030998;-.31524763;-.76784724;.66522431;-2.6935706;.44981536;.20740665;1.6585621;.097008571;-.02448836;-1.6414306;.083183512;.66255754;-.65299129;-.41765845;-.52400488;-.68650568;-.069477089;1.5899082;2.0864186;.64283848;2.8960032;3.7981951;2.3578022;.42728642;2.3546586;1.2120689;-1.7811098;1.8785661;.58497733;1.9090389;1.9311837;-1.146114;5.6392784;-.26144964;1.9742141;-.097570017;-.14739972;2.8125463;.99905682;2.0304513;-.38487947;3.3820608;-1.3766869;.6558376;4.144258;-.55331975;2.8965957;3.8388944;1.550972;4.4515061;.84845495;-1.069091;-.27744544;1.6095082;-.3061589;3.0265055;-.10883186;3.3291149;2.7282901;1.1500072;3.1579649;1.2328429;3.9298069;.31387132;2.1981249;1.4276459;.59985697;2.0077748;3.7902491;-.22930449;2.3185267;52.831314 +-2.3730965;.07505127;-1.5200547;-.80557024;-3.2224908;-1.1125771;.062543355;2.9202843;.79584789;.52704901;.33559901;1.3145405;-.87520647;-.10862658;1.1249129;-.95793754;.87637788;-.32984626;-2.613646;-1.6407098;.71753103;-.47995833;-1.3806363;.55267537;-.27951878;.71758169;.20964517;.35751855;1.0500292;-1.2943096;-.88770103;-.22460473;-1.4323155;-2.6225243;-.50097364;-.40379965;.6410777;.99429822;-.87453032;.49593174;-.5987218;-1.2142537;1.0770251;.20605139;-.084385537;.59545219;-.82736957;-.3705768;.37688226;.85105908;5.0434318;2.315006;2.0403087;3.6735718;2.8399775;-1.516227;4.4731507;3.4117763;3.267236;.59771913;2.0861278;2.6309843;.81853282;2.7008302;1.6850538;3.3441472;3.8088391;3.5195808;3.3086345;.2496447;4.3340712;2.1423838;3.0388105;3.7035177;-1.9364864;2.0446517;2.9337394;4.077209;4.111052;-1.4005191;2.3623459;3.2717113;.46528652;2.40921;2.072979;1.508642;3.5463321;1.2747829;-.72003031;3.6496983;2.9222412;5.7787704;.37254694;.88828403;1.4304396;.70469195;3.2276669;.48615003;.93417823;.12993181;-2.1585865;2.1896942;.60795969;-1.8868942;-1.4323952;-.47506556;-2.7061906;1.3240792;-1.2522703;.26475605;.80296052;.49582055;-1.4160596;-.54721874;.73609585;-.67377883;.14540575;-1.1503401;-1.7884208;-2.430196;1.0273452;.47021133;-.67290962;.0034514766;1.6021811;-.19165093;-.92744905;.45135212;1.532241;-1.6404554;-.85171491;.99047172;.4335303;-1.32724;-1.0159186;-.5434984;.87709886;1.1817714;-1.9464911;2.3029311;-.091389574;-1.6340292;2.1022542;.55859196;-.020079285;.013733045;-1.4548916;-1.1407821;-.46438396;.27574936;4.3722572;2.1948462;1.1936042;2.7050965;2.0332685;-.61464345;3.565412;3.022119;2.835216;.65839094;3.3994029;2.0743124;.32670477;3.6470613;1.8129269;5.3335981;.21414483;1.8417269;1.0294464;1.9660425;3.4084473;3.2833378;3.7723672;5.6750197;-1.3518593;1.6176989;2.2857802;2.2225111;1.5765531;-.68942994;2.3877423;2.7558169;-.045717187;2.4768717;1.4853127;.53672689;2.5660048;.75036752;.60530752;2.0260658;1.2689447;2.9507205;.20680685;.16176485;-.18347946;1.0587612;2.3139224;1.2173755;.47704363;.7046774;44.755344 +.40490729;.77473819;-.24256237;-.37266627;1.4115398;-1.2788395;-.6805985;2.6666129;1.2695349;-1.444558;.060250722;-.28367767;.68570679;2.3868966;-1.1520199;-.42598149;-.7373001;1.1728976;1.2855183;.019203059;.21093705;-.065636523;.14083967;.84899491;-.39175367;.168016;-1.1194428;-.48170894;2.5488243;.46202272;-.87175548;-1.2996258;-1.3748051;1.2173882;2.3494306;.23541202;-.77782714;-.63869935;1.0407946;-.20685884;-1.397094;.88574702;.029045282;-.14890201;-.10001986;-.82701039;-.93348348;.32057646;-.10365406;1.4807779;5.0014873;1.2992103;1.1185809;.49178302;.28905621;.84913701;.8707301;-.48491815;1.9026773;-.021904377;.57801932;-.8254509;2.1316614;2.3501503;1.0630612;3.907198;3.3875885;1.310379;2.6542521;2.1073103;3.4146421;1.9547834;-1.2571727;1.3655767;-2.1710911;2.9817359;-.088029161;1.1244007;-.44316059;-.0048156376;-1.7674857;3.3761744;-1.3167961;2.893868;3.1147337;1.6485252;2.4605381;4.9066586;.92769295;6.6358843;-.92569774;.55710232;-1.9331777;4.0148044;-.06538029;4.564693;3.5410361;5.0463295;2.0870991;1.1871216;-.790591;-.011784735;.61715823;-2.1169367;2.0996683;.262485;-.90098107;1.7550658;-.33688995;-.45685583;-1.9710901;.24492966;1.5173079;1.8964413;.69702667;-.56122977;.94760442;1.2026362;1.5590743;-.92526215;1.7966831;.45638692;-.42952919;-2.3358746;.030579457;.034155838;.18395442;.94457674;.88763463;.66290355;-1.1134429;-1.3090444;-1.5434322;-1.2873862;2.7761028;-1.5497539;1.3272184;1.1551799;1.9468967;-1.7585484;-2.396064;1.4453766;1.2479606;1.3215036;.07953155;-.69198543;-1.8373015;.3109048;.17132375;-1.4343747;4.5226536;.8135252;3.1256206;-.056504019;-.12534039;-.30940858;.17327388;1.2498572;.23213445;-.28262851;.53671217;-.61934608;2.3146873;2.4440088;1.1542237;2.3631151;3.2664492;2.4763405;1.2404377;1.9909601;2.5526299;2.9549143;-.84863585;1.3531338;-1.035915;1.007018;-1.360769;-1.7193685;.16607152;.030305102;-.8254928;3.366818;-.95178968;2.3279946;4.1865845;1.3741211;.043872565;3.1803129;1.2595659;6.1983285;-2.5435421;.077337421;.13414301;1.815595;-.65597022;2.1685295;3.7843177;5.0470996;2.1282461;.86120713;43.746181 +.8915897;.94637936;-1.0357176;1.5931091;1.2929307;-1.7448428;-.098078236;.59211564;-1.3057164;.17381403;-.10304281;1.5611199;-1.6433837;-2.0571554;-1.2717916;1.4386711;-1.4114318;.99660009;.97882581;-.81390291;1.6568719;-1.0275085;1.2481939;-.7484237;.93816227;-1.7474504;-.12645797;2.4794962;.26773739;2.029237;.12939495;1.567021;-1.5710233;-.97294652;-1.084825;-.17923512;-.63908827;.98976851;.64440942;1.3729998;-.31481421;-.8254146;-1.5221472;1.8405614;.25915328;-.7367512;.7793448;-1.4429163;-.62727553;.5046159;1.2010502;.79562539;3.2107551;3.6688621;.18900463;-.22523762;1.1124103;2.0463638;2.6439476;2.9738491;3.325423;3.1173182;4.1653099;3.1116853;-1.1677538;.18549749;.78204447;8.6641665;.90302706;-1.0768518;.57808012;5.4413714;-1.3728209;4.2942209;3.2031426;5.6512842;2.1840837;1.3035234;4.841712;5.5025759;1.5471268;2.1464434;2.4119515;-.98408306;.90110612;4.1841722;.49985999;-.94999218;1.1393117;.63249815;.78228652;.98888099;.80053616;4.5458231;1.9731354;2.5076742;3.6950274;3.883462;1.9794838;.7616716;1.1042739;1.4546895;-.11710731;1.0937634;1.6793727;-.011835498;-.12229137;-.36972582;-2.1999614;1.1652986;-.73735023;1.8763607;-.1305784;-.67697722;-.49256214;.53604853;-1.5129281;.5221678;-.6773631;-.95989215;1.8852621;-1.2782992;.93928349;-1.8312525;.32536399;-1.2821554;-.29244024;.61999351;-.20535111;-.58337176;-2.0909252;.051449757;-.3266885;-1.8666557;-1.3184595;-1.0849333;-1.8670619;1.1482991;.57890922;-.0031018557;.90906233;-2.4759154;-.61805534;1.8053992;2.1317158;1.2343812;.20808777;.20043311;-1.7591943;-1.3322552;1.3344204;1.8879229;3.4331932;2.4938495;1.5718076;-.13658457;-1.2434381;2.9606979;1.2436916;2.9551706;1.6956185;1.9587408;1.256202;2.3887932;-.43221387;1.2177842;1.399833;7.2273569;.76575124;-.84606564;1.0157076;3.8700986;-.54487747;2.8003962;3.6962342;5.3461618;-.59791344;2.2985079;3.1672988;3.3838553;.92037702;1.4940671;.49320251;-1.7101357;1.124301;2.8664982;-.82185078;.4642196;-.11377934;-1.6313341;1.3126661;-.43055898;1.7026445;3.1504481;3.7163775;1.7759619;1.8938365;3.0748737;1.8148355;.14827394;56.533234 +-.24844903;.46661735;-.78669834;-.22611871;.50919765;-.39633527;.6058749;-.1977362;2.94664;.03119198;-.62447929;1.1894041;-.85361552;.51688123;-.61679626;-.94746733;.060875595;-.40681607;-.42130315;-.86430109;.96949494;-.39392826;.76296741;1.8545003;.02743613;.40376449;.39852691;.3354471;-.61692011;.45212799;.79447657;1.0392891;-.35621735;1.5377476;.15986042;-1.2232288;-1.1387857;1.0308177;.78973669;1.433514;-.37986195;.77391845;-.21667241;1.639823;-.5223462;1.4355074;-.6561718;-.26418668;-1.2474356;-.33371478;1.9859322;2.0365992;.060639709;1.6937311;.81923342;-1.0148097;4.5001125;-3.4029477;2.5141785;.8735016;6.020895;4.6354423;7.8537769;2.5942786;-1.71067;1.0153781;-.92624927;-.079105288;2.4644554;1.0305665;2.4215846;4.1738477;2.9324782;2.7081962;5.2149363;4.1397529;4.3486838;.89841026;.19118428;2.1787076;1.0482094;1.6307461;3.8959846;.12135661;1.8515766;1.0536981;1.2328773;.43932876;2.4057391;.67584121;2.0984814;-2.8299818;1.3950638;5.4682317;-.18250981;6.9781237;3.1574879;1.1324699;1.5837836;-.88972569;-.70323461;-.26466757;1.8367997;-2.4610806;1.4679248;.11834581;2.4883609;1.4033874;2.7444687;.53783542;.381008;-.14404193;.91231567;1.0079124;.015560988;-1.5075797;-.87209761;-.50263095;-.48505968;-2.3067849;2.9197953;.58063936;-.047135022;.9799841;-1.1408025;1.424866;-.74449515;.11639861;-1.8652977;-.045314979;2.5323007;2.3484004;-.96885347;1.7876923;-.73938012;-1.9565908;.13658394;.37841067;1.7041711;-.0083018355;-.94913876;1.8025522;-.87975639;1.9555011;-1.4357437;2.0758753;-1.6222756;-.66814804;-.52726042;.93144733;1.2533458;1.6261493;.059140332;1.4691718;-.76155978;-.12636699;2.6738827;-1.9028134;2.9794528;-.028715858;5.0792003;3.7456846;5.3241124;3.9613795;-1.1169975;1.2581602;-1.4458292;.31211385;2.1827083;.33099669;2.4900248;4.345531;2.7080517;.70063561;3.0827782;2.5297244;1.5674939;1.2076899;-.76002741;2.1698928;-1.1546555;.76894903;1.9405313;.61227423;1.0958617;1.1818856;.70680404;-.9299196;.74508876;-.1136296;.54688978;.33680597;1.9746249;3.7068717;-.065199941;4.8418655;.69854635;1.3723309;.4234412;-.45237145;44.351498 +1.5707896;-.25523347;-1.0120354;1.8293737;-.60780829;.89868158;.59192014;-1.7629349;.78008622;-.030007137;.10544226;-.31970879;.41981646;-.12950689;.8171764;.34612483;1.3031908;.060424682;2.224668;-1.0584296;.12427752;.22664298;1.6181234;-1.4279422;-.23532043;-.38606262;.31417003;-.59333253;-.95872599;.29079729;-1.1133021;-1.8827499;-1.4474806;.094106309;-.21739465;-.44453913;.36741436;.40764096;.95323938;.69666809;.31772128;.56787819;-.0060904743;-.40313548;-.70086586;-1.4433194;1.4938105;-.34024617;.80678666;.35153872;1.3294088;.53862184;2.3183532;1.8657209;-.49451703;.88678336;3.7638147;6.2186632;2.5192924;2.6131918;5.396863;-1.6486502;2.1924126;2.1621413;-1.7980142;5.0991588;2.183203;-1.7469586;1.9354507;-.8725096;3.6679564;.32876682;.85835016;-.043193232;2.9033971;.036528178;.53960723;4.1784019;1.4604691;.76548505;.35936925;4.2943501;3.1164963;3.6707335;3.9892056;5.0592494;3.0073519;.82411355;1.0559849;3.8821561;4.9766746;4.6056938;2.6801233;1.0660644;3.7843754;5.778873;-.26792353;.97116083;1.09025;-1.0378839;.41532835;-1.2579533;-2.2137413;.86223811;.66525966;.31204525;.38676038;-2.4645238;.3424871;-.74246114;.15305763;-1.3285849;1.3417881;1.0074054;-.15623337;.28132924;.43567887;2.2970533;.89174682;-.69312948;.56986266;.49130726;2.1068139;-1.273311;1.5005915;.24782039;.24943955;-1.9898738;.18147399;.15770257;-.7575599;-.36665994;-1.9436588;.83806682;1.1873398;-.95083618;-.69452745;.7931115;.76263106;-1.5955927;.76379204;-1.4933827;-.29880098;-.48560995;-.84958112;.022251638;1.7616664;.28182504;2.0659437;.030522056;1.8585076;1.3326136;2.4190698;1.8089271;2.035223;.45828289;2.9787343;3.4102283;1.9868085;.85757804;5.2529287;-1.0771042;2.6801755;1.6507835;-3.6275065;2.5901232;2.0715632;-1.7209309;3.0466595;-.57592648;3.6615274;-1.2424114;.56191552;.17032509;.9265151;1.1275864;-.77625203;1.4758303;2.089273;1.8093107;.97605002;3.307034;1.0646908;2.5153151;3.7077374;2.7953148;1.292318;-.010550396;.1500248;5.8147607;2.3060646;3.3800709;2.1942859;-.32060561;2.2266657;3.4932139;-.70910269;.092628717;1.2543265;-1.4293969;46.02787 +.61452633;-.29445335;.2513184;-.76120454;-.54169297;.26471466;-.5339725;.041306283;-.46419033;.13356882;-1.2973669;-1.9390421;.22491883;1.2647814;-.89859676;1.5063647;-.32281056;-.76868129;.99473768;.26774871;.36835212;.91714287;.46457893;2.0718749;2.1490369;.71461111;-.07126081;.71002638;-.1560193;-.60216534;2.2507169;.69834799;.4491702;.64816207;1.2290138;-.16955547;1.1557155;2.2020776;.79837966;.24469239;-3.2565591;.99468029;-.93546057;-.96929413;.51262689;1.0545425;2.1221919;-1.099854;.22273906;.52203792;1.5412518;.90349978;.76288188;2.8370783;.25879565;3.2720106;.91282624;1.7828877;-2.1013;2.1810477;1.9319446;-1.0066578;-.79592234;.81544548;2.0098772;5.1929951;4.0986757;-.8995834;.8344273;2.058511;1.943033;3.187988;2.5469496;.015357495;-.55044764;2.5115254;3.9885886;3.6733162;.62755054;5.7527409;-1.3198228;1.627323;3.1036162;3.9344668;2.0729039;-1.8516445;3.3170969;3.0561526;-.10628154;-2.1494584;1.5034342;1.8967348;2.2347884;3.3108389;.065001845;2.9043376;3.5304062;5.1190486;-1.8233199;4.0681825;-.038028032;-.79047024;-.50399709;-.66569173;.48539183;1.2947812;-1.1700218;.87137353;-1.9381647;-.39990398;-1.2641376;-2.9239471;1.0235467;-.2098361;-.51729017;1.00238;-.9086023;-.31022859;2.2104599;-.35914698;-.87889391;.9123804;.78920072;1.9087123;2.2167244;.59744322;-.02035087;1.4203711;.82909817;.040216025;2.2650011;-.038374674;-.1936564;-.14210582;.84281009;-.52125132;-.040859874;1.7201645;-.15035126;.58106643;-2.8077734;2.7728889;-.067878947;.21714324;.59398752;.76359606;2.9037709;-3.4673262;.74312741;.72868776;.17359188;1.9834846;1.5148082;2.5514464;1.8583806;3.150701;1.3016001;-.19280162;-2.93308;1.1769059;1.1295557;.048586354;-.22885792;-.72818291;1.8452963;2.8751931;3.1382794;-.85580635;.40535861;-.64598763;2.1067934;3.0183744;3.5427496;-1.2408506;.52599221;.23651102;2.4283571;2.5635166;-.18870306;4.66113;-2.1480305;1.9577465;1.8973083;3.9954093;1.2793552;-2.9835224;3.7326281;1.5503409;-1.8520617;-3.3953702;1.1380032;-.59716678;2.2064493;2.086828;.24409457;2.1694341;2.3777003;5.9377632;-1.5596112;2.1745937;47.198006 +-1.1819037;.64739382;-.43914598;-.65434629;.9558596;-1.632303;.52189094;-1.538399;.89297664;.19380963;.023664592;2.0254624;-.57701594;-1.7913866;.32892734;-1.2265214;1.1040508;-2.3080099;1.4991165;-.14286764;.85771638;-.13317855;.41073668;.25929418;.58301508;-.10668934;-1.2655358;-.23456278;1.0500196;.82883811;-1.4266692;-.1834309;.30402753;-.73825908;.42689186;.13566439;-.24424709;.016454313;1.2505691;.20029163;-.73410547;1.3613667;-.26086158;-.25632721;-1.4710773;-1.640696;-.61217809;1.0825115;-.57014966;2.5145812;5.7572112;3.264395;3.3902116;.18097657;.44145221;4.2171202;.067494243;4.8339;-.68365502;4.9699249;.70099187;2.3729692;3.9225066;.72855222;.36270532;1.6766089;-.13454656;4.1644487;4.0524654;1.3437696;-1.4727355;4.5555744;-1.3199044;1.0850437;4.8727622;1.1419998;2.2589319;.55088401;1.2484714;.21097738;.72836977;5.3335123;5.4622569;-.81428742;-.20253509;3.0406106;3.9220991;3.5844638;3.5528932;.83624041;-.099802859;3.2188401;-1.3764124;2.9724097;.35041878;-.10671113;5.8058987;.65896809;3.678355;-.75681287;.49528906;-.33441871;-1.4269187;-1.7934631;.42128012;-.15995511;-1.4423269;-1.4097308;.28204471;2.04545;-.68721551;.60237592;-.93935412;-1.4321388;-1.8636591;-.26187286;.82435161;-1.1392391;1.8061825;-.77663392;.57228589;-1.4639095;.68172401;.73451412;.80796188;.59410787;-1.6084442;.085333616;.97158027;-.93563211;1.6119053;1.2555324;-.4976486;-1.4314409;.10734998;2.484076;-1.5876858;.62392437;.37264955;-.19656876;-2.9292898;1.8765794;-.077716991;-.28766012;1.8521993;-.29132631;.67836452;-.83959037;-1.2239193;-.25169721;4.0451951;2.628727;3.7796152;.022614347;1.0233748;3.7386365;.27399698;3.4282157;-.098325819;2.782197;1.0591575;.54881322;3.5568874;1.0631214;2.4733524;.19900517;.30532241;3.1117446;3.3260846;3.0426693;-.4570393;2.9814003;-.46762872;.35630986;2.7453418;.53957999;1.5742476;.74670458;2.0753903;.66421366;1.2796584;3.5450189;4.3954935;-.27003086;.96953881;1.8564967;2.3157208;2.1855166;2.2738478;.10395335;-.38740289;1.9331247;-.021978376;2.0033352;.31152698;-.58342415;4.6145115;2.0699081;.80460024;.6321891;46.507759 +.58842516;-.74823856;.87774467;-1.2754453;.84538227;.82218963;-.59977865;-1.2866998;-.0791426;-.072885163;-.69480968;.84458882;-.21480821;-1.0094134;2.2154903;-1.0598872;.035474636;1.287989;.60005641;-.35815984;-.73779547;-1.2909431;.91347426;1.2138339;.24197793;-.086195029;-.023248823;1.4250457;-.11623827;-.25113082;-.22407562;.512986;-.78444284;.86180061;-1.2381926;.48399675;.35471717;1.4629073;-1.1214843;-.38530123;-.76986897;-.28521577;-.99764514;-.52468395;.37039256;-.78454077;-.046478774;.014608188;1.1269073;-.6172626;3.3359318;5.5733876;-.43878755;2.7198224;3.1234441;3.3463879;1.3679519;3.1203153;1.1223477;-1.3289706;3.0131848;-1.545283;.91294855;2.2616346;-2.1062362;2.3916047;.22795688;.38239712;2.261492;1.2879477;2.1543748;4.428865;4.0147829;3.1829689;4.5478363;3.8246796;4.2371764;.26744413;-1.8862982;-.41343579;2.3717947;4.1282592;1.5162352;-1.2876564;-.11422566;1.0121679;2.4816995;.70315373;-1.9477935;7.1458654;4.2529292;-1.1427774;.048821829;.94246399;2.0186179;1.5042048;4.3690357;4.23315;4.2762904;2.5444393;-.19476332;.79854083;2.8819511;-.30558574;-1.2813529;-.21224006;.20709553;-.5563668;1.220144;-.55959231;.41469377;-1.6788234;-.42500547;-.08844351;.86534786;1.5961851;.58273512;.67328417;-.19647881;1.1092349;-1.4834238;.6286118;.11167458;1.279091;.81993842;.092976347;.40424031;.086719692;-.36017135;-.59726965;.23976815;.058386974;.35618836;-.5740124;-1.1967751;-.64600253;.49344808;1.576296;-.031201452;.56395841;-2.2167797;-.13847508;.30547032;-.38420153;.4781284;-.32457712;.88904738;-.41520694;-.26876405;-.39550337;.66588771;2.9135053;1.299536;2.8782337;2.6766517;2.5906827;1.1528161;2.2091525;2.215044;1.6862991;2.1402979;-.73007971;.21686649;1.7986054;-.8835749;.1924447;-1.1781924;-.84978664;1.7311119;.50215262;1.0093118;3.9335046;2.3939652;2.3221779;3.4532709;.58844715;2.6092944;.14628921;-.42858541;.059495367;3.8657677;4.6736517;.44115698;-1.3313773;-.23345748;.74446625;2.0044155;.4620958;-2.3191724;4.2797732;4.1929626;.82316053;-.40185243;.98220813;1.8914406;2.5394518;6.4391732;2.7929516;3.8881321;2.4604146;45.507961 +.46701536;-.9119761;1.3893545;-.71083355;-.18838958;.9796443;-.60881835;-1.4327142;.87949413;.22800002;-.6909954;.53131908;.3047865;-.59778416;-.57597512;.67350888;1.7155391;.48058516;-.73597491;.27843288;.062705748;.10798175;.81164545;.37292665;1.7826097;1.4796818;1.0142235;.57976592;-.89669436;-.034928884;1.7468699;.41327229;.91878712;2.3767984;-2.4358153;.41619146;-1.5143305;2.4627483;.88402289;.35752362;-1.6419854;.068758674;-.65550506;.29070759;.94972426;-.34676746;-.3566314;1.3315006;-1.1907063;-.85977852;1.4409723;.73157346;6.1201429;1.709245;-1.0051974;4.3128724;1.9625771;2.2728736;2.3079233;3.2478244;4.8076024;1.2452059;2.6679823;3.3755784;-1.9328172;3.177815;4.0394402;.78853607;3.1964788;3.2883034;4.4642124;1.0305276;1.7059821;3.8473954;.26002479;3.4569123;2.3318398;6.2152019;.34482756;2.9982176;3.3810313;1.1462401;-.8160935;1.5262743;2.651006;-.67514014;1.7969828;2.264905;4.7277236;4.6140356;6.0947967;4.0859351;1.1157886;3.2518287;2.5540192;3.8248491;.91951317;7.1995049;4.3366032;3.2867634;-2.163198;.50957894;1.643895;-.2908802;1.4042814;1.7201273;-.61497712;-.55034953;-.028956486;-1.0575581;-1.1784464;-.14653641;.16649322;-.63015562;-.42682031;.018645614;1.1854894;1.4927342;-.32783106;-1.0276768;-1.7826743;-.8494184;.16805938;-.21046232;1.8889914;.34282538;1.0977681;-.7628929;-1.4418864;-1.7029129;2.3653636;-.21435009;-.70704311;2.6986461;-1.547317;1.6399082;-.83330441;1.8721652;.32116431;.32480422;-1.2631133;1.3775443;.47338301;.23526415;.80779243;-.32576835;.0057152086;-1.2575113;-2.7261648;-2.0279121;2.1051795;1.9895067;5.204855;.18497959;-.043598533;3.8844085;1.526903;1.6611985;3.3651495;2.5498481;4.1198573;1.8046628;1.2915007;3.1211722;-.70065415;2.2740188;1.284889;.036039293;3.6096814;1.4936094;2.8215454;.098181002;.72583091;1.2622434;.84911197;.71414626;1.8842584;5.428844;.035488918;3.1452045;2.6916158;.57177013;-2.6065066;.49779478;1.9642196;-2.0851293;2.1845291;.3956711;2.261714;3.9816496;2.5955889;2.4059334;-.18382409;4.3754392;1.7321187;3.0061719;1.002511;4.8371677;3.7305756;2.6917226;72.595909 +2.9182618;-.19124182;.1043539;.16009264;-.90638798;-.052371133;1.5546162;-.048837692;-.30677742;-1.0713949;.18476792;-.59581178;-1.2303427;1.5274949;-.4183915;-.866166;-.1820702;.63523829;.25479817;.591865;.20490095;-.6724357;-.16196702;-.45060062;.035576537;.74622291;-.14564064;-1.9616979;-1.7329501;-.59910804;-.31714064;.90407854;-.36378428;1.4113244;.29178196;.90648514;.26477751;.70592898;.38999844;-.018429667;-.4074007;.12722889;.46672326;-1.3557928;-.88744301;.18322118;-.15708956;.12565576;-.49432695;-.89407277;3.3913126;3.0213313;.64577729;2.5038443;.70757776;2.4825189;-3.2176187;-.78917521;-.61659247;3.7629294;4.4939704;.49678671;1.5194067;1.6967176;5.7239642;.52989769;4.245441;1.2816443;3.1881673;2.8498785;2.4283185;1.2520465;-2.4541678;2.7145956;4.2199864;2.5116782;1.0682603;3.4613056;.73263443;1.9495893;2.112251;4.2738924;-1.3011847;2.0454228;.59128922;2.7915852;2.4410512;.42181745;-3.1929684;-.30357444;3.2659237;.72841436;6.1415362;3.4245899;2.7768223;2.5342698;.61821526;4.8713713;1.4303263;-.20814359;2.0570385;1.2196417;-.29264772;-1.2264267;-.25384825;-.30318946;.91600347;.17577626;.086942203;-.44951338;-2.0078185;.6099478;.28093401;1.6666713;-.52902669;-1.9290274;-.54725695;-.40887642;.27147725;-.66510791;.43528402;.21879038;-.03176742;-.095181458;.89387906;-.86860704;.34030986;-2.1210012;-.11491006;-.12252393;-.99227077;-.21934682;-.38946223;1.6097246;.93111521;-.17962955;.4284035;-.65791857;1.446051;-.94567746;.57332295;-.67547584;.72131211;.69089395;-.53775418;-.090905465;-.23776601;-.99338293;.50540775;-.088800058;3.208524;2.9475193;1.4137011;2.4738262;1.1973584;1.1309426;-1.6607213;-.069960788;-2.096868;3.7422445;2.9370019;.23234098;1.9291806;2.371124;4.3386164;-1.2134171;3.3029783;1.0076022;1.0466809;1.7092525;1.8835492;-.65030748;-1.4591075;3.6204133;2.4211681;1.5920327;-.017355923;1.9705166;.28807294;1.4595855;3.3119073;2.4613175;-1.3476143;2.0486126;1.6097252;.76930922;1.7414571;1.0469067;-3.0484347;-.76341206;1.4367735;.94190538;2.8735156;1.9521096;3.7509511;.91910917;.10752588;5.321754;2.0962942;.85208982;49.238968 +1.9659642;.13136643;-.3236146;-.62333339;-.21858238;.23729341;.023234598;-1.7890298;.26197252;-.076045699;2.174026;-2.5042896;-1.9277943;-.2439491;1.065039;-.048949573;-1.0479517;-.37156817;.26607189;1.4585278;-.68615091;1.3732959;-.21852079;.83444721;-.77700764;-1.1503127;-.75952929;-.3264105;-.6871593;-.50527227;.6190502;-1.6221061;-.37162209;-.51599193;-1.3425691;-.29788089;.43632495;.20993598;.97054577;.92667305;-.95659935;1.822719;1.8681751;.65258312;-.39553317;-.062974386;-.39039987;-.55719638;-.95145804;-.8686108;2.8567412;4.5503731;.1528188;4.6662521;.89299667;.99247664;-.31798047;1.4426281;4.0186582;4.3263979;2.2536767;4.5544043;3.7146673;3.9318535;2.0963435;.95686084;.81017679;-.78208971;1.7834082;1.9195871;3.6183405;2.7275198;1.4900017;3.3135967;2.8827813;-.53394604;.072291493;2.1629579;3.562356;1.4981896;1.9149567;-1.0689944;1.3521616;2.5301476;-2.1006954;2.8999827;2.8695812;1.1918138;.16955931;1.6232129;.97617388;3.4136705;1.5524321;-.81084955;2.312114;2.4805424;1.6200489;.97893053;4.6137929;1.6150537;1.9302139;-.13442656;.68673104;-.68514186;.6148209;-1.0464946;-.0078734281;.12388058;1.5570039;-.39963606;1.9562814;-1.6120088;-1.5406917;1.2039599;1.3629801;-.60060269;-1.4273489;-.57160127;1.7418239;1.557791;1.503364;.18916178;.098678835;.43320143;-.27732763;-2.9522099;.28727099;-.64059299;.26137045;-1.0264833;-1.216682;.29089752;.21712554;.5043273;-.87438977;-.65542161;1.0921317;1.8987728;.10695064;1.7638314;-.64243996;1.273147;1.2988194;1.7744321;.23697965;.47547683;1.5073446;1.0966924;.11499729;-.39184681;1.4139117;4.663631;.22999339;3.0901179;.76096135;.50418741;-1.1417798;1.3114562;2.1590703;3.8335686;2.5974095;3.7712758;1.4346421;1.0635591;1.5329902;1.1678048;.14292215;-2.1881728;1.0993857;1.9814752;2.7979944;2.4670227;1.7786678;3.3020332;2.6167541;-1.0529152;-.86191666;1.7507915;2.5585141;1.6262498;2.6561968;-1.3033108;.15688358;1.7664902;-.60340446;1.2745501;1.8148509;.1714554;1.3743203;-.6517756;1.7567579;2.3631427;1.023078;-.94028509;1.0536108;1.2080036;2.0818069;.336427;2.4806838;.32215032;44.346188 +.77312928;1.9651558;1.4288676;.29586923;.74764526;.46104878;1.4814596;-.24483758;-.65497077;-.13762787;.78376263;.23374794;.78217685;-2.1920145;-1.2583985;-.057622377;-.54933345;-.3152093;.64476788;-.33942422;-1.1058264;1.1329536;1.242002;-.026343444;.1422191;.41153908;.32914379;-.61806834;-.67066717;-.088108301;.27192387;.64457804;-1.3078107;-.31206882;1.3009169;.38860571;-1.2701122;.80613983;-.18854749;-2.1612773;-.043024492;-.65654451;-1.0391791;1.3344501;-1.1450142;-.65821034;-1.2912421;-.020279584;-.40914994;.085421011;3.0284595;4.2881861;1.0354737;5.5300369;3.1498697;-3.2436023;-.42966011;-.55592966;.8550536;.82320648;1.1664667;6.4597487;-.93355346;.015104028;1.1945643;4.0045695;1.6863803;3.7006385;1.4815253;.93316275;2.841594;6.2613645;1.338559;3.426635;.58914679;4.0361567;2.1748536;1.7708684;3.9024544;-1.5015765;-1.1255898;.37269962;5.350987;3.13327;-1.4130137;2.8364966;.79384226;.087138504;-.49497986;3.1319826;3.1636848;4.3465924;.81821048;.34056491;.38004681;1.9095571;3.0310421;-1.9500437;-1.894812;5.3804226;.1626287;1.3826673;.94553423;-1.6786131;.024525151;.84459549;1.2027736;-1.446818;1.3673798;1.649058;-.28413954;.081018955;1.2424322;-.14874205;-.10428393;-.12616898;.75040299;.26919812;-.16565184;-2.3755443;-1.4274026;-1.0262432;.34136102;1.1703258;.65773797;1.1613822;1.0752974;-.57734287;.074561089;.20464437;-.21996792;.03430682;-1.1899099;.42724371;1.6952683;.19268958;-2.6841576;2.7982943;-.13915725;-1.3821989;1.1251804;.35938996;.076297119;-1.1287839;.94400859;-.10325659;-2.0098016;.075355649;.057801858;.85189807;2.2234483;5.0715489;1.7837092;4.91082;2.5246265;-2.4657459;-1.5360692;.17983842;-.095112592;1.511362;2.0034859;2.0621722;-.94049412;-.032088123;1.168916;1.6264902;2.2934997;4.8667331;-1.9800498;.26122591;3.5156026;4.085073;.24420248;1.7206042;-.36582005;4.2231612;1.9910359;2.0485282;2.7465904;-.88192445;-.43109861;.5112704;3.6563838;1.6790824;-.82452697;2.5587528;1.1092415;-.045567457;.31944099;2.3632562;3.2918961;3.5155149;.32155347;-.22051428;-1.0010698;-.23401979;1.4390686;-1.4702011;-1.6467235;2.0968699;44.402866 +-.38991213;.008115639;.32096112;1.305859;-.22761443;-1.0632452;.65367645;1.1045668;1.1040398;.99628007;-1.727888;-.31315824;.19752392;.59108591;-.35920969;-.13333802;.45772436;-.4813036;.15867417;1.574018;.87200046;-.09519542;.50731438;-.60741514;-.73105514;.44274119;.52095544;-.53589755;-1.5173481;-.61373651;-1.0607024;.99838799;.82077789;-1.2593076;-1.571069;.73729795;.11856463;-1.0029997;1.8214457;.15747584;1.0226777;-1.5486734;-.75811642;1.7137975;1.4945096;-1.6902425;-.68851113;-.33268425;-1.1350197;-.8195101;1.0453035;3.5031772;.4092941;-1.103424;1.1427071;2.6662219;.666004;3.1090112;5.4115233;2.7349827;5.4569459;.21012072;2.8175378;5.4693198;.6356048;3.9774086;3.6506221;3.2958288;.5110718;3.8036802;.2835108;-.45645931;-.26074693;1.0665585;3.6143095;4.2420707;1.3431174;3.7205074;4.0004282;2.2147446;4.5157356;2.8396125;4.6564231;.42613429;2.1325638;2.2669187;6.616313;.068463787;5.6351948;4.874321;1.2931778;-2.8320329;7.0775967;1.9988893;5.1899981;2.2511406;2.6087992;4.6326995;2.2351003;.98801833;-.23422249;1.8371727;-.33283705;2.1925716;-1.0898901;-.12380698;1.9996768;-1.4693303;-.82332045;.96367031;-2.5176656;-1.3329475;1.7319551;.37810832;-.25346974;-.32338428;-.52541673;-.12729341;-.0044185184;2.0510793;1.7219553;-.13202281;-.01625965;.38927695;.80339062;-.46520272;2.2040379;.22466518;-1.4902282;-.1557557;.54555154;1.6048822;1.7022939;-.57308495;-1.4520255;.41850725;.60304707;-1.5003918;2.3525372;1.6570964;2.1617379;-.84959424;-.5761196;.46075436;1.6164727;-1.7469542;.85970855;.53731668;-1.4494748;-2.8593907;1.2594;2.4765835;1.8803352;-.63221574;1.0489382;1.7898983;-.49956754;.8214795;4.2932873;2.8590577;4.0986652;1.6044352;.95093995;4.1666913;1.2438343;.71627975;3.3198216;2.7581837;2.2880819;2.4100506;-.53554904;.26886794;-.41511503;.95613974;1.6887251;3.5028548;1.1077846;2.2326612;3.3584132;2.3036964;2.3776622;3.2195873;3.631439;-.40998036;1.3319362;2.9846673;4.8300385;-1.2924449;2.2498093;2.2366123;1.7675333;-2.6367068;5.9759021;1.241351;4.1340256;2.442476;1.8909175;3.7028062;2.0216427;.97958547;67.446579 +1.3624979;-.6188997;-.92609996;.15982267;.48698169;1.9234693;1.2261584;.88786876;-.32365945;-.32093385;-.42424661;1.8891944;-1.2481002;-1.8826655;.94980937;-1.866717;1.2279825;-.9617365;1.5299509;-1.1196409;-.11781985;-.39957479;-.50803012;.75680399;.59551531;1.2110296;1.869017;1.5399423;-.6391837;.93658864;-1.2495508;-.72001171;.79601943;-.69842213;.11054818;1.0584018;.43599874;.19579931;-1.0726287;-.14054869;.35824782;-.93974614;.13627172;.44431949;.58294773;.31890503;-.28121632;.93749434;-.44864169;.39353675;5.1550183;-.50213385;1.6356094;4.2190819;4.6943121;.24019511;.14040416;2.2406685;3.0264728;5.5644712;3.8976185;.24674676;2.294832;.4329668;6.022769;3.7372131;.19916761;5.1333036;2.714323;5.3422232;.7674486;3.9917812;-1.1055748;.88660216;3.0155785;-.46466121;2.4878409;.39742753;.3668758;.94127882;1.5001144;4.2414508;2.9081528;2.4512198;.71550512;2.2912531;2.0386126;5.5648179;3.104358;-.57536429;-.95788401;3.013871;.43594998;3.8137112;.52774262;1.5437919;1.1975595;2.2775483;1.4515921;1.3550178;1.0083473;.8835184;.0060798023;.70107734;.050774865;2.801362;.48939672;.60270488;.12641159;-.5349161;-1.5375394;1.8186207;-1.4101084;-.73898154;1.0643348;-2.2413051;2.0540268;-1.6762081;1.2397151;-1.1379516;-.49291012;.73432505;-.9364683;.14355366;-.28249842;-.16236308;.48000315;.69135332;-.31110549;2.3476694;1.1911829;-1.6400344;.42127278;1.276366;-.26904771;.55188859;-.97342551;-.38161442;-.34218484;.91073561;.68403369;-1.156002;-.788059;1.2138758;1.6806108;2.3164105;.42875513;1.5831953;-2.246397;2.4404125;2.4318442;-.31964898;1.8070132;3.3275628;4.2009664;-1.3034992;.87382299;1.3348399;2.3301668;2.5802279;1.8052412;-.96767163;1.3675619;-.45932394;4.3460283;1.0045613;2.4656873;5.7114201;1.1249862;4.2683482;1.2383943;2.794138;.59221476;1.9015706;2.3813393;-1.8994616;2.0860331;1.2642784;.43280116;-.16548172;.31262842;3.1380131;1.8793732;1.0710177;1.2332809;1.7042096;3.4850111;4.7748208;4.0063009;.49667799;-1.9656063;1.3576792;.68873554;2.1173966;1.6325332;-.45598754;2.532666;1.4826459;1.14276;1.3203679;53.728306 +1.4348649;1.1347369;-.10891049;-.44113392;-1.4039699;.87433225;1.168744;.43327338;1.0747645;-.52666259;.31222761;.59347236;.80132252;.93331802;.084134474;.18029396;1.8964394;-.62768799;.18677723;.65175843;.64958739;.10955644;1.1121007;-.29778731;-1.2164021;.46789151;-.85459822;-.058600914;-.021109393;.068899415;.30887234;1.4342351;1.5612125;1.3231484;1.1500224;-1.4986552;-1.0951937;-.90708673;-.14004315;-.032932885;-2.4443445;.8130216;.1075916;.99250352;-.16554083;-.27136672;1.1491207;.546646;.16713521;.78980464;2.5841749;.37855193;.51402009;2.5638986;.0011838942;2.5083463;.14423288;4.4962711;2.9395516;4.3581553;-2.2706313;3.716857;1.8294314;5.8197217;1.5093244;2.0394928;3.8044887;4.2886205;-.60171378;1.7773262;2.5795367;3.3146892;1.7421238;2.130857;.0013902321;-.5927707;2.5440834;.28192493;1.5239565;.89818776;3.0448232;5.6172214;.65383893;.44989243;4.1471386;-2.0626943;2.3319461;2.2006338;2.5734684;.87836218;2.8348298;4.0832515;.68120074;1.7123306;5.8877678;.99688017;-.37002584;3.9124763;2.2342052;3.4507225;1.660576;.01441671;.025091523;-1.4376395;-.22381869;1.7277237;.80413163;.58228642;.0078554293;.75506741;.022015808;-.7107209;2.7234342;1.5754055;-.090419069;1.0583588;.058770742;.86409193;-.31805855;-.42531487;.91593885;.59376371;1.5261811;.94586766;-1.0071937;1.070118;-1.3747469;-1.6618139;.70093626;-.97815907;-1.2054509;.63365316;.04945885;1.1236016;1.2342312;-2.0192914;-1.2815021;.27394873;.8387112;-.48056477;-2.1625564;.76626146;.31310049;.59330213;-1.8045872;.54927135;1.8180158;.32502818;1.2263246;1.2023015;3.2770867;.20908354;.31509975;2.6669953;.67380375;2.186444;.7267285;2.4904659;1.9598031;4.115622;-1.6096816;2.0666986;2.6656983;3.7235844;-.26235378;2.6205804;3.8166897;4.126061;-.33054155;2.3435609;1.9457853;3.2675216;1.9362221;2.1807082;-.57724816;-2.066431;2.4558637;-1.1856291;.68305081;1.746295;2.988543;4.1809301;.35450491;1.0934007;2.0188997;-1.0337387;3.4777868;1.1317389;1.3576401;.7886886;3.1051855;3.1528947;1.0885553;.050108626;2.2778196;.13247629;-.053237502;1.7103741;.70142329;.78257298;58.986095 +.0029740022;-.155753;.2080932;2.0859509;-.73859054;1.6961771;-1.3686438;.37497845;.12213076;-.22393954;.67566204;1.7189488;.40524071;1.2258841;.045101412;.012880678;2.006964;-.35274711;.31647906;1.0225425;.6099695;.09463685;-.28706256;-.39131114;-2.0457714;-.28050476;.085749216;.27266487;.23711511;.034091771;-1.3912202;-1.274757;1.6846302;1.4316068;.56570053;.49476323;1.0292875;1.1954672;.13596605;.76700205;.61056823;-.45817122;-.87440366;1.1341511;-.87930959;-.44899893;.12136048;1.1583015;.61264902;-1.0422568;4.3402963;2.4570496;3.9301431;7.0302215;.34508327;.20305128;2.8667827;-.083163254;2.0050836;2.1289003;-2.9946113;3.4234877;-1.1120452;3.0999346;4.1291299;4.6589093;.83525115;3.1282122;-.37719569;4.0088525;1.1840054;1.1700395;2.1604123;-1.1890297;-.53002548;4.0069141;2.4200072;5.0006289;6.7867417;4.3294053;2.3126392;1.0657595;.084576227;2.7392585;1.0579019;1.1604898;.51871091;5.02528;4.8917313;-.58940291;1.4457158;.58129722;.47957271;.29867908;2.6192348;4.3761969;6.5021014;4.1741104;.54976314;-.067732453;-.35033163;-.99750519;-1.3624246;3.2105021;-2.4158607;.7548278;-.41226903;.42745844;-1.8008491;.28545421;.90126717;1.944324;1.074162;1.9770895;-.22099645;-.99301988;1.6777134;-.94781452;.86191118;-.5751729;2.2544293;-.36269709;-1.0404532;.041535508;-.48726332;-.67544699;.79559684;1.4978722;1.166158;-.06522318;-1.6857289;-1.2050161;.97025877;.26840502;-.12232648;.48714337;1.3653785;.61820841;-.50773948;1.4667101;.78675121;.39192343;-1.0972021;-.53046429;-.15435497;-1.0600035;-1.3451339;2.8889003;.96573091;.1015468;4.0117068;1.981032;2.1929774;4.7315021;1.5068399;-1.2909455;.62308222;.89130634;1.6028166;2.3631074;-1.9214318;2.0452693;-.5783785;2.819839;4.0994091;2.330368;.37348887;2.5176098;-2.2252233;2.6449099;1.0599561;1.1317074;1.5952764;-1.1177186;-.47964671;2.8108232;1.3584566;2.4384356;3.3325329;1.2612224;.42602122;1.2338089;1.2045993;2.4406133;1.9211955;1.5508559;.20473488;4.5666714;2.8058555;-.41959956;.5741533;1.1936626;.45171526;-.70240468;-.025756098;4.0432262;4.537518;4.8465705;.17769055;-1.6498977;48.795845 +-.1847173;1.2135842;.53697073;-.56976402;-.28958854;-1.0397549;-1.0314593;-.049179424;-1.5815282;-1.6323193;-1.3329849;-1.2176737;.4091759;2.1217563;-.78022808;-.91350722;-1.5706981;.66449755;.59994394;-2.81288;.56341183;.92256266;.15609054;-2.0849433;.36206925;1.0339915;-.822909;.21302001;1.0131046;-.30863073;1.2450843;-1.7622596;.62120229;-.69368201;.30247101;.89306837;-1.2397809;1.0402889;.19191884;.65959603;-.85415727;1.0015805;-.69810027;.56104481;1.0476999;.59898823;1.5267311;-1.309263;-.51333487;-.42579573;1.8835403;3.2182364;1.9100311;.78326392;-.070017658;-.71230453;2.6532211;4.6514201;1.8172497;.79004902;3.0580242;.86050415;4.5750871;.73969382;4.762918;5.4849305;2.1701748;.090157926;4.5365529;1.9409651;2.169729;1.3393322;2.2767293;2.7098122;-.52502632;-2.1986508;3.5978663;1.621148;.43420154;1.1127951;.46065667;4.1081624;4.3831539;3.9895608;4.8120723;-.33680275;3.2595952;5.2829223;1.9217471;1.3331319;.67890042;2.6323557;-.5561201;3.7326248;5.0487695;3.4315109;2.1862485;.55482203;3.0739746;-.39892194;-.66320372;.20632495;-.82694215;2.3672822;.45557857;.82169914;.18637997;.20482989;-.78378093;-2.4050808;-2.0351961;-.00051908445;-.40201101;3.2692602;.11762987;-2.3005393;-1.9499257;-.35166255;.84751475;-2.3251407;1.4059103;1.2907159;-1.5447913;-1.2221625;.29779753;1.9434541;.077163748;-.43900272;1.9883111;.26985914;.22531062;-.54430908;-.3754088;.68601745;-1.7145422;1.3801816;-1.6019897;1.5737214;3.9353645;-.94219363;-1.0170861;.39860192;-.91464323;.50511837;2.5327322;2.2029903;.4445672;-.22296266;.093669407;-.16295697;.88564008;.6830408;-.48625562;-2.2795906;.7932927;-1.1207716;2.3874016;.5880819;.78440768;.76013201;1.3738992;1.8367417;2.8739595;.88844132;4.5497608;3.3081939;.4718549;1.1988117;1.6098313;1.4823259;1.3718724;-1.1388572;1.8799839;.96488971;-.64731401;-1.0041449;1.9554418;1.3806868;2.343787;.25848743;1.2389401;2.3222244;1.970584;1.6790913;3.7631686;2.4524112;2.0491164;4.3243966;2.2270865;-.13399197;1.3967407;2.826144;-.5472815;2.914525;3.0730243;1.1393532;3.3599272;-1.0038021;.20340377;-.57044697;55.138584 +-.64673388;-.30380183;.46607384;-1.4344456;-1.1267258;-.029453531;-.60599619;2.86499;-.95972168;-1.1210749;-.69234943;-.42774653;-.28578311;-1.3139668;1.1325955;.78721124;-.18789969;-1.36033;.38068044;.24000013;1.3004069;1.5518672;-.41707891;.13890417;-.2146492;-.27481729;-.46710202;.27290118;.90832281;-.91439915;1.2496514;.10224791;-1.053526;-1.1626724;1.030471;.77483648;-2.3117533;.036565285;-.95935577;-.79982138;.081590004;-1.5181239;.58850992;-.029256672;.67699099;-.62765759;.64105833;1.1329322;1.1892275;-2.1339386;1.5953943;2.6239357;6.0812278;1.783523;3.1878514;3.6424861;.6186952;1.4190613;2.4584908;5.2454567;3.3022292;2.2146618;-1.0192069;1.4573617;1.3386427;6.4054251;1.6023405;2.848139;2.515306;5.3220048;2.7555976;2.6978822;1.9444724;3.8829939;5.0734024;-1.1375006;2.2194571;1.5302016;4.1130433;.7536;2.3647478;-.45128509;5.51334;2.9375548;1.7955648;2.3968694;3.9132137;-2.4351978;3.6368146;3.0471172;.13530502;2.9906788;.006256232;2.8747463;4.0026531;4.2665038;3.9391694;1.6397469;5.5818663;3.1684148;-.26737544;-.91915822;-.19351386;-1.1671772;.88331217;.30713278;-.67051196;3.9460993;-3.0152352;1.4233593;-.4020783;-1.3632411;-.38199577;1.0895423;.30516049;.86365944;-.49888468;-1.0134512;1.4241376;-.50935596;.25643384;.047984924;-.25429237;-.5169611;.04857786;.24454373;-.62447006;-.66254681;-.011180474;-.38766316;-.34749019;.096767657;-1.493719;.73184997;1.3305299;-.025433894;-2.2560854;.023223009;-2.407748;.0054409266;.35147139;-1.1454531;.85026985;-.56210697;-.43125072;.1705654;1.4452723;-.67306423;.56240743;.16251621;.039732881;2.099;3.5874369;3.3369241;2.3968284;3.0515311;2.0580695;2.3875422;2.3683836;2.475883;3.2087297;1.6471123;.24345082;.36833012;-.32092601;5.0220771;.51271379;3.1185822;.95851457;5.7447443;1.8849083;1.749089;1.367038;1.1992891;2.8788829;-1.0370492;-.049137939;.074623108;3.7690194;.42590848;1.1942753;.70676041;5.5196023;2.8717692;1.7845789;3.6766479;1.1216444;-1.3098221;2.1931133;1.2534779;.49655721;.77909386;-.92150348;.54704815;1.8972698;2.0367308;4.577384;1.9415407;4.5256548;1.7243681;63.140575 +.89713037;1.3218176;.54065901;1.4421327;3.0201039;.23147693;.0068951487;.76123565;1.3176795;-1.3856144;-.4809193;.99895155;.088550597;-.93345702;.31792122;.87692082;-1.2433136;-2.2125647;.75864971;.052591644;.23715264;-1.2711828;.15635361;-.64659721;-.099553712;-.44779825;1.1183659;.3396444;-.6265049;.0024934239;-.83950722;1.5852154;.8388322;-.46401232;-1.0168777;-.83120733;1.6476341;.38191888;2.1885326;-.4392226;-.61468631;1.1168368;.34513652;.015083137;.88501585;-1.05652;.057837285;-.83035898;-.99695927;-1.1003754;2.3337457;.4339973;.61854726;.15468365;1.9327492;1.4998672;3.3143749;.8582117;-.79463184;-.89930058;4.0507679;2.7559686;3.8053489;4.6748648;1.5773094;5.3885064;2.1839769;1.2943844;3.2057204;-.26967558;3.9421883;5.8571486;1.511001;1.2103071;4.8815174;3.1765242;4.1972165;2.0483177;-1.5484326;-2.9026091;.59152722;3.087966;-1.6085984;3.0311544;3.1023839;1.3111963;-.2493128;2.1383405;-.8625614;3.0507016;2.9966309;4.6248755;1.1103436;-1.1543266;1.1489173;.80870777;.32670206;2.1117976;2.414155;.29825398;.94583762;.60681474;-.89724773;2.261946;.77543962;-.33130008;-1.321815;1.140023;-.037505418;-1.7713914;-1.1242056;2.9625549;-.21717618;-.39717647;-2.1864481;-.98154545;-1.7460628;-2.8665328;-.30535915;1.0008265;.66890705;-1.295131;.5879544;-.54733044;-.89693266;-.28260517;.44679487;-.6287477;-1.9055477;-.37192526;-2.5724547;.5476312;-.15970647;-.65569007;-.14649086;-.41987699;1.1083988;-.96893525;1.439798;1.8659188;-1.6111138;.3466613;.19082043;1.3115848;-.40051255;.43539771;-.40741655;-.58466065;-.085474081;.24601549;2.4425459;2.4487014;-.36590356;-.21852736;1.8814126;1.9426038;3.1110616;-2.2137895;.15154044;-1.9140679;3.5310831;1.4196457;3.3172228;3.7191269;.75103456;3.2495584;2.3129687;-.61894244;2.6412909;-1.0803912;2.7159691;6.0709491;3.3161626;-.15063439;4.1381273;2.0055454;1.9838684;.21777493;-.84469831;-.20463961;.34006342;2.4605589;-.21421425;.92150903;1.6641518;.46154997;-.4612821;2.6180556;-1.7195679;3.2996933;3.5998609;2.5976846;1.3306758;.41200858;.95128918;.5175522;1.1906478;1.1370337;1.8975152;1.6969117;42.978428 +.23615712;.36578345;1.0949355;.52800483;-.6197657;-.21106201;-1.1547055;-.46235687;-.63792056;-.35682479;-.30863082;1.4363602;-.3765496;1.9799569;-.77808404;.067708321;1.9236917;-.35889587;-.5830248;-.83671832;-1.8722866;-.62818933;1.349315;.75852299;1.3387233;-.51912332;.84649628;-.069502689;.33586174;-.071152635;-1.6303978;-.79640359;.60775554;-1.0389711;.49689099;-1.0236071;1.7498373;-.31435123;-.69592029;-1.1468825;-.050880797;-1.9782426;.20116635;.34472457;-.40775475;1.409982;.22182839;.061667345;-.5027597;-.54145378;-1.287227;-.030661941;2.8060517;.88335866;1.8829902;-.98113817;.024390103;-.82274038;1.9625894;3.4012694;4.2316341;.24631947;-.26007292;1.3981426;2.3913412;-.51330668;4.2733836;-.68940175;1.4140302;3.9002426;1.1091243;5.3209109;3.388638;4.684711;6.1241851;1.7166238;2.0589616;2.9161782;.27103153;.644086;1.5007287;2.2240174;-.46477839;2.4279418;.40609759;3.4540389;1.3005304;2.2936559;2.164257;-2.8413842;2.2641129;3.4421468;2.3648391;3.4508209;1.9301149;-.13438617;2.4632847;3.9332252;5.285377;2.9269428;.49894872;-1.1887333;1.2429668;.55525267;.22239079;1.1036295;-.81856954;-.54769713;-.583525;-.31865713;-.66133583;-.82345599;1.5829185;1.5134915;-1.8779714;.89074123;1.9889331;1.5922475;-1.6564822;-.8564384;-2.6524212;.62740326;1.3402075;.48363271;-.05902889;-.46240988;.61053985;1.6519068;-.74988109;.44874144;-1.6197122;-1.4680129;.34045577;1.0890756;1.466939;-1.4124763;-.37035385;.82599336;-.69173771;-.79496419;2.279475;-1.0340488;-.48264033;.67136055;-.51046342;1.3725724;2.3522561;-.89900005;-.60918742;-1.1426108;.724792;-.4662492;2.1611581;2.0175202;.4486565;-.33770984;-1.698738;-1.8024879;2.3218784;2.0197062;4.0002766;-.11094639;-1.1422542;.40530494;1.5217128;-.1033938;4.7353458;-.75962418;2.0566602;.55578518;.64035994;3.6017954;3.1807723;3.4773951;4.3909731;-.11836153;1.3289468;1.7224275;-1.39335;.67568588;1.5402379;2.9297454;-1.1800054;.11918814;.42819428;1.6073623;.94897741;2.8173456;1.3394104;-1.7967705;.49844351;1.7786216;2.1266954;.64479327;2.2733636;-1.3451741;1.3949779;3.018965;5.5040812;1.6314906;42.230614 +.11185211;-.5876925;.25878623;-.53642493;.18482856;-.70907748;-.34305009;-.64666045;-.87478256;.36653888;1.3145452;.083285309;1.7995726;-.51990515;-1.0160543;1.1846621;1.4945794;-1.2946657;1.0449513;-1.094294;-.1443662;1.4600346;1.0447627;-.20441939;.11542243;.19631065;-1.1154058;-.80134034;-.71535194;.21976463;-1.1452103;1.2091295;.99940717;1.362877;1.8521905;.056846753;-.75850827;-.68012619;-.49618393;.16323552;-.83349454;.23358499;.0077615865;-.49602637;-1.8363242;-.070067473;-1.1453325;-.64827824;.030267121;.0560757;1.6340175;2.5057793;-1.2270818;-1.169144;-1.4350239;1.7441322;3.3776302;5.1330605;-1.7550893;3.4928238;1.7362018;4.0143237;.7133069;3.0580869;.59360766;2.3532724;-.55279964;1.0360206;3.1926548;-.40333909;3.3571215;-.035169657;3.4512033;1.8266065;2.8578832;1.9959327;1.5057157;.45125118;7.3242636;2.4571428;2.2709093;2.5417197;6.6805034;-.41962811;2.6091452;3.5041125;2.1126547;2.4514217;-.73806161;3.7524812;1.624907;6.0363045;2.1873367;.86388332;2.1259646;5.3348775;1.6114784;1.161491;3.265801;3.5961208;-.44784018;-2.0834553;.15922882;-1.5889682;1.0775429;.11014301;.12054392;-1.2060114;-.93308032;.81868023;-.9084996;-.45461124;.95534283;-1.1805352;-.4204036;-.28168285;1.7924968;-.56666803;.34991798;-.15714025;.54672348;2.4559298;.25460741;-.20438442;1.6494287;-.18374693;-1.1185029;-1.034052;-.81990844;.77336395;-2.5109115;2.3683896;.8169809;2.2988777;.95170319;.95493382;1.5287082;.89457655;-.19842538;.84166425;.29253104;.72796541;-.057154451;.31695578;-2.3417242;1.3477612;-1.6761732;-.71512145;.92839652;.020723067;1.4471675;2.9794738;-3.1063042;-.32955077;-1.3659738;3.4572084;2.3814306;3.0434692;-1.0386221;3.327595;2.7145815;3.2591383;1.8228632;2.3577385;-1.534341;.63542384;1.1358157;-.074804932;-.71808445;-.34163773;.70942366;1.8273885;2.0085146;1.0403672;3.6275635;2.5473464;1.3598138;.4705146;4.7584271;2.0287011;2.6379945;-.6216625;4.3779435;.11527697;3.9330647;3.8854742;.81887007;1.6609361;-.064858317;2.6984413;1.0834447;4.5533705;3.0970244;1.528738;2.0128195;4.7092366;.98267937;1.1122382;3.3634279;2.2006702;53.947891 +-.42023435;.77845144;.12361364;-.37835059;-.48890471;-.32099527;-1.5602773;1.0889947;.55981314;.051897634;-1.4864504;-1.0150689;.27012154;-.036106642;-.18748738;.87685597;.63059098;.3087658;.41825497;-.15028439;-.255909;-.31945625;1.8474433;.51689017;.11629583;1.4264076;-.2467234;-1.9041947;.57577616;2.4557059;1.5621991;-.21686104;1.7492247;.97087997;1.162919;-.23263015;-.027199615;.14394826;.21294288;.98844934;-.15399939;-.77978343;.7763561;.42201614;-.080001473;.61359334;1.094076;-.062708788;-.860816;-.63063937;2.366905;1.6032248;2.2639749;2.3700356;4.1968579;2.1078763;3.8418233;2.0126657;-2.6932342;1.1033871;-1.5303946;1.7678021;.5832113;3.0595131;2.9111602;1.0105104;1.7988976;7.3255348;.98383367;4.8833265;-.50787586;3.279263;3.0563774;-1.297928;.019643934;6.1354632;3.2762523;5.5571246;5.5328045;4.023942;4.1759825;2.8288288;-.0079453383;3.2793462;-.64265156;.33428103;.85010183;-.54309016;1.8126864;1.7273524;6.6231575;-.44990537;.99600083;2.8102226;2.7499144;1.5469646;1.3572047;-.45880684;2.9526565;1.9956278;.60515463;-.7872014;-1.240813;-.73525763;-.087938353;-.45882055;-1.1634337;1.226125;-.76961529;.084936135;-.82295483;-2.0245445;.32174656;.96455628;.43311635;-.58389491;1.4025658;.091048434;2.1621745;1.4569964;-1.4716005;-.34020293;-.52171409;-.04354243;-.8021422;-.34831095;1.3311268;-1.8138813;-.49336284;2.8086324;2.6222734;-1.6963575;2.2332413;-.19644822;1.0277659;.12927333;-3.0311792;-1.5239347;.49505019;.29665446;-1.110221;.97456747;2.4640863;.46793148;-2.9243956;-1.6784656;.51177806;.45447946;1.0451835;.70932424;1.8844576;-.50796658;3.0487864;2.1805182;3.6839826;1.6212733;1.1275432;2.6470912;-1.8268673;1.0183905;-1.6542959;2.63447;.85158294;.79996938;1.7256026;.02153258;2.0677185;6.4366307;.51445353;2.1928952;-.52735323;2.7490454;2.9685042;-.070925549;-1.8442935;3.8863957;2.7597384;3.8608494;4.6485648;3.1155374;2.382777;3.0429666;-1.5104771;.81493634;-.60400945;-.86384648;2.6824429;-1.2493;2.1617334;1.3818789;4.6053281;-1.4072684;-.67705816;.68216664;2.6419249;.35064194;.60259211;.32826176;.85783494;.35078949;51.595932 +.87087059;.44075152;.27733988;-.65583539;.92307436;.76922894;-1.111802;-.20275322;-.024183329;2.0939255;1.0120108;-.93244147;-.93949574;.18671481;-1.4374328;.63103789;1.2942084;-.54245901;.68958318;-2.3478999;1.2335672;-1.398317;-.19456787;-.39666387;1.0795519;.5104323;-.3024973;.49433109;.40281084;-.83341503;.24305794;-1.3424879;-.58596373;-.95316809;-.55862409;.30001062;-1.6657858;.79635549;2.9925787;-.20798349;1.0442151;1.1050116;.73526508;-1.8996062;-.79583329;.73608005;-.60352743;2.2179902;1.3209435;.48773217;1.7626815;6.9578199;3.8261433;3.2304494;5.4818454;.038304761;-3.4068015;1.0285606;1.4369186;2.4275489;.3725847;1.3970674;-2.5861247;2.6013949;.38184857;.26666981;-3.3998828;.35212278;.77966374;3.0363004;4.7653065;.78036129;1.4586762;1.5247298;1.4580982;3.4793956;4.7450647;5.1573143;2.2824988;2.4125237;1.3091962;1.8497225;-2.0572891;3.3376434;3.7199571;3.2047863;1.2588896;-.55811316;1.6735193;1.2124711;-.46351466;1.7904354;1.8413949;3.2574954;.83235282;2.619442;3.5865588;3.917819;1.291792;2.8227155;-.24134989;-.080637425;1.8656988;-.29873076;1.038588;1.4898366;-1.7821902;.57897514;-.67663085;-.10924979;.23037712;-1.0568098;.55132228;.42385754;-1.7722725;.52163589;.38693881;-1.2079521;.47180602;-2.503516;.29152918;-.88740969;-.066612609;.67294967;1.4320558;-1.0706514;-.33343107;.99513519;-1.2782637;.74867809;.14292124;-1.7655351;.37829995;-.75157028;.40313673;-.60357845;.069830179;1.4123657;1.9559897;-1.1671804;1.1306591;.58600187;1.8880962;-1.7689704;-1.5394628;1.3688604;-.95069188;3.6323428;2.3533766;.72297287;.74583107;5.9739957;2.2372124;1.1854186;4.3062387;2.2245955;-2.2018156;.035138935;1.371809;1.5693884;.097584024;1.3660264;-2.9234676;.47071767;-.13122922;-.56690717;-2.3249314;.46920463;1.9541656;1.1163161;4.4930849;-.023910593;1.0378101;-1.1035138;.82956159;1.4133865;2.3327012;2.8368294;2.537154;.33299252;.92723036;.67842746;-2.084033;1.1655066;2.9756334;1.9337748;.07512898;-1.7137796;2.5126927;1.0675461;-.33157057;.80049068;2.3460646;1.7488153;2.1797359;.69520986;2.775794;3.4262164;-.15238219;3.9925823;43.769894 +1.1956129;-1.0909824;1.6745819;-1.6838262;.6961503;1.0179409;-.31909516;-.76658833;.014877655;.30516341;.77817202;.19460128;-1.1174368;-.89402252;.21546662;-1.3332679;-1.7469671;-.97843832;.12165799;.39236939;.82157594;.13793428;-.29797983;-.83200383;-1.0807309;.051845383;1.9308521;1.2405409;.93061852;.076094568;.32503751;-.5535751;-.36880845;-.55199623;.040408254;-.49949017;.58374691;1.4548541;-1.9396108;-.21370567;-1.2964122;-.62259793;.93509972;2.0809894;1.4488833;-.92241812;-.23558798;-.31653121;.60281599;-2.1515;2.5922713;1.4068781;2.322407;4.5138564;2.8199382;3.8560536;-.93809688;1.8487903;3.2124135;-1.1672993;.0076622507;2.0990515;2.6849103;5.7284994;.34599271;5.3833489;2.7669806;1.7370793;-.060737617;2.0906253;3.4444189;-2.3766155;3.2297127;2.6179571;-.55075777;5.8969064;2.4186242;4.1367064;3.0686927;1.4999655;-2.3673801;7.9924107;4.7148199;2.815243;-.92806542;-1.2111934;3.2490945;-.59806806;-.41587105;.64143336;5.650516;-1.4638869;.70509213;2.2373147;6.5121307;.81727064;4.8402543;-2.7436101;.85311067;2.9673669;2.5707548;-.71062803;.1797244;-1.2220738;1.7397848;.62453359;-.88530272;-2.6586411;-1.5145864;.50116163;.97103441;.92008364;-3.1320233;1.0366417;1.6465793;-.30981374;-1.9770793;-.12747075;.35158479;.95672923;-.28254822;-.12868889;-.13642995;-.40845713;-1.0804145;.12060637;1.253599;1.1304832;1.1286607;-.80329883;.013850815;-1.6345574;-.071794845;-1.8815274;.90085697;.551534;.99643749;-.099950433;-.14323123;-.019585565;-1.3414036;.4666616;1.0834466;2.656635;-1.5199208;-.8377918;.12372375;-.16585341;2.2637925;-2.3795686;-.15001827;2.2423577;1.5428801;4.8171368;1.2049935;1.9062014;-1.6487627;.4498429;2.263994;-.44786751;.33292308;1.2254976;2.0445836;4.1778078;.26083115;4.0246396;1.7173121;1.7395074;-.186051;.86288661;2.5778177;-.99754936;3.3560507;1.6721691;-.21304671;4.8567562;.055269185;3.4874206;1.4807397;1.9300231;-1.0976028;4.6537943;2.8441658;1.2223114;-2.8056228;-.30278599;1.9560547;-.22512545;-.75184774;1.8723006;4.4139161;-3.0356746;.98494339;2.6684754;4.7161937;-.56375957;2.865922;-2.150975;-.30691889;1.3286145;50.211815 +-2.2160668;-.77727699;.42167673;1.5883255;-.057689518;1.1374198;.20053659;-1.5363195;.44685432;-.43589419;.068050094;.59598428;-.66205955;.87969095;.50213861;.5499683;-.073103823;-1.4952037;-1.5808668;.89598006;-.52970278;.88904709;1.3383473;.78463608;-.42226192;-.17323992;-.67320758;.27847141;-1.1912374;.76963317;1.4121823;1.943095;-.32693568;1.5975542;-.49245736;.18496718;.97300482;-.41452423;.71670049;-.076451339;1.784001;1.1968997;-.20336401;1.1283771;-.24343897;-1.5478595;.63868678;-.64996016;.43576661;1.6280657;-1.2662129;.22727059;3.1629572;2.8209584;2.0009875;-.053579431;1.4560647;1.8058228;1.6467186;-.41092452;2.6534216;.94099212;4.3715034;-.13497944;.75635231;3.7658064;.84307706;2.1091361;3.7881985;6.5690198;-1.2663473;5.4106851;4.5751309;.89932901;.091460392;2.4076607;.27778646;2.8759615;4.1436887;1.7516894;3.6632245;4.4905791;.6544376;1.0944246;1.6713561;5.9991989;4.9152594;3.0089252;.900397;-1.6003258;3.3509142;2.2535186;-1.3354441;1.0739218;-.17438288;4.1120081;3.1926351;3.3173587;-.74200511;.88346028;-1.3606012;-.76533526;-.39558578;1.553943;.25522053;-.59078026;.97838467;-.99191791;.91398078;-.44208136;.82811546;.52806032;-.061110746;.18941584;-1.8856287;1.0558082;-.20070745;-2.0700197;-.61770409;.042040974;-.55960393;.70561135;1.9752978;-.38116643;-.001766752;.80807424;-.18838462;-1.0508139;-1.5452932;-1.229619;-.65368193;1.5210851;-1.2799445;1.9550415;-.78536052;-.54058117;1.7628697;-.60701525;.063974112;-.47256711;1.533752;.80918568;.55683851;1.4078133;1.666996;-2.0692065;-.73108876;-2.8197703;2.714886;1.4408114;-1.0279371;-.43305415;.89516062;.24974465;.65690136;-.007963174;2.4450338;.57493198;2.9455025;-.35334653;1.5907195;.45624799;3.2304785;-.80423868;.57068557;2.9839871;1.2016752;1.0577852;3.4271157;5.8522878;-1.0821579;3.4662671;4.6391344;-1.3459183;-2.3402922;.87437314;.64761204;1.7000631;3.8410342;.60199171;3.4490831;4.2170792;-.27463064;.083242401;.069426432;3.0838804;3.4346211;1.7768631;1.4548038;-1.7858028;.74496645;3.2458453;-.10948785;1.1075387;-.61128807;4.0152278;2.4203248;2.1227381;-1.6420631;-.10678411;62.514797 +-.91268027;.38048103;1.006951;-1.0749229;-1.0219716;.62435246;.73832482;-.074076392;-.93377656;-.86430556;.57139999;1.0762513;-.78122514;.032649204;-.37191305;.86918032;1.2790245;.85926557;-.52851516;-.17041023;-.26166356;-.46566823;-1.2351148;-.56192583;-2.0831547;.37334257;-.3717505;1.5261078;.18029535;1.015205;-.58330417;-1.2658783;.57248414;.21004887;.25642806;1.4007593;.078843236;-.18835506;-.91839904;-.31797114;-.15790929;.48074883;.81446385;2.3657341;2.3342795;-1.4391985;-1.6857237;1.3048126;-.21559225;.65999907;1.9999487;3.7549992;-1.8805883;2.0262358;3.9304035;-1.0515406;5.4916148;-1.0213325;1.250532;-2.2560627;4.7246733;3.1832464;2.357604;.49812499;3.4816866;4.8176098;2.3096757;2.5723112;3.3314185;-1.1470295;4.929821;1.2974961;-1.0479822;-.2064231;-.160179;3.4944992;2.9583669;3.1049793;-.73010844;4.6905317;.89349979;3.1177325;6.004303;4.1009183;1.8562086;1.1268321;-1.4690714;2.2775006;-1.2166854;1.3779956;3.2269635;.6166392;2.7951016;3.1557608;1.8701968;3.2689478;-.60392928;1.4972637;2.971705;-.13511948;-.28260988;.76321203;-2.0774822;-2.3781366;.82930589;-1.4027801;2.521549;.70927107;.07895942;.93660408;2.0180228;1.1860662;-1.4073237;1.3018457;.18223985;-.040497378;1.429629;.15073833;-1.3656718;-.29403549;-.49928516;-1.8516212;-1.4521981;-.69373322;-1.0010283;-.050511558;-.98048836;.12917261;1.8482902;.63659245;-.59658486;-.71525961;-.24548334;-1.3999201;.88165784;1.5772927;-1.389459;1.8989395;-2.1174929;.59672046;-1.9068493;-1.2545323;1.5369292;2.0453923;1.0396764;.18927841;-1.8419762;.98061955;-.35346717;.51601022;2.7862659;2.4814227;-3.2668471;.92293262;1.6674162;.50638741;2.9296033;-1.7048783;1.1912073;-1.7810454;3.3133516;1.5502992;1.7830592;-.24608214;2.8369355;2.8626869;3.3517857;2.6372914;2.0430982;-.47401738;2.7158284;-.45135763;1.8677853;.058951519;.86234981;1.8247254;2.5078945;2.134876;.55383122;2.8746812;1.5785416;2.7687683;4.6474075;1.9752133;1.1157337;3.2319574;-.015212336;1.424557;-.58639848;.67319387;3.112412;.061743662;2.3960826;2.5367281;.73005378;2.1020153;.7216233;.191415;3.8059402;-1.9913596;52.241192 +.81234378;-.30210906;2.1450825;-1.0235264;-1.4387698;-.91192126;.65976423;.68673611;.26819474;1.8836037;.3470327;.42041472;-.56915098;-.65693742;-.46909881;.23413317;1.8936043;-.76033318;-.4282757;-.86696619;-1.8716239;1.0962583;-.074963309;-.53360432;.32307938;2.922483;1.6869075;.27859032;-.44828665;-.25416264;-.22160389;.47674385;-.76106834;-.088981986;-.15984312;.016501347;.8589555;.62008119;-.7396037;.38627344;.14658442;-1.0060415;.635225;-.85414112;-.42472509;.71019703;.12858069;-.10909353;.2985442;-1.1426156;4.4470773;3.6947365;4.4120188;-.512079;2.0172126;-.37222782;4.0322709;3.549964;2.7190423;-1.3600413;-.41587856;1.509986;3.8710918;3.1576905;4.9053297;2.1365364;6.2830892;3.2820094;5.1874189;3.5424476;6.1514773;2.7312596;3.7838387;-3.3947718;-.30960771;2.4922626;2.7871284;4.0069985;3.1372995;2.8965607;2.416147;.013940511;-.021407189;2.7264571;1.1481265;1.7625349;.54425031;3.1364939;3.9957869;7.2994537;.70052099;2.4505072;-.67134941;3.5992477;2.9555194;-1.7709415;5.7223001;2.6942973;3.3191583;1.3351636;-.64591777;-1.0625532;2.5457649;-.33878109;-1.4313244;-.028777869;.0011166343;1.2564269;-.62543249;.75973892;.85099292;-.61466938;-.11768268;-2.495538;-1.6058428;1.0849272;3.5610199;-.4266822;.33036953;-2.1846411;.86654174;2.2802401;-.41164279;-1.712326;1.0688418;2.3486326;.3223967;.99246067;-.32675904;.15638708;-1.1478851;-.3330937;-.18150139;1.1233077;.47552717;-.11647762;-.54461807;1.0768704;-.882411;-.28239271;-.30192715;-.25427914;-.93360585;-1.4235506;.39497334;-.78078699;-.38021675;-1.5386119;1.1172867;-1.2362847;3.1571188;2.9472857;3.4880538;-.44386429;.24461451;1.4234403;2.9131763;2.6227875;2.494977;-1.4843576;.5149464;2.9216976;2.5628095;4.9493256;3.3566513;1.5736861;4.8749342;2.6586692;5.1547055;3.122699;4.7178845;.52829081;2.1241741;-1.2026577;.25374189;.85632277;2.1267719;2.9071813;1.7884686;3.7338498;3.1422644;.80109632;-1.4978919;2.9820592;1.3386139;.77242339;1.2827208;.98749888;2.6696255;4.4289765;.68309689;4.3186541;-.12222543;1.6229981;1.1278712;-2.7188935;3.1130216;4.2375011;1.8117492;.94321597;65.559456 +.11095177;-.76516819;-.44971219;.75538337;-1.5360872;.91636509;.88819057;.57536036;.44107684;-.1633565;-.25987774;1.7115613;.94576329;.55465138;-.53138977;-.87015343;.24759114;-1.1361548;.34595791;-.11245319;-.48514828;.27260104;-.026299022;1.1872239;-1.0496761;-.29767445;-.73306859;1.1306129;-.38695234;-.35070732;1.1239595;.78424954;-.27336782;.0017824442;-1.2560115;.63574922;-1.2106652;1.9719946;-1.6066849;.15851879;-1.648398;-.97128963;.42194283;.652273;-.0088462867;-.21121138;.066018745;-.011335943;.23603155;1.3938076;2.5590005;4.2716036;3.3577175;1.0848682;-.037175834;3.1172516;3.5528159;5.0512476;1.4293501;5.7190442;5.974123;3.0563729;-.02759338;2.5594471;1.9856409;4.8561978;1.6846324;1.3056322;2.9807026;5.5533509;4.2396121;2.3860197;4.0679178;1.309227;3.7414234;3.092521;-.5533731;2.4055417;.2004918;.98675585;2.3861842;.59951776;4.1537352;.64688253;1.2727972;4.0197978;3.2815151;3.9906995;.45149672;2.8602033;.65349162;-1.455688;-1.5993031;-.90779549;.050391536;2.8209147;.87701017;1.1924028;1.3895499;-.78551912;-1.0284368;-1.0892721;.95054996;1.2878141;-2.8730948;.28738576;1.512607;1.2340113;-.51761681;-.75979787;-.1705561;1.0853217;.11827412;.98951101;.17056566;-3.0998032;-.49933431;-.47785681;2.0760539;1.7824906;.32794195;-.73046792;-.92354953;2.0400975;-.17199098;-.94786012;-.31155223;.67005938;-1.9795136;-.38529637;.87101871;1.1462101;-.64102244;1.201416;1.818954;-.64219224;-1.7256935;2.6164396;-2.4346569;-1.7356446;-1.8649524;-.73720896;.47789145;-.5696184;-.97388452;-.0069422899;.23817717;-1.2101485;2.0083778;2.3483517;.54761249;5.0088053;2.4945698;.30973229;.65206909;-.095982581;.76382381;4.0308275;-.53139603;5.0877223;4.3988719;1.0198387;.87898564;1.5386004;2.1192701;2.2717597;1.0136751;-.22311273;2.1649899;3.1250479;3.0905607;.80315155;3.3088415;-.33766583;1.5420063;1.7787535;-.07414265;2.37661;-.29512948;2.082118;3.7523041;.14702129;3.9215674;-.40478051;1.0198339;2.383647;1.9703399;2.2270689;1.1181026;1.4177045;.86390495;-2.226594;-.56732666;-.78194022;-.27721497;1.1296118;.22411679;-1.016287;.97086889;.65167546;50.404297 +.89572686;1.0875307;.49830374;.45434222;1.1420615;-.46712363;-.018563138;.75402516;.32278055;-1.924531;.40778071;-.56607836;-.32817069;.72147226;.10117412;1.4589453;-.48105818;-2.474092;-1.3018342;-1.4077073;.56211984;-1.4993415;.49019611;1.7033124;.33594844;1.258518;-.44677481;1.0235778;2.3136098;-1.2870654;-.30450094;-.25024152;.69942403;-.14255664;-1.0334722;.4678261;1.1104779;.36249354;-.25399199;-2.2643352;.9386608;-1.0009928;-1.5168396;.61612195;.67665833;-.050426755;.86170429;.10748803;1.1282132;1.0429275;2.2460027;.23471297;6.1615152;2.4579966;3.0677969;5.7484374;3.8463392;.98378062;4.107182;1.1578851;2.0147231;4.2964053;-1.4576359;1.098861;-.13680069;4.0442219;3.6631444;.19878943;3.5416205;4.6891689;1.7641616;1.6739088;2.0635912;3.6770084;5.4873071;-2.1155372;3.6025624;3.1743309;1.9195926;4.3900127;4.036531;.75528103;-.62182909;3.7052503;4.1858139;5.4238548;-.70536608;.58329427;3.5874171;-.28957224;1.8190998;-.096526451;2.9552567;2.8225181;3.4007442;1.2906659;4.1141586;4.6371989;4.5128131;-.66559762;.85563821;1.8984874;1.8062638;-.52320611;.31244195;-.66758555;-.29834867;-.092236459;-.2371067;-1.1749965;2.2759287;-1.9854386;-1.1170317;-.64285266;-.15097831;-.34984118;-1.7100053;-1.424509;-1.2810754;.5466342;.75355995;-.67845023;1.4655551;2.0712035;-.055690039;.73749292;-1.4535722;-.3478331;1.2452147;-1.0820327;.41448283;.51962775;-1.4787245;1.063747;-3.3113418;-.62573093;1.2008517;-.37926877;-1.4861602;-.76592261;1.4642078;.049426004;-1.7538433;.62434334;-.49141756;.93295568;.4652358;-.70835304;.89354825;1.7407116;1.1051518;-1.1469553;2.8608663;2.3187544;2.2279189;5.2868319;3.3259525;-.090299249;3.0347726;.8176043;.31993383;3.7041135;-.64815682;-.85360384;1.3754661;2.2533827;1.6381321;1.208759;4.5751672;2.7518752;2.4746535;1.9637578;-1.2648391;2.018935;6.2451954;.2467204;1.738252;2.61853;1.3114717;4.2588062;2.8713505;-.031312685;.27448204;3.7357292;4.4198117;4.6384072;-2.0949953;-.60140467;1.1970431;1.341081;2.8889737;.8499313;1.8666446;1.137228;1.0748861;1.6444496;2.0690403;4.1659818;3.7077873;-.39370206;69.427269 +.23768334;-2.0210645;.19677316;-.71132964;.73362696;-.65574175;.39605129;-1.8434557;1.3418727;-.19358768;-1.7283516;-.33659577;-1.8006159;-.48994994;.98901308;-.89576006;-1.1190058;-.11010581;-.66038847;-1.2699741;1.1788187;-.76314086;.28319463;-1.5767677;-.62971938;1.7440603;-.87513143;-.32874337;-.91396642;-1.2858287;.4369601;.32114109;.9466216;-.57325679;-.61042851;-.53671557;.0025224804;-1.4973466;.92402953;-1.5544853;-1.0791224;-1.6699435;1.0894709;.29863793;1.2885509;1.8679277;-.0025785465;.41139022;-1.4065906;-1.7385056;4.5751166;1.1051708;-3.7230539;.97159767;1.4391983;2.8458641;2.0058689;3.6939456;2.5311465;1.8186339;2.3462617;5.499896;5.6108093;.85585541;2.2689378;3.4671605;-.84092277;4.9460301;6.3710713;5.1410518;.95002931;.22598176;-2.0543277;3.7792013;3.7373173;1.9522871;-.68446296;1.2509112;2.0746024;2.7089243;1.5111123;-.24927337;.23619722;-2.4774055;2.7324321;1.6645197;.1462829;2.2706091;1.726223;2.5441277;.67192787;3.3589211;1.6601393;1.3036754;3.4803586;-.40233952;.55697525;2.2814577;2.2916021;-1.5249741;.22539961;-.60197836;1.4851748;.33018935;.90350586;-.39186078;-2.1130557;-.47989437;1.1251358;-.44140142;-1.9617107;-.52517784;-2.049037;-1.2640201;2.0428834;-1.1360588;-.025612948;-.0080440445;-.78297406;.21407144;.29412961;-2.4958687;.24632287;.18458028;-1.571753;.48338726;-1.5001106;.95069969;.65808344;-.048453934;.3887299;-.66078687;-.38745093;.530725;1.2032334;-.52224416;-.29684952;-1.0095859;.21052931;.20310824;-.76597255;-.35542023;2.0621977;.025941303;-.76022053;1.4803921;-1.4604052;-.69095588;-.82189292;-1.1389717;3.1909318;1.5091757;-1.1023885;1.4525213;1.050101;.68638319;1.6631452;1.3690728;1.1543431;1.4368697;1.3944517;4.0006528;3.1019464;.97019589;1.4332398;2.8960989;-1.1477225;3.2455802;4.128252;3.8572102;-.31595111;.16289867;-2.0028474;2.882201;1.9115214;.45035961;.21560511;1.0515401;2.0131419;1.5320083;-.80474079;-.75779742;.58257765;-1.7654141;3.1251092;1.9756538;1.5823237;1.9524828;-1.2614762;2.2838798;2.0363064;.8636446;.79092789;.83289307;4.3158731;-.1375988;-.52634019;1.6865052;.19956866;-.80455369;46.623299 +-.83820438;-.92277074;.90524787;-1.0324359;-1.4990524;1.239338;.2277333;1.1786557;1.9714333;-1.1736231;-1.5198933;-1.065652;1.4409063;.074843481;1.8178241;.66937649;-1.2336713;-.1632477;.3269788;-.1908837;1.1665334;-.66079491;-.60986024;-.80031079;.034451135;1.5829966;-.8788991;-.44371548;-.52119613;.11551294;-.34323445;.90568227;-1.4610195;-.21657556;.78242671;.096851312;-.32444274;.93101239;-.23086673;-.77134115;.30614015;-.05836682;-.17025563;-.76421481;-.53216809;-.22003862;-.19111957;.012537044;-.51803893;-1.1524296;-.10388744;-3.4559221;.37574455;-1.9376181;4.2678018;2.1028128;6.6344757;5.5577717;2.7781978;4.0463409;1.603402;1.2690235;-2.41032;2.6846383;2.3269448;-2.0847893;1.8316371;.46489874;3.0467551;4.9622736;2.1778102;1.2835747;1.7679549;.73941922;7.5794015;.74420685;3.9545841;.77403611;4.0473299;2.1258161;3.7752206;3.6264548;-.17777343;-.94295555;2.4960024;1.8536372;-.54400063;1.4058144;1.8623707;1.5284889;4.7069211;-.39908651;-2.5783646;1.1495175;2.7561953;7.4047294;2.5348639;4.8470082;3.768394;-1.2397352;.57044184;-.16488804;.52218997;-.75795019;-.32846564;-1.3334179;-1.3895903;1.503245;2.1765373;-1.81589;-1.6467841;-1.2384509;1.1865821;-.82325703;1.2984079;-.19317642;1.0892814;-.82505912;-.34969977;-.19977212;-.50344622;.53346932;-.20810458;1.3457068;-.84264076;2.3186309;-.19862978;1.1508516;1.5279387;-1.1331905;-1.053988;1.7506027;-.81972915;.50700587;.96183133;.68691552;-.44016048;1.7674588;1.1375388;.47023213;2.3607774;-2.6515005;-1.474944;-1.6195757;.85602379;1.489192;.26197731;-2.26246;-.55035138;.32185555;-1.6012212;-2.5864565;-.86825311;-1.5023698;2.0841417;.25109506;4.283824;3.2551205;1.5685668;1.5642099;.81099087;2.393101;-2.5889266;2.4288754;-.10587348;-2.5009706;-.035674814;.051077027;1.4296329;4.6989183;1.7144475;.88572705;1.8541417;1.9445289;5.3839717;.56825662;.50551051;.62615269;2.3790791;.52762729;1.4617262;2.4467101;-.75636655;-1.4643115;1.4556018;-.44756258;.54798222;.35754225;2.3710704;-.49343839;4.1592956;-1.1671526;-2.7758482;.51223558;2.6614275;5.2161875;2.6639922;3.5601017;1.2686454;-1.5987444;51.579929 +.64625734;-.07058005;.48422214;.99320644;.12226526;.28952718;-.34527472;-.8000046;-.32103652;-.51385957;.83774614;-1.9538307;.60944605;.94513547;-.11470795;-.66724139;-2.1529689;.30369183;-.23623043;-.45503205;1.2314458;-.31074026;2.5533671;-.31717396;-.39033172;.63830453;-.97282112;.088110238;2.088342;-.43252826;.46196637;.79122055;.44137141;.20860337;.97155434;-.92951477;.44919348;1.2253056;-1.0233604;.44161633;-.58504689;-.74785268;1.0798749;-.19984616;-.1681595;.82694262;-.36570689;-1.3428276;1.4220608;-.9618215;5.3696489;4.0162964;1.0758711;1.673213;2.0881059;-.98173541;-.49584782;-.8001886;2.4345503;2.8757081;.013286743;2.4504797;1.6124687;3.5597188;1.6639822;-1.4540678;3.9967031;-2.8994267;1.8684399;3.9039536;-1.1983682;5.0280075;1.0489306;1.7865288;3.7286232;.26263911;.80335003;.95982569;3.0440927;.85108083;-.30304703;2.1454165;5.8894682;-.54373008;.70695817;2.2238011;2.7842841;1.7120169;-1.3742493;-.067813359;2.7507091;5.7796354;8.0702229;.73612314;-2.5187676;.18659885;1.5558739;5.3280549;7.727756;-1.697208;.7268163;-.98555505;.15413216;.39842749;1.0185695;-.24710944;-.65066689;-.4285861;.62732452;-.29743475;.63725024;1.544795;1.6303499;-.045043599;1.0527526;-1.7308735;-.22153191;.65363902;-1.1919125;-.52370065;-.55199188;-2.2462914;-.013257718;-.60784626;2.0805826;.7978493;-.023225836;.17880528;2.627667;-1.352556;.75248998;-.7565583;1.3932546;.25950173;.7516526;.034951098;-.13583194;1.8243227;-1.8107883;2.0360248;-.21784431;-.53071302;.74238676;-.13900179;.2210502;.87069434;.15570338;-1.338322;.75577837;-.39175466;4.7016044;3.908637;-.070610374;2.7781193;2.0293949;.18395397;-.63414013;-.66416436;.98644012;.16621019;.48099771;1.4021257;2.9138048;.93057311;-.042602871;-2.1907074;2.734705;-2.8855822;1.9627167;1.6829451;.090285629;2.0594182;1.4682444;2.3537242;2.5317955;-.43351957;-.017017843;2.8639629;-.26432905;1.068717;.20207265;.88390654;4.3409314;.10367577;.5245294;2.7216477;1.5709909;.28078556;-.047956079;.5463717;2.3149312;4.2059188;5.3333244;1.0152316;-1.9960909;-.21756335;.74699569;3.0422142;5.2707138;-1.5978667;53.797451 +-1.018684;-.063949779;.48442766;.17920162;.84908545;.16178378;-.78233838;.29726654;.29352587;1.4997978;-1.3300686;.061418533;.73565429;-1.1690826;-.68372822;.95781863;-.083290823;-.047733959;-1.0363768;1.4219335;.47465503;.28241199;-.15744157;-.77819794;-.35513434;-.63847166;1.5788716;.56249791;-.93002242;-1.2807344;-1.7095233;.32652915;-.37161058;1.968053;.026418036;-.22421299;-1.0283844;1.2969576;.93989831;-.99463183;.17234458;-.18672909;-.11287148;1.6095684;-1.1622349;-1.3056107;.84285444;.47802192;-.26975214;.037419122;3.1785827;2.2031028;4.116251;6.5112977;2.7883453;-2.4269266;5.5555406;2.8143141;-.21718402;3.8952844;-1.5928787;2.0425518;1.1053482;1.0646501;-1.3542321;3.6909344;.43602306;-2.0564418;4.5240512;3.0020807;-.68370157;1.3269503;3.3727744;1.1784648;1.3977751;1.3387779;3.4571786;2.5891216;2.442544;4.0565934;-1.5668291;4.2210746;-.78895503;2.6963048;.66479409;-.60082585;.84145349;2.1530979;5.3399539;3.1355524;2.1365805;1.7389995;2.9680378;4.6695609;1.9751805;1.8807662;3.6578944;2.3343947;.87646431;1.4819964;-.36330226;-.78137845;-1.217901;-2.0244062;.15582247;-1.3071035;-.83247733;.79488629;.83857244;1.3482587;-.27959478;.76071167;.41836977;-3.0615191;-1.1469166;.64564878;-.13339627;1.8664016;-.74210155;.020875545;-1.155097;-.043367755;1.1742038;.62362212;-.47334135;-1.340543;2.1455719;1.1518329;-.057342179;-.076103665;-.21905078;-.12500568;-1.3816143;2.2983518;-.80816567;.53894901;-1.4032518;2.4382815;1.1187084;-2.8538959;-.90825158;-.29944652;.25659677;3.4420497;-.55070639;-.7010904;.68989873;-.80088609;1.6433133;-.71255368;2.0083668;2.3419244;2.5928118;3.1654341;1.4356313;-1.4830624;2.8465207;1.2136451;-1.2458804;2.1577058;-3.0475113;.10544515;-1.7270207;1.1840161;-.25197431;2.6331291;-.31746024;-.59327233;2.2304533;1.3941766;.24770357;.56315899;1.483291;-1.0771143;2.6565711;.047816768;3.3603811;5.0581574;1.7904016;4.1968398;-2.4755449;1.6214409;-1.1122227;1.6998641;-.78733873;-.16754086;.13831164;1.0724318;3.1800268;1.256268;.489703;.39843428;2.5302627;3.408581;.04105847;1.1592877;2.5366037;1.537081;1.0508423;1.5632892;52.286724 +-.081531517;-.19266663;-1.5454663;-.15772957;-1.5018331;1.2561965;1.3840661;.36688462;-.99472195;-.068424799;.79604298;.10911006;.18962383;1.7621181;.64633948;-.71879947;-.6265161;1.0078212;-.18059544;.41882208;-2.1683495;.26033482;.86615342;.82833868;-1.2928604;.13686296;.0034797641;1.2405787;.031990331;.39028823;.40577769;.35627311;1.0759887;.60107976;.6373421;-.95020628;-1.9802169;1.68162;1.0276171;1.2127036;1.2302359;-.77441055;2.2495694;.97821552;-.61130953;1.5684668;-.77011013;-1.0516773;1.6909678;.0033523517;2.3307118;1.5504284;3.9955471;2.3592169;2.5455036;1.3223333;-2.4338849;2.2052813;-2.4096546;4.6930947;5.2083735;1.1946956;1.4424317;5.4505663;.069834195;2.4918878;1.2268679;.48822892;.37864524;1.5814549;1.2974659;5.3518887;1.3889284;2.0830779;.060122717;-1.7717731;4.4982729;1.0597233;-1.0460738;2.4473076;4.9021678;1.9529153;1.9165295;3.8513491;3.316262;1.7580025;4.3146181;2.4600692;.19067903;5.7501645;4.1692924;4.4816332;2.8790312;5.0036211;.45709428;3.4932559;6.8991671;.034025308;4.72404;3.3535941;.16497567;.19920398;-1.4945166;.84730303;-.5587827;.13289827;2.4199686;1.4528011;-1.1304996;.95107979;-.0083491858;-.25116438;-.21306957;.1632162;-.21577834;.72898322;.049801014;.64197165;-.0098151825;2.1159596;-2.2240257;.21174973;.70030242;-1.1146598;-1.2618191;1.2354075;1.0413742;1.9761173;.99707448;-.64094532;.17806515;.16188152;-.020361526;.13499415;2.1100259;-1.8013645;-1.8388546;.52336913;1.5740665;-.15316071;-2.2163324;-1.6473796;1.3832481;.26000795;.50912189;-1.5872953;-.26759672;-1.0302403;-.68314427;-1.2733643;2.0620637;3.1748261;2.3206115;2.5247209;2.1053786;2.1702898;-3.782079;1.7229296;-.52491045;3.5068059;1.8541902;-.035880871;1.1089998;3.0373254;-.42911935;3.192589;3.5738986;.74672771;.42575264;2.60813;.98970014;2.2370205;2.3778627;1.2175792;.20840396;-.35375726;2.7610765;-.54791379;-.66128212;1.214597;2.744261;.79370129;-.16482347;3.9773643;1.698588;2.0693944;1.6570878;2.9284644;.50329691;4.5502334;3.7554324;2.5970244;1.4465034;4.4267254;1.7221665;2.6824696;5.824163;-.92729908;4.2168469;2.9054382;65.367386 +.73241431;.43164808;.83308357;.42988572;.96407801;-2.2825508;.18770872;.37593013;-.020750683;-.25058147;.025353922;.25354648;1.6076231;1.6196229;-2.3240361;.51289421;-.34040767;.31555301;.53247106;.75823832;.61521107;.79480213;2.2463551;1.9979981;-.030731106;.63983953;.24953675;.93067509;2.7255516;-.81873757;2.7408464;-1.06929;-1.0746405;-.37378624;.5689553;1.2795947;.50087452;-.21234722;1.9238039;.24271418;1.3921493;-.7548154;.72442526;2.1787663;.24995457;1.310779;.40439767;-1.3563923;-1.55009;1.207525;2.7054322;1.57037;.7061711;3.8673482;2.4696207;3.8891978;.33265561;4.144619;-.18628949;-2.2282677;1.4175348;1.8982836;2.3447297;2.5545702;-.23400824;1.1303476;3.5600963;1.905755;-.75599307;.58147925;-.25538027;4.2973571;.29351792;3.7197511;-.11461888;-1.297286;3.3028369;-1.1605724;-.60010755;6.9128852;3.0340087;5.6799254;3.2009249;.87165856;2.7642639;.92613059;1.023231;5.5614061;3.1166224;1.8594671;-.084190093;.68238449;2.6976268;3.0913272;4.4428377;3.1538644;6.2215557;2.6638753;3.7626672;1.7852392;.10914958;.11525561;-.49100155;.30158204;.66192818;-2.1444135;.5497241;1.4533318;.16950469;1.3848764;-.43050966;.4331533;1.3079242;.0094055571;-.9193126;-.57004905;.6417309;.51516163;.12144426;2.3259978;.88423938;.98566711;2.2558467;2.555053;.32496533;1.3619553;-1.1079892;.71213377;1.510134;-.87078804;.86754161;-.74707967;-1.5561957;.78579134;-.32937443;4.1704793;1.6090028;-1.1816815;.88175851;-.59885204;-.16121212;-.23271255;1.182778;.89634931;-1.2811439;-.5795846;-.4666605;-.97178435;-2.2834122;-1.0075623;3.3501709;2.9454687;.55966645;3.3397727;1.4694452;1.8703876;-.085471302;2.7544119;.054765109;-.63061666;-1.4458547;1.1732974;1.7654244;.96819133;.36165461;.46214864;.50447905;2.1634221;-1.8576624;.054797292;.65942168;2.7256036;.20939542;4.2228007;-1.4292102;-1.0893846;1.5931853;1.195367;-1.4501233;4.1335249;3.9588723;3.4906929;2.5066063;-.72982061;2.1146617;1.2345917;1.4270992;2.7365756;2.8049054;-.43327245;-.90388131;.63433105;1.2761906;2.4803784;2.1051874;2.7049081;4.7933993;.30237773;2.1944346;2.6630986;67.177139 +2.6800532;.62610781;-.10877542;-.99323142;-.84551656;1.3869683;-1.7965587;.091854215;-1.5777344;-.33340263;.84260964;-2.0406525;-.60467058;.097087562;-1.0945636;-1.5800436;.13376725;-1.0092322;-.35064542;.28483045;.10044812;-.38683191;1.8858954;-.47311613;.98640394;.10004651;1.2942967;-.21997549;.42749935;.81828773;1.1742007;-.024558686;.35336509;-1.0904505;1.5746753;2.2557571;1.0966591;-.072740346;-1.6971133;1.7247058;.90720832;-1.3074317;-.37902406;.48042044;-.53258121;-.24576069;-.43447214;-.35733259;.11441489;1.1511784;4.2411513;-2.8851676;-.15883163;.97660941;2.029505;-.80739671;6.0507813;.54896891;3.4212797;2.3729668;-1.5848271;1.6573051;-1.134697;1.4999162;-3.0012498;2.0834777;5.9854631;3.2543221;4.8882766;.74598449;2.8398836;2.2306738;2.6489882;3.0739424;4.5392246;3.8720396;3.629828;1.8842793;2.5541396;.36425391;.00071534555;3.1874919;-.050628357;1.5469406;2.4463475;4.4727001;.67484188;5.5507646;1.0450284;2.0418477;2.0333953;-1.8874255;3.1938834;2.1782894;5.605278;1.7889506;2.5638962;1.2092731;3.0372941;1.7618443;2.1110222;.68427986;-.99981958;-2.7155821;-.17497104;1.4267087;-2.7057791;-.3858811;-.45754579;1.0761553;-.80303794;-2.2188148;-.54968417;.079540133;-.872715;-2.6076891;-.84383243;-2.2432604;-.30177554;1.0103707;1.8920126;-1.5455426;1.7410784;-.23291101;1.709554;2.0685337;2.8015084;-.51312613;.91967624;.50866354;2.1861618;1.236294;1.2968029;-1.9804478;-.15998735;2.0918636;.73510903;.57129413;-2.5630622;1.050505;2.8353617;-.58849174;.98768693;-.31883922;.26011246;1.959946;-.75430435;.56813687;.1774018;.61457592;3.0144079;-1.3988905;-.54265732;-.04540053;1.9502438;-1.883118;3.2946379;1.694214;2.4629536;1.685496;.7355969;1.7430592;1.0887237;1.716921;-.48684403;1.2521091;4.0143266;2.1714146;4.9329681;2.1438229;1.7999476;1.662326;1.429581;2.7494533;.84034878;3.0043943;3.2401979;.58732921;.78232086;-.11272306;-1.3259505;2.4206305;.28699553;.76036865;1.7248268;4.4480925;-1.5208377;4.4725542;-.21589276;.28169468;2.2130442;-2.0227823;1.6064709;1.3648502;2.139919;1.6795028;.65953428;.29660445;2.0114689;1.0183753;53.786289 +.60183352;2.2950339;-2.4471886;-.49506149;-.41908675;.84438711;.57791829;-.89672202;.4181993;.89304382;-.37149712;1.4779544;.39395586;.87510175;-.14876121;-1.0144101;.63807797;.28018019;.20346457;-.30766711;.035785187;1.8166246;.64776802;.22986846;-.019923789;-.97412658;.31961858;.25903323;1.3656584;-1.6897458;-.84559143;1.2071394;-1.0721765;1.4089307;-1.5754954;1.4780626;.096794315;.69549733;.23717555;1.7268175;-2.3157229;1.7596663;-1.1337215;-.042293269;-.037324939;.76320422;-.071773827;.27418894;.38076577;.98610979;.94805026;3.031261;1.5504237;.84692127;3.3367743;1.8014376;.77584046;2.4758215;1.3534179;-.62553191;3.8260701;2.3234699;.82148165;1.0259708;4.1238284;.84456682;-1.2923787;1.4105794;1.2576647;1.7903486;2.7408249;-1.4707896;1.8966415;1.0206066;.44172204;1.7691489;5.4819417;2.6056743;1.9285717;3.1848807;2.3742778;.21513486;5.7999048;1.0772516;1.9418401;.34608272;2.1313996;4.3167315;.42565021;3.7051656;1.3717498;3.5468466;.69766855;1.5413431;2.7502809;4.5317836;5.790277;2.8799114;2.4563453;2.0067642;2.0383344;.82350945;-2.846472;-.86436421;.89619368;-.61454844;-.30246216;-.79077166;.20900537;-.097827494;-.86044353;.16941583;.54017466;.78669399;-.34306347;-.52130324;-.3806549;-.22487238;.15217833;-1.2913888;-.23676187;.90508008;-.0002501464;.70803356;1.6364168;-1.5229745;-.95952392;1.738757;1.0346154;-1.3201342;1.5981821;1.7082095;-.062876418;1.6351204;-.20466234;.7773788;-2.0373435;-.67547446;.68157762;1.4123119;-2.3284109;-.32378051;-.95802796;-1.1944087;-.19224036;1.1077157;.030773342;-.64662963;-.94991934;1.6433817;.38078901;1.6183372;2.2183566;-.38756254;1.8495162;-.19559266;.35581112;2.2203133;.77273399;.95826364;3.0175889;1.2759218;-.12362948;.0265551;1.6255672;1.3035181;-1.0924902;2.6611304;-.3721664;.80620652;1.7807525;-1.9710175;-.5486632;.18500733;.40529287;2.3835924;3.3241067;1.1738799;2.2494369;1.9591168;1.8204842;-.76591343;2.1241832;1.0425731;1.3406448;-.068155311;1.4113228;2.208782;.32270601;1.6446394;1.3054212;2.3758986;-.014146879;2.2880781;1.3173925;4.6444077;4.0074334;1.9598808;3.3208768;-.17751795;62.389141 +-1.0853239;.87711477;.18810353;1.5579118;-1.7460698;.34691912;-1.3379048;.26082623;-.05991023;-.45400468;.18722986;1.4313922;1.0593884;-.79210931;.59132797;.51264215;.31369206;-1.559142;.49307078;-.60988033;1.2167072;-1.185876;.67119032;-.16223715;.55752832;-.095696256;.72271007;.85074973;-.3177495;-1.4229187;1.3969095;.99848717;-.64573157;2.2239459;-.24329215;1.8015198;-.30547953;-.32040468;-1.1908314;.45094171;-.41505879;.74372983;-.35011882;.12884983;.41083747;-.49452057;-1.4948218;-.85640812;.027391041;.4734686;3.3823531;.64047694;3.2064364;-2.3281486;1.2828422;1.2527802;2.3505223;-.72411209;3.6609037;-1.1258292;3.8474905;1.9196067;1.7529476;-1.1313516;.77071083;-.42706302;-.18253604;2.6729512;6.0501966;4.8440633;-.44161701;-1.6352154;4.3968096;3.7343464;2.7263873;1.3761244;6.0890331;4.1860771;2.9464622;3.6938462;-.026842888;1.9065859;.95096821;5.1898804;.59722632;2.2353776;-2.2287445;3.2387903;1.2129189;3.3024001;2.6387308;.95193577;3.5506647;1.7229673;-.44272172;3.1494074;.89012498;2.3904519;.0018164252;4.9232578;-.93517363;-.45181495;-1.0153413;-.083015352;-1.4899607;.3989172;-1.6444225;.65801579;.11286284;-.61465091;-1.3562407;-1.5201523;.66055244;.60690916;.19737265;.13940711;-1.076636;-2.0289013;2.3446147;-1.4981462;.98214591;-1.7133917;-.55271089;-.83882207;-.38438365;.23032333;.90247232;-.2306738;-.7150321;.28308317;1.7348654;-.71920919;-.73320997;1.1541024;-.10539667;.75031257;1.1898305;.1142785;-1.542053;-.5314737;1.1561942;.71042168;-.34190917;-.67070448;-.25741547;1.0437287;-2.8975167;-.99265355;2.67222;1.8300457;2.1199005;2.4186206;3.7683814;-.60627156;.64262915;.975335;.069204748;-1.7611817;2.9061577;.58954185;2.9534783;1.6273276;.601861;-1.3422304;.11303126;-.87362283;.067429215;2.3506098;3.8133295;3.2350152;-.69346857;.16739048;2.0828414;1.6955675;5.4302907;1.2600206;4.4520073;2.9965949;3.0304506;4.6499033;-1.0821198;1.4122766;1.2483318;4.5047083;-.18644707;2.1316192;-2.5462661;2.8067455;2.5380299;2.0854673;1.362442;-.098250613;.91374028;1.0287626;.078031249;4.7125711;1.6919832;2.8530538;-1.2201563;2.5620279;45.155205 +-.28924498;-.040009983;.32673457;.16996647;.29719958;-.83648986;-.040492475;.77415609;.017835446;-.1934828;.79225236;.94107735;.28531897;.10124131;-.35016116;.89880633;-.82922018;-1.1227005;-.55252081;-.057551194;-1.1787481;-1.5699823;.36528531;1.3603983;.85748762;-.89818919;-.21837939;.76172155;1.7752734;.63696772;.18145643;.44253927;.8117311;-1.3379049;-.27881929;.69612575;-.43992877;-.022837359;.91384763;-.15761146;.68619663;.30414987;-2.1031618;.76873285;.84343338;.082240954;.82216358;.41359767;-.23124009;-1.8068975;1.1739173;6.2809644;1.0581155;-.3819367;1.6892931;3.5546441;2.9943597;3.7633982;3.7427373;1.305747;-1.5991378;3.7123408;.090934984;1.370066;2.6738791;1.9487964;2.7556686;-.43028846;3.8184681;2.3850703;2.5962226;1.8017658;3.0589998;.99389756;2.0268497;2.9546623;.79099464;-.12114298;4.4505897;1.3435796;-1.8952326;-1.6043491;1.0553354;-.54106927;6.6404262;-.99668515;-1.5564376;2.3025811;4.5043449;2.929944;3.8914521;4.0605087;2.4243901;1.9170079;2.4013412;1.9611582;3.535603;1.0236346;1.3755426;3.786571;-.82940924;.21098185;.40246394;-.75420117;-.42516768;-2.1301436;.25865263;1.0735869;.82030612;.0065199612;1.0129719;.66711241;-2.4033251;-1.4290317;.27297953;1.9140179;-.56192988;-.73656267;1.0915031;-1.0253583;-1.7121116;-1.6537395;1.4258703;1.7451844;.64048773;.20607091;1.0884271;-.96017361;2.0428524;.21571174;-2.3999469;1.0453264;-.22525603;-1.9404979;.64184308;-.33657372;.44879028;-1.3644547;.22806598;-.80658638;-1.1891317;-.2145109;-.60545391;-.073481902;-.35476178;.26979548;.55139595;1.402428;1.4761931;-1.5207783;1.108861;4.2533221;1.5043904;-.98898375;1.5631893;2.2523463;1.6816846;4.0371337;2.266022;.22587402;1.0572371;3.6701491;.065108903;1.4675102;4.0140896;.62261379;1.3924048;-1.2825184;2.7830393;1.6824688;3.193073;1.2174282;3.0676548;.7953015;-.49740943;3.5868196;.11005956;-.45130095;1.2347573;1.5538682;.098064773;-1.7969481;.84505647;-2.0614271;3.5273166;-.31643611;-2.9758661;1.4412787;2.640583;3.4962397;3.2310495;2.2214291;1.4624302;.97014713;2.0121303;-.063957214;4.3656344;.92320085;.24253073;3.4053464;55.243298 +.031543233;-.50685835;.12286298;-.020431072;2.1516416;-.12475888;.46132353;1.9199821;-.64740175;1.3350618;-.73109895;-.27447015;-.98309177;-1.0298691;.13374172;-.33640221;-.29779395;.96564996;.9982304;-.37088022;-1.8367673;-.086308129;-.48773041;-.25055763;-.76571846;.79531449;1.3948129;-.18291438;1.1977698;.53195703;-.65659386;-.11167344;-.18782741;-1.733435;.38007876;-1.1548828;.88172996;-.42158908;-2.2006879;-1.2601211;.32445729;-.11867443;1.4453114;1.2976635;-1.4115825;.65088809;1.1597347;1.673041;1.0027629;-.51107991;1.2029455;3.7893848;4.890986;.79296255;2.0288153;5.6395755;4.3222761;3.5292771;2.603512;1.9778713;3.1500916;2.4112971;7.6926608;-.074877456;4.4323821;1.982182;3.5446713;-.85076702;2.8532498;5.410327;.47264645;2.0551898;2.2184548;.59099805;-1.6613016;-.04122287;.81463379;.63275975;5.1525726;.8861562;6.3777976;2.5912383;-1.474805;.87915504;2.8224764;2.1014752;2.9515512;4.1839995;6.9206104;2.5320823;-.072704837;1.6673514;.95051837;2.2169695;-1.7757763;3.510946;2.2099886;-.71648753;1.5365283;.1587752;-1.8641107;.36252519;1.2118627;-.12649429;2.2391613;-.99732488;1.4112792;.076948337;1.1095868;.050097365;-1.0578778;1.8873271;-.77160227;.16333073;-.34898958;-.51210266;-.29712558;.074391671;1.2453319;-1.6956898;-1.447075;-2.2478502;-1.0499787;1.0045599;.2994782;-1.5421683;1.0593246;-1.2479603;.49734411;.81723493;-.12535854;-1.213465;-.0037672364;-.77383518;1.2168715;-.82786828;1.1175435;-.6234796;-1.3260198;-1.2685394;-.29273102;.13518316;.010273846;-.16868028;-1.0540642;1.1291302;-.65736735;2.7262146;.16335455;.95126557;-.14758892;2.0367115;4.3619819;1.7774915;2.5180793;4.6285338;2.1319439;1.7296917;2.4831202;1.0745326;2.4302335;2.5721226;4.3282189;1.8723973;4.0084314;.36306012;2.5771179;-1.1220053;1.2626822;3.654973;.45604709;.85103273;.72123021;1.8510753;-1.7780058;-.89524949;1.3894453;.62099582;2.8167787;-.44367072;4.7509089;3.3906503;.55208433;.51275206;2.5941298;2.9959285;.10296132;2.9229448;3.8957486;1.221156;-.29415569;.54258782;.76134706;1.104641;-.4418281;3.6132991;3.054091;.17015241;2.1953585;1.2386417;59.729317 +.82770443;-.86244279;-.99918061;.18530054;.45863584;-.57185131;1.8470376;-.099698238;-1.5648564;-.68211514;-.78899467;-1.2149218;-1.6071817;.77674222;.43861929;-.091199391;.29399291;.23484628;-2.0841813;-.80445433;-.428354;-.13578285;1.6920035;.04145246;.41311181;-.086894393;-.11391048;-.53827989;-.78029442;.041833445;1.3580204;-1.4109659;-1.0302052;.10481346;-.43504128;-.54498088;1.1931866;-.63746154;.71626318;1.2414638;-.1854143;.63877428;1.7263801;-.21885911;-.22615403;-1.4933119;.37459141;-.30788299;.67183524;-1.611994;2.9592705;1.7273759;3.3796475;-1.4608119;.93332398;3.9001276;1.2250699;2.2473745;.75284499;2.9159966;-.25615916;2.6027935;4.0444112;4.250155;3.2748766;.54119295;3.0099967;1.0668976;2.1748912;3.4461212;-.75300741;1.1928908;3.992476;.27674368;-.76253313;-1.1596687;.86686939;3.5610831;2.8860538;3.0292225;1.4704295;2.6464224;5.6673546;3.5690658;-2.8201573;2.5886447;2.5124702;6.2731886;.27510431;2.6509011;3.2937505;1.9467982;-.80278921;-.41881856;-.51070035;.79653561;.257076;2.0817463;1.8217089;1.9229161;-.42620334;-.61159003;-2.4501634;.039811086;1.0444819;-1.8110051;3.7246025;.74041331;-.88543582;-.58217418;-1.6645396;.32437047;-2.0864162;3.4555483;-.16268827;-.34410834;-1.1127478;.50953436;-2.1517518;-.30664173;-.85968375;-.050319344;-.86838979;-.2548514;-.35900196;1.1782449;-.96323216;-1.1805788;-1.1106575;.088195205;-.12720002;-2.4339793;.064638235;-.55779487;-1.3645098;-1.9531004;-.41454974;.32062826;-.8330366;-.71091777;1.5662552;.37528667;1.2016741;.005587216;.79961419;-2.170049;-1.2476742;2.1564031;.20471317;-.81762493;2.3599894;1.707379;.43267235;.43641233;.80823898;3.0018542;-.61639363;3.4125381;.53174609;1.7928069;1.1897336;3.7030098;2.6655934;2.3709636;4.0705981;-.82500845;1.9026297;.52689791;1.8894882;3.7944305;1.3199081;-.42761621;2.4502785;-1.2262946;.75466627;-.00066970801;.38291493;2.6189601;2.6852338;.11057831;.93433517;2.3634119;3.2002795;3.2113767;-1.9360775;2.5964754;2.2902007;6.3395638;-.39631268;.73558903;2.1226172;2.1497862;.38713416;-2.1972764;-1.5469108;1.6933968;.89655906;1.3191559;-1.0105609;1.9956573;45.104427 +-.81561327;1.3842815;-1.0916314;.014376349;.63800871;.5023613;.87191731;-1.5022702;-1.0494107;.41114601;-.34574094;.03691566;.30346051;-1.2454993;.8461526;1.1957163;-.67100233;1.1974089;-.4389095;1.0361598;.87149447;.81875223;-1.1753412;.44831428;.17739125;-.67161602;-.10475454;-.67149371;.60579461;-.69534612;-2.5734448;.038256492;.79427379;-2.2354839;-1.2782162;-1.3588951;1.2750088;-1.8577187;-.099063605;-.022524288;.68696064;-.04366944;1.0020919;.77771348;-1.8342853;-.37917775;1.8872937;-.14545946;-.031963944;1.087819;1.4458164;2.0613277;1.0890272;-.71695989;3.2784662;1.492649;3.6064146;5.5230327;2.557714;1.7336037;1.3518538;1.2865551;-1.7882198;2.6618128;4.7692852;3.6273849;.92162442;2.4500923;4.7991242;2.8788512;4.4320436;3.0286756;1.315327;3.4637387;1.0672461;.23316076;.78207314;1.5080862;-.73126417;9.5951672;.056627426;2.8132854;.62800145;.077807866;6.2642221;4.8866653;-.35596758;1.2789226;1.4078394;-.29000169;1.497887;4.0090227;8.0129986;.92850059;1.7156113;5.7849693;.68129027;2.3728077;3.2045994;1.3922399;.073074363;1.917631;-1.0514928;-.019881951;2.2140808;-1.1415383;-1.3306105;.46467572;-.14363971;-.24659792;1.0828058;-.22961141;-.73902029;.13689363;.88249207;-.42075524;-.68679196;3.2204561;.34670678;2.0275629;1.7929578;.54755712;-1.0483743;.75480461;-.38271722;-.88815117;-2.1286631;.12929754;.9709897;-.097245462;-1.6801045;-1.1609014;1.0021372;-1.7221751;-.91734868;.11726042;.24342963;-2.4186492;-.51266807;-.77669555;.23086779;.68254721;1.3796599;.21233302;-.60640126;-.32306942;2.1175561;-1.0956702;-1.0992249;-.24772161;2.5576234;1.9760048;.22720659;-1.9829873;3.8262765;-.44358644;1.7814559;4.2043705;-.39060104;1.8213578;.62032717;-.058374822;.92733687;4.6924143;1.5928397;2.1177576;1.844175;3.1220763;2.2488661;3.4670599;3.4273903;1.4569328;.78239995;2.493283;.050738923;-.89775807;1.4764395;2.1798489;-.62798041;6.5329213;.77913618;.79846686;2.4300468;.30711916;4.9774914;3.1593328;.94515395;1.1922208;.78424072;-.11959406;.16481553;2.8541923;5.203362;2.4457767;.063246198;4.7015209;1.0589887;1.1997356;2.8033767;-.52540559;53.739773 +1.0199139;-.39612526;.88541538;1.7461095;.2735742;-.70260203;.97469854;.0039407033;-1.104719;.045723762;2.2792552;1.0014176;1.4040878;-.016154896;1.2984204;.22042526;-.66481102;.64354682;.88019711;.20629567;-.99327517;-.36668471;.30913982;.33418575;.27179641;-2.4717369;.61851662;.40053833;1.4631735;.44682598;.37169454;-.79109389;.72362149;-.68882728;-.71053952;.17038785;-.53591847;-.77771199;.41005033;-.58393162;.90249366;2.153295;-1.1292067;-1.51596;-.17807269;1.2679392;.77016842;-.44643065;2.0439434;.73186547;4.1593304;-1.9789296;3.4065294;-1.5946397;2.4086931;1.638985;2.7460351;3.7838771;.50236648;3.4415989;2.2878561;1.4710076;5.6706395;.65473068;3.2309477;1.2965891;2.4679203;4.5739632;2.2230623;1.0579507;2.5940554;1.0211084;1.5546501;-.79598433;1.7990615;1.379234;3.3174765;4.3301477;3.0014815;1.3606888;1.8669636;1.0403172;3.1945369;3.3893127;-.52401477;.75874329;-.088888541;2.5635846;-4.3008604;1.6615897;2.9641712;5.0616159;3.7575603;-1.8516597;2.6711948;4.0732913;4.7120838;3.4196796;2.6890638;-3.3517184;.40866923;.768408;2.2381613;1.7173562;-1.8907844;-3.6751018;1.7610257;-.39385423;-2.1298826;1.6407954;.46965051;.77815908;2.4200513;-.57481676;.90577662;1.325088;-.9205265;1.9044324;1.1335237;-.75598121;-1.0187105;.61995667;1.0426563;-1.7194092;.5814656;-2.5190392;.69972867;2.0334842;.21172388;-1.2948077;.52076286;-1.3016047;-.56810266;-1.148481;.57790452;-.22765444;-1.232462;-.17397869;2.3130703;-1.2471298;.18045753;2.1081612;-1.4075799;-.29531887;.094380066;.47625694;1.4226402;-.59403723;.72420502;1.2885537;2.3044763;-1.1521543;1.918908;.65787596;2.0053601;2.3604419;3.5476995;2.5942311;.097158924;.31178522;.86111379;.83755231;2.3925035;-.65178794;2.441714;1.1816515;.77083153;1.0776478;1.9199766;-.79028416;-.01751967;2.8109913;1.5343119;-.62509215;.82225448;1.4398052;2.3591082;3.5225315;.98794681;.76067489;.96866012;1.5859686;1.8272187;1.9361315;-.82826251;-.11708859;.25771281;.73113525;-2.6868052;1.1656311;3.1309748;5.1564927;2.8878646;-.57934898;3.5482123;3.50056;2.9654181;2.4092066;2.018832;-2.200578;58.398785 +-.84840989;-.65682185;-.58406681;-2.0753744;.10509241;-.20390439;.45590216;.02266237;1.3629036;-1.0251247;.53876024;1.0160357;-.1486451;-.79248345;1.5889441;-.1356062;-1.1191013;.27441928;1.32399;-.61154425;-.7519421;-.22241952;-.10567825;-.50446987;-.3768124;.59119403;3.038568;-.3459357;-1.6454417;-1.0343041;-1.3566658;1.4224706;1.7842958;.91266829;-.93367785;-1.9689232;-1.1774704;-1.2671597;2.136059;-1.7929323;.49828133;-.24718302;-1.0308149;.46873671;-1.5557482;.28373861;.71833128;-1.0013257;-.55034065;.072703667;4.333169;1.7110106;1.8391218;3.5832138;2.8987663;-1.2648487;1.3401687;2.6573279;3.9407783;5.9993768;4.8596125;-.19950974;2.3989315;5.8987927;-2.201323;2.2703018;1.6582621;1.2759756;-.43186578;3.0109406;.74616259;-1.0901963;.66391581;3.4484782;1.1176265;2.5410137;2.6583233;4.3829727;2.338372;2.5722744;4.3416796;1.8413565;-.14455253;.6048699;1.5210847;3.6070499;1.8567464;1.2480708;.68483865;2.5900357;5.4132819;3.8443835;-.88202161;1.2055824;4.7513032;1.1163939;-.25262189;1.5174342;3.8368819;3.7851808;-2.157222;.29391322;-.54432726;-1.392656;1.1810504;.12567994;.38964581;-1.1964;1.3815327;-.049866796;.55886644;1.3182461;-.61123741;-1.649166;1.4129515;-.16712354;.29302061;.96588403;.051709589;-.43550724;.04567435;.74547923;1.1459222;-2.0738571;.48004162;.3459312;1.1794769;-.0034241953;-.53383595;-1.7799056;-.58581012;1.0409673;.75220889;-.89939946;-1.5142031;-1.8436997;-.041170888;-1.4957585;1.7570204;.42543748;-.34205392;.36958715;-.79871589;-1.0734969;-.92929149;.72656095;-.46539801;-.5589754;-1.4750518;-.78513891;2.7642472;1.4917843;.48823351;3.1202345;1.4865739;-2.3648431;.62451178;3.1015737;4.0164475;3.8134768;2.9254735;.13578708;1.7495438;3.7257111;-1.6244696;-.66219461;1.9784173;.13309202;.9055953;3.4724627;-.19251376;-1.39101;.54464555;2.4617903;.43436697;.39664805;.78196293;3.1718078;1.1534767;.53197253;2.6725426;3.4153583;.27534556;1.9966611;1.663053;3.359091;1.7156509;.52426213;.66982543;1.5204766;2.1796911;4.4641151;-1.6676322;-.57677901;3.8536594;-.7608611;-2.598381;1.6643484;4.0307527;2.7886457;45.988663 +-2.1759148;1.4607337;-.38321263;-.30204245;1.5681406;.23686318;-1.568115;.022331599;.23521122;.26985705;-.21890117;-.39294097;-.54521167;.32627204;.25068632;-.98800975;-.31701696;-1.2228869;1.5563138;.24438825;.42837411;-.93982249;-.43711519;-.19113882;.041967209;-.9426986;.04818479;.041308358;.034170438;1.8163394;1.7441809;.51442093;-.34405297;.67236656;.070169196;1.9104819;-1.158353;.33222821;-1.0794923;-1.1501601;-.8008163;.68027318;-.86878467;1.9239206;2.4192917;-1.0317509;2.9092476;-.97098118;-1.0292977;.31017971;2.6117353;2.3882971;1.4169137;-1.2896338;5.4382682;1.9944597;-1.3813726;.14759785;-2.4921632;.88308966;3.9101081;2.5699134;1.1409215;7.8244033;3.7811201;3.4652832;6.3066325;.88926005;3.059303;1.4068807;3.2177544;4.1490345;2.5786228;2.972986;4.6743789;.37395951;5.7295666;1.6025482;1.014397;2.2721314;1.0213261;1.0878558;3.7856948;2.6976316;-.95961827;.54248375;3.1333718;2.299377;4.1145396;1.7915748;1.1977048;-.65721101;1.1553675;.2715039;5.3599916;3.9371819;1.1516231;5.3352137;-.21895374;-1.3351458;-1.9035553;-.44162241;.15857333;-.56043601;.97091013;.6033476;-1.6027428;-.11980535;-.011420835;1.0052764;2.372937;.33596966;-1.6931287;-.31354088;.52619392;-.91472369;1.2336721;.2864905;.566181;.27329472;.007793481;-2.1559491;2.8649328;.1999395;.39383712;-.092079259;.92274058;.28678387;.89952052;.41689092;2.0317299;.57711786;-1.7549695;-.09453211;-1.7261591;.8175928;-1.0564089;1.9875789;-.40413141;-1.479431;.31257641;.20448159;-2.4511321;1.3807822;.76172835;-1.3685073;1.6772915;-.60019642;-.88717735;1.2450876;1.0033959;2.1821423;2.172544;-.59973264;1.931452;2.5817051;-2.8234737;-.10792752;-3.0479286;-1.3168019;3.8525238;.58216554;.78374678;4.2491879;2.9518609;3.063648;3.6958127;1.5381145;2.0965259;-.081210621;2.8452435;2.7030325;1.8409058;3.5143356;5.0591326;.17828575;4.8598814;2.990371;-.48780173;2.7608664;1.4143652;-.6689927;2.5840757;.91296887;-1.4887422;.18988687;2.7533929;.75383586;3.4458935;2.8767157;.71950638;-2.2670634;-.5953337;.096665412;5.1474881;3.3954997;2.1369777;4.5753851;-.56494057;-.71354383;59.033836 +-.60391909;-1.2610612;.49855083;.9587279;.85355455;-.70639622;-.29458514;1.1448469;-1.949169;-1.6059059;-.57479137;.16013578;.92565686;.76767552;1.1908897;-.1172631;.45978776;-.40977708;.99193621;-.59333688;-.98957908;-2.8447387;-1.5492603;.19264857;-.62475491;-1.7988358;.90083027;-1.1794299;-.1699845;.11244243;.0096360166;.35244358;-.41374362;-.30271864;-.31408334;-.95136106;.94000256;-.59096342;.2986488;-.162302;.27082908;.64058715;-.17471901;.38900706;.014802068;-.29862294;-.84226;-.12780283;.76460248;-.62076467;-1.0381399;.21240827;2.2896163;.13125536;.5979439;3.1149263;1.8998986;3.0515275;1.1766986;-1.9927281;3.1910372;2.085346;-.69180179;3.4002612;-.062980421;-.63987345;4.5296082;2.6572502;1.6893868;4.5944538;-.33959988;.78833437;1.3311536;1.4529904;3.7602894;5.7360435;3.4913099;3.585351;2.5674863;1.0429159;-2.2808585;-.17191762;-.32655773;1.6565043;1.7609518;2.328274;.31693196;1.5641327;-2.1671104;2.2395384;-1.7907966;-1.4420527;4.9947352;.76064974;.35577109;1.0954217;3.3332155;.644288;-2.6603749;.16652313;.40145105;-1.1872131;.70334512;-.09116102;.10089108;.63171512;-.272789;.59571803;.46613371;.34809557;.64667392;.70672381;-.37838864;.43037009;.49556151;.38983667;.55271876;.61601317;1.0664444;.5347895;-.44489992;-1.2057182;-.70726365;-.60534418;.011863256;-.48687124;-2.3290639;-.8891952;-.28068745;-1.0573283;.27106664;1.2652835;-1.3658229;-1.3618629;-1.0400457;-.60599452;-.78736842;-2.1624637;-.88984126;.9565953;1.8057475;1.2849525;2.2613258;-.65132886;1.1173028;-1.3438982;.43491915;-1.7660267;.71790528;-.44347331;-.11723311;1.224107;2.250993;1.1333678;.30098101;.91307843;1.6353794;2.5950248;1.7588391;-.95960486;1.085234;1.8554947;-.018988388;2.9028289;-.70999825;-.36253709;2.6200569;1.0852512;1.5958169;3.4766564;.37225154;.02857971;-.42577749;3.0610301;4.5612288;3.461256;3.1843565;2.6580875;.67150784;.92592818;.59476721;-.05819292;-.46495536;2.0081916;1.2639251;2.6279449;-.73715711;-.23195568;-2.2481213;1.6183957;.21317838;-1.6544292;3.0006335;-.37748852;.65837353;-.50161982;3.6156976;1.6350772;-2.3109319;.073585451;27.801611 +-1.0190959;-.44440782;1.3673922;-.012582964;1.1903563;2.4036508;-1.0638682;-.56599897;-.82901949;-1.1429021;-1.2023805;.51815104;-.85183549;-.98861068;-1.4637645;-.91070831;.41904339;.01873878;.63630587;-.18570957;.049616549;-.48418108;.67846727;.23922619;-1.2184148;.30689034;-1.6065608;-1.0334525;.59698397;-.68467504;.42897022;.24213569;-.66611844;1.1916906;.86341292;.12114267;1.8404614;-.10927361;-2.0551326;1.7164882;.25742781;.24601613;-1.422785;-1.8434023;.18650244;-.015456017;.018648213;1.0484259;-.21668552;-.21782799;3.589021;1.6369531;1.0321256;-.69619554;-.35301882;4.6080446;1.3606694;5.9111404;.31279755;5.1728439;1.3761607;.35825971;-.46348631;.61274683;1.241878;1.5073876;-2.8481445;3.4311373;2.4757671;-2.9328024;.62789547;3.239819;3.387008;-.24808255;1.6627458;.60121328;1.8055515;2.3332548;1.6566879;-3.1842611;-.49192193;5.7309289;2.5546947;1.1797487;2.0952809;4.5496907;-2.2506397;-1.5469608;2.5650826;-.78671765;2.5041296;.7922529;2.9751112;1.8442787;1.7896907;4.6626487;3.1616993;2.1896462;1.3566003;-.44461709;-2.0925441;-2.4008083;.65574121;.12041189;-.60129571;2.4584498;-2.0673106;.63242489;1.1911772;-1.5175751;-1.7897832;.38662514;-.76617664;-2.3111961;-.87415731;1.349346;-2.0651021;-.17670949;-.092588104;.78556609;-.34079877;.78132182;.068370089;2.6731317;.99971014;.52397662;-.51159722;-1.4994224;.074730456;-.75172156;-.17186798;-.5290193;-1.0824381;1.9036808;-.64122486;.095790289;1.0037575;.18039972;-2.3359482;1.4843311;-.75964427;-1.0894686;-2.6081293;-.35561576;-.68804413;-.20431687;-.4662818;.26525867;.26619938;.76067352;2.5313253;.15023968;.65280759;.19314949;.62895405;2.7341757;1.0317402;2.0252049;.3586868;3.8480084;-.031918347;.89687294;-.5539158;-.70437992;-.13392276;.36643896;-2.5098419;1.6035674;1.2775728;-3.3396897;-.96077347;1.6370299;3.7036097;1.0746771;2.5639222;1.6665674;.85293418;1.2409756;.3830474;-3.1839268;1.7661248;4.2177639;2.1479406;1.0184445;1.1424141;2.8166294;-1.2539351;-.44793564;3.4294558;-1.035852;.64015347;-.21772189;2.9554436;2.7878366;.15094188;3.0306938;2.8852723;1.1599708;.49007055;-.18878014;36.534718 +.54721504;-1.6164179;-1.1618755;-1.6851127;.092010587;.086631045;-.53977585;-.14258632;-.49179435;-.95358843;-.22015627;-.16493833;-2.2461047;.2913177;-.14157675;.47843286;1.4284343;.8407051;-.042600796;1.5030693;-.71069014;-1.7215403;-.04130597;1.4780048;1.0178165;.76667547;.38409966;1.0509946;-.34840512;-.49672773;1.3636433;-.73517841;2.243927;.39644691;-1.1001348;.49035895;.41349798;1.3998742;-.33080125;-.57894886;-1.9767611;.47554177;.062512368;-.77395523;-.64834386;-2.0872302;-.51256347;.5750199;-.053108327;.62800527;1.7611161;3.7925386;3.417753;3.5143669;2.3964982;-.076033592;1.5856463;2.9793887;3.9680901;-2.6864631;-.63963211;4.2121725;3.4118676;-.095347092;2.7567239;-1.2072475;-.083754256;2.4673035;.84435642;2.7599535;.74104929;1.9315788;-1.781274;4.6280832;2.2020178;6.0528536;4.3301978;1.6612949;.25219858;1.759676;.060432259;1.1526155;1.6248318;4.0208273;.049715739;3.8207095;1.310972;1.2414064;1.0141344;.91834623;1.24619;1.9712377;4.8110771;3.0645089;2.9476764;3.449641;2.2450306;4.1046362;-4.5012517;2.9233496;-.56213707;-2.044795;.40382469;-2.0934637;-.63375109;.3032296;.93188745;.66561681;-.84049803;-.91741008;-.43040797;-1.9388081;-1.1492587;-.63830167;-.34503996;.22193643;1.3934549;.43946391;-1.4775836;1.9550263;-.83088309;-1.3642914;-.60999173;.14899495;-.93713468;.22531219;-.25495645;.40651596;.49023989;.34409249;.73667371;-.056125417;3.094409;2.4615099;-.76262784;2.5972273;-.4381164;-.0025083798;.58013773;-1.6960928;-.47762144;.43651244;.09629941;-.32677892;.067112885;-1.7448537;.082121283;.58064443;1.516996;.87522537;3.4279559;1.4097602;2.4092658;1.7748252;1.2544137;1.7735423;1.7111005;2.4740331;3.4270196;-1.2530673;-.16546851;1.3270364;.26064816;-.35774967;.75191259;-1.2539181;-.56689709;-.54277992;1.4027379;2.0771878;.533939;.1711968;.44881532;3.0015755;2.539953;5.3937578;3.6651409;.079972193;-.0082539953;1.0319265;.057085995;-.2148883;1.5524459;3.4639089;-.1095183;2.5063696;-.2498218;1.6656858;.86139494;.26106143;1.4346979;1.2302089;5.9601893;1.0979306;1.0067872;3.2276142;-.30423835;2.8793807;-2.9758661;.79522765;44.558563 +-.67259562;.8890388;-1.6629301;1.5507699;.82138854;-.25403747;-.60713136;.15936093;-.4404172;1.1087364;-.73166662;1.3937552;-.011556977;.04112348;-.82794893;.14034075;-.00090061512;-.83757347;.11635214;1.297202;.65274912;-.1286933;.47001997;-.24968277;-.60115641;.61801249;.52213782;-.44700617;.84213382;-.76265788;-.53491545;-.36367944;2.0326283;.34409675;-.2631788;1.700648;-1.5492349;-.16090517;-1.7386204;.43730363;-1.6073518;1.06801;.52539545;-2.8145494;-1.2515618;-1.1324245;.80414605;-.21120958;.36159778;.20457903;-.23564753;-4.48945;2.1718891;-1.2890464;-1.017504;1.7615714;2.6145947;2.1147492;-2.4785519;.30344921;3.0531206;1.3604108;-.50523549;1.8883252;3.9484007;.48760104;1.5398365;2.8824048;-1.7906841;3.9193294;2.0548317;4.1123791;3.3294938;2.5683267;-2.3190138;1.5267208;2.9436216;2.4592135;.33989736;.6187883;3.4196386;-.66904467;1.4853299;5.5158234;2.043433;-.93254954;3.9793782;-1.293784;.85551983;3.2114067;3.4393487;2.554579;1.1643938;5.9421539;1.2669613;-.1410647;3.030884;4.1351562;1.4782677;2.7041519;-.69339687;.21255089;-1.3155954;1.4540591;-.76214451;-.61187494;.1152394;-.40207988;-.87103665;1.4990084;.91023439;-.26972756;.14800096;-.85789114;-.20944148;.47009864;-.55494797;-.5446806;1.0155112;1.5833684;.45600459;-.85623384;-.36094749;.75253415;.77810514;1.148921;1.7506013;-.05387659;.37857813;-1.9495027;.73317301;-.67471594;2.2622967;-.62977576;.092033021;1.1489093;-2.18045;.45355606;-1.8817368;1.7096559;-1.7379495;.61240214;-.84160841;.29511005;-.74286914;-1.0914081;1.2007773;1.9121772;1.7297864;1.5744438;-.57800692;-3.4358194;.93422282;-.20968316;-.88694167;.40722415;.28972462;-.20049325;-2.3314443;1.4393646;1.3529568;1.9732397;.4325628;2.7225571;1.4393297;.56640726;2.8279307;3.1532567;-.083623663;4.0376396;2.6151323;1.9491574;.73659819;2.2486978;-.80970985;2.2209439;.76428223;3.0231445;-.095318727;-.2257755;1.6916845;-1.1907713;2.4790626;3.6697984;2.4708488;-1.5890222;4.0434661;-.12931503;.90644562;.194684;3.1795552;1.8442651;1.0178021;5.0522146;2.3032632;.29935238;2.7506902;2.4164937;.93530381;2.087409;42.846233 +-.88031918;-.32210255;-1.3743799;.80889511;-.36689177;-.18819635;-.038606804;.29919562;.44532412;-.5274089;-.58042991;-.45631871;.34778732;-.59326828;-.010700213;.27919501;-2.1923687;-1.1220747;.69074911;-1.4440157;-1.3040067;-.62771237;.80515867;.17009483;1.2234954;.62073362;-1.3385885;-.61265874;-.76863724;-2.2387652;1.193849;.1081589;-2.5458212;.61952597;.40562403;-.1736241;.089623347;.6559003;1.616479;2.2543054;-.32393399;-.18899329;1.3544872;-1.1979141;.53045589;1.1603172;-1.2508847;-.85044634;1.1789292;-.86169577;1.7455015;.57666957;1.562932;-.44142908;1.2465299;.82481283;1.2538339;2.8413594;-.80903262;2.6237454;7.0057664;2.0814953;3.0540876;1.4999901;-.50739801;2.9706964;.79123449;1.5086396;3.047313;2.1274619;3.632695;3.1587591;4.2306499;.84476346;3.9711103;1.6580985;1.0984143;1.6456972;.17222048;3.8675735;3.8070595;5.0245023;1.5564579;.80881435;4.8041215;2.4414673;-.24056886;.69794726;5.6119905;-.71036249;4.1645088;1.203593;4.1996226;-2.0623667;.6872611;1.1766057;4.5609317;2.7313781;-1.8411947;.3801021;1.0301374;-.29558307;-.62256402;2.0686266;-.99647337;-.39894706;-1.3624798;.30611017;-.20084527;-.16529295;-1.5942017;-2.9034905;-.38956535;.029051015;1.3382547;-.017036192;-2.6931317;.67697674;-1.6037176;-.84657556;-1.9718257;.70796436;.040003348;.72801489;1.3913769;.5039112;-1.4817052;-.83478141;-.22515506;-.27290201;-.65238619;-.40606526;-2.24002;.43970159;-.39005896;-.78190154;.26642516;1.4459438;1.5448462;.7622171;-.21949686;.41989464;.19014667;-.35298684;.95484585;1.2097843;-.42344019;.82576346;.70385826;-.10951594;-.15699999;.68132156;1.1878437;-.83040792;2.0886116;1.2495426;-1.6606777;1.5910758;-.86567515;2.5942686;5.4824071;.54490817;1.1927198;1.8739299;.068177044;2.785795;.1787934;2.3845053;.25153798;.8091433;2.0591171;3.0863144;2.9905922;.46947929;3.631624;.90574312;1.3505663;1.5057549;-.3283717;4.0339823;2.8971229;6.3530245;.36321619;.90871322;2.442404;3.4194295;-.53793675;1.4350841;3.5089915;-1.0906508;3.6175818;2.8221111;2.073719;-4.1587443;-.40209922;.3383801;3.2502208;1.3130485;-1.2921423;.32797936;40.856102 +-1.4376391;1.5199752;1.4891951;-.68201071;.70969015;.35684821;.86631656;-1.1526479;-.33223838;-.91524523;1.024343;-.54381764;-1.0565122;-.63278866;.41082466;-.72919017;2.2578278;.2659061;-2.3372781;-.24690177;.22370496;-.14434041;-1.3706124;-.82579327;1.3646319;-1.6672865;-.59118003;-.27491757;-.7148357;.68680412;.73715073;.4580673;-.92692077;1.0992817;.31258318;1.18484;-.61180681;1.2541533;-.21072058;-1.4525061;.22775191;-.29899251;-.20097661;1.9405202;-1.2274784;1.3227239;-1.7902936;.49720201;.83156019;-1.4185852;-.075966954;3.897856;3.5371852;7.2718759;3.4162889;3.6301587;2.5860796;-.3976489;6.1313338;1.0359398;-.21649002;2.0457144;2.1214292;-1.2394154;-2.0633948;3.6921973;2.5578887;4.2445922;-1.5608842;.48115098;2.3163543;.4395285;.55848777;-2.6899648;2.6204736;5.2973762;4.9825363;4.8910971;-1.7449603;4.9425421;-.60364556;3.5153971;2.3479817;6.3375683;2.7667141;2.6227486;2.7132313;4.7761393;2.7956796;6.7796564;1.1603328;1.3553239;2.2048254;4.9560699;1.0131187;.56796592;.86491072;2.2210076;3.3281152;1.5087342;.33011144;1.2967368;1.1702474;-3.3063586;-.32728261;.86677581;-2.2603335;-.95652115;.14916556;1.7053165;.73806262;1.2886825;-1.2580714;-.57797945;1.3155932;-1.1946653;2.0510995;.40614393;-2.2736371;.68877745;-.47042149;.67788643;.20551158;-2.0610154;1.3854185;-.55985719;.67373323;-.30015174;.61159539;.55569601;-.71368921;2.4908984;-1.5391936;.026629429;.83859706;1.0662566;-1.3741164;1.0701569;.073196575;-1.3272249;-.48939881;.85029268;.087628156;1.7204117;-.49463373;.2632612;-2.4114752;.16284786;-.060278602;-1.9393064;.94590533;1.2811911;3.6845491;5.6099281;2.6772234;1.9569716;1.4875199;-.41296336;4.7673101;-.12221663;.88852811;2.1014507;.49765879;-2.3976331;-1.6699539;1.4082031;.10440158;3.519289;.71258336;.29201731;1.6499118;-.44963607;-.22121662;-1.8375138;1.8503654;2.3743222;2.4635062;3.4371879;.54046232;4.8651156;-.78266382;.92142099;2.684442;4.1816206;2.9638531;2.3365765;1.7022165;1.8374881;1.3821527;5.1583843;-.49887294;1.0522604;1.0573921;3.5439858;-.02348228;.76633376;1.1309975;3.8147452;3.5431004;1.2173368;54.74073 +2.0393481;-.42360911;.19770162;.86359525;-.45931834;-.27503848;.40227109;-.8391279;-.70270097;.44374385;.256253;1.2452091;-.31593189;-.67128944;-1.4526522;.4806006;1.7502294;.60000885;-.58133382;-.82226664;.15337829;-.83204097;.21845773;.65386254;.16016135;.60761636;1.3803744;-.10979266;.39275986;.32053158;.60989225;-.069753826;-.89604551;.90351969;.64272273;.70300782;1.7371041;.38198975;.42986286;1.2000512;-.6434527;-.957394;1.6424985;-.11654332;.59144366;-1.455066;.1493255;-.8874445;-.624066;-1.6882416;2.9070694;.37104937;2.0827618;2.969743;-.98185295;1.9793806;5.8053584;1.9104357;2.6408124;.94149053;4.4035063;-.11608265;2.0581589;.51088321;2.0655155;3.6893651;1.2246299;1.2819672;6.9883723;1.2025504;-.27635255;3.7436817;4.6803498;-1.9454468;-.29886773;2.4649413;2.345964;-1.1127822;6.7363162;1.7808118;5.2446914;-.13152929;5.1166997;3.0849738;2.6766372;2.1668475;3.2777309;-1.0723801;.13376907;-.074172735;1.5969354;1.7742208;.45805508;2.099086;1.3528787;.67822403;1.6486365;-1.215186;.31196812;.98824364;1.590099;.80885595;-.17203221;2.3485491;.14763588;-.28951141;-.35571283;-2.5933268;-.42243725;1.9458182;.32094181;1.6738724;-.52250314;-.50023204;-1.1087523;.43283305;1.0813016;.032876771;1.9275507;.39138588;1.0885253;-1.4034021;-.96198475;2.047663;-.95836121;.50103861;2.2116446;-2.2812214;-.43792263;.33862767;-1.1837358;1.2354203;-.54982412;.30142459;.021882437;.3400363;1.3417734;.079991095;.57618517;2.1727867;-.22300062;-1.307153;.67433745;1.7026958;1.3132199;.35508507;-.82200289;.36597222;-.044680901;-1.3472328;2.7685425;.39924732;1.5507933;1.567477;-.045306984;1.6874603;2.8305664;1.6152248;3.0102973;1.6677506;2.2364838;-.52151132;1.5667738;.079493232;1.4227554;3.5457964;1.4203291;1.7082564;3.9313962;-.12970729;-1.4763237;2.3302236;3.3437879;-1.0943762;1.176975;.53704959;1.533857;-.59379536;4.5284762;2.0027151;4.0507159;-1.1339585;4.3457322;3.148927;2.092649;1.598142;2.1774039;-.85572368;-.41673923;.49960163;.57202452;1.0542727;-.86948311;2.9177938;2.3471527;1.4528543;1.3081224;-1.9835131;.70843619;.075966999;49.756474 +-2.1804535;-.0094590122;.10053985;-1.2201326;-1.1277512;-.5571655;1.469545;-1.3025937;.64053828;-.43556523;-.7312218;-1.2983097;.40725887;-.77595592;-.76566315;-1.0964557;-.76463759;-1.9138499;.41035542;1.218985;-1.4389846;.36913005;1.0264176;-.084784828;-.41422814;.41967967;.077177189;.057994373;-1.7645414;-.87387377;.29793495;3.2611763;-.49252486;.89131689;2.8956339;.17303099;.18808007;-1.2167106;.5173859;-.13499241;.59656376;1.3472451;.88298243;.74658191;.22789802;1.6058093;.55719703;.66329724;.22741398;-.24431488;.96419179;2.6552663;3.8949993;-.53390962;3.8154457;1.6179886;-.34037295;3.7069798;4.2093329;4.9790826;1.0286322;1.2926786;.6440438;1.8709286;1.6727428;1.8649679;5.0655007;2.7287581;4.5596495;-.54530674;5.8422599;.8290776;-.64512384;2.0971713;-2.5947063;2.4845891;-.58363581;1.0290027;2.0943341;1.3016835;-1.1555514;4.0390081;2.5840845;.03743764;4.7100549;.61352211;2.287488;4.4766459;3.1472597;-2.7017512;4.5172024;-.1211068;-.54695684;.544348;2.142452;4.8326354;-.33516365;1.619617;.47259423;1.5069944;-1.1054062;-.58332074;-.57228416;-2.4800818;-.76292306;.42256758;-.65108174;-.60611463;-.50428385;.44919342;1.0361305;.27189031;.18450518;-1.6783415;-.6289047;1.4967326;-1.3847032;-.73631835;-1.7497035;-.41525397;-1.5792342;.86022019;1.6994746;-.34855416;-.064212471;-.26212353;-.18440822;.51223314;-1.6231481;-.24488969;1.2929325;1.9409426;-1.6653467;2.4303219;1.865755;-.26167876;1.3673036;.88390756;2.0731475;1.3160623;1.3567226;-.098699056;.08365716;-.36871669;.91253275;.91176689;.42926571;2.1102719;-1.327302;-.87515986;1.5129966;2.269743;4.2222486;-.46284583;1.0234638;2.3585134;.3255572;3.0293376;4.7573099;2.5297587;.50334793;1.208389;-.26462799;.35675266;.58188182;.06063389;4.000525;.84202558;4.6526856;.10556828;4.6648455;1.5788951;.038415346;.13813512;-2.0375364;.28907013;.34683824;.76111537;-.32067814;.91871327;-.70262939;3.5413694;.6978966;.823847;3.7832632;.90983957;.89356571;3.5846195;1.3333422;-3.5294602;5.2566996;1.7389754;-.077565201;-.8168686;1.7103885;3.4263527;-.25551295;-.05508364;1.3447101;.33187059;49.300587 +.70006418;-1.4793725;1.5702742;-.50585192;.098677084;-1.2807264;-.79140085;-.7392242;-1.36344;.84034139;.80289948;1.1073769;.77664787;-.20906539;-.25167295;-.3210766;-.3806504;-1.1420273;.89265245;-.62893349;1.1983258;-1.3384215;.39048901;-.48433289;-1.1132896;-.33088863;-1.2254119;.58450484;-.43383852;-.63996398;-.28332633;-.76321024;-1.437981;2.5750616;.71970719;-1.9758941;.51271492;-.038526133;-.50637347;-1.3003525;-.1401899;-1.4276158;-.12486116;-.68467879;-.36908481;-2.9394884;.95275754;1.256467;1.4120274;-.35636002;4.6781988;-.49032918;5.7567263;3.2107282;.32681379;1.6338129;3.5417356;-1.1078682;-.26984465;3.3570099;-.31574067;3.2952232;-.36656508;-1.2782497;1.3293391;5.4663858;2.3904338;-.57615197;3.5366271;4.4199305;2.3187313;1.8984592;4.9542532;2.0134091;2.0015364;3.3326199;3.7092867;2.4598415;-1.8795491;3.7575197;3.0820773;1.1231158;.803523;-1.111863;3.0846653;4.5174451;2.6435211;.26066047;1.8032097;.51497519;1.251426;3.9897203;.62304783;3.7952876;.83484358;2.8970282;-1.9478437;3.8853524;2.7189276;.20324188;-.069843672;-1.3611691;1.5276381;-2.0536335;.044594135;-.53935093;-.85162693;-.19215892;-3.3827333;-.87785482;1.5429263;1.290157;.38037592;.58953142;-.016063647;-1.1173953;-.27790383;-1.2447729;1.9913994;1.0986025;.33402961;.13855767;.26146629;-.10040424;-.3780598;-.34544554;-1.3023759;.87933207;1.1684216;-.38502508;-.58469439;-1.9986786;-.635288;2.1003785;-.18216228;-2.5765784;-.27256525;-.91418326;-.063081846;-1.577666;-.22904877;-1.0704755;-2.4034514;.011889381;1.0991433;-2.9968848;.094990648;2.1342888;1.7151012;.45356959;2.7336347;.17714205;5.3269458;2.7084687;.27765921;1.7457299;2.5189524;-.37112892;.19188456;-.30182448;-.17418732;2.9834719;-1.4533755;-.92922425;2.3146379;4.6402597;3.7587724;-.2472869;1.6476355;1.4333978;2.0343432;.38946301;3.0576136;.51649225;1.6032114;1.438823;3.4864175;1.3106427;-1.5804131;1.7056282;1.6461798;.91670209;2.2392981;.76296312;1.1953899;3.6899405;3.240669;.49410254;1.4556247;.33053431;.73954266;3.3862717;.15766698;2.508322;1.6781621;.014315036;-2.1827536;2.0475473;2.0946922;1.9523634;57.550549 +1.7476351;-.13583902;1.5188911;.36463943;.76446909;-.21726233;-.36689401;.40906391;-.1356338;.63291258;.91760647;.68238914;.33735117;-.26266333;2.5091348;-.57551616;-.065764569;-1.1031634;-.62186199;-.12408127;-.34699351;1.8763356;-.8418014;.73732883;1.5544946;-1.4061419;-1.9545078;-.19224194;-.92344642;-.84262979;-.56476194;.34056234;.12005071;.85925758;-1.5758268;.13676164;-1.9948244;-.039648194;-.48505092;2.5231981;-.08439219;-.71865314;-.88944691;.24502081;.15091544;-.38363567;-.61916858;.29889846;.95934498;-.13696615;1.7509524;-1.020664;2.8806584;1.8170173;4.2129898;2.4524946;4.1585455;2.2312706;2.5855393;4.2715015;-.23726648;5.0724883;5.7201943;-1.4579027;3.7648735;-2.7960618;4.2308202;.63086939;4.2037816;.52851456;2.6097457;3.7241364;.37276062;4.2986054;-1.2770201;.48338193;-.64070994;1.9344532;3.6922545;2.2978396;1.2356513;3.1299827;-.46807969;3.3384812;1.6416157;-.10817952;4.3600316;3.4985769;-3.0321565;.49685612;2.7664208;2.359678;.89809656;1.0656103;4.0209012;3.5418067;.59141332;.50806433;4.9308338;4.2332597;2.048372;1.0619508;1.5215117;1.0368234;.25420627;-.39992744;.65641236;-.73567432;-1.3300493;.7861824;.47126421;.41603926;.52459764;-.65435082;1.4199481;-2.0136647;-.78119332;-.76405007;.42653826;1.8058076;.90783018;2.7045035;-.55309325;.48607627;1.2125237;-1.109462;-.89698321;-1.3212723;-.38352892;-.69868296;-2.5569131;2.8844216;-1.0436258;1.5078428;-.69482338;-.47417554;-1.2358565;.63230896;-1.360395;1.8326215;-1.3775973;-1.3443158;.30870414;.60722327;-.089999631;.38472375;-.23483287;-.44897154;-1.2564977;1.1946394;-.061529335;-.60488063;2.7774618;.66380614;2.985255;1.5200841;2.9861286;1.6365198;4.2942834;2.6356621;-.29371646;4.1110411;3.8133481;.27553004;3.0831783;-3.3853619;3.9100657;1.9286611;3.5238895;.75126362;1.0831125;1.9711833;.12981553;2.8770626;-1.0435579;-.77320999;-.66961151;2.2846591;1.3419323;1.5068234;-.97300762;.42544648;-1.4569393;2.3270023;.86903882;-.32389125;3.2059877;4.5188332;-.89022154;-.027325772;1.9111006;.90074861;1.0817629;.53817272;2.3561549;3.3118815;1.2038045;1.190797;4.0425849;3.9823296;53.265736 +-.099677071;-.966968;.19249171;-.11750326;.8993293;-.11930382;-1.544336;.93839908;.013014145;-.47764525;.72138351;.38643885;-.95486581;1.8073726;1.3006228;-.31452718;-.37779599;-1.1677358;.99293852;-.51151425;.41992143;.517003;-.10830048;2.3320603;-1.4837353;.37034288;1.807189;1.7918097;-.94842595;-1.6565506;.17288411;-.058272239;-.40867108;.039047878;1.316255;.73387188;1.1647141;-.78451896;-.30320218;-.47731259;-.66045892;-.25661209;1.5041258;-.14993286;-.67291707;-.044552911;2.0583136;-1.8144085;-1.1746066;1.1507795;.51637399;1.041973;3.1890023;-.30514434;.49850976;3.1640263;5.3598518;2.4501691;2.6813614;5.0915742;2.2382057;2.8106234;2.2357714;6.0127335;1.9441452;1.0801742;-.38752702;5.667603;4.2087278;2.7430205;3.41992;-.34534726;1.4689059;1.0031149;1.838809;-.095978655;.72723079;2.510771;.74362546;.095546365;2.0582137;4.517941;4.4328084;1.3727502;4.821775;3.6876335;2.0568244;5.9828038;-1.0311809;-1.3908356;1.4191386;.58089072;3.6814592;2.4387116;.69589251;.90852582;.78663325;1.9580692;2.2249198;1.8759116;.7893154;-.080131777;-.10336591;-.92847097;1.0969812;.55926305;-2.0560136;1.0488532;.46161449;-.18255514;-.12284096;-1.1973256;-.10794929;.31484744;.29451811;-1.1749462;.76712841;-.88946086;.99514121;-1.1724538;.73123932;.45345885;1.1446614;2.1176214;-.82179844;.47370309;1.1752074;1.9994823;-1.6358125;-2.5309076;.81798548;2.9755661;.1833144;.34822324;.42296559;-1.3466167;-.43384126;-1.0067489;1.4560181;-1.0573362;-.21370527;-.19250087;.25553411;-.33728993;-.21091263;2.1518917;.80103672;1.0449188;-1.8437556;1.2416931;1.243997;.34122318;3.0664227;-1.1951091;1.066771;1.9457555;4.0833206;1.4739151;3.9220142;3.9903603;1.1912729;1.1365566;2.3481884;5.1936269;2.4320631;1.1093093;-.094969846;2.3974025;2.6172688;3.3756433;2.8347795;-.58223987;-1.304597;-.20058686;3.0893703;-.65439469;.9965992;1.5173889;1.0481682;1.0831326;.82420033;3.4959526;4.7840304;1.0669326;2.4924853;2.7080278;1.2052288;4.3004422;-2.0026114;-.58359706;1.2357525;-.49930787;2.1942065;2.7518129;.36236694;-.39794466;-.59375775;.31630889;-.02534664;.87113279;60.668522 +.55348831;2.0480535;.53450555;-.40734956;-.67964232;1.4323288;-.30696049;-1.0006987;-.28985259;.17351638;1.2857531;.3328988;-1.8409737;-.81395751;2.8302827;1.8159559;-1.6119889;.54187047;-.15644437;-.78712404;.2687481;2.1273804;.25782666;-1.7150285;.2149602;1.3422568;-.42750496;.77155328;-.13939182;.45947009;.87212533;-.46355915;-.18255113;-.2863321;-.2980701;1.9636447;.29305565;-.55386627;-1.2658838;-.37182629;1.8280705;1.2356781;-.31238535;-1.0158238;1.048061;-1.4719856;.9644987;.26994488;-.0080847275;.26721171;-.45444831;-.32340318;2.9546852;2.7665594;5.3447204;4.0026655;-.39150086;5.4325194;-.84414834;2.4026644;4.1173058;1.7475159;3.1861756;1.5262793;1.5461006;2.3813071;-1.7736728;1.0981942;4.6664391;1.6622403;2.1241899;-.706469;.55234414;2.5063481;2.2060969;3.1985688;2.1735473;1.0327361;2.4356658;.42952135;2.8908839;.39277214;2.5228002;1.1480501;3.4114671;-.91805285;2.408921;5.0103421;4.3637819;.79112762;4.7155328;.9146052;5.5765467;2.4387946;5.4649644;3.5843034;2.8403823;6.3379831;.020067224;.96013719;-.88763368;.8905915;.36852333;-.30591258;-2.1494079;-.49797392;.15345588;-1.7354459;1.1237205;.4235234;.25544617;.19739711;-1.0682485;.69891763;1.7494974;1.3993874;-.021092519;-1.0341648;.49234939;-1.0264823;1.0533359;.52349997;-.33105353;.70443171;.13084899;1.0548896;-.024609519;-.35259521;-1.0311077;.65239614;-.1269493;.063972592;.15761;-.89568204;-1.0337577;-.77558517;1.9788362;.54343194;-.61938846;-.46244794;1.2969872;1.0690045;.61731923;.31007746;1.9485472;-1.3118113;.93926501;2.1953907;-.47654441;1.8913461;-1.6952379;-.43415895;2.6294773;3.5490272;3.9533505;4.1640902;-.51888674;3.8835039;.93778682;1.330103;1.0608085;.51044691;2.2163024;.56089866;2.0681922;2.2073891;-.24816312;1.1199486;3.1935468;2.9398468;2.4509494;-.30465245;1.7003461;-.67183977;-.34732348;2.1758835;1.411031;.58899277;1.9970983;1.1601554;1.5001559;.56330884;1.3661072;.00099241512;1.5080914;.27461365;2.6261852;4.3808308;2.3662374;1.7203044;1.5936757;.50239998;5.4326587;.68734133;3.3270633;2.193387;2.213115;4.6660252;.49732235;1.9583025;51.873287 +-.88890529;.7653026;1.2791227;.7825256;-.44250599;.28576058;-.23023838;1.4546653;-1.0711774;.047207672;.063434392;-.14535075;.60396355;.014847995;-.16792196;-.11682429;.63566619;-2.9510934;.53170806;.34228632;1.2939138;-.10654106;-.59555358;.14130181;-.14429164;-1.6611054;-.61554563;.7026695;-.48154297;.35383931;1.1857383;-.25488651;.27428636;.16941512;-.93317354;.56381691;.25482908;-1.0255784;.99746627;1.0500669;.40943569;.50519145;-.80512118;-.99583322;.067757502;-1.5194731;-.85896182;-1.6751487;-.9868018;.37256622;5.8611665;1.0210352;-5.1025109;3.0313752;3.6664608;-.67747122;3.2219193;1.8775371;2.3221636;3.342582;-.76292109;-1.3996894;2.1706369;3.2372019;4.0006747;2.2681842;5.112679;2.7131121;4.2454982;3.8985841;2.1981862;.45896819;2.8108931;-2.9901235;.94126922;3.3287389;-.36350441;.81532478;.53766191;1.7120086;-.84241384;-.77983165;2.850127;2.8780317;5.6803198;1.6226412;3.4113288;1.2728609;.48952037;1.4123163;2.2104146;7.0469599;5.1387591;2.4768782;1.5462513;6.2948442;3.3502591;2.07323;4.2364273;2.6531098;-.45449317;.77070165;2.101084;-.22514215;-1.8202333;.49717516;.33556038;.44094059;-.54573649;-.51189417;-.71566015;-1.2467223;-.028060362;-1.330838;-.78741986;.48949525;-.73886329;-2.2107191;.34927782;.97617471;2.6146591;1.5098815;-.77048433;-.74580234;.61300009;-.7854234;-.829638;.26630014;.85977268;.0024274704;2.7345448;-1.7080922;-.3052223;-.61917889;-.73383039;.47366869;1.4644308;-.26467374;-.046621639;.99071139;.20197624;.3563157;.95113868;.77111089;.444161;-.21987185;-.7398603;-.29274598;-1.0111885;.70974916;2.7982221;-1.5164068;-4.1164427;1.5530438;2.5902674;.48794585;2.8221691;1.0791095;4.3259592;2.6687253;.90104973;2.2603612;2.2159228;3.1982613;3.9710305;3.2575524;2.3393164;1.7539178;3.1043551;1.8065475;1.757498;2.001971;1.3507247;-3.0609767;.45747885;1.9252268;-.025716268;.59751976;-.92631435;.9814797;-.82488006;-1.2935231;1.9696114;2.7065566;3.3863661;-.047732364;.88407922;.15124564;1.1021174;1.2155316;.8605262;6.0768399;3.9399552;.63244367;.66240597;4.7569942;4.0219636;3.2040298;2.3917077;.60612845;49.275013 +1.1269848;-.95919544;.99993771;.22824763;-1.6903123;-.76797932;1.5769532;-.15320921;.19995393;-.26297712;.097645223;-.18828012;.31652525;.19929017;.91351432;-.96201146;2.1166298;-.20635848;.14448564;.036800589;2.8546884;.95872372;.14871238;.61366588;-.40470916;.81428903;-.10450184;-.73586345;2.0779843;1.2317272;-.29973751;-.086693347;-.34900799;1.4503145;-.1479793;-.29472274;.64148915;-.64143646;-.34379235;-.4392736;.90097523;.2714999;.54191524;-.49410269;.37094912;.61361122;-.32496655;-.10664207;1.5697645;1.1465825;1.0083574;.20579189;1.2111109;5.6162043;4.8499432;2.8281386;2.0415449;.4328095;2.9016404;-.30409613;3.106353;.93403375;2.8947825;4.2226233;.71031523;3.214788;2.3266296;4.0081911;-.080485612;5.6834898;3.3240702;1.1403397;.99315125;-.22090545;3.33514;2.0579777;-.40630314;2.7997441;-2.1427717;5.4774475;3.6755438;.63862514;.17971911;1.9089111;-.84957105;2.7515514;2.1269016;3.8348119;1.9266759;-.049005181;-1.0503497;-.13905255;-.075603604;.80201542;2.5310998;3.3269444;5.4776917;2.857466;3.6802411;2.1631057;1.3530111;-2.4091494;.7903077;-.028408309;-.085955113;-.06814383;-.43011901;.82784557;.280083;-.84869719;1.9903249;-.19306406;.30720225;-2.1429543;3.1495965;.30506128;2.8495352;-.33034989;2.1922777;-1.939013;2.4873981;1.0031897;-.49370533;-1.5244251;-.15229002;1.7173494;.76040274;-.82598799;1.4637722;-.21912493;-.19817585;.053342544;-3.5929282;-.31124318;1.9689932;-2.0527143;-1.0580641;-.43958062;-1.6176505;-.58797675;-.83182973;-.72805154;-.60591;.30917466;-1.1713502;1.0201688;.10592422;.20445891;1.3327652;2.5655761;.74184585;.47580287;.8629905;3.9206536;3.0618594;1.5761235;1.5872127;-1.0074152;2.5079052;-.30794397;1.6759834;.46539229;4.0371165;4.4338694;2.0470955;2.423315;1.3922169;2.6195524;-.54130274;4.9778466;3.0672455;.34689224;-.5259757;1.3821986;1.7282698;.53093898;-.75832242;2.649955;-2.1299279;3.8991311;2.3006365;1.8802117;-.33213735;1.0543791;-.2506707;2.0715246;1.4944135;2.0527854;1.192649;-.70139235;-1.3159788;.65526485;1.0942845;-.47854823;1.4034957;2.0055399;3.869374;.71231884;2.4175665;1.5298142;59.668289 +-.82851684;-.063089691;-.82564789;1.3297724;-1.0554068;-.19633421;.94110239;-.71451145;1.5431653;1.9667274;-.45647934;.2354628;.49049929;-.17966805;-2.7859566;.67235953;-.71802479;-1.5398072;-.39861304;.19797705;-.57650208;1.8325578;.22092085;-.19004489;2.1667349;-.18530782;-.65794402;-.48466477;1.7450056;1.6648289;-.57104856;-.048056733;-.64912122;.79077083;-.69210672;-.53520519;.25471711;-1.184655;.45176178;.858208;-.41903278;1.1751361;1.3703626;.21057062;.33767605;-.073408887;-.50158882;-.13768475;.14791538;.19561896;4.8853669;-.42866114;2.139576;-.86663049;1.795426;3.6428432;3.2645178;1.8877417;.13817409;2.3240571;.78442168;5.0187745;4.8240547;1.525105;2.2719605;1.2571173;1.8945564;3.4982872;.59655178;-1.8963958;4.4350176;.24564135;4.3125;2.0448627;1.1418464;1.627067;2.5914447;2.2036602;4.0565872;3.9991152;.17109719;-1.2066499;2.6588213;4.2735496;.70896155;1.6336344;-3.6846285;-1.0027584;2.3504324;2.5547071;4.5536823;3.0417297;1.7041112;2.7651486;.57957196;1.5251352;.064555064;.134652;-.4704847;-.15241949;.86751616;1.989771;.21193103;-.15724313;-.7856468;-.20673785;-1.2658261;-.27374762;1.12976;1.1377715;-1.4165028;-.40648744;-.98319477;-.60870147;-2.2577906;.38679969;.72786975;-1.6709876;-.0079221483;.80236709;-1.2403314;1.3579558;-.32389176;.2133961;.2413794;-1.5509799;.27625471;-.22070287;1.3359956;1.0583788;-.19438131;.45417467;.10094354;-.27437961;-.65418494;-.13416414;1.7076036;-1.4596924;-.34910312;.21077852;.18364933;1.2538943;4.4038801;1.0421842;.63258827;-1.0486183;-1.0588483;.21513836;1.2047821;-.29638559;3.2611203;.081982434;1.4065503;.38269883;1.7512506;2.6371641;3.0043187;.71868557;-.31849462;.40490079;.57717794;3.0336659;1.7972306;.075445272;.76500505;2.3971815;3.8685753;3.7702892;1.3220769;-.77222639;3.4208021;-.40833309;3.6168871;1.3152121;.93756247;.32992932;1.8053257;1.4841815;2.2200854;1.8993602;1.1571453;-2.2183676;2.311342;1.4238379;.72916287;-.79324353;-1.1022791;.032966804;1.8866763;2.9879618;4.2190604;3.4006457;.30665946;.55441916;.50385702;-.42822009;-.65102744;-.95744628;-1.2267389;.96046299;47.327019 +.46098688;-.10961986;-1.4209596;-1.4549731;.9907276;-.084439725;-.041263066;1.8091804;-.35234141;-2.7337911;-.19190311;-.57531244;.045940831;1.035762;1.378127;-.78252155;-1.4975379;-.79691899;-1.4946076;.66730464;.17869453;.3851901;.38475916;.0066708992;-1.5678412;.71571231;-.93486154;-.91922313;1.1705275;-.65488088;.78848469;-1.183247;.34241408;.34152043;-1.0298896;.58379281;.9939521;-1.2034407;.70388126;.88880241;-.65100098;-.16346687;.18834689;-1.2097968;-.056313183;.67562139;.50350785;-.30234891;-.4103539;-1.4843402;3.6789579;-1.358043;.5933677;4.5276265;2.5150449;-1.6732168;2.2117162;1.0213047;2.6232474;2.0516715;.6465131;1.0797153;2.9274657;.0034834573;1.8650694;-.51413924;2.5009243;1.4859718;2.4498484;.091316596;-.90590513;1.6056714;4.1082487;5.1173806;4.481606;-.47888097;3.498867;1.9029814;3.7991209;.72827673;1.1977302;1.2518563;.2245591;2.0949278;.54816151;.6277594;4.7686181;4.0249305;1.8454334;2.5381913;1.6693647;2.6283092;-.53227162;.59856474;.40902689;1.9876791;1.7813503;.24451716;2.5751121;2.0789235;.90867877;-.025793657;-.9242028;-.27877653;1.0500576;-1.40291;-1.2430556;-.12430187;.70735598;-2.3372099;.44548175;.12208661;.059161469;2.9111447;.27066705;.33722371;-1.621557;-.79068893;-.1362547;.75689322;-.70992327;-.59375191;.83806109;-.771276;-1.3148404;.19669136;-.80606806;-.69593608;1.4057444;-.43572614;.17245848;.3305921;.99524748;-1.8769289;-2.6759577;-.55176687;.66108066;-1.1231856;-.81255788;-.31514391;.72195172;.80111533;.48944509;-1.3431251;.052560166;-.76404625;1.4419794;-.71502751;-.60870051;-1.5820363;2.2830162;-1.022917;1.4113605;4.3573751;2.828155;-.32619128;3.4583251;1.3220456;1.7136503;1.5146071;.80492496;.38539183;2.012727;-.622832;.24075836;1.1303222;.83430463;1.0455675;.85130674;.27306435;1.2808886;1.3433411;2.5728409;2.6079979;3.5789075;.41482428;2.001874;1.4594008;2.4197505;-.42233771;1.510232;.18365125;-.54096061;1.7923934;-1.5429121;.60010701;3.3094857;1.8770119;2.3773329;1.7715499;1.1420441;3.4468589;.75854999;.74982554;.64093709;.28661323;2.7928581;-.14678948;.76760083;-.19978078;40.516335 +-1.6543241;1.0066547;-.26840952;.37864143;-1.2200797;.18748911;-.020786518;-.53374469;1.282522;-.87100232;.23342326;.90972269;-.47906616;2.4151721;-.85026813;-.71046996;-1.5205809;-2.2048316;.31680301;-.14143708;.20457189;.62804097;-.30838358;-.84735149;.95046651;2.2297208;-1.0129715;-.23366968;.14605938;-.11468874;1.2192887;-.96113539;.62486887;-2.7628999;.14558236;1.1909758;-2.1679418;.049589518;-.74247187;.99406272;.25802064;-.34625927;-1.8964255;-.43693718;-.21069242;-2.0629392;1.1032087;2.5910113;-.18550655;.65188229;1.8202696;5.0802455;3.4408805;2.0483518;4.5704427;3.2047198;4.8556352;-.27223063;3.0038257;.97642463;.77774322;3.0516224;-1.5870286;1.9263924;2.5703073;.03240528;3.0346322;2.7201345;.25490162;4.3931561;1.6790074;1.2666626;.22531286;4.8011255;-.36892357;1.5414863;2.4573138;.04661382;1.8496368;2.0623944;-2.1407015;2.8107054;1.1645607;-.87803572;-.74481118;-.42505744;-.43355379;2.9379761;1.7555689;1.2990608;2.3061624;-5.2489719;6.3494587;-2.5450957;.39653111;3.292496;2.8009953;2.022444;1.9047226;1.7865044;-1.6494387;-.15126526;-.72731382;1.3212557;-.82735509;-.4216294;-.17478563;.86908406;1.405362;.18683648;1.4411951;.48790497;-.34654093;2.6953976;1.4607626;-1.4473768;-1.7398299;-1.772999;-1.1565138;.4357571;1.7826059;.62883049;.96198624;-1.7523397;1.5763131;-.35722011;-.92829496;.19502388;1.4019082;-1.263998;.91240269;-.35201252;1.5205078;-1.0011743;-.26078019;.366952;-2.1249261;.51060724;.18536736;2.4258349;-.8874535;.1383628;-2.0587852;-.24287976;-.0030110152;-1.3376491;-.29063353;1.4663056;1.420969;1.637736;1.3137112;4.2962146;3.6022637;1.2448446;5.090724;1.6255004;3.7733629;-.62809747;1.3861732;1.8112676;.51941007;3.0295484;-3.0864131;2.5914614;3.0008807;-.20664038;1.9469465;.74476439;.5448252;1.6682212;1.0653977;.57720482;-.21387675;2.3190823;.4759036;-.016165776;.35666266;1.7455255;1.595295;.97820377;-2.7041576;2.7958736;.71394223;-1.6067708;.75997293;-.58635086;.059169613;.35867682;-.22556855;.42725822;2.6178923;-3.7078569;5.205647;-.90194541;1.3559901;3.7772608;3.2313716;1.7993323;2.1298773;1.1332105;36.079826 +-.87965399;.10942931;-.31031981;-.73732519;-.55697215;-.47855234;-.58208477;-.80495405;-.51796919;.78700686;.76628685;.26202926;.86533767;.79948598;-.8702032;-1.3081582;1.6952296;-.85027981;-1.3568455;-.31349164;-1.1391751;-.8454513;-1.3038832;1.4169184;-1.303247;-.52922571;.0047056885;.24628322;-1.1924105;-.04193731;1.4304693;1.6056449;.4950977;.6446988;.71394801;-.6744498;1.1076195;1.366919;-.50224549;.55991089;.091286577;2.29356;-1.3784562;-1.1569341;1.4319787;.3718338;-1.7300315;.17720473;-.34900296;.52443552;2.5008166;4.2991724;2.6162384;2.4447322;2.338856;1.7057861;3.0873458;1.7146525;-1.6583669;1.2661512;3.2560954;1.5122904;.050445683;.91492575;4.7993793;3.8054371;-1.6624804;3.4747088;-1.0788964;3.9438558;-2.5089173;.84104818;2.71387;2.046104;.60337949;4.3909087;2.0988603;4.7447619;3.1783845;1.6279665;7.9145589;1.0335263;.50499886;-.61116886;3.5756094;-.42278337;1.1820666;4.0243468;4.3808622;1.6208534;.97567034;1.7742949;2.0776532;2.8112111;2.0687904;1.0507977;-.059757534;3.0672269;7.5711675;.64227211;-2.2564161;.14791805;-.5487656;.95332766;.27796397;-1.9895375;-1.476052;-.2353127;.59242558;.34862262;1.028854;-.673841;1.7073393;1.9749808;.61953688;-1.2326455;.39569503;-.7783528;.76995021;-.33757293;.41965798;.0059387488;1.1569209;3.2140241;-.19499078;-1.6094114;-.5927965;.66406697;1.0118225;-1.1070572;2.2587857;2.0376632;.9190073;1.2828587;1.0306982;.17233822;1.3816034;.35852855;-.95642447;.82288176;.17005025;2.1427863;-2.0155802;-1.1264997;-.20084688;.038878925;-.033672713;-.34006235;-2.6130455;.43479523;1.9477224;1.4521143;1.3577256;2.6022999;1.8796639;.31842455;1.711861;-.57859111;-1.8229204;2.2097442;4.0612493;2.108597;.36141622;1.1265496;2.8391845;.90593201;-1.3098775;4.9328146;-2.0793307;3.2464862;-3.1163127;.37329483;1.583352;.7097317;.49805406;2.3367286;1.6344953;4.8993692;1.7962489;2.3258767;5.8047776;.018871555;1.663987;.56369305;2.6647949;-1.209812;-.069262564;2.7178545;3.3648033;1.2033687;1.1714765;-.04031473;-.17932151;1.7432132;2.022311;-.023883298;-.333437;2.2954917;4.8848548;.72961873;53.311123 +.75349426;1.3608288;.086509421;1.270851;1.2429086;-.99983072;-.43495244;1.4374696;-1.4226518;-.98333716;-.0089184586;.72594476;-1.536505;.74217367;.65136129;.022821648;.33269635;-.19023511;-.38004717;.1937353;1.4489311;2.4248459;-.49884468;-.65742654;.52632475;-.003110328;-1.1445994;-.092610687;1.1631336;.85271525;.91296029;.97525787;-.80290967;-.289381;-.21133639;.58308625;-.19445425;-1.99535;1.0427952;-.26908925;.53500879;-.56782186;-.99148524;.093023762;-.57413214;.76958966;-.26485994;-.06781783;-.24809849;-.47200403;-.76516235;1.3973371;1.0248448;5.4365053;2.3216546;3.8861682;1.5896857;4.2028475;1.9242886;2.397609;3.618171;2.1304924;1.779799;3.7508042;.43254313;-.86581582;2.7407131;.90357459;1.9726311;4.0885906;.52872139;1.5636369;-2.221457;1.5296708;7.7493029;.26963457;2.8818884;2.0622756;1.86173;-1.7288179;2.4918492;2.376379;1.7433773;1.8592671;1.4370097;4.5064344;4.0701189;1.8435993;3.2399952;3.0038857;-.11765245;.5892911;3.1777387;2.6572123;.81006277;4.7872143;4.2019386;4.9049697;2.3434644;2.8304732;.82110417;1.1530446;-.048257984;.99127215;.85452402;.96432543;.53630358;1.2637202;.48129815;.56027287;-1.772307;.13942306;-1.129981;.8478626;-1.0815507;-.58571321;.64604878;.89334816;-.078315392;.99207497;2.9985216;1.2859188;-1.2120805;-.38898069;-.52379036;-.32285297;-.93888533;.58761096;.26731518;.48170358;1.209955;1.367717;-.28186357;-.56607229;.78836155;1.0335412;-.82837385;-.92177439;.15329213;-.82667154;-.35176083;.096230738;.59290582;.9047541;.64334923;-1.5685699;-1.5028443;-.52996469;.087935708;-1.5280606;-1.4096844;1.2539216;.32060891;4.8615823;.10831086;2.1025047;1.1692756;2.8957093;.39541391;2.2269566;3.2664649;1.8518333;2.0458839;3.5225635;.45574543;-.80941564;1.1914077;.11000714;.85757047;3.2815013;-.36700714;2.291085;-1.8504182;1.8782741;6.2110109;1.5202467;2.9378936;1.7488902;1.2091675;-1.1442981;1.6836146;2.1770976;.51373458;1.0267997;2.0954916;1.3635811;1.1169684;1.8009845;.91564566;1.2836777;-.18540256;-1.5432358;1.9854299;2.116822;-.31937397;5.6121655;1.9091879;2.8648758;2.9130292;2.1032631;64.392517 +-1.1552234;.23810056;-.24246921;.0063805212;.34517521;1.6595203;-.081908725;-.29824331;.76808798;.48441184;.31561297;1.6002135;.57030344;.1392383;-.022123644;-.6543445;.52159446;.44389865;.18029314;-.34704658;1.1052091;-.94326621;.62681669;1.5583261;-.37088722;.032689411;-1.1715231;-.42471191;.99370867;1.7520366;1.1810175;-.74587053;-1.1956403;-1.2734646;1.856967;-.28648853;.49306381;-.39805478;.077105552;1.2747294;-1.2164651;-.19906293;-1.317719;-.8044194;-.59010518;.40079179;-.51783812;1.1155527;1.2115386;-.49201533;2.8458407;1.4723258;-.25806072;3.5812266;.19621418;1.3763852;5.0101285;1.0357076;3.2509489;2.6193163;4.0831504;-1.2964364;2.0054166;2.7317867;1.8427442;-1.2193674;.60847771;1.0567436;3.6109548;-2.6810582;2.0416081;4.4819465;5.2349815;.73120385;3.794992;.040743176;4.8095245;1.6957686;1.2724874;4.8142848;2.1572423;2.1214659;.80544186;4.0469055;2.7123213;3.2147977;6.1796122;2.0825064;.43741974;3.9600055;-1.5723093;.66328043;-2.205205;4.1955733;4.5185618;3.2410359;3.9829223;3.25404;2.6697476;1.8630828;-.9941628;.26044169;1.4609857;2.1867704;-1.2373525;-.89743835;1.5983438;-1.6961095;.80376953;-1.29855;.63223207;1.8005108;-.45785338;.60987729;1.3823898;.18069695;1.0929877;.069542199;-1.7746092;-1.2001183;-.14185695;.50427115;1.9588418;.32779801;1.0698694;-1.0794147;-.28086779;-1.127093;1.3865503;1.0412146;.087580457;-2.8259175;-1.2464509;-.57044631;2.2095308;.65502;.38115805;-.41994864;-1.0212322;2.3868334;.2628262;-.97758579;-2.3824654;1.2520183;.82828838;.40735143;-2.3902733;3.2495937;1.3686153;-2.0502486;-.033509478;.94792336;-.76951629;1.1616895;-.13991751;.51917881;2.6622043;2.5433121;4.1862993;2.195147;2.5488348;-.23413797;2.0020607;2.9025881;-.24990237;-2.0020263;.76306462;.27360365;2.4445398;-.62745017;1.8288062;3.7510474;1.8149618;.0946666;1.4677794;2.6349134;3.0776169;1.2506815;.49531546;2.3876245;.97100669;2.2065392;-.96745646;3.8752441;.50176507;.15506305;5.3745141;2.1691306;-1.4430695;3.9989874;-1.6941699;.5661819;-1.313832;3.7658718;2.9381011;2.3083248;3.056639;1.0366888;1.2701728;2.1408393;57.592808 +-1.1724651;.96793532;.30006438;.63932312;.067067094;.49953511;.015448065;.87488395;-.26243407;1.024356;.46459845;1.6201134;-.28954282;-.59771103;-2.1771989;.90224183;-1.8067607;.27369097;-.56129843;.16345215;-.42438474;-.93615425;1.3129964;-.0038681426;1.0371233;1.7304016;.61628252;-1.0328898;.37957424;.13007672;.39586261;1.0590148;1.761513;-1.3298619;-.45316967;-.028477248;-.83325934;.27596733;-.64197427;-.69043946;-.53157979;.89481926;-.84718353;-.58759719;.79656905;-.18459174;-.11761493;-.14398138;-.84017056;.39762831;2.7359817;3.7190745;.99443382;4.4921012;-1.40083;2.3347592;2.8648622;-.38393787;4.6663294;3.9615729;.95869195;5.047956;3.3138196;2.3543322;4.241993;2.771975;5.3748956;4.0368867;2.1088829;.50887406;-1.042397;1.2167586;6.8160448;3.3389287;4.0208664;-.8904916;-1.5120407;-1.3294677;3.9964442;4.092401;3.7513275;1.6867219;1.2880741;-.37506026;2.2565646;2.0893791;.47310382;1.199854;1.636282;1.6703923;5.1549468;-1.4304273;.64524364;5.092433;3.9469416;5.7103276;1.8677028;-.62293792;4.7964497;1.6402558;-1.9455456;1.1011831;-.3453064;1.711926;1.6480891;-.21515766;.67308122;3.0917437;-.60898215;.27828014;-1.0992279;.2406093;.27665648;.032704528;-.92465234;-.40721959;-2.1738257;-1.9663633;.058285892;-.45501056;.39438555;-.72338617;-.26531479;-.89121491;.55596995;3.1680248;-.28868574;-1.6268508;-.36715192;1.5835196;.33371565;2.2238734;.23625223;-.61437649;-2.01495;-1.8799763;-.98051387;.070076078;-1.9479935;.52389032;.79305768;-.61354327;-.13326633;-1.7533958;1.0801123;-1.9605598;.66215301;-.79144931;-.51607805;.72309726;2.4777029;5.0939174;.23373762;3.9868536;-1.5827152;1.1930766;1.6333964;-.55125308;3.6139493;1.7046113;2.6401968;3.690191;2.1810303;2.6537185;3.5592997;2.511384;3.6477537;3.4834082;.89851958;-.094290942;-.82644182;-.40178356;6.3327365;1.1386796;2.8126018;-2.0144622;-2.3896103;.16339186;1.8576291;1.8364016;3.292321;2.0550048;-.22198272;-.42463511;1.5159695;1.182947;.66385406;-1.7330915;.55874515;.57572913;5.1720963;-.6194917;2.6773288;2.646162;2.7795124;2.4713099;2.1826496;-.74356419;3.4257669;1.9606395;57.494843 +.35957921;-.11409316;-.42626762;-1.1657212;2.5843623;.16301224;.0074961889;-1.2824302;-2.1447783;-.28892329;.91653538;-1.3029007;2.2190461;2.1114593;.063538849;-.28591055;1.3269142;-1.1444726;.51719391;.53564024;.94673377;-1.0626148;.97700548;1.4591991;-.64703864;-.34857646;-.23770167;-.21142642;-1.5661077;.42526814;-.18847781;1.2968475;.063787811;.33915693;.51810753;.40948594;.67383045;.13600442;-.32682148;-.70321453;-.12143432;.73401511;.1325468;.036654476;-1.2473617;-1.3439636;-.19785716;1.0427059;.6981501;.97508866;1.2217637;4.617672;.38401121;4.040482;4.5055137;-.77363193;1.3529588;2.56354;1.0998957;.46981904;1.2969594;2.5403399;.50859535;4.0628653;.216324;2.3271122;2.0931706;3.5594094;3.1348817;1.5923347;1.2265617;.57226157;4.5572829;1.4652853;1.037127;4.6766076;1.4435155;-4.2242327;-.34125605;.700288;.25603455;3.3493676;.32928064;5.3529949;1.3215349;2.7172244;4.8738365;1.785131;3.3937209;-.32434404;6.3717794;-.85115302;4.1859798;-.82092661;.91224509;2.4244056;3.9174066;2.0771189;4.0782065;1.8880069;-.20854902;.21374345;-.45885518;-1.0208439;2.8636191;.36224836;.2804805;-.6925081;-1.389739;-.53260905;-.19486991;-.56100255;2.2298608;.40465593;-1.1845957;-1.4086809;.99672574;-1.1483345;1.4522222;.63422537;.26949468;.34581983;.42915004;2.9722083;.09398181;-.075963072;1.1651551;.16300315;-2.0725296;.58970803;1.1747096;-.63261443;-.44931448;-.18792164;1.2353612;.6379087;-.88454145;-.83650976;1.7489623;-1.1628908;.97966051;.30370337;.038676381;.69311088;-1.3231182;-2.3451033;.10600844;1.5519574;-1.2391157;.85989922;1.3753124;2.7963798;-.36664185;2.7972333;3.2544823;-.41492775;.5532701;1.4935387;1.717741;1.1824719;.52748072;2.0694923;-.32952628;1.3839226;-.29216096;2.14464;1.3744231;1.3791095;2.0206378;.64312887;-.40793881;-.14089108;1.9300433;.47596917;1.0852199;3.7704039;1.3349934;-3.3351219;-.28012764;1.5539217;.56600481;2.8236945;.63070393;4.694078;.87260592;-.38603398;3.9314249;2.2421737;2.9263198;-1.1195674;4.4509506;.13388754;3.0527632;-.7907452;.73302549;1.1150444;4.2909665;.40259364;2.5722322;1.0570178;57.692085 +.73809713;1.0615454;1.4551568;-.83444738;-.092572249;1.5166168;1.0386637;.80087793;1.8810556;-.32162914;.32721695;-.22800222;1.7070851;.74352205;-.71230638;-.40804121;.46102864;-1.2253845;.38829467;-1.1637421;.29478568;.40246058;.88810587;-1.0987318;.50764108;.72098333;-2.6236544;.26507714;-.63095862;-1.6664538;.87901461;-.37436199;1.2016441;.080802977;.26355162;.075808883;.27815348;-.88891232;-.48671943;-.11970384;-.23534226;.50308394;.6745342;-.46095002;.069450542;-.22039175;-.90038329;-1.2776941;.47179171;.16004749;5.5097308;5.2500215;3.0640006;5.5982294;2.1579719;1.0071394;5.014524;8.0473576;3.9150565;2.9587452;2.0952413;.92116582;2.8890507;4.260262;1.9136903;1.7854862;.43093231;3.1494987;2.8372829;6.1350031;-.7682761;1.8879921;.56442755;1.2247833;4.101861;4.2493362;4.0354009;4.1997948;2.3393681;-2.5670118;2.1481698;2.0290933;1.9944211;2.5597231;3.4140666;2.9812374;-2.4235418;2.1609859;3.06727;-.098841302;2.5049753;1.5691655;2.4658597;.78518254;4.0759158;2.5259833;-.15176906;3.247205;2.6573031;3.8854647;-1.2458551;.87588185;1.5881413;-.89515191;-.50498021;1.7447066;1.3530879;1.0408205;1.6861054;-.5627749;-.89208436;-.60361892;.093121529;.11883648;-1.2848306;-.013977842;-.028823338;-1.5171692;.29388145;-3.342274;-1.8092415;-.88977462;2.8629444;-1.2641749;.28849608;.35218105;-1.6603873;.15123908;-.69390023;-1.5691599;.44905621;.45085841;1.2057642;.91189927;-.6647889;1.0544972;.73924518;-1.107143;-1.5644649;-.13620824;-.44143039;1.5391995;1.2846131;.0063250056;-1.3276051;1.2805601;.7116006;-.573035;1.278253;2.0608113;5.4581084;2.3501484;1.776934;4.5479975;-.021291867;-.003319466;2.832217;5.1671257;3.8029697;1.4699324;1.5496906;2.2206118;1.8641365;3.7739089;.63241726;2.5068631;-.43233919;2.0749056;1.7256587;4.0685105;.43256336;1.22047;.75905645;2.3693783;2.289984;2.6938667;2.7208118;2.3024955;2.3534565;-3.6556611;1.3752588;2.2191117;1.0710158;2.15447;1.199261;1.7925042;-.82744557;-.077901699;2.5923281;.48281768;.31535074;2.8536527;2.6028137;2.1005979;2.5582807;2.6589148;-1.5617697;3.7065051;2.2342002;2.2095251;71.430229 +.34028196;-.48668468;.64028007;.84616113;-.97335237;2.1315613;-.58123177;.42615852;.031848002;-1.748872;-.35873288;1.3912367;1.1828848;-.22206435;.47899985;.25366509;-.39043501;.97021669;.12087356;-2.1182859;1.4598361;-1.5323178;-.65442944;-.18492571;.85791713;.87902665;.52623653;.14156857;-.23147279;-.15981631;1.6051687;-1.3909796;1.4866574;-1.6424068;2.6567731;-.0077236281;-.75859928;.34511673;-.56450242;-.22953732;-.35913628;1.1763351;-2.1393051;.64747155;-.58911711;.13777819;.6341151;-1.4772806;-.99541456;-.50426394;1.7672487;.20110488;2.8322043;.34227702;4.4630289;-1.6109022;-.14385466;3.1117191;4.4363828;-.11890633;2.4267712;3.7177804;.000039643332;3.1847789;1.4709266;.58986855;-2.8908811;5.6171145;.93905896;-.098714612;2.1615369;1.9307811;1.5056037;1.1038487;5.5757136;-.36214885;4.6252308;-.55536819;.65051526;-1.1581216;3.2484767;2.259285;2.5372417;3.4329441;3.5310514;4.5048194;3.0072689;2.8717558;.033965807;3.1937485;2.1745622;3.3056056;4.4283533;3.0196772;2.8213475;2.130121;4.3833184;5.1079268;5.7511091;6.1988239;1.5541792;-.068605006;-.45887607;.4302617;.74940121;2.2858284;.50039828;-.26797417;2.3430684;-.95236021;.97211933;2.1077118;1.5268246;.79566163;-.49262503;.94185925;.84295279;.40627816;-1.3951027;-1.807565;.42714199;-.56202728;-.18748675;-1.5277326;.85824358;-.2502484;-1.7702117;.42934826;-.7829988;-.96711922;2.5313659;-2.2937458;2.4498296;-.25095665;3.6966894;-.15211901;-.98578942;.61248052;-1.1747494;-.39440814;-2.1341329;1.1135705;-1.2579947;2.2293327;-.66204071;-.41783997;.87531334;-2.2465818;-.4969984;.29491994;-.16186653;.72335011;2.1825125;-1.1447222;5.1509514;-1.7833977;1.0731955;1.4742612;4.2770357;.93827069;4.0896959;3.9487433;.97086591;1.2421257;2.4610982;1.4585215;-.75797457;4.6953821;1.2119572;.94468713;3.7103837;1.9916536;.23371087;1.4018428;2.3309038;.10538987;3.1264632;.57068622;.057753179;-.034651883;1.7362113;2.7035978;1.5266654;2.4883375;2.6099262;4.4313765;.84937686;2.8525956;-.91284436;4.0767365;.94101769;-.21447238;1.5276471;1.6422001;3.0790775;2.0470145;2.8122993;1.1881821;3.5182605;5.1236334;54.7104 +2.17011;.42891452;.23320544;1.2155979;-.053730343;.28559399;.33142033;.75713813;1.3568748;-.070727721;.65546626;-.0506403;.64785498;1.6530077;.63390285;-.16372824;-.68855685;.18976261;-1.6243362;.50705343;-.72558999;-.14219011;-1.0047827;.35068563;-1.1420258;-.24013129;-.40320104;-.62601954;-.96853924;1.3048136;.28874752;-.97379297;.26945335;-.5398258;-.24146996;.71219915;1.1747971;-.88552028;-.23025222;-.94192535;.17232922;.14514749;1.550946;-.2736477;-1.215045;-.15640302;-.046488639;1.0814116;-1.2255386;1.4721965;4.0374374;4.8862729;1.1162364;.07797987;1.1919712;-.79083067;3.1305199;4.0902205;2.500448;4.4918413;1.4154545;3.0694938;5.933918;.83880597;3.3201237;3.9226937;5.9506903;3.7723417;-1.7112889;5.1072083;1.1392868;5.1721001;4.9642911;-.16301839;2.5977902;-2.163558;1.9687796;8.2931023;1.7325718;4.6816273;.86165702;.60250461;2.5354447;1.9188397;.93986082;3.5351031;-1.5911318;2.3899963;-3.3030717;1.7872041;2.9695103;3.3233602;4.5328245;2.6678371;3.6101747;-.58893555;3.8010471;1.8462425;-.020148609;.27317232;1.8168837;.44535741;-2.4844294;.6045354;.016355345;1.7952151;-.80066645;.93129522;-1.0054119;1.4938874;1.4896282;-.82285601;.8436752;-.69164121;1.8917402;-1.7822839;-.40689808;.75546283;-2.2587228;2.8319886;-1.5609448;.036160789;-2.7064614;.81815726;.033076089;-1.0104775;-.2370901;.15574148;-1.5240579;-.79338217;.97037894;-1.5479461;.23269951;-1.2063507;-.29392448;.61956978;2.0412369;.18825066;-.94027704;.31437165;-1.9596664;.021152467;1.7654731;.34478065;-.30538327;.84808213;-.98856044;-1.1133068;-1.2243052;-.34656286;2.9122965;4.5705905;-.076477259;.064913347;.51369745;.10738822;3.5523295;1.6683971;1.7220141;3.3148873;.7922768;3.8965123;2.855437;.48962623;2.5110924;1.8800025;2.5724237;3.0424862;.40716463;2.9228277;2.2314103;5.1564088;3.7817605;1.5117553;1.9198793;-2.5089369;2.0772178;4.9286275;1.6192181;4.4567685;1.2345792;1.0121223;1.5763863;.99603617;1.2746911;3.1940966;-2.1295359;1.3491852;-3.4535086;1.1125506;2.5256524;2.2539549;1.3197668;1.5230076;3.473635;-2.1128294;1.8991662;1.0044836;1.0633692;1.4327888;59.323265 +.27819708;-1.1681781;.17129496;-1.543619;1.3261364;.0015032692;-.28673542;1.0090817;-2.0247838;-.01159861;-.020030741;-.14968337;.77369857;.14301576;-.64856708;-.1016704;.31273445;.48582724;.82497072;-.038462091;1.2419486;.03392043;-.82192045;-1.8286223;-1.3898597;-.20021112;1.2285681;.8770296;.30042058;.53454942;-.42939103;1.0974209;.56914175;1.766858;.84892923;.13402273;.237258;-.44151711;-.81393433;.924371;-.092991181;1.049613;1.8503449;-1.9078732;-.047030859;-.70419544;-.07711757;-1.0442833;.34079537;1.5103296;1.1163632;2.46205;1.0336351;.25109679;3.7302935;.58463532;.47494134;5.9764705;.46092159;3.6386852;.76928526;1.1865816;3.9853575;-2.1398838;3.7748809;.97848594;-.094673738;.079445221;.28537434;.76274729;4.2239213;2.4728353;1.6059668;.76543105;2.4478898;2.0649812;5.3666959;4.7083073;5.0856786;.016872764;1.846987;-2.6914661;4.4627023;-1.8801948;.73997903;7.4112158;4.8936672;.75800192;1.2550844;2.234091;4.1433868;1.0627956;1.5819596;1.3144032;-1.0892919;3.5598564;1.9336661;-.72150576;.65421522;1.2493838;-.069065444;-1.039986;-.026788985;.27111623;.87061071;-.73941708;.33456668;-.56803119;-3.1999881;-.0087138116;.50743502;-1.0710067;.93017119;1.0446019;-2.8247423;-1.3445635;-.53943962;1.2207919;.93023622;1.7015151;-.45634127;.46119586;.95599109;-.95046413;-1.3970481;-.83217466;1.0075454;1.348051;-.77417839;.088312261;-1.3710142;.79916161;-.063964948;1.3640862;.55057263;-.72016984;.19275458;1.1582609;.98995143;1.9436599;-.17885314;-.46975464;.87668473;-2.4108019;.32335132;-.74098068;.25079161;-3.1417952;.25980645;-.7198227;-.010656869;1.1720521;-.4573963;.70425236;2.2011776;.84874499;.7602796;4.4397187;-1.0013196;3.5789907;-.35101894;-.72635132;2.6035469;-.71915078;3.9017262;2.1659501;.64368409;-1.0749881;2.0102324;.097681485;2.4624646;1.7925818;.62475866;1.4005344;1.124926;1.2045295;3.5059767;4.2855711;4.2773061;-1.3481593;2.740818;-2.5937946;3.1519954;-1.7353854;.80255818;4.2084727;3.2465029;-.3156814;1.2333202;1.3850788;1.9623917;.66019869;.64532208;2.5389106;.79771549;1.0573385;1.6133001;-.27605683;-.72412884;-.67144203;43.013103 +-.78098965;-.32726738;-.07212773;1.732078;-1.5505292;1.0271775;.3439905;1.0236527;.35822758;.29651442;.18774018;-.64871681;.91795075;.40551749;-1.4249393;1.3021258;-.25620556;-.64507377;.799514;-1.4934253;-.46908632;.39463389;.81573296;-.91866463;-.53062111;.53735316;.60071045;-.43528473;.54588634;-.51184034;3.3665543;-.40561274;.39396992;1.9503641;.44968608;1.4038161;-.20261307;.59466165;1.1945115;1.4887351;-.90205723;-.085685641;.22052661;-.67296487;2.6749313;.42034966;1.7308348;1.5129902;-1.0825611;.27739823;.93805861;.72976696;.82633179;1.2486353;3.3673286;.45461592;5.3108501;-.022113062;1.2150456;1.9888269;-.32210958;4.6530905;.18910427;3.0368464;1.8611083;1.2650733;.27745783;2.6863768;5.1613388;4.9304576;-.096742831;1.2959601;-2.4757009;.57154977;3.1829913;3.2677119;2.701246;4.7765079;.61196095;1.067294;-1.7179585;2.423043;1.0414752;1.8094358;-.97404295;-1.4183187;3.4360075;2.8087509;-.32217917;1.2326173;2.0092502;.99761087;1.3187714;1.9985365;3.2398796;4.7080441;1.336817;4.6099148;1.0021406;-.54907876;-2.3980927;-.14310421;.14808299;1.5918096;-.89748693;1.5103779;-1.140965;2.1388772;.613383;-.82942653;.41868529;-.35073391;1.4624882;2.1692073;-.63582194;.26029935;.053746667;.73737389;.097679757;-1.3255603;-.24102645;-1.189502;.55952513;-.19625078;-1.0226752;1.5419343;.7694869;-.042835597;.87259644;.91198927;1.6760986;1.012627;-1.0758455;1.5253332;.3955141;-.12168266;-2.3383214;.50940472;-.73872006;1.3463537;1.6056725;.016438827;.79378819;-.90870184;1.9620777;.6775474;1.2563896;2.3243647;.101262;1.9936825;2.1030443;.48766381;.6763767;1.2876136;4.0157743;-.73882288;2.7236862;-.65126902;.49633867;2.1595771;.17727426;5.7907839;.11532971;1.9856925;2.2196648;1.3430164;1.6119376;2.5718877;3.3154025;1.241002;1.6135321;1.1609664;-1.5145348;1.9354537;3.4072387;1.9426045;2.2576985;2.5947769;1.2659361;1.8152428;-.67408055;1.0471753;1.6062737;2.2567246;-1.0506691;-1.3907137;2.7908397;2.3303044;.92110002;-.068905622;1.4148638;.5307126;.66386217;1.2223271;2.6392808;3.4102938;2.2411766;3.2305224;1.3989425;-1.125056;54.58276 +-1.3917707;-2.3295827;.49150485;.8735742;.15893428;-.11630812;-.33775479;-1.5559176;-.52637118;-.38727382;-.88326591;-.38578478;.40959588;-.13963011;.10127145;1.3463175;-.2945241;-.22539748;-.63149577;.095385589;-.14475082;.59780264;.023340199;.21488482;.028936435;-.88734722;.70574111;-.72314984;-1.1955049;-.71363765;.60741365;-.25120774;-.1947408;2.089941;-2.0241094;.010011064;-1.991087;1.2713829;1.2722462;-1.5483218;-.066311054;.035140507;1.1321923;1.5745304;.5455718;-.50800848;-.52368283;1.3829042;-2.1443777;.88784415;1.6337395;2.5371616;-.64603961;.018701196;2.5595465;3.0627553;6.4713607;1.3655702;5.4066038;1.3525879;1.1810995;1.1888548;.77864194;4.2694149;3.5910845;1.5495597;3.9430597;1.2184857;4.5152125;3.5738864;.1305791;3.5031934;2.8653986;2.2826433;2.5375557;.056397758;3.4595673;-1.9832544;4.9460945;-.62651777;-.50252879;2.3810947;5.1856556;1.2074629;1.6137903;-1.8012469;2.5209575;-.51308388;1.2660857;2.1808374;1.2976899;3.5533376;.80132109;2.0578644;1.3387015;1.8921465;2.760515;1.9324658;3.2939744;6.2047167;-2.1788471;-3.2312353;.70425665;2.5433738;1.7896014;.52003962;-.61267883;-.86609513;-1.4812982;-.20370518;1.4603807;1.0192103;.34931204;-.12760693;.14188521;.35731566;-1.0559295;-.77917504;-.5273785;.63920343;-1.5367196;-.83896124;.74354756;-.4856706;.026826538;.97964889;.73154241;-.92984766;-1.1356655;-.011126065;2.2771723;.80888939;-.59296292;.075544983;-1.4666382;1.8983029;.11565422;2.1688583;-.064628839;-.83208716;.67159659;-.12942135;1.2121351;.20853089;1.9805988;.16374852;-.15008125;1.8953142;-1.4768393;2.2687967;.48089227;.28930306;-1.8757416;1.0339588;1.5297979;2.3730552;4.0719571;1.803865;1.4143393;.26765907;-.92143124;2.3169725;1.8516911;2.8107085;1.6218723;.26670125;2.841903;.051647082;3.6042936;3.246125;-1.4229181;4.9450321;2.6415198;.086447887;1.1537365;1.0660837;1.1295512;-2.100662;2.5422311;-.18021838;.53022134;1.0624627;2.6711946;1.7149955;.48416221;-1.7657967;.33168748;-.7067647;2.0414579;2.4614537;-.31768215;2.2793128;.047031634;-.51921731;2.1705959;1.5439436;1.4094487;-.39609823;2.6505647;3.8123026;52.412117 +.88839293;-.58943343;-1.0458169;-.077026062;-.41127884;.029617392;-.11889115;-.636747;-.6531654;-.77185929;.17518854;-1.1608585;.24313048;-.24191731;-.027644293;.67243946;.51225626;-.69018412;.081585914;1.4064591;.99059212;.16456321;1.5833689;.21858896;-.025866279;-1.29293;-.28079778;1.6471753;.68362647;1.8106301;-.90515637;-1.2727331;-.31456348;1.4405413;-.6257596;1.4533924;-.023454061;-1.3015702;-.67872632;1.1073405;-.63505423;-.045567665;1.0268774;-1.2511944;.40120149;-.13624232;-.79538488;1.0782694;-1.3809196;.43743247;4.2732949;-1.8657942;-1.5090789;1.187421;-.17153345;1.9902287;2.3327818;1.5705882;-1.3518592;-3.0706091;-1.0244533;.61069345;-1.0729202;3.7677977;.3984355;.92612314;2.2863705;3.2898643;1.3706274;2.5200016;1.7245092;.093222104;2.7225332;3.5123813;3.1132658;1.8741742;3.6748352;2.1146536;2.4971538;.16555448;1.9845313;.87170434;2.5466619;4.6301608;-.18687664;3.3638384;-2.1001642;4.0602322;1.6080596;2.3205895;1.0238099;.86024719;2.1415694;-3.774106;1.6349896;2.4036186;3.6606221;3.5513349;2.5772448;-.8189131;.76888251;-.42946121;.24151531;.30920801;.82945889;-.43552268;-.90801322;-1.0738578;-.039257649;-2.7300525;.25724459;-1.7418083;.22406133;-.88702935;.60124719;-.65824372;-.70048612;-1.1263955;.5476504;1.3607867;.92112654;-.014976021;2.8051314;1.2030036;-.40983093;-2.6043363;1.1229911;1.1234741;-1.4148115;-1.2126298;.56827462;-.082834847;.3882252;2.4837193;.5280776;1.7583055;-1.7465994;-.68565941;-1.2348386;.91952556;.96510231;-1.6562921;.4828831;.11088496;-1.6246012;-.987688;-1.2907261;1.7097931;-1.8544974;.25024837;2.6723497;-2.2548177;-1.5818504;1.2607546;.096977875;1.2211421;1.1390371;.76993388;-.37666923;-3.184654;-.70923883;.65080935;-1.1042563;1.8262969;.97184914;1.718645;2.756578;2.1077662;1.150192;3.3437033;1.5431023;-.34715587;1.8904655;4.1032505;2.9141984;2.9197297;2.1878831;.11336601;1.0605613;.89992857;2.2743335;-.0082404744;2.8818893;4.2309327;-.04408744;3.1356785;-.95747173;1.2896372;2.0080175;1.2764093;1.0159923;3.4012325;2.8347921;-2.8047929;.78728646;.42043442;3.6042171;2.5787268;2.4419751;-1.540329;30.528688 +.64903015;1.7216724;1.554777;-.53932011;-.17026284;-.64110208;-.85210192;-1.674961;-.79900604;-1.8058221;.55437261;.96066457;-1.786635;.3074809;.52865088;1.0904866;-.27302566;-.74566674;.45495832;-.034763925;1.8792194;.82009953;-.29586291;2.3587658;1.8526874;-1.4329764;1.5152392;-.73440713;-2.2611153;1.8295666;1.4691894;.098031029;-.5640505;-.41869965;-.81171155;2.2642236;-.3121331;.5034616;-1.2233064;-.1531536;-1.4374058;.032198202;.66499716;-1.0228858;-.56175017;-3.4594541;1.1892349;-.06167417;-2.753376;-.090562589;2.7843885;2.6897695;1.7791432;2.5253115;3.7886832;.12530251;2.1705492;1.7245815;-.28748336;2.6261983;3.1495945;6.3731546;2.0582337;2.8308945;3.2916837;-.73320448;1.0855436;.2446671;2.2183483;3.3683343;.79267693;-2.5486853;1.6007959;3.8531284;3.5977945;-.52726334;4.7295508;1.298215;-1.6984411;-.24773102;2.3251169;2.8903401;3.3603218;-1.5771874;-1.057018;.10471345;-.99036199;1.6047088;.70461231;1.2846645;.078824684;-4.0785856;3.9349248;2.2634532;-1.0465583;1.9647412;-.39041439;6.7214561;.11645369;3.1229603;2.4421432;-.37640867;1.7974646;-.45583409;-.49093267;-.74333072;-.20826708;-.13751733;-.15233444;-1.7787017;.042233068;.84369981;-1.2648715;-1.3729459;1.3488404;-3.1720231;1.951301;-1.211466;1.4334167;-1.5423299;.44803387;-.16554688;-.28716329;3.6814349;1.4964029;-2.3329411;2.7371409;1.1289247;-2.1280587;1.790416;-1.6050119;1.6005569;-.28260931;-1.8594718;-2.1903172;2.0733771;1.6656494;-.2715553;-1.2103446;.45295721;-1.4191977;-.10650553;1.2622302;.20465784;.66577446;-2.6657448;2.1044691;-.98019254;-2.8781064;.26132149;1.7393508;1.1464342;.54459941;1.0531191;2.3179567;.71798974;.22260664;.23051246;-1.3287078;.55216217;2.8665273;4.1798849;.87711871;.89420092;1.1310141;-.83610612;.75121081;.64689684;1.4785808;3.2954168;-.050840173;-.99188054;1.80313;1.8050308;2.8433738;.13467863;2.8693147;1.1030414;-1.4689161;.83288383;.52227855;1.2536325;3.9145732;-.82691348;-1.0003942;.46078607;-1.9969803;1.8791049;-1.1799251;-.14446178;-.87943399;-2.0995853;2.0382373;.25550514;-.8717587;2.4140792;-1.0509435;3.8623848;-2.0029042;3.2533998;43.836952 +-.98441136;-.91402149;1.1022171;-.90149081;.021245323;.59832847;-1.7704363;.50711972;.73371381;1.098604;-.9162097;.22526798;.6745649;-.29873872;1.2697338;.92802548;-.89596212;.78900838;-.27696502;1.036737;.054598782;1.7522835;-.64677888;.8949877;1.2724981;.084057778;.45196441;-.81527299;.36658716;-.74680972;.57804197;-.82430047;2.0015616;-1.1815445;.77248019;-.40037295;-1.5927507;.42686585;1.0436791;.47863665;1.6249657;-2.5689998;-.93087;.47210434;-1.4526687;-.11316103;-.17060582;-.85072702;1.435751;1.503408;2.192198;.077869967;3.1227355;.45943549;2.9157591;-.17785992;-1.6499262;2.6273756;.28435129;.99902129;2.937681;.30492267;-1.6707013;2.4178908;1.6328528;5.4859748;2.0293896;3.5859776;2.145088;3.1953449;2.0536027;3.3778641;2.9521778;3.1410537;-1.4689182;3.3670697;2.8360569;3.2182279;3.0721297;1.3412868;.10244624;4.1651058;5.134232;1.8384557;-.66616803;-2.1695275;-1.1398265;.67309058;8.5771065;-.85996044;.20106126;2.5811839;1.9865346;3.3120401;3.185806;-2.8284743;4.7341151;6.1902003;3.2260742;3.623152;-.96847886;.14083791;.71068448;.91775572;.75950897;-1.9781716;-2.9913356;2.0058098;.40497157;1.2520288;-.69034749;3.1682706;.31214312;-1.0523835;.0022777754;.44013578;2.6993339;-.31927633;-1.9392371;2.644722;-.70272422;1.2968493;1.4906428;-.68540615;1.8134049;-.19101471;.3784183;-1.0937904;.31341273;-1.5285994;1.8394769;-.11471625;1.6898077;-.16799237;-.87758923;-1.7275345;-1.6375098;1.1942585;-.49461398;.8469376;2.0323849;-1.4858203;-.83022547;-.62333822;.019127674;-1.0362277;.97143769;-1.0118873;1.7029452;2.7891018;1.7692593;1.560487;1.5381703;.37034628;2.2482283;1.3454565;-2.6967235;3.3096161;-.62954098;.92289454;.9205941;.066172197;-1.5971249;.83474106;1.9892366;2.2330856;.43929094;3.657043;-1.0312698;4.7281408;.32674569;1.4526279;1.7750816;2.0651395;-.69327581;1.9457982;1.4985191;4.6994739;2.6639833;1.9938453;-2.5469198;2.9770467;4.8818316;.0056603458;1.5733533;-1.9189329;.87665451;.065203525;6.2785826;-.84915316;1.5459633;4.0269742;-.38179591;2.1386766;1.4129747;-1.7119681;3.1059556;4.7775517;3.3142798;-.70942503;43.589298 +.91235709;-1.8746699;1.6906762;-.67919409;-.7034384;-.51857287;.79724276;.87733775;-.13939746;.7462436;.9500789;.36942202;.13807601;.069877483;-.25641179;1.2086871;.9138822;1.0377824;-.3475486;-.051625468;-.24597673;.73846394;-1.0500739;.08393956;-.39331922;.41920033;2.4256868;-1.0481476;1.04216;1.4150374;1.3030645;1.8978754;-.3136411;-1.8963705;.96488369;.4310424;.76520354;.61666751;1.0953207;-.33604982;-1.3844579;-1.8235739;-.35064378;.25157797;1.5952317;1.1405671;-1.0980814;.26312912;-1.0619978;.02081497;.74002707;3.8438063;4.309763;4.0904207;.5322423;.86512864;2.3441861;3.9904666;1.4576514;1.8692498;2.153698;5.4462824;2.4025168;3.4041498;3.0616686;1.429616;2.233026;.90643865;1.8124346;5.0450187;1.51439;-1.0357226;-.2896426;.49970463;4.1035657;4.258666;.69202924;-.39241916;2.5150445;2.0484266;2.2590876;5.4070477;-1.100979;3.1851213;1.6949573;.033877995;4.3135796;1.8159368;5.3818722;4.6040177;1.1250684;3.2366776;-.30387571;-.18160784;3.0865197;-1.0569577;5.2465253;2.3368409;1.4737778;2.515523;1.4335885;-1.5853344;2.108901;.14747918;-1.3069049;-.46501997;.34958586;1.9745386;-.91484314;-.49599671;1.0965728;.029316662;-.11430098;-.12720126;-.5018546;1.44223;.62857449;-.08228305;.0084784096;.74398881;-1.1515442;-.079016976;-1.6325735;2.5964463;.092573598;2.1749704;1.5782523;.40945846;1.0636706;.78285688;-.40324318;2.0615151;-1.3384377;-.12690644;.99651515;1.2528796;.040650945;.21503533;2.0054886;.27479157;-.23202115;-.38625157;.76648796;1.7916254;1.6581206;-.46572182;-.7825129;-.22749944;-1.1386101;-.10718579;-.031639442;2.3142729;3.1185546;3.3349411;.99842638;.081643306;.85376972;2.3153794;.76778907;.70070434;2.5016916;3.8775101;-.46664742;2.392565;2.8524182;.41289085;1.8398093;.51540864;.24743226;3.2607329;3.1748319;-.51757413;-1.5541967;1.5881535;1.4418082;3.5341716;.93528485;-1.5661808;1.9811407;3.3661699;1.7888304;3.6583576;.66601717;1.1834295;3.3818235;-1.0391692;1.657106;-.084224828;3.075201;3.5528772;1.9936217;2.6284902;.11187022;.52274984;2.1334813;.71207261;4.2777162;2.043839;1.4264383;3.8280382;64.592545 +-1.5892617;.73554546;-1.1829956;.6739794;-.27630952;-.53256375;-.33771953;.67048019;-.61837709;-.45559463;-1.3668159;1.8246865;.64458495;-.93572003;-.83733177;-.19120266;-.66416037;-.59727484;.30829132;-.32419717;.70935434;.70202857;-1.3251883;-.3310166;.63134336;-1.308677;2.1918004;-1.0131207;1.3596563;-.17324215;-.51565212;1.0596617;-1.2576021;-1.271246;-.017016752;.74026322;.690624;1.5131136;-.41606304;-2.0619979;-.49149665;-.19903706;-.1974152;.57670981;-1.2013659;1.1961149;-.52094245;1.428946;-1.9184338;.38355911;2.0977745;1.4142928;-.83242565;1.0934731;1.5788412;5.2829342;-4.1560316;4.134666;-1.9004058;6.1013446;-.081320837;3.7819285;2.8734426;2.9171927;-.42106488;.20679951;.68103218;3.2727854;.84242493;2.7139835;3.3566139;4.4219213;3.3690355;-.59903651;2.4472463;5.410069;1.2273042;2.6447933;2.1203556;3.9259005;3.4784298;2.8002481;2.8046405;4.7028136;1.3748597;3.34864;5.2061977;-1.6687497;.98665088;2.5208993;2.7655926;.60313499;1.1238222;4.2308321;1.0795784;3.7882605;2.0825427;3.5756478;.1254597;5.2745161;-.91753685;-.049077548;-1.5871959;1.3757709;.20452628;.0037538998;-1.6748174;.46219292;-.59909207;-1.54466;-.72987568;.97375888;1.1971849;-.4335385;.45170271;.31986234;-1.80944;-2.5920191;1.2927519;-.50567448;.5585199;-.12374507;-.73220378;-.40332037;.17242123;-.27842537;1.2194878;-2.963486;1.1711358;-.52816302;-1.6812441;.066833645;-2.2204878;-1.0618711;.29434752;.0066220094;1.1693687;.65658963;.56472838;-3.1762893;-.055908646;-.66327327;-.17170459;1.0074831;-1.7702444;-1.1000923;-.6932103;1.718245;-1.2427987;-.34820771;1.6656377;.58428669;-.80013359;.8030234;.51709878;2.8096128;-2.3814976;2.7689159;-2.8387835;4.4986634;.088593632;3.5228121;2.1656225;2.678565;-.23217849;.10671176;.64520437;.61921138;.83239669;2.5843773;3.8687501;3.9256444;2.7717004;-1.0148958;2.3144174;4.5505013;1.935276;.81704742;2.1150196;3.9967837;3.0142095;1.5402359;3.209841;2.720279;2.396867;1.2261658;5.1045709;-2.0750973;1.0049114;-.29494721;1.0450953;.89664698;.38231477;1.4869241;-.51134807;2.617048;2.4767511;3.2503657;.64184749;5.1047473;52.564617 +-1.6931273;-.13775711;-1.88508;-.36080426;-.86152887;.30310443;1.3722712;-.43692827;-.78900939;-.5411309;.80680281;2.2869496;-.44758767;.88122827;.46980566;.48318034;-1.0381935;.90865362;.6217922;.1033849;-.1494319;-.91829437;-.12612623;.57200801;-.31063136;-.53987515;-.38559261;1.2624685;1.1955006;1.2900964;-.26379517;1.004643;1.1156818;-1.5844735;-.30734861;.20095026;.083096437;-1.1235759;1.9156839;.90913349;-.57932341;-1.0229008;-.058723755;-.11072589;-.58409154;1.0119532;-1.3585678;-.24935187;-.031459942;-.1378461;.53713757;-1.5284462;1.7594552;1.4300473;4.8455353;2.059092;.91678625;1.3253376;3.3762236;1.5176233;3.8277307;1.6843573;3.8338912;1.3714703;2.4655252;-1.1063974;3.7787328;-.54870939;1.6371338;2.2614946;3.1375458;3.2318892;-.59757751;.54627013;.15769395;3.5923705;3.381165;-.17537381;5.3131189;3.6774416;-.94466513;3.0213187;4.0743504;1.8415631;2.7948833;2.7466583;.81136495;1.6576711;3.063935;.83570993;2.6351018;1.3885958;1.9820578;-.37073225;5.4283447;4.4926209;4.8930249;1.1797357;1.5410819;-.57780915;-1.4264755;.27484989;1.161364;-2.1875062;1.5457671;.34526408;.23915429;.17863853;.30926558;-1.0132575;.13143004;.45179749;-1.6428055;2.7400265;.48860058;2.0396063;-.79891443;.1890519;.83387548;-.39711764;-1.4267544;.18289126;-1.2997133;.33128533;-1.328752;-1.1418533;-.13658619;-.27786183;.66832048;.18123016;1.3847218;3.4649034;-.052337736;-.87149882;-.6509496;-.26416284;-.25908932;-1.41485;.10599192;1.094795;-1.0391853;-.10841933;-.90312552;1.9564122;.093120359;.42781761;-2.7875881;.4460575;-.91711402;.95354611;-.13061878;-.69105494;1.1693463;2.5507894;3.8620381;2.18679;-.55550343;.60236257;3.417398;-.18603341;3.9313407;1.5478526;1.5287793;-.070660919;2.1536412;-.5177601;4.1617064;-.61102307;3.3124752;1.894658;3.4973636;2.7274189;.29111347;.91477662;-.42423192;3.1404722;2.5288706;-1.4179081;4.0048351;3.5383875;1.1863102;2.5136554;2.561753;.79991186;2.7712395;2.8144131;-.8061648;.038654849;1.3795681;1.2958165;1.4666781;.80787921;1.4618069;.26472691;5.4703026;1.5435538;3.6443799;.36359054;2.1532147;-1.4098063;52.147465 +.015760418;3.1164281;-.18679139;-1.3124042;.13957113;-1.1667986;1.6377304;-.68553942;.47650251;-2.0843241;-1.4766756;-.58467883;1.8999746;.15293412;1.1201769;1.3946432;1.5821025;-.15858039;-1.1545181;.33751917;.82428712;1.2266415;-.32773054;.014033701;-1.6601598;.90264362;-.14582154;-.17180562;1.3798698;-1.5077155;.027817149;-1.2588036;.82422054;.9213208;.54744583;-.036325663;.25778967;.80071759;-.033120148;-1.1397243;.69915348;-.77558082;.77079111;.95949268;.024129219;-.21590272;-.20020396;.31197777;-.48315766;-1.1765095;-2.4591334;1.4966292;3.6008134;-.23745349;-1.2462516;.2615886;4.2606182;-.25105461;3.6519403;-.38260776;2.3284271;2.4269314;4.4134851;-.36202991;2.8705876;3.4693084;1.5480105;3.2735717;3.5139356;3.8512475;2.6476099;1.0214947;4.5257826;1.5238699;2.1829515;-.61667854;2.2813461;3.9571218;2.1141598;-4.1684546;1.6149935;2.0424659;.98045361;4.6957021;1.1494852;1.9993538;3.992866;4.1804442;1.8575121;-2.6273992;-.86196989;3.2950907;1.4725786;-.91052711;.17247741;1.4674596;-.65647089;3.7945325;-1.8827381;2.5694437;-.31601885;1.784339;-1.2110571;.89014149;.50603068;-1.0216551;2.5293279;.89189434;.92992419;-1.7438443;-.32537863;.57652152;.57036453;.81590742;.3400867;1.503267;2.7875962;1.0839041;.12825052;-.50542945;1.2750491;.013875208;-1.1327499;1.6707635;-.28647652;-.45225897;.75365365;1.3745496;-.95833069;-.21123777;-.56062233;-1.2362421;.71293557;2.4984603;.31209919;1.3790787;-.38325575;1.2929823;.83417529;.45337179;1.0454968;-.79624778;.10463396;.45182145;3.3107009;1.3224111;.37832326;.93331349;.16393113;-1.0284253;-.83326155;2.6301029;3.4022186;1.223115;.50606894;1.8480741;3.7746751;1.036459;3.1547191;-1.7935486;3.4572825;2.2517846;4.0185289;-1.1992123;3.8203783;1.6795274;1.4924233;1.7819111;4.0191417;3.7135699;1.8013051;2.2931809;2.9557929;.53658777;2.3741589;-.80400538;2.5823636;2.001241;.7673769;-3.4268818;.56973296;.6832965;.4098334;2.9156222;.20170538;3.6493449;3.1075838;4.1915841;.7739383;-1.6553216;-.17322662;2.0198455;1.7742102;-.21869594;1.6295431;2.2356052;-1.5715077;3.8066397;-.83017904;1.1932636;45.179428 +-.2027362;.23228987;-1.1446953;-2.1233957;-.3825717;.56741023;-.75799447;.71059191;1.7131194;.1076285;.79756957;-.13617539;-.13930948;1.0826869;.36814567;-.13226427;1.0036273;-1.5384988;.54475462;-.92622668;.71095181;-.34717256;1.4882656;.96008515;-.64485049;1.6825149;-.50539327;-1.1323748;-.51578397;-2.7684155;-2.3071651;-1.2112429;-1.3520736;-.19556481;2.5694273;.89364469;.83426398;1.0601213;-.034087915;.007200737;1.818439;1.8302466;-1.2074678;-.88285404;-1.6830716;.29739368;-1.493553;1.740169;-.034833167;.16258737;1.8867965;2.0251651;2.5400662;2.9022613;-.26373807;.23235038;.80643797;.49572688;1.0411997;-1.5392745;2.2393494;1.5191627;2.3714378;.019454086;4.0895076;1.2302327;1.7378284;1.344358;1.3262542;-.25382629;.37872741;2.4580112;-.47519222;4.2087626;3.8195312;3.1525209;4.0519171;1.6719197;6.2081199;2.900001;.99238443;3.5802445;3.4386435;-1.4805152;1.4615183;4.9207344;-1.4984294;-.76200986;2.3125072;2.8504775;3.1045611;2.0370998;2.8962762;3.9994624;3.0511861;1.7075112;3.4459987;2.823875;.14658637;2.7155867;.8988021;-.48552525;-.99919081;-1.3838394;-1.1347084;1.4848703;-1.1589339;-1.4227893;1.1148819;-.67229718;.92466503;1.0190042;-1.5669582;.62200618;.83195317;-1.1615354;1.3019303;-1.6061699;-2.8411517;-3.4264641;1.546211;1.5955909;.85887647;.2482385;-.032489855;.46482995;1.3309327;.48286918;-.87328154;-2.9410641;-.89781737;-.085588194;-2.1404221;.68272603;4.4709377;-.73076588;.014297307;2.8564732;.2999467;2.059902;1.5449102;-.40682811;-1.1355119;-.8795507;.060178772;.96661425;-2.8910718;2.0257936;.67019653;-.20556106;2.0834813;1.9489594;.41872311;1.5173426;.78549868;-2.0087228;1.3385943;2.172406;1.2442068;-1.1920673;1.3607683;1.8766499;2.0584872;.85013604;1.2574837;-.33170441;1.4208233;1.4102082;1.4725862;-1.6750168;.15862606;.5792833;-.17020124;3.3769467;2.2937589;2.651015;3.6545429;.30729595;5.5062165;2.8675439;1.9115603;4.7077622;2.6655722;-1.2710173;.46178016;3.7747459;-.98529553;.30423719;3.3227599;2.0628457;.71997583;.28899124;2.1642461;4.1376967;2.0955327;-.3317591;-.097585782;1.4670899;.18398575;2.4264822;50.065968 +-1.8424366;-1.0125982;1.4210463;-1.306761;-.046646267;-.75247985;-.74322987;-1.4629184;2.2524467;.68245;-1.0806937;-.88191223;1.2509934;1.6780262;-.79694003;-.30384889;-.059443064;.6919471;-.10572679;1.1492542;.19318914;-.29285851;1.2535073;.36803573;.74797881;-1.0965853;-.70539057;.83326679;-.62389791;.6582967;-.52154344;.16713865;.65714914;.64197522;-.23076211;-.42913288;-.20053785;-.51680601;-.56248808;-1.1230978;.45484275;-.14429636;-.05353985;.40635508;-.91697478;1.2541908;2.1129744;-.2666291;-.56232047;-1.7000772;2.8684978;2.5625505;-1.4377824;3.1528044;4.6418591;1.8748908;.81373662;2.5833659;5.390502;4.0620036;4.0213199;1.5255665;.13377826;4.0145531;2.7874765;1.1681023;-1.0075352;-.52228415;-3.6046071;3.0744522;1.2443528;.86846423;6.3361588;-2.486454;2.5041645;1.3683951;2.2564259;2.8429153;1.3674135;2.9980781;-1.7023017;1.1094208;1.5684558;1.5667922;5.5997505;1.1703327;-.39784741;2.6822143;3.4130263;2.8141854;2.4702773;4.7458773;.025930064;-.8971585;3.8207407;1.8150446;-.6256988;3.3689706;6.0716453;1.8788651;-1.2534149;-.42505696;.63771534;-1.1464446;-1.7614766;2.2507563;.049492098;-.63257867;1.2379776;.54028255;-2.5518467;-.058029637;1.2466437;1.19819;-2.0992384;.27025369;-1.1556765;.76225501;-.1755632;.24972209;.10814922;.95691228;.59841073;-.71316129;-1.228757;-.68093914;-1.3916026;-1.6536592;.61883461;1.1672317;1.8390559;-1.2719852;-.73214561;.74797511;-.072962366;-.73609692;.074256167;1.1832407;-1.2312559;-1.9980769;-1.3600588;-.52225649;.24151039;1.1758811;-.80845529;.41148338;-.26278481;-1.0443715;1.6639756;-.079098828;2.5601408;.62012231;-.013867066;1.1700552;2.4745851;.48759985;-.019719506;1.5997386;3.9783177;2.4171772;2.8701286;.5264532;-.21444289;4.6048322;1.6893842;1.4732772;-1.5578245;-.83809495;-2.3862886;2.2103395;1.0986876;1.7609439;3.3140621;-.68807685;1.3340302;1.3860884;.59567422;.84625101;1.7368957;2.0838995;-.51149166;2.0651386;.96105236;-.058333699;3.3822939;.57762569;-.23248537;2.2017636;4.0505338;4.3391285;.87196702;3.2107992;.59679359;-2.389081;1.7646613;.38393146;-.17741455;1.7476579;2.3174713;.52821702;46.449848 +-.13611668;1.1622174;.11019307;.31303874;-1.3751497;.38537779;.35029027;-1.6997018;1.4274296;.88841504;-.96200311;.11827904;-.37580013;.035570115;.70742255;-1.3572251;.8887955;-.68224204;1.0637085;.72944021;-.094172508;1.8663473;3.0310194;-.36825952;.77975351;1.1508005;-1.3574268;-.6657505;-2.1862447;1.2751704;.71463263;-.63264233;-1.477357;-1.2788844;-.015463869;-1.0764512;.53271812;.28915977;.055508807;.90255207;-.54372901;-.64292365;-1.1896904;-.41106519;-.18194491;.071914934;.63942105;.39890155;.1153426;-.7167685;.14000359;-1.6475267;-1.1183683;1.0970206;2.848434;.58989853;.56550205;4.1767311;7.3551059;2.6402557;4.8467155;2.8397233;4.0182347;.28805327;3.5233033;-.13195412;2.4377739;.65592694;2.7139251;2.9244883;3.2164702;-1.5962245;-1.917598;4.728354;1.4973271;.97662038;2.1135879;2.9415669;-3.0158799;1.2347488;3.9301753;2.5371976;-.14867823;-.40431347;2.3991764;4.266511;4.3852181;5.1104765;.94370449;-.25529304;4.2451262;2.2761612;4.47087;-.59567642;3.7716057;-.49765894;1.5882366;.60965204;3.8548453;5.2360611;-2.159162;3.1881344;.5468871;-.65759003;.046478003;-.56222337;.36222225;-1.3705814;.45138901;-.55949956;-.00025438223;-.93121958;.81847501;.18560272;.41875786;-1.5862304;-1.4398649;-.24227963;1.7169663;1.8056283;-2.3689361;-.1145741;1.4066721;.33288497;.58714706;.98272824;-.8117196;-.86345208;-2.086947;2.5245638;1.4564023;-1.1724828;-1.2920187;-1.8691356;1.0677652;.46789721;1.1813389;.92785192;.52078956;1.1578044;.34490722;.22684409;-3.2670829;-.4245908;-.44376534;.18386425;-.84905028;-.61204797;-.19117688;-2.2261491;.39478204;1.018531;1.5994254;1.9700564;2.8579235;1.6171081;-.33888343;3.17693;3.9455404;-.45314115;4.0692716;1.7436731;3.3547747;1.797466;.30369025;1.1411825;.89166099;-.84005624;1.7446712;2.1335864;1.488355;-1.62332;-1.8868083;1.7885149;.51696855;.40983739;1.530296;2.2044022;-2.0724356;.30689478;3.5299511;3.5861659;-1.4552171;-1.2940303;2.3508341;3.1330361;3.3638275;4.1172128;1.1337056;1.0808796;1.8305565;2.1863327;3.703383;-1.642311;5.4643316;-1.1823251;2.467226;-1.2210801;3.1961622;2.75175;47.616211 +.44048518;.078597985;-1.6785173;.522291;-.10906249;-.062261011;-1.0759569;-.39957893;-.74230844;-1.5195258;-1.3704809;-.55654109;-1.4863226;-1.930925;-.85794735;.86016446;.28745565;-1.0370165;2.0455961;.51686275;-.010959474;1.0978438;.14415985;-1.1714133;.12220491;.87817299;1.0321258;-1.9971219;-.17864218;.16475461;.14871944;-.16388908;-1.3608171;.6681273;.9392221;.9845289;.18371986;.48037356;-2.4087706;-1.4757831;1.690412;-.35703266;-.86418957;.25462061;-.46887979;-.50828081;-.61921531;.0047612968;-.21599941;-.18725309;3.9910159;1.3480734;1.9811944;.86042106;1.8733505;.59524167;2.574964;.47102299;1.6054677;4.7456913;4.4385753;2.9663982;-1.9635429;1.1881285;2.5874395;-1.6158797;-1.0188868;.36422494;3.8559077;2.3315134;.96881998;4.2403002;.52892506;4.3558879;-.84336936;2.3612766;.032308485;4.1121984;7.2460079;.46657494;4.9179068;1.2826865;-1.0925651;3.4262443;2.9994643;-1.4321659;-4.1027641;5.2303672;2.3403966;2.0117896;4.1673636;2.7512145;3.539021;-.96410805;4.0580354;-.85155314;9.3673668;.85060334;3.8610482;-.2186791;.19271392;-.55483913;.21057388;-.13200416;.076427065;-2.3696473;-.60929972;.34466258;1.3225132;-1.1095482;-1.9423673;-.54084134;-.9949646;-2.2258666;-.33968821;1.3522958;2.9112265;-.30009773;2.5451665;1.07661;-.71260011;-.91632366;.75845331;-.65301144;-.93400323;-.23427534;.23142497;-1.9846367;-.18868008;2.2404068;.512869;1.4464155;-.92916775;.88220263;.79747391;2.2368906;-.77274841;1.7254797;-2.1429155;-.59107155;1.5692525;.3846429;-.81648433;.20059443;.16440623;-1.139178;-1.5118161;-.78049177;-.12948681;-.99922997;1.4774829;-.33417535;2.6578841;-1.1965225;.73277462;1.9751847;1.1353174;.45699587;1.5195469;3.909903;4.3373504;1.3724467;-2.7246621;1.7622195;1.6116937;-.83916074;2.0040245;.51536036;2.4871204;1.3574646;-.11663335;3.3890362;.57210082;2.9643605;-1.6597613;1.0410186;-2.091666;2.3889697;5.5615559;.37532571;3.8146055;1.2826006;-3.0228512;2.2904365;1.9705508;.23556522;-3.1192398;3.1819766;2.8873503;2.5482914;2.7282417;1.570069;3.2348909;-1.7856197;3.5990188;.89465111;5.868989;-.2688114;2.8395114;-.11936961;47.394859 +-.62010837;1.0494156;2.9633231;.45918527;-.034533828;-1.7401165;.75012559;.66677052;-1.8251468;.53784645;.12448873;.5355261;.96527517;.14054649;-.30044261;-.01375252;.83144963;-.57381785;.75248039;.72894198;.40247282;.84521365;-.37436742;.40320361;.9078182;.08180102;.85678744;.6063568;-.52437747;-.25999993;-1.5149451;.50382125;-2.0176678;.77244788;-.16802377;.69630176;2.2528963;.78492296;.70953673;-1.368976;-.82036537;-1.0546637;-.56949681;-1.2403947;.37435788;-.63569391;1.0399683;-.19215702;-.52140784;-.35454148;1.6697195;.26675802;2.6460426;1.7945877;3.7042434;-.54827094;2.7895603;2.5498667;.74928296;1.6908518;3.8003342;1.9404572;.13818762;-.31965929;.47802728;2.8075523;1.4944625;1.519334;.50114369;-.91917008;1.6563034;2.8244395;3.1371038;3.8246667;2.2496469;2.5982111;2.0089829;2.5536029;1.8082174;1.5759394;1.1932547;2.0803175;.78655773;-1.4570707;-2.4227459;8.2520771;-.43205285;3.5058336;4.6175809;3.5014288;2.5653644;-.095098428;-2.2822959;2.2270653;.70905787;2.3135307;2.0537498;4.7735991;3.2000341;1.4827924;.013041823;1.8431258;.48185781;-.37033847;1.0718827;-1.3622931;.017616676;-.45815107;-1.3608062;1.6923399;1.6170071;.84986615;1.0134497;1.5891306;-1.7180059;-.42840093;1.0597552;-.024538502;.82038891;-.89049292;2.3165884;.79252201;-.29575241;.84288037;.75424105;.26630601;1.6077069;2.0710127;-1.3800194;-.3615289;-2.00069;.40929845;-.20456563;-.34945372;-.62133908;-.057646398;1.176228;.67502058;.60184979;-1.4724586;-.12146192;-.52251369;-.83615959;.39835438;1.7316163;.39725697;.4450835;.66545057;.90521473;.20873542;.1253317;.48783237;1.8101535;1.6942058;1.2299418;-1.3409904;1.0666124;1.1634257;.9208011;1.018555;2.0235;1.6294761;-.17679259;1.3297206;1.6832337;2.2582786;2.0389762;.67641729;-.23386793;-2.1031444;2.498781;1.8270015;3.2856038;3.4292521;-1.0963604;2.3786628;.96386176;.91900271;1.924505;1.1468157;-.15889403;2.4597847;.8752048;-.35651925;-1.5124476;6.7677116;.72442394;4.3126521;2.9126089;-.78356022;.54730159;.68879545;-3.2705669;1.9578073;.29966184;.57931244;.22302327;2.8847427;2.0461195;2.4421716;48.157436 +-1.7215781;.15781274;1.7017602;.24189715;-.6486811;-.074780516;.2343567;-1.4640232;-2.04456;.66488659;-.18473394;.58214217;.19651067;.68653435;2.3991764;.86424881;.39932364;.17741561;-.16099907;.20744792;.086761855;.64986783;.15963161;.57746631;.43575042;-.64196372;1.9233941;.50925475;.46772364;1.2618037;.4069542;.42744285;-.062759481;1.7869124;.046204228;-.72281218;-.12823242;-2.0240984;-.73147625;-.26989636;1.3678594;.34836215;-1.7534089;.77689552;.71593446;-1.1477239;-1.7569346;-2.6319985;-1.326144;-.14797196;.45845363;.42728487;2.1115286;3.7608683;2.1525912;-.154585;.98352325;-.61124223;4.0419497;.52823228;1.814993;3.4582615;.1452602;2.5692766;-.12086736;4.3255382;2.0482287;4.4054732;3.8521008;6.2988815;.83456564;1.7671144;1.2914186;1.6548214;1.1408366;2.6997383;2.2023957;1.0360825;-.10372184;1.4419694;3.6213503;-5.4575491;.98086339;-.64343131;2.4435363;3.0962238;.070040278;2.5012958;.15718596;2.4518247;1.9526107;3.8716207;2.0841534;.81833225;3.6934941;4.1333766;.30954203;.62881863;1.5165256;5.2233381;-.52713466;-.69814175;1.867449;1.2031288;.48123536;.66998816;-.72595888;-.11181778;.66062313;1.5943328;-.31807661;.74216175;1.4749587;.85252929;2.0163736;.25636059;-2.1965806;1.5102077;.7069186;-.37429416;-.64540184;.76342821;.75975275;1.2615172;.29561508;.012522946;2.320895;-.72750026;-.095177785;-.057018239;-.9051072;2.0314164;-.42345908;-.84427196;-1.1110359;-2.6565564;-1.3424652;-.4125824;1.0003816;.096079119;1.1255202;-.35358754;-1.6086122;.009058076;.6423893;-.77910805;.07302019;-.30123857;-1.2494901;-1.3632145;1.1403377;-.91856474;2.0933998;1.1874911;1.103664;-.83426076;-.29120979;-1.0183352;3.2655878;-.73925602;-.24500291;2.4463162;-.0070747333;.23868786;-.31461981;2.1484489;1.4753883;2.1338577;4.1166072;4.225791;1.1645023;1.0790355;1.5847794;1.7369926;1.467519;1.3195627;.27799219;2.1007299;-1.4016523;.98268855;3.8460531;-5.232101;-1.2284;-1.3022485;3.2344205;3.4837587;.50475889;1.2162101;.42623645;1.1487489;2.1195531;4.6514058;3.3285227;1.5995398;2.9050932;5.196528;-.4768312;.28627294;-.21792489;2.7501903;42.357979 +.4362193;1.9825118;-1.0513592;.13114029;.94688123;-1.2271994;-.1218532;-.21689132;.14625852;.26844412;.71450388;1.0691886;-.30201909;.7643798;-1.2231791;-.5506348;-.80739361;.078473218;-.74089569;-1.3505105;-1.0143293;.24441664;.97730416;-.45991987;-.62778229;-1.6090567;2.1843133;.11634757;-2.137502;.052478515;.33919787;-1.4286387;.51551801;.83955353;.68255061;-1.4688092;.12286845;.60820258;.58730334;.32298473;-.65676677;-1.2899743;.5588308;-1.463798;.2630212;1.3422536;-1.0510572;-.83678776;.9921416;1.0539465;3.447222;1.6849833;4.5752339;.69901335;1.7947196;3.8059218;.63260627;2.2201777;1.2467015;2.6706493;.58356911;.2117759;6.1638145;.070770882;4.1054621;.42951977;.42432404;2.4967535;3.2746928;2.8894038;-.078359634;-.12703735;.40806592;.21679457;-1.5486451;3.5181208;-.35627922;.032854062;2.6638885;-1.7882481;.41493779;.29485732;4.6670308;1.9183571;-.18614915;-2.5761433;4.9904599;-.016224241;4.8610988;2.6992073;4.3154726;2.0862424;-.3146922;2.3686488;2.8550022;1.4711972;2.2591012;3.7555361;3.3452392;2.4445331;-.76353449;2.9004521;.27034107;.53787136;.66827899;-.65295035;.62511504;.2914125;.81753248;.57172722;-.78348368;.15094277;-.47636679;-1.5086857;-1.2159202;-.32761049;.78578585;.36558065;-1.2327455;-2.2068188;-1.2289768;1.3011607;.12406895;-.51123542;-.60232663;-1.3673105;.8991102;1.1781416;-.46919346;-1.4025133;.78293777;-2.1083918;.61886668;1.2781948;-.60420924;-.58555365;.98033124;1.8937448;.72173017;-.92837518;-.625709;-.77130914;.17740643;-1.5037154;-.88110721;1.1251872;-.42874643;-1.3333818;-1.3233705;1.1542406;2.1983633;1.6158721;3.2504473;.34107164;.42329848;3.9553075;-.35490924;2.1593306;.60380679;3.6924329;-.55462563;.47177473;2.5366969;2.0848496;1.7040796;1.5594151;.21900348;1.3349594;1.8175663;1.7473419;-1.1757179;-.3164995;.12055326;1.0425564;-.8231222;3.1033878;-.18746077;-.58227175;.89751506;-.03259651;.10706635;-1.9104856;5.0007396;2.0883133;-1.8088583;-2.4788048;2.6104434;1.2747041;2.4502006;1.4491645;2.2979591;.65995365;-.64057088;2.4794333;1.0541612;1.5140445;.3396799;4.7818198;2.0042918;1.4260854;36.448997 +.29933947;-.66979194;.23409294;-.14518654;.87386501;.63232523;.53950459;-.69016534;1.4830701;-1.5560275;.60670304;.2583389;1.0958483;1.3694379;.041467648;1.6390671;1.1702332;1.4375952;-.14340812;.63224828;1.0964831;-.10837647;.060754091;.41354808;-.66766191;1.0458207;-.017539946;-.19260778;-.90820825;-.6289326;.093736961;-.37399703;.29399481;.2134435;-.59287918;.42787698;.0019538784;-1.4484054;-1.428396;-1.1296679;-.71069556;.25625896;-.92046124;-.98969603;.16869798;.22511654;-.51101118;-.65808827;-.12456029;.11332288;.073585592;2.1810143;2.3411047;-.71915954;.20666103;1.6254652;1.5078666;1.1441808;-1.3929911;2.9841249;1.15777;2.066087;3.4688487;3.4285226;3.1324503;1.839681;1.883307;.1075353;1.6727229;1.3628308;2.1410458;1.5655296;.4208819;2.0313907;1.0777795;6.8969264;3.2211754;-.53067124;.89120448;1.3180053;.16652723;-.034360502;1.1965965;5.6746058;3.379703;2.8651745;-.12470595;2.8272951;2.3824329;1.5876688;4.1410937;-1.4650741;2.8987277;1.8321135;1.3387991;-.65610528;.14003117;3.1149871;1.0880994;2.5062039;-.67730689;-3.2579184;-.23104131;-1.1511806;.95933688;1.5240207;-.18340345;.23245765;.7624253;-1.5933356;.78174877;-1.1106334;2.3576276;.24237534;.02025562;.53550434;-.57227421;.086260483;.31696436;-.026305821;1.2177181;-.24688986;-.44061857;.48577923;.46715763;.88080853;-.50508988;-1.1758016;1.2271434;.019756369;1.3648764;2.9627452;2.3008716;-1.0063612;-.96396065;1.3451583;.47657067;-.90079331;.30972663;.83713132;-1.4907609;.97963482;-1.2268667;-.632029;.86543792;1.6179738;-1.5779564;-1.515367;-.36810085;-.10657185;.45974824;2.534683;4.5033607;-1.5004795;.18741626;1.9433001;2.4341569;-.048001304;-1.9021727;3.0543659;-.30550382;-.20050704;2.1973739;3.4244869;.12828067;1.6183938;1.8741817;1.2499213;1.7906924;2.2201612;2.7421813;1.8214961;1.3974276;-.06242539;.35242027;3.6038771;-.32489723;-1.1468859;1.3526292;1.6342672;-.15575099;-.3055779;-1.6218953;3.1569681;1.4637483;2.1849816;1.0467544;.50254834;.53769952;-.31382769;4.6381688;-1.067717;2.0198309;3.5309246;1.2333878;-1.3169601;1.1717952;1.2871108;.075516514;2.48384;42.127678 +.65179145;-1.3030789;1.8246647;.98446959;.71215832;-.57374567;-.80617005;-.78479624;1.9435874;.53616285;-.63253284;-.065252841;.8282246;2.416302;.11063226;1.4408264;.58545971;-.30606568;-.85878593;-.1790933;-1.7225397;.43014625;-2.0553184;-.71832192;.69196713;-2.1162553;-.092259966;-2.3426445;.26677856;.76653457;-.39545548;-1.336023;.36986569;.81197625;.7565484;1.6897961;.80096149;.090540439;1.713431;.24046056;.13434495;.81678206;-.41809884;-.65610164;-.43482548;-.10581748;1.7605727;-2.0927963;.70073032;-1.0179982;.306651;-.60424054;.69032878;5.0775657;-.82632405;3.5152738;1.0068561;3.1397874;3.2016413;-.18754397;4.2099495;1.1682382;.69240516;1.5508403;4.8651175;3.8276269;2.0250633;2.9839332;1.6244562;4.2032685;3.2201555;5.4126663;6.4610496;2.4120789;3.5197597;2.2653787;-1.627948;-.91610706;.3492038;3.9211862;2.027323;.47362781;2.9160964;.16793016;-2.2646067;3.2639382;-1.031137;4.8503485;3.8594475;2.0126152;5.7324743;4.0315719;1.0927929;-.38016933;.34127352;.92709243;1.8764646;4.5183454;1.8540297;.22357926;-.094021924;-1.0445422;1.1383189;2.3038588;1.8514376;.19176428;.99479145;-1.4043739;1.2281197;-.85256892;1.0239745;-2.2766831;.40954512;2.5045123;-.55549896;-.024875067;.007785521;-1.8305285;-1.0851227;.25636065;-2.1634059;1.5280546;-1.4895241;-.91793072;-.024868809;-1.0904367;-.76580173;-2.1998298;-1.2198025;.27200383;.97471011;.42715007;-.28126156;.7515915;-.53845018;.70240974;2.3990638;.31905574;.68500131;.16410281;-.568663;1.8256377;1.4160293;-.31649947;.39434233;.86499184;1.4901801;-2.2993114;.50934237;.34813932;.62080312;-2.1613438;.036852822;3.2747273;-.89003986;3.9402111;-1.5370569;3.3416677;.29954308;-1.7343545;1.3203754;.97943574;.7884419;.27028966;4.2546539;3.0683582;.71034181;1.3525044;1.4139726;1.4640473;.65433419;4.4447737;3.5390596;2.1192958;2.1132312;1.1634371;-.75376946;1.4549969;2.0841897;3.2033648;.9727211;1.717846;2.3232307;1.8942496;-.80361968;3.052187;-.4944239;3.3030868;1.8326219;.93961388;3.6013818;4.7980471;-1.1914455;1.3421807;.48530471;.89787942;1.5709165;2.1591609;1.4120864;-.70916581;54.795795 +-.9961375;-.19926083;-.26193634;.19296747;.51348549;-.92210943;-.75128829;-1.3885661;-.10371189;1.3524892;.98864681;-1.3502176;-1.3663443;-.3323164;-.28423446;.10943497;.46224442;-1.2862567;-.39770228;-.3832711;2.0052791;1.0332946;.060339589;-.65380943;-1.5638702;-.7773068;-1.1459829;-1.2130123;.31156439;-.46094581;-.51382118;-.60258561;.49063709;-.33537117;.36857688;.064865552;.26113012;-.80211669;1.0004917;.69290382;-1.6310393;-.12224837;-.61070317;-.14814813;-.46130896;1.0379057;-.67469585;.90445018;-.53976405;2.1505206;1.8124236;5.1123571;2.6655197;2.773314;1.3976532;3.2386153;1.0411023;7.1029973;1.7713498;.72704077;3.1465943;4.1608906;3.1297116;-.60168386;1.8794624;1.9099835;6.5260324;4.4226346;2.7428944;1.1657871;2.4250164;2.6979163;3.0273542;.76252544;4.6498489;.67677468;1.1686243;3.5901179;1.1343747;3.475939;.83182156;.18414967;2.7152002;1.0641853;.92245835;2.2266958;1.7980615;5.2343197;-.71838605;-.73690343;2.006856;2.5700054;3.4119015;-.1518078;4.2133431;3.9639597;2.7263186;1.3622588;-.30638775;6.5839911;-.39761162;.14917469;.65136564;-1.2340306;-.41614062;.16426922;-.27197656;1.0197763;.53392285;2.5492043;1.7606056;-.42346391;-.16420175;-2.316885;-.6289618;-.76898926;.90758812;.10801359;-.36911705;.069288597;4.0374627;.1182368;.77623743;-1.7782394;1.1285872;1.318487;.63576925;-.24154931;.27824658;-.050223097;-1.961377;1.5217406;1.3302437;-.45454013;-.63098812;1.7320964;.13585331;.14912851;1.5776007;1.2831169;-1.2798711;.52478409;-.5701831;1.1435759;-.2716755;2.6680691;.91019702;.59703934;-.22671497;1.716742;2.9019551;4.3890285;1.0453913;1.8165897;-1.2061545;2.3062801;.02406626;5.516737;2.1623769;1.6543093;1.5858139;4.6027908;.90069795;1.3835033;1.2744867;-.95291281;5.5345602;2.1433613;.48109457;1.0139766;.56637627;2.1393452;1.8365667;-.5167495;4.2490158;.6914103;.41070953;1.3721797;-.18928155;1.2257533;.72340882;-.12028927;-.70660931;1.6787854;1.3342417;1.1807196;.84865993;2.6759987;-1.8608642;2.10537;2.3118713;.41073734;2.8994927;-1.6486173;2.0408032;2.5056746;2.1416197;.72083402;1.2873538;5.1237926;56.50293 +2.457082;.049406346;.71676791;1.4484185;.39461741;-2.1402833;.23373057;-.066142932;.13906856;-.390389;-.46749553;-1.2339138;-1.5058476;-1.5098294;.90875673;-.051684387;.43261695;.52877671;.41298044;-.49310526;-.50546682;.02370297;-1.6607326;-.76454914;1.2075924;-.93983829;-1.1192247;-.79489273;-1.0129287;1.4061646;.7187832;1.0669926;-.88803512;1.0371557;-.53456253;.10413456;-.096240707;-.20806889;.028063668;-.89799416;.44277161;.15935765;1.4165733;1.3613821;.5546785;-1.6932478;-.036643472;.92496043;1.2144679;-.89236736;4.1770849;5.3486309;.00063777814;1.3840953;1.9728619;-.65673226;.037473567;3.305114;3.5557666;2.063853;2.8122594;3.312036;1.2811733;3.8635211;.7191323;1.374586;2.4079485;2.0389624;.56737447;5.549264;6.0882483;-.36686683;-.15383922;1.2691567;-1.3388073;2.5526679;3.3086634;-1.2166632;3.8888595;2.8655226;3.2784569;2.1687453;2.2819314;2.8726318;.32462993;.60787767;5.3631091;2.2713165;3.0803065;.25407183;2.7457123;.85290205;2.4048016;3.3674183;2.9196241;6.118752;.26551077;1.6550312;1.9887898;-.40917128;1.0369474;1.1185191;-.97192252;-.036198221;1.5788471;-1.9118519;-.37977546;.9761793;1.0745044;-1.9850291;-.40925729;-.77376771;-1.0707496;-.35679212;1.0406965;2.2431769;-.60995537;1.2672229;-.75978327;-.19157189;-.79224497;-1.1783609;1.061337;-.76728648;.35119566;.55208659;-.50560957;.97848094;-.76178592;.81026894;.87720191;2.1552773;-1.4996455;1.3243036;-1.8426772;.3180609;.77308303;-1.7311119;-.83950806;-.91235352;2.6449339;.71071523;1.0733787;1.5365636;1.1046624;-1.2608896;1.1426479;.13158365;2.3441033;.41450444;3.4937065;3.5653949;-1.02862;-.35608619;1.3330048;.52450824;-1.634689;2.1952057;1.7702565;.23742272;.98418272;3.1050398;.96281987;2.8092887;.20830429;1.0711905;2.6611269;1.5860059;2.6483617;3.464124;4.3818541;.71956849;-1.8596159;1.767665;-.56313908;3.0001245;1.0326999;-1.3772377;3.8615148;2.9852853;3.3497417;2.254998;1.8879989;1.1580615;-.016062578;1.4072826;3.7762077;2.8666663;.53245735;.67404622;.94889599;1.4084505;2.4984808;1.2857499;2.5779197;4.5464616;.80799168;.45523012;-.83690727;.82978016;50.597137 +1.0580951;1.4853499;-.67961574;-.36569202;-.43713143;.57516474;1.4872304;-1.041754;-1.5673991;.90185553;.52837306;-.40436733;1.125697;1.0028805;-.63656479;-1.4047719;-1.2930312;.45010611;.2339476;1.0102645;.47361404;-.48168063;-1.9336221;-.86481547;-.57829612;.9223206;-.16457808;-1.1059552;1.0627311;1.3207219;.41076094;1.2373106;-2.2191765;-.15400298;-.20584983;2.0448954;-.75722784;-1.3407429;.33368823;-.67468566;-.90988219;-.57873333;-.39307258;1.4243608;-.76482028;2.6778107;-.80558854;-.48877293;1.1985551;-.25919306;2.0675104;6.4185405;1.7177119;3.5928848;4.1473494;2.9444914;4.4353886;1.6850264;4.4968252;1.7969195;4.9486542;1.2396861;2.6801517;-2.4418623;1.7492638;-.22147398;1.6842432;-.6727711;.04611218;-.1767092;.36875629;.021526137;4.1369019;5.3554401;.43616322;2.9985197;5.6640863;6.444056;1.7472733;1.8566852;1.325338;.41885841;-2.2532961;.684434;6.4001274;-.68242747;1.7192057;3.031764;5.7684112;-.14197752;2.3616569;4.7707286;1.3110679;1.9124249;1.0137267;1.4833598;4.3347187;6.5718994;4.0891237;3.0075119;-.17886744;-.61453336;-1.0464507;.033145402;.091458529;2.4180508;1.2652384;-1.5155033;-1.5274884;.34401566;-.50752962;-.74547404;.26506996;1.6932032;-.6233077;-.80448359;-2.0805504;-.11301336;.55340105;-1.0692744;.3761245;-.78785157;-2.1825192;-.52827775;-1.4821615;2.1361358;-.33877146;.50232762;1.0941006;-.16905411;-1.4776731;2.0849602;-1.7064749;1.0368873;-.92961317;1.4459584;.60193294;-1.9167883;-.58413053;-1.2445594;.29340589;-.68034959;-1.673744;.076625086;.40590832;1.7348222;-.117888;-.058006223;1.5547212;-.94460094;1.4778011;3.1438415;1.0933089;4.0010104;2.0396314;1.2213396;3.9713082;-.39785534;3.8903987;1.0933936;2.2766302;1.9612306;1.8816801;-2.5907252;-.54317039;2.1727664;1.738353;-1.1329259;-1.2104554;.74400592;1.5173731;-1.2556628;3.2498832;4.6385469;.32704672;1.3645101;3.9284456;3.5990102;.47685277;.78249896;.50201863;.55533296;-1.6360428;.68917859;4.0214939;.72194618;.93834734;2.702384;5.2098007;-.11242349;1.0500861;4.5210261;.54497033;.46260798;1.1497823;.48152834;3.0733869;5.1334023;2.4514751;1.5683454;60.688988 +-.7225948;.78403157;.16836557;-1.6625822;1.2861856;-.27706209;-.5924263;.4505333;-1.0486226;1.5540589;-.77806872;-.8712998;.44542828;2.9567866;-.38969707;-.059908781;.31035522;.86047882;2.1962228;.5942964;-3.1125019;-.84712285;1.8816088;.47384781;-.45204031;.115253;-.26437169;.9371593;-.14177507;-.14163294;.046802904;-.86815929;-1.0205115;-.65189648;-.47433513;-.14992468;-.88028365;-.39657623;1.0666087;.080344446;.82160032;.96587437;-.30036175;-.028657986;-.84786177;.58803743;-.36801627;-.97500622;.5414747;.29420567;3.3062017;1.9740297;-1.0120983;-.40916461;1.5674391;.41953722;3.2215056;2.6978202;-.33353555;2.7903264;3.8990698;4.71141;-.63311124;2.7606096;3.2521625;2.0647578;4.4282904;-.88135767;4.2503037;4.0446129;.532704;3.8637943;2.5360544;4.7440529;2.7386837;-.027666537;1.7591546;.010112249;2.1833687;.98963988;-1.5162091;2.8428736;.95146543;1.3067373;.84968901;.096353099;2.2480731;3.2454188;2.150538;.12947461;4.1658702;5.5289001;.80342221;3.2483909;3.4254088;.77439332;.70189697;-3.5249851;2.1982539;2.1627977;.8485049;2.4357517;1.7903961;-2.2163873;.42957962;.81403071;-.9745059;.61081749;.1646097;.29712465;-.99133593;-1.2497054;1.653969;1.2891653;.5774678;.27508482;-.71634054;1.0988019;1.0677066;.60628909;-.68075174;.36613104;2.1420562;.63612586;.67272413;.78917503;2.2669568;.026067605;.84816635;-2.0170865;-.26961473;-2.517313;-.41959888;-.50313544;-1.6278664;.35046622;-.83298075;.13564686;-.27685514;-1.5696607;-.76322788;.87320971;.019203624;-1.8244252;1.4897872;2.1005633;-.40652555;.75519055;-.37696886;.21267195;2.4634752;.86055219;-.62413973;-.54366773;.71889013;1.2211676;2.6207976;-.31818607;.015456663;1.4337028;1.3608388;3.3911974;.028617332;1.4979323;3.6636956;.39973873;2.8459554;-2.7220461;3.712214;2.0438671;.011675397;3.0806055;1.7877232;4.6320486;3.307879;.91650075;-.74328452;-1.7847544;1.4260602;.99872714;1.0345006;1.0043923;.83232152;.28842884;1.1373214;-.63592154;-.18835947;1.6635094;2.0849538;1.5882175;3.9294832;5.4711976;1.0956472;2.2825978;2.779506;.57156682;.37094891;-2.2533937;2.4315746;1.8712676;46.021603 +.57755655;.47748026;1.1067064;.45194593;-1.0107188;-.025301794;.15246588;.16658984;-.28681397;.99221104;-.0078888703;.0688878;-.75846076;-.082462102;-.22722498;.78990537;.68152672;-1.8145266;.67710704;1.7199606;.95000392;2.200037;1.3488885;-1.5803859;.83169001;.27391583;.060331903;-.33813059;-.25393328;.47389582;.97182184;-.39647099;1.1600716;-.55815911;.30913115;.025689289;.93356466;1.4788749;-.42952859;-.10178003;-.12480234;-1.0182272;-1.4264535;.82186031;-.39499408;.76091284;-.4614487;.73501748;-.87493426;-.58629447;5.6811867;.6651662;-1.5372164;1.062861;1.2656308;2.0938585;2.197444;3.3884892;.97907579;3.1204262;.45614561;.62597972;-.37631628;1.4498023;1.8702933;1.0492288;3.5516531;7.3651171;4.5587082;2.2145703;2.2870648;1.8869717;2.3011372;1.1505591;3.431653;3.2701771;-.80654377;1.6960086;1.5946319;6.3055062;.74920368;3.7065279;2.2055514;4.739964;-.011226581;-.40594673;.74362504;-.46763286;3.0396769;2.0317893;2.0885828;4.4268327;.35346109;1.1921421;-.90494245;5.4562926;1.2388297;3.3076584;6.0508518;4.3982158;-1.8453587;-.74445331;-1.0799921;-.88518983;-.71036768;-.86256236;.51439434;.43021387;-.89808285;.82255214;-.11394337;.63406122;-.66726589;.50842214;-2.5120265;1.3443918;.12526944;-.73402369;.000018747252;.94709283;.25928217;1.3167872;.82271802;.10759863;2.3905714;.29710823;1.0882851;2.5823958;-.21114378;-.43037498;.30061018;-.47404003;-.68324757;.32926005;-.64178878;-.64388198;.83315569;-.047458015;-.3608084;.43463376;1.898919;-1.8771291;-.85971373;-.4261491;1.3130915;2.5068576;-.70777369;1.2228107;-.99992532;-.59106231;5.2392635;-.33444628;-1.2135253;-.098724566;.40477598;1.2812792;2.5569751;3.2668195;1.5169147;1.2294754;2.1154838;.85802698;-.95314151;.13933207;-.10216804;1.1098529;.95363939;4.9732776;4.4990387;1.0505548;1.3101192;.96289742;2.1742761;.99095845;1.8773303;3.3606446;-1.1664454;.10542787;.4154751;4.8612456;.36853147;1.8980528;2.2268236;3.0623255;-.84785837;.040519603;1.3347461;1.459658;2.1079254;1.8951883;1.3533951;3.9620707;1.2760891;1.2807788;-1.3450389;1.7530344;.052777436;2.5684688;3.2049003;3.2595046;55.962391 +-.37360311;-1.1311568;-.14278696;.51415664;-.96292448;1.1026733;-.55987638;-.065050416;-.10589477;1.5430981;-1.4875308;-.37271354;.63887149;.77707869;.41144469;-.24732058;-1.3368602;.71254975;1.1642345;-.89394945;.13940437;-1.3007622;.14851099;.15339661;.66325867;.1018917;-.65684152;-.71151644;.65037024;-.58024454;-.6288619;-.5833708;-.066260368;.570234;-1.2730948;.85466135;-.48257312;-.069483213;.41783053;-.85484481;-2.431525;-.45036432;-.9882977;1.4279969;-.24988738;-.16369149;.30683348;1.7938462;-1.5057787;.64644039;.88704556;-.64321047;3.3491373;4.6916184;.36439186;.64400631;-.85377175;.89902645;2.9155855;4.1558452;1.8644208;-2.1229751;2.80793;4.3469028;3.5695553;4.1066742;1.1430442;.890971;.2211614;1.0375109;3.3356028;-.47408637;2.6404159;.081074357;.30358016;.33759865;2.4589274;5.1069059;2.3450878;3.2154613;1.8494066;-1.1626129;.70213199;1.3155569;-1.8411185;6.2784567;4.6262779;1.1567554;6.4688993;.82300359;1.8340126;2.3730211;.47108221;4.5972304;-.54169732;-3.3290284;-1.8755567;.62051684;1.6198108;5.2504554;-.9943853;-1.6344001;-.79981387;.71295834;-.24043815;2.2335811;-.21705529;-.87485832;.81868738;1.2076045;-1.5386437;.061225466;.47345829;1.3184122;-.68761581;-.073852204;-1.1263298;1.1234801;1.0227965;1.1161758;-.33304757;-.13749643;1.7199742;.3210173;-.85945302;1.0170624;-.96287763;-.25307378;-.12649809;.6004321;-.1615314;2.1281404;1.1232971;-.91247231;-.090866275;1.0430754;-.98908597;-.41288191;.55315524;-1.3221862;-3.365576;2.1873612;-.63038427;1.1271449;-.37138;1.840717;1.671419;.6835168;-.44264472;2.2440727;-1.3438776;-.14110237;1.9524583;2.6667979;-.31528115;.18983513;.10646836;-.73053569;2.0506921;2.2165785;.56050652;-1.4986572;2.9894934;2.8658898;1.1878189;2.4518142;2.5378602;-.79404539;.83861899;-.018736465;2.2576385;1.0833493;.50762439;-.58124936;1.7235721;-.1081199;3.9589102;3.713232;1.3188323;2.4988008;3.3669589;-1.1861808;1.2743382;-.84695035;-2.2025397;5.5897636;3.1520557;.20906305;5.0617046;1.0464462;-.2032558;-.1819665;-.26622063;2.7986822;-1.0630176;-3.0373321;-1.640186;1.3897257;.34986958;4.1939406;37.723637 +.078697033;.10835107;1.9606845;.96944565;.4492797;.95824856;1.5238602;-.67707318;.10468762;1.4413681;.6402598;-.19220279;.60367614;1.8702487;.70505869;2.0697486;1.3188827;-.12769386;-.21843547;-.079336919;-1.2318063;-.24785869;-1.8481804;-.034140289;1.8862014;-1.3078617;.210719;1.1420596;-.89104086;.76715958;2.0693226;.46607748;1.0792564;-.57044053;.16462216;2.3789129;.51430607;-1.2940403;.48473525;-1.6673694;-1.1578426;1.3006914;-1.2400587;.58936709;-.20498493;.82805681;-.32845491;.13873093;.49113345;.45502806;3.6773348;1.3829328;1.1330808;1.8021013;4.3216853;.43840441;2.1502419;3.8660886;1.7515036;3.1711059;1.6795535;1.2604692;1.2651004;3.9692712;-.19858433;3.5870595;4.4835634;1.9655604;4.4824972;2.3229849;4.4701166;5.2711115;1.4356406;1.4356956;.84154379;2.4882052;1.6682134;2.5370595;1.6661249;2.6797161;.24233891;5.2231669;2.9966693;2.6674817;3.9737949;4.2176971;3.382241;2.7863493;1.5066065;1.0184263;1.8772389;2.561794;2.5278893;2.2303207;.34724131;4.0453362;.57111955;-.18817277;1.4430348;6.0583034;-1.9283357;-.11075889;.96907544;.32155153;2.7665944;1.7320734;.90445518;-.028982153;-1.1000409;-.69919318;-.6602881;-.76212013;.59576631;1.9421288;1.6988117;1.2384924;1.1642271;1.012042;1.8809389;.029987833;-.83803529;.69585395;-.96617758;.39270231;3.6560555;-1.5173948;.68341589;1.0482693;.19438113;1.5112658;2.1006906;.1831875;.94390291;-1.2262195;-.60239059;.74631542;1.1288453;-1.2611301;1.1716399;-1.5900608;-.10813738;.71762806;.094169155;.10402232;-.12301868;.6137448;-.58012682;-.64884168;.62802178;-.94333857;1.6914151;-1.3876984;-.46727329;2.6409633;2.993089;2.6332934;1.191;2.6986375;.60437381;2.2570322;-.59610283;.59115487;1.8134522;3.7187109;-.40258315;1.643731;3.38919;2.2743704;3.1880143;2.7941921;2.7782323;3.4296329;.82383335;-.013944675;.74648255;1.955062;1.6760187;1.2877545;.78673667;2.4334662;-1.6544092;4.2552028;1.6753823;1.6769347;3.6326535;1.277123;1.7324103;.23849583;.87308043;.96314806;1.0574868;2.3987143;2.6979985;2.8365555;.94353509;2.8429604;.993698;.47111395;1.3305486;4.7192016;63.446129 +1.2524241;2.5671089;-.10529716;-.43794829;.24362943;-.080002062;-.9593637;-1.2858317;-2.3987534;-.19087026;.80788064;.41464046;-.68254471;-.5978173;-1.0258985;-1.1436766;.85358047;2.6615107;-1.5561355;.29887757;.053218849;-.30717507;.40684876;-.10542195;.82273632;1.9620142;-1.2085508;.98710889;.71587682;-1.4708892;.37278312;.15620986;-.87428403;-1.1494374;.32652164;.36384597;2.1737092;.46039224;1.0505714;-.63335466;-.81264591;-.56315559;.1539022;-.41924399;-1.0933217;.27770525;.51951188;1.0350097;-2.2116861;-.41817656;-.78323996;-.58465499;4.3942771;6.5747533;4.2106762;4.4320774;.36444065;.95978266;.97721851;2.8342917;-.72738039;3.9378638;.48639363;3.1187398;.60117632;.92273539;5.3178368;-1.3729422;3.0772181;-.99781311;.1688326;1.7310284;.72768116;-.6598267;-1.1289492;1.5331097;.48188362;1.7248063;-1.4205861;4.7014875;4.5877309;4.8983846;4.8231044;.79214293;2.1077106;-2.956265;-.5697419;1.0756805;-.81810147;-.32984534;4.4098907;3.7279415;2.6446972;-3.8005824;3.2091115;-1.2389407;.43890837;2.1845441;2.4729986;.28159145;.97613263;2.4900064;-.041924831;-1.2654742;.0078155492;.017988136;-1.0304468;2.1768479;-1.3610706;.070658773;-1.2414694;1.9464313;-2.1619439;.51708549;-.1280469;1.0329716;2.119446;.66228557;.51519889;-.028955553;.069695368;-.98090154;.53135771;-1.3698262;1.9879425;4.4759445;-1.1795703;.72878104;4.0645366;-1.3492354;-.63169038;.26794943;-1.7808018;-2.5166681;.75493604;.84541821;1.0838392;.47597378;.13972469;-.1988299;.010851;-1.3072603;-.6328153;-1.0413355;-.96009374;.19321518;-.1057747;1.8005371;-1.1823065;-1.5026095;-.076025985;.022419913;1.976864;4.3802638;1.9793339;3.5239229;.84994984;1.6230935;-.15126795;2.2676079;-.1068347;1.7609217;.064246133;2.2510264;1.0871956;.11567336;2.9723616;-.70690644;.64253813;-1.338892;-1.4592251;1.5691094;1.3055257;.63267219;-1.324669;1.7907327;.086052008;3.2906671;-.75804782;4.1936126;4.2523084;3.3488739;1.8791935;.81353956;3.2660966;-2.6128678;1.6515651;-1.8596535;.33621949;.44234106;3.1399131;1.9733979;2.8299091;-1.5363086;1.0355884;-2.4689884;.98723352;.30422989;.86565965;.089002348;42.966362 +-.39232302;-.59327596;.045906678;.3005155;-1.7420925;-.8122254;-.80402845;-1.0288539;-.94522852;-.17047976;1.0949789;-.12368662;1.8708099;1.0611738;.92773211;.89604747;-.81163192;-1.1291672;1.1640974;-.35611027;1.7743802;-.65186656;-1.2430336;1.8997748;-.47912213;-.50456059;-.61422771;-2.2931724;1.5831017;.1600118;-.77056497;.89420456;-1.4367421;-.78426278;-.74396968;-.54655713;-.0015907431;-1.562335;-.66092855;-2.2511435;1.3198065;.079272337;.69441241;.6581555;-.68911439;.84946114;-1.112547;.043673132;.80355203;-.58743656;2.0776017;4.2871914;-.41846099;1.1314331;-1.2415838;1.3427652;.021898417;1.1541888;1.2902639;.13394478;2.8896351;.28349146;.84754193;3.4591017;1.1330415;1.6871451;2.7762995;1.4307626;-1.546586;.82223845;3.0398252;1.9837883;4.5630512;.15833062;4.786263;5.0624719;3.8761034;3.78139;3.4991579;.7294417;3.4350705;1.7490138;2.2401633;1.8055073;3.9797754;.66612381;2.9722471;3.9059293;-1.7436775;-.01293869;2.9609559;4.3254523;1.4925244;2.1754918;4.5261617;4.8120317;2.5529439;3.6071506;2.1839044;5.1594691;-.70678484;-.70735633;-1.8703628;1.0506973;-.26985839;-.59594923;.39401305;-.76783097;.65579361;-1.2572056;.24897194;-.11667234;.76610279;.20744699;1.8525655;1.2524118;-.69963181;-2.0400918;1.4982235;-1.6066074;1.2478838;-.10081109;-.66178566;.22858769;-2.7692606;-.18260247;1.1143937;-2.4856439;1.1372894;-.60597378;-1.4156985;.38613942;-3.7255983;.4714728;.68816471;.83843333;-.77862835;-1.4551282;-1.1953003;-1.9230996;.96513784;-.6309768;-.092778124;-2.1292729;-.60707963;.27279815;.16736481;.48112327;2.0624511;-1.4080704;1.1579132;3.0059037;-1.4673388;1.8307178;-.98032951;.56691718;.712264;.56576324;.83356011;-.58107132;1.3899877;-1.0155505;.41823518;4.1256924;-.69457883;-.63804597;1.2815431;-.50754935;.65636045;.78280693;.93827289;4.108943;2.3676045;-1.3057334;3.5769336;1.9005238;1.9984698;2.9998147;2.6956573;.62153494;3.0672667;-.27463749;1.9615314;.75397462;2.989255;1.0945972;.67791408;.83965123;-2.432358;-.99411798;1.7624596;2.5216901;2.2852733;1.3392231;3.569804;2.7547219;3.0036108;4.4472604;1.7076228;4.3195701;50.467907 +-.4139016;.045565508;.322999;.01499764;.43071803;1.6367624;-1.7859299;.51547229;-.053693701;2.0370958;.87203765;2.1958823;-1.6873183;-1.1309707;-.25189456;.22470883;.098585941;-1.9092244;.094657406;.60691619;-.51012903;.71443212;.54951656;1.018347;-.16713805;.5219183;.6394313;-.68748659;-1.8879832;.20159888;1.0582707;-1.1659932;-.44615647;-.35627484;-.7055003;.21381958;1.1114802;.4095481;.53629494;-.86077732;-1.5038463;.89265585;-.87452573;-.008779929;-2.3261046;1.0172184;1.4120066;-1.2847979;-.30707157;.146862;-.51543289;3.8584478;-.62643939;2.801496;2.4113483;1.1133112;3.2441778;3.3297997;3.8809836;3.084574;2.9332922;.23921165;2.0310421;2.3659816;2.969182;5.4599051;1.7263426;.071726143;4.6574073;.64581728;.70415717;2.2754769;3.0619395;2.5421846;2.5514984;1.4239062;.30537611;4.832737;.71287739;-.76707959;3.6445951;1.1865728;3.2119784;3.3451276;3.2910838;4.483871;2.4200873;1.4590235;.83834004;2.490967;.86805618;4.9011021;1.2705299;3.0951421;.13935044;.40404108;-2.6483655;1.5568156;2.2621944;2.8261034;.43124092;1.2587565;1.913855;-.68742549;.15938754;.62110901;1.1065706;.45727476;-1.1773585;3.289571;-.64299768;2.5923281;-2.0840998;-1.0281429;-.64504778;1.402522;-.09532886;-3.4507387;1.3728758;.84483564;.567608;-.61645043;-.34737909;.55692083;1.1036615;.04985103;2.0414941;-.89361829;-1.2265965;.68025476;1.59867;-.50635546;-.85786188;-.21186817;-1.7633988;-.81764722;2.340462;1.0112512;1.4409066;.71277118;-1.3212737;.81408268;.084848106;1.519858;-1.8705664;2.2883573;2.6601083;-2.2431514;-.1892264;.60685545;.11742577;2.0928004;-.054269321;1.9200288;.20947875;1.0432972;2.6401782;1.0028421;1.9992957;.80375534;-.11788756;-.15386561;.98499197;1.1250139;2.4505906;4.4421892;1.6164423;-.44370699;4.9176912;-.84400362;.72121853;2.3182602;2.4854503;1.3659722;2.0078583;-.89256507;1.4173162;2.9916635;2.2863154;1.2636002;1.591627;.63570392;3.39327;3.2153802;.078534119;4.1828966;-.080180518;.2021402;.19865;.77832037;-.13755439;4.2389231;.71066546;1.8345033;-.18901233;-.11047957;-3.1981292;.24565122;2.0290806;2.2801802;41.76759 +-.34785494;1.0046399;-.026053609;1.3499688;-1.2750877;-.43695065;-1.1179662;-1.6226205;1.1114916;.98843545;-.50068069;-.18564804;-.72534102;1.2688711;-.38556576;2.2035923;1.4078724;.29941323;.61405355;.33194664;.34542066;.31414178;-.74600393;.34176642;2.9332016;-.23624314;-.91561359;.21398434;-.90606385;.18488562;-.24034993;-.15383577;1.037313;1.2911139;-1.0356364;.45871958;.16513693;-.99593616;-.39152741;1.0772904;-1.5397718;.15419334;.53555381;-1.1714036;2.3617713;-.72849655;-.032273989;1.5357289;-1.2383595;-.93834239;4.6339769;2.8838398;4.1170788;2.3210676;.070609152;-2.2868452;.58089113;2.0283039;-.59218836;1.7532167;7.2340751;1.3892189;1.9774947;3.0693417;.61232609;4.2299871;2.5998774;3.1396813;2.7545831;.65088874;-.16141504;5.2421107;3.2991021;3.6321669;.49365664;3.6218348;2.082911;3.3431945;1.2234688;4.3337574;2.0319016;-1.8464447;2.3698182;1.4483107;4.0742054;-.36101431;2.1630147;2.358887;4.8478651;-.00014608643;1.8227047;2.3556221;3.7256627;2.3176568;5.3171186;2.2691917;-2.7094171;1.1345093;2.6563883;6.3432555;.57427615;-1.7344097;-.6776154;1.4762983;.43041003;1.2499462;-.22696859;-.50721174;-.33964378;.47765747;-.30534747;-.50111133;-2.7414403;1.014066;-.70639861;2.4856601;.36195239;.64548653;.0083668092;-1.7412889;-1.208629;1.8830472;-.071449772;1.3692026;3.5199242;-1.1974388;.74517161;3.1605701;-1.0986811;1.866833;1.1103302;.97609931;-.10708678;1.4715565;-2.2760653;.0016854759;-.61044568;-.1943277;.034603141;1.9451091;-.73827869;.80832547;.16069852;-1.2011542;3.0228784;2.1372845;.10296279;.96330798;-.78723282;-.75990373;3.2465541;1.8036051;2.2582128;.83423901;-.83062929;-2.1988943;.8378818;1.1220208;.048628174;.31501999;5.1258941;1.0916654;-.32276368;1.9927572;.6784845;3.6726348;2.2236233;2.1296806;.84062642;-1.3213271;-1.5716907;2.4846821;3.0203044;3.0105383;.5651952;2.922955;.6171965;2.0854936;-.25715268;2.6824849;.92502052;-.078261942;2.4931691;.057497557;3.2447238;-.11334685;2.8184659;.95922965;4.3997602;.6945653;.44604367;2.2280257;3.0919304;1.5616001;2.5596428;3.213887;-3.8080924;.85478312;.80319721;4.5499973;64.456116 +.84204298;.34784028;-.55573094;1.0852662;1.7904482;-.81498396;-.56483585;.67928725;1.0477688;.047570713;-1.6317683;-.059599031;1.4761834;.95506591;-.18116771;-1.2196164;-.50375277;-.22743107;-1.2689365;-.45279539;-.30958012;1.5260737;-.34766182;-1.0840676;-.33565253;-.74782312;.11127816;1.1954362;-.15356645;.22263251;-2.1748557;1.2591414;.37136018;-.68179291;1.2906921;-.61500055;1.6466855;-.61073595;.4204894;-.13035151;-.67591435;1.4548349;-.60799277;.16431957;-.99841243;-3.0831962;.20070843;1.0769273;-.4255726;-.92373359;1.123215;1.2763972;2.2185125;.57483858;1.2056437;2.8916423;2.4224579;1.5007924;1.9981862;5.4551749;-1.0919236;4.9247608;2.972362;3.2443841;3.3542638;1.8908367;2.9915879;5.5663633;2.3913412;1.1777734;3.2025609;2.0675247;3.6224079;.04925726;.09208747;3.1943731;1.9223423;1.2280823;3.9374411;.73033547;3.6032281;-.25118607;2.2747924;1.3655146;3.0725744;2.3524868;1.9940326;1.2597219;4.3532314;4.862824;-.18026505;1.4543933;-.35501337;.79934418;-.64192128;.69089574;1.3408967;1.7257624;.35221684;-1.3472909;.61186606;.03216929;-.34418866;1.820985;1.1759841;.023264948;-.79710937;.35038328;1.4480708;.50494504;-.66531861;1.2005337;2.1912713;.74618804;-.17660668;-2.2789695;.22842202;-.33243757;-2.1314702;-.7971164;-1.9599386;.73813814;-.00091415562;-1.4777633;-.13140248;.34315106;.70349318;.6220997;.15200214;.93108207;-.77498353;2.3307755;-.24900393;1.0190194;2.2577438;-1.3364296;2.3526015;-1.213591;.73841071;.10656764;-1.2463284;1.1239861;1.2929375;-.44123396;-.61492658;-1.2614135;.33368415;1.2275552;1.7200186;-.38341656;-.37146342;1.439159;.80663633;1.1069001;.097393677;1.8782798;2.6715999;2.2973986;.85198808;3.6415949;-2.2254701;2.8916245;3.8605099;2.8511984;2.939852;-.25357968;2.3696239;1.9374318;1.5486094;-.21963488;2.8694401;1.3491081;2.1971405;-.041809123;.72143769;2.1737282;2.1967821;.68536955;3.5991299;-.9135738;.23442648;-.39341009;.52926338;2.5984335;2.8962862;1.9490612;2.7779083;-.51603675;.73238766;3.6753757;-.11543383;2.1357427;.27813846;2.3415968;.32687736;-1.4831127;-.03548285;.3611671;1.4582123;-2.2893322;44.586437 +.85022557;-1.5965991;.45243064;.11296788;-.56231976;2.3465092;-.32352865;-.46972427;-.9103058;-.38414681;.24231039;-.01398031;2.0197382;-1.6085004;-.237095;.22331764;.48368919;.65228283;-.70634198;.29964441;-1.6625307;-.50031728;-.82835144;.98679161;-.012952647;-.16724299;-.47231683;-.98927182;.34666911;.0070952694;.6773985;-1.0054187;-.011299924;-1.9309561;-.49003619;-1.0177177;-1.8045362;.43795678;-1.5469275;-1.2739129;.40998289;.87202632;1.7604017;-.19403811;-.54647052;.48268777;-.22433619;-.3359994;1.0646435;.59624064;.73582101;4.0347109;2.93259;-.28010464;2.7859488;2.7765114;-.74696809;3.0537064;5.9007401;.23318517;3.0021083;-3.3461912;.86474997;1.0257133;1.0354592;3.0772846;-.44026732;2.0718403;-.55874032;.56000578;-.54384059;.51913118;-.60840511;-.26514763;3.1664462;1.8550711;2.7409701;4.1712222;-.62965566;4.6785383;.21201903;2.3678942;1.9830967;3.916523;2.7025335;-.25382584;5.6763725;4.4314599;4.6244769;1.3433969;3.2585402;3.2750463;1.6752177;.97737128;3.2970078;2.7502623;4.588563;1.8725002;1.9812261;2.5018861;1.4973419;-2.3521228;1.3719983;-1.5789447;-.64459556;3.0120394;-.82104182;.39669698;.92399812;-1.783342;.039101716;-.048485599;1.6199634;-3.0454183;.78046799;.45578712;1.8877032;1.0196872;-1.5998977;.28893107;-1.6193308;-.86437762;-2.2730191;.43900925;-1.5673326;-1.3162909;1.172833;-.70647043;-.86683685;-.54989219;.78598779;.87370801;1.4266155;-2.5049574;1.674426;-.40616968;-2.2318962;.24155846;-1.6076765;-.91226017;1.9388101;1.3343157;-1.3687304;-.059204977;-1.3035063;.45275402;-.18366815;1.8370414;-.33184457;-1.082655;-.016716354;2.374265;.68263412;-.63349265;.93262154;1.0411756;.69664228;.67855692;3.9512637;.94501179;3.6157415;-.89843488;-.11785696;1.7867587;.4654426;3.6180787;-.079597369;2.3063982;-.71236867;.22955757;.75585282;-.42881471;-1.3155656;-1.4459819;3.397243;-.99071419;1.606325;3.0264471;-.60315651;1.576342;-.014569728;1.9560376;-.084389128;2.8599412;-.87028784;-.28423154;4.913167;3.2834404;4.7589693;-.86347377;4.3691506;2.7524071;.7348823;-.11079177;1.5224712;1.531015;3.2506225;2.8312356;.34867415;-.19373837;46.728466 +.77990389;-.083410911;.84633619;.24328698;-.12022321;-.82172751;2.1715355;1.7028117;.94971102;-.14701767;.93544579;-1.1507607;-.68951017;-.91302007;-1.0250454;-.52244687;.21920846;-.86924368;-2.0936587;.36145037;.88166809;.15103124;1.255509;.12634617;.85690904;-1.3439105;.99280334;.77293241;-.70773423;.011690093;-1.6626662;.7706545;-1.4235712;-1.4758874;-.52128041;-1.6881421;-1.0512856;-.79221934;.042560946;-.47255233;-1.1770258;.1688029;-1.4839183;1.1113796;.67850357;.41933852;-1.2564486;.56092352;-.022338424;.33794588;.81689364;-.54733407;.97629285;.71700132;-3.0003276;2.4636226;1.8840939;2.6904461;2.2522635;-2.6383374;2.5573773;6.7134819;-2.0547097;3.9652333;5.4395595;4.1873479;5.2115531;-.22164828;2.1941056;.15559432;1.8382677;1.7173409;3.409637;2.2875443;1.0437926;5.3156414;1.5460291;3.1962264;3.6995378;.6335597;3.9304512;.24690366;-4.0214558;4.4842267;4.6961823;-.23939134;1.4851788;1.520228;2.9267213;.11504029;4.4920635;3.9115119;-.20420124;-3.2589283;4.2694273;1.1634712;.99075478;.8553012;.67709363;3.2152963;2.0663013;-2.5324628;.93140692;.75656772;-2.2538199;-.21998261;3.0867229;1.8057729;-1.2784029;.032546345;1.5497788;-1.2181895;.55055934;-.49261168;-.42815247;2.4084649;1.0888073;-2.4604278;-2.3119948;1.3033375;.88247085;-.17347738;-.11092614;-.40310735;2.2609844;.85017574;.048111483;2.0129564;-2.8131275;.28804651;-.5380975;2.2155356;-1.170194;-.049100816;-1.2282311;-1.5111394;.60637134;.39869702;-1.6379403;1.3464912;-1.8116212;.86787719;-1.2726918;1.4943942;1.7951832;1.3427527;-2.0200632;-2.0389163;2.7198124;.084768511;1.3325025;-.91489542;-.092641503;.19058068;-.93648612;2.485431;1.3698678;1.2981744;2.4396677;-2.5102994;-.59700811;3.6724687;.31606719;2.7479234;3.473891;2.2307644;5.0125513;-.69818258;.044139247;-.094140179;.39809421;1.5805937;5.0949121;1.4579244;-.82780159;4.5299902;1.2525926;2.5568249;3.6732707;1.4837536;2.6158767;-.55803049;-3.0147541;2.8525534;2.7804544;-.63082069;.6329003;1.6788702;3.902395;-.48600292;2.435848;2.9808033;.89875907;-1.8216643;4.0399966;.057111491;.51975495;1.6680371;.93770939;.9326086;44.263203 +-1.506725;-1.1471523;.1337909;.54470801;.86501032;1.8515379;-.033349961;1.890093;.21508487;-.57865924;.36316019;-.56330311;.55463654;2.0966339;.5740605;2.3470137;.40014371;.96710038;1.3865674;-.63115704;.4144502;-.11118693;1.1829498;-.77752995;-.51980788;-.32384628;-1.0187919;-.33857051;.3101196;-.3823072;1.3861247;-.85954005;.5783186;.20901306;.097110815;1.3799735;.15067947;-.32922202;1.7051703;.30197945;.69572866;1.3713839;-.525397;-.63004214;1.3253039;1.3003666;-.56658167;1.8590382;.2966418;1.2892528;4.4359736;.25611734;1.7833356;1.9460623;1.770273;-.36860529;1.8166908;1.6509633;5.5865622;3.0640764;1.9346743;2.0318456;2.5631964;1.2761211;-1.6378869;1.2631793;2.8338602;3.3746433;3.3295574;1.2338916;2.8878555;2.9365194;1.6320965;1.8510917;2.5781527;.6874783;2.1230774;2.3379185;.53536367;-.71734369;-.86836046;1.6896129;.69003719;-1.7344874;4.4374146;2.258816;.67676753;3.6350472;-.65464646;-1.25021;4.3579092;-2.3186891;1.5151848;-.82330531;6.0618548;5.7908826;3.0137885;.36981136;-.95613319;-1.0951303;-.95175874;-.36450636;.07934662;-.80124581;-.54877514;1.333339;1.6113988;.4554292;.028055524;-.071185321;1.6835729;.40583345;.71877587;2.3449659;-.33582044;.951841;-.23362942;.71459413;2.4496474;-1.0925508;-.78964382;-1.6472652;1.2255613;-.64313781;-3.7996464;-.1797953;1.2641422;-1.6190243;1.8857764;.62731755;.73395342;-.32409999;-.14378858;-2.2739608;-.63386548;1.3602943;.63780105;-2.4510489;2.0989265;.59366214;.65156287;.27357897;-1.827469;-1.0419002;3.6931059;.047738306;-.43503118;-.0023295141;.74471575;.55937952;2.3972681;.41822255;1.3382418;2.3422046;1.5478145;-1.7644514;.44876334;.1029404;4.7256207;1.6543566;2.3381028;1.0856127;4.4291043;-.023661293;-.37451181;1.5950106;2.3380194;.51484269;1.6021858;.58597344;1.0098935;2.2701557;.8601802;1.0468258;.54318684;1.2648298;1.019814;2.3576291;-.13882191;-.0014535317;-2.0989709;1.7224566;1.7684786;-1.0893633;3.7304897;1.9862769;.19672154;1.206479;-.73323596;-1.4158571;4.3625708;-1.0945588;2.0995371;-.85841495;4.4625382;3.1450467;3.6434302;.25002888;-.50607824;-.40605521;41.678909 +-1.3172746;.44213569;-1.5967408;-1.7830071;.28669843;-.78423887;-.30840427;-.44671214;3.2767453;.10504632;1.1255745;.70952511;-.11441729;-1.7057106;.067607693;-1.0157676;1.2485073;.62764877;-2.2035203;-.39871734;.58422422;-.6332044;.37113497;-.13474406;.81187248;-.74824858;-.3511565;.845209;-1.3160709;.116945;-1.0393163;-.25676686;-.24393761;-.27388304;.58332562;.68298757;-.63867593;-.97695899;.36598462;.026359797;.61048263;1.1202955;2.0310531;1.2597054;-1.4309098;-.62561774;.66705227;.66415226;1.0856761;-1.0325981;-.080844142;3.4939735;1.6916366;3.8198659;.86077523;1.6606796;4.7302508;.44438657;4.4484234;4.1487145;3.7482193;1.8452244;1.8539636;5.4011908;4.1599908;.14013031;.47867292;-.56901574;4.6194425;3.9208665;-.64977187;-.58171707;3.3225951;-.76873296;2.2971241;2.629858;-.46559322;.17639405;5.8027058;2.0684772;1.297519;4.2606621;3.531399;3.3097875;4.1024199;1.2377176;3.3938446;-.53837109;3.4311202;.18266213;2.0354717;4.3287435;.099850886;.014450582;.96624011;4.2911601;3.1704609;2.021847;2.631053;2.9167261;-1.9211459;-1.6523336;.85787445;1.0874383;-.8982563;1.1300579;-.17019348;-.70457393;.069781236;.021851948;.53979933;-.38420215;.90715259;-1.7559129;-2.0148842;-.75829619;-.49828416;.36288902;-1.5905674;.9326278;.96145701;-1.2122918;1.0451564;.071390584;-.99684554;-.35964596;-.21976571;1.206807;-.54265994;.21242085;.96932125;.35383326;-.27515334;.2861653;.28098258;1.0148596;-.22179516;-.14095797;1.1113203;.53071159;-1.3251054;.085929051;1.2903041;.62280315;-2.8776429;-.25100136;.57828206;1.3485211;1.5116206;-.069857024;.49361151;2.2283077;.204052;3.5648384;1.5769926;2.0758915;3.6381376;.55867666;3.2822587;1.1576819;3.7886822;.64897203;1.3280684;3.6853244;2.2518637;1.0422914;1.5699085;-1.3181299;4.4898081;1.454098;-1.7011344;.11081835;2.8431044;-1.7106954;3.0241883;1.2637974;-1.3105648;1.6242392;5.0748115;.85538292;.61317027;1.5445685;3.0273757;3.3662245;1.9754552;-.25445366;3.4280152;-.026151063;2.4857068;-.35453638;3.1200011;4.5667248;.15531987;-.43869615;1.4123242;3.5124252;2.9069772;1.2634003;1.2617588;1.7081038;51.181229 +-1.0068529;.47321799;-.91723776;1.100606;.83341217;1.1886845;-.31950516;-.928864;-1.3845526;-.24737816;-1.0694097;.33924308;.62945831;.75706166;-.14912382;-1.1523888;.48271084;.47396508;.016424345;-1.2118633;.50610173;1.2624493;-.12196423;-.36300182;-1.0892985;-.45793444;-.47462496;.5123288;-.98801631;-1.3621297;-1.0261685;-.11380661;-.90267032;2.0614796;-.75216717;.2263613;-1.8997273;.24159659;-.54596639;-.73173624;.89760357;-.80496174;.26491141;.62962222;-.54255313;-.64279747;1.1737919;1.3231674;-.088799194;-1.2753197;-1.4784583;2.2147019;-1.7959957;1.0506423;3.1114957;3.3234687;.61589515;-4.2997794;-.37394983;-.36488077;2.8575113;.71463776;1.2991567;.070754476;1.0313836;1.6050454;1.8073667;3.8325253;1.5725663;1.5736979;5.0709381;3.6421831;3.1592515;1.8396544;.71324098;2.0817945;-.53330994;1.9703616;3.3749602;4.3339148;6.0892606;1.2275139;5.5132079;2.9098885;4.3378997;2.2024336;4.3774457;.83925068;1.3427966;.29835758;.2443552;5.5138249;-1.7347741;6.2497935;.035065848;2.9553947;3.2970378;-.44916287;2.7092502;4.8985047;-1.5934082;1.6047955;-1.4994549;1.4322972;.088026255;1.0825026;-1.7252209;-.95393503;.45319873;.64261919;-2.2187822;-.15856071;1.7574582;.86761409;-1.702229;-1.1423568;-.14151762;-.67669553;.77453101;-.85947639;-.13288972;-.50314212;-1.8384668;-.28455994;-1.1579111;.25186282;-.2473691;1.6591458;-1.6537703;-2.1976831;-.44544122;-1.4993396;-1.0894247;-.46066716;-.89052248;1.3023885;.53122318;-1.6349683;.2105559;-.091892287;-1.0847516;1.8960524;-.16705434;1.2628654;.099363759;-.38180849;.52171767;.22555082;.14623612;-.2123872;-2.3242383;.86099958;-.51474237;-.74658275;2.2295907;2.1159883;.70650297;-2.5396454;-.012129636;.6238578;1.067681;-.52158767;1.2482874;1.5449562;.083545364;1.8401074;2.4208045;3.3363781;-.37922755;.035673819;3.8939314;2.6317408;3.0314057;1.5091006;2.4491978;2.0865943;.60773027;1.9753546;1.6699641;2.353008;4.107584;2.0004456;2.7794843;2.3884933;1.4361812;1.7990061;1.4577144;.68287075;1.188077;-.42444894;-.092773728;5.7770195;-2.8280075;3.1593251;-1.0144833;2.3107395;2.4513781;.63612026;.74474949;3.8464003;40.782051 +-.07590811;.56355816;-.37239909;.137899;.2999028;-.72876608;.057833426;-1.4663187;-.25891912;-.87826252;.20593362;.25834835;-.050157871;-.020456977;-.44344196;-1.2539458;-.32201552;.23302639;-.082102165;-1.0702814;.95793581;.068709783;.8057636;.20758417;.59708929;-1.4973785;.68812799;-1.4033165;.60784996;-.16494653;.060884953;2.5982859;-.95029819;-.30846483;.84142387;.080568179;.62350571;.073149286;.72228342;-2.1665208;.21323918;-.36549908;-.54815918;1.403561;-.53619391;-1.0869616;1.3942845;-.065083116;.72734123;.50398141;2.1338072;2.9706004;-.41662881;2.6614454;4.7201171;-.38031533;3.9011276;-.250958;-.31985542;5.94417;1.9432585;1.0630695;5.474637;5.2569246;.99226624;-.43464938;2.3045084;4.0369244;1.2712133;1.8384548;1.3403754;1.3518908;2.0001502;1.080395;4.7705359;-1.9563819;3.5340631;1.5276457;.1306276;1.257508;5.5590763;.77842885;3.7204146;1.0688207;2.0044715;3.5271719;-.42469662;3.8829315;-2.6832657;4.8032298;4.421845;2.3249743;2.4805713;1.1273284;.86813223;-.090270676;2.4714704;.50300181;3.8761411;2.8763647;-.36995414;.51760399;-.39210474;1.3177792;1.5421255;.35171822;-1.4841415;-.5111807;-.86892033;.54997802;1.124215;.12747373;-.20396782;.064107694;.46442467;-1.2087096;-.48818994;.48079705;2.0640645;-1.5739366;.39546725;-.93936133;-.64605772;-1.5014324;-1.3587126;-1.2691338;.3905848;.33717579;1.2381823;-.3715885;.47700682;.91221416;-.90439188;-1.3222296;.71006495;-1.143253;-.73533762;.72300088;.063249469;-.58003855;.27789459;1.1748552;-.7772516;.50738442;1.537142;-1.7981665;1.0567828;-1.2482342;-.23511212;-.18480778;1.150816;2.5507891;.44197717;2.1422737;2.0752902;-.040360913;1.7421262;.4766227;-.32552195;4.5767026;2.4270103;.35720584;3.8141956;4.7316742;3.0570862;.65844673;2.1100695;4.7839532;1.4001907;2.1734831;-.83360237;.31045356;1.101485;.76055133;3.7585881;-2.055845;2.6376481;-.82466108;.33535275;2.1268573;5.2479362;.40504023;1.3040446;.064452842;1.4048593;3.8659737;-.88774824;2.9306691;-2.9414525;2.4857337;3.3397117;3.9046938;1.2212564;-.056588039;1.4733298;-.28742474;1.945914;1.0751207;3.2610786;2.7221911;52.458828 +.05339063;.3345986;-3.0185349;-1.2892426;-.14547795;-1.1700144;-.30919674;-.81464636;-.30475792;.088133298;-.61316979;-1.8395165;.65374547;-1.5138503;1.25219;1.174986;-.83991385;.2676852;.036554549;-.072991528;-.41430813;-.16248657;-1.6250061;-2.0708063;2.0051622;-1.0036236;-.1246021;.056203514;-1.1384946;1.7912931;-.48366264;2.3806691;.35342014;-1.9108561;-1.0442857;.028161287;-.78321302;-.56849861;-1.9914795;-.56892133;-.96544737;.1054965;.87852257;.90029085;.99255472;-1.0415516;.065941334;.59936208;.28797415;.60657251;-.19371451;4.5050168;-.41629973;-2.8601632;2.6286881;.12178721;-.15610254;2.3538163;1.1696742;2.8571978;2.4321935;.84742045;.9961459;-.39339879;1.2114878;3.6088886;3.1819501;1.168772;3.4137073;4.2425518;.98064643;4.8538594;-.43133423;.32863632;-.53138071;2.1182725;4.0357485;-.40176561;-.74705213;.65438187;-.2200864;-1.2084811;2.315022;4.3702574;-1.932811;5.1175852;3.6881897;-1.1895902;4.0694475;6.2137227;2.1174607;4.6307054;.49507838;.71748608;1.5558482;2.1460223;-.93003422;.9758907;5.0745211;3.9968216;1.1399064;.21287137;-2.5336509;-.86698318;.042111527;-2.0799375;-.25320563;.27173835;.62349361;-.30508286;-.93830228;-1.6265633;1.5605917;-1.2351907;-.69260287;-.98783368;-.22088784;-.12368055;-1.2502573;-1.8437818;.71932352;-.4779653;-1.8568193;-2.5354328;1.6094488;-1.1168832;-.27012932;1.3066957;-2.0201237;.57538235;-1.2898091;1.9857432;-1.4091531;-1.3471195;-1.1013211;-1.7458891;-1.0441982;-.35782939;-1.2113974;-1.2420408;.034606997;.3984645;-.094184503;-.47634399;-.34447151;-1.2773423;-.2218418;-.045780506;.73235339;.15765154;-2.0006542;3.2148707;-.29884613;-.5012846;2.2257385;.20920205;.10117502;1.8051928;-.15413949;2.3938267;1.370788;1.4790971;.0032660353;.11260116;1.0349891;.99788982;3.3821819;.4765552;2.7754893;4.807056;.95957321;4.5480957;1.4604887;.77413672;-.46762699;2.0850708;3.9352467;-1.4299937;.2959159;-.20548691;-.8748669;-2.1818798;.83810973;1.7739948;-.34556124;1.6394491;2.3545871;-.91842508;2.2641823;3.7153625;3.8241808;2.9251838;-.51386565;1.6370577;1.3651708;2.9993343;-.0028184468;-.58702672;3.7123394;.89164901;35.897034 +1.5142348;.19154955;.034695908;.21814893;.62803042;.094656564;.17791198;-.28602445;1.125628;.1111445;-1.3344525;-.51956832;.050807457;.97784787;-.30590531;-1.8510367;-.71092093;.38440284;-.03812005;2.1840794;.76457095;1.6936941;-2.1306229;.2662321;-.38417882;1.1967474;1.3712006;-1.4134411;.44748849;1.9277401;.59202886;-.38625184;.028499797;-.21657392;.88894492;-.27202174;2.3404098;-.53666079;.71716893;1.0511148;.58071065;.34389132;-1.074417;-1.5627018;-.39071071;-.13481157;-.66766191;-.98024487;.24907959;.47167078;.33954573;4.7395296;3.7443397;3.0357902;3.4419117;.37578294;.10805673;.89432776;1.8500149;.71794015;-1.9766032;2.4020875;1.1008312;7.3173275;2.6455736;2.127285;-1.4240501;4.4917498;.8319869;2.9658995;2.5171113;-1.0539664;1.9759886;4.3182888;2.7751548;4.1515241;4.5509281;.96782726;-.034007467;3.7226286;.85007042;3.7031517;2.8818209;.35401154;1.7428783;2.3454549;5.6949697;2.4478536;3.2286062;6.4036827;5.7262921;4.5472288;4.3169918;.7961517;2.2220354;6.2178693;2.7655134;5.577805;1.8081892;7.1005855;.1135407;.47327265;1.708482;2.5186489;.11984164;1.7181838;-.070577264;.51251847;.2120664;.85181713;-1.1789901;.0008140573;-.29386178;.72714454;-.15686624;-.6444822;-1.4369;-.78601551;1.1946492;2.8965938;2.4872451;2.4060817;-.94728822;-1.6559484;-.40143359;.16094123;.90787256;-1.3712274;-1.6996765;-.21064517;-.10319822;1.7574124;1.7955025;.54493695;1.2505417;-2.2323284;-.0070005474;1.0464852;1.5602738;.26456052;-.71534687;-2.0016472;-1.2712579;-1.2057304;-.06547235;-1.2324861;-.36821648;.29182118;.32904246;1.1335189;1.5615914;3.3303738;3.6074915;1.0368799;2.2768965;-.47502723;-.99448067;-.80122554;1.7318417;.56255835;-1.9726083;2.4393282;1.3748817;5.5725436;1.2034285;.39894286;-1.0015796;2.0349104;1.098711;1.3244334;2.0184596;-.3815926;.98204905;3.6994398;2.936615;1.7238587;3.5012598;.027681682;1.3144687;.92082202;-.33005697;2.5064094;3.1162331;-.38665366;-.02179631;1.3474013;3.9498792;1.4715478;2.4476881;4.1811128;4.2999272;2.0433226;2.6012101;1.4438699;2.4746382;6.2764921;3.0775609;5.7648668;2.8515112;5.7454901;63.655701 +-.93105167;-.51896155;-1.6882014;.034658048;-.39229923;1.3623079;.60243303;1.0957317;.31047106;-.19410758;-.55709761;.56031513;-.98479098;-.24444978;.2173087;1.1278524;.013512582;-.50220817;1.3421488;-.33428079;1.315676;.87821895;.78798634;.99479139;-.53800672;.28999513;-1.3997488;-.10103083;-.28087956;.34718859;.03238276;1.5354964;.51374489;-.080783702;-.05075524;1.2598106;.91939604;1.0556327;-.86481184;-.74308646;1.5557442;.35980392;-.72982657;-.96202689;-1.1585708;-.020945173;.78748173;-.14130618;.093195654;-.12403095;2.6456583;.66387981;4.2476196;5.0072289;2.4639351;1.7495463;1.4585427;4.990922;-.75113201;2.6819875;2.3005514;.91111779;.44680539;3.0326769;-.3793917;1.4253316;2.3936801;1.2566563;3.7901154;3.0621636;1.1546853;.73150492;.26658529;.97267479;.29589677;6.1167588;3.7643049;1.2591432;-.38851887;4.3932638;3.9799869;2.4832566;.98720992;4.2412419;1.6515943;.070037723;-.65949565;.075693771;3.3200619;2.3456182;.78864092;6.0180106;5.6729412;2.3256125;3.7646155;1.7623467;2.0867999;1.1893945;3.1730065;2.5065711;.01118144;-1.5995035;-1.4287382;-2.4683022;-.41565987;-.21089636;-.26901746;1.996734;.40041232;.18852766;-1.5435895;-.83904314;-1.5855887;2.1705058;-1.8262297;1.16837;-.73607409;-2.4526029;2.0480926;-1.9436877;-.94995821;-1.5129039;-.28320917;1.3888443;-1.1871554;1.7113864;-1.3143189;.24700536;.93840992;.27218285;-1.2116454;1.1775148;.25805295;-.77517509;1.224466;1.355547;2.2826631;1.1615131;-3.0210979;-.31936681;1.2074251;1.7141171;.93547821;1.3372219;-.12361279;1.6436332;1.2564139;.41666833;.46423614;1.1327749;1.5837616;-.34207329;1.6747329;4.602169;-.13114765;2.6577034;1.9350787;5.4201174;-2.7370148;2.864114;.49183062;1.1181693;1.8420794;2.0930135;-.84934795;1.0772539;1.3730186;-.55652523;.83119589;3.5801818;.19773257;.45846868;-.094980985;3.899893;.87163955;4.5318103;3.0390604;1.7045165;.72557586;3.4915364;1.5378978;1.3200263;1.7069455;2.1037638;1.5186269;.70421958;-1.1857675;1.3130977;2.6420474;2.3431733;.47082058;3.7947602;4.0371437;1.9589279;3.5123072;-.10740054;.17060187;2.2481384;2.9085968;1.3977298;57.739304 +-.16919059;-1.6554788;.042840768;.27730694;-.77653921;1.4488652;1.5320289;-.87168807;-.12187292;-.23558387;-1.5123643;-.35709098;.82154292;-1.0044596;-.5825125;.61303025;2.3198318;.57531309;-.29824319;1.1491623;-.84566557;-.66989183;-.63688886;-.17673892;1.2548819;-.16199134;.57797188;-1.3064739;-1.535342;-.79528403;.16657296;1.0348082;-.39974329;1.6698958;.35630435;-.18299936;1.6853882;-.67904598;.58752006;-.87646008;-1.3560418;1.4941099;-.30689171;.56369197;-.83691233;.62009221;-.015223266;-.80109251;-.497765;1.0281371;1.719013;.83453667;5.3856478;-.72862422;-1.1671227;5.4974217;6.9586482;.70012468;2.3562329;2.3069685;-.64219397;.91961229;1.7416199;-.60449815;5.872261;5.0146823;3.2794294;3.362906;2.8027575;-1.5867471;-1.3297668;3.9633517;4.0669465;-1.4009092;3.2776184;.17586713;-.57015187;3.4629273;1.8132614;-.090424769;3.8371205;4.1876364;7.5542192;1.6167029;.38951418;2.5657015;-.71128267;6.3403292;1.4759846;4.0288935;3.1535392;4.232914;3.9563489;4.5749578;-.15763412;.080441378;1.1634306;-.27400255;3.9736896;4.9835157;.47384623;-1.0827533;1.0242753;1.4901091;-2.1800148;-.024892997;-.63102031;-1.8501761;.70254302;-1.5176548;-2.1921461;-1.4148871;-.90931487;.59675747;-2.8590312;2.0473666;1.476701;.92860508;-.1964446;1.2711806;-.84295976;-.72666901;-.5563041;.74696726;-2.1068385;-1.2761049;1.1545208;-1.0518318;-1.7256134;-1.7771769;-1.4035499;1.8871595;-.99585533;1.8783389;.31188807;-1.6016716;1.1745559;.4360711;1.6834005;.22445159;-.53235;1.0240163;-.72796792;.38608605;-.51530701;2.4940116;1.2124317;-.24553367;.48565379;-1.1177193;1.398015;-.53794795;5.8172832;-2.8208129;-.33660814;4.4082975;5.9373775;1.1347243;2.5242848;2.6258924;.019481158;1.3186324;1.9200703;-1.1228744;5.2417064;4.1903062;2.5069406;1.2510825;1.4740269;-1.6683968;-2.2572496;2.2754607;1.3037174;.18397069;.9192813;-.57108521;-.063079312;2.1861093;.21141638;-.22618873;2.0053217;1.5429103;5.0874033;1.7058272;-.93911767;1.3885976;-1.5664625;3.0200937;-.06979429;3.6876321;1.618274;2.8051436;1.1822287;2.8086958;-.16449149;1.1001432;1.3249093;-1.0005158;2.4930162;2.8521757;45.92244 +.64111632;.8328867;1.5836475;1.190804;.55124784;1.1829073;1.5048572;-.476271;-.61475492;1.7458886;-.40672496;.55874294;-.7558465;.069157027;.40251693;.24094233;-.043555729;-.93673283;.022475608;.41342926;-.47040164;-.051690046;-.47597066;-.75161904;.54083812;-1.0380013;.54519701;-.17606655;1.3639567;1.7833515;-.15541625;-.27467796;1.5725075;-1.2712206;.88112921;-1.4212574;1.0991868;.44997475;.22741196;.30253631;-2.1137395;-.66342992;-1.5012935;.37252375;.14491495;-.35813507;.58694118;-.021302238;-.40287358;1.1006891;-.4036155;1.9050562;2.0975955;3.4208758;3.2846472;-.31492648;.18099812;2.4291778;3.0372667;2.3631358;1.4943595;2.5225167;4.2101293;2.3637624;3.1826746;2.1560102;-.21600556;2.8507011;-.060583804;2.7853196;2.795872;-.47733518;-1.7812326;-1.5455842;.78542626;3.5570211;5.1575346;4.3381906;2.257513;4.2174468;3.4732153;.80255556;.40466666;2.2536733;1.80527;3.1066539;.48906776;1.7333546;.62402302;3.6732402;.50590152;1.2495292;2.1572509;1.8420917;6.2638392;1.6568351;1.5625584;2.1539714;7.2650261;.79645497;-.99651599;2.2762828;-1.6186754;1.0552341;1.2545071;-1.4268711;1.2234553;-.4820928;.64063829;-.15067108;-.72691619;.055504758;.62712789;.89270484;-.38922304;.83448088;.49621186;-1.6289108;1.9183725;-.49281842;-.19050784;-.5253948;-.66343927;-.48504728;-.44238207;-.16466214;.082862057;.34012473;1.7315984;-.574301;-.22697297;.8969205;1.5624318;-1.680023;.24191089;1.3044297;1.9461302;1.0155939;-.24339516;1.3965019;-.78662372;-.93856519;-2.6026309;.45662105;-1.6552976;-.23079802;1.013813;-1.6126716;-1.4730071;.6084736;.58179176;1.3874182;1.8590991;2.1971478;3.5453694;-1.00012;-.99493778;3.1726198;1.9763337;1.7766279;2.8339601;.87700391;2.5986364;3.0424836;2.6916788;.9783181;-1.032115;1.2469689;.11963277;3.0938914;1.9276805;.14633632;-.82672012;-1.5892723;.86642218;2.9400227;4.6054249;3.6799471;3.7298512;3.0253487;3.5453033;.21489224;-1.9005879;.5737772;-.52530581;2.199759;2.0172808;.77660656;1.3244423;.46676826;.30865762;.86636436;.10818544;1.431151;4.6225829;1.0917038;.57623833;1.650367;4.6981196;-1.3838797;52.142067 +.22548395;.25657114;-.31052363;.0066297068;.082511611;-.19052838;.51178253;-.49422604;-.069899522;.75301194;-.60796893;-.96093148;-.38782772;-1.8365467;-.1341036;-.11102444;.64919126;1.3956923;.88299835;.09359464;-.38301724;-2.4995277;-.89461392;.42263362;-.41659537;-.31496233;1.5598052;-.86454517;-.60989338;-1.2655345;1.5010759;.9679423;-.0048352322;-.40109685;-.28002796;-1.4377631;-.56770986;.15162833;-.9568038;1.9050843;-.39159134;.21145196;.24705252;-.17519067;1.8091621;.45578286;.68119013;.39466047;-1.0630714;.94441015;3.1488421;3.8141727;6.290422;-1.2734208;1.9429271;2.3595488;3.0184262;2.8446891;3.4005365;2.57213;1.8493969;1.5848432;4.3007531;1.510564;3.9314265;4.5970368;3.3463359;2.0414186;2.7043278;1.9690697;4.078054;1.6362296;5.670033;-1.6103902;1.652053;.22297078;2.9445136;.742679;1.1017536;3.8946311;.67278224;1.2191951;.29364872;-.049838573;1.1408741;-1.7755934;5.7952652;-.19262441;2.1042566;6.2900066;2.4442575;1.8206745;2.2131014;2.7264209;1.9527246;1.3776038;1.6622965;1.9802465;2.2754147;-.75486112;.12223653;1.3395653;-.27403563;-2.1724641;1.5515575;-2.3057382;.13016793;.0037922522;.95970643;.85848415;-.26777568;-1.1060388;-.11226679;-.45686078;-.50140876;-2.2143445;1.2662476;.85688853;1.2535324;-1.8397604;-1.4489779;-1.9000901;.88253337;-.74237496;-1.9149719;.41178784;1.7828974;-1.4086903;-1.3920975;-1.3882513;2.3375554;.24484737;-.047861632;-.430379;.27270129;-1.6925749;-2.0100453;2.5085745;.13854578;.81410086;-.072493516;-1.3633085;1.1842304;-1.44587;1.3094364;.59901845;1.066826;-.62673908;-.37852353;.035634525;1.2325791;2.3470149;4.0220528;-.98856199;2.5256393;2.3930445;1.5297785;.75660473;1.9243606;1.5932971;1.8984228;1.0865386;2.0887623;-1.2112437;2.1213379;3.4026914;1.3955376;2.5214481;1.9492991;2.0201387;3.2741439;.95717031;3.4734251;-1.9718578;.34571713;.096844234;2.5324585;1.3781085;-1.0664401;.071570083;.028794995;.7076903;-1.0015099;.74576855;-.29601663;-1.3457268;3.500124;.64954036;.83601457;4.2247138;.44089958;-1.0207419;.85831696;2.6158035;2.1160946;2.6127303;-.39801699;1.2396431;1.3423935;1.6734343;64.999535 +.38448834;1.5358704;1.0246623;-.65783322;-.33258247;.023642365;-2.923878;.6161471;.68214637;1.2415881;1.0986726;.072134987;-.54281008;.22069405;-1.5922542;.25114891;.13923085;.1069349;.029277677;1.2271854;-.037664082;-1.6604912;.47399798;1.0553524;-.75063998;.11623777;.58826929;-.50306475;-1.4402901;-1.5309983;1.1331571;-1.9647251;1.103178;-1.8693922;.71127939;.45291236;-.34097663;.081294253;.94538045;.62617689;-.634803;-.8678661;.26078913;-.23632005;1.4245079;.30703151;-.0092397332;1.0137036;.8040942;.44684935;5.56675;1.5852628;-2.4373884;2.1005998;6.3506613;2.6681669;3.2195411;1.8598063;1.9357373;3.8424985;-.0975677;2.7930479;2.0567312;1.5327982;4.1262321;.54664308;.77634811;-.47568801;4.156682;.5391522;1.8922434;4.5414166;2.0070477;2.4884062;.10234722;-1.8443373;5.5606241;-.35010412;3.9244945;2.1736188;3.7148678;6.7331228;-1.7511479;.90930456;.92040992;3.1462183;2.7518275;3.4151466;2.3185148;2.549129;1.0373311;1.7831383;.6019277;-1.3473707;1.1879108;5.2918434;-1.1473062;1.3037972;3.4446807;-.26575744;-1.3057094;1.3260421;-.21682127;-1.7373345;.0846733;-.69236869;-2.2460532;-.35032916;1.2769805;-.37461105;.10989925;1.282763;-1.0345665;1.0699345;-1.2251936;-1.2854718;1.1168392;-2.2631407;.61723834;.011272882;-.12569353;-1.0828919;.50062752;.51414967;-.55879617;-.25288984;1.4787742;-2.0949376;-.42999163;-.76907921;.41541159;-1.7772777;.27121231;-.89749628;-.17473295;-.96437591;-.76188612;-.08862868;2.0964091;1.8914822;-.64086777;-.20873219;1.5593777;-.83098507;1.8208578;-1.3239758;-.082044907;1.1760608;.88126785;1.9467598;3.9151516;1.313547;-1.5312002;2.1569235;4.2371769;4.0236206;1.3778369;2.2053554;1.4956087;1.9092258;-.73194194;1.7265859;-1.0192767;.098397829;2.0679457;.97990304;-.60586226;-1.9739364;1.8665252;1.7100363;1.1917958;3.4699514;1.2001618;.17722791;-.37797752;-.94543874;6.9427285;.98629016;.53311813;1.6856006;3.961514;4.4156761;-1.7607955;1.4771913;.9993583;2.5020971;2.7781694;1.7928264;.49679402;1.0617471;.25297967;.79097599;-.43923819;-2.0537355;-.94076675;2.3918068;-1.6848929;.29994822;1.9056442;.48818797;60.272839 +-1.2108195;.9001807;-.27450669;-.061367333;.35632664;-.34549409;.50864303;-.16840935;1.1045097;.53169173;.08561898;.14311761;-.55723751;.68560421;.31680834;1.9029537;-.32774273;-.42224452;.78089178;.034473158;.85401255;-1.5939115;-1.1336179;.443892;-3.808157;1.8888472;-.32345203;-.32701245;-.2921994;-1.2927141;1.3154579;.97881079;1.49036;.47330028;-.44792855;-.6400888;-1.601779;-.29937446;-1.5809391;.23724476;-.67228651;1.2175424;.62804389;1.8511704;-1.5823915;1.0249696;-.70960814;.67587644;-1.8301606;1.3460947;5.3997793;4.1898303;-.25976783;.5749886;2.5545883;1.7575046;2.5845649;2.8666563;1.5681747;2.7897291;4.3825517;3.1438141;2.1377211;1.3440442;.2719284;1.2265793;-.90949947;.61232692;2.0798242;-.71353108;-1.2679765;.81304955;3.461184;3.2923391;2.4468982;3.0590887;1.6706583;2.6745551;1.5813217;-.80236846;-.17436598;-2.6757941;1.3578517;-.84991324;-.28874794;3.6523461;.86540872;4.197597;1.1712011;.92666417;5.2132225;2.6255395;1.8425303;4.4123874;2.3390422;.94120854;3.6909742;-1.4946033;2.0896969;1.1488211;-.026734339;1.1927625;-1.1825039;1.0339628;1.2186202;-.39955553;1.2531794;-.032234807;1.2980514;1.0166419;.57440197;-.12843226;.24441528;1.9609398;1.7813475;2.032289;.54729158;-1.0439843;1.3026972;.71092379;.86420518;-2.8312368;-.048012443;-.96516401;-3.1247272;.2745305;.40609589;-.61282384;1.7822311;1.7181996;1.250788;1.2100121;-.23177731;2.8153126;-1.0045422;2.4412344;-1.3806285;-2.8133817;-.99250036;2.0178618;-1.7460809;.64470077;1.1783931;2.8722472;-1.667956;1.379582;-.92122751;-.16603822;-2.2674963;.016472682;3.2303755;3.741998;-.47984594;-.14274555;.14863376;.027137354;1.5422628;.62151635;1.133655;2.3172436;3.0259287;2.2136219;1.5495081;2.2320774;-.43529803;1.8641258;-.247113;-.018298572;.99222982;.098535232;-.58769232;1.5050441;2.7040684;1.6650314;1.7688173;2.5472727;1.1413128;1.721231;1.0362411;-.44004929;-.64198279;-.85220623;1.1172853;-.92497343;-1.4226373;1.9978007;.048352726;1.5513197;2.772404;.86814564;4.9240556;1.3115792;3.3684864;4.288044;1.9989505;.9281469;2.6491029;-.79208988;2.5196619;.14301701;33.55011 +1.2093822;.62951386;-.34795174;1.8010885;-1.2909155;1.1435353;.85125911;.53805083;-.11169235;.38833204;.21319489;-.88446307;.89170069;.85468626;-.2729488;-.026242245;.92314333;1.4798294;-.040040486;1.3893512;-.29099736;-1.4020077;-.59842187;.5386923;-2.8693435;-.99382186;-.19005972;-.48901388;.65999407;.38410378;-.04518659;.66934508;1.4347619;-.79038942;1.5749969;-1.1718986;1.3138529;1.5894402;-1.2380202;-.049751289;-1.0009019;-1.8159751;1.2039155;1.6276872;-.384202;-.38112009;1.3087187;.052714292;1.0596951;1.0922604;4.0566111;.67452741;3.4322009;.28014672;4.0785623;-.93239564;1.3112967;3.6056151;.89432311;2.6830823;4.164053;-1.1135565;2.4946165;2.349575;3.4995599;.022925513;1.741317;-.1144255;4.9672141;2.2579045;.85560822;2.9218316;3.3525736;.31897932;1.5219857;.20290799;1.3999364;-1.5549037;2.8329055;.84427702;2.4681118;7.2685809;4.0094891;2.1107025;.45024362;3.7348444;3.0440621;3.4346907;1.9696093;3.2461722;4.4076285;-.80742353;3.2071435;2.2165484;.092804283;2.317431;.13068457;2.47017;3.006891;2.7976432;1.6678681;-.3944459;1.2245079;2.6293261;-1.0469617;2.5376568;-.053507868;1.1463001;1.3817023;-1.1693242;-.54993749;-.6813361;-.0039228015;2.8088722;-.52318299;-.83955133;.41857639;1.9103785;.13512057;.58070523;-.57730639;.02204011;-.97442806;-.16997288;-3.0995977;.17680265;.46502239;-.041943707;2.2638898;2.0184627;-1.5042609;.55035859;-.87996483;1.7399468;-.12109691;2.0833771;2.6193659;2.0089099;-.79575467;-.89154828;-1.2831725;-1.3988484;1.6521982;1.7068145;-1.2498603;-1.2737453;2.220382;.79232782;1.2008178;.76218784;3.6783857;-.5011524;1.9296007;.052197497;3.4590089;-.86581612;.019574005;4.5214238;.88107944;2.4434643;1.0828617;1.1862662;2.5897803;.64597261;2.9154768;.35112035;2.2555432;.018487966;4.3044314;.94435787;.38118649;2.7227142;2.4498456;.016690297;.50545037;-1.1491761;.99028629;.74423063;2.495146;.93902773;2.2107663;3.6841259;2.5417163;2.0991366;.13211213;2.378638;2.3121591;2.3927286;1.126253;.37196815;4.4982166;-.54105943;1.6472164;2.1945391;.31927955;2.3586323;2.5983074;2.2115982;1.2383968;1.4396209;55.595287 +-.12259123;.23608689;-.10727233;.9596045;-.30409998;2.073786;-.25781146;.73987234;-.49554005;-.36965546;.60441417;.37617296;1.7426933;.83628142;1.6100621;.31282344;-.35222846;-1.4881672;.094750509;1.0604419;.20198104;.3829146;.5103088;-.92453307;.45958197;-.77683258;-.52661461;-.57190144;-.42801452;1.2919847;-2.1230261;-1.3014202;1.4130263;-.43538794;.8805303;1.2985427;1.952585;-.83990234;-1.7700945;1.360988;-.83354682;.65961254;1.188315;-.49641591;-.87809414;-.73725706;.44258499;1.547851;.45345476;1.3167686;3.2742095;2.2627294;-.046597276;3.2718356;4.2611423;1.9435784;-1.4530901;1.2586073;3.6544163;1.8710136;6.527544;1.4377358;4.7846098;.89461511;.60879016;3.5117967;-.50050211;5.3025331;5.9305902;1.3558168;.63751578;2.0844429;-1.9391133;4.5838118;2.0135171;3.1044431;4.0707822;-1.3280989;2.7055244;-3.6716425;5.1906209;1.5072327;2.1002259;1.2344763;.37596974;5.7248926;1.958681;1.818011;4.8379612;1.3169184;2.9426453;1.4925182;1.8469132;1.1913413;4.6813302;3.408015;.68488193;2.6981535;1.0791221;5.7524076;-.89747679;-.14794664;.027313298;.76397222;.79855531;1.8761246;-.73845243;1.5151641;-.33840507;-.50970894;-1.120852;1.342232;1.6337961;.84955627;2.3703065;-1.7438401;.76492637;-.35654896;1.3178148;2.2046185;-.63638371;1.6401612;-.372776;-2.2748072;-.56144446;-1.0233629;-3.4236784;-1.8353894;-1.9145224;.9211489;-1.1913739;-1.6252718;2.0404284;1.6024646;-.66843224;.2705273;.69042969;-1.2292114;-2.6319623;2.7367225;-1.1928835;.9358055;.13947669;-.70277035;-.44192323;-.97793907;.13628675;1.0532253;-.31394163;-1.3957818;4.1404395;.91934496;.79708141;.99307054;2.7469783;.081236579;-1.3645124;2.4509051;4.0357642;1.7135698;5.5512857;.35400966;2.7605088;-.44485253;2.1147428;2.001313;-1.4538809;1.3481247;4.5636177;-.25724253;.74524707;1.5620368;-2.8416343;1.2317506;-.9216252;3.1193342;2.5374048;-.74321246;2.2813375;-1.9020883;4.778635;.29863647;1.7220721;-.22762485;.57427245;3.0570667;.17452392;2.9167044;4.6072426;.84538549;2.9766483;.54228538;1.1748065;.057713132;.73591715;2.3990119;1.0201294;2.5939515;2.5377948;6.3277044;58.849159 +-1.4955999;1.3114964;-.47837836;.8145591;.31640503;.36881727;1.6856009;-.89082909;.79126787;1.3385924;-.072759606;-1.5059285;.0034354485;-.58919942;-1.6109334;.10471436;-.27964836;-.96502137;.10231431;1.738559;.034431234;-.25955418;1.6644888;-1.2071575;-.0074040708;.54087555;.66366857;.20568135;.55955929;.38439268;-.079972349;-1.6990832;.92074019;-1.6835837;-1.4581052;-.74131387;-2.4232707;-.39502981;-.48865888;-2.1223478;-1.5169289;.22814652;-.4163433;1.6980267;-.67529786;.46974304;.34704173;-.39876074;.23514092;-.26869667;2.0607617;2.3372982;2.2440059;.24435587;3.2536337;-.94475305;-.47127759;4.5684237;5.2375546;2.0764349;-.1997916;.020971183;2.6235309;3.0226607;2.4430525;3.7269022;5.414175;5.338233;2.6916072;2.7950625;4.0709214;-2.8819625;2.6611555;3.1912787;1.1655871;2.4824266;3.7550941;1.8554492;2.1311016;1.2357614;6.0194893;1.7657863;4.7777476;2.5427437;.39978853;5.2850256;1.4569819;2.0698771;1.3062862;3.5159402;-.0055441996;.41925186;1.3448576;-.56986302;3.2067497;4.6966209;2.6231427;4.8882608;2.0384841;2.9579926;-2.1302061;.036457147;-1.2589161;1.7214608;-.20760748;-2.260112;1.6291091;.062266111;-1.8381416;.68039459;-.58173168;-1.0715342;.162187;-.82443708;.70097339;.6606285;1.9921839;-.85361761;2.4968455;1.728549;-1.0300804;.27309197;1.0207578;-1.863277;-2.4562788;.76680583;-1.29006;-.15472192;-1.2477684;-1.7459637;-.14316265;-.28529528;2.0986569;-.3324838;-1.7134669;-1.1268834;-1.3932142;-1.0189381;-.66625965;-2.7501056;-2.5785897;.55192935;2.2926779;1.6700395;.212385;-.23737752;2.0818458;.95163524;1.9964801;-.21529597;.95141149;.81277019;1.6844801;-1.9991361;1.166705;-.58708656;-.87576878;2.7294805;2.9254937;3.2048042;-.12780105;-.30520245;2.8836913;.76812226;2.6272824;3.6251252;1.9362175;3.4386706;3.117624;1.3324234;3.9180992;-2.1847703;2.9061868;2.7492497;.95297039;2.6815352;1.8759929;.54686439;1.9723445;-.054626551;5.5673113;-.083998397;1.2467835;.42982498;.35279325;2.4136994;1.2213005;3.1335027;-.62511408;3.4069202;.050463568;1.087497;.6265412;1.5246716;1.9818977;4.1668692;1.8488928;4.9824667;1.9523422;2.5197017;58.901859 +1.2439321;-1.2358192;-.7526738;-.0064712442;-.32479939;-1.8800337;.049017511;-.24898139;.12020911;.46786609;-.91925526;1.5641308;1.0352646;.26901984;-1.1388452;2.2319181;-1.5420043;-.13492519;-1.5380468;.13614523;.24619976;.87434322;.57965517;.027902555;-.4663367;.40885264;.41078317;-1.1079637;-.86168867;1.4671166;-.93732548;-.51926702;.23603272;1.8675215;-.38996634;-1.8287565;-.38164645;-.54273599;-1.7169303;-.65267223;-.11225865;-.6442737;.23591504;-.077687822;-.75902885;-.84102553;.19139028;1.3015963;-1.4887946;-.87548155;4.0039587;2.6225078;3.1832008;5.0850954;3.1786463;1.4108298;4.5531344;.38630635;-2.0537655;.54439998;2.3800077;4.6862774;-.51915371;2.7379892;-.21620803;-.22376521;.78612661;-.12593593;1.2985467;-.49590495;.3185147;4.5816035;7.9111814;-.83374077;1.4879701;.91448879;-2.2245672;-.27797222;.53982413;.33552203;-.37806094;-.4524222;4.6038213;6.8006263;7.3727422;.71590841;2.0047693;.093971297;2.1365108;5.1678305;2.423496;1.8858588;3.5378776;.3666634;.0009677718;2.3410189;5.6825824;5.115921;-.40559602;1.8048608;-.25531197;-.46607795;-.17505531;-.38075;.78563619;-1.6849459;-.29800281;-2.8248429;.044730045;-.44875538;-1.012311;1.5574386;-1.6351792;-.32505271;-2.7575805;3.7705488;-.64688212;-.87171549;-.091460884;.36206225;-.55272943;1.7930048;-.58051807;.48209223;-1.659235;.2632668;.47940305;-.3177101;-.39709207;.48459437;.12930413;.97647327;.37947774;1.43888;-1.0437746;-2.0777781;-1.9040437;-1.2109196;-.79099643;-.66948527;.5742029;-1.0501422;-.68190551;-.43136531;-.7833156;.14197147;-.45541075;1.0157305;-.656636;-.27129248;3.7796988;2.4190564;3.2766647;2.8568823;1.4757559;.013389649;2.1709132;-.35743356;-2.5514262;-.3851288;1.0415484;3.3896854;.22006392;1.3952289;-1.0853695;.48492661;.52274966;.33569428;.82413125;.00898265;1.091393;2.5349808;5.9591885;-.28653929;1.4377961;.95838642;-2.3263958;-.65513688;-.35909015;.16974485;-.53555828;-1.4323733;4.290483;5.9008746;4.5737028;.34530678;.9784413;-.47993591;3.4598289;2.6959474;2.3377335;1.7276138;.56910354;1.1689565;-.091398053;1.0012097;4.1035151;3.5012527;-1.9336462;2.5271614;41.495968 +.8420065;-.10883871;.26666451;-.71648413;-.96184421;.71444851;-1.1170546;.82353729;-1.7371417;.74463981;-1.0923089;1.5836618;.061072454;-.42518881;-.8167702;-1.8958917;-1.7176661;1.5383606;-.16247183;-.20635319;.4792034;.28837895;.20815308;-.0073978673;.31946272;1.0885521;-.12103108;-.47745013;1.0358177;.084988125;1.2352191;-1.2751663;-.3530553;-.30089664;-.77152753;1.3240004;-1.305053;-.42592326;-1.0757877;1.4455149;.64204842;-.032308515;.65707862;1.0491506;-.18506312;.92000741;.34108075;.80489254;.63833433;-1.3620914;2.4130886;3.1151092;3.6605089;1.481613;1.8259611;1.0578841;2.4098811;1.9376022;2.8251309;4.7029395;4.9791121;4.4874263;2.7622957;5.8789725;-1.782607;3.7797754;.48705211;1.7114855;-1.0922027;2.3754454;1.6813465;2.4560742;1.352959;1.108935;2.7619214;.80363446;2.1155462;-.26595256;4.4336166;5.8932662;3.2996006;-1.7770236;4.7593417;-.42900002;1.8931217;7.823977;1.4719055;-.19765118;1.0169812;.23043349;.61134732;1.9944614;-.6193499;1.2864952;4.2316542;2.004524;2.6418993;3.0824187;1.5364681;3.8191321;1.8658209;-.021242643;-.7396397;-.42927989;.012456286;1.0838095;-.50051111;.52940661;-1.8298527;.75751328;-1.1575459;.46586254;-.25441009;.23056848;-.39897609;-1.0386806;-.66291636;.67712224;-.9936648;.76498693;.66818202;.79732591;.31014314;-.87208295;-.30879626;2.4119654;.28158993;-3.6785948;.7770738;.16141051;.35220361;-1.407452;-.33387667;1.1588308;-1.8714466;-1.8214295;-1.6217618;1.9785081;-.89619154;-1.2891188;-.014794591;-1.0201085;1.6401577;1.4256309;-.42649579;2.5558519;.21202967;.31982496;.43717992;-.96533036;.45987165;2.0331295;3.031441;-.5943315;1.7811981;-.088532068;2.4993899;1.0424968;1.9786246;4.1220274;4.3084397;2.2667797;3.1972256;3.7686048;-1.6150324;1.4927931;.628479;1.4039719;-2.5069358;1.4555423;1.5344813;1.8958431;2.1107333;.2150318;1.3994035;1.7068388;.53997397;.94526488;1.8579346;3.5088925;2.0185533;-.70022684;4.3614144;.034232609;1.5311437;5.6737289;1.8358418;1.1472745;-.37248006;.53546613;-.68056035;2.4460726;.79926044;-.28804299;2.9187088;1.0709292;1.832599;2.2261987;1.5785189;1.5138692;57.055527 +-1.1010057;1.4028498;.56923914;-1.039616;.60811108;-1.7788347;-1.1363817;-.10807846;1.2018119;1.0375068;-.23989794;.68459904;-.63738984;-.30920705;-.050972994;-.74151778;-.65119535;-.82425648;.033241794;.43105277;-.97440922;-.70533252;-.077076808;-1.7972807;.93945313;.44648412;.055908155;-.46166739;-.89082104;.59108615;-1.69742;-.37667048;-.27557805;-.11267532;-.99395096;-.55660677;1.0154495;.46797785;.033412319;1.0536438;-1.6172532;.071341261;.17379797;.14998682;1.0757436;.28575006;-.21027856;-1.2739854;-.67878729;-.62836123;.51395929;4.6321058;.053522136;1.5177805;4.3331003;.7374323;2.1582654;-.93455744;-.052578535;.35220447;.32274076;.47791463;3.08882;3.2252214;2.3822341;-2.1561935;-2.0820026;1.4074054;2.5017247;3.7603564;-.065216243;1.7955563;2.7986345;1.627887;1.177022;3.5263762;-1.1997421;.29657102;2.791934;-1.9628313;3.6555758;2.2310133;2.2906773;2.705482;-.48782998;2.0653956;3.2262306;-.13406396;.81641358;4.0532894;3.9929066;2.3422904;4.8749766;1.6433052;4.0901327;1.5916878;2.4620559;3.1677787;-.017369593;4.1071191;-1.1067487;.60389405;.98485559;-1.4781151;1.3400416;.017255401;-.85940182;.01223815;1.6037451;-.36557001;-1.0908904;.5443297;-1.9318793;-2.0692971;-.36512625;-.78434789;-1.443064;-2.549727;-.16853508;.276795;.019496193;-.38523757;-1.5872173;-2.0650811;-.83438104;1.6348146;-.28545812;-1.517614;1.4169596;.1040893;-1.6633725;-1.5532883;-.22478211;-1.7580633;.69228721;-.24287571;1.8056903;.023760116;1.0637947;1.4371346;.060792673;.44198146;-1.4539608;-.1631615;.4566102;-2.5713603;-.11693191;-1.1251364;-.91682357;.16204633;.033193205;2.8395271;-.042657115;1.6174954;1.2213627;.4366875;.92597288;-1.5902882;-.21407062;-.087331146;1.9101262;-.84021544;3.0234721;4.0161805;2.6304383;-1.6420287;.28099617;1.1858946;3.8728378;1.340345;.76031291;.080735885;1.9648744;.30873775;.54544294;.63879776;-.72369236;-.70586693;1.0264033;-2.424161;3.6142454;1.8425363;3.1430712;2.8212261;-.91449577;.13176508;3.3492899;1.1458689;-.77825826;1.3141357;3.1278682;2.7541511;3.5342371;-.41063851;3.6156197;2.1001291;.4371627;4.2155795;.035779677;3.0522878;40.086956 +-.43545601;-.26579264;.38553268;.22309956;-.58180314;-.66712308;.15998439;-.27645785;1.2056366;-.89431447;1.4708178;-.38040298;-.48745447;.90500408;.42325258;-1.0092261;-.16582674;.69798046;-.40591875;.079605907;1.0036724;1.7154808;-2.5225177;-.43961981;-.91469181;-.83920467;-.62496322;-.35354412;-.10016634;-1.6912334;-.61433464;-.9271456;-.23433083;-.35696608;-.32444924;-.77454567;1.683956;-.62357581;-2.4488997;-.24248266;1.1802031;.8460409;.70147032;1.0470622;-1.0779011;.59109765;-.14790413;.55117619;.26556307;-.70491976;.38725457;1.8855412;2.6823711;.12770241;2.0010376;.067273475;3.1727018;5.8981066;.97327483;-1.0876477;1.31148;4.961143;1.1396505;1.865169;1.090094;3.6038063;4.1902361;3.2608902;1.2418911;.95793682;3.2544408;1.753656;.95585227;1.1023664;1.4591156;.041906394;3.3168387;-1.5961176;.080492899;-.79860097;1.6128242;2.470937;1.8692576;1.8201988;3.8959858;3.6724608;2.0466323;1.1172473;1.7587759;2.8601024;1.0689697;2.4526482;2.1852157;3.2495153;2.5404899;3.3977816;.58218193;4.5300708;1.1763552;2.1713872;-.59242082;-1.1496242;-.42366374;-1.4598229;-1.9943095;-2.173902;.079017319;-1.111288;1.2076429;-1.2891972;.96054167;.11439829;-1.3556653;.16910045;-.3591949;-.17825203;.24745606;.75319004;-.06436225;.39799324;1.712603;1.4978812;-.076482907;.65934175;-1.7647454;1.7558705;.34983814;-.66971624;1.6999803;-.77499121;-.15714987;.80174953;.43769759;-.14176601;-2.0163231;-1.3440745;1.0303038;.14395747;-1.1965429;.11466242;-.40600032;1.9333532;-.73690879;1.0340978;-.38883734;1.0956661;-.75017482;.12140674;.67927843;.12019397;.58403468;2.5726397;2.3176863;.16778515;2.595541;1.1527747;3.5771325;4.9149003;1.2172399;-1.0194249;-.44616908;5.2716503;-.057145923;2.6867471;-.050512139;2.7011316;1.0197158;1.4047763;1.3138528;.53703886;4.021832;1.9316987;1.8830608;1.025739;-1.3486705;1.0624331;2.7718213;.21995446;.90855497;-.55608869;.80934119;-.20072842;-2.3061197;.2744911;1.9355965;3.3547246;1.6760201;1.9039057;3.3781765;1.6766237;1.5406032;.68159306;1.8788569;1.1777247;2.6473365;2.4510658;-.097939536;3.9789453;.49813661;1.6649799;38.187637 +.28424072;.36518461;.66845673;-.56812757;1.206823;.81718713;-1.1106625;1.1988904;.39543092;-.8703379;-.78559989;.17422001;-.033999592;-.2121041;1.0268173;-.66319388;.35376409;.04616366;-.064549379;-.33965853;-.039559461;1.1751094;1.7587461;-.033984642;1.3769301;-.17099012;.11523972;1.2483211;.76745409;.48287055;-.038176384;-.73986399;.51498049;-.55936801;.78658515;2.3395848;-.99602646;.95139247;.18709964;-.3870793;.059928048;.61470765;-.39060286;.21992895;1.7080878;1.3626436;-1.6600369;-.32187134;.71540791;.14437349;2.0626776;2.7150505;.17585479;2.1148474;3.548075;.36670336;-1.9444571;.92888933;-.23079976;1.6271522;-.79173696;5.7027917;4.9129372;-1.6573732;-.27616915;1.7650928;-.0068016052;4.2662268;-.49808973;.561643;5.9089651;1.628883;3.5671933;1.9305804;1.3278266;2.3480392;1.45406;3.1664948;1.4561849;-1.3024435;3.2050104;4.4802017;2.1883957;4.275537;-1.1169196;2.8115501;3.0956264;.64960575;2.0238206;2.2701397;1.5041476;1.8569665;.56499165;4.1521797;1.7284738;1.1921432;2.6884613;-.49987847;-.56786746;1.1354475;-.13445485;-.45503542;1.1910534;1.3255242;.63622141;.98088753;-.82920194;1.0878817;-.28621724;-.25383839;-1.1909986;-.6298362;-.37571755;.15244614;1.279619;-.16129759;-.86304265;1.383374;-1.076835;-.99093539;-.19526051;-.16128506;.8388449;-3.0505583;.56970489;.55138433;-.46530163;-.18228734;.94023681;-.49915847;-.83563888;1.0985703;-.54779547;.10286852;.32981095;2.6273355;1.6126368;1.3420886;.015430586;.34636167;-.0011853357;.51230675;-.76682615;.95488995;1.8757993;.65924764;-1.7882875;-.90398258;.86754525;1.9968442;1.2322125;.85245961;.53497344;1.5213706;3.1438284;-.7749055;-1.394709;-.2415182;-1.2078614;1.331201;-2.115308;5.6451845;2.7132003;-2.7038589;.68398494;-.57562786;.16134988;2.0870376;-.64712125;-1.3714038;2.8242333;.76315027;2.1844418;.42060331;-.38693056;1.9348972;2.237504;2.3361387;.81495953;-.77720618;2.6538839;1.6505785;1.3144107;3.8794959;-.74635494;1.7605404;.89369529;1.3612732;2.9024909;2.7402844;-.76060563;.69858736;.48220214;2.6373167;1.1686565;1.5705336;2.2655516;-1.5346828;-1.0495615;-.7816084;54.085468 +-1.4409444;-.76370168;-.36616275;1.2557925;.35301447;1.3557439;-.46631181;.18024132;-.034447175;-1.1017989;-1.7109735;-.12702657;.39775833;-.019258909;-.19347909;-1.6489127;-.26599273;-1.1665463;.027260091;.02179575;-2.5092509;-.28912663;2.8500559;-1.9224296;1.3139377;-.35553193;.39523733;-.60244215;-.2139008;-2.1817641;-.62006223;-.44227576;-2.3402371;.51910907;2.4974759;-1.019374;-.38419253;1.4870107;.82381678;1.8441894;-.26333436;-.42939973;-.14087217;1.0413759;-.56140608;-.67712003;-.50927025;.79408628;-.68013674;-.50659931;.35134289;.60458034;7.2280769;-.22890273;1.4173604;2.3958943;-.58927554;3.2974536;3.6296744;.90553337;-.47011605;2.4988744;.8943786;2.6053622;2.1689546;3.2022791;1.5899273;2.3385885;2.824342;1.3063914;9.5996523;1.9992504;-2.5108981;.53654611;2.6336181;4.2211366;-.71009344;4.9314017;2.1651394;2.4023058;1.6916436;1.941717;3.3784113;-.79537016;1.1695212;1.021835;3.1834025;2.0994325;2.1333737;-.96441847;4.7529616;1.7499354;6.8141313;4.5383091;2.3525848;2.3156688;3.6691606;1.8099293;1.5509396;1.7891645;.49600834;1.0135224;-.61651111;.61727256;-.29133362;1.2701151;.1011278;-1.1766707;.49714056;-.90960014;-2.4593382;-.92570716;.30400845;-.060583718;-.22038174;-.32773003;-1.9976201;-1.1508048;.16859046;-.82446128;-.90352976;.48097667;2.8448203;-1.7126322;.18061323;1.2741287;-.5221113;-.47529528;.87507087;-1.9749743;-1.7193924;.59814459;-1.1589967;.60538983;1.318951;-.79722309;.78727138;-.0023762202;2.5225852;1.664626;-.57962978;.7360642;-.67326355;1.9704646;1.6386867;-2.0873473;-1.5761664;-1.1296613;-.17788675;-1.2309967;1.0326562;.020952335;4.4287868;-.15458941;.36104363;.47511891;1.1402307;1.6824627;2.352505;.88724619;.86883128;2.4968193;.30501461;2.488318;2.1194158;2.1916854;1.543065;.40168366;-.078455262;4.1235609;7.5844955;1.6198406;-1.8884448;1.1381744;.61246628;2.4699564;.37779257;5.011466;2.0765355;1.591935;-1.0685632;1.5511814;2.8728869;-1.3994223;.95248985;1.9323925;-.6234076;2.4898484;.87505811;-1.261857;5.2288351;1.0919763;5.6504898;4.8530426;1.6386187;2.8384604;3.4660125;1.1400789;1.4290107;1.4562987;49.057625 +-.3474445;.80157596;2.5097032;-1.0745268;.55785131;-.74420679;.41944173;.16888502;-.11077964;.16239181;-.57582486;.30953968;-.074290499;.80829871;-1.6799783;.42774263;.87474799;.13779657;-.67070532;-.30300009;-.57593274;1.4390945;-.46761698;1.8117558;-.38290754;-.5389713;.21586715;.18137132;.51501703;-.78520143;.081291698;.31855795;-1.3126296;-.029044477;.65839219;.10628817;.50588536;1.0275701;.090405107;.79758793;-.67821974;.50084603;.3019031;-.50129592;-.028065361;-.033861011;-.034250356;1.782221;-2.0862155;.27804708;-.88166666;5.5769377;2.1797538;1.8221899;1.7660389;.50520039;.70622683;-2.5375309;-1.3755889;1.2808512;-.42998132;3.6057601;.87076807;3.8530836;-.84967136;2.6163857;2.5314908;1.6943241;2.2825792;2.7307794;1.2048266;-1.1322052;2.3728251;1.7373075;1.1596408;-1.5610912;5.5477839;.10653812;-1.4339887;.30179363;6.2622461;1.5602769;4.3397541;2.8932943;-1.5374409;2.1473858;2.2526736;1.3924575;.36176577;3.6419892;1.5396912;3.6525633;3.2903776;-2.9589579;1.6462479;5.0064731;5.4324102;1.1192777;3.0729575;1.4169291;.53764349;.43280023;1.8425474;1.1594239;.98684442;-2.7793593;1.5762677;-.36027145;-.61986077;-.073342115;.26118311;.87270617;.460071;2.6017795;-3.243886;.84200108;-.25239971;1.4221916;.60558015;-1.1096687;-.80624717;1.2438978;1.031866;-.062210202;-1.0295827;-.39250568;1.5389718;.19490023;-.43378907;-1.0162897;.81172866;1.381729;-1.9981197;-1.7464018;.34615996;.52278221;1.6446506;2.1873028;-.4819507;.4820545;-1.4964441;2.6386259;1.382122;-.020913126;.34979564;-.014318544;-2.3824799;.65058035;-3.1082425;.94286913;-.93876559;2.811712;1.997429;1.3234335;.8211509;.72050899;.94557619;.22594523;-.92108715;1.1158499;.13677631;2.7660964;-.66377538;3.5964043;.24141797;1.4289664;2.3018539;2.2271426;1.6009197;.069483638;1.0798939;.34652412;1.7616589;.48459569;2.3705959;-.24316867;3.7926068;-.13732325;.761509;.25316021;3.032052;1.3503487;2.4001608;2.8146248;.12294211;.36848706;.44972977;-.27354646;.56253785;3.7425475;1.0134865;1.9514172;.81543219;-3.2487404;.57981944;2.7220726;4.9575124;.27479205;3.0288882;-.14562097;42.323997 +-.4234648;.51221472;-1.5400711;.34381142;.41822228;-.47633502;1.5332121;-.28657839;-.12889761;-.66364241;-.83262593;-1.4241502;-1.1818657;.80327302;.58277506;1.5495341;1.1523612;-.6442579;1.0067785;.91488653;.36551586;-.14104559;.25399399;1.0424966;-1.1408225;-.93106049;-.10135933;-1.6862077;-1.2011219;-.14855862;.82532924;-.32168144;.20217131;.37373927;-1.2598966;.19012772;-1.6321362;-.33187929;-.44187972;-.94144893;-.97701073;-.34601584;1.0287526;-.83152771;-.46418762;-.40515992;-1.6232884;1.0489711;-.21644084;.67243373;4.7255969;1.2299526;1.1973879;-.32005203;2.2626407;.89340782;2.4946203;-1.5087806;.88775337;4.7022433;.8160736;3.2596064;4.6560216;.81408447;2.8748908;5.4628935;2.4337795;3.7343025;3.9629419;-.54628479;3.9461308;1.5452497;2.7962859;-1.0421089;.65582019;3.7190096;1.7739438;3.7421215;3.2664716;5.2139711;.3274765;1.2432625;3.0888278;2.2850926;.76697332;1.8416206;.15009053;2.6297584;4.2463923;1.6172228;2.6202285;-1.6904618;.3500374;.27252823;.53293127;-1.5281764;1.2862871;1.4219068;1.8535793;3.5079174;-1.2948301;-1.9528052;-1.0113897;-.20504755;.40812609;-.16866623;.042734742;-.68683463;.70720345;-.09593337;-.80040568;-1.8554101;-.092415161;.54636872;.84740663;1.6148297;1.919531;-.47607556;2.235461;.4264552;-.95414329;-.18449256;-1.1733925;.96607256;-.65857816;.42727104;1.3836261;-1.0359341;-1.0806407;-1.5001143;1.3199701;.4826048;.62853926;-.078382649;.77394176;-.8424955;-2.4660285;-.88765544;.32704973;-2.1689641;-.96682119;-3.1602693;.29117432;-.93069321;-.55285627;-.1541497;-.330484;-.36151725;-.042278666;1.4351234;3.5840361;2.051533;.150626;-1.2097875;2.534091;1.7039571;.86371469;-1.2524132;1.6373284;2.6533673;2.9307239;2.1633737;3.1825438;-.79236627;1.8408489;2.5791087;2.2055407;2.5207829;1.9889336;-.34716943;1.7630397;2.1929235;1.3939995;.66765988;.70043314;2.8947561;2.0456564;2.3382144;1.3699189;3.9948909;.49645191;.633448;1.8040758;1.6380111;1.9498181;1.3905158;.69915307;3.9125998;3.7150819;1.5401721;1.0219903;-.89372885;.40131101;.63413936;.9630211;-2.0419972;.61792052;.28419983;2.1057382;1.9497766;41.564163 +1.3003055;2.3050652;.38124606;1.831679;-.19392836;2.8408401;.61946017;-1.0473355;-.39956328;1.0863851;.80418098;-.021199016;-.27394825;-.22850126;-.28715989;-1.4326137;-1.0421691;2.2736557;-.0054904791;-.17974687;-1.4982678;.84710383;-1.2401279;1.0317659;-1.0263096;1.8749011;-.68800563;.56642848;1.1104447;-1.1721896;-.10630774;.26745936;2.0883913;-.8960219;.85151613;.71086067;1.3507414;-.92103475;.1047103;-.48145625;-.71074909;-.13333376;-.45647109;2.628252;-.13662082;-1.5028768;1.867002;.051785175;.66465145;.80144989;1.2636638;1.0852784;3.9226103;.60674185;-1.1504458;3.2908945;1.116348;2.8815114;3.4774959;2.7355874;.68302119;2.8590484;-2.6806099;2.4568219;-.18226092;-.34518993;3.5955715;2.8762262;4.2064843;4.3186808;.9459306;.60914314;5.478158;.32218391;3.2942026;1.4959575;1.919317;2.4436064;2.7533834;1.4706208;5.1465688;.40067121;3.4884095;.36526665;1.7386932;3.5386803;2.5481429;2.083384;3.2509935;1.3950592;-.32299066;1.506768;2.0452578;2.4082088;4.2236972;3.9628534;5.0542831;.018594624;2.3613837;-.10271182;.54200011;1.5853745;-1.1891783;.058685299;-.16559346;1.0659399;1.1828375;.72494203;-1.521217;1.5157585;.30195832;-.24377136;-.90443623;-.18033095;-.70596069;-1.5986964;-1.9127483;3.4994185;1.1209919;.60542369;-2.0309453;.654275;-2.0405991;1.0024815;-1.0307056;.11755545;-2.1763029;-.62533075;.38651344;-.96156937;-.73228776;-.013680601;.41041139;-1.4931692;2.4059403;-.16033973;1.3574188;.049569;.79215318;-1.1252921;-.65506011;-1.9200115;-.20087007;2.4462445;-.94397998;-1.1588857;.61072153;-.28135705;1.8858881;.63071263;.5146516;.019240417;1.2920898;.31233746;-1.7369307;2.6126738;.81690788;2.3253217;2.8321209;1.0849184;.92158377;3.414114;-2.6486287;1.8328228;-1.0859107;-.033385769;1.8523756;3.5298214;.52990615;2.0052681;-.39055961;.58835155;3.8357859;.075492308;2.2993875;.62183505;.051873468;1.7574908;2.4296496;-.37648287;1.5529677;-1.1463351;1.1929519;.89082474;1.2741565;3.6131999;1.7493426;2.1850758;2.7424624;.020374192;-.11069813;1.9689269;3.1085327;1.7882712;1.9976722;2.605767;3.28771;-1.3376555;1.24822;.82011837;62.535637 +1.7781752;-.83695805;-.28247496;1.4724392;-.17461142;-.31417871;-.79312271;-.86536187;-.42700624;-1.2098026;-.17447603;.72480929;-1.6946605;.90917212;-.69270802;-.045917053;-.36231342;1.3634827;-.16416368;.16789551;-.1688512;.096924827;-2.2967951;.92378408;.59560406;-.13783811;-1.0820022;.10470285;1.0289361;.99050015;-1.3197001;.23021796;1.508289;-.15702911;.15690127;.51682901;.53594834;1.6154232;1.6094768;1.3398613;.30560037;.03492948;-2.4532337;-.21873011;.1574264;-.60790032;-.62117738;-.86203349;-2.5090406;.52535176;1.8707618;-.85667264;1.0182744;1.1320083;2.790694;-.84955055;4.8226199;.58772868;-.11667158;3.898869;3.0036731;2.1120608;4.5334506;-2.3289585;2.5713792;.96245283;2.8745029;-.27253038;1.8180919;4.3260446;-.84257889;-.85539192;1.4006653;3.3825793;2.0137525;1.3141521;1.3673774;4.728786;2.5652978;.4071165;2.5346911;4.0096488;4.6962609;7.1756225;2.2983572;.5087328;-.12237741;3.6256037;2.3129222;1.9159276;2.2629654;3.5806696;-.8390612;4.5373049;3.5326645;1.4499056;.23544748;5.7320299;-.33173692;3.7410903;1.508709;-.0430778;-.25852364;1.5616496;-.42720577;-1.1948054;.66076463;-.20337826;-.54974997;.079987794;.78040856;.57090849;-.38409361;.29511645;-.93602926;-.36845416;1.448571;2.1059597;-2.0497766;2.2371128;1.0529675;.58526659;-1.7401478;1.308002;.4680939;-.86129862;-.88248724;-.43001533;.49396977;-.61446351;-.82552552;1.2830104;.88511366;-.040865153;-.8057403;.40874162;.21028015;-1.1583545;-.7427994;1.1053556;-.16840637;-.019749032;-3.1364772;-.38284516;2.6690066;-.39609495;-1.3594394;-.010075312;-1.7877853;2.162591;1.5116084;1.1098533;1.9738377;.69432414;2.1413484;.061045073;2.8793163;.95512563;-1.172455;3.9400663;3.9362564;3.0938933;2.8302062;-1.6456205;1.7032937;.48071331;2.8934662;-.24079306;.62579936;2.1764662;-1.3468503;.28098887;-.3093245;2.4699745;2.6181614;1.7502445;1.1646109;4.3662896;2.4381514;1.7506642;1.8602875;.4904685;1.5688071;5.1597838;.8671931;-.12852764;-1.8385978;1.3863827;2.1253836;1.3727747;2.5907183;1.1133639;-1.0431035;2.7140093;1.8484904;.95720387;.77195877;4.6249156;-.73902744;3.1679559;56.48909 +.61917734;-.6559543;-1.6917664;.017988386;-.38043576;.46729559;.4866685;.85446596;-1.8345228;.18830208;-.23571104;.53133625;-1.2327865;-.80222827;1.9636213;-.59415179;1.1368905;-1.8976623;-.54093933;-2.0599484;1.1357653;-.36960366;1.4987118;1.5422446;-.62772536;-2.4420092;.8698284;-.17966934;-.20070012;.35690179;-2.1410806;-1.8293449;2.1014216;-.12588458;-1.4112185;-.36536232;1.7421569;-.20007396;1.098471;-.49458882;.065496005;-2.3144653;.90278345;.43953374;.66173494;2.0031874;-.71269286;-.25771534;-.7957496;.95804685;2.6449628;3.8237944;1.0042017;3.4709415;.31337154;1.8784543;.94737494;2.7983036;3.466464;2.2787254;3.9776604;1.199726;4.0637841;6.4074526;4.0873737;6.3153338;-2.4006743;-.64232951;1.5956818;.95396435;4.4354205;1.1893034;-1.1211104;2.0582082;2.7844496;1.6311225;1.8168883;4.0716219;1.2351903;-1.2968874;-.59574401;3.6436503;4.0832453;4.8547931;6.185904;2.4358957;-2.0772884;2.5653651;3.233541;.91158009;2.6678138;-.98226267;3.1383669;5.2239046;1.7350669;.7960313;4.4689498;3.1343703;1.0150727;4.0263925;-.28879988;-.4427869;-1.1693761;-.6699447;-.067736812;.44145808;1.092383;-1.5125104;-1.3262633;.15385066;-.13051623;2.3411849;-.87451017;-1.1952239;1.1268528;-.71372175;1.2867147;-2.3732891;-.46150354;-.8216452;1.5517504;1.1981301;.76374036;-.54745585;-.67095554;-3.4181263;.90709281;.15349421;-2.068774;.55545068;-2.5108597;-2.1153355;1.5676417;.24075563;-2.9220321;-.89973134;.12900881;1.813642;.8104412;-2.1888509;.061766263;-1.6989205;.057852302;.50503367;1.4663604;3.6251009;-.097470082;-1.5594306;-.76186299;2.3213506;.68165374;2.3361073;1.1370938;2.6414886;-.70129424;1.3260143;1.6975927;1.823671;3.4352877;2.4358778;2.2345059;.85124785;3.5063913;5.7575083;1.6315764;4.241529;-3.2912855;1.480086;1.3452717;-1.0576165;3.953269;2.6930883;.0055562044;-1.3803648;-.0089481417;2.0419977;.475418;3.5835221;.9961136;-.70319474;-.091667168;2.0672612;2.4409647;3.6117084;5.48665;3.2017667;-.034537092;1.8140594;1.6381099;1.9199265;2.0566697;.37499598;2.6037004;4.4146256;-.44179279;.45521289;4.2769012;3.011631;1.3393393;3.8787124;55.566975 +-1.2332482;1.7369393;-.71413356;1.3598784;.17156328;.28682765;.6316756;-.45807514;.83386022;.091459937;-1.1855117;.039735474;.32524759;-.41872528;-.97453552;-.98877484;-1.3454231;-.55123276;1.4189618;-.34415102;.15906471;.071308337;1.1320177;.55198479;1.3513135;.042232379;.83995867;-.56012374;.0075923032;-.91194576;.87454128;-.43852064;.36918005;-1.3887758;1.7397896;.5462063;-.59299278;.031000324;-.4809604;-1.2381438;-.28762156;-1.013438;.16095282;.14268219;-.18988898;-.38997394;1.0244578;-1.9714626;-1.5923198;.21191575;4.880559;3.4739254;2.6070945;1.4549681;-1.2244248;4.2264619;-.049604416;.34753215;4.0379729;1.3991288;4.671546;1.6407813;3.9191661;.66908109;.80982101;1.6499133;-1.9774059;3.0894978;6.4876618;-.16080441;3.192349;4.5438232;2.4293084;3.0393665;3.0145173;1.8031886;1.3682719;3.0087545;3.3709581;5.893095;.10438759;-.3229371;.94927138;-.10675403;-.69451237;2.9988024;1.2078034;2.3621159;1.6062735;1.2799479;1.3447226;-.27939713;2.6722362;-.75244945;5.0920453;2.3877983;1.1467756;2.9834991;-1.2722758;1.815794;-1.4375904;1.5361805;-.54675865;1.4652141;-1.1124605;.84198266;1.8590251;-.17153367;.4154692;-1.1028591;-.045031607;1.2542847;.81443137;.24906293;1.1232499;-2.3985398;.42407653;-1.0561869;-.029055869;.28817934;1.5750259;1.1469489;1.0242288;.1358647;.89476186;-.0025569873;2.343756;-.33947879;.98248327;.41289058;-.030928716;.8206237;1.4237622;-2.2461309;1.0171412;.63757604;-.65865862;-.33480501;.5933035;-.15086359;-.80256462;-1.7937765;-.70920956;.44027662;.68036902;-1.4722551;1.9127836;-1.5521405;-2.0946472;-.55386943;3.3204091;1.8792759;-.4997929;.61558896;-1.5502433;2.2802837;-1.3190649;1.0191486;2.3299129;1.8454014;2.8431897;1.4710487;2.6870778;2.9362733;.36160356;1.9470462;-1.9444661;1.4397581;5.5968542;.57552743;2.5121915;3.4378459;2.2686362;1.9312079;1.7111226;.7857973;1.8085814;3.4509869;1.6027896;4.4807987;1.5566502;-1.0483061;-.25839341;.17945316;-.49352643;.59567112;1.5063385;.57778996;.81199932;1.8353164;.77455246;.78942603;.75227094;-1.9972799;3.7853553;1.4529018;.5445776;2.1048579;-.015931621;1.0199969;47.56979 +1.8847582;.59469932;3.8023489;.16309246;-1.0345781;.16816667;.33118752;.17770612;.17421131;-.61413312;1.41107;1.8901718;.49481308;-.12858245;-1.5079308;.47520652;-1.2958724;.022184955;1.0638397;.50883836;1.1444706;-1.480422;.71368963;.24585682;1.2511177;-.21733278;-1.4843463;-.45323199;-.73159403;.44340277;-1.0640039;.66046846;-2.6319542;.46152392;.5054301;.92996359;.50987893;-1.3944923;.31898943;.58471572;-.34977236;.17215432;-.90436596;.51217878;-1.3983208;-.17413132;-.81659925;.032218687;.89810628;-1.0614212;-.8062498;4.0587153;2.0188518;1.3126391;2.2402263;-1.5304223;3.1038933;6.3070593;.24698466;3.0778763;-1.9405825;3.8147831;1.6381168;1.6526408;3.9472775;-1.7486608;3.7048907;-1.0291688;7.5342965;-.053714134;2.1170266;.61589158;4.6399956;1.3775587;-2.4742818;2.9502003;3.0596035;-2.3264923;8.1483374;5.3086777;2.3914032;4.0287671;2.5945992;2.6617057;.78040236;3.1011674;4.2169223;4.5811276;-3.1489954;-.25571617;-.08533027;3.1436255;3.1292505;.71078467;-.95295149;4.5512428;.64752412;-.7216683;2.9429169;1.3357943;1.1389413;.54567319;3.5361938;-.23521294;-.96424568;-.74670064;-.15142506;.93671644;.09754663;-.054294515;1.5030396;1.0113442;-.41059601;.72069412;-1.4682109;-1.254862;1.0670749;-1.080431;.71731377;.67705888;-.13500997;-1.057224;.77030921;.60933417;.76014161;-.97757077;-.79039258;-.49607548;-.17247374;.50058722;-.95647228;.96123415;-1.9971712;-.32140315;1.4505824;1.1543505;.35450909;-.044519383;.4233343;.72298539;1.5517026;-.42441407;-.17433226;.4613491;-2.3959603;.0057364092;-.75678724;.29097506;.36823386;.58856457;.45165023;1.2944547;.52873993;2.4456747;2.1255875;-2.8746235;2.422847;3.0048139;-.17001669;1.0254523;-.84179449;2.9588759;1.3255761;.43761522;2.3163915;-3.1201961;3.2531192;-.56028563;4.1352439;.18944868;.74534571;-1.0212052;3.345557;2.3918712;-.87201101;3.3614335;2.2915812;-2.807812;5.4345717;3.5025933;1.2084551;2.4435327;2.0302572;2.5518136;-.82528204;2.5227389;4.0794516;2.2268603;-2.1128626;.25349057;1.0175277;2.9252522;2.9416981;-.79863775;.23535638;1.8005781;.56170225;-.48241016;1.6176326;2.3197556;47.846222 +-1.7139301;1.2422624;1.7285422;2.3179796;-1.0877765;.30349803;-.75152099;-.3995195;1.2575375;-.77587688;-.54154879;.50549984;-.51374757;-.11256038;-1.2089598;-.5163238;.80881011;.77942055;.2414822;-1.9035748;.62351191;-.52802831;.55947024;.1755954;-.5033071;.43977013;-.42981452;-.43714696;-.030777069;.63973486;-.4687666;-.90904117;.43434644;-.29553127;1.2708341;.84480095;-.20013964;-1.4495418;-.24221626;.14000589;-1.259374;-1.1401123;.055485014;-.87585551;-.92119896;-.57238007;.32786432;-1.2452937;-.40714493;-.90438336;1.1585785;.032136988;1.7298039;7.4280143;4.880898;6.3754902;3.6332915;4.532618;1.0227278;-.16461247;1.7210419;4.5605888;3.8295512;3.604872;1.7726811;.27099124;2.5660887;2.6958635;1.0931981;3.3209915;2.4039102;1.4273552;1.7372051;1.3605894;.39684731;2.858875;3.9316025;1.253267;2.0060282;4.0742116;2.2244229;1.0438535;1.5620842;-.23871033;4.6413774;1.2079582;.4351787;4.2537518;3.3441193;2.619405;-.22804557;5.8241239;.36450624;.93531162;.36448741;3.5506907;.52138597;2.9365106;-1.8348005;5.4119897;-2.1362619;.25461367;1.0881184;-.2341854;-1.3395938;-.12775286;-1.0296113;-1.6517115;1.7305548;.019378597;-.21244526;.86674207;.10247774;-2.6470969;-1.1360848;-.73313957;1.6420903;3.1997819;1.2874715;-3.0827024;-.82403433;-.775962;.037983254;1.3163537;-.23987642;-.28659961;.0025712159;.20717032;-1.0060027;.50880307;.5970059;.66500801;.19071978;-.5602144;-.55470914;-1.1028128;.75409782;-1.5330753;-1.8880597;-.37536284;-.98178589;-1.3601005;.8235271;-.94469041;-.23261793;1.8865453;1.2294674;.73323935;-.48883173;-2.4189639;1.1970556;-1.9490416;1.8029487;6.338779;2.089993;5.5380983;2.6215448;3.2322862;2.9171441;-1.4548734;1.2222785;3.7954299;2.0108016;2.9006295;.93149984;-.33641526;1.174705;2.2026899;1.5857409;1.2336906;2.3189721;1.8933449;.19641061;2.7029283;-.6119625;1.2577974;2.4717505;.9355613;1.0161045;4.0292087;1.458672;1.3562765;1.762928;1.2243241;2.6717231;-.14741835;.20090431;4.8531246;2.9219031;2.530355;.87826461;1.9207127;.37578371;2.2359743;1.0233268;2.3324931;-1.6292787;3.0722024;-3.1444607;4.1370687;58.709423 +-.73798543;2.2368808;-1.0804311;-.17026284;-.25273663;.49332881;-.0608644;-.98299646;.89712328;-1.6427016;-.45502031;1.5522799;.64956468;-1.2362813;-.26190153;1.1132424;.10682552;1.2854464;-.71851659;.23094764;1.2993209;.96988398;.30437711;-1.9728494;-.64656401;-.63945591;-.55136442;-.17007475;-.84852904;1.7047106;.39010844;.42764014;.261177;.13404562;.46457633;-.060443927;.3313033;.31381419;1.60431;.43782738;.61691105;-1.9424651;-.040696792;1.1956042;-.098578818;.33697224;-.042609889;-1.225601;1.7894653;.84088898;5.0553279;1.6731366;2.4123406;3.4168236;4.1556792;4.8780036;2.2205875;2.6877098;1.0618317;2.9793172;2.1043551;1.2447883;2.2810524;2.7881632;2.5209181;-1.6825207;2.021549;.78422558;1.030279;1.9567795;9.1938553;.73818058;3.3580124;-1.4393622;4.1246619;3.6525595;1.8770101;-.099087149;3.5507805;1.107403;-3.8222585;3.1394687;3.3621826;-2.5331888;5.2327805;.3205041;3.2852592;3.667125;-1.2951187;2.7715909;.96033394;3.0083587;2.7096307;2.417376;1.6402141;5.4747906;2.2062192;-.89041734;2.5703974;-1.0085881;-2.2898767;1.0435331;-1.1668266;-.37019777;-1.3855695;1.0878659;-.75841814;-.15144829;.68708682;-2.1900377;-1.1953919;.60671854;-.31607291;-1.1795971;.62402695;3.433825;1.3085783;.5962317;-1.9148641;2.4847069;1.6424698;.4967463;-.2510615;-1.4307888;-.36261585;-1.4132143;-1.1011162;.92348474;.4071798;.40026078;.33943072;-1.0186265;1.0739771;1.2560234;.25356621;1.7208284;-.32901591;-.81985301;1.4841846;.83239537;-.75997794;-.77809018;-.27665091;.40042704;-1.2220973;.16812029;.81737405;.50772029;2.1754587;1.3084872;2.9281914;.70512199;2.4849718;1.7608786;2.3247514;2.3182425;2.1758008;1.8771297;.99042243;2.7167301;1.0254788;1.5987446;.81536424;1.8840961;1.3604541;-.62310308;-.36489534;-1.0655059;.85068673;1.2649916;6.6704798;-.41366312;2.4154861;-2.6815834;2.216747;2.5996861;.86794508;-1.092087;.80785143;2.2903917;-2.39588;2.801053;2.0932891;-2.5656948;3.821702;-.66024327;3.2306428;2.1498888;.0703457;.71289647;.9495433;2.2315111;2.042223;2.3650446;3.4190109;3.1979055;.65455353;-.094207719;.7875095;.84225726;63.621735 +.23219645;1.4254494;-1.9480648;.25902301;-1.1995702;.30446699;-.42102161;.88515031;1.2042414;-.87313253;-.81698704;-.14621143;-.78034061;.28496951;.99104178;.46758088;.62183636;-.70739412;-.31785956;-.073402964;.95869863;-.1021208;-.11902159;-.92395133;.90970862;.029050471;-.27255654;-.59259927;.44932407;-1.7690408;-.14210835;-.45505545;1.275229;.71522653;-.81811172;.88043451;1.0747825;.11392647;.50964421;.8025468;-1.9290872;-.94139433;-1.1638011;1.3275596;-1.0606438;.88948774;-1.6533713;.1908433;-.27752537;.17471379;2.6205585;2.9117036;-.57296866;6.40556;.91005099;5.0229282;1.0414783;.82409608;4.043427;3.0303578;2.1763189;1.8886639;.13917299;5.233182;.88873976;4.0091462;.41309816;-1.9045844;2.8502941;3.2490213;4.7639041;1.1913888;2.8232865;4.4627724;4.1336474;5.5499649;5.8608613;4.1300316;2.4708641;1.5668483;.5491569;2.8803234;1.4774444;-2.1321454;-.31197444;2.9473252;-.84190881;1.2946358;1.788962;.67329311;3.0230389;1.1818908;3.270638;1.9947104;.73147064;.69022942;2.2331312;.67738163;3.9996929;3.1296425;1.6014444;-.1561776;-1.3258873;.73602486;-1.6103206;.25876096;.44811198;-.38568845;-.43251377;-.95327878;.23687413;-1.4693871;.38785741;.70026225;.61424887;1.2468091;-.45556548;.40077448;2.0300109;1.006686;.099159524;-.24131988;1.3891978;.92253244;.67735988;.85269344;.53485435;-.8365705;-.82518405;-.54737043;-.82487863;-.96006954;.029085457;-2.5261376;.07632383;.57051206;1.3370748;.18111314;.89072335;-.32514498;-.15207531;-2.8611381;.65609992;.64589;-1.7619574;.53171086;-1.6791594;.82908547;-.94585061;-.17140961;2.6006725;1.9044632;.79584569;2.2151589;.66332722;2.0775833;.43423066;-.11417831;3.5473871;.34700748;1.4572401;1.7461803;-.067094654;3.3871288;1.7330468;2.5499222;.57088822;-3.1698015;3.0278513;2.4186213;3.2440217;-.38910955;.90774632;4.0231037;1.626187;3.8097548;3.4569767;3.1639369;1.4150491;.44321147;1.1053513;3.174036;1.9849128;-1.6423056;.47340259;3.4552023;-1.0046865;1.126496;-.025877811;-.96126842;1.6369809;.92825264;2.9244649;1.5697625;2.9969623;1.595752;.9359473;-.17270373;3.2827768;.22593077;52.67181 +.49959314;-1.0683147;-.88151604;1.3464639;1.0431062;-.46130094;.79827297;1.4799027;-1.1900007;-.36307412;1.1612926;-.74570274;.11300235;-.087773532;-2.2321632;-1.0547225;-.39585015;.39972925;1.190912;1.940307;.13082039;-1.0594877;.11666858;-.36485827;-.94521856;-.21979488;-1.6271234;1.2286773;.05888249;.28040946;-.58662665;.44854006;-.42879483;.63139075;-.60280406;1.6836832;-.61873633;-1.054402;-.81248099;-1.6416062;.11685402;1.9544004;-.57737976;1.2383764;-1.3919793;-.16252473;-.55784112;-.74408698;.63899356;-.096601881;4.2079239;-.0089545492;.61054975;5.4109917;1.490746;3.5304537;3.3752909;.37704793;.25484616;6.8997765;2.0646329;.24604242;-1.344453;.40029389;2.188163;1.1979786;3.225282;-1.0330122;3.3724499;1.1753463;2.2415123;.63094324;3.3371592;3.7946498;2.7555037;2.6631451;-.87823403;3.7270942;3.0860848;-.33118841;3.8432457;4.3104672;1.8494751;5.8603439;3.7244143;1.9273838;-.7607162;3.1805465;2.4100242;1.5104883;-.9040032;4.6884174;-.78166986;-1.359542;3.44485;-.025572909;3.4537053;3.3400354;1.4560362;2.8475487;-.16649474;-.084080495;-.6456539;.96263659;.48975083;.15898266;.013214321;3.3198514;-.84435487;-.7613036;2.4839261;-.35958746;-1.5770429;-.10773559;-.88691396;.42306861;.25370052;-.60173547;.58755618;1.1642804;-1.4080747;-.47071338;1.168466;-2.5775769;.14402318;-.7295689;-.28447184;2.7276411;.042098463;1.6351728;-.53241771;-.892506;.47290978;-.23334049;-.47868913;1.4196111;1.1018779;-.35869846;-1.0812918;-1.3509141;.25135425;2.7005827;-1.2967986;.69914842;.085598797;-1.6751857;-2.1463721;-2.8891788;-1.0692346;.038518876;1.820006;.94843435;.27199918;3.2512233;.53772348;2.8805199;.06737069;-.084941544;2.9582729;3.9219205;2.4197407;-1.7905354;-.49533346;.72663993;2.1523628;-.39113232;2.5627313;1.2910275;.86740959;1.8174328;1.3178166;1.1989077;1.2329222;3.1408904;2.8337121;2.1433032;-1.3911425;.7522049;2.0789137;-1.857537;3.587189;2.6125083;1.4543699;3.8546119;2.3316538;2.0514057;-.29839575;.30313721;.47285244;1.7318718;-.78133786;3.0048282;-.64624596;-.34932232;1.3413062;.40229291;2.2907362;-.58108443;1.9574144;2.0813439;53.626247 +.40689868;-2.7504432;-1.4226649;.18760744;-.80303186;-1.1721506;-.064406522;.080784433;1.2603964;1.5167313;.97254205;.20436729;1.3563256;.27046776;-1.3370723;-.42367601;1.6686308;.21760577;.27665317;.75355476;.55578858;.11327263;-.92287636;.71683288;.39310971;.81906539;-.12137349;-1.4013195;-1.8421135;-1.1342107;-.23636055;-1.1272876;1.2519143;1.3652482;-1.9811032;.26589069;-.40617505;-.0028784319;-1.2934154;-.31662488;-.69340426;-.23794405;.22305824;-.088472448;-.93013412;-.17504235;.5602634;.83960235;-.54453796;.31016934;1.633743;2.5933466;3.1008604;.39235941;-.4069151;4.1999769;.88233119;2.4336698;1.3026589;2.7388821;1.3804498;.41581923;2.9337142;.015161973;.97366041;3.4687507;2.1138806;1.5198772;.11560922;2.214649;4.0164165;5.1776719;4.2411122;3.0811639;2.5773506;.48537371;.26165622;3.9470234;-2.9263356;3.0701504;.64948219;4.9540381;2.3216095;3.594738;.24440937;3.5551374;.49831554;-.13031365;3.0422766;1.6942866;1.0973454;-.35000607;-.093786575;2.5628109;2.2307343;2.2106054;2.2831674;3.1360598;.18214867;2.6008544;.071327634;-2.363008;-.78441072;.17467713;-.85951281;-2.6557112;.64767408;.90342337;.90018344;-.59312165;-1.3316935;2.0542431;1.3033679;-.14052512;-1.0883914;-1.8900125;.17637634;-.11975452;1.8116852;.89768869;.40596643;.27151468;-1.0365559;-.11246615;.93751973;1.8300767;1.0786644;.23460382;-1.9855205;-2.788399;.58953083;-.3697629;2.4606752;-.61197627;-2.3471925;-.077705294;-1.0803415;-.87582052;-2.4846456;.73283207;-1.9054443;.84381169;.090905972;-2.8738809;-2.9371109;-1.9054228;1.1885905;.90787554;-1.4364774;.30777404;1.7988149;1.3075087;2.4466655;-.31615555;.52839482;1.8559053;1.0102857;1.1232772;2.9724066;1.2153381;.21249735;-.19215159;3.2164385;.30556783;.95047224;1.8206519;1.4958531;1.7151068;.66737121;-.23733799;1.9389025;2.6881311;1.84332;3.7213674;3.1772342;.96621889;-.46077242;2.3427446;-2.1159463;1.2240655;-.53600341;3.884433;-1.54956;1.552129;2.5447638;1.9344177;1.5847023;1.060474;2.0818048;-.27898154;.07375592;.44201377;.94755107;2.5411499;-.91782176;1.9911268;1.890991;2.3188436;-.87416714;2.6631293;50.946453 +-.62850499;.050984178;-1.0107949;-.22884378;-.16374427;-.084488869;1.2840518;-1.2450697;.46741611;1.1433009;.47102141;1.1971892;-.26195538;-.42601064;.94946152;-.77992916;-.59290832;2.3819494;1.017377;.67323452;-1.0728189;-1.3247702;.50415576;-.71574789;1.1998005;2.5541391;.078089923;-1.5193636;-.60838723;.97340167;.465866;.58114237;-1.6640805;.015019128;-.80446881;.17185465;.33854908;-.027158791;-.37129322;2.0689697;1.2695459;.123601;.25840423;-.33713409;-1.1750084;-.54694653;.31191003;.71685952;-.98529649;.20779894;2.1215065;2.8005662;2.126817;.74346626;1.9563144;2.7593949;.44360018;.54923964;2.4252031;.32636005;4.9223232;4.5293527;3.3957112;2.0315564;1.7082529;4.0605745;3.3060963;1.5612689;2.6392941;-1.9624205;2.6966105;2.5829315;-.2850531;2.7785928;.68591344;.03653698;.7792365;1.3151579;-.21039113;1.4947098;2.1115813;.94999725;4.8472905;.9783929;1.1189357;3.8391685;1.1780696;4.1970339;3.4513783;1.2581671;2.4827545;6.1991754;5.8793006;2.865232;4.4326339;3.7208998;3.1966112;.71188331;.030448116;3.3961854;-.46025938;-2.5088325;-1.2399096;.096962355;1.4467098;.86167866;1.75501;-1.5275826;-.84637851;.77791917;-1.0473374;.7595104;-1.5646969;-.4886018;.091849647;-.078023449;-.092257269;2.7835431;.25845316;2.1970646;-1.5474043;-.77319288;1.7815307;.62329537;-.24448547;2.9779406;.07511238;-1.5561465;-1.3490689;2.0721774;1.8303759;1.1828938;-2.3631139;-.61209488;-1.6058236;-1.5433316;.1381328;.83428359;.23850064;.90474331;1.5327172;-1.6808859;-.36080149;1.3665236;.18963182;-1.0326477;1.804866;1.0622582;.02632973;-.77062315;-.8859629;.50707877;1.5759165;1.0054437;1.1476448;1.5771546;.50245297;-.081813723;3.0745482;-.045702998;4.1389675;3.0577371;2.7745154;2.0747488;2.1217844;2.9207275;1.7393271;.13643318;.78453702;-2.3773186;2.6020455;1.1921372;-.044862036;1.9902761;-.027170818;-1.7391089;.29035354;1.6549796;-2.1700432;1.0712988;1.8051288;-1.3898571;1.4756396;-.2955144;1.3074552;2.337431;1.0071281;3.8078351;2.1782653;.48309487;3.3001738;4.8731871;5.3456721;.033586189;3.4863811;2.0147293;2.4861286;.92091715;-.35316426;1.2756907;61.188831 +-.16757436;-.93987513;.38201621;1.5542592;1.2460779;1.9771894;-1.9761064;-1.3907619;-.3170422;-.086818025;-1.677632;-.1191493;.71502626;-.49061707;-.44160184;-.54982054;1.5114954;.24215816;1.6138138;-.3469888;-.99412233;-.40462402;.48102078;.19255817;-.13322367;-1.7595158;-2.1282973;-.056118619;1.3347514;.69107479;.42411599;.11140455;1.3351855;1.4879681;1.1553323;-.69437826;-.92160892;.40086535;-.92074335;.0069145677;.83156902;.47416016;-.31575695;-.59236431;2.5466673;1.1914749;-1.2443292;.67704684;1.0283003;.10932001;-.21545447;2.9587617;2.8033071;2.3804419;1.5843459;4.2488761;1.1181486;1.6997749;-.1054472;4.0101161;1.2333592;6.2223845;2.2860925;-.95194793;-1.1070468;2.0249872;-.49130109;4.7599449;4.4916778;4.5305657;4.5477047;-3.3306351;.65067524;1.5963851;4.4978623;5.2231789;-.58333665;.35194924;5.3048215;2.3986833;3.2945843;3.0073564;4.3872342;4.3183336;5.2503967;2.8066008;.22989728;-3.4721205;-.63074803;1.2064629;3.9865773;1.983189;-1.2977324;.46876818;3.7715917;.15443435;1.7108386;1.3105755;4.7258115;1.5545485;-.014111543;.95994496;.37864372;2.5308509;-.77161831;1.9025289;-.23781857;-1.0892044;1.5069491;-.58147067;-1.762949;-.71057576;1.7193568;1.3413924;-.53327352;-.61991519;1.9191138;-.17178258;1.3945374;-.41050813;-2.8257282;-.57290292;-.507478;.15450156;1.1339099;-1.947386;-.14645465;1.12447;1.618366;1.8796916;.45735213;-.15267864;.84241164;-1.398687;2.5271025;.30560216;.24098131;1.2991029;-.054226596;1.5172983;1.8852047;1.249878;-1.9070122;.28042674;1.0620582;.63830644;-1.6061709;.13934101;-.066898674;-.28086826;.60295391;2.7375247;2.3816686;.65838534;.21975702;3.0506368;1.5531949;.31121498;-1.9278778;3.4683089;.55101371;6.0594134;2.3342254;-.79712355;-2.0076919;1.6374025;.4720099;2.6744022;4.1040549;2.1284716;3.0871384;-2.1240234;.80552316;.87027121;3.8446107;4.2018018;-1.0427942;1.0785304;4.3614182;.23759578;2.6475935;3.271481;4.3780036;2.7416091;3.146908;.23015115;.33132496;-2.9459913;-1.9573226;.89457941;1.715036;.66542733;.067960568;1.1106838;1.462582;.19100212;2.0897558;2.0232899;1.9082793;1.5052692;52.782951 +.90080374;1.1384269;.011865608;.074464619;1.1518322;-1.4420075;2.7646403;.018414151;.63803464;1.3148831;.57828885;-.90456277;.069230981;.42054155;.20520665;.16064674;.91602516;.042536695;.5727585;-.48068962;.56622779;-1.7024428;1.3909022;1.483838;.47619057;-.1052361;-1.3107692;.25570729;1.2157285;1.5434556;-.51115608;.047145844;.80914384;-.7027849;.32016405;-.26394504;.0056244135;.53962678;.44188169;-.89769262;1.7404872;1.0259041;-1.6933064;-.81944984;1.053749;-1.3909289;.037250943;1.1579145;.042797647;.32998759;2.4504721;4.3794088;2.1917415;-1.079969;-1.0002322;2.2232964;2.6771591;-1.2434998;1.8322942;1.774428;2.2635527;2.3121541;4.4480734;-1.1713676;1.3313398;.12342416;4.0933247;-1.3225527;1.8624099;5.0361204;3.596086;3.0136864;4.1019392;.94093394;.29834101;3.1689072;2.3166547;2.1881282;1.9812912;2.4825628;-.28092754;-.33810243;-1.9225856;6.5425963;-2.0279553;.54860234;-.72439778;2.6051304;.4221127;2.3645234;.9249866;1.3506029;2.2782977;1.0709586;3.7142727;2.7987456;3.046675;1.1573586;-.098337092;2.9362979;.56214118;1.4524158;-.21399115;-.085244261;.53897065;-1.4290655;1.2453474;1.3870925;.19585744;1.4231119;1.953428;-2.8934464;.30351794;.34128049;-.86554509;.77366835;.24458662;-1.6681756;.12353606;.24427885;1.2506535;-2.9583788;1.4476981;1.4599069;-.16890216;-.26748064;-.97909826;.20536029;1.6805997;.065197177;-.80357695;.2039354;.13126755;-2.2453196;.82205915;.0085868631;-1.5319833;1.1218213;.39156753;-.4163149;1.3136206;1.5589931;-.9906826;.65935105;1.8148713;1.5120829;1.0218313;1.6040356;-1.1370275;-.69984108;2.1928065;2.985719;-.10822892;-.45666578;.17037629;1.0656371;1.2661986;-.46531245;1.7435592;1.147522;1.1081884;2.5827019;2.5035381;.12061364;-.21255291;1.0944777;3.3113365;-.76157248;.7058683;3.3888981;3.4725955;1.892078;3.5214415;-.15464832;-.21119648;1.7715499;1.9509248;2.4856179;-.73474467;.80068558;-.031112975;-.18938881;-1.8620527;3.4900203;-1.4851719;.016265957;-.68054491;3.1620352;-.59036475;2.1543338;-.41552702;1.4095756;1.6487615;.97569877;3.8380537;3.452698;2.1011717;.99511081;-.53856856;2.9791033;48.992661 +.57580507;1.0622851;-.56327486;-.14446425;.010684134;.71148163;-.83285487;2.0999937;-1.2133864;.26145217;-.82594907;-.45066479;-.68757427;1.4080274;-1.4533666;.44397181;1.2430196;-.78423643;-1.3884383;-1.07232;-.46949902;-.72252351;-1.1028174;1.5636446;.20669775;-1.7634625;-.29771644;-.46554968;.2852501;.94121689;.28626487;.36217442;.79919964;-.1630535;.74849528;-2.01335;1.2734278;1.5474038;-.97993934;1.2587242;.80818754;-.42220733;.4209089;-.13382724;.56853431;.74063152;-.89002234;.29249051;.21297142;.72871786;4.6533823;-2.5870233;-.95874238;2.5702214;.95435524;2.1915126;-.26328558;5.8880534;-1.1727557;2.6884229;1.9193295;2.3618681;1.9696921;.91960108;3.8279047;1.8786606;.71162665;6.6494994;-1.1288117;.37523845;.57627326;-1.1057347;1.8002186;6.1178274;3.1057417;3.3146846;3.5939372;.42526954;6.341167;4.0964627;6.8526154;.24028529;4.1452942;2.5666897;4.2502136;2.3025055;3.2506177;-.14224781;2.2779396;3.8797474;5.6191759;2.3949788;-.36616966;.53472054;2.074903;3.1336815;5.3376312;6.6103868;.065464839;-.32049227;1.4407915;-.28144866;.82534558;1.2574967;-1.9031955;.14231771;-.21654695;.24401593;.81762791;-.90064341;-.97372651;-.35249373;-.82808501;1.4704636;-.26872051;-.042138506;-.49539024;-1.7674781;-.93316084;.69439214;-1.22881;1.2304122;.6492421;-1.8171721;1.0836658;-.32218704;-.16444744;-.078100868;1.4860919;2.2534208;-2.6201522;-1.1372797;1.7838703;-.11769128;.82841194;-.55006558;-.89236307;2.1522617;-.61665452;.20573877;-.54824781;-.66580349;-1.44713;-.73188442;.32372427;.80504292;.044147503;.59488285;.97472423;-1.4924607;3.498857;-2.6689751;.12474138;-.44696528;.31162754;1.3178302;.55511272;5.0765357;.3674536;1.5994015;2.7728841;2.7354734;2.0564084;-.05315683;2.9446042;.68736482;1.0324155;4.8830552;-.14939061;2.7497463;.7480669;-.046652559;1.0185462;3.4186764;2.7762032;1.8237394;3.8718889;-1.1399579;5.7494349;3.308465;6.7389355;-1.442675;2.694396;1.6839108;2.0406413;1.3974588;1.9293804;.057354957;2.2147365;.58392984;4.6812768;1.9685876;.73967618;.019507501;1.7570699;1.2645553;2.7267256;4.0015268;.53331089;-1.0907568;56.72554 +1.3115901;-.82373673;-.74920499;-.61904967;.044460658;-.50985014;.78177929;.62443209;.40226516;.44049117;-1.0375175;1.323779;1.0985419;-.064763851;2.3999424;1.0645416;1.00018;-.052675642;1.872511;.17815408;-.55894208;-.32914266;-.36823362;-2.0497379;-.54608029;1.3156362;-.63384444;-.7637524;.39403686;-.30418932;-.26071438;-.28068173;-.0052061197;-.30681163;1.3971773;-.88456798;-.69313872;1.601887;.71328509;.3461431;.94212925;.8598296;.27790052;.17004587;1.0608624;-.30304456;.72249019;-.65100217;-.78968918;.95083594;3.3418105;5.7092834;-3.6691346;6.9572458;3.5911465;.1306797;.21943207;-.71781856;.33783606;-.59430552;2.0946364;3.1221838;3.2905614;.29985753;1.475708;4.982842;6.9235396;2.34902;2.5304506;1.0824864;-.033787161;1.9483584;3.1086535;1.1916482;1.4589192;.37998077;1.1273929;1.2045313;4.2895069;1.4748261;3.8193381;.448185;-2.7090259;.83340138;.10107077;2.5416195;5.7957149;3.7820423;4.6606159;3.4293916;3.278383;.14679492;3.5572057;3.5898271;2.5933597;1.6493366;1.2542353;1.3787916;-.09578754;3.3911049;.41259989;.24026361;.065685324;.47797886;.46537957;.95261103;1.216022;.013660361;2.5288124;-.55625767;.19909236;2.1076615;2.7900908;.081637345;1.340048;1.3309524;1.3623539;-.4477419;-.25708166;-.039271481;.15998554;-1.2475563;.33221316;-1.3325863;-.12411305;1.9076452;-.65194881;.10319903;-.58303934;.27295077;.32420126;-.55846286;.75341225;.19037138;1.9802681;-3.1705608;-1.8941511;.82568729;.61097538;2.0808456;1.6256272;-.10069559;-.12876134;.51455808;1.6091369;.54326695;1.9038785;.53001785;.87632471;.41944763;2.140327;3.2360218;-2.4363708;6.4622202;2.7397175;-.55136371;-.50506049;-1.4385062;-.38029855;-.12015684;1.6039518;3.1373794;3.3994195;1.3465827;1.7152323;5.144753;3.0576825;1.9594233;1.4445472;1.1831445;1.2474593;1.7177405;1.9108067;2.3835852;-.12492458;.013896805;2.8933918;-1.5574543;1.8408563;1.2464896;1.6499436;-.53718376;-2.4365423;-.19929446;.50990832;1.3065796;5.5130253;3.3758395;4.0698371;1.9758588;3.0136788;.64535004;2.1314273;2.6449864;2.6104105;3.1633768;-.10794698;.88555837;-.78412038;2.2577302;62.575253 +-.38874373;.97042316;-1.614375;-.46201015;.33266491;.546727;-.76657832;-.61567652;-.86580044;-.31331661;.7838015;-.47280571;-.69217342;.65873277;.30542275;1.2590992;.8197698;1.1572978;-1.5277753;-.099830352;-.69158047;-1.2619367;1.1204988;-.7717678;.10150689;2.2606268;.46257105;.49433962;-.28442904;-2.2077518;.63280702;1.7472354;-1.5197035;.20779712;-.70722085;-1.3693272;-1.7993085;.5263238;.21598838;-.36390972;-1.6296749;.0060871793;-1.3950436;.10614531;-.70421845;.050131176;.091409013;-.00093347742;1.8748893;.85239708;4.8346996;4.1851387;1.7714592;3.9603963;5.22227;3.4586382;4.7842808;1.6104989;3.008487;3.0361316;3.493762;-3.5999165;6.9854245;4.3781581;3.4308498;.54619074;-.54721111;2.3102381;1.0168908;1.8570154;3.68279;.43320608;2.2368793;.58348644;4.4334841;.035197768;3.7481246;2.8827724;1.5071076;4.8508062;-1.4280068;3.6837769;.29421622;1.7989793;2.9870126;4.0024991;3.4483323;2.9623601;.25525552;1.5341322;1.2505361;.67360282;2.9570105;-1.5141306;3.6106761;3.0775337;4.2345128;-.14346872;.43678337;-.7418099;-.61205351;1.7120585;-1.7592191;.50256079;-.49389398;.60223579;-1.7325745;-.61815214;-1.0007938;-.89480793;1.5538671;-.014484008;-.10308181;.26811123;1.9062672;.41842189;1.2454265;1.0227691;-1.2420386;.605322;.0022369456;-1.7617791;1.3282484;-1.5232977;-1.3864743;1.3144834;1.7987134;-.0064219763;1.2092865;-1.214471;1.249755;1.260711;-.30442441;-.32014552;.58612978;-1.4722574;-.18799272;-.77506536;1.118627;.54460573;-.21158117;.46464556;-1.5305775;.52522427;.52049237;-.85385609;-1.0726706;-.21157351;2.0640094;-.068068147;4.1190205;1.684451;2.2838855;3.3059905;3.2786946;1.24922;3.8965802;1.831862;.70110655;3.0573394;2.7514803;-.65720016;6.9891729;3.3584704;2.9548481;1.2475226;-.73347372;1.850185;1.0577812;.83637577;3.2919886;.59850508;1.1035678;.024292685;3.0946431;-.2926887;2.197854;1.2925541;1.7707496;3.606626;.23306505;2.7129207;-.14599928;1.6085337;1.3668453;1.5077854;1.5378022;2.5111275;-.69368279;1.8645012;1.0571845;.48400861;1.605296;-.29537365;1.697472;1.8147211;3.4448862;-1.4470041;-2.4321828;-1.3295548;48.518375 +.30982044;-2.901197;.62404174;.21014506;.44176415;.42720914;1.9542135;.36786228;.042666439;.11858372;-.52539712;-.97554296;.022962872;-1.476725;1.9929874;1.0086193;.075172797;.77735847;.19236231;-.44554213;-.23008035;.75264788;-1.0439842;-.94894451;.03629275;-.88317996;.86557341;.89134085;.13184984;-.58948117;.46555415;-.63923872;.51185447;1.9142965;.84168446;-.11745292;-.31098965;-.26837617;-.97080874;-.45026314;-1.3807201;.65502244;-1.6741226;.54737127;1.3265555;1.0089899;.35947445;-.48069429;-1.4665018;-.116069;3.8013611;7.1416049;2.6432409;2.1501553;2.4734371;3.54792;.046081219;.99904692;-1.7646147;-.61261594;.82560414;2.4332654;-.56866682;3.3094063;-.57444948;2.3624587;1.1725346;-.010923629;.67392892;1.3425401;3.4453204;1.5148817;-.93118119;-.51125818;4.0382514;3.5717406;-.0998137;.99217051;.82073736;.094466887;-.86818409;-.30396235;2.4300187;3.4397581;1.0053816;1.879254;-3.3433025;2.0431571;2.4172647;2.9130466;-2.0188413;.18310905;.39892244;2.1115649;2.1157396;1.7949399;3.8795514;-.48348176;-.10618673;1.8151476;.34514579;-1.5699646;-.53275615;-.98612136;-.1299402;-.20236187;1.6117395;.60918349;1.6450782;.093235113;-.66179115;.47490463;-2.6913178;-1.4769149;.052512813;-.52831358;-1.4749696;.12720732;-.22298245;.22193892;.51815432;-.030540893;-1.9717573;-2.0097036;-.29055065;-.76727366;1.233385;.31544253;1.1335316;-.59726232;1.4068096;-.6211108;-.95657164;1.2254788;1.6655494;-.82792652;-.61746484;-.46453708;.92830336;-.043652453;-1.3060548;.11315928;-.08088325;.73692334;1.4202088;1.0773622;-.30289125;.23443127;-1.2231464;.68442309;1.2390981;5.3502746;3.6570358;-.0043530636;1.1696999;3.2261162;-.50969946;.48058337;-.080130853;-.084767945;-.5391981;1.5970018;-.94388437;1.9819986;.62646955;2.079289;.40661916;-1.9872525;.17638062;-.2872524;2.6223171;.64418519;-1.7712284;.11322584;3.1953022;2.4460433;-1.8888791;-.25358564;.90504706;-.35522187;-1.5914735;1.7585417;.88578445;1.8954977;.18408148;-1.1228014;-2.8095264;.50803399;2.7059104;2.4971039;-1.5445017;-.67645508;1.4158355;2.5446968;2.0551248;2.3466618;1.7693131;-1.7933006;.20778452;1.4267082;39.131424 +-.092238024;-.26024476;.42531496;2.2638299;.90838933;-1.2869662;-.85218847;-1.0783648;.90272397;1.8298694;-2.3282642;-.27869713;-.41936585;.76147842;-.74518532;-.015552966;-.03441377;.77318543;-1.1648865;-1.7841558;-.080215834;.95766693;.43325627;-.28209475;-.19126286;-1.2695946;-.57330406;-.29074568;.67785066;.35016337;2.2215185;-.32159197;-.50745201;2.4588456;-1.0658733;.32224241;.48423174;-.54386866;-.19063565;-.031100014;-1.8337862;-.60997117;-1.5282984;-.61983663;1.4685942;-.39448708;1.0649264;-1.2405862;-1.9171286;.78480798;1.2215005;2.1616492;.50481409;3.2253301;1.6607004;3.3862491;4.6268568;1.7040801;4.0691438;2.5450742;1.5483953;6.9992323;1.578005;1.9661007;1.8624102;2.2102973;2.0884757;-.60113835;.93223453;.4909251;1.9071528;2.2570181;4.9079547;1.0383198;.85733771;2.4111176;-1.3858424;2.4227252;3.2279429;-1.7565225;3.0091827;1.4571747;.76825446;.46289256;3.3933058;1.1817149;1.685503;.49763271;2.0117781;-1.8340424;2.2084761;4.9571033;3.5521278;4.1275892;3.0785019;-.90102887;2.2578444;3.0446506;1.2519522;1.3671473;-1.8915031;.42298266;-.41987994;2.6614118;1.7629169;-2.6283934;.23215589;.071804442;1.8160492;.65646458;-2.0377111;.21105394;-.45139459;-1.1208881;.81156135;1.079386;-.41552928;.92080718;-1.8884621;-.79513747;.31930387;-.38963556;.43264648;1.2738386;-1.6494565;-1.5136151;.90834492;-.43298244;1.2263875;.75391698;1.1193047;1.3599277;-1.9744953;.42662594;-.92579758;.99264151;.60152072;-.70728326;.1167657;-.022188647;-3.8229539;1.371207;-.060923457;.49194121;2.7772429;-.6763435;-.10831905;-.34770995;-.99916124;.46346417;1.2689047;1.4347174;.15685129;4.7845035;2.288106;3.673672;4.907414;.86775404;1.7844367;.85480428;2.1276662;3.6749671;-.1290758;.74105674;1.5108725;3.4253645;1.971927;-.15476216;.74819106;-.087425895;1.9870542;2.4698393;1.7750663;.14107837;.33642966;1.7960249;-1.5815364;.97079325;1.6006213;-1.2764678;2.376121;1.2482805;-1.5674024;.4895215;2.3655188;2.0465403;1.3972443;.57012546;3.5632677;.33025214;2.476603;3.5107343;3.0611572;2.54619;1.4100618;-.39283282;1.1309768;2.7114794;.95248449;.76875514;51.384697 +1.2423145;1.840891;.40238392;-.47470009;.90465575;.34948182;1.5544647;-.61314392;-.90351957;.17778203;1.0546254;-.45084459;-1.471406;.7167322;-1.3044252;-.83985156;-.011932211;.50001913;.17661193;-.52501386;.76676494;.58743149;-.3646667;.82279348;1.439981;-.65391403;-.93863422;1.5944062;2.0636261;-.27148932;.42260507;-.1730314;-.41013658;-.18621917;-1.5555283;-.2220972;-.18113075;2.438705;.33899054;-.95299053;2.5030079;-1.5756416;-.095992498;-1.9943775;.72434753;1.2719092;.28809273;.47764257;1.7904457;1.0707811;2.651818;1.2730643;2.4023898;3.3517747;2.8600605;3.6993687;-1.1890588;3.826612;1.3917404;5.1218104;.87229854;3.1835573;2.7172699;3.0288625;2.600539;2.4889386;-.42554513;.50426745;.97727615;3.6319366;-1.0739279;-.080219373;-.89968359;4.7294364;3.640065;2.8397675;2.7759213;4.777822;3.2847655;.48744205;3.6157336;2.5885899;1.7842737;4.5652733;3.1572473;3.3484907;4.1611185;2.4391856;2.4643183;3.3918464;2.5232415;1.8150642;2.8657312;3.597254;1.8873107;2.8665905;2.1088326;1.5826776;-.46573743;4.1815104;.59288663;1.7398502;-1.2193369;.80124748;.80916232;.94696206;-.41683891;.47562292;.34981892;-1.056519;2.117507;-1.5465093;-2.2311275;-.18623856;-.92211634;-.47381508;.82679588;-.32770333;1.4443581;-1.0208784;2.3558967;1.0881219;-1.3132371;2.5540719;-.25818509;.81227481;1.2883886;.14311372;1.2388548;-.58710498;.30085254;1.1747494;.5859406;.74413705;-1.3945982;1.0147026;-.94753176;1.323741;-.091722503;1.4695605;.39285442;-1.128965;-1.1370742;-2.5672672;1.2493559;-.069605142;.79354125;.15700924;1.5853038;.30003488;3.1940057;3.3148975;2.4716589;2.5945241;2.7564387;2.0866845;-.38617933;4.2023425;2.2806878;3.2773294;2.8406532;2.6300197;1.7121468;.76830268;3.1691732;1.9730895;.20406476;.06440866;.29819191;1.4924823;1.0600852;.10572665;-2.1051629;4.3189735;.52437693;1.8158448;1.1085606;3.7610009;1.8207805;.25671235;2.0836551;1.4322315;-.23946236;3.202415;1.1415138;1.3289323;2.7965498;1.0065448;2.8246629;2.3102434;1.6213356;1.2692555;1.6260502;3.535156;3.0972412;2.7419455;2.7575617;.59155387;-1.0534973;4.3037744;62.623779 +-.14058271;-.85616279;.59834874;-.022596605;-.83689672;.40469146;1.131116;-1.7192434;-1.433152;.16525662;-.3888948;-.81113362;1.2351158;-.64235431;1.8245312;.11076222;-.015702644;-.67366982;-1.222119;.65723729;.31637603;.41700065;-1.9549568;-.79942197;-1.8809984;-.28770971;2.3681283;-.54169273;-.68649751;-.77764893;-.27234307;1.1422986;-.21890166;.44019645;-.92615968;-1.4644274;-.00093583256;-2.1142521;2.4778726;.86152011;1.0249233;.09747608;.76389366;2.0447621;-1.0309021;.71171921;.50438774;1.276716;-1.4548438;-.19784541;2.416786;-1.5857441;3.3565745;.90154117;3.3929217;.93308324;2.7162158;.54194403;1.8562391;4.7505612;-2.1220989;3.3962789;1.5057636;3.6403563;.2170756;3.0433607;1.7216643;1.2141167;2.5376587;1.718204;3.3645487;4.3373933;1.2350146;-1.2424415;-.23148623;2.556206;1.9410158;2.5771136;.90495884;1.709684;-1.4311249;3.4001064;.011308077;-.41781637;3.8069229;-2.7017298;3.7915645;2.6565192;2.9171159;.7826969;2.345794;1.1162654;-.26960751;.42934078;.56798768;.83430481;1.3256283;1.6967158;2.6965325;1.1113372;2.6387408;-2.1386683;.6867848;-1.131907;-1.87111;1.0815827;.16591239;-3.6477582;-1.5146466;1.0289434;.30330992;-1.6683527;.48998365;.76021302;.029937306;.94915539;-.36207992;-.53285247;-1.4377486;-1.8234729;-1.0344996;.2081826;-2.1023765;-.15602174;-1.3096834;-.60510844;2.8739636;.2019237;.71745574;-.20774154;-.37712735;1.4371833;-.50430858;1.8152727;-1.9532932;-.36851782;-1.7527287;-1.8389229;1.9459054;-.62213922;-1.7667087;.10680833;3.0055768;1.3413198;.16955754;.28627098;-.40026483;1.4795716;.63942468;.47842339;2.6238019;-2.6123958;1.5655507;.34511319;3.5458791;2.4712398;1.1935674;.48473415;.18953581;2.0970707;-.97159946;2.172271;2.1775727;1.6797384;.47055995;2.8089314;1.916136;-.55267936;2.0762832;2.7127347;2.1421328;5.4470124;-1.6720437;-.83832514;-.24369809;1.5062382;.96450853;3.4494772;1.5013435;1.8683597;-1.9005805;1.6815528;-.40141994;1.1645861;1.5043719;-2.635776;2.0601346;1.8584123;1.7144433;.68769568;1.0228271;-.39774954;-1.2659317;.077651493;-.085648708;1.1310077;1.0474621;1.9992647;1.2524146;2.3648455;35.715992 +.67924255;-1.9260817;-.52951735;-2.9114506;1.1379954;.95373309;-.27731889;.69238925;-1.0136335;.46618807;-.21431465;1.7429223;-.10229252;-.76438355;-.86586565;.83857059;.065183483;-.42100954;1.5505645;-1.1560541;.19460197;1.0257932;.058781698;-.50007689;-.92990196;-.023687389;-.25204811;-.98461378;-.32803527;-.90025783;.58096695;1.6123821;-.54174763;-1.1680645;.46254084;-.30684426;-.30183268;.062962011;.22309434;-.061813239;.060704436;1.785697;-1.1881034;-.1883391;.53761959;.77385277;.33724713;-.45143646;.47318038;-.63495159;2.6427796;2.5610483;4.8601041;6.1002192;1.8341883;-1.1848472;3.1224983;-.9498027;3.637974;-1.9766926;3.1310956;4.7492151;1.8044151;-.80026895;3.6992769;1.2917911;1.2078902;.82462388;2.8801928;3.0592859;-.62312984;1.6572016;.71712166;2.283709;1.9526504;3.0287039;-.46979037;3.0145102;-2.4445701;2.625437;5.3530817;3.0777469;2.8580654;.84682006;5.833952;2.086436;1.9846699;.60913664;-2.7328999;1.5431855;7.3292789;2.981693;5.3689265;3.5141091;-.60173577;2.8516989;3.3495278;6.597249;.8151173;2.9830189;.89615464;-1.1300874;-.034557946;-.58599973;-.83877611;1.2897135;-1.39684;.21842633;-1.2237737;.89650154;-.65554839;.83501601;.80211532;-1.0292619;-.89001077;-.029274151;.58573341;-.36251312;1.8933049;-.53795016;-.6906724;-.69620216;.3313303;1.8860919;.31682652;-.20504378;.49547899;.57053256;-.97958022;.52987099;1.3351692;1.4291064;.34379169;-1.0235389;-.12337113;-1.0902666;-1.4718316;-.28233826;.88044763;-1.1036451;-.79894507;1.3363616;-2.2165139;.82024515;1.4653966;.11056528;.1142429;.75368792;.2786037;-1.0221257;.00094862015;2.8418272;3.27478;1.8395294;1.0363652;-2.2928486;1.8872508;.67386633;2.1525967;-.73227304;2.4960363;3.5653484;2.2647319;-1.4156761;1.078617;2.793299;.059224442;.47503722;.40668097;.15287448;-.064316362;1.6618898;3.686868;1.4512855;2.0256939;2.9428864;-1.8235407;.88749772;-1.9455841;2.6121285;3.9024742;2.3091769;3.8785331;1.3252181;4.5470505;.98692691;.96854013;1.9247535;-.93771946;.55750579;5.8045049;3.3814621;3.5160763;.61419684;-2.1479526;1.1983559;.19260685;3.3909161;-.47594744;.80462897;51.849373 +-.23062336;1.9833906;-.064387053;2.0407043;1.6330949;.59050882;1.3017882;-.52939337;.38345683;-.47781253;.81290269;1.0983785;-1.7666487;-1.9823387;.33560339;.76984864;-.78152078;-.19203448;1.1535262;.25851986;-.20529725;-.44580266;-.12166829;.39981532;-1.1469848;.19931816;-.73553598;-.46331686;.18911125;1.9154631;-.63782334;-.31691048;-.23178779;.29946163;1.427606;.079148106;-.53769517;-1.8969357;-.98303592;-1.0025518;.54566252;1.5802948;1.5077556;.15351208;.31185225;.59541261;-2.668165;-.87698478;.45332402;-.92162395;-.36671174;2.2110798;4.2077856;4.293963;-.21106985;1.8855954;1.8235857;3.5581429;-1.5849409;-.36532602;2.5093434;.58886778;3.7096083;.80129522;2.0637417;2.4768567;-.39804029;2.6064785;.76530206;1.8912179;2.047478;1.2195938;3.1519144;2.4331918;2.4497933;2.2045734;2.4852552;.31192932;.4855682;.3926006;4.4851465;1.715149;4.013051;5.5362034;3.3937395;2.6502335;5.0241423;2.0421345;5.233614;4.4656377;2.4557056;3.5210824;2.4390936;2.2580991;4.3504944;.31585243;3.5104723;-.19646962;1.7274895;2.0666933;.93895012;.0563563;.34283683;.92110026;.83411556;.85020953;1.066878;1.0171493;1.0313038;1.1799594;.07752277;1.3846753;-3.4039445;-.037728727;1.0498849;.064319342;-1.8043973;-.39497203;.480636;.099013157;-.43918884;-2.1653063;.9045254;.77483767;-.21888092;.099926122;-.49837679;.26368612;-1.4258553;.29140121;.26213363;-.76198786;-.27043492;-.82560003;1.11791;2.9937212;-2.8762782;-3.2622659;-1.32382;-.98954648;-1.6798567;1.2904418;.60911453;.19367912;-.68128204;-.25729558;-2.0854094;.033661488;.74636924;-.79266256;-1.2007136;1.63658;3.5918901;2.1377506;.93048978;1.2832738;.58482087;3.1521583;-.14952269;2.3502505;2.4836833;-1.2530853;2.4588375;.93296707;.74904156;5.2927944e-06;-.73615932;2.2736745;1.9957322;2.6164613;.077466428;.83032727;1.1106539;1.682801;3.4434855;1.8315666;1.8284839;1.2613331;1.7400811;.85168344;2.8723123;2.0080245;1.2173319;4.8993249;2.6105831;2.1768134;1.9440645;2.3491099;5.4779549;2.2139387;2.01703;1.0866917;1.4007155;2.5856259;4.0420051;2.6837037;1.7837808;-.32239985;.71638411;3.570612;55.44767 +-.44467971;.33458164;.41320688;-.58902311;-.67924106;-.80931056;1.2220306;-1.2480338;.59857345;-.37206334;.82651311;-.84574831;.458509;.2905136;-.30662626;-.78786385;-.85393012;.018672945;.8373366;-.078927204;.31241494;-1.1795841;1.3230908;.47985989;.27612847;.72105473;.036913332;1.4120344;-1.203016;.56720185;.47081786;-.3423157;.1490663;-.083368897;.25013489;.18447052;-1.2785014;.43031359;-.57286733;.7226823;1.2703787;-.61834276;-3.1230032;-1.6404445;-.30256736;.027990945;.59687972;-1.7948927;1.4757837;-1.1791123;1.5717601;.95225489;3.1624827;1.958359;2.807472;-1.0355219;2.8838029;4.3178301;-.13977577;3.7855866;1.5665796;-1.0206138;.50233674;1.0462372;-.66193068;-.59482688;3.9370067;1.0566285;2.9705243;2.2798767;2.0271747;.85785663;1.6523796;1.0187114;4.5906086;3.031512;-.96112698;-.01794384;2.7296619;4.8499913;2.1604404;3.7111652;-.28725895;2.1631765;3.1460345;-1.1845489;2.3449221;4.2520947;.0073922337;-.37786353;2.1516774;1.0922683;2.1402249;1.8068507;.7163474;.17149258;.71283168;6.1539841;1.9534123;.30941102;.54463828;2.2253561;.81503743;-.60090369;-1.2215266;-.32613021;.85945654;1.5508312;-.15699264;-.80257553;1.9890662;-1.3769261;.38958064;.62280536;1.0132118;-1.1069556;.13183387;.44530559;.39937413;1.1804674;1.7145398;-.67869669;1.9498538;-.35835359;-1.0871303;.62418348;-.015105637;2.3072073;-1.7795578;1.3805596;-.049768642;-.62425274;-.041318763;.36924434;1.0576791;-.075625509;-1.412908;1.4555569;-.39984533;1.2353617;.75823492;1.5610671;-2.0295255;-1.3983696;-.08951024;.089219995;.048582349;-3.0489635;.64504266;.51122105;.54508966;.27722517;.61119938;1.2892888;2.4907966;-.6501624;1.1318407;1.4087613;-.66827559;1.9389389;.68981534;1.204394;.090250619;.16449453;-1.8438417;-1.8008158;2.3298423;.57224035;3.575948;1.1534576;1.3678864;.8779884;3.4713066;.59910291;3.3678532;1.0440912;-1.0743681;-.66764563;4.2513709;2.2340858;1.3650788;2.987319;-1.3282561;1.4707241;3.1135676;-.75171262;.94996935;.61575717;.1500373;.11459774;2.7380993;.03045883;1.3806903;-.14559229;.31154293;1.5344982;.68320227;5.6318898;2.4018476;-.22596486;37.810921 +-.97439206;-1.1130081;-1.8041705;.43308461;1.0873317;-.74342018;-.37224251;-.4366641;-.3254441;.078610152;.21986438;1.3001316;-.2121485;-.65464193;-1.471979;-.76176411;.73537302;-.030490432;-1.1440743;-.83309245;-.097580336;.94310963;-1.17128;.53803557;1.5060695;-.95727903;-.64163327;-1.3840275;.80735242;.49690127;-1.9067081;-.81800479;.75822324;.077716932;1.1045711;-.37717307;.0056061829;-1.2662486;-.4987503;-.27365053;2.9959862;-1.0832949;.41198918;-.035959527;-.74015725;-.64559352;.3277429;.082910128;-.39163116;-.078237958;.34384465;.50349635;-3.0580585;5.2863965;3.8748317;2.5050735;1.7884394;1.4307951;-.35525095;1.502822;3.3741887;2.8232455;.63255924;1.3318292;-.19289786;2.7032275;4.5187006;4.097445;4.7848129;3.0081046;6.5388141;4.5711679;3.2879825;3.772697;3.3351395;3.7402568;1.9906311;2.5574932;4.1805902;4.3568215;1.0456214;-.79072046;-1.5482678;2.1457043;1.4435012;2.8459599;-1.9361603;7.3151612;-.022429975;-.71860766;-2.6447816;3.2170715;3.6638296;2.5075703;.33421326;3.8508966;3.2938869;2.2366357;-.45208985;1.988114;-2.3642032;.16361897;-4.7557511;1.3151097;-.08024244;-.62123722;-.59053659;1.2141219;-.086177252;3.3684769;1.9947224;-1.2663568;.6136201;.68195325;-2.4218292;-2.5228605;-1.3949772;.58285415;-1.5289032;-.28274727;.81971514;2.9524925;-.36310053;.0111305;-.099928036;-2.3246996;-1.4479736;-1.5905917;1.411437;1.1202964;-2.5162404;.29681981;.34804934;-1.2362165;.58123064;-.25352716;-.15955032;-.92543232;.2074163;.71897882;.98595864;.92579752;.11621851;.71053416;-.26999664;1.366323;.49480936;-.2655763;-.61878037;.27763826;.79369569;2.3931439;-2.0815325;3.3169804;3.175812;1.9948391;2.4190423;-.98662609;.56959379;1.1480087;2.027921;2.4580986;2.4479384;.64574766;-.43083906;2.6142368;3.2103624;1.651032;4.8414917;3.6130512;4.4577603;2.3433421;1.2658436;1.7458271;3.4637406;1.8031787;-.1106432;2.3963518;2.5137746;2.797668;1.5033164;-.5565961;-2.3721159;1.5162002;.12212254;3.0840743;-.16230844;6.0178781;1.2139556;.47708711;-2.5298657;1.9962631;3.3503411;-.56918216;-.99940616;2.8733423;2.2342935;1.187958;-1.3518052;1.5367789;49.134441 +.56563145;-.68246633;-.09237159;.52430654;-.42868659;-1.0051532;-.13653035;.15042435;.43568644;-1.3640898;-.38654965;-.54629344;-.084361777;-.44103697;1.0662229;.73625302;-2.5183544;2.0173712;.42210501;.96107531;1.9458232;-.049029063;.89015228;1.069599;-.68627161;-.095458761;-.0062925783;-1.2004418;-.66316056;.33439305;-.1268415;-1.4095547;.07804808;.11548854;-.82637572;1.9683281;1.3672833;-2.0845449;1.3595681;1.767525;-.25985259;-.64022785;.87512845;-.74959362;2.2667284;.58941954;-.59818256;-.52156615;-.71730781;1.7233266;3.8274395;1.6353124;1.1051267;1.8835214;1.9005337;3.7239571;1.0527474;3.8438909;5.9458232;1.0508901;3.4067326;1.9862361;2.0278003;.68355298;3.6984851;3.2339582;2.582685;1.7827288;5.0724707;5.7038879;2.1343837;2.8327372;1.8774018;1.6715647;1.672153;.76681823;.50446939;1.6619798;4.8321776;.45143074;4.3535113;3.6837468;-2.1954861;1.6029189;2.6005678;2.8515835;2.0911238;3.7434449;.11921696;-1.7927834;-.260923;2.1721268;1.5714228;.69658488;1.0658752;-.43978906;4.5577312;2.4181268;2.1580305;.6891309;-.15745066;-.48366234;1.0132121;-1.090943;-1.3334339;-.73966062;-.11192003;.2888836;-.18540815;-1.5197364;-.3092275;.11450785;.83609992;2.0669322;-1.2794471;.56920344;-1.6237749;.78275377;.99834162;1.4816556;2.330456;1.2753786;1.1568252;.22711581;-.63204771;-1.3299656;-1.0688682;-.38949245;-1.5951059;2.2786722;1.2644067;.22198814;.84694713;-1.3471694;-2.5880804;2.8979185;.85063845;-.99373376;1.7709763;1.0832207;1.2728864;-2.6343098;1.5678737;.25182077;1.2469475;.18039823;.07971146;.21554786;-.54894447;4.4264646;2.8983834;1.7168379;1.3791581;2.2723722;.37689403;1.411569;-.33871731;1.8741765;5.4411025;-.048197657;4.2893023;.65729231;1.9805382;.028993051;2.352237;1.8666576;3.0850682;1.4871277;3.2552891;4.0514946;.62377328;2.9011757;.79431421;2.943763;1.4805003;2.3304632;.83106571;.65605265;2.3420842;.3439689;2.6946578;2.5870619;-2.6905017;.27830592;1.9849554;3.0424471;1.0385373;2.5813081;.35899442;-.90076649;1.5118327;2.6984093;2.5994072;.11536007;1.7374408;.51342058;2.168494;1.2231742;.30492592;.44130713;51.659149 +.02862623;1.0536718;-.81452268;.62326699;.058023132;.14656502;-2.6469963;.031365026;.66665792;-.75921798;-.89768398;.7764073;-.53155762;.8965205;-2.0191274;-.15518072;.54507929;-.52666694;1.247452;-1.1660646;-1.5596825;-1.3834115;-2.137121;-.23310742;-.17581838;.39584762;-1.1549855;-.7588315;.46059999;.78700328;.21152699;-.21617965;.2559565;-.70977527;-.88015771;.1992711;1.0580825;-1.1893517;.55719942;-.08403229;.19504143;.76991433;-1.1609001;-1.1170347;2.6723473;1.1436884;.99840367;-.44150987;.44629624;-1.563807;-.10919195;2.8903162;1.198269;-.095413253;-2.4822581;-.62012213;-1.1404949;-.68486464;1.5165982;.5088712;.050104391;-.93239009;.76803976;2.1214464;3.4615357;2.2851303;5.084269;1.4663877;1.7775449;-.45276463;7.2495785;-.30514419;1.6503774;2.2722721;3.0005653;.80105144;6.3845763;1.3870103;3.1716416;4.7923155;3.1856411;.96744865;-1.9999455;-.3914116;1.5924042;-.39796633;1.7549832;3.5038877;5.6858349;2.1821151;2.0844309;.44441754;-1.2883302;2.1028216;2.9644239;1.541725;3.590585;2.5759211;1.8187069;2.9689577;.1803313;1.2398895;-.77593929;1.9741752;-.54483676;1.8918382;-.95128906;-1.2761129;-.12343959;.57006127;-.77679408;.76988167;-.090460598;.002555416;-1.3778917;-1.2002554;.018313425;.42499316;.12268453;-.40117267;1.0808157;.24765491;-1.7488275;-.86367625;1.5002298;-.78899205;-1.2298267;-.067024156;.28767344;-.16118272;-.82018965;1.3408893;1.4726689;.17865814;-1.3957936;-.71503073;-.16008936;-.19762528;.63446391;.53772271;2.1490109;-.80018914;-.82994258;.083103471;2.2694302;2.5048876;1.2468896;-.48053578;1.4396248;1.5829892;-1.3313233;2.9763172;1.2967991;-1.0686916;-2.1339564;-1.0230764;-1.6825252;.56001478;2.2157824;.75192082;-1.5028275;.22481318;.26437691;2.5209157;1.516782;-.18768685;3.6500747;1.0692075;2.7644427;-1.2647421;5.0252304;-1.0142375;2.3748932;.69214773;2.5763845;-.10463174;3.5484385;1.015143;2.8268938;2.5418034;1.5464348;1.3501285;-.96177334;-.10046742;3.1341548;-.6346398;3.8136015;2.050441;2.8800361;.80554968;1.5002434;-.4433479;-.83361369;2.9353645;5.1964493;1.471537;2.4159682;.4020966;.68374157;1.6002556;35.900566 +.26526317;.58331996;.18782774;.38578916;-.84364313;.082971744;.34720707;1.7098175;1.6076379;-.69758159;-.32803687;-1.17717;-1.0972811;-.90986896;.051814016;-1.0400132;-.82413131;-.23696595;-1.5651109;-1.2789235;.81621999;-.20312238;-1.5614179;-.03792474;.060146283;-.80560535;-.94713199;-.28071958;-.66445386;.20734727;-1.5383458;-1.3777986;-.25292489;-.70737731;-.41249081;1.3411863;-1.2573504;.18694955;-1.7995356;.56518447;-.24894129;-.19572577;-.55522794;1.8675261;-.90469402;-.56776863;-1.9002521;.2030973;.73854399;1.2903994;3.0525084;2.3764191;2.0844769;.37305883;2.940979;2.5752153;2.459058;3.6875985;.35746837;4.4949498;3.9620895;.16892605;3.0497415;5.1891541;5.6609282;5.1130962;3.2008069;4.5174804;4.2585254;4.1739831;2.5559957;.55007124;2.2357769;1.0966669;1.2778349;5.1744928;4.1493177;4.6233187;1.2846934;6.2309523;.82692987;1.6415613;1.2200693;.84915024;2.4590683;1.7354743;.1278951;2.7386577;1.4740576;.21721223;1.448813;2.421689;3.2193999;4.3738494;-.15388215;2.1304865;3.9030514;6.7663722;3.2883191;5.7994971;-.83740234;-2.11409;-.29600206;-.53934574;-1.415289;-.47154784;1.9442298;.68969125;1.1142057;-2.9427729;-.48227623;.25856084;-2.0387414;-1.8727081;.16602921;-1.3509384;-1.4857413;.66514236;.65524238;-.73522186;-.09784697;-.78107464;-1.4087095;.94298989;-1.6856292;-2.013871;-1.6657771;1.2640235;-.91369301;.15060583;-.93743038;.62962496;-.76689309;-.86163402;.71853495;1.1450652;-.66521263;.84887862;.39144176;.099214442;-.68931019;-.79086262;-.16063966;1.7991301;-1.8958675;-.89208317;-1.7229447;-1.2339656;.32547614;1.8359433;2.0813262;.41290092;2.9126847;.79057908;1.5280994;2.5607326;2.3134887;2.7717233;-.47918704;3.3591681;2.1998615;1.0518733;1.323753;3.5706837;2.4771354;4.7291274;1.002124;3.772543;2.5858715;3.0994523;1.7316561;1.1915305;.54701769;.43902048;-.033283576;4.2320638;1.533439;4.9644136;2.1821601;5.5714526;1.8055719;.35836035;.7598483;.072512425;3.2814319;-.39589036;1.2608237;1.3237933;2.4899592;.54745394;1.4516244;-.54646337;3.394316;2.3907857;.42473334;1.3574888;2.2404616;5.6334033;3.9133904;4.7145209;57.867558 +1.6577667;2.9444149;.17227234;-.35396045;-1.3933562;1.476516;.54939675;.96043688;-.60090828;.55078995;-.200142;-.92763364;1.2235075;-.73676854;.80243522;1.6457635;-.31697774;-.66480333;1.8830149;1.1803001;.55506152;.13585758;-.36523283;.13420048;-1.0922064;.67775077;.51056731;.26832175;-.33076686;.098579839;-.60827714;.6894986;-1.0535302;-.90890044;.9676342;-.4677673;-.16539237;-1.3897418;.98056167;-.14996764;-.49650002;-.70783448;.34632838;-.24362434;1.6543895;.26496506;-.8071233;-.86015636;.47828683;.40146354;2.5444465;.77106434;2.958895;4.0728297;4.6223531;2.1709704;1.3296226;4.4191661;1.024003;1.7472533;1.9037838;1.7176578;6.3045144;3.7305076;3.4726386;1.5052087;.64801031;2.8608143;1.3596665;.57697082;2.3193598;1.2478846;3.7843022;4.7546659;2.2246187;-.58204651;1.7435373;4.3214617;.014212028;1.1966619;4.2024069;-.64801782;1.5258665;.91763109;1.0915416;1.9048589;3.6382372;3.3056753;.9704845;1.1144333;4.0430579;2.0023599;1.883822;2.3551788;2.2820265;.13494858;1.6751049;.44326136;2.1586337;4.5525575;2.8806705;1.5663971;-.061059896;-.53355509;-2.2993674;-.37661678;-.60612369;.35803857;-1.4500563;.64863342;-.072012328;-1.3949707;.42232478;-2.9378922;-.53699136;.53337389;.63184804;-1.0307713;2.616626;-1.0451645;.9202795;.41766673;-.54774863;-1.2642897;-2.2002261;.35404;-.060134377;-.4515413;-1.0483674;-.32720998;-1.7102637;1.2891065;-.67230839;.92603332;1.2213725;.76574415;-1.2446642;-1.4989724;-.59748369;.89673293;.66751802;-.7461791;-1.7740335;.67807782;.3167617;1.53281;-1.3732067;-1.9987164;-.46448585;.20915514;.20948046;-1.8663098;2.4000502;3.4203486;3.8536761;3.5775592;-.65245903;3.3429999;.48117051;.57113075;1.6353598;-.46191394;4.5447335;2.2166598;.96552247;2.6487677;.28994176;1.9140123;1.4703544;1.8561757;2.0509295;1.8138528;1.8214272;3.044889;3.0728517;1.4776446;2.2905934;2.9527414;1.1556575;.41621307;2.2796612;-1.3402323;1.0462339;.022455346;1.5079377;1.6767657;1.5886604;3.4344492;.23944044;3.0894499;2.1636808;1.9850768;-.4142499;2.3499436;2.2150791;.40621671;1.5965748;.7927677;.99000406;3.4931254;54.791912 +1.1772019;-.72012705;1.4779801;-.3027415;1.3087358;-.55954611;.32656741;.66505998;-2.1993239;1.4619719;-1.5995481;-1.0381293;.25525263;.60388768;-1.509149;-.45942906;.080464296;-.2615701;.44594425;-.090323322;.79138923;2.1080863;.80170971;.024038937;1.0553975;1.3933897;1.1367712;1.1127763;.17457598;-1.0182208;.048524357;1.0456948;.53313082;.375397;-1.8063014;-.3834132;.7449339;1.9711965;-.1622768;.33784497;1.8124763;-.36569813;.99273431;.14731756;.98705351;.066680737;.3749359;-1.0950483;-1.01106;.63304496;1.4357349;.94143981;4.3825431;-.39159948;1.3573321;1.4233553;.38870978;3.9836047;3.8017771;2.9482791;1.7384496;3.4601545;3.256505;1.0320253;-.73414242;3.670361;4.014431;2.5011618;5.9347248;-2.8204594;1.587357;2.4153516;1.6234291;2.7563763;2.8944016;5.1876826;1.3975432;.89677387;-.48146558;2.3886287;1.9064339;-5.4285383;5.9164462;3.1772232;2.4470806;5.2327642;2.4691103;.87535095;6.2356935;-.02411388;-1.5301864;2.7476778;1.2600938;.88511223;.19245407;.32915017;-1.6265982;2.0765998;1.6456133;5.3486595;2.8489509;-.41342503;1.3310654;-.92518818;.44445398;-2.4604874;.50373703;.62612373;-2.138072;.17660196;-1.0740664;-.43897805;.030082867;1.9117383;-1.6340424;.66430223;1.0826299;-1.380398;.4757137;.15545161;-.38779262;2.1011539;1.692167;-.012241247;1.3296254;1.4519186;.54011488;.53677809;-1.6786382;1.370185;1.6341342;.171314;.64454401;-.081792593;-1.3544154;-.026211487;.10828305;.67854518;-1.6009904;-.82037336;1.1361874;.044840563;.42791146;.040397428;1.5734717;1.441296;-.63528955;-1.5937282;-.86444771;1.2693912;.90930748;1.5278291;2.4883227;-2.6056678;1.1691397;1.081121;-.15538935;1.5664198;2.7338624;1.4785832;1.8678257;.86183244;1.8204542;2.5764043;-.1774976;2.574728;1.7762269;1.2946357;3.2196348;-.62419105;.26284075;2.2992575;4.7060838;1.7286308;3.4120772;3.0511386;-.61528647;.89414895;-.11631946;.93170476;.72515875;-2.3840165;5.4522448;.92374688;1.1055442;4.2139034;2.6803079;.95973402;4.9259925;.95117205;.69756818;1.5080062;2.1220026;.40110385;.077751547;-.047813129;-.41139221;1.0971977;1.1962471;5.3976712;58.285507 +1.1116189;.32333067;.52719826;-.12101926;-.022405481;-.26398402;-.72768414;.21577194;-.43531695;.14642832;-1.4748204;-1.0584326;1.3837759;.36043808;1.6672207;1.8603532;1.4736747;-1.5609897;-.22156334;-.97224653;-2.8581202;-1.5389159;1.4465072;2.014962;-.016619453;-1.3847387;.6606276;.35981077;-.38054797;1.6308159;.28157786;-.59630382;.024497308;-.12857324;.97821271;-1.4788122;-.14000858;.35189226;-1.9427299;1.1155623;1.5946412;.016156251;-.44604123;.034592394;-.74015206;-.54626125;.058578305;2.0837142;.44985515;-.28068936;1.720145;1.9155821;1.3972254;1.1574125;1.8150918;2.3608437;.098137803;2.2594886;1.5736551;5.6784792;-1.2536619;1.6624866;-1.6573905;-1.9965255;2.0278242;.95400167;1.1905065;-1.0806787;7.1996565;-.31064188;2.9571989;1.9922781;5.2467928;2.9479365;5.4524302;.087169915;1.1967562;-1.6568362;.54465914;2.7927225;-2.3058662;.52468383;-.18686131;3.0990252;3.0244138;2.2841949;-.2238238;2.7308404;-.19515331;2.2681463;-1.8192672;4.0019393;1.9253737;2.3758602;1.2695013;4.1196785;2.2638102;1.5772011;1.5039588;2.1506109;-.68407482;-.69171435;-.4161655;-2.3955061;.46185151;-1.0866914;1.2971239;.50087774;.22578436;.60366118;.45749527;.88475138;2.0731819;.20103353;1.1430076;1.6332465;.90213114;.213515;2.1366277;-.20052974;-1.0564946;-.9341414;1.5355672;1.5773096;-.88724709;-.91214162;-.12703267;.87804002;-.56285524;.87886721;1.8267123;-.76786208;-.88807368;-.9286105;1.2228758;-1.027873;-.82435256;2.7761953;-2.0712178;1.9777991;2.2014484;-.8125056;-.4869509;.5232054;-1.7248656;-.73556119;2.0170989;.19423984;.30686793;.63868463;.040978167;-.058185294;.25884375;.81336778;.87925828;.8018592;-.95626265;1.1016309;.20273483;3.6981022;.085716799;2.1388133;-1.2260891;-1.0945644;1.2624243;1.8806533;.60801142;-.82698065;5.107307;.69684172;1.2350357;.71239257;4.1262555;2.6175141;6.4267254;.20813093;.33445054;-.48670864;-.0029395914;2.5235219;-2.6951606;-.04318665;-1.6420764;2.2802088;2.659754;2.0817645;.78116018;3.1047311;-.53207427;2.267493;-.74997538;3.7565141;1.3780501;1.4605346;.46090764;3.7576988;.61411697;-.035889696;2.0474448;1.425019;37.818192 +2.4874737;-.27171847;-.14769328;-.11949863;.17451595;-.80338663;-.44591406;-.29006499;-.69030553;.037009019;.98751456;-.64476418;.17512545;-.15231076;-.94835436;.76399201;-.038432512;1.0407043;.48420486;-1.3733368;-2.0847454;.023716662;-.10845456;.25028095;.94339103;.067451932;-.47441229;-.65223014;.73562837;.23588267;-1.1096307;-.75484973;.51789916;-.029935932;-1.90773;-.51920956;-1.5671383;.10400001;.81556296;-.43362641;1.1126997;.84861672;-.59442037;1.2229067;1.4015923;.050510596;-1.9215281;1.6959497;-1.8822221;2.5123043;3.1672368;2.0110798;1.7448517;3.5504801;-.47900417;1.3342773;-2.1958873;3.4241271;1.1634686;5.0544147;1.2579954;2.0703962;.6314674;3.0148602;1.688489;1.247541;3.7396684;2.980195;2.9450188;2.5192523;1.0088443;-1.0357337;2.4470248;2.3370752;2.9597166;4.8331614;6.0774121;.97929531;4.0951858;4.2434344;.9281562;-.04197181;3.9453094;1.5113441;2.0227513;2.5812979;-.54278666;7.7450509;.77936655;-1.9353403;3.7258277;.17246912;4.5607653;-.42895997;3.4416754;.4186025;.51099253;.36383146;3.3346453;2.3124511;1.4708077;-1.2411402;.93125147;1.6029021;.031852882;-.17161237;-.55477118;-.99008882;-.99136174;-.90641218;.77171588;-.1448223;1.0306344;-1.6791537;-.038542055;.04384369;-.55763322;.41594416;.86109602;-2.0798202;-2.8000984;1.6992857;-.16117398;1.9259738;1.3443789;-.40268186;-1.4002151;-1.6377317;-.45658389;1.3644259;.018320482;-.93145126;1.3205361;1.2106115;-.90575218;-.38388833;-1.2022717;.20448446;-.24146844;1.6546675;.23465522;.48093984;.22419381;-1.0234623;-.75648701;-1.6354685;-1.7306668;2.5076714;.11373409;.8947593;1.2725453;1.3954366;.46791112;2.1582215;1.1737003;.76491088;-1.5539291;3.1714723;-.49173743;2.5812049;-1.4931668;2.1358244;.80511671;2.0953748;2.6490705;3.0725408;.73851693;2.7104766;2.8194609;1.3765502;1.97805;-.5325371;1.7801346;1.2217056;3.3456333;5.4544854;4.678452;.76377892;1.6712402;3.5295713;.90358239;-.41818938;2.4251511;1.539432;3.127708;-.09782248;.079091303;5.4533863;.60210544;-1.3959085;3.0188613;.93874449;3.710494;-.21941718;2.0577745;-.42804495;2.4751568;.89362413;3.1027417;2.057375;52.14864 +.66627824;-.76945293;-.96067858;.074262224;1.3809657;-.384543;-1.9777043;-1.1456053;-.75620085;1.6524328;.77997619;.62083155;2.224108;.97961754;-1.0582316;-.28952664;-.15765673;-.28732818;-.84262562;.35685894;.92150015;-1.4741378;-.26949203;1.1453177;1.5996951;-1.0893884;-.35052878;-.60966504;-.34223998;.13995975;-.41027403;-1.3492414;-.20977011;-.73252922;-.10934517;.96701336;1.317428;.6118452;-.61861563;-.91689426;1.8454393;-.42538309;-.73785818;.61313599;-1.5918151;-1.5002954;-.8052991;.6599502;-.56246996;-2.0486567;2.8794336;2.5326746;1.8670419;.97285998;-.33494914;2.6995034;2.0702536;2.2571416;2.6787086;.83254409;1.885314;1.7282816;1.0216703;.97528952;4.880744;.46289608;3.1481104;2.0381029;3.2631075;2.4451795;2.5959339;2.6275723;2.6039131;.41555777;4.0155425;2.8623993;3.4006126;1.3635844;1.4801438;-2.7027991;3.3653703;-3.0725389;2.7379246;1.0791508;2.0077615;1.8333756;.95018381;3.2918355;4.8631706;1.6694998;3.6877618;1.1692903;1.2993627;3.470068;1.5591213;4.0662112;1.2663277;-.98066002;2.19698;2.3996119;.79040831;-2.7570283;-.65715086;.36261117;1.7500492;1.8091879;-.86006337;-1.6150587;-.25517923;1.3784264;-.60006714;2.9605362;1.4018205;1.4898999;1.1604449;1.3191762;-.34054545;.13762178;1.3767174;1.0863926;-.59450728;.85034859;-.71812689;-.38527718;.543284;-.70325243;-1.1151078;-1.5848006;-.13217871;-.64748651;1.1209711;-1.6350539;-.99022532;-.62133783;-.9369635;.51129436;.047235645;-.54527473;-.84930152;.95483613;2.3247685;1.6028548;-1.9099001;.042410545;-.56355321;-1.2056971;-1.9271783;-.41932705;-.49700651;-2.3909094;2.9728858;.84253985;1.5201439;1.2627813;-.52153081;1.987208;1.8211062;.73139459;.97732824;1.24463;2.0507057;.73216498;.40419528;1.0086318;2.9970059;1.7475793;2.5325594;1.4827178;2.0642757;1.0135627;2.2339902;1.7286258;.66252244;.67701125;2.8889847;2.6338685;2.3941579;1.8617784;1.1764289;-2.3954787;1.852613;-.86190784;1.3296069;.80955273;.33727196;1.4070784;.91170251;1.5675404;5.1127615;.69518101;1.9849538;1.6714741;-.49333197;2.7434032;.44054559;1.1074371;1.9653826;-1.3567708;.22499397;1.5108255;46.877853 +.78868586;-.15896198;1.4568006;.29805434;.52115959;.89228547;-.1946959;.24136567;-1.2308106;.77198529;-3.2498319;-.3057856;-.82679051;-.70930451;-1.6987028;-1.5753068;.055337567;1.9085163;-.59659487;.24652399;-.53726494;-.43304768;-.59396261;.56004369;.22928683;1.7914017;-1.3294353;.24703072;-1.5397404;-.44053015;-.34023964;-1.8587679;-.46408454;-1.2198;-1.5300251;-.16637015;1.4812126;.95593452;1.90557;-.42371595;-1.2244883;-.070312068;-.39040965;1.1470141;-.20807244;1.1601475;-2.0651426;-1.9255154;-.4591141;-1.2499326;.26371935;4.232976;-.39325988;3.9183805;3.7685964;2.1498976;-1.4543368;1.394004;5.0375605;5.0542421;-2.4875345;1.5456926;1.9068248;4.7955909;1.922639;.9281075;-.58839899;2.9702797;.89119107;-.60977447;2.5780146;3.6959217;-1.0543306;.50085282;1.9722335;3.8372016;5.2416444;-1.2930326;4.889905;2.8743408;2.1653008;-.54579961;-.74032879;1.7419555;2.1123354;3.1767085;3.9869382;1.998989;-.21975364;-.58719492;1.3195429;2.7187514;3.0414782;-1.4048945;3.147716;3.6099536;1.9794605;6.4233775;.81822973;-.063252084;-.074040972;-1.0698423;.62362617;2.4918239;1.1471034;-.43098369;-.48022532;.026567932;-2.3920612;1.2797492;-2.587847;1.0671099;-1.5416681;-.45344234;.7632255;-1.2890359;.060622532;.65469044;.23435141;-.91425425;.4345682;-.16489354;-1.6546661;.9190684;-1.7412808;.47971678;-1.3915323;1.1791865;1.2639239;-.42483002;.42714551;-2.514838;.56688285;-.99870563;.93472785;-2.2284548;1.1338173;1.0700775;2.9504876;.29299819;-.83387065;-.48594859;-2.1241841;-1.5555925;-1.5132821;1.1667593;-.52214712;-.86203301;1.4826322;-.11174473;1.1466272;4.6093841;.79522461;3.0607703;3.7436914;1.7085588;-.67314047;2.6799183;3.3151236;4.4270282;-1.6254654;1.1051141;1.8158791;1.7313321;.18216702;2.4009194;-.71425927;2.2065947;.21144444;-2.2021112;3.8503129;3.0656414;-1.1166657;1.3854994;-.0041518686;3.8304946;3.4644229;-1.2831696;2.5852337;1.4165688;1.8084486;-.95216519;-.12671307;.86079949;1.9941878;2.9864547;2.3368554;-.83890849;-.80302608;.51947922;1.4392914;1.9728513;3.4166782;.0077226372;.88027585;1.6227758;1.1207011;3.8635538;-.92321539;.13780628;42.132793 +.28184363;.66367531;-.1661765;.29174572;-1.2951789;.50934869;.35192257;.24213725;-1.5211697;.64510179;.09018793;-.15212624;-.13663206;.85593158;-.72036493;-1.8408778;-.61252332;.42306685;-.83989984;.61486655;-.45204154;-.78078842;-.29369482;-.65222436;-.75644284;-.2942929;.92780435;-.054672595;-1.7700294;-.23932478;-.13366577;.16847691;1.0722636;.03321192;.96214026;1.6821365;.40600005;-1.6411246;1.6203666;.47241083;-.074254647;-.92285007;1.1122283;-.088909961;-.13851157;-.50200045;.96998918;-.89831764;-1.5807091;.11212676;4.0110741;4.6521688;2.4355528;1.2713634;3.8238184;-2.3117957;5.8045673;.96830881;2.1109459;-2.481061;-2.4178069;-.16482538;.58004594;2.4366555;2.0008051;5.3139524;3.4083881;3.5649765;3.1749535;-.35622698;3.3893187;1.9152241;2.0713158;3.2987256;.36002809;.65255064;1.2036738;2.837496;1.4999577;2.6905024;3.1110671;2.5426669;4.2310295;3.1583209;-.84963828;1.4767966;5.7161913;.49615723;3.0593998;2.020782;-.25687736;1.6093488;3.5187199;2.0294497;4.8632474;2.9697833;2.0749578;2.9654965;2.2833807;1.5693868;1.4729992;3.1702831;-1.2719154;-1.408556;-.80261189;.20299813;2.5305114;-.51775384;-.8404749;-.25331092;1.3523067;-.72158307;.20995589;-.42536119;-1.5462252;.47105381;-.59424442;-1.4741517;-.013355266;.51319885;-.98594731;-.68096936;-2.2171092;.63194555;-1.3207216;1.6886865;-.011987268;.41550267;-2.4125881;.22642334;.30967003;-.69147784;.35634798;1.1871308;.17734499;1.2585616;.60065323;-.60401291;.99785572;.98274601;1.054509;-1.1792108;.28968066;.20588602;-.1732571;.53006423;2.0223253;-.27360865;-3.3213856;.56273061;2.9059911;4.2064815;2.802834;2.8009923;2.8676167;-.18244301;2.8785191;.01113409;1.775999;-2.9471323;-1.1218196;-.88116729;.39681506;3.0418463;-.28024793;4.0860195;2.68223;2.4638383;2.5635326;.52051228;1.79784;1.0219281;-.47278237;1.4415168;.91694331;-.51162469;2.2625458;1.9155358;1.6586221;1.5316669;1.3179303;1.7714645;.35163268;.57521027;-1.1160613;2.4809418;5.2238584;.92943215;1.2322077;.65005851;1.1902436;.15043588;2.9468048;1.0109489;5.3451872;.42050415;1.3086401;1.8063527;2.3530993;-.15139341;44.740036 +.28381896;-1.722078;.27688944;.45385417;.70112747;.86406231;.33705807;-.0623421;.0016302153;.59359795;-.23251089;.66303045;1.1172818;-.1383699;-1.7668917;.34681198;-.87783581;-.50104785;2.1745393;1.1506759;1.7286072;-.49211952;-.74966717;-.84624219;.14376155;-.33711901;-.51771647;.73427099;-.088317499;.5720225;.16088402;-.70080745;-1.7031497;-1.0761065;-.1028215;.14913246;-1.3990685;1.4532466;-1.6608033;.88563079;.15398775;.54460573;-.49899819;2.1230173;.31000954;-.50490373;-2.3318422;1.0847197;.068164311;-.39462155;-1.0420109;3.9652991;5.6552544;4.0454702;2.7583196;2.6872275;1.4680164;3.4650381;2.8735521;-1.3489957;1.6731253;-1.3278658;1.8676758;3.5391767;-.31766376;4.3073139;2.637146;1.909763;.1565972;1.9765607;6.2547212;-2.0831721;-2.1759191;2.6191192;-1.5361204;-.94401872;3.9413936;.45631814;-1.4184006;1.1926979;2.9163172;4.4734936;3.3239923;1.8301932;.73021311;1.0356212;1.6668584;1.5045133;4.1463785;2.2235286;-1.5523311;.3971695;-1.7636193;-3.9149168;.011371763;3.139698;1.7766421;2.5964653;3.0778115;.5249595;1.3062481;1.6799136;1.1048675;.60884404;.85026211;.36156777;-1.0315431;.12657857;1.1428638;-.25039622;-.61532342;1.3489075;.90793246;-1.8051631;-.56349951;-1.8266921;-.65083963;-.26362506;1.7734966;.25650796;2.3856959;.26832756;1.7254717;-.058701105;1.748331;-.84109926;-1.3822081;1.7165964;.33473992;.86584699;-.15000622;.61933571;-1.75278;-.66905195;1.2554154;.41499576;-1.4994217;.75610662;-1.2955123;.16704522;.0017918118;.64457697;-.99859178;1.6042001;-1.9906716;-1.0357363;-2.2781;-.42021185;-.79257393;.037401438;-2.326241;3.0892205;1.9846461;2.801079;2.9185474;1.8997681;1.8163785;1.604404;3.086026;-.13632356;.62479711;-.27756923;1.3081874;2.0728509;-1.0526372;3.1509697;2.519423;.63090795;-1.1404535;.85651749;5.5825987;-3.3618317;-1.6389327;2.6274562;-2.3343205;-.41066903;3.2221344;1.8439274;-1.5293969;2.9490137;1.6607115;2.787415;1.2400384;.90689164;-.19791017;.49122468;.83478129;-1.3108305;1.6491663;-.063812867;-1.6786472;-.29211029;-.44853136;-3.1861897;-.535294;2.7460461;.47354302;2.0902815;1.4194902;.60287809;39.148876 +-.91865152;.18309911;.98075241;-.047628168;-.30178264;.31355342;.26517954;-1.0223061;-.3422423;-1.7942448;1.7465615;-.35813513;.66928023;2.3343899;-.33911335;1.8447007;.087803207;.54293966;1.0547956;2.3777723;-.66176784;-.96091533;-.58157152;.50557965;-.10988468;1.8023992;-.62936378;.56253225;-1.0711414;.99203831;.72107524;-.61040634;-.044743184;1.056217;-.55500996;.3282938;.39663732;.35018989;1.7388757;-2.3978798;-.26408112;1.1009419;.96517658;.10167094;.23712718;-1.0892788;1.0066093;1.604937;1.1420717;.84982044;2.8549864;-.039052874;3.5568459;1.020512;1.8970745;4.2211766;.80169111;-.37093168;1.2336135;1.8315591;3.5854781;.9637621;.34803244;-1.0265012;2.367275;2.676446;3.3358343;1.1018877;2.0535009;3.7990971;.8409825;2.2879381;1.4501376;.75802165;2.4583955;4.0427833;2.3079162;.46191636;4.1228218;1.4723345;2.9887264;2.6166203;1.2990898;2.5406828;3.8952906;2.2622015;1.8275989;2.7080657;3.7315819;-.45206568;2.9615123;1.5453424;.54168004;-1.008263;1.2065724;-1.9317667;-.45247543;.75704288;3.6434114;3.5818141;-2.5838497;.24709649;3.2906461;-1.4919627;.016170634;1.0254561;-.82113636;-.70094252;-1.2763344;-2.5340855;1.4652587;-.97850889;.63018662;2.1494341;-.2196877;1.6842574;-.21522962;.60517168;1.4726648;2.8359044;.10153398;-2.7200284;.7494787;-.12212227;-.46234089;1.8534929;-1.1037617;-.31595051;-.4523651;1.5947558;-.0396626;1.5331438;-.69562286;.44279397;-.10353617;1.1772597;.22650273;.36898476;2.4786246;-1.4761071;-.63400555;-.83977461;-.060584497;-.36421999;.73237056;-1.3393548;2.1202533;1.0470387;.87495589;1.4167247;2.4346647;-1.562314;2.2689741;1.8384746;1.5069842;2.5492642;2.0612495;.13397318;2.6175919;-1.2402068;2.0048442;.60758346;.28457478;-.84446234;-.36447313;1.7298146;1.4570265;-.41391033;3.6972337;1.2547858;1.1226611;.42304772;.48625687;.20803784;2.8919857;2.4407363;.77646208;1.9267075;4.5507751;1.9887995;.85246849;1.7361341;.80238038;2.1071219;.80923808;2.9099033;1.2212759;1.320326;2.4489529;1.6595839;.4124414;2.0264246;-.71035194;.44675338;1.2672772;.59566545;.25139716;-.68701124;2.3105817;2.9459369;55.243427 +.064886093;1.788483;.7948429;.69369781;-1.5698959;-1.3683856;-1.4434184;-.53684181;.1308694;-.61125982;.69349706;-.059905015;.000063656174;1.2775352;-1.7015561;1.157528;1.2699312;-2.5428734;.023341108;-.93155217;1.354504;-1.7403581;-.83726776;-.85163814;-.16864461;.8551141;-.84838188;.89082265;.80852294;-.26617154;-.29099438;.74277449;1.2645824;-.81335002;1.6933966;-.95556724;.1426685;-.71268183;-.83371508;-.65616715;-1.1088196;1.4448314;-.38655102;1.5881081;-1.4439082;-1.3250946;.49088418;.36707592;-1.0848374;-2.3351731;1.4704999;1.8371439;3.7376134;2.1875141;.34553537;4.0232182;.94948685;1.0983814;3.4136038;-.38369706;1.5262282;-1.077041;1.7824347;2.0811484;2.1580355;1.7580305;3.7123659;3.2446892;-.050513215;-3.0084603;2.7126734;-.098034054;.13171346;1.3732448;4.5930152;.8916744;5.8983212;.30935344;.41216853;4.5061722;1.7346464;-1.1972842;2.0452087;2.9140582;-.10484177;1.9143472;1.2755865;2.7209253;.70318276;1.0200545;1.7348866;2.0923846;3.4080474;4.1660495;2.9301918;3.5594239;-.30805206;-.24615186;1.3299249;1.3953944;1.6931583;2.673924;.79863882;-.62882924;-2.3322506;-3.0178003;-.97643518;.20691547;.26874319;-.88363111;-.38190183;-.017632483;1.1712682;2.3025317;-1.3174171;1.4277685;-.22279832;-2.5620089;2.1694322;-.20058353;1.6965253;-.46874914;-.48545924;-1.7137187;-1.3953255;2.0713513;-.2744664;1.0798389;1.0052837;-1.2763672;-.30799481;-1.2862715;2.0354304;.22220734;.31515411;-1.2724491;-1.7929929;-1.507249;-.8949753;-.97683358;-1.1095412;1.8085235;.1041003;2.0464349;-1.0911605;-2.2913821;-.068798743;1.6191555;-.28065357;-1.0041213;1.190559;1.906195;2.2008748;-.011900255;.24990772;3.7198792;-.43601897;.40516698;2.0868456;.60150588;2.1535497;-2.4109411;1.777262;1.9705598;-.29101342;-.068551458;1.6397747;1.9748281;.2858097;-1.8546158;-.014410205;-.33551273;-.38545233;3.3659904;5.3181181;-.14195506;4.3969035;-1.1102803;-1.6145164;1.3845502;3.3836544;-1.6822488;-.17087823;1.1700184;-.3619127;1.103235;.72208029;2.1595719;-.73316967;2.1209674;1.9193306;1.9353262;1.1176139;2.9799519;2.8568048;3.5207388;.43977985;.24329473;.86335647;1.5327091;31.89061 +-.99055868;-1.8433444;-.083281726;-.13490465;-.27419603;1.3525447;-.96397918;1.3368758;-.52015573;-.73524809;-.5033778;.7261411;-1.0838383;-2.2097647;.17694844;-.11317489;.71183574;1.3615397;.33738431;1.7302439;1.5868288;-.50570703;.35731503;.002951249;-.96550214;-.28565964;-1.1175615;-.26506212;-.22340614;-1.0693121;.5754137;.67874867;1.2614546;.77205896;-.74474424;-.36156934;-1.0010078;-.3325758;-.041495971;-.24970815;1.2182428;1.4806067;-1.0569707;.91497004;.45713893;.56954151;-.12048939;1.6857797;-.39160642;.53481531;3.5789778;-3.9222281;6.2247534;1.6027985;.79618561;.57824343;.48523825;3.0321875;-.5354085;3.9272346;2.1837378;2.6772473;5.4942298;2.256933;.88975561;3.3890548;-1.581803;2.5522583;.11135504;.010220332;1.5527138;2.9442201;4.0151381;3.2881231;6.5519271;1.6375821;4.3046131;-2.5890589;.37478003;4.2542853;3.8820024;2.8302393;3.2105243;-1.7122245;-.53155798;-.77439493;1.2587843;.35152286;2.4425318;1.577965;1.6073276;1.3450826;1.3683254;3.0298266;.27200189;6.1894951;-.33005834;-.69562942;4.2131529;3.1883733;-.31206366;.010569522;-.56401306;-.33242813;.38586503;.50957203;-.65703374;1.4253327;.63609785;1.4692106;-.50203514;-.48220167;-1.7483976;-1.9690083;-.3111003;1.4653869;-1.5463119;1.219757;-.43899643;3.6897063;2.7409816;-.65046322;.88443613;-1.5302708;.37551156;.026345309;.25929636;.33789399;.03890289;-.27259964;.49088302;1.2543327;1.5354844;.62453777;-.1443651;.070825085;.21171211;-.70189118;-1.3335001;.29058;-.25916183;1.3414242;-1.918653;2.2201552;.39099336;.17067885;-1.0737685;1.5202761;-.72818822;1.1162525;2.3649063;-3.7806334;3.2800574;.27014044;.98003078;1.1000413;.70608205;1.7389544;-.39684302;3.5438924;2.5978839;2.7135224;4.1815305;1.2381604;.13001584;4.0064859;-1.332503;2.0120442;.10231648;.096771136;2.4184458;2.9424021;2.4913466;3.7564766;4.7516794;1.8461394;2.892736;-2.3937864;-1.5111648;2.5707219;3.0570502;2.8055391;1.372839;-.97410923;.36281663;1.1657594;-.22678909;.016087208;2.0417941;1.9988368;1.4716384;.84128034;1.1776041;2.2255678;.56340992;2.9948559;.80656886;1.7888703;1.7755421;3.6013875;50.755844 +-.49704152;.57191658;.065289393;-.34955975;.65545344;-.81025559;2.5480411;.69097072;.75241935;2.0930705;.39983556;1.1126004;.8745144;-.15180175;-.94844097;.53981447;.53497565;-.19825579;-2.2986114;1.4844948;-1.815506;.30183375;-.91918147;-.89706385;-.066276573;.36602393;-.37612829;-.43943754;.61988038;-.45094129;-1.8405409;-.924339;.0036622623;2.1202109;-.60760051;1.5367614;-.61580282;.60896152;-.35428604;-.30010846;.3524625;-1.2704647;.15583803;.017412709;-1.319411;.26622003;-.14568187;.78542173;.43837509;-.91888279;4.3428307;-.72034073;-.44729498;3.8196189;6.8486352;1.9345977;.45253211;-1.7382339;3.2642138;1.15353;3.4913595;4.5220242;1.4897716;-.050631598;.35680935;3.858686;-1.9295578;3.3039391;-.39220098;.75645143;2.9398973;2.3582451;.13950062;5.3754849;.3687802;5.2714963;1.754222;-1.1925064;4.7022624;1.9601607;2.7496736;2.2095034;.4506;1.3266484;1.9703637;1.4299449;9.6041908;1.1215668;1.2728262;.77668595;1.4704975;3.2564025;4.2413754;-.3124809;1.7353014;5.6238723;4.9098959;.20134905;2.8768535;-1.988916;.86976117;-.14703327;.72566384;-1.4559613;-1.0613747;-.82592052;.93951899;2.8206525;.47564483;1.1585101;1.0662866;-.14201836;.55739522;.58976704;.83390868;-.51912594;2.5342224;-.39982849;.62325144;1.2763305;-1.038388;1.0980488;-1.0482012;-.58987188;.084109567;.01522887;.53015143;-.44808909;1.7318125;.13911253;-.025558002;-.45683357;-1.5764208;1.8390588;.6911692;1.8256754;-.5423575;.61785328;-.47904399;-.59498698;-1.2327667;-.2116358;-1.0602996;-.44649586;.66993117;1.1184713;-.12446553;.44980872;.75839305;-.23645283;3.0838451;-1.9921732;-.094597831;2.6126258;5.3021626;.70009422;.75246078;-1.7417767;3.5238032;-.34410763;4.4181695;1.9063696;.20054467;1.1545472;1.0688848;3.3198693;-1.8106517;2.7486155;-.15578571;-.33931318;2.5726035;-.54865611;.10534806;4.3799477;.38503984;2.6223135;1.5957146;-.16050577;2.8393266;1.7487744;2.8829248;1.6432718;-1.0195808;1.2497095;2.0752745;1.7153742;6.9456577;1.0641111;.70676255;1.98743;1.3638372;1.3201686;4.9159064;.96892536;1.5315118;3.7571006;4.5602794;1.311529;.34215164;-2.4164407;48.483181 +1.1854941;.86919862;.43157282;1.8848915;-.20054868;-1.6418318;-.74114901;-.33489436;-.2044156;.52051675;.81861961;.064291164;-1.1653932;.30323926;-.3754392;1.5033842;-.10225908;-.25028571;.61557466;.18802664;.71042234;.017903231;1.1377801;-1.289493;-1.0268173;.46763611;.048712626;.28804895;.21809576;-2.0229287;-1.3342856;-1.6524324;-.65645039;.72199112;.75460982;-2.3157971;-1.010675;.21285643;.08477892;-.24011479;-1.4767482;.45928347;-.48288465;.11593714;-.27245039;1.5875939;-1.2968937;-.1583306;-1.2467705;-1.643912;2.504957;3.5751715;4.3644876;4.8090167;1.52502;1.8937919;3.8338163;2.1183629;1.5066073;4.6857448;2.5490208;3.8211894;1.4265503;3.2933822;6.3788805;-.34024426;4.2063417;.64713138;-.61281967;.63300496;2.708952;2.9544055;-.1683109;1.3069614;.88449252;-2.5216947;2.856904;-1.1429553;-.25311536;2.8356524;1.8300558;-.3383818;2.763288;3.7462547;2.7798638;2.6640759;5.4316831;-2.1690948;3.7774932;2.5951111;.19936825;2.1256609;2.4979286;1.3206669;.39320979;-2.5883875;1.6939256;.14967026;3.7466841;3.0257337;1.4985247;-.85538447;-.9104448;.36560446;-.27624336;-1.5899235;-1.2453475;-.52568674;.2565102;1.2609273;.34447318;-.7511878;-.082607619;.2258262;-1.5453342;-.44025496;.18836698;-.85291022;1.3990009;-.94270444;-1.5009036;-.74777323;.11728324;.15024815;-1.3277143;.99868542;.31348038;1.4253168;.099238612;-1.3818665;-1.5927494;.16243963;-1.3167236;.74013972;.29733205;-2.0286815;.22910662;.71131766;-.2991901;-.71968037;-1.6276516;1.1909566;1.6263685;.15120611;.53405774;2.3686969;-3.3109367;-.92354482;-.90654588;-1.3150997;1.7257427;1.349527;4.2094407;3.4385364;.56266701;2.0211546;4.5616698;1.4224116;2.0242677;3.6173489;.79624939;1.8196563;1.4445475;3.0663476;3.8097386;2.2447445;2.8310139;.78625238;-2.0186563;.45085266;1.7121522;2.1970329;.22499257;1.1438873;1.6066996;-3.6459134;1.6068163;-2.7306912;.03269406;1.83324;.32575092;1.1407747;-.32952467;2.8424218;3.1517766;3.0483921;3.8357201;-.29696479;3.8050261;.8828519;.71266431;1.2822641;2.6440935;-.32920504;-.43199208;-.67822623;2.8782892;.95859915;2.0876911;.43590984;46.391483 +-1.6187893;1.5224078;-.43946794;.13018192;.71865666;.83033413;.76489025;-.46343258;-.48633528;1.496859;-1.2824553;-.088904798;.79298693;-1.59426;-1.031643;.54127926;-.38350743;.74464846;-1.0740659;1.2338641;.77253515;-.15013376;-.28276405;.85859722;.21451776;-1.4283048;-.084207706;-1.1887099;.25458744;-.41084817;1.2973865;.68482924;.31559661;-1.5850945;2.8028219;1.6227086;-.26150492;.1988645;.92593527;1.1144664;1.9398248;-.28194857;-2.5623643;-1.291097;.6484189;.90862858;-.97137457;2.0023818;-1.285098;-1.3319209;-.1781605;1.2957073;2.3470194;1.1757301;.63708806;2.2588785;1.280068;4.9827623;1.2323358;2.6558757;-1.3562263;2.0810933;1.9521407;3.9029078;-.13447852;4.3587728;2.701129;.24827605;2.3709145;1.2693691;2.1635106;-1.1030231;3.4299397;-.36242506;1.5892203;2.4327738;-.018716667;2.7859154;1.6754546;4.370935;1.5995564;.94528514;3.1416264;.53012556;1.7636904;3.2975008;3.0798168;1.9731684;-.92910069;1.6163924;.29177794;2.5932891;-.60675746;.53252351;3.6525731;4.6157622;.90580726;2.5850759;-.62645745;2.665102;-1.3919615;1.1158695;.66183388;1.5559242;1.0029474;-.16760005;.43496495;-.24486184;-1.1623855;1.6609529;-1.2222391;-.012448308;.94682086;-1.2337759;-1.0965829;.10955938;-.51191682;1.2754027;.028126391;.15762343;-.87347031;-1.1892171;-.99249297;-.15025823;1.0162103;-.47412425;.74533814;-2.0546494;.8987329;-1.5024794;1.2927573;-.34747139;2.0018165;.098783717;1.7954813;.68840051;-.99702328;-1.2342788;-.87425339;1.9167554;.75088948;-1.4928526;-2.2680793;.14683011;.052959774;.21920758;.463981;2.4425001;.23228367;-.91819865;1.3608788;.55406022;1.4765159;-.87767547;.50869864;1.5023185;1.5844816;2.2611802;2.0481458;1.8802865;-1.0265789;2.112972;1.6021096;3.9932032;-.86109966;2.8954253;1.4307486;.79985869;.93497777;2.1927378;2.573179;-.082667448;1.799991;-.64652163;4.7546825;1.5639962;.46890855;2.5135789;-.10822553;3.2094815;2.439894;.69114578;2.5994997;1.7309636;1.2363739;3.4304912;1.7814087;.35628983;-2.1189177;1.1878424;-.8161878;2.8398209;-1.0208611;2.8435211;2.9142637;4.2457337;-.00097269454;-.2590377;-.32856917;1.5585117;47.882187 +1.1173255;-2.0568769;-.66549385;.73346674;-1.4702787;-.24461631;.51370972;.26915467;-.39397871;.60793221;-1.2158778;.18974477;-.98288077;-.87485981;-.91852409;1.0389068;.82000768;.2318781;.15296789;2.0064495;1.2844687;-1.2872047;.30936694;-1.0358878;-.20930742;.74373704;-1.5798717;1.1237395;-.26076812;.1521536;.13268217;-.36701384;-.18592019;-.044292808;.22390224;.94519061;.031941637;-.71920735;-.099683382;-1.4145756;.16665256;-.22297832;.046184339;-.068313427;.56074333;-.8233791;1.3316249;1.4166608;.0018514724;.64428633;1.8528128;1.660497;2.1775627;1.5022264;-2.0574512;5.0865211;.65949124;2.8732741;-.71623129;3.4023814;3.4509122;2.0159011;1.0974513;2.1702304;1.7485076;2.1901245;2.3134694;1.3068126;3.4328961;4.4694247;2.8447912;5.4763379;.7815426;.45565334;.77768379;1.1103549;2.3068051;.64110035;-.87941086;.25456914;2.9744983;3.5256915;2.813164;2.6630971;3.9902339;.33888316;1.9114579;1.7638098;4.2507315;-1.1906884;2.4528334;2.0339811;1.6800938;-.39179003;6.099308;1.363564;3.5341327;-1.0813539;1.9114447;.30464149;1.3716468;-2.5527525;.69849014;1.2160054;-3.4745092;-.95245814;.45724264;-.015333872;.5761987;.13897558;.028003925;-.039069295;-.92341006;-1.5042248;-1.0366803;1.2947419;1.8309244;1.5449004;-1.6590319;2.5487602;.70029223;.25575683;-.34058219;-1.8789498;-.64058334;.84465957;-2.328614;-.84540647;1.0458621;.061103795;-1.4681281;.012171326;-.17112087;-1.0752224;.47273833;-.31517708;-2.2371716;-.092264682;.05830764;-1.3350451;-.60791302;.4932394;-.95609331;-.013461135;.75614071;-1.7979298;1.6756737;.36812538;.33505976;1.9547442;2.6676674;3.0093691;2.6475675;1.0863402;-3.8422878;4.5482283;1.553599;2.0832913;-.65747315;2.0534248;3.4011641;2.7076421;.3753635;-.044184975;2.6956046;3.2266684;1.0179474;1.7855275;3.1428006;2.8910942;1.1553495;3.9396894;.0881759;-.23199631;.44850144;2.1607873;4.3989534;-.75415426;-1.5156444;1.7067391;2.9357858;2.791048;.47138399;1.135208;3.7404294;-.043623846;-.330731;.88312048;1.5324545;-.26530284;1.6250935;1.1729527;-.17648685;1.3730432;5.4343567;1.0832667;2.3619184;-2.6109354;.46653119;-.26257598;45.900566 +-.76243579;1.1482421;-1.369518;1.027094;1.6578065;.011802291;.93633693;-1.4326572;.51963198;-.083984442;-.95698035;1.1704748;1.7479999;1.2280031;.51498026;-.8088873;-.11474825;-.11078106;1.2155216;-.69676721;-.067486189;.15565832;1.2759087;.20972262;1.7339433;-.94985843;1.5350941;-.21984489;.64164227;2.4182408;.32710865;.36761588;-.83360779;-1.7841884;1.4238615;-.98810971;-1.4677081;2.8042824;-1.6650479;.44157633;.87395597;-.47908109;1.2437537;2.0136478;1.494163;.098622121;-.30198237;.51945806;.54105234;.49751341;2.4564743;5.2937155;1.4551677;.36098334;3.0804415;.78225774;-1.3491018;-.17129309;1.7928801;4.8241105;2.8554633;2.954282;3.2614691;4.9535832;3.6194835;-.11062108;7.5673337;-.78144777;.84846109;3.4320679;3.8857348;1.7758774;.71350521;3.2904141;3.0294566;2.4573791;1.1107816;.49458557;-.37211868;-.21635464;1.8493476;2.6801467;1.5155772;5.7332511;2.6370258;2.9635668;2.5990973;3.590461;2.5881209;2.781064;2.0525627;.77268201;5.416965;3.9472542;3.1817865;4.1746917;-2.1395578;.74838406;2.562433;2.695755;-1.0262361;.84437782;-1.6316692;.11241356;2.1653519;-1.1398116;-.73433745;-.44075587;.2131546;-.59203535;-1.0804939;1.7142391;1.8886588;-.90409374;-.089263029;.052751046;.077132769;-1.0523555;.15819779;-1.7011082;-.45201355;-.22034259;.70656013;1.9165359;2.5123172;-.12663065;.27703092;-.12750863;2.3181424;2.1242857;1.1779518;1.3234088;1.2910252;-2.8092616;2.485605;-1.2807266;-1.0958101;-.10899995;-1.1941756;1.5322844;.30095088;-.80358458;1.0841441;3.2512043;.77433097;5.4732359e-06;.38560116;-.4519538;.89430726;.50428295;-.28597322;3.1296954;2.9111392;-.44531208;1.9823899;1.8114046;-3.4088733;-.17198367;1.8790929;3.420316;.32674578;2.1880724;1.5886272;2.3293242;2.2789953;1.5511634;5.7362237;-1.0913012;1.9396892;3.1870058;1.7914829;-.83548325;.057763744;1.5609812;2.1630111;3.6690807;1.4496108;.65398669;-.33268753;-1.2836169;1.4648787;2.1029422;1.8552961;5.1362557;1.2813584;2.5391521;.95895535;4.5660391;.57548553;2.7191329;.81876516;-.41218707;3.5981517;1.0734894;2.5601618;2.5716116;-1.7819524;.22232991;2.5481362;2.1519854;70.881294 +.6143316;.14952219;2.0438201;1.3518889;-.53194642;-.30056095;-.55721056;.20929386;-.011105191;-.43303326;-1.1622968;.026915532;-.4670777;.87447345;.68414408;.55855012;-.42540094;-.93886203;1.4144783;-.71853423;-.47476187;.25580904;-3.1149042;-.88419974;.37168208;.72700959;.040798955;1.0198163;.84902161;.22768377;-.090751939;-.10615275;.2578941;-.12315544;-1.7919571;.07856185;1.2287076;1.1910589;-1.3095291;-.73926497;2.403779;.26096934;.17397361;.5633539;1.6281253;-.32726049;.76943648;-.26986852;-1.1197232;.6990301;-.92309898;2.6163993;4.4173007;3.601193;4.6526246;.93385398;-.75078011;2.6076956;-1.0252672;1.1729039;-.26807708;5.2632484;1.3066447;-1.4040756;.9034422;2.3993611;3.8034639;3.8273947;3.5020778;2.5279236;-1.431949;3.434845;2.2520919;1.3148117;.72313505;4.7370586;-.39893317;-.3578158;1.6908649;1.7686989;2.9032183;3.7699845;.88529253;-.34018409;1.523403;1.7908268;2.1066399;.34248832;1.9128681;3.4886441;3.5295229;1.1286834;1.0895181;2.6460357;-.44383714;2.5900738;-1.34251;2.2963965;-.053691015;1.7195337;1.3901464;-.1922581;1.137804;1.1509558;-1.2933208;-1.3469455;.20482308;-1.6634908;-.47289872;1.2179426;-1.3541573;.28239122;.12657228;.47169814;1.4844832;.83008456;-1.4694641;1.7015475;.47533774;-2.4548795;-1.4431973;-.76689404;-2.7718267;-.82270581;.82466429;1.4719337;-1.4200705;-.89466596;1.1777375;.90700644;-.76502043;1.0749788;1.6221775;.76822412;-2.8099515;-.49811131;1.0479962;.28866518;-.76171285;-1.9628891;1.9664799;1.7611778;-.031862147;.35886312;.55114555;-.23822482;1.3089957;-.79551965;.12647523;1.1671305;-.61371326;3.1793156;2.2701492;2.3120654;2.3641591;1.1391531;-.48789379;1.846372;-1.2564261;.79252446;.9973436;2.5077229;1.1411201;-2.4690578;2.2142091;1.7110909;2.7477951;1.6633499;2.1653814;.22387835;-.55484408;1.7600507;2.2998548;-1.1980776;-1.5854549;4.3247328;.96976984;1.499617;-.15983248;2.8470507;1.9749579;2.3056905;1.3570101;-2.0591886;-.72761005;2.1843657;1.3574367;-.1506629;.51104516;2.0901077;2.124094;.0071862256;1.3573091;2.9646118;.39828387;2.2557905;.039792255;2.9787855;1.3859177;-.70736754;43.948509 +1.2164315;-.25483146;.17644314;.89038634;-1.4881667;1.3701007;-.85012186;.68707025;1.3072848;.49581903;-.28124443;-.59525192;-.31784445;.28662184;-.55098683;1.1626936;.3703433;2.2164521;.64221942;-.65505266;-1.9243112;.96641308;.16799313;1.3883221;-.35851827;-1.7167127;2.0121057;.56837285;.35340288;-.54039854;1.8280587;-1.7212013;-.48171166;-1.5900705;.60280257;-.51103246;-.12709856;-1.5566729;1.5350299;-.54217833;1.1197737;.77220601;-.50733876;.6641593;.91514254;1.0620812;-.99596316;.55003077;-1.6828512;1.3390675;1.5616634;.078805692;1.2640494;.16948132;1.1638581;1.6003209;3.7371752;1.8057256;.84455782;2.0739326;3.3710566;-.30682698;3.2443774;1.3190542;2.5910275;1.7842129;2.9465859;2.6112642;3.2488978;5.4128046;2.2188904;-1.8621196;.67254263;-3.3420684;3.1529152;-.7551828;1.3922373;.49735832;-.69965243;4.2373595;2.6615903;-1.4824113;2.6397853;6.3358479;-2.4698181;-1.0353119;.36627755;1.7893336;3.9865518;1.0044473;.58563161;6.0544853;1.462396;.49887469;.65593159;2.9690537;1.4614381;.99972087;-.61199766;1.4441291;1.0992544;-.046390604;-.746696;-.12532139;-1.497965;2.2080564;-.17307413;2.2432213;1.1415534;1.4831046;-1.9364533;-.12666221;-.30307207;1.7575326;1.0164356;2.1911993;-.65012962;1.0934896;1.004213;-1.7798041;1.0229274;.45249668;-.22303535;.3394506;-.86952066;-1.479359;.23543726;-.39794379;.99788624;.80360502;1.4621137;.089909784;-.6658861;-2.7957408;1.910507;-.26429209;.056719691;-.75847208;-.78208083;.90774566;.20222698;.14757913;-.30118117;3.1693232;1.6514115;.79705667;-1.2041745;1.1837051;.58019483;.94065279;-.0024453579;1.3928005;.003669715;-.53645778;2.1825488;.77887535;2.73508;1.1042985;1.5163603;-.25935072;2.1021583;-.88337171;.92955625;1.0316833;3.2454035;1.2961286;.81062371;2.9057806;3.1039586;3.9795673;.76014727;.43952233;-.66574335;-1.672856;3.7503066;-2.1393917;-1.2033281;.86389232;.32195738;2.4868391;2.7816906;-.5176065;1.2532119;4.3481069;-.20731717;-1.2938355;-.23590039;.56783563;3.395061;1.4347924;-.79032272;4.5340881;1.7187662;.39460561;-1.3971293;1.0882208;1.1157409;.71089244;-.63220149;-.22658455;40.212936 +.46955299;.42385471;.78147733;-.25856918;.43627095;-.9319132;-1.7408408;-.5286991;-.31454754;-1.1959906;1.5000417;-1.2569904;1.4636627;1.2869344;1.7490957;-.034071378;1.2582173;.22576599;-.64667189;.46235853;.58240861;.32165962;1.5846361;-.85269332;.36730942;-.35131845;-.016022529;.15093175;-.81661576;1.3687149;.56414622;-.81631023;-1.1519918;.43539375;-.67637926;-.43559855;-.23259614;-.70392895;-1.0376277;-2.7560086;-1.0356722;-.55228513;1.7395202;.028276827;-.8989138;-.050425723;.77961791;-.27558619;1.1735433;-.10952915;3.7344637;.89755362;5.1830006;3.0144143;2.2873492;2.070327;-.10503594;3.9674151;2.7374291;2.1214685;2.5596132;2.6021502;3.1669571;7.4712515;3.2814291;2.6772342;1.9251624;.48983344;2.2618732;2.1602859;-.015952211;2.533963;-1.9412982;-2.3653004;4.0327063;.89441407;.14260463;-.39955202;2.8621459;2.0757515;3.2080278;1.3604045;6.7405562;1.0155519;1.6252147;1.9702243;2.1754882;.8945595;3.5140259;4.0493364;3.9556093;4.7436228;-1.221542;6.7912183;2.4662387;2.3631079;1.7698653;1.5066406;-.57910633;1.8801374;-.29804912;.21834339;-1.2761209;.48124346;.08048217;-.2483215;-1.3459163;.54707056;-.60159904;.62856883;1.0625669;.21646799;-.15958369;-.98284644;1.250965;.21882412;2.503267;1.078355;.31960979;1.0780735;-1.4292531;.01016146;1.4172255;-1.2646198;.060722236;.18617873;-.16856323;1.0689365;-1.2234956;1.6903809;.96246779;.94217026;-.7585789;-1.370607;-2.3209622;-1.1881508;.078314245;.32719675;-1.2262193;-1.2269475;-.52756345;-1.0707402;1.3358374;1.6806192;.15515144;.564412;-.76182693;.37248692;1.5746206;-1.7497742;4.1084156;-1.5800848;3.8726571;2.1440938;.65443021;2.889935;.63970697;2.2568276;1.1803483;2.5609908;1.8897437;2.9487586;2.845437;5.7533116;1.2477318;3.8122978;.89648318;-.2921187;2.0764642;.43419132;.95979613;1.8978683;-2.6429718;-1.0353618;2.2702432;.75605893;-.93915528;-.034231525;1.5889943;.39028341;2.6940181;1.5718482;5.817843;1.3090153;.23672524;2.4988225;2.536387;1.6532657;2.9843318;3.2898884;3.1440234;2.7286017;-1.2751596;5.5286398;3.1201248;2.2442608;2.059586;2.9912646;.61217862;-.038076982;53.87888 +.69663578;.31568149;2.8646865;.96204329;.63042343;.98772484;.26822826;-.18852238;-.1857255;1.1510708;-.68766063;1.1157748;-.48721114;-.39076898;1.9376746;-1.1291337;-.083631732;1.0497673;.31410995;-.66856569;-.119996;.63345927;-.75785458;-.59249479;-1.6044654;.43316403;2.069952;-1.030616;.30328351;.4819808;1.1800047;-.85778397;.35159975;1.4128715;-.77082318;-1.31164;.17389372;-.54040241;.46876207;-.048966497;-1.0984085;.52627778;-.37567297;-.69874376;1.0649543;-2.0399756;-.5290699;-1.3932166;.151135;-1.5732996;1.4734172;5.2510347;1.1505648;1.7781279;2.566644;2.7837207;3.422509;-.20195614;.16009684;3.0449748;3.9078908;1.9183416;2.1477053;-.4735857;-1.6314471;2.180125;2.7104132;3.0982258;2.429213;-.36765251;3.0106642;4.0290809;-1.0401564;3.6663556;.51611078;-1.127697;3.4524441;4.5182924;3.664021;-2.2105775;1.487252;.17882723;2.4694438;.40624163;-.31127337;2.5557189;.97760004;2.6706996;.51886553;5.959363;.7679069;-.75253403;3.9310632;.1940241;.055925429;1.9367076;2.3043749;2.3181114;3.2635086;2.4124186;-.95570922;-1.243614;.47656125;.14622524;-1.0501993;2.3311093;.32387212;-1.6752096;.69605237;-.67325926;-.20702565;.84752238;-1.0280497;.042866707;-.061001107;-.65638471;.15750422;2.7818992;.552396;.52993602;.60511392;.26781377;-.14261392;1.3087327;-1.4543332;.62676078;2.8167832;-.30811968;.071544513;-.064097352;2.0000527;-1.3133929;-.80542386;.060537253;-.016074985;-2.0192564;.55547023;.83580816;-.46337628;-.61300665;.11256409;2.2450981;1.5484464;.5550862;1.376328;-1.4071772;.98965544;1.0363824;-2.2146502;-.91113353;2.4317985;3.6321566;.67545551;.95465469;1.3138478;1.6904603;2.2057002;-.84579533;.7669695;.87208515;4.0675201;2.2927139;2.3342285;1.6707981;-2.0056548;2.8995609;1.8495557;1.7214899;2.6856778;-.2802614;-.34083188;3.0387287;-1.7810657;3.0378482;-2.1011705;.43916878;2.6270399;4.8591194;2.6245975;-2.436286;1.4459499;-.86838984;1.4868028;-.27936482;-1.1024275;2.2648435;.78880054;1.6496315;.7230103;4.0325947;-.62686318;.0014464422;1.7192022;-.62310082;.16976264;-.079388276;3.199837;1.5432326;3.4319854;.86082733;47.997387 +-1.3538427;.9379636;.29974228;-2.2039108;1.0647739;-.74149048;1.387682;.080553807;.37764487;-.2848427;.72620368;-.39165965;-.63874465;-.21354668;.3533783;.10747188;.69728714;-.23329505;.66053653;-.35526136;-.64471358;1.0978199;1.0541468;.27762792;-1.9132593;.26622397;-2.0583861;.67877841;-.11759882;2.2139127;-1.4749618;.31164211;-.76054353;.46881315;.9145931;-1.5055912;1.1483444;.41435528;-.77846372;-1.809482;.020940023;-2.5085456;.2470987;.38652828;-1.8503999;-.060931921;-.11696353;.82209128;-.69710606;-1.3159993;2.206995;1.3603686;3.704627;1.2178372;-.48876625;-.50653493;2.6964543;-1.5014328;-.69737715;1.7689028;4.2994499;3.4732175;5.5596051;2.6354449;3.642354;6.2004328;3.3130033;1.5352584;-3.1847048;-.20217124;1.9831028;3.3770297;.57031101;1.2945148;2.3682706;4.2559319;2.2341809;1.0472487;-2.2581787;2.7382569;3.0384123;3.3275003;.69850814;2.9972703;-.78212929;2.5197959;.43187153;1.4134289;-.8126002;2.6352918;3.8896117;4.4258699;2.0846329;1.3474617;4.1944909;-.49687058;2.4934111;1.1254876;1.993816;4.5261407;-1.3376182;.61885005;.68569154;-.82982457;-1.3274355;-1.8767641;1.4330664;-.43578196;1.2003355;.19212012;-.69677818;-.54853481;-1.4212918;-.97942102;2.4592373;1.1720674;-.081302576;-1.3045182;1.8796756;-.7252627;-.77479714;1.5739806;.56890047;.19088797;-.62165111;-1.0958319;-1.6428064;.70230675;1.0765554;2.9322941;-1.511627;1.3419744;-.5060938;-.18724136;.59362888;-.5751074;-.22871827;-.81103438;-.95790201;-1.3644522;-.76905555;-2.2883627;1.2494811;.65520668;-.64120638;.23640373;.25701556;2.1271257;.45705268;-1.5500102;1.9710524;.1748365;.99507576;-.12270633;-.70854014;-2.3292637;3.3595471;.83452499;-.050818145;2.201616;2.8913698;2.588259;4.4708247;1.6744405;3.1015806;4.2778239;3.5915666;.29969296;-2.4763486;-.024659967;3.3140259;1.1753817;.30069286;1.1975484;2.1114321;.58556616;.96838939;1.3198833;-.83020097;2.7932477;2.7482355;.83220059;.1967434;2.0140009;-1.728395;2.0044968;-.39655232;.028825458;-.13160124;2.0101857;4.622745;3.0576024;1.3038183;-.41423023;2.6740775;-.64252734;.55163372;.86573523;2.6643448;3.064254;42.890476 +1.5159509;.15992357;.41640711;-.89546889;.78702557;1.1513675;-.55218148;-1.5547457;.4358764;-.076508269;-.0054648914;1.0044765;-.62715739;-.57716215;-.13524213;1.3115376;-1.0401336;.0064396346;-1.4499053;.54200453;-1.4236269;.4933351;.90565288;.48204637;-.97673345;-1.1294395;-.5144558;-.08178398;.23295285;-.5561952;1.2009413;.201225;.12798728;2.2244034;.97172838;-.77318782;-.65782177;-.15315087;.36743966;-.73021942;1.0042984;-.080302171;2.9420381;.76873136;1.1276981;-.027176104;-1.1049178;-.61938047;.087379441;1.36847;3.2941604;4.435328;1.4666665;2.291235;2.3892713;2.0210593;.33855465;3.7566512;3.2316415;4.8362646;3.4788814;4.5495415;2.0332184;.15804249;.51342982;2.2755964;.48997375;.3891494;.91377276;3.6479435;-1.0947988;-1.3072293;-.73928761;3.4002099;-.094848678;1.6413494;2.2815652;.24320248;1.438717;.38127246;3.5896885;.26386747;-.083568521;5.0078702;1.140716;1.2296611;2.4038494;.85865837;2.3234992;-.034925479;2.5009634;6.4390321;4.5361891;2.5321362;1.6665201;2.229718;5.1159301;2.1383827;3.3944907;3.62815;3.7344322;.26135734;.70907527;-.99923164;.98922133;.65848702;-.12221065;-1.2529345;1.4005967;.71379328;.79518843;-.62070101;-.028035;-.26895475;.67349124;.77807558;-.61606938;.24757388;-.89937049;.69531554;-1.3292626;.96439213;-1.582986;-1.6773542;-2.2467983;-2.0664074;-1.2886343;-1.058679;2.2100413;.34132031;.096558526;.43619874;-.22045471;2.1716862;.77321416;-1.49966;.89105982;-1.0338625;.17800657;.36339474;.97154802;1.2063321;.38706657;.93678778;.0032311233;-.46860281;.10329507;.48875692;.91285664;-.27773568;3.0556118;3.4321907;1.8271005;1.0243092;1.3711123;2.7380028;.22791642;2.511627;2.5457387;2.3280265;1.7175237;2.0470946;1.933225;.22967175;.7383604;1.9825126;1.0777856;.77194697;.087024257;3.8837428;-.6860159;-1.7933496;-.29482216;3.0876532;1.1993402;.307953;.9096235;1.2873476;1.8455368;1.0625423;1.2727953;2.2647977;-.42744815;2.4485421;.060429566;1.1416661;1.8783399;.83026397;1.3754096;1.0935801;1.7079527;3.2887261;2.7826152;2.2631276;1.97679;.54230404;4.6719685;.34945005;2.5623767;2.9680688;56.951176 +-.29169935;-.12312748;-.99671865;-.62035567;.62840539;-.70632046;1.5026785;1.4429299;.43397975;-.13386829;.74143374;-.85641283;-.63031292;1.1985906;.35466897;.07123974;1.8049966;.062576428;.65270966;.52434665;-.69887602;-1.9402946;-.21650741;.26413959;.076793171;-.39016783;-.43507248;.46272147;-2.5322416;1.0636522;-.70954776;1.2792822;-2.3761826;.023871673;.083806813;-.67726451;.19731219;-.20041424;1.128808;.37286291;-.069657311;.51539576;.84729666;-1.0082767;-.28863361;.30211252;-.078416638;1.5362133;.73510671;1.4029835;1.4043226;3.0562084;-.26409739;1.4350638;2.3502433;-.48539156;-.051368177;1.0302558;2.0641747;2.2313325;3.0090153;.91044492;.52682966;-2.6256187;2.9000127;1.8481376;1.1084902;1.5422304;-.84728217;-2.6445634;5.5026083;3.3320262;5.2637982;4.3461938;.50869775;3.8058634;4.5188322;6.0699725;2.5684297;5.3829951;3.4594054;3.4267719;3.0103803;2.925698;1.3937349;2.0242383;1.6709812;4.5035663;.049538482;-.10628512;1.0570886;4.1707282;-1.1509098;1.1829473;-.25305873;2.7319365;2.4958985;1.8639268;.043587677;3.8347883;.21220656;1.7857338;.12290896;.26172549;1.3829197;1.3101977;.335253;.30173424;-.42210051;1.5136876;.78836101;.78671449;.038286094;1.0911632;.52726668;.90149331;1.2221377;-.045217261;.17577694;-.58399719;-.5779233;-.26447764;2.5280659;.32306749;-.37417245;-.65538931;.37555465;.47034764;-2.7841187;1.4895496;.44128364;.92017007;-1.5296315;.46616364;-.94107741;-.48858333;.004648251;-.79684716;.92156219;-.20009166;-.4017033;1.1509583;-.020683881;-.48849002;1.118796;-.61968511;.86766744;2.7043231;-.45296738;3.3387332;2.1226916;2.3348253;.63569105;1.4142277;1.2188045;1.746829;.14013381;.7049461;2.3441148;.69859087;3.4523654;-1.8761259;-.17523736;-2.0185452;2.1600275;1.5933739;2.1925445;1.3862174;.58486539;-1.252405;2.5588033;1.0566019;4.1285062;3.6428785;.27836534;4.6429605;1.9723524;4.0710869;2.7700591;4.126965;1.6880364;.85613513;1.421363;2.7066989;.63023436;2.1612644;1.355076;4.3917303;-.58619201;1.4148269;1.0601288;2.8600204;-1.2547761;1.2363688;-.923307;.46660587;4.9004006;.21166234;-2.0153379;3.3694315;47.172016 +.38517645;.67971951;-1.1486199;-.82010728;2.6359675;.29091269;.63021266;-.81543547;.37924489;-1.0588851;-.28259012;.65597528;-.56143266;.34329861;.10255913;-.29169869;-1.2502232;1.4256442;-.50220156;-.038816866;-.42245236;1.3670632;.64156687;1.5372355;-.32900423;-.49146518;-.31434229;.94958699;.8004446;-.26178831;-1.06101;1.1288096;-.73697269;1.9301192;-1.0949798;.76281822;.58055443;.050577119;.60228968;.11053907;.050805643;.49113265;1.0829571;.92566711;.47204936;-.696693;-.050906505;-.11717099;-.95151615;.81925184;.55263537;.63267881;4.3325591;-.23052911;4.0935807;2.3766942;5.8105397;-.067564003;-1.3334255;2.0969069;.17651415;3.1739604;4.4415092;3.1707578;1.8147105;3.5615871;1.1974102;4.7647343;6.435246;1.8717911;-.061187774;-2.3823612;-.1662091;3.3064618;1.5123777;-.52908784;4.9778476;-1.0441527;3.1559272;3.0212765;2.1443071;2.4228988;2.3971968;-.49642256;.40709424;-.94920075;3.5088146;5.1617517;1.8712399;2.3074958;.22261602;1.1420314;1.7377669;-.0078978268;-.16119236;-1.4731476;1.9427983;2.0445948;6.4393892;2.4520645;.26492345;-.32772559;-1.502501;-1.559595;4.2601581;-.24597202;.37051544;.043483071;1.4584588;-2.259872;.80691946;1.1900748;-1.4013741;1.1517284;1.7543824;-1.7947532;-.36318728;-1.1577902;1.4093145;-.53661764;1.0212405;.66053313;.71189123;2.0933464;-.093702614;-.37828127;-.69945377;.070636004;.45022538;.97114831;.63148588;1.8991479;-1.9471477;2.0489004;-2.009711;-.16052376;-2.1204867;.47463635;-.050676551;.13559344;.15422371;-.45616859;-.33185235;-.84305102;.37938496;-1.5411437;-.93140745;.74787748;-2.0948489;-.8902514;2.498688;.7762565;3.2420866;-.84905034;2.1762502;1.1360469;3.2126989;-.63796496;-1.6441655;-.31874985;-.77158117;2.0731115;1.9381102;4.3309608;1.3283684;2.4450479;-1.1656145;2.3429337;5.0271931;1.1342428;1.4646202;-2.6259787;-.37716207;.29841271;.62389523;-.86932153;3.1755388;-.53653687;4.2940688;3.8222637;2.5803196;.933182;1.5207119;-.24498005;.44862393;.56743473;3.7023892;4.2349062;.69296181;.67872947;-.35295528;-.96632755;2.2357311;.86154854;1.5310673;-.1623228;.75282371;.79487681;2.7905078;.21814823;54.910984 +-1.1283412;-.22639319;1.7724718;.93317199;1.4091337;.78893489;-.041922245;-.63759977;-.67908102;.81884301;-.78183591;-.13796735;1.0228025;-.077392884;.067616038;.91472393;.56988472;-1.6805521;-.7903322;.56849039;-.40149179;-.008437003;1.1261472;1.3654546;-.47708654;.40066651;.30202004;-.59722257;-.68130434;1.2972803;1.3992033;-.94773418;-.72739029;-.15026049;-1.3350037;.28364033;1.8241162;.30628851;-.35845977;.080769017;1.368415;-1.7467569;.53564256;-.90637398;-1.7383246;-.3834427;1.0191346;-.76569885;1.1404798;1.4703881;.9797641;2.9584713;-.094957247;-.4807466;1.240007;-2.1405268;.27909452;-.19167717;-.52350885;5.4900198;.93786383;3.2707181;3.1042969;3.5551908;2.520803;.034797151;.23174502;6.6088476;-.65069336;-1.7203479;1.01446;3.0320563;-.79629499;.58333683;1.0439186;3.786087;1.1454582;-.16716576;6.8462086;3.2809365;5.4517193;1.8032703;-.15552299;-.94305885;3.5172212;-.61557418;-1.319824;.38730699;5.0764313;-2.5227394;1.9890944;3.7799604;5.9546285;1.6542836;2.8604276;.66617823;-.87499404;-.27173907;2.7489419;.6446104;-1.0440979;-.82528526;2.5880053;.4189581;1.5501571;-.63146651;.69645298;-.04922276;-1.0479034;.64501005;-.62859035;.50448364;.12971;.39436388;-.97766972;.75378168;-.016962986;-2.2137723;1.1662992;.078452058;-1.5592237;-.22063121;-.48216653;.70474035;-.95773721;.56214476;-2.2366822;1.10765;1.3275853;-.33457056;.76357085;1.9690965;-.26866633;.83198905;-2.7662003;1.8936458;2.099103;.3504158;-.30934334;.67816639;-1.6797893;-1.6364346;-.94188035;.1037591;-2.6189373;-.20101544;1.2264464;.91004866;1.8647115;.55309397;.69816238;2.5910182;-1.5931561;.60722607;-.66580349;-.70369726;-.35005358;-.91400921;-.077244833;3.9063103;2.1105034;2.8114307;2.2819388;4.1829667;1.2220185;.31247431;-.85200357;4.0395131;.97277582;-1.9196503;1.1180708;3.0161126;.30757877;-.20198596;.68358767;3.1506705;-.042510126;.25096452;4.0547495;3.9163213;4.2039466;.53868937;.62967658;1.7060294;4.1704583;-1.8385299;-.16291139;.71080744;4.3977389;-.34065014;.84868753;2.0165455;5.7258353;-.019876661;2.8946121;1.4430921;-.10067865;1.3920454;4.80055;-.91988957;43.058098 +-1.3689595;.15835792;1.0696937;2.0006912;-.8142913;.039034672;-1.2779337;.41542059;-.11053992;.87414229;.10887405;-.42803124;-.73689592;-.15443166;.44835761;1.9391583;-.50115681;1.021619;.1620058;2.4192448;2.6067252;.6735661;.094248101;1.5463533;-1.1376998;-.2871094;-.71545237;-.11459041;.58625919;.70110714;1.7355307;.58306962;2.8105061;1.6831968;-.22230439;-1.125403;-1.2367778;.11158644;-.020394927;-.61591041;-.094691791;.084191307;-.23300429;.099405155;-.80062306;.093039587;1.3019263;-.71841085;-.54536378;.96058023;2.1871068;1.4569244;1.7392027;2.4039676;-.39930287;4.1309705;-2.7490072;4.6584945;-.37539032;1.0216849;4.4569955;1.3044158;3.6650605;3.1850247;-2.1256943;1.3054756;2.7106628;.42471263;1.9708644;5.7181873;4.1736717;2.2715809;1.0665312;4.3414145;-.17805231;1.0134826;4.1387072;4.9298606;.10274612;1.9687225;-.61444652;2.7292898;1.7098515;3.7713339;-3.457994;1.1937797;1.0005245;1.6147279;4.8618045;5.021131;.81440324;3.8904006;.016229397;3.9029219;6.2070136;-.7560153;4.208127;2.247221;2.3711839;1.655064;-.81994146;-.059772529;.63925791;2.9767783;-1.0582238;.94847786;-2.6867642;1.1001284;-1.2294947;.93381113;-1.4168793;.54932594;.15791552;-1.0712626;-.90470451;1.1628326;-1.2093456;.33244479;.072117493;2.8612478;3.1461711;.27777874;1.5189712;.1885215;.33779871;.34643993;-1.4571749;.73534596;3.0316472;1.6421574;2.656517;-.11704633;.24720533;-.55057007;-1.4520292;.66202533;-1.2268262;1.7471906;.22837301;-1.17309;-.51418531;.1791963;1.4592774;-1.4930705;.72964519;-1.5026783;.77387613;-1.1537437;.68012458;-.53197742;1.7638557;1.670521;2.1974635;1.7384073;-1.4602351;2.56897;-1.6846855;2.5715668;-.55241638;1.3369423;2.7835324;1.3617085;2.9232492;3.5434785;-2.2904332;-.96919566;.59125918;.97472537;.81121689;5.525321;4.0662713;-.16843195;2.6651843;3.6305721;-.045779914;1.4323086;5.0121346;3.0013719;.75264984;.78399128;-1.7749804;1.8356411;1.8982774;.94267559;-2.5264497;-.16587678;.22091553;.03449221;1.5665489;3.7487233;.46564245;4.1698899;-.046002392;2.3407929;3.7367313;-1.5244517;2.5078611;4.6399498;.89244676;1.2647835;63.187382 +.3109878;-.53120339;1.9405464;-.92726529;-1.0574859;-1.0413486;-1.0830693;.92206353;-.80089217;-.84967434;1.0271752;1.1065496;-1.2461634;.11454119;-1.106212;1.2949979;.36209139;-1.1954557;-1.0097071;-.28610492;-1.4238228;.43535587;-2.3579717;-.84899378;.32569507;-1.6942185;1.0856034;-.69670457;-.96547943;-1.1676675;-.0072870441;-1.1343192;1.2337584;.097342148;.53270578;-1.498781;.53028661;-.86725765;-.90634274;.023373216;-.94221121;-.15404591;.82655084;-2.2186172;-.2197862;.035413761;.1332839;-2.084682;.098415963;-1.2396016;5.4054575;1.6720132;-.0086763324;3.1806149;1.4057262;-1.3406627;2.1074631;-2.4675465;2.9018884;2.9451082;3.2361023;2.605767;1.2288277;3.3446848;-.91000539;1.4005146;4.8374772;2.6687186;4.0569105;.92464393;.51676655;1.3597659;.40317446;2.3889267;5.8358068;1.0964768;3.0512002;-.067866229;-.50292963;3.7573392;-.64448375;3.7082174;.33837935;-.2767531;.73247451;.91419625;3.6448119;1.7539755;1.2197987;5.5287714;1.7338887;2.2979493;2.8689461;1.8238221;2.7628102;-.21216114;-1.9953071;-.54022664;1.9898789;3.4052353;.43755478;-.76985168;1.7995111;.34230402;.81682986;-2.2480204;-1.8549463;.64613408;-.85571319;.65675592;-.54162174;.98088545;-.61620617;-1.0184151;.79894328;1.6411167;-.57482332;1.0087529;-1.161056;1.1650313;-3.0080361;-.39628199;-2.9914372;-1.9358057;-.0020272934;-1.9136877;.53662175;.19133349;-.38252354;-.86013097;.24391842;-.75336921;1.2553258;-.21745764;-1.6816174;-1.7490293;.27331886;-2.6392694;-.32213724;-2.3460011;-.73108512;-.52219766;.73143709;-2.448415;.48733494;1.9186437;-1.3904705;-1.3172513;.32172385;-1.5829124;2.2628019;2.6742761;.64193279;2.1622443;3.9924715;-2.6150796;.14196858;-3.0485501;1.491542;.40606949;2.8021288;2.1304047;1.4026271;2.5784917;-1.6065369;.49983573;2.2224715;1.6833168;2.2993844;1.7229911;.25180724;1.4658542;-.11648162;2.3745375;3.3529518;2.107924;1.3602273;1.0116234;.74484175;3.1806824;-.33716169;1.606159;-1.835698;-1.3198913;1.8295631;1.0060781;3.7825704;.31527853;-1.5877769;3.1256707;1.3457291;2.3373363;1.574946;-.94803905;2.0773637;-1.4598204;-.94863796;.63726979;.54287767;.81327862;34.341724 +.64256573;-.048058152;.056797475;-.53850186;.85533917;1.361944;.30949736;-.18873699;-1.2325131;-.77428716;1.3454143;1.0595981;-.27911505;.38033411;-.032343414;-1.8306912;1.3212863;-.79399538;.5457595;.088738948;1.3937969;.70360452;-1.1818916;-.3361209;.16498169;1.1851635;-.95116991;-.82036883;-1.4627531;-.36855289;.32379195;.063594744;.28161991;.54373366;-.53620231;-.15599594;1.0590338;-1.1077855;-.67893785;.16954459;-.41829139;-.86646891;-.23378268;.39871544;-1.4338328;.7119379;-1.2985094;-.71438044;-1.6547054;2.7069175;5.7614336;1.5477115;2.3264573;-1.8023741;2.1362717;3.1208508;4.1393738;-.79813743;-.85751301;1.1482615;5.7387567;3.4324162;2.0448878;5.0849524;3.348634;-.5225215;-.16493803;2.4988692;5.5854197;.66568172;2.370219;1.1649984;.018091582;6.1247134;4.7816391;5.4119277;1.2847151;3.3751824;1.5426869;4.0604315;1.422475;.7945078;-.9564535;-2.1328928;2.2963388;3.5481415;5.5309052;4.1864634;.21726005;3.4321239;1.7326728;-1.0409431;.29002094;3.1688945;2.0168281;3.1436446;-1.6425016;1.5996974;2.6334105;-.1260791;2.6733656;-2.0650754;-.81961733;-1.2671493;-1.6018797;-.91084099;.38497847;.054233357;-.62278956;.37966019;1.778347;.59718531;-.51251763;.73177111;-1.6348962;-2.1059234;.81578082;-.50355059;-.52359253;-1.521626;2.5118744;1.9019701;-.30874351;.88076699;-.6153515;1.6907994;-.69389558;-.61174279;-.65831757;1.5186031;-1.3660907;2.7709601;.1281918;-.51904643;-1.262717;-2.1181583;.48616174;-2.0421462;.18205087;.041927982;-.28162518;1.5211746;-1.4125762;-1.8544688;-.98372298;1.8177366;-.53060246;1.4713769;-1.6394329;1.1747813;4.8249898;.68219596;1.700803;-1.4931805;1.1321895;2.7293127;3.3865457;.88687015;.2883445;-.5556612;4.2542181;2.5811172;1.5248493;1.9471685;2.0953298;-2.0465944;-.91627073;.62747157;3.3278108;.2026428;2.0203087;1.5724462;-.07045047;3.6086247;3.322063;2.7123981;-.006052956;.43257716;.81354719;.69452649;.4036566;-1.9660797;-.095008947;-1.2464365;1.8122237;2.9355688;3.6783617;1.6570398;-.021695234;2.4667654;.8039906;-1.2502596;-.44746703;2.3022335;3.2969012;1.6674802;-2.1933033;1.4606123;.28018779;-.76849061;51.563751 +-.90821433;.69155073;-1.1532105;-1.8589648;-1.8634796;-2.6137474;.13314337;-.15560198;-.56298095;.71669763;-1.0178832;.056774881;-.44608107;-.51759923;-1.4241263;-1.5525891;-.15584347;-.46503171;.082894519;2.3109205;-.036644131;1.3874345;-.84689677;.45748058;-.97945714;-1.1960989;.60898536;-.53691715;-.42611247;2.4231815;.15654877;1.0039227;.71772009;1.417096;1.8590114;1.2391493;-.7920109;-.62123507;2.1141362;.2421263;-.7464534;-.53638929;.96849346;-.57254291;1.211744;-.094745733;.75627518;-.47249928;-.43045944;-1.0072582;4.3430901;.81657118;-1.2984608;1.9910318;2.1865869;2.14201;-.49056372;4.1306348;1.105418;1.0354193;6.4860563;.74646688;-.19036046;2.7965343;1.3031331;.62072331;3.871901;-.7356773;.64429539;-.35344592;-.927683;4.0118012;1.6577197;3.5198982;-.18658377;3.2132373;1.1244326;-.53778845;2.6947491;1.6926262;1.7078037;1.2161914;1.5752529;3.3827677;1.577582;-4.6685252;1.6081399;8.1325665;3.970078;1.3675082;1.8503753;1.9481269;2.7494078;2.0231297;-2.2631345;3.5763876;1.5780125;3.2587085;4.4184141;2.2762923;-1.1219735;.40047756;-2.275599;-.5078395;-2.2587402;-3.3005819;-.41920397;-2.5420873;-.41881663;.50239486;-1.4611647;2.2359219;.063685931;-1.1890211;-2.4365349;-.77698827;-.30480435;-1.1315217;.9197787;.23186687;-.087872572;.16659318;-.077370003;1.8759952;-1.9093242;-.11115208;.077709727;-1.8679911;-.070787624;1.0493555;.25988519;.34214419;1.7564281;.24289188;.91050315;.51944935;1.0584844;.89841115;.28774664;.030747732;-.13291641;.63313138;-1.0051869;-.036443345;-.27034757;1.8769664;.67076886;.19624682;-1.0156599;-.26320273;3.2710817;.07304924;-.42637092;1.1386558;2.229229;1.5146412;-.28236449;3.436377;.30415273;.3188878;4.005034;.080125697;-.48412785;2.8700268;.14661169;-.40634748;1.1609937;-.27081802;.24557757;-.66468292;-3.2351739;3.6088905;1.6543608;2.306309;-.92117995;3.5557637;.18887997;.91891617;1.3268627;2.4110744;.22817121;-.31975397;-.83719397;1.0004512;1.831519;-3.4476333;-.38960543;5.8004432;2.602138;-.077107407;2.3030584;1.4073894;2.6111321;2.8605735;-1.3392203;2.5326073;2.1131122;2.999213;3.0434563;2.3855486;45.481293 +.42603993;-.71521622;-.11056578;-.24881582;1.2642418;-.51327038;-.52204406;.033836678;1.0634187;-.85342288;1.4830569;1.9475784;-.023113748;-.28513515;.25846079;.51883554;-1.4773126;.13094965;-.16845618;-1.6128714;1.3361583;.40816197;-.48898762;-.76292086;-.61829937;.51961553;1.2604039;-.47860551;-.15412271;-.77797282;-1.7937433;-1.0855732;.10488526;-1.3726637;-1.1578555;-.45559087;.4649674;1.2736263;-.9320339;.13261364;1.3497405;-.43778503;.96552557;.75902402;.54741007;.26959595;-2.9214811;-.74075091;.25351003;-.89638454;.75027418;-2.1424789;3.9889321;2.2804232;1.50065;4.7703404;4.1329575;3.608712;1.0965222;-.25321901;.60771811;-2.8693368;2.2357941;-1.6995364;4.4489841;3.8081052;.017970754;.66362536;-1.1530583;1.7208343;3.6516962;3.6792893;.50227123;2.5186529;3.4287367;4.5163188;5.0216136;1.4548711;-.0015495594;.71355742;-.74298412;2.2708004;.61224955;-1.5035172;.59172344;.41078937;3.6406357;.52275932;4.2885146;3.3355336;4.9680643;7.2317786;.56899738;2.8973389;-.4669188;-3.5378342;4.7721992;1.7166361;7.227716;3.1667128;.73544633;-1.7754117;1.3434278;-1.1013255;.15501079;-.20538825;-1.489067;.60734898;-.41064242;.53892714;1.6456288;2.8704424;.48497954;-1.3292172;-.39117861;-1.0031977;-1.7199599;-.40873998;2.3271527;-1.0059636;.29274234;1.6770711;-1.421127;-.71274275;.31984648;.017839568;-1.3983754;1.4266543;.56585526;.44502288;-.97749799;-1.0994611;-.38149476;-1.2947879;-.66529971;.3909255;.20275114;1.5498576;-.57513571;-.29423779;.61405241;-.65240419;.26115417;-.37951085;1.1918761;-.24394633;-1.5493084;-.015920131;-.91081768;-.20282002;-.049540445;-2.7288544;1.8635447;1.3226532;1.1495931;2.0682187;3.9466293;1.6713665;1.9875894;-.32694837;.90414441;-2.3734722;.53202081;-2.0685518;2.9258909;1.2232671;.84747666;.48833635;-.26323664;.55979228;2.2279761;1.9679215;.94576186;-.55674708;3.2153952;4.1691422;3.3738976;-.023615364;-.24015369;1.0813255;-1.7160268;2.274519;1.043448;-1.3746059;-.80529279;-.67332548;3.6434789;1.6911011;2.5870771;1.3738911;3.9145715;5.2084355;-.66741085;2.7268152;1.0846052;-2.8829565;4.8603745;.50872463;4.400744;1.4943026;51.387054 +.34203255;.099247128;-.31408989;.66941643;-.051377993;.79250622;-1.0879953;2.7454636;.24535038;.25245881;.23159042;.069666706;.94136554;1.4445857;.5151307;-.82604307;.95210081;-1.3336416;.92574507;.46678379;-.33940998;-.89422536;-.47024181;.65287948;-1.4247053;1.5718398;.68125212;1.2275923;1.024382;.99369258;-.26088557;-.15689482;.90874475;-.032694869;.090249628;-1.2225655;.30691761;-.032570284;-.051429529;1.6115184;-.89166009;.40831035;-2.0444484;.83261013;.44624603;-.37742275;-.64631277;.81123769;.091138385;.47516271;2.2323766;1.7851374;2.857578;2.3472772;4.1323543;1.2714634;5.98564;3.4041719;2.0148625;1.3756193;4.6999941;2.5502193;.25142807;-2.9128349;7.5602674;4.1943283;1.3525808;2.447521;3.6890409;1.6006092;3.9348841;1.3848752;.90831625;1.9310966;.76299256;-1.1777771;-.53474879;2.315551;1.9506031;1.2799361;5.0550995;3.1187637;1.2097028;4.6180949;.97330701;-.5925386;1.8636529;-.45311689;-.80906171;.26544616;1.6700966;1.8532953;-1.8304276;1.4101919;.88883364;2.7465925;.46679696;3.0207815;5.3847995;3.0699918;.38351259;.89817369;-.029084967;1.2504791;-.96657664;-1.8298793;-1.9724891;2.4488666;1.3059239;1.0359993;.53296942;1.2735558;.80131966;.52023071;.75721729;-.65813363;2.3035414;-2.2017806;1.190969;-.83384019;-1.0472652;-1.3377368;.29523227;1.4752377;-.24231324;1.8531477;-.13363004;2.2744629;-.76804793;.36512217;.71230346;-.50826323;-.56303805;.60543817;.67461509;-.64909911;-.87891108;-1.1499456;.85085106;1.9556615;.40127122;-.11033686;-2.3951187;.22462779;.22110158;-.89692992;-2.5035501;.27875009;.41703898;-.29432702;1.6900189;.92314821;.82879984;3.7580113;2.8168571;-1.1158515;4.2611632;4.7075801;1.1931159;1.8401611;2.5341268;-.3991144;-1.5027461;-1.8273516;5.8873587;1.8415264;.509565;2.3070462;2.297272;2.9021754;3.6537342;.71187824;1.2631502;2.0244877;2.3246114;-1.8889402;-1.0788726;1.6430316;1.9480002;.76145822;2.9414039;1.7395401;1.6074684;1.7891434;.064628907;-1.4546428;1.9138385;-.54178709;.73467702;-1.6562912;.9483158;-.11794663;-1.4922756;.44021258;2.1411891;1.9456267;-.77502006;-.47470099;2.8418252;1.46378;58.341137 +-1.1848506;.27334461;-.62628603;.19408937;1.3766469;-.093602963;.085838579;-1.1986847;1.1476688;.29842368;1.0091817;.56114602;.75762171;-.98294085;-.68867987;.31357226;.33299506;1.7478446;-1.330932;.66373098;-.92667168;.097876988;1.6549693;-.67399144;-.23605931;1.3975086;1.3769042;-2.0071535;-2.0371308;-.7779628;-.12595795;-.65501243;.69567275;.87521195;-.39250836;.3880021;1.0646019;-.17906596;-1.2810295;-.35356992;1.0861478;-.55328584;-.41184154;.10386202;-.21535529;.35531291;1.1503923;.33807951;.36365783;.55174983;-.71286041;1.0059494;-1.6270311;2.7995181;.68135726;-.25982961;1.9872593;2.0103207;2.7282684;3.0425446;-.90825444;-.18487921;.61804676;3.1479983;1.6937245;1.7139258;3.0398934;2.5720987;-2.8608546;.57874042;1.7133428;2.0448034;1.4155625;.90654945;4.9450159;.77150202;.59240574;2.1193852;5.6092105;1.0873296;1.6015168;-1.2413507;2.5222914;2.3275666;7.0684428;2.6494782;1.4388835;2.6903522;.97745532;2.3802612;.35215643;2.2057986;1.3954908;2.8560152;.5877763;1.2087535;.71907651;.28171799;3.2887268;-.030198852;.22843216;-1.6105505;.81871611;.92518419;2.4236536;-.91265601;1.1653906;-1.650369;1.0945709;-.027418358;2.2205596;.8924858;.69992155;-1.4783509;2.5528884;.9782418;.72142839;2.7718976;-2.5061815;1.0723983;-1.4269059;.013634508;2.2513049;-.13105199;-1.7989626;1.4905589;3.5322843;.11137387;.39544535;.72303289;1.7306609;-.15979071;2.4761951;-.93691057;.93373722;-.065522037;-.51462406;-.77548605;.16253406;.035603218;.76047552;-2.1388316;2.8465745;.82650393;-.45092195;-.15269899;.58429462;-.19272813;1.4754223;.43722174;-.9808712;.50540775;-3.2103686;.29111278;.3627902;-.93795162;.91509628;1.8032579;1.0368088;2.5706999;-2.2287626;-1.1803232;-.38450307;1.3707712;3.2226179;2.0258243;.98754466;1.5261979;-1.5685031;-.51639509;1.2355086;2.2830093;1.7134794;.38740057;3.161134;.36246097;.93879807;2.6976397;4.0779419;1.6622;1.9906672;-2.132992;.80743659;2.9322107;6.9219193;3.261765;-.20432587;.42318004;2.109632;.33754772;1.4626254;2.2219398;1.4919109;1.5763884;.10334539;.66411561;-.73958826;.93877482;.94961733;.42511582;39.533905 +-.1083142;-.022834441;-.8995896;-.53465903;1.1720682;-3.026993;-.50298268;-.77652115;-1.1516501;.86612916;-1.3781239;1.2004912;.33490032;2.4051547;-.94277787;.89791363;-.35362995;1.423728;-.38978454;1.3393652;.98396677;1.8140122;.47099429;-.16258051;1.0209205;.0090760728;-.35788125;.99242014;.60810488;-.038639747;.36115459;.9513756;.48119041;-.67022496;-.26068673;.98157054;1.3580515;1.4645947;-.42185959;.05018745;.42342615;-.38231242;-.78725159;-.51615912;-.45107761;-.077289522;-.1794524;-1.7536048;1.2333626;-1.4019868;3.186964;3.1872323;6.2905064;1.5515878;1.6566446;2.264456;5.1536493;2.8384914;4.6035361;1.1724522;.66718727;.81436276;2.6726818;-1.122462;1.4124142;2.4556592;3.2824018;-.90996581;-.61397588;3.6117749;.94568139;3.4809005;.13151711;-.85580915;1.9964612;1.4586592;.94825023;3.3671799;1.4734966;1.9273039;3.3566053;2.0895989;2.7476814;4.7480922;1.8814974;1.2930499;-2.5258369;.92810982;3.2232685;4.7765265;1.4684126;1.6892968;1.592328;2.9193385;3.6357584;3.765075;.21948437;1.3102973;-.77732503;3.3720582;.55693501;.15724823;-1.4231496;-1.7496805;.11012156;-2.3560312;-1.4126084;-2.1235833;-1.6846457;.93473333;-1.5605624;2.5395315;-.86077011;1.1738328;.48496336;-.66487908;2.1428368;1.202535;.0695014;.78823018;.54019815;1.7998862;-1.4591614;.58722675;2.1718678;-1.2734115;-1.0396317;1.1874288;.86862361;-1.4590856;.2591809;-1.6118317;-.76881784;.96916991;-.7952078;-1.9839919;1.169181;.31496912;-1.4951557;.52097791;.76150465;.049009278;-1.8183883;.068195567;-1.0260897;-.23877463;1.7152866;1.0652201;1.0625802;-2.253125;1.5086069;.86921197;4.3983593;1.063748;.45394549;1.8184257;4.3100004;3.0780599;4.2038064;2.3516505;.97898072;.58291668;.32461733;-.68380666;-.49428648;.1955978;1.5817819;-1.5858195;-.23472401;2.785897;.13758157;3.2619469;3.0815954;1.6286861;.54350871;.91637051;1.9775088;1.9934874;.74613309;2.0647099;3.1619537;.085217878;1.3869156;5.1376853;.47284785;2.2730546;-2.3554223;1.0173578;1.4160368;1.7970556;.92289817;.67466182;1.7214665;2.6068459;1.8304261;3.7844868;-1.3484392;1.760687;-.24690668;1.7216065;48.616062 +-.54281217;.56394953;1.1884639;1.9778751;1.7355556;-1.2864084;.21264553;-1.597771;-1.5854055;1.8613648;.27236682;-.72573119;.36761436;1.0197352;.55318719;1.2827321;.36166802;.5796392;.57101214;1.5176005;-.87179685;1.5083741;-1.4905006;.79784602;-.31740507;.51191634;-.023518933;.2010026;.32431322;-.53047431;1.1916296;1.7123443;.27916187;-1.0881718;1.1328114;-.33872873;-1.098025;.47652864;-.76345617;.7955516;-.25112775;.25628316;.47438341;-.02975809;-1.917958;-3.1336811;-.4525525;.94471478;1.2220898;-.84788418;2.5276933;1.12949;3.4022553;-.82090354;1.1064198;5.394299;3.7033105;3.4524231;2.2188113;2.7128346;1.7012116;2.9106538;1.5992217;.5874877;1.9514645;-.045887586;.65813208;2.4175248;3.061372;4.1510053;-.27508053;2.1570265;3.4851453;2.0355103;2.5644205;1.6937482;2.7577705;1.923921;1.9378691;.94594824;3.0150309;1.9550892;2.1789203;4.8749127;2.1867752;2.369972;.16831322;2.3679059;4.814055;.21907879;2.924628;1.4406234;2.0561924;1.5526085;6.7354732;3.3764791;-1.5343283;.59528023;-1.5255148;-.77173311;-1.3888787;.12112342;.22928041;2.408653;.8872416;-1.595017;-1.7402554;-2.554301;-2.5086248;2.5718482;1.466504;-2.1576424;-1.1776867;-.26128095;-.022391591;1.3216286;.96646041;.72501361;.76057094;1.053745;-1.256669;-.73615938;-1.1654512;2.2743285;-.83945417;-.22707877;-.88879448;.42327961;.52547807;-.20598294;.88466477;2.088058;1.1928556;-.37901926;.24705186;1.0165218;-.39041799;.33546937;1.2910622;-.42367175;-.51089048;.94250017;.94110221;-.94388962;-2.4530616;-.92907602;-.3146036;.94271153;.52741832;-1.436257;2.0415256;-.19330959;2.0398748;-1.9906574;1.2858838;4.8417029;2.4709928;2.0304022;1.0413699;1.6217866;1.3344934;3.4050236;.15154329;-.40815195;2.7651525;1.9159504;1.2941532;1.8853555;2.8133211;1.5812153;.60769862;2.1201954;2.5348988;1.1320616;2.5302632;1.2480205;2.7097106;.70047975;1.8118654;3.1294506;1.8561782;1.31915;2.5743203;5.2856836;2.4413669;1.4062655;1.2653295;3.2066793;1.7213333;-.58551365;1.6441113;1.5306135;2.6937876;-.7848199;5.3201852;.68154651;.22850783;-.95680571;-1.0775303;-.78487742;57.400097 +.86389339;-.15360822;.74152672;.99744093;-.051016916;2.3043675;.69703871;-.48065522;.58278191;.5706774;-.037548516;-1.2205559;.34286582;-.69174165;-.31700295;.58595747;-1.2269;-.23120032;.61136931;.25612468;.51617849;-.37131846;-.28446886;1.1291003;.46800622;.097992547;1.1452518;-.50351214;-2.4420385;-.84766632;.53908122;-1.1747668;.080876917;-.52590078;-2.4235258;1.0608995;2.4693704;.49551123;.62031686;.017385017;-1.1362636;.4864386;.76060671;.71598804;-1.5683311;-.18145804;1.0219185;.70156705;1.126768;.0020544867;4.6156964;1.5293767;.72917438;3.9353523;3.904717;1.6761183;2.6605918;-.20029971;-1.2393421;-1.1614838;.14300285;2.1479428;.52228212;-.40288246;4.8498979;-.14369698;.29745311;.98160535;7.5342355;1.8423007;2.0259078;2.4399931;2.7356188;-1.4107442;.609824;1.5053148;4.0584817;-2.5780168;.98853987;1.1574363;4.436008;2.7965293;1.9153637;.74127418;-.92229116;4.759007;2.942771;3.4958601;.81328464;2.7446702;1.3921559;.66516405;-.67501384;-.16106406;.17861293;3.5370691;1.7268771;-.037487824;2.1646221;-.23662458;-.050421447;-.18933953;1.0274398;.84039491;.80169773;2.3825116;.92058933;-3.1749885;.85799617;1.1787165;.22760722;.03708493;1.1359552;.7878536;-.91142225;.25725147;-1.734378;1.2255963;-.015097602;.50486982;.2809149;-1.8859479;.29641822;.97923654;-1.0762515;-.23336905;1.6237257;-.33159539;-1.6138911;.68455207;1.2049594;-.32392412;-2.1304276;.5267126;-.35561162;.88874549;2.1791916;-2.3538721;.054420628;1.233095;-.36566806;-1.3125231;-.77579975;.61141258;-.51873732;.084909573;1.0025724;2.5606301;.37406451;-.85910392;2.9627087;.75269228;2.3106759;2.0843956;2.0384712;1.4414572;1.2146562;.24979122;-.78394806;.71865201;1.6582359;-.20704316;-.60225743;.44761148;5.1015263;.0026853362;1.4074147;.69446105;4.5585132;2.1899309;.85407716;2.2570071;.50876492;-.68992263;-1.02613;.30210492;3.0267704;-1.6272917;.17326322;.16691832;4.2327342;2.866118;2.0276093;2.4838164;.39571926;3.7736816;.87909758;3.9682338;-.060419075;1.9314038;-.018267885;-.30290022;-1.5994195;-1.4836338;.089152217;2.7255867;.079351619;-.24384211;1.5492433;.76735157;41.067245 +.44929662;-2.898994;-.86042994;-.91988903;.91046506;.41297039;.75177163;1.0962108;-.87187332;1.1026472;.16819558;-.25457934;.40303415;-.97156739;-.26000962;.518224;.600326;1.1134696;-2.0791695;-1.1367713;1.8596585;-1.62507;1.7673004;1.0985457;.63953549;-.39406291;.24286811;.94085854;.98118806;.53311926;1.8146493;1.717786;1.0561804;.055728547;.31047493;-1.345863;.74964762;-.41016313;.76204669;.46635672;1.0416971;-.29420769;.26344076;.31173569;-.77523196;-.24514745;-2.128217;-1.2490895;-.82392687;1.5909423;2.5140502;2.0146255;1.248451;1.7060045;-.45685408;1.1040734;.46518567;1.7216302;-.83778065;2.21387;1.6071306;3.392724;.68292236;3.6819229;-2.0081611;3.0302875;-1.6204484;1.2994854;3.9647663;-.73401028;4.0455642;1.305679;.81707579;-1.0488436;1.1237147;.74271053;3.0463626;2.2578399;1.9438064;2.2780201;.61828822;.67810571;4.3763366;4.4839802;2.6155727;1.3292748;.23880458;3.1269083;.75252497;3.1727729;.15254317;2.6656437;3.1977491;1.6862305;2.1655676;2.0748277;3.3311923;2.0245693;.48406973;3.4437628;1.6968628;-3.5758939;-1.4137131;-.87571388;.21131563;.76163876;.071106888;1.6375449;.031458378;-1.6728221;1.1239907;.44628313;1.0904322;-1.1264564;.053170677;-.31873989;1.1157707;-.0071901833;-.88374078;.2737942;.90766501;-.11068173;1.1770996;2.0392883;.69260883;-.28848347;.72839767;1.1363299;-1.0521404;.29627776;.98666203;1.3679136;.18587969;-.43541661;-.75918907;-1.7107499;1.1233695;1.2763718;1.0829501;1.1650002;.32898194;-1.5121933;-.4090547;-1.8314917;-.88236284;1.1402019;-2.7695403;-.016647061;-3.2489419;1.2972451;1.6963874;1.8347341;1.5713786;2.6494923;-.9919802;1.0793645;.22368951;1.3664601;-2.2757308;.73394489;1.1775869;1.790665;.77554965;3.2854309;-1.1320884;1.8974789;-2.4619212;2.2258813;2.478493;-.98863912;4.0736327;2.0200095;-.60925412;-.79919767;.019250527;1.1939217;.52043825;-.27318469;3.4456186;2.0292754;.38678208;.36490732;3.8815463;3.4876194;2.6657598;.23381767;-2.1477323;1.1198184;.84876627;2.0625832;-.54972994;2.2702258;.73037618;.43524987;.76160783;.60750693;.92578477;1.1546783;-.33598182;3.7040782;40.938755 +-1.2964985;.21281715;.39564425;2.2338507;1.7510316;.15524274;-.2249866;1.910705;-.44501409;-.52455074;-.59829175;1.5501144;.013770456;.58439124;2.0960219;-1.4321672;.68617004;2.6076858;-.08475998;.15499288;.8240748;.68153042;.47032914;.6561147;.13681269;-.048734453;.70837712;-1.1174535;-1.8332514;-.92591858;.18625343;-1.0354702;-1.2158949;1.2875963;1.2115275;-.71662229;.022643199;.028367573;-.16888434;-.24530433;-1.2412196;1.1509619;-.94135815;.22968277;1.5475824;.91516596;-.049683578;-1.3614929;.66366911;.57082808;.19636616;.089747936;3.000725;1.2942402;.29448286;-2.000545;1.0573323;4.2716894;1.8189541;1.5244218;3.5378406;2.3113403;5.037065;.3412694;5.1473136;4.1077456;7.6590204;1.6652855;2.9445829;3.8614092;4.8210359;4.8274498;1.1292723;2.9348266;2.0078635;3.5418944;-.0063983542;3.5611196;5.1176724;-.93060625;-.52837545;3.5731592;1.2361165;2.3166261;5.1603289;3.907701;4.3041072;.15277244;-.037119336;.30990165;1.285589;4.0203261;3.3217642;3.2697577;4.401145;5.8081951;3.3972337;.96839017;2.6560817;6.0617318;-.26076961;-.93435019;1.8719645;1.7970866;-.27834386;1.2928052;-.70324147;-.58992666;-.464726;.13835564;-.72369611;.75805831;-1.1912873;-2.7788117;.42298058;.12298978;-.34040675;1.4562606;-.61922503;-.41428265;.62782407;1.6868623;.67590803;.88721871;-.2918362;.95005667;.010696605;-.7560063;-2.2257032;-1.1263659;.046557669;-1.3627188;-.47089311;.86883914;1.4609758;-.21400012;-1.0403013;.45663601;-.50229067;-1.1853706;-1.9036988;1.2870097;-1.0300248;.83434278;.62459302;.28264919;-.27774152;.011341765;-.87189734;.74052155;1.1405824;.17380564;1.6918564;1.124921;.57803231;-2.0464811;1.4862679;2.4247632;.72565842;.57237279;1.9118063;2.0678935;4.3082709;.7407763;3.211941;3.5490322;6.6274123;1.3648982;2.2180555;1.9122378;2.6346028;6.3312874;.65334779;1.1801671;1.4690242;2.6889722;-.37450629;1.6830668;6.280972;-.12429179;-1.9592029;2.3525527;-1.1198514;.75853896;3.2026026;2.3990159;2.2620845;-.72288769;.51604462;-1.0987449;.11671554;2.4741457;1.3563348;2.7554741;3.2508185;5.5381241;.69692338;.60901105;1.4270216;3.1803126;73.080948 +.027188931;.17880268;-.91691273;.70499229;-.54521561;.64192903;-.16422066;.53783208;-.20825419;.66136587;-1.9018433;-.62871802;-.12992452;1.4215616;-.66908318;-.27710015;.36207151;-.062327825;-1.4682857;-.89437938;-1.2907982;-1.3360337;-.82353055;-1.1192973;-.71192086;.84381682;-.3277742;-1.2203587;1.2418482;1.6255795;1.4584548;3.2838955;-1.4848064;.38116628;.9739964;-.20715739;.013242236;.78612757;.037648525;-1.020443;.69937819;.9285019;-.49234954;-1.1973146;1.586208;1.3098007;1.0927653;-1.1161826;.21215218;.42087305;.85982186;.44312066;3.4784656;-.21448584;1.9730475;2.8931024;.41527051;1.6020683;.38180214;2.2800126;4.2187629;2.8553293;-.40796694;.03948823;2.2672956;1.0301356;-.50214255;3.1245272;4.2899261;6.9486837;2.7885637;2.764199;3.6355829;1.9020041;2.2070665;2.4763763;2.7463307;-.27303678;1.9896938;-.48952058;.42207655;1.9351661;-.38246727;2.8916538;1.2356861;4.1558728;3.2261195;.56068981;4.0450139;2.8210797;2.0168314;.54245001;-.80175412;.30292162;1.615695;2.4360061;1.0949211;6.4503345;-.59921777;-1.4105794;-1.1350193;1.2934906;-2.1414289;-.57378244;.79765147;.99143904;-1.2635635;-.97706133;.049961261;.37780061;-1.5822968;-1.7774345;-1.2731791;1.2026337;.20586419;.54010963;.57809472;-.67773789;.87098455;-.014903202;.39986077;-.96518421;-.97608447;-.37178603;-.30384573;-.92400038;-.28355405;-2.2286656;2.1176856;2.0770679;1.1467984;3.5189354;-1.9702673;1.5240263;1.4569051;.024919884;-1.0584694;1.0503377;.19768277;-1.8885599;-.54221779;2.3280766;-.76934242;-.85060763;.87862128;.96015412;2.0941508;.66137165;-.4774569;-.78060192;.75626051;1.2266915;2.277478;.7663762;.84915978;1.2288641;-.47802982;.085732765;.11704652;2.0396569;2.9167969;2.362129;-.13164075;-.27819571;.90923101;1.3505265;-1.925844;2.2621889;3.7516751;4.9779401;2.4784622;2.7792404;1.9963697;.83490705;3.800416;1.9679325;1.1011986;2.7475598;2.3937247;.52265954;-.21320783;1.4619879;.91320407;2.5627439;-.33570191;2.0311964;1.5004404;.3653557;2.2873695;2.1463602;1.9580978;-.50453818;1.3078128;.60646594;-.67352206;1.4267992;1.6511196;2.836333;-.45007387;-.72328085;45.528255 +-1.8451304;-1.6663995;.66514599;-.25727779;.056397632;1.0158186;-.070335791;-.5198915;-.24652579;-1.0087825;1.6523324;.76600331;1.0271457;-.22243221;-.68553054;-2.4101689;.48923886;-.88766575;.11918235;.64659768;.45367387;.43027729;.24925879;.59578091;.45359862;.75647753;-.88561177;.11920734;-.21388286;-1.173579;-1.440232;.39298743;1.2894542;1.626987;-1.9215486;-.040968869;2.4689252;.36004403;.56029177;-.2572301;-2.0046184;-.81339872;-.9020021;1.5292854;-.4193612;1.2113297;-.16055615;1.4253176;-.47309807;-.11535457;2.2756295;-.50387377;4.4951749;-.88425034;2.0374999;2.5478301;-.36494741;-.29887667;-2.1163464;3.0988927;.85810655;6.0144777;1.2383322;5.1487131;3.5687463;1.0298291;2.4875121;1.8440574;.97506833;2.2798543;.39945954;2.8151748;1.1337167;.80770022;1.8891183;.48957023;-.26164341;.21992251;1.0078375;1.6980636;-2.2200415;4.6093779;.38806382;.81315285;3.161037;2.628175;3.9466317;1.32908;1.7174243;-.74904144;1.8806152;-1.924701;.53212839;3.6937499;3.3957596;5.9211311;1.8231192;-.00024145823;2.058265;4.0367804;-.93882149;-1.2327144;1.1907157;.04691628;.82353926;-.4198674;-.4276022;-1.0217596;-.24996696;-1.7556895;1.308929;-.36651766;2.7956223;-2.4375551;-2.3976369;-3.7002971;-1.7695436;-1.539166;-1.4949508;1.3472931;.41632307;.7277776;.44882351;.61034721;-.65677285;2.0712948;-.84648079;-.53642195;-1.0259572;.59886068;.2269602;1.0220547;2.3830829;.40815809;-1.4483232;-.26032564;2.0636337;2.0079131;-.037554178;.5340808;-1.2995086;.22466916;.1602779;-.16249576;-.55579919;-.077686764;-1.3949938;.44228655;.053417627;-.68852258;1.3840187;.098020993;4.2125034;-1.4990072;.51834977;1.6053721;-.24576785;.073929437;-.90385598;1.5019188;1.8107359;5.7644696;1.1497229;5.0828228;1.4391785;-.12902366;2.5750537;2.1762722;-1.2364177;.63469666;.24088621;3.518275;1.592422;.42297167;3.2035193;-2.2455676;1.12668;.94239753;1.5365007;2.4603035;-2.2207959;3.6848283;.062821209;.94179374;3.8292544;2.1185844;4.4104476;.23739609;.75695825;-.2828173;.95622516;-.9195798;1.1552732;3.4541907;2.4563336;4.0154891;1.5798244;1.0148152;2.5997691;.27341729;39.898319 +-.51951438;.044682309;.87431628;-.85834944;.21370228;1.1001838;-.4800784;-.52415657;-.3585023;.31208783;-.60109425;-.47729141;2.5601616;-.66666603;-.68947887;-.080943212;.97590691;-1.2761647;2.4692452;-.034049667;.58681971;1.6845894;-.48631704;-.23513755;-.81296277;1.6306127;-.020257285;-.22585565;2.0567105;1.2494967;.86702549;-.78928822;.31657088;.91292226;-.017534653;.37405425;.83065742;.19689234;-.23439994;-.72754806;.43972865;.15679054;-.69359434;-1.0127162;1.3655547;.91611624;.48376578;-.67424208;1.2694386;.21022838;1.2509302;1.8981165;3.8010979;1.1605542;-1.7667999;2.2622061;2.7486775;.64807934;4.4021749;3.1301835;-2.0378947;4.572823;.24758047;1.7387092;4.8760285;2.6669288;.90348816;4.6542678;3.6532941;.77063751;1.9991028;5.0595469;-1.4812242;-1.657701;5.0985222;3.1878459;-.53962457;3.1959777;1.3032848;4.0477757;.34175274;3.5303204;2.7023387;.10616371;3.2055783;3.3353295;.4197621;2.127506;2.8288448;.72879392;-1.480672;1.1809623;.41399884;.49483913;.048064996;1.3055576;-.22023742;.94464469;3.0915549;2.7700243;-1.9345046;.98290151;1.2060207;-.6577661;1.2018342;.85260832;-2.5595553;.73319405;-.092875898;1.067238;-.029715024;-.50683314;3.068712;-.88969874;-.16969144;.5278039;1.4768169;-.71048999;2.7259839;-.11048678;.17485914;.011901602;-.27892482;-2.3172014;-1.2545636;1.0786408;-1.1592529;.40805548;2.3834157;2.9916372;.47816205;-.36407784;-1.4710312;.58987761;-1.9350259;.22421676;-.55877817;-.34404841;1.1457232;.61239219;1.3279924;-1.405296;-1.6992997;-.18508802;1.6477352;.35313478;1.0842419;-1.0533804;.16735488;-.22678819;1.0328536;.034035787;1.3715593;-.97612303;-3.0773551;2.5329232;1.2864237;-1.0489137;4.2197919;3.8817081;-2.8327298;1.5078417;.40330157;.86506426;2.6819277;2.9737852;.34102666;3.5239544;2.2898626;-1.2670592;.82495153;4.3522243;.74002314;-1.6908786;3.9717977;1.7850819;.10906572;2.8324728;.097569868;4.6647654;-.31756887;1.7718962;1.8405516;.84205037;2.1817131;4.1024847;1.9828874;2.0137866;1.6663438;2.3316562;-2.6937661;1.0367194;-1.100596;1.5358742;-.71965522;2.3238025;-3.0951214;3.5279195;.89490044;1.6572874;47.895737 +.4356209;-.98609871;-.63908595;-.26694763;-.35950893;-.68934739;.22969908;-.5664472;.99041337;-.93075216;-.44521445;.42748019;-.22008614;-.74789792;-.99100178;-.25453657;-.66869003;.66785342;-1.9273145;.29397506;1.2108957;-1.3775136;-.81699765;-.21099846;.51277709;-.10207231;.23642993;.10608734;-1.4891468;.54461479;-.73729163;1.6624719;1.5111991;-.98114657;.93042654;.63684154;.52728903;.11540037;.19566293;1.797065;1.4009424;-.50192863;-.25154501;1.0597075;1.7716033;1.9518684;.49100202;-1.3882701;-.77999806;.25578341;1.3570818;3.6864889;1.3689635;.15693866;-1.7853554;5.3365741;3.7893758;2.5166116;4.6736627;3.6404185;3.7228131;3.2786477;3.8431139;-2.5906115;-1.8586118;3.2909899;2.4346311;2.5334206;4.8109574;4.0308757;4.4279561;4.3519125;-.012209057;2.4486208;1.2840121;-1.6666106;-.034250449;2.9397159;-3.0378637;-.24503852;2.195194;3.1015663;-1.1151011;3.5293837;2.6833448;.8614158;2.3539937;2.7636533;-.048368234;-.23255545;-.69263452;4.6663594;.75336146;5.9143953;1.6536213;2.0116644;-.18641073;-.30246428;4.5625429;2.7360098;.3600193;.59562993;.083933696;-.67895132;-.29582459;1.0109812;.64345747;-1.2480932;-.15411818;1.040377;-.49544224;1.2690669;.70344257;.26147628;-.40832943;-.34088248;1.0018036;-.097805038;-2.1046739;1.479925;1.4980576;-1.6460434;-.61375988;-.49711519;.81938535;-.46532521;1.6844852;-1.9203482;-.46880832;-.1358377;.12705275;1.1596349;.20947258;-1.8381667;1.638822;.23999709;-.14045154;1.57805;.13549177;2.1961565;.94003886;-2.3583765;1.6945716;1.2503529;1.189013;2.4148324;.17456654;-1.0172212;-2.6162941;.17129906;1.454123;2.6334615;.67655259;-1.3527569;-2.8723094;3.5623865;2.9884264;1.5707098;3.7583342;3.6716368;2.1798697;3.4285278;2.2258406;-1.4496591;-.81556696;3.0299587;.94632328;2.7898283;2.2042575;4.4724545;4.2285209;2.3609846;1.8156096;2.4744582;.97598815;-.68554658;-1.1648133;2.2336421;-3.9569643;-.45349818;1.8281817;4.2377868;.33647788;3.1474388;1.5417551;-.24913415;4.1422739;2.6740735;1.4044905;-.73598409;-.5016802;3.8763194;2.4303167;2.0097337;-.3322027;3.7104759;-.11407816;-.26263109;3.5254786;2.6195848;48.949219 +2.7949207;.79608649;.18086167;-.082559921;.98852515;-1.4911814;-.5509184;.087876983;-1.5036538;2.0065134;-1.3697879;-.069526412;1.2861453;-.72853053;.2916742;-.84735447;1.1739001;-1.4098778;-.34089506;-.0085282745;.47624144;-.086740732;-.35379097;.41075581;-.29101694;.50482643;-1.2352304;1.708918;.2891328;-.22520448;-.055394992;1.0277742;1.7083888;1.3045493;.67201406;1.3781502;1.2301288;-.8567754;.40572831;-1.9540502;.49931177;1.0142347;.25056922;.2537823;.37583628;-.64221662;.38552469;1.2974062;-.52815211;-.8731029;1.5338627;3.6012204;1.8382245;.29589581;-1.3159349;3.8391814;3.2701058;1.1949636;.99813521;2.6295066;2.5903304;3.0471668;3.432719;-.35702372;-3.6336968;3.338315;-.23987333;3.2817652;3.8817611;3.2128077;1.0541662;1.2687914;5.6594296;.902937;-.12351592;2.9936409;-.11618268;2.9401891;-.54235709;.36076275;4.7938728;.020052282;4.6194739;3.5524905;3.1929767;1.5793681;-.96804076;1.3919791;-.12501796;.78378385;.53620476;2.185951;-1.1025069;4.6093669;.43909284;4.4476404;3.7849865;3.4379172;1.8001521;5.2096829;1.3373471;1.5811807;.96827763;-.13120182;-.29579279;.57132679;-.59290397;1.3933698;-1.3822745;.90457308;-.9012475;-.56629628;-.30409425;-1.4594563;1.102143;.21342123;2.3689263;.97933298;-1.572124;1.3538533;-.39490634;1.200605;.6994018;-1.0784931;.72119796;-.24808699;-1.2132713;.66296375;2.7657306;-1.779395;-.60316235;-.32246062;.57085299;1.6480544;1.728565;.93211013;2.0494828;-1.3640378;.4103086;-.17903332;.17430045;.21342719;.18694369;-.97817463;-.060398586;-2.3765016;-.52642739;.42715809;-.43428573;-.37200454;-.025207115;2.704041;2.3091629;-.30777583;-.67648816;2.7139745;3.2490757;-.17723164;1.0138339;2.5412099;2.8216805;2.5199974;1.1917875;.25207034;-3.3469827;3.4593806;.48391819;2.0664833;1.8249593;-.86620641;1.42743;.20702618;4.3116093;1.735429;-.3938258;1.7626829;-.58745968;3.557972;1.1042919;.54058433;3.646328;1.1352166;3.2142739;1.2754596;2.073945;1.402602;-.59446788;1.0649996;-.2547026;.010674488;-.52029037;2.4901628;.45025766;4.2505488;.26425174;2.6574028;4.2365003;2.0701318;2.7295873;3.3307171;45.253597 +-.64963013;1.4461819;.87146819;-1.0030361;.60393518;-2.0539529;.70906234;.34532002;.33126986;.36486748;-2.1711643;-.093801782;.73679924;1.1546178;2.2215312;.34298971;-.23702037;.25396824;1.2050111;-1.0919889;.3855387;.32896227;-.67213672;-1.5199131;-1.1123232;-.67656058;-1.2979929;-.99225521;-.23674254;.68085104;1.0237321;.59546995;.20804594;.6046859;-.073575839;-.074893042;.56494629;.50881678;-.55594456;-1.4513928;-1.357782;1.2066884;.96293646;.16136792;-.66472995;1.8671194;.038517721;-2.0517576;.18586864;1.5196087;.8838172;5.4962997;-.82991213;.027008032;3.5471358;3.6460452;-.32324994;1.1363336;-1.2606946;.72296286;-.61078346;.083464518;4.1160684;7.4888544;2.5269167;.47491074;1.1637666;3.9719038;2.177021;3.2174981;1.164335;1.7825716;.58613843;1.654933;.11587039;2.1318355;4.3071747;2.8879325;1.2814063;4.661108;2.5839467;5.2417312;-2.3139706;.76062119;-.84243876;.040790848;2.0166752;1.7674944;1.1793332;.93073893;3.2524228;-.37692142;3.5153756;1.764792;-1.5775909;-1.345677;3.1632881;1.0322623;1.2535688;4.3006711;.25712019;1.1048529;1.2769619;1.225228;-.026234934;-1.8260415;.087996475;-.15401;.17856383;-.006181031;-4.3053536;.28717643;-1.4919235;1.9235311;.34562278;-1.3868216;-.30987015;-.50641447;1.6017052;-1.5470806;.74372953;-1.8910716;-2.4096484;-.64153421;-1.4924611;-1.0625213;-.33048472;.43076876;.47057256;1.1646411;1.6826707;-.73629695;.47583517;.57946479;-.69225425;-1.8897624;-1.0446814;-.78932142;1.6226393;-2.8017113;-.86408049;2.2503476;.8032077;-.27171656;-.50501895;.95353222;-.19573818;-.69383073;-.73303461;-.91017789;.058452785;3.2458827;1.2225239;.35777965;2.3122363;1.2141547;-.45292714;.88223922;-2.2336524;.66959012;-.76151776;1.2100309;3.3020909;4.968164;1.0229999;.56238312;1.7917702;2.6143489;.95058918;2.1964588;-.22630838;1.4762971;.09176974;.45500413;1.1983232;3.1358879;2.1464224;.7646907;-.35420892;3.6957691;-.7952587;6.3367686;-1.6138194;-.78402704;-1.7128003;-1.4356672;1.5496715;.89790916;1.8505566;1.2826569;3.3633854;.336972;2.1738608;1.5973831;-1.2565371;-.82558179;.69611847;.33183503;1.2738281;1.9692426;34.506809 +-.67074454;.8467862;-.27057734;-1.0140656;-1.9421498;.22334492;-.87279081;-1.6360688;-.59232962;-.44491008;-.51333022;.62779933;-.061538093;1.0206043;-.3713122;-.0033023008;-.96334797;.60742623;-.90163279;.63878435;-.47923931;.36487436;-1.4369375;-.47409946;1.0613146;-.66427058;-.083444834;.31939971;1.1130456;-.64035583;.29353842;.43879834;-1.0351423;.19420907;1.2570126;.35447791;1.1257313;-.059362285;1.6456584;1.1423131;1.7732375;.34363303;.45639658;.26557651;1.1406283;-.53021926;.0018187967;.47379664;-.53766102;.37592039;2.3303425;4.3531766;1.2618229;3.6688728;5.5849118;2.146364;2.9902349;1.214146;-1.7433491;-.79184914;-1.9150219;2.9465013;-1.7673104;1.6465611;-2.3707242;-.40190211;2.3018367;2.6823809;1.1358527;3.2043064;5.2257934;.90557164;.97810316;.94211316;3.0703406;.77081275;.78941774;1.9593111;3.1404614;5.4902625;1.7256227;3.2666075;3.0106726;1.2453206;1.2605135;3.3063056;.58787471;-1.8730649;-.26959425;-3.1730993;1.4292475;.52152061;2.3477759;5.9114904;4.365706;2.4889405;-.40650326;1.4869578;.18168032;4.5053749;-1.9100577;-.017142635;-.8190617;-.43848556;-1.2325625;-1.7653886;-1.6943281;-1.0793064;-1.0413541;-.08705876;-.33214962;-1.1466209;.26202276;-.27392113;.33175281;2.8590872;-.53076965;-.14020081;-1.4471246;-.31740731;-.10153446;1.587813;-.51315856;-.38050523;-.76902258;-1.5206405;-1.2247266;.33752656;.48472384;.046228264;.10426907;.52937192;-1.4621537;.49633661;1.3133761;.67583078;2.671164;-.63803917;2.1160123;.86875373;.31383154;-.14626706;.093044624;1.1384063;.49075273;-.29219902;.64928508;-1.07883;-.45635742;-.36260143;1.1957468;4.6119571;.017012769;6.5334325;4.8204722;1.9858695;2.2662046;1.3316854;.067087837;-2.4105639;-2.6719093;1.1599491;-1.0545391;2.2516532;-2.4849889;.01019323;.99431705;3.4168537;1.2060765;2.4335532;2.5416958;.56255078;-.055739932;-.38139305;1.2069305;1.2897799;-.89119959;1.5244827;3.1413608;4.3723812;2.1098804;2.3235836;2.7279308;-1.0101573;1.9297084;.96178514;.72384721;-1.2695783;-1.0425997;-2.4309239;-.90068877;2.0733082;3.0609529;5.109848;3.0437419;2.1915405;-.036890849;1.3528736;.22653331;4.0155516;41.35033 +.27458227;.705715;-.027788758;1.4974515;.34819871;.59135729;-.72941953;.54393494;-1.014822;.41189581;-.99861968;1.198482;-.58519799;-.5753094;-.21315554;.47260475;-.73212999;-.80468172;.1424989;-1.0637494;.041132472;1.8746338;-.21621981;2.2200236;-.4420141;.86956537;-.59569257;-.050786395;.85523283;.58644861;.93860972;.75319397;-.67489088;.045100279;-.56670833;.67657459;.23618896;1.3995003;.20537855;1.3499875;.23279139;-.19081795;-.56836057;-.19341904;-.59427714;-1.1765857;.56208503;-.43976107;-1.1998426;.85601461;4.644753;.25936005;-.64407921;2.7116725;1.9971033;.1253245;1.1410791;3.7826355;1.7255182;1.8971751;1.9012496;-.41899753;2.2213597;2.1643593;-2.0955298;4.2854714;.89575374;5.2669148;4.3183599;2.590445;4.9680243;2.0016232;2.9399114;.91173458;.44288543;2.597614;1.8601049;.28534317;4.1406312;.9549219;-2.1958029;4.491519;1.9905455;1.3445266;4.0878148;2.3804429;5.9046588;1.7519839;4.8439527;4.0921159;1.8213494;4.0797095;1.8617365;3.4854124;.10674009;3.1125312;4.1926007;4.9069657;2.1415083;3.447433;-.2081982;1.3420619;-1.9279824;.71252465;-.71843892;.89199191;-1.6388923;1.2203991;.34709603;1.4231039;-.30266824;1.7258483;.67480689;1.0185543;-.7572245;-.50385684;-1.3472084;-1.6524899;1.9005215;-.63219237;.19047642;.93351442;.6739763;2.3193181;-.53674817;1.7884846;-.9985376;-.31582534;.89299548;.96262592;1.8077765;-.00053991406;-2.2951622;-.14069721;.93395102;.73786193;.24337122;1.2397792;.70683801;.83730561;-1.4906335;-.23898731;-1.2071884;-1.9636886;-.91127187;-2.078737;1.3626727;-1.3016796;-3.2702131;1.2345763;2.9823952;.20417514;-1.1984336;.69272822;.59200609;.30085918;.51447779;1.7389524;3.0270123;.89004552;.26129603;.93648136;3.1059184;2.0691097;-1.6158799;3.0064919;-.51024973;2.3122396;2.3771758;1.3307554;1.7515892;1.8399087;2.608918;2.2270172;1.3167946;2.1502903;1.8596972;1.309534;2.4005888;2.4813242;-2.3885798;4.0599327;1.1739327;1.472883;1.1931314;.98646826;5.714469;1.4543234;4.036397;3.0693455;1.9245994;2.6360474;.75972289;2.1593168;.06003195;2.6450267;1.8783779;4.228724;1.591941;3.7709064;58.582008 +-.87582189;-.18016849;.62414289;-.089746073;.4353784;-1.7134925;.60662097;-.6939047;.2565645;.31785631;.88426274;-1.8788085;.39008647;-1.1083837;-1.9197387;.38271996;-.57580161;1.1295885;.089096278;-.22230469;-.63283271;-.40784356;.70611548;1.6235588;1.1771903;-.9266395;1.1797246;.38134104;-.25294477;1.0957351;-1.7189946;.85497105;-.54145271;-.34808227;-.36633956;.55902618;-.16086182;-.012716033;.17736802;.86770445;-.9564814;.80659205;.74399555;.0068272208;-.12585533;-.67127746;-.31558505;.011962069;-.94248116;.87099802;.78886986;3.618202;.052405279;2.4791846;4.0405478;6.6293983;4.3064542;-2.7319777;1.3722143;.21232991;3.4963026;2.9905267;4.2045817;4.3390374;1.2242804;.19718567;-1.2339437;2.6432846;4.8246808;4.9129286;4.7960362;1.7434158;1.409513;4.9155512;4.1896634;5.0233727;-.8145414;1.8463106;-1.2990412;4.6153808;2.1284056;1.168623;2.1058836;-.54475015;.38007435;4.4091063;3.1348341;5.0649681;1.6873002;2.2825489;-1.3084323;2.4248033;.91301894;3.450923;1.6820407;3.0894339;1.3956159;-.9052217;2.9999049;4.3431687;-1.1123182;-.076700956;1.1907275;.4015016;.26437315;.72065115;-.86163473;-.57522863;1.0078914;-.11970223;1.6332545;-4.4098372;.035673432;-.23724434;-1.0713217;.79175824;-1.8389661;.38897064;.25256202;.76250684;-.1355923;-.84224778;1.3442382;.24015255;-.1788822;-.99597031;.7588256;.10622827;1.5794947;.75404537;-2.3522131;-.17815116;-.87403339;-.05071976;-1.2037745;-.52875602;.59334952;1.1383342;1.4203809;-.20013864;.43141207;1.3067055;.51718003;-.089149468;-.6342451;.8532356;-.40528798;.58566701;-.46296531;.98004532;1.062415;2.3746872;-1.3194755;1.9778715;1.6005633;3.4595113;3.2067025;-2.8035264;2.0150716;-1.2009866;2.9401364;.76897413;1.8743615;2.5071023;2.9948351;.10142138;.22084731;-.021784632;.90961599;3.7421894;4.9402618;1.7675461;-1.2817024;2.2119055;2.9359682;2.3210545;.58520716;1.3374182;-3.0119469;3.6665578;.42086098;1.4067465;1.484111;-.81300628;-.1128727;3.1793306;.27218756;4.2372904;1.326993;2.5049376;-1.3253011;1.8819329;.5037325;2.7463119;.65586567;3.381284;2.4652712;-1.3279552;1.5372695;.92973453;60.184494 +-.43408009;-.53021663;.4565022;-.99045134;.99673754;-1.3763597;.41694689;.51245505;.59364772;-.10498285;-1.2105191;-1.0725584;-.51742297;-.14236431;-.80270898;-1.7442091;.071537755;-.42032734;-.16135165;-2.0793588;1.0112915;.97367454;1.0459902;.65547085;1.5012194;-.94183987;1.4920093;1.076406;-1.1818064;1.3817503;.98631346;-.14857164;.95075411;.2423503;-.17503139;-.26813713;.65860426;.11529373;-.015450549;1.0086391;1.1139282;-.24047028;.065171957;.19866335;.088348038;-.29345599;-.41396627;-.68330771;-.061589234;-1.2702866;2.0365143;.41819727;2.8992188;.91108358;3.1208849;-.88849777;3.076371;4.6556849;.7345019;4.3745008;4.6076722;-3.0352805;3.337703;.6929056;3.1867797;-.062566049;1.7783288;-1.4386975;4.9987617;2.102066;1.4407353;-.33280402;-1.9208813;1.4511838;4.2191844;2.5535429;3.4558444;5.318615;1.5800831;3.1825457;.80309439;.64755899;1.3015006;1.7552615;2.2607448;4.9403853;-.62155342;3.4785409;4.4655304;1.8993136;.5265426;1.5150073;1.7085586;3.4540308;-2.2470236;3.3536942;-.82503599;1.9369432;1.9172745;.41705495;.015175587;-.7681886;.15509023;-1.4948293;.87175393;.10472013;.50286698;1.5024204;.020308372;-1.0595222;-1.871688;1.3759732;-.52184051;-.89695251;-.27888209;-.40537518;.16523981;-.39878047;.00046082138;-1.1591703;1.386097;1.1646965;.68823177;2.3503494;1.3393756;-1.7069659;1.3012291;.53420335;-.82841253;.16325167;1.7275249;-.30014545;1.1947825;-.13365342;-1.889683;-1.3670777;.57228297;-.4429512;-.14635669;.78028768;1.3691509;-.85572475;-.15473202;-.28068706;-.05638377;-.54892182;-1.136446;-1.2877606;-1.0834558;.21726547;.48783353;1.9561969;1.0913659;.0078589944;2.5947437;-.9677211;2.1641757;1.7484231;.98776877;4.9998145;4.3576641;-1.7634966;3.7194254;-.49528769;4.2758799;-.53359699;1.8371642;-2.8861122;3.929687;.84865499;1.8466147;.74510568;-.30646002;.84602708;2.455801;3.0975897;1.6574098;3.8783841;1.1274631;3.1630185;.24188656;-1.4964446;.2650333;1.4782791;1.0146402;2.5157075;-1.0192192;2.8137968;3.5599;.4579809;.86642581;.38562369;2.3929114;3.7358127;-2.9367125;1.4692549;-.034351788;2.4740603;1.2087125;-1.7126456;40.803215 +-.46553141;.6755532;.90353453;-.74764848;.96850652;.31846771;-1.2966316;.182804;-.58333898;-.28668022;-.32904062;-1.2030144;-.073520929;-.65690905;1.0903155;1.5505855;1.4749573;-.63518792;-.30987906;.26724219;-2.8725872;.19410726;.86316311;.6103425;-.6465525;1.7183094;1.1121159;-.36787832;-.62114996;-.40000165;.83533257;.51888293;.80382943;.38613728;-1.4485377;1.2488986;1.8886011;.76508069;.22059448;.81619853;-.2734023;.45098001;-.56392074;-.41468331;-.24122646;-.79420769;.035589434;-.54829717;-.45906058;.44161648;1.3578717;.83805597;.8985551;1.6630234;.14402872;6.5077753;.47714263;1.6718727;4.9545593;3.056004;.51442695;1.4850457;1.5358909;1.8115181;3.7382119;4.8529515;3.3704257;2.4709897;.51304168;1.3303062;2.7356381;5.599288;-2.3399189;3.6465683;1.11917;1.3446467;2.0416703;2.271899;.89675635;1.6654816;1.9797276;1.2578093;3.6182578;-.78763252;-.42313227;.2951749;-2.1172397;.42406017;2.8910589;.52550972;.58219951;-2.4212842;.8581714;-.03223915;2.9960256;1.3527811;4.9255519;-1.0118248;4.9256358;5.0989738;.31321791;.31385624;-.1685974;-1.2989318;-.048578862;1.8610877;-.028891413;-.93073195;-1.2242683;-.81080306;-1.417785;.08506342;.14145324;.78314608;1.4547822;3.343739;1.7197239;1.4809575;-.39760771;.47597906;-1.2475302;1.0331279;.523399;2.5949178;.56369025;-.13796261;.11894462;.10155031;1.1869019;-1.7984518;1.1474324;-.56381071;.43242487;.43304259;-.98828733;-1.1721351;1.1133716;-.41991672;-.39695564;-.10712998;-.85568023;-.68937474;1.6532694;.64150608;-.41782549;-.22336745;.31601375;.26887715;-.75606716;-.67094785;1.4521559;.99787778;.87412751;.71306264;.88441032;2.8990977;-.17134681;1.3065249;3.7750821;3.142266;1.0701702;.030962005;.5830304;1.897992;3.4974813;2.5866303;-.14643614;2.6900272;-.59924525;2.6727517;1.573047;5.5690742;-.80386961;3.7989938;-.093228467;-.10579918;1.8030835;2.6825926;.72086519;1.4624983;2.7919264;2.6169717;3.4409566;-.70397574;-.21923336;.29893452;-2.8004267;1.5945117;3.2150187;-.19751608;-.043465681;-2.9268019;1.2466706;.86619109;.42943498;1.5284978;4.4141841;-.08402741;5.1180501;3.7455647;49.439869 +-1.5499299;1.8086934;-1.1258321;-.69692916;-.43891627;-.31634146;-2.8277552;.2016982;.013925819;.63743085;.87645072;.17839943;-.35395733;1.3890049;-.52093744;-.0027408407;.34561062;.80550462;1.6513805;1.0164679;1.3454667;-.33074096;-.66896033;-.91728538;-.1210983;-.21178328;1.7691809;-.37831312;.012185632;.30882764;-.25996062;.4046095;-1.0618888;2.9336109;2.1946237;.9784826;-.090247333;.0029997309;-1.5993876;.33636767;-.31234518;.40213609;-.91676283;-.050282318;-.8337521;1.766426;1.1287693;.9660365;-.64766884;-.19435522;-.35111895;1.4380186;4.3579822;2.8381562;3.0736251;-1.0222813;6.3845005;5.563272;.53412145;.25794014;-1.5040998;3.1122978;1.2525576;2.3399887;1.8332522;-.27798775;2.4424889;.59373224;1.9707785;1.4611157;2.0956306;.138263;-1.7567492;-.50816643;1.5272533;-.01161769;1.3097709;-1.1556489;1.0777197;-.38418266;2.1875527;.71762258;3.4427395;-1.0782003;4.3334875;.72619295;-.56808859;1.2462978;3.066205;2.6231115;2.9067914;.56981128;3.2576466;2.1322517;1.017027;1.6876717;2.1895552;.94557106;3.0344107;1.9538916;-2.382745;2.268826;-1.3890725;-1.1697787;.54621375;.69285852;-2.7881024;.4726164;-.087511837;-1.3520532;2.6144478;.24416915;.50181609;1.075106;-1.13714;-2.5178947;.31860742;2.1011951;1.2074859;1.3709956;.80066526;.35579249;.43360406;-.89417064;.40828431;-.17161655;.0066585117;.045586661;1.0860949;.069062106;-.14728871;.78363699;-1.2436622;1.929834;2.3654068;1.4933288;1.4607359;-.63147974;1.6205651;.42295894;.69341832;-.64237207;.24786213;-.17539175;.0028392598;2.8480096;1.1169968;1.2707701;-1.0517646;-.48006871;-1.0791689;1.4689908;3.2464662;2.1481268;3.0798106;-.4642714;4.665431;3.9815295;2.5803688;1.7239213;-2.4993322;2.7547548;.29528666;2.7852292;.47961682;.55647194;2.6910751;.45756361;.19666067;2.5100491;2.0258572;.67144597;-1.0168982;.11138154;1.8744348;-.42728797;1.7150339;-.3041943;-.77019876;-1.4591081;1.5829506;1.317566;2.5374765;.39433596;.92518657;-1.0665274;-.18519986;1.3527758;2.9403358;2.3377981;1.1184326;1.2934169;1.6340503;3.177381;-.046620462;1.0301888;1.8800529;1.2773162;.13240391;1.3329866;40.36768 +1.2121327;-.44466364;1.4954437;-.56459683;.27495894;.7312687;.050482161;.46646953;-1.0448712;-1.3585628;1.7562006;-.021412181;.39352173;-2.2971706;.79043031;-.694529;-.37331188;-.46309721;-1.6833098;.27117887;-1.0769541;1.4485992;-1.1424013;-.3886933;-1.4030858;.15575925;-1.1992738;1.030629;-.41755494;-.47401792;.67583227;-.49504048;-.094156794;.21262495;-.64744085;1.3777528;2.559505;-.048865415;-1.9807565;1.1656911;1.5178325;-.2608768;.19203933;.16937371;-.69568419;-.57436162;-.3190228;-.039295245;-.051013213;-2.153532;4.7959232;.75394648;2.524883;3.7413054;4.6832271;-.098214872;2.0946825;2.1449735;1.7684522;-1.9052768;3.4493558;.18730249;1.5085355;1.8016738;-1.5092252;-.024716172;.68505442;1.5788932;.71734744;2.8110485;.48323116;1.6723838;3.8417695;2.4442773;1.9906477;-.54884082;-.87766141;1.2433339;-.72863501;-1.3302295;.74551791;1.5870556;2.5040188;5.5909996;.18898685;.80557805;2.1635542;.69600743;4.0653691;3.6186309;5.2128491;6.5332551;2.2744536;.4299612;2.934123;4.3870177;3.6033103;.080897175;.35836133;1.5728654;.48279068;-.68559402;2.1035314;-.88417029;3.0079412;.013917989;1.024093;.072140872;.70565623;-2.6798995;2.0518045;1.2041713;.31351939;-1.8730729;.8698771;.67759216;.92954725;1.6211095;-1.7361037;-1.112311;-1.1123283;.64688015;-.57719105;-.053005539;-.73334467;-.082500324;.70052487;1.7745676;.48917821;-.84594864;.1888238;1.085461;.712286;.92695242;-.76014411;.30218235;3.0696332;-.21260872;-1.4476376;2.0034764;2.4586861;-1.0127177;.95844549;1.0938358;-.1895863;.34921092;1.1662139;-.37583455;-.11247589;-1.9607174;4.0277734;.44110039;2.929836;1.7783917;3.6594634;1.0747443;-.59815466;1.6453202;.35841346;-.91684383;4.4620342;-.90899622;.67999089;1.1362231;-1.8272574;.4447282;-.074023314;2.1300106;.8420617;2.9751232;.93100405;2.2544339;3.064877;2.0418189;1.6184217;-.69761962;.18071023;1.9088264;-1.3551371;-.63446891;2.0646489;.33067769;1.9980972;3.187103;.90631205;.087498702;1.5549974;-1.523151;1.9696403;2.8523321;4.4576859;6.2014737;2.9562271;-.46137825;1.2829233;3.294626;3.2936542;-.64557564;.30967551;1.0445513;44.573383 +.95612729;-.63662493;2.6418805;.012419061;.59803933;.51712489;1.8148504;-.16736531;-1.628739;.30279264;-.62673885;.68459564;-1.0167435;-1.1118416;-.86333895;-.31207931;-1.114375;-.48186809;.86664826;-.15748447;1.1916668;1.1383785;1.2926683;.97759372;-.50197631;-1.4590046;.83061498;.019341441;-.21876243;-.39306641;.72626358;-.33081314;.84799564;-.64412314;-.17956328;1.6061783;-.11380269;1.6967138;-.084642291;-.09526173;.91562134;-1.0407608;-1.5628417;-.71889013;1.5072041;1.3034964;-.61503184;.62458909;-1.0601083;.15408088;3.8054485;3.3465645;.58600271;.12423898;5.8332043;3.2638958;1.7881616;3.0965812;4.8466449;4.2159915;3.7882609;2.8444827;4.4996142;1.250365;1.4016606;3.5655978;4.8745909;-.68947017;2.4008408;5.7026091;1.9655614;.4914546;-.93458736;2.5856407;5.6452179;1.046044;.99963623;2.299083;2.4874887;5.9076743;-.34971103;6.9799271;-.59023499;-.60512787;2.3145847;1.9501886;1.6643045;-1.378353;3.6758866;2.4485641;.89604449;3.799387;1.8006828;-1.4853516;-.065310448;2.8409753;-.76471752;-2.0212185;-1.0080314;2.3757706;.82912141;-1.3729944;.99464518;-.30847868;-1.1330671;.39139873;-.28760311;-.76721269;-1.0929404;-1.1991764;-.53413546;-.12509935;-2.0084925;-3.2862518;-.3915337;-1.1356959;-1.6654208;-.49168789;.79966801;-.072355784;-.16909939;2.1458814;1.4560055;.34636873;.65736127;-.72522914;.23337768;-.72360319;1.0902733;-.60682541;2.270324;-1.0110631;-.37679744;.51530117;1.2832482;2.0574627;.63709307;1.7110461;.040333744;1.0363575;-1.6714672;-1.7178272;-.027703134;-.18597111;1.1895914;1.1767269;.55693829;.63306099;.65609366;.92920011;3.3849936;3.4991012;-.62938488;.47038865;4.6625085;2.8662279;2.434386;2.8714221;2.4729223;2.3879206;1.2530855;2.0091293;2.2059751;1.6125816;2.8971114;2.1531241;2.1156299;-.72130656;4.0584974;4.9139824;2.5781395;-.80618495;.1469896;2.5034008;3.1336524;-.47395533;2.3107767;1.9914618;.28828934;3.7669919;-.50838816;5.5616188;-.45905954;.96403337;.14041649;1.5249329;.48818338;-.45825458;3.7317932;2.5784695;-.50038582;3.352807;.78140426;-1.6621464;-1.7047129;.93234736;-.047352552;-1.4771955;-.12627645;2.7667465;57.623577 +.11026861;-.66738784;2.0133991;2.1435113;1.8474104;.81124651;-.36748186;1.2123511;-.33375502;1.8078833;2.1589978;.20693974;-.046338186;1.0775352;-.6866895;-1.6518239;.52395427;-.23568051;1.3730681;.33338761;-.081937313;-.020047942;.23190376;-.35883358;-.29330397;1.2372901;-.58071601;.070868805;-.71849525;.19678818;-.43505892;1.3723854;-.4341071;-.67719817;.66846806;-.65344036;-1.7969033;-1.175543;-.41738185;-.87983507;.58285177;.83682835;.079619087;-.14613818;-.6469624;-.25316936;-.9825002;-.7877987;-.92927688;-.35855335;2.7934053;2.2556312;-1.3917162;.48505712;3.4841852;1.3695327;-.15446681;2.3970187;1.5657523;-1.1777998;2.637501;-.43170384;2.628047;4.7051558;1.2697452;5.9683824;4.0388598;2.0796854;3.679038;.45117581;2.8216584;1.2822602;3.552532;1.6466895;-.64455605;2.1196778;1.5915208;3.0659764;1.3722546;3.5639162;2.8736558;3.081166;3.0493495;.77592576;.77530128;1.7300074;2.9799595;4.3078914;4.9686017;.90250623;.31387565;5.6203699;-1.7145665;.98290479;1.3212788;.37311721;-.76494187;3.1812384;2.9985974;1.8923576;-.049476102;-.4536548;1.1898444;1.8507246;.68510675;.36091396;.50523859;.43035004;-.98314172;2.6883111;1.4797553;-.29397452;-1.0088344;-.15685868;-.44610184;-.5996483;1.1388133;-2.1238167;.18531096;-.044183947;-1.9744148;.86447769;.41164207;.99697357;.57519227;-.11002522;-1.6301765;.96261799;-.72074682;-.96467334;-1.6101385;1.5969527;1.0598031;-.090701342;.75609207;-.010256643;-2.2470608;-.16886535;1.2256438;-2.3357191;.41160607;-.088509053;.068756364;.55689085;.032927368;-.5153423;1.6064764;-1.1996895;-1.8757914;1.0826603;3.0552459;3.1544902;.086214267;.54263842;2.7573497;1.0204442;.087015659;1.604576;1.6877419;1.3830864;.32871902;.41362789;2.8930221;4.9386244;1.9600846;4.6542058;2.2115402;1.357077;4.0215344;-1.3716735;.7237193;.26179436;2.9003229;.47364786;-1.1494179;.16253641;1.7954694;3.4815631;.93065113;2.5611656;2.8835697;3.0078261;1.9763789;-.33290017;2.3799672;2.3343627;2.5518029;3.5514941;3.4016843;.66081113;-.92012089;3.6059194;-1.078582;.53859669;.56868243;-.036287263;2.0266588;2.8242035;2.1776817;1.9107815;55.175678 +-.36654252;-.39309418;-.6325323;-.26630557;.38672385;-.10570005;-.1695295;1.5372164;-.30693915;1.0428578;-.52609599;-2.3513091;-.012262078;-.51795256;.33153698;-1.5659643;.88056725;-.66257048;1.1925579;-.27802548;.48615715;-.33039853;.95529926;-.76178646;1.0099578;-.51578748;.76589435;-1.0925039;-1.152367;.1275225;1.7282487;-1.2680761;-1.8614993;-1.6147723;-.73914349;-.20705293;1.0536408;-.86550665;.36173567;1.2252172;-.23514695;.38245451;.11627065;.64801961;.69193566;.68583727;-.64080733;.64916992;-2.5014875;-.80060697;2.6338165;2.0020614;-2.3073499;-.92366046;3.7276919;1.8559762;2.110106;2.4253483;2.5868638;3.2192917;2.6746323;.7946384;1.1826277;.35662159;.32097724;.55536389;1.2601416;2.8382745;.82501191;1.3033237;1.6882068;3.2341394;-.98997277;1.4075419;3.7960732;.77689284;1.6160361;2.9473891;1.4991183;4.1323824;1.6521237;4.7669444;1.530333;1.2423345;-1.2846928;4.7023726;-1.5838872;4.9398408;1.7893411;-2.3793321;-.79134983;3.3254952;-1.0599219;.28720403;3.7188098;4.8215256;1.2772883;3.9454246;4.1248136;3.0494225;-1.3657887;-.24632065;-1.6128563;2.2097242;.0092799701;1.6483381;-.0069938977;.69407892;-1.2485009;1.3661906;-1.084219;-2.9507482;1.2116333;1.4606411;.82818168;.34838608;-1.7765793;-1.5178536;.98243767;.59231603;2.1413786;-.10236001;-1.2710171;-.079264328;1.0691012;.034157883;-1.5633966;-1.9365185;.46663925;-1.2597032;.46178472;-1.1463886;-.94032395;-.61202252;.68914145;-.88871908;1.0234329;-2.2100964;.59737593;-.083872221;-.91960675;.98482293;.1252659;-.3527976;2.0479863;1.1687707;-.44285962;1.2157367;-.88679123;-1.936121;2.5079458;2.849468;-2.2221632;-1.4793493;3.2348874;1.0480269;2.5302734;3.4523511;2.0332923;.68523842;2.2546494;2.4879296;-.51182264;3.0855045;-.19626538;.31193775;-.79584312;2.0544612;.27658173;1.6817338;.92395693;2.7679451;-1.0832609;.67404288;.50506461;-.87449753;1.1948984;1.8750857;1.3542128;2.9648027;1.8691633;3.4634957;-.72534138;.14525446;-.94372964;3.0314782;-1.3577845;3.3630855;.9360624;-2.0949829;-.17150189;1.7837651;-1.5907009;.17710389;3.6858013;4.1829205;.32746196;3.6969366;3.5426738;2.1663518;45.931042 +1.5105984;-.76164985;.68514919;-.45860839;1.3790315;-.32546356;-.13090521;-.75238961;.54162055;-1.2464496;-1.9041135;1.2435393;-1.0966148;1.0791525;.66784954;.1915004;.67019355;.35088626;.48450971;-.9768616;.030701833;.3680864;.8131569;.79255164;.2959713;.68110019;.01306451;1.2738389;-.51421362;.32887834;2.5235322;-1.4814755;-.15200561;-.38859329;-.71722174;.83804965;.39426544;.23754236;-.2727553;-.32719335;-.22931565;2.5744569;-.24977584;.61994129;.65207976;1.0281607;.54175204;.54977751;-3.1550479;-1.2809353;2.6615951;1.6281819;.66826105;.92286807;2.6789591;4.7119722;1.2967753;-1.4697399;3.0624897;.27689594;.99348736;1.9631364;1.3032498;3.2585857;4.7703261;2.7128563;.38022372;2.715718;2.9826181;2.7603002;2.1703734;-.8564139;.92879051;1.4703206;3.6353931;-.6808908;-2.1186779;4.7969294;1.6950086;.51887226;1.9146311;4.2688003;-1.6972934;4.081708;3.8885849;1.0591543;4.2188163;-1.2015874;-.39857373;3.0256672;.61502093;1.4792498;2.0162783;-1.2318345;-.077832893;.64893687;2.1642833;1.4246089;1.8877456;4.0204096;.94719666;-.96972394;-.27892837;-1.0496029;1.8150518;.8943463;.42639723;-.433727;-.53173447;-.22175366;-.21268749;2.7284603;.95586693;1.5894871;-1.3452647;-.70626605;1.5523829;.54456377;-.42397556;-2.0003128;1.0633373;.3929266;-.28097504;1.5180459;-.57578945;.16753915;.014273983;.1888717;-1.0679435;2.0462844;1.0891457;-1.3441479;-1.5643833;-1.1271809;-1.8739653;-.71948671;.65019435;.4492656;-.8168335;.79022795;-.85216486;2.4159365;-1.6286889;-.95139879;.019994298;.64288241;.91234124;1.5059409;-1.1820061;-.56316471;3.619077;1.2235003;-.3822667;1.0280671;.54021603;3.0559852;-.43452671;-1.1167413;2.1354499;1.737417;.59906524;1.5910779;.28042436;1.9878068;3.0567751;1.4144379;-.40096998;1.3218578;1.7802246;1.1173229;1.1227071;.13517587;.78412467;2.1536291;2.6379766;-2.3474863;-1.6635081;3.5691855;2.8053677;.17990515;2.0407877;1.9936944;-2.3294923;3.8748701;3.7194901;.19192104;3.3837137;1.0111426;-.99053067;3.3057156;1.1667197;.45721057;2.0545292;.20501018;-.93337268;.16025791;.58379197;1.6002959;.3470735;2.4209106;44.554043 +.27911785;-.015812444;-1.387431;-.8897981;-1.6260208;-1.0053717;-1.1203312;1.7789664;-.40069148;-.39191192;-.68523425;-.097623654;.37593153;-1.258345;-.95159894;-1.9637971;2.6904612;.57795596;-.26074544;-.054588158;-1.1083814;.62357318;-.46076941;-.32739767;.34666854;.69703746;1.1873652;-.44322202;-1.796275;-.45047581;-1.18978;2.6780734;-.80992728;-1.9314181;-1.3964843;-.50368708;.20021413;-1.3146647;.91170269;1.1254706;2.032068;-.83478343;-.041580871;-1.4866203;.43675336;-.46096548;1.1828284;1.6255579;.21096863;.53114563;1.7470309;-.58235961;-1.0993726;1.9538866;2.2525618;-2.2275205;1.3796093;-.3819761;3.9124672;2.1510177;1.3940303;3.8761959;2.7765963;2.3301873;.31069645;3.0636842;-.50293076;3.8042309;4.7994347;1.7518928;1.8630797;3.4935677;2.9892614;2.9332986;3.3639936;.37365797;1.4061395;1.7013482;-.38053691;3.0691864;2.1900003;-.60663933;.81042039;.045754239;-.83478588;3.7702696;2.3230617;2.9186301;5.4432473;3.2446868;-2.0917749;3.0706522;3.2184858;-.70680326;-1.3140626;-.26918888;-1.2541981;4.5711765;1.0517312;.62565082;-.20745455;1.8676715;-1.7727348;.48258927;-.83270723;-.8023572;1.2518065;3.4408195;.71825778;-.011273061;-1.8917361;-1.3352208;-.28098661;1.8917553;-2.0162201;-1.5997072;3.7804825;-.44807062;-1.6207255;-1.3661952;-3.461803;1.4887513;-.3932704;-.36798364;.17871082;1.2112097;1.5022784;-.65951377;-.80026686;.02566064;-.54751533;.47934356;-2.071924;.033157986;-.77913642;-1.7466069;2.1153829;-.51395571;.68831557;3.0321295;2.0810344;-.86711574;-.60179269;-.87086153;-.092540942;.051874753;2.2270842;1.8377101;-.47391924;-1.222192;1.4153813;-.5722639;-.39017105;2.2225537;2.4961689;-2.0368297;2.3802807;-.72721434;.90376276;.67044336;.014042485;3.2607143;1.4318196;1.1175309;1.629388;.6789819;-.13533325;2.7791102;1.6757225;.79203069;1.1852719;2.2382209;.98418832;.93308526;1.9063805;.76719475;2.0053978;3.5065262;.96667707;3.2155073;1.9512819;.51565278;-.59176409;1.3714765;-1.8742211;1.8311962;3.0902433;1.7970487;2.8090732;1.1591059;-2.1423585;3.1265883;2.4615726;.066571325;-2.0703073;-1.1784651;.68556708;2.4273634;-1.1166786;.0046364283;40.372517 +1.6814461;1.6464456;.75905687;1.1740392;1.1505046;.14825712;.025874643;-.060918175;.94422776;1.8255833;.56860512;-.049054861;.95674789;-.49580348;-.10442793;.41084471;.32966381;1.1664933;1.1659703;1.3875723;1.1011575;-.13260488;.55844474;-1.4792643;1.7175782;-1.000743;.50051194;1.4233952;-1.8243958;1.8728889;.48288283;-1.0113631;-1.2033879;2.0399287;-.47178963;-.16947098;.56394082;.8866201;2.130558;1.2564141;-.55548143;1.998374;.65358728;.52310586;1.3982701;.24643369;-1.2076313;-.30608514;-.7156052;-.051853798;2.6186061;1.6174388;1.8019197;1.8221844;2.6973445;1.2287884;.084078118;1.1895359;2.4291184;.49287492;.012127824;1.9910482;2.2219913;3.2533584;.61003387;3.9424353;3.316853;.55403095;.55496836;5.1024866;.75313908;1.1692892;.40135354;1.8364038;2.6904349;1.0254294;-.17396587;6.8016367;3.4913449;3.2219315;1.0496211;6.3249202;2.1350091;1.8263389;2.1213548;.0053988597;2.556572;2.9448068;1.0305911;1.7970549;3.5650401;-.64812303;4.4503493;3.9265518;4.3883643;.55757445;2.6922829;3.1613653;1.1878819;1.1922715;1.8212693;.073439538;.12919654;.95272732;.4545368;2.0943124;.49143961;.51023525;-1.0166225;.66600507;.61659288;.60626853;2.9029269;1.3137771;.060317151;.22130719;-.7004627;-.083796211;.86359388;1.1363363;2.3018241;-.74061602;.83209252;.0368113;-.84586978;-.31891584;-.47974464;.10428674;-2.3791702;-.63058496;-.11017781;.37725541;-1.1128907;1.7291254;-1.6237619;-.3533794;-.084778711;.47876325;2.628274;-.39822122;-.1057215;2.38498;.50927812;-.40566826;.95357609;-.53145027;.15958759;-.76210684;.41265178;-.40081003;2.5492833;-.64707619;.36871603;-1.8001339;2.7406578;-.82963103;.49660465;.71312022;2.3990927;-.081176572;.17097178;-.18009281;2.0387659;1.7469801;-.54381669;2.633348;3.2817419;-.093603209;.32665324;3.5834901;.78051776;.39150691;-.52319103;3.1213653;1.2479335;1.3924295;2.161993;4.9688749;2.3812912;2.0506551;.0093676727;4.4491682;-.56438446;2.4412193;1.3153589;-1.1347805;.59860188;1.9194266;2.2695036;2.2325945;2.2457139;-1.8040462;3.1146057;3.1847818;5.3741741;.094666593;1.9172553;2.8267112;1.0929627;.95993477;69.24527 +.30078307;-.12801836;1.5714601;-.93094516;.59209174;-1.0144403;1.833022;.12966959;.7899493;-.67587936;-.22866282;.35180697;-1.1656612;1.5833457;1.0734857;.55862582;.26342669;-.9203552;1.2880189;.088547289;-1.2675289;-.13351735;1.177102;-.55466956;1.9653541;1.115122;.67552972;-1.3754752;.66668075;.059647903;1.1871711;-.019711342;.85444504;.59940135;-.5992195;.30206013;1.0416603;-.72867054;-.95298064;-1.0876513;.99252141;.57825643;-1.6172352;-.35536197;-.5727874;-.95412558;.70768148;.15697084;2.0805271;.75620681;1.938239;1.8839005;1.2786449;3.6684027;-2.9724557;3.5159669;-.070166387;2.3471491;2.5336001;2.2962365;2.6277392;3.0871904;2.6702142;2.3006933;1.8391016;-.67847449;-3.2822137;.42998576;3.5537803;-.16162506;-4.331778;4.0791044;-1.2034651;-1.8775878;-1.1427605;-.22327635;1.6497368;1.2402287;-.69202042;4.9620495;3.3599331;-4.1940985;1.1793779;5.7398162;-.80141687;1.5945975;-2.1437733;3.4186845;2.4769168;3.1984849;.6886977;1.842041;3.1952465;6.7697711;5.2584395;3.3081765;.44317505;-.77492857;.81027281;5.7599268;.011048587;.36302528;1.1109303;.72052813;1.888319;-1.2095741;2.2467706;1.174382;.65939778;-1.5929527;.26567596;-.39026365;-1.3548541;1.4437312;1.2070936;-.063733719;-.32842508;-.41813123;-.75634068;-.5597629;-2.064693;-1.3374817;.27896982;-.79560792;2.7201011;1.2325143;.87996244;-.09756618;.52763492;1.1322303;.056083884;-1.1812224;-.94562525;.32247037;-.23308195;-.58126849;1.140525;.50961947;-.6462515;.08005596;-.33988497;1.8529238;-2.0156424;.033595718;-.08684212;-.34593999;.11002737;1.8089124;3.3750272;-.60839939;1.0459791;1.3928808;.71796238;1.2597026;-2.808527;3.2428238;1.4578357;2.6588113;1.2856563;2.04197;1.7311354;2.0887213;2.9772339;2.895061;-.44332838;.31463167;-2.8174818;2.3480711;.40693411;.31028885;-3.9797769;2.9740345;-.82788759;-1.5514069;-1.5355428;-.42579415;1.4803327;1.5665716;.36416239;3.6405871;1.982347;-1.7592856;1.9268246;3.8207588;-.19994606;.75532162;-2.171437;1.0720038;1.453388;2.9584792;2.2097132;-1.8334156;2.1414146;4.4660254;3.274704;1.8803269;1.0517131;-.22741434;2.0657709;2.7473431;48.295258 +.29341906;-1.3082922;.93245924;2.0740969;.039508298;.33150458;-.71780479;-1.1805803;-.54923195;.18164466;.92835057;1.0637749;1.3982853;.32107478;.60637486;1.7803389;-1.0833833;-.013442833;-.59876674;-.80726391;-.87449855;1.9909723;-2.3947394;-.3319295;-.38054827;1.6944399;-1.3589678;.59063637;-.1389199;-1.9209986;-.27381319;.67514879;-.34651014;-.81505042;-1.1137954;-1.3307962;.9505145;.89907598;.31969649;.33130419;-1.2210299;-.15780042;2.058543;.4374043;.87333721;1.6889389;-3.0475419;.44973212;-.32372126;-.84895885;2.5398569;1.0168633;1.054193;2.3596978;1.7380726;4.6482973;4.0241818;2.3141158;.89700246;.2165435;3.6085138;.77303046;3.5638642;.42657292;2.2270687;3.3015058;1.0861139;.99116158;3.2550616;2.4798331;3.9500017;-1.1383998;1.228182;3.9727373;4.7312889;1.2276734;3.9191241;-1.9291815;1.7015188;.59337872;2.7073832;.35567081;3.9893968;1.0649633;1.0851667;-.48487368;1.7551638;-2.5284884;2.9151747;2.3869338;3.2020087;.016024003;-.50654989;3.1401079;3.0887403;3.3170865;2.5794756;1.0942491;.78298652;3.2278728;-.022745462;-.043939907;-.90213203;1.3170689;.71963364;-.70773321;-.52181083;-1.4620417;-2.4131665;-.15511066;-.64445853;-.78340602;.58492309;.4888922;1.9156687;1.9929793;-1.2691102;-1.4472809;-1.4000894;-1.750695;-1.2840458;.046617713;-3.1221101;-1.6565542;-.11591197;-.53664494;-1.8966202;1.0271873;-.55432445;-2.6555977;-.55293334;1.4946554;-.025689641;-.97386378;.45309258;-.56102902;2.8025441;.092366025;-.70635909;.092359617;-2.0273035;-1.499536;1.067632;-.51055026;.023712724;.0879241;-.3604908;1.114915;-1.038595;-.53814846;1.0311245;-.49708456;-.27814373;1.719946;.081249654;4.4939418;2.1681099;1.4669967;.82617497;.32349449;2.9633605;.63071072;2.9101346;1.974878;3.1135499;4.3060684;-.8122111;2.0939701;1.8533407;.029534737;1.8523548;-.68032122;1.0538094;2.7904706;3.2507753;.064441897;2.88274;-1.9562397;.4037219;.96408087;1.8977414;-1.5815704;3.4901633;-.18732105;.28979909;-.63701832;1.0136851;-2.2942877;1.285812;.77474481;.28870097;-1.3138022;.35486364;2.1530137;1.7369233;2.2562287;.31904891;.99047714;1.3862495;2.5775113;38.358665 +1.1019808;.10779773;-.43627039;.15355356;-.6327228;2.2483504;-1.7136966;.070612542;1.7762805;1.030188;.64605224;-.54186857;-.027191153;1.5792836;1.3840573;-.34106421;-.13432199;.34891894;-.086143091;-.75059927;1.6441959;-1.3058898;.59071147;-.39855829;1.5818235;1.5781715;-.17715813;-.86414427;-.21887945;.22157039;.19071198;-.26908094;.13840576;.47131154;-.28004548;-.25099847;.18995334;-1.6222742;-.69534832;1.1010687;1.2058847;-.3058444;.61531466;-.51580453;-1.9172403;.81034762;.34912631;1.2928821;.20438629;-.53035682;-.73007524;3.2198105;-.34847358;1.5863329;1.4765968;5.350564;1.4808276;1.8680426;3.1625206;3.1721106;2.1504033;-1.6190617;5.3335757;-.40485501;2.5334873;1.9578214;4.8269205;2.0106993;1.791678;-1.0494437;-.18092586;1.820331;-.5705747;1.3588284;5.0995016;7.7457476;2.8218153;3.2893727;-.97343171;2.8405991;2.0043776;3.5604818;3.1420467;1.4345328;1.45479;1.8245552;2.9428983;4.5177884;2.2856474;3.0224788;5.9955115;.85831541;1.1540051;2.4972751;1.3809216;-.10750999;2.4996924;2.6620159;2.7474782;1.4615054;1.3801605;-.77718729;1.0554624;.59382433;-.21882465;1.2245386;-.52639061;.43654689;1.7115972;.68741822;.37368712;-.53736079;.7755093;1.9102035;.9057343;-.2136827;.80163902;-1.1921029;-.25845101;-2.2872369;1.9861339;-.61463165;-.53000897;-1.0326992;1.8516164;.25960842;-.6414029;-.18842086;-.5600574;.24807963;.63793701;.43020847;.62867153;-.37474757;.33935109;.83116078;1.9801203;-.59520096;.98610002;1.6158856;1.1604925;-1.0341808;-1.7299589;-2.6086786;-3.061074;-.1741939;.24462636;1.8078268;.85830641;.15279894;-.39173913;2.697284;.30630884;1.4274071;.84257817;4.5248342;.12365388;2.0568163;3.310256;1.6176224;.27817154;-.44997671;5.1198397;.76637781;2.1620355;1.4815578;2.5714571;.46651351;-.15747938;-.76830655;1.2556944;2.3120303;-1.7268537;.68175942;2.5901265;5.9439807;1.4383935;3.3318729;-4.0850959;2.1407812;.60379702;.83074325;2.3547387;.08811412;2.0802829;1.5571896;1.1465518;3.5897491;2.0787082;1.370234;6.4184651;1.7762067;.35066009;.68941885;.77518481;.60454136;1.769779;2.0409315;.92881167;-.119475;52.056564 +.87243479;-.071055152;-.1749223;1.2834139;.49729037;-1.0780838;-.59429657;-1.841782;.40310404;1.4643271;-.9780212;-.41129053;-.81021017;-.48756951;-.4297905;-.87142247;-.46145162;-.15419386;.23354758;-.41542366;-.78789163;-.13994944;-.33437297;-.79911435;-1.2738744;-2.2139013;1.2864442;1.4563071;1.122378;-.20058113;.60496271;1.3917961;-.18706979;.072639652;.86972076;-.6023472;.85027498;.69605833;1.1103911;1.1868523;.79421544;.4725168;.41762587;.28069758;-.66130507;1.3275616;-1.5085053;.26283729;-.94619274;-.70818859;4.0867915;1.1039044;-1.2795527;6.1737947;-1.9959108;2.3688002;-.17623138;3.266001;.81384867;2.5645139;1.4942472;3.6125195;3.3753061;2.0893126;-.89041072;3.4443502;2.2922773;4.6236196;2.4105418;.93665302;3.1211658;.024131551;1.4207428;2.5236001;4.7913413;-.67188215;6.4479995;3.2484829;1.3764416;4.0724282;.71447337;5.918088;4.7142591;.76621312;4.1994414;1.7253052;.93597472;3.8312974;2.0730674;2.9260156;-1.1845193;.79046535;1.9237789;3.5612292;2.2185369;2.377676;2.1136091;.37077531;.17850131;-2.6475141;-.042440377;1.6203762;-.33265465;.29690394;-.17568097;-1.77257;-.40057483;-2.1343694;-.76720196;.85938329;.23737073;-1.1805873;-.73849338;-1.9269021;-1.5276184;-2.3906441;-.39535701;.79818583;.48353797;-2.3383839;.47052363;.54221684;-1.7495197;-.78065741;-1.1240301;-.2582626;1.7509836;1.4414167;-.066317283;-1.1480838;1.0985034;2.7485404;.37772191;-.2366523;.29498625;.96631914;1.2310263;.69923025;1.141235;-.0010165733;1.3603578;2.2115571;1.9899898;-1.3267279;-1.40479;-.038791101;-1.2798423;1.2069833;.63546652;.73260528;1.8288953;1.388672;-1.2321668;3.9734423;-2.6455238;1.2788479;2.3313236;.98569876;1.1351975;1.5166906;.26846972;2.4064;3.2071855;2.2073748;-.65616041;.93919331;1.5978577;4.2203207;1.4015392;1.0945748;1.518775;.68308496;1.3970184;1.6430721;1.8295451;.55987978;3.6283286;2.4182951;1.5347613;1.4948831;-.41545871;4.8592758;1.8502399;.66437829;2.7719707;-.01143268;1.69109;3.0362554;-.78120655;2.1560259;-1.6418728;2.1866264;1.0506765;3.0784361;1.2383692;1.7784609;1.6111004;-.41825089;-.98276055;-1.7480326;52.642578 +1.2140048;-.097267553;.39333573;1.3878993;-2.0396268;.5472129;-1.1538435;.5345546;1.1038388;.61717886;.70963436;.14123651;.28156495;.87588418;-.059349556;-.84618711;1.543366;-2.7326369;-.83419508;1.6283877;.71447724;.83621979;.19107883;-.02222169;1.0420238;-.49595642;-.22877583;-.52044594;.85972148;-2.1143453;-1.0833492;1.2163583;-.84196407;-.20057657;.86068624;.58568853;-.38822594;1.48701;1.4435225;.44947362;-.48700309;-.18536647;-.41988754;-.31606901;-2.4606764;-.9734093;.43006825;-.92150861;-.85004979;1.0875847;1.8907243;2.5439205;-1.125628;2.2754405;1.3679913;1.8471802;.87044734;.86498106;1.4046528;-1.2175397;-.70602977;2.2009292;1.0495071;-.93950993;.71744996;2.4024205;.81872332;3.6305919;-.74938571;-.32016328;2.6196854;1.9149019;5.5231457;.10611969;-2.3965399;1.5640795;1.0515968;1.1093861;3.6980751;3.2118256;-.82180214;1.2771345;5.6842661;1.1570007;2.2574711;5.36411;1.8444773;4.4435725;4.2267509;1.9792863;.11218895;2.9714892;-1.5226817;6.2988992;-.48187405;3.8622551;2.2767823;1.8177271;3.0518551;-1.0291872;2.8512952;-1.1096023;-.30329281;-.61194587;-2.2873044;.80749363;-1.283471;-.83361959;1.0674242;-.19345625;-1.2882104;1.0976967;.1260208;-.39436662;-.13885474;.23054291;.91880393;-2.8115838;.30895874;.90880513;.30934176;1.0174388;-1.0152155;-.47431478;1.4102032;-1.3003602;-.93010294;.094481386;2.1346929;-1.53606;-1.1726638;.72901088;-1.018185;.52009976;1.2410308;-.089076795;-.56413186;.88210869;1.4494272;.96740937;-.022865476;-.28222594;-.71636236;-1.2305957;-1.0828325;-.82673877;.55804151;.80990338;-.42059425;-1.0832102;.53815538;.72038341;.74637455;.052498128;.64559597;.5932638;1.6509775;.99426711;.79366976;.34421721;-1.7307961;3.6899104;.69933778;-.71001208;2.3000791;2.101346;.79164654;2.3590715;-.8624922;-.3648257;1.5725799;1.4161429;2.0620403;-.07495784;-1.2625276;.54408425;.59184575;-.35888025;1.3837793;2.1907575;.3926214;-.22079298;6.5823212;1.8133186;1.8107616;2.7457795;.22941324;3.3673489;2.3244138;2.028796;-1.4937426;1.7970761;-1.2108506;4.3909879;-.10761181;3.2525473;1.9842646;-.033919178;3.0213625;.60747737;45.042915 +-.9031828;-1.1517584;1.0310888;.43283835;.15240029;.060378283;-1.3289727;1.2491972;.23287344;-.056104194;.053314831;-.43275872;.02875017;-.060967099;-1.4549457;-.16248839;.50770885;.70533776;.0044465149;-.35042307;-.65771365;-.13831443;.79175097;.27227864;.10228357;.60524404;-1.3348475;-1.1487566;-.4016642;1.1458924;1.2754475;.53878587;-2.7687678;.014790739;.9976393;1.9950466;-1.4231906;-.49294719;.45174026;-1.5702108;.95561028;-2.4030511;.096637532;-1.5647249;-1.6515741;.24438952;1.983845;.66805667;-.24793485;-.83104473;2.0052798;2.2012932;.55138594;5.8170681;3.7080262;1.5153939;-.13080427;4.4728494;.912233;2.526545;3.5655849;-1.354133;2.832365;-1.1174731;2.4255941;1.2420225;2.6089766;3.1770644;.39693525;1.6149204;3.9024012;2.0943253;.57378358;2.8228424;1.6014913;.76967442;3.9569867;2.2079916;4.5224833;2.3340788;4.1327815;.8164314;1.0255097;1.2584505;-4.0973454;4.9269958;1.8638376;.4689554;3.4147165;2.8391201;3.9430845;-.32143635;3.3344572;1.5640546;.46765658;1.5653403;2.6821256;-.3113347;-.65212357;-.18632489;-1.1090478;1.0593812;.94902563;.75581819;.99136668;.7064622;-.74174476;1.4982253;.93409973;-.22583671;-.3014864;-.14827387;1.7286589;-.34586543;-.99979061;-.56873798;-.77541053;.89821023;.07318303;-.40869522;-.50707746;.031484373;1.017531;.34633493;-1.1721208;.58462805;-1.0556157;-1.5461066;.50821084;1.2182175;-1.0565488;2.1857579;.48024011;-.019935265;1.7384907;.59181607;-.55347157;-2.4532151;.35124719;-1.3980172;-.26740453;-2.9729807;.63962275;-.57188499;-2.8317938;1.1989905;2.2113461;1.7620845;.23215368;-.65934747;1.7808032;2.1185179;.23904501;5.575778;3.6934142;.56497496;-1.9188234;3.8730259;.62066805;4.6033058;2.717768;-.48665941;2.8890736;-1.6838266;1.8133037;1.3288517;1.8370752;2.6953454;-.34263709;2.0790744;3.0810497;.74064928;2.0958192;2.1396317;1.4477425;.62126583;2.9558911;.60258681;1.6429266;1.4576342;3.920341;2.2412128;1.0481994;-.49808338;-2.8493876;2.6354692;1.7617902;-.45627281;2.2990015;.96973777;3.3779898;-2.6612189;2.1245313;1.9520899;-.16923669;2.9320385;1.4918008;-.58585829;-1.6222333;-.20451763;40.797054 +-2.1146138;-.014254488;-1.2503995;-.091800131;-.11957906;-.1329371;1.8785613;.67749673;-.74754673;-.40463606;.46680537;-.68278378;.036341656;-1.2038352;.35513169;1.1438414;.3296628;-.12935619;.16325548;-2.4000876;-.6835652;.65657556;-.53768277;-.16400602;.044321314;-.75299698;.65588772;-2.5471725;-.9868409;.52415425;.6733892;.37232795;1.2541581;.31136119;1.5500678;-.017323192;-.45483184;1.4668939;-1.2211004;.10270437;-.78032207;-.54052031;-.53878921;-.15651052;-1.0791643;-1.7125634;1.1416645;-.069845334;-.89463484;1.7563404;1.8616025;3.3200996;4.3365474;8.0204782;.59914893;4.0351295;1.2409428;3.25086;1.5518081;2.4810174;3.3615708;-.59390378;2.7162728;.038632255;4.1879168;5.1051488;-1.4589882;4.0983114;1.8617369;2.4240234;1.3279077;.246701;-1.1755706;2.6538937;-.44654438;-2.4677205;-1.1719695;2.4506133;2.7298706;3.8730094;1.5891467;2.7279477;3.4810073;.946374;2.7318108;5.7453003;1.4478202;.23144184;.38856623;-1.8835182;3.5875177;.73471439;1.9759315;4.2252145;2.7680583;-.18795298;-1.1333784;1.3706144;1.5174818;-1.6280247;-.81789148;.95235354;-1.1112001;-.68921959;-.86997426;.58159733;1.1683313;-.14289796;-1.9043248;-2.6483123;-.84872997;.041847851;-.79293483;-1.9769609;2.2979219;1.0978985;.53444827;1.4454679;-.39440772;-1.1597401;.60365742;.59609783;.099279471;-.27655393;.012757929;-.030842124;.82937199;-2.80825;-2.4256566;-.50348735;.0095388647;.63490021;1.7751166;-1.7155888;1.0845675;-1.3052168;-.84420055;2.787111;-.52043808;.87479573;-2.3061781;-1.2818999;1.4179274;-.10765816;-.85796231;-1.1040632;-.21845335;.56061661;-.89797062;-.96686846;-.088911578;1.4188296;1.9751711;5.415905;.32306316;3.6726985;.68432927;1.8753824;1.2527533;2.2428572;2.0923162;-.69488257;1.6776634;-.49831361;2.6815426;3.8381102;-1.2201867;2.3468852;2.0990326;3.2889814;1.2741823;.63604498;-2.7699416;.001691592;.97912484;-1.1457534;-.95340639;.2276177;1.9905193;1.9782289;1.6741406;2.0094674;.43120754;1.7229748;1.8127761;3.3593843;.54694647;-.98966628;-1.6650201;-2.2564504;2.0106246;.59994328;2.134902;2.5359995;1.393014;-.45491153;-.88660979;-1.973573;1.8891953;-.59227455;44.675777 +1.5899323;-.30661261;.76317358;-.73535788;-1.1795021;-1.1497115;.27254099;-1.1895866;.34427947;.75955355;-.60530013;1.3641158;.2792936;-.52417469;-1.3777783;.92486215;1.9853104;.98601055;1.3982477;.42399737;-2.7918808;.70177263;-.3473855;-1.0826001;.35441667;1.2287682;-.89329535;-.87539303;.60872942;-.55785108;1.108918;-1.5492464;1.0846298;.13018793;1.5045017;-1.569185;-.01126565;2.2487338;-.50680488;.42074329;-.63884372;-1.4541448;-.91400856;-.81481528;.84325999;.063155025;-1.5168654;.34913737;2.1187723;.034765057;3.8212664;2.5036786;.41806859;.42059788;-.53641015;4.1011138;4.6899457;3.249356;3.5360084;1.6090353;2.3487358;2.4197404;-.41448295;2.2154276;3.1516056;5.0112004;2.4732699;-.070369065;.33448088;-1.0181977;.55139512;-.44750771;-1.0470681;2.3000643;.24361038;2.2409549;3.2124088;1.5314244;-1.2352157;1.4610511;2.6364963;5.5100646;1.8368508;-.6545831;8.1079016;-2.9727583;1.4731253;5.7039561;-1.7597336;5.7241778;4.0135517;.35858536;4.4027905;.53007567;3.2678349;1.0214986;4.3656969;2.1683388;1.96775;.82073861;1.4041961;.66313094;.062109418;1.3316529;-.8872788;-.26522917;.72728026;-.74660492;.80789161;-.20116085;.4725017;-1.0505848;-.58448189;1.3709438;-1.1746339;-.44713989;1.471513;1.984001;2.357512;1.7314022;-2.3029697;-.64068568;-.7679311;-.36998934;-1.0433856;1.0411909;-1.5930464;.33407685;.47058293;.87813598;1.3510885;-1.1670521;1.2125951;.47861916;1.7282619;-1.2211058;-.70255905;1.0712644;-1.0367949;2.1272373;.56773186;-.73065698;-.59099799;-.17757648;-.56559557;-1.9566607;1.2640606;.1655931;2.2023461;-1.1338894;1.4710678;1.3103374;-.58545512;1.7792808;.008345942;1.3066567;3.4159949;2.7616534;3.364851;.19481365;.58028466;1.0156926;2.487797;1.6621355;2.2301996;.59178376;1.938682;-.37318176;.52988881;-1.4189976;-.092078462;-.29807204;.69427294;1.6747494;1.1255648;1.8793435;2.0236821;.77944082;-1.2623566;-.76656312;3.5030916;3.2222009;1.854092;-1.6875043;5.1910176;-2.5578051;.70397186;3.2042646;.45591244;2.5950167;2.1234455;1.3663136;.18432923;-.67777491;1.6613032;1.2434062;3.2069857;2.3781235;1.2553642;2.7111855;44.789398 +.36319214;1.3133972;.99915087;-.41099563;-.15944241;.76105565;-.67888796;.17156474;-.58470768;-2.1166141;1.1813582;-.57063234;.78288323;.4163256;.34426087;.30912334;-.32037634;1.0889027;.05895894;1.2905214;.88019991;1.4525411;-.31240359;-1.1271369;.86437583;.01838061;.21796946;-1.2082347;-.85768896;1.0898831;-.89105988;-2.2989836;-.11718778;.35756505;1.1623391;.39353755;.67718703;-.89308989;.62084872;.36276403;-.49388498;-.075861812;1.2155881;1.7382396;1.8003423;.065438844;.65272009;.30638236;.60116541;.96124059;4.556479;.34215006;.034347065;2.7491536;-.7554456;3.5957;1.6419228;2.200958;-1.0465205;.46093974;-2.2369268;.30101895;2.0950701;.22909255;.11165837;.37008861;.22195129;1.7571638;1.7249486;2.8315537;6.9499502;4.1542444;4.8365417;.010785211;-.023182867;2.4093828;1.7027047;1.2255104;4.4366345;2.9307961;1.2935501;5.462688;4.0590315;3.1645532;2.9169822;2.4520667;2.5829151;.66914594;3.9251599;-.46913901;2.1222212;-2.4735053;7.710598;-.53137887;2.9070776;3.4677274;-2.3127661;2.6102552;2.4718633;6.027432;2.2520607;1.2335169;-.19719948;.25817966;1.3039749;1.483193;.4585782;-.17387851;-.40446728;-1.0241746;.48852822;.24792546;.18826269;.28619233;.19472928;1.8353051;-.60205984;2.4283335;-.22335814;1.1018318;.36272788;1.0807823;-1.5363156;-2.3929183;.82549775;-.84637487;-.50698954;-.093514919;.4509972;.11887194;-1.394966;-.74780703;-.83858228;-.71011263;1.3192494;-1.0370736;1.3932853;-1.4692196;1.3222239;-.35604954;-.73305619;-.36936274;1.0660778;3.8172686;3.3014925;-.96131384;1.3258671;-.24896298;1.2662683;-1.3249645;3.5477736;-1.1060264;.46963429;2.5416741;-.75462788;2.0540097;-.1310124;.93735367;-1.7788354;-1.0158362;.022253484;1.4358746;.32656169;-.15917175;-.041120879;1.4780384;.156901;2.4188097;.33948404;1.5416621;4.8326221;3.7168965;2.8355742;.01670073;.93620801;.64668596;2.2116866;-.43339512;4.0926609;.5423336;-.62393034;4.7806234;4.0288258;1.9550108;1.7463027;2.5429158;2.0075791;.021669775;3.7176244;.74003583;2.6927264;-2.0714061;6.1554985;-1.8299921;1.2776701;1.9087722;-1.278965;2.0575774;2.7748137;4.9121332;54.614304 +-.4750137;.6730985;-1.041584;-.16439645;.52403182;-.203198;.7134012;-.16159554;.54977244;1.2868265;.47613475;.60779196;-.27198568;-1.3885156;.99156523;2.644068;-.1928353;.74539149;2.0036561;.50935632;-.97199631;.21035746;.97003567;-.032921661;.41432223;-.7203567;.84647644;.29885972;1.4917561;-.2698257;.74141175;.82670653;-1.8282288;1.5797157;-3.4282212;.025710333;-.72894681;-2.0187216;-.41890109;-.66030067;-2.3197999;-1.4172654;-.83747059;.37178576;.97465676;.46326891;-.37989795;1.0806472;1.0096939;1.3095305;.52484131;3.3531032;4.0560346;-1.5986387;6.4070177;5.5945745;1.5960439;1.4467696;2.513232;1.9904578;3.7867737;5.5745606;3.8555963;3.956244;2.1009576;-1.1271741;1.8646964;5.6609521;.5602448;-.059598204;.76215333;6.4812636;3.5414233;2.2167714;2.0434401;3.2369938;2.5177994;1.3747364;.59365803;2.2714937;-.66000175;-.13120413;1.9032978;.33812907;-1.4266249;-.28765297;-2.901325;2.5586872;-.59224987;2.8734255;-.18020222;5.8545294;2.9062812;-2.9237778;1.940653;1.6875424;2.2131348;2.514684;-.79057759;3.7523384;.079336561;.4761067;-.35905114;.091119237;-.79930222;.22320388;1.6937214;.26920366;1.1071373;1.8610529;.86052179;1.0568438;.20500585;-1.7558228;.20309843;2.9682262;.51157558;.4710232;.27289107;-1.1113777;1.2345697;-1.285338;.53677535;-2.0312791;.68072945;-1.955196;.49120638;-.031356018;1.5568907;-.068041876;.48276475;2.5316923;-1.024923;.063931048;-2.0965419;.70325446;-.93411428;.067462206;-.49698237;.055799708;-2.5884607;-.84861726;-2.9181433;.77887362;1.3836299;-.92393011;-.23605236;-2.3596284;1.8337622;2.2404568;-2.1990428;1.6301655;2.1267979;-2.5654824;3.7745695;2.6430924;.5012973;2.0899577;3.3201613;1.3822953;3.1001391;4.5404329;3.7999628;2.4963036;.82256556;-1.6022676;1.5880044;4.5953698;-.13460036;.98058653;1.16013;3.7374218;4.0405369;.34601691;2.6174324;4.0329695;2.4872408;.6594308;.005750081;1.2963817;.80063564;-.076997869;2.3480196;1.2770756;-.4401089;.098312296;-1.782959;3.1706629;-.50501817;1.8033158;.81322998;4.4416656;1.292208;-2.4690456;1.1567057;1.7480828;.80198002;2.7142529;.13758762;3.4543467;53.543228 +-.67169136;.2951507;.90583402;1.1742121;-1.0606011;-1.6195394;.0019345724;-.13955435;-.78075236;-.33348888;3.0645685;-1.5158904;-.37219307;1.2753053;.95508212;-1.5589634;-.74471051;1.2163929;1.0214367;.21145175;.19794412;-.8579818;1.443247;-.18983585;.22118112;-1.3054348;.20630221;.1045609;-.39980814;-.87839985;1.8099697;1.8272517;.13924386;.48318601;1.1020925;-.53192347;-.27427778;1.351221;1.06885;1.6173098;1.5741465;1.3158277;.56819087;.78507799;.10556962;-.13126642;.30513963;-1.6991425;.60452205;-.6468184;.48507774;-1.6559197;1.2561071;4.6969395;1.6031388;1.8710431;2.6843667;3.5634327;-.9357056;.31131133;4.266686;4.08497;.47385764;-.70968944;1.3163856;1.0212438;1.59034;4.9585772;1.8817848;3.87866;3.327981;1.8062035;6.4242234;2.1513703;2.7657614;6.4926324;3.1745105;.4354327;-.10290511;.6643908;.7956636;1.5280609;2.2859499;2.7918458;1.5786924;-.045011651;-.90317458;5.5584359;2.0847311;2.8254139;1.7340513;4.3776264;.24814682;3.9311078;.084365852;1.0411325;3.108501;3.5156193;.90494186;4.4704742;.089228548;1.3059757;-.53896666;1.7084366;.50616819;-.8148793;-2.1796069;.5915522;-.29809406;.57414222;2.9338286;-1.8718162;-.13881361;-.15652923;1.2101551;-.072327375;-.89904159;.64694518;.38083631;-1.0418543;-.74001402;.2187545;3.5610788;-.60796481;1.3685831;.48801422;.76138622;.15560767;-.20608954;-.17913245;3.024581;2.116668;-.44858715;-.43776789;1.1019945;-1.4728284;.65417135;2.827471;.33962223;1.3424306;.74278885;-.0040675006;2.2532182;-.25668055;-.27548179;.022176854;.28975183;.37811232;-.45936772;-1.3476268;-.15704443;-2.0898676;1.941058;2.8672025;1.6383914;.48031873;1.9615992;2.9451525;-.58947384;-1.6386217;2.6873286;2.9109342;1.4447148;.36853719;1.484839;1.5966189;1.8513058;2.8888535;2.2003913;3.501271;2.7913473;1.3817956;3.3834965;2.7185414;4.0255022;4.2746868;2.3934097;.36518043;.79114348;.46760824;1.6546634;-.74552327;2.4298086;.96864223;2.096288;-1.5615375;-.58116746;3.4191468;1.0044192;.89374548;.69558626;3.7827971;1.1973213;3.5183499;-.85406452;-.82689744;2.102623;1.8800389;-.1892646;5.779665;68.357262 +-1.0772177;1.6950639;-.36849061;-1.6716807;-.70103878;-.12289884;-.32154185;-.91204584;-1.9793397;-1.052757;-.062767901;-.05896914;.78634721;2.5062857;-1.3476543;-.094954446;.038523156;.73659682;.64478993;.28589705;.90338027;-.30116862;-.29347137;-.2921975;1.5014001;.17082241;.017951023;.0075229355;-.33211562;-.088048793;.24952978;.51383853;1.3850365;-1.067421;-.72797865;.61888611;-.13926594;.40346134;-1.1322623;.72578543;-1.3937194;.62151629;-.026519813;-1.4438593;1.009158;1.0174893;-.32141003;-.74343956;-1.0311542;.19677487;-.55385804;3.207458;3.7180467;2.0741;1.1238879;2.7659562;1.83954;2.1503098;1.4523811;2.1708806;-1.0923471;2.5023403;-1.8967166;-1.5234312;.85274738;1.8724906;4.703043;3.47193;1.5663254;2.9074588;1.6661084;2.7526183;-.76806211;.72170305;4.0116649;3.3581455;4.3002057;5.292829;5.32657;2.037744;-.092627011;-2.5395682;3.3250856;1.5029907;3.2219512;2.621207;3.0407724;.88442397;1.1994298;-1.695051;2.0898707;.27000377;4.3340974;-.063281991;3.8689907;.67345768;.18132803;6.0574245;1.9853235;2.7971663;.16575986;-.13915949;.5266583;-2.3888552;-.1135326;-.27683306;-.20945153;.91530597;-.087617137;-.30396277;.74448168;-.17328767;1.116904;3.0250807;-.78249222;-1.3840915;-.2205136;-.35710722;.52924967;.55275404;-.20952809;-.027874833;.39420387;-.29845271;-.92602724;.31511042;-.27803525;3.6898077;-.71898133;-.054931991;-.17348979;.057033099;2.6352301;-.92254496;-.53542918;-.75494099;2.1208627;.77023304;-.80597603;.93831778;-1.9918493;.85848618;.82969463;-.55177236;1.427289;.88126183;1.1446558;.38720724;-1.5144252;1.775708;1.1081132;1.9147925;3.4373496;1.9492842;.41718331;3.2061369;1.8966451;.52026731;.28053769;.13192278;-.079255506;2.8114638;-1.3510145;-.046125699;.214996;1.0150163;3.3273048;2.7561722;-.46837676;2.0569584;.42853925;2.143225;-.91318315;-.2056292;1.6787447;2.8528302;3.9123333;2.6503174;2.8949852;.25345251;-.23757534;-2.4691556;2.4379942;1.31954;3.0777209;4.0892272;1.1275731;.39381284;2.5380108;-2.6732938;1.6445739;1.4771439;2.7369192;-1.0559185;4.5179844;-.83972639;-1.2102116;3.106046;3.3892148;2.9833994;44.075726 +-1.8532996;2.1505604;-.68079537;.35635236;1.1402694;.74167144;.44702119;2.1275001;-1.3729938;.36888292;2.1607664;.32397848;-.78113699;.70412493;.29988351;-.034057494;-1.4012849;-.68231845;.86938888;-.33068344;.54733998;-.21887837;.10406258;-1.0493413;-1.3804148;1.297446;-2.1128244;.2897447;-1.080911;-.39248839;-1.4569821;-.65658975;-.40414518;-.29000986;-.023365036;.19513635;-.76152575;-.072907396;-.8530001;-.72934145;-.89567727;.66647202;-1.1425259;-1.1580232;-.96273053;.89097863;1.778326;-.30051515;1.0909201;-.77048409;2.3214958;2.362458;.24670634;.9518705;3.716387;1.0283104;3.7277577;5.0460839;2.6835136;5.5299859;6.339045;2.1016233;-.74468112;3.4955809;.16676649;.9247334;2.440182;-3.2200365;.94296134;1.110041;.088001072;6.994379;1.363139;2.6422124;3.803607;3.1568704;2.311832;1.7849798;2.7329078;.16906166;5.1698284;6.2430625;-.92925429;6.1905313;2.9524076;-.029029181;2.2666283;-.85496366;-2.0800252;.97721803;3.3295069;2.1856818;.25069511;3.1498322;-.82855415;1.3349755;3.0386698;-1.6890749;4.3691273;2.8696401;-.54277515;2.9170103;-.86656958;-.02277978;1.0810287;1.9659412;-1.1395929;1.3782901;.26374248;.60870814;.91689169;-.71262634;-.23342198;-2.6706986;.52624506;.076765001;-.70030397;-1.8880866;1.6147881;-1.2340494;.21488886;-.62712163;.45222783;-1.1169327;-2.2762895;2.2747252;-2.3921473;.26397261;-.59524035;-.19426769;-1.6642143;-.26686963;-.20650019;-1.2655833;-1.2401537;-.52011919;.48180488;2.3981481;-1.2853116;-.21563341;-1.7839332;-.99867731;.54377019;-.51655221;.80475008;.72413468;.013649924;.69487715;-.059304375;-.44419208;2.8165412;3.2659187;.83818978;.5451867;3.5427594;.52475882;2.727742;3.2045121;3.743578;3.0612755;3.4222193;3.078614;-1.6988488;2.4275324;.0069907014;-1.8081884;1.8430166;-.24712534;-.072509721;-.08955808;1.3825889;4.7379427;.23081358;2.3816767;3.3461404;2.4660416;.61137599;1.7385666;2.4932897;.0089861415;3.3402667;3.7138817;.52374685;4.5577011;.40148669;-.16362219;2.1993964;-.60234475;-2.4291961;.39578298;2.2859211;.78959066;.64725888;2.062552;3.4754548;.074103869;1.8699588;-1.7509737;4.5024862;2.3594534;54.020363 +-1.0965109;1.8840528;.38037601;-.79830718;.121091;.59914207;.84640229;-.048520945;1.032775;1.2953039;-.7053566;-2.1167622;-.49089164;1.0419402;-.57668322;-.29927975;.88231725;-.18371803;1.7406181;-1.3021576;-1.9559174;.63313705;-.76777703;-1.5188107;.38929406;-1.4875805;.65467387;.51097471;2.5222535;-.31315979;-.31344593;1.4898643;-.43505225;1.4438493;.5070951;1.0102929;.54620707;.65617204;.69105601;-.71200031;.17677246;.50681937;.94763374;-.35551772;1.1332988;.70015758;1.268333;1.3632925;2.1866267;.97330058;3.3172305;4.0858374;4.8406863;4.0799637;-1.3866471;2.7454855;1.8088943;1.3921642;1.4334877;1.7880974;.25158268;2.5855534;3.394779;1.8741785;4.2115693;5.3445797;-1.2364668;3.6317992;1.8972027;-.53284568;2.1319075;3.3964708;2.7998548;5.1848273;.54211348;1.9883932;4.8083491;2.2621496;1.8821565;5.5894294;.56572884;2.785728;-2.4693995;4.3486452;1.2805196;5.141593;3.1380317;4.1940041;3.5640368;3.7070615;2.8722031;3.7027221;2.5735049;4.1302056;2.2634516;.28350946;.9942677;-2.888829;3.6693826;6.5564008;-1.1435764;2.4530158;2.0671904;-1.9373165;-1.0004109;1.6249698;-.46673772;-.14341703;2.550545;2.3748264;-.40960583;-1.8508478;-.088773534;1.474003;.86953568;-1.134961;1.2747887;-.17552951;-.041834287;-2.0333259;-1.7597631;-.59517103;-.76464039;-2.9855502;-.67314482;-1.2481378;.42017603;1.2536647;1.3745055;-.48023292;-1.9448047;.40505674;-.61172867;2.3111269;-1.1306993;1.402501;-.59964842;-.87737149;.3569515;-.45904511;-.36225125;.77188748;1.1859777;1.0814059;.40444642;.011162784;.5041784;.35325259;2.0392559;.70463651;.6654712;2.1781421;4.6092758;3.2289178;-.98778707;2.2489126;.91017181;.17078161;-.10923623;.71872407;.76097786;1.1869655;1.8136053;3.6393921;3.0905824;3.3328457;-1.5115062;1.5885667;.50902623;.61052543;-.97580439;2.8653245;1.1244594;3.8931139;.75239486;1.5360214;3.6134725;.22454745;.28015745;3.8839352;1.3887367;1.4401582;-2.3954604;3.0094917;2.3810291;3.5045745;1.9517233;2.9726529;2.5892684;.037865683;1.7006545;1.7396771;2.2125134;3.0335617;.83248401;-.35360783;1.6292126;-2.9766593;2.1830745;5.362042;72.848686 +-.96466905;-.61644959;-.7260201;-1.4212241;1.7946635;1.3986627;-.097558707;-1.5712253;-.067996398;1.2066281;.092277095;-1.6755965;.3765471;-.88475531;.37637454;1.1781656;.55182189;2.1101265;-.15662791;-.77007133;1.4797879;.94622606;.28167677;.87664765;-1.4326545;.71082377;1.0082186;-.090712041;-2.8265941;.18780375;-.89421469;.60730094;-1.0929587;.17916071;-.20429169;1.5923175;.24098562;3.1364982;.077650897;1.057884;-.33388975;.71464437;.12257875;-.56962579;.07020165;-.7741707;-.79936463;-.65573597;-1.6869789;-.21324851;4.7609124;5.2539797;1.4450161;-.07545723;4.2336354;.88835955;3.6557896;4.5080914;-.88638771;-1.1931279;3.4587493;2.0461564;-.27504262;.21526803;4.162385;4.0205402;1.8078866;1.5176598;1.0625528;-2.215997;7.8266721;6.5903082;.97243834;4.0675902;4.4725552;3.0853024;.98985147;1.1398106;-1.8479785;4.6401324;-1.0550942;-.83971345;.64378369;3.4849491;1.0018165;4.3722801;2.3339012;1.4013613;2.5500324;-.51594061;.9110235;2.171258;2.9474707;4.6153708;.011730991;2.3951733;2.8965271;-1.7217469;3.3927069;4.3485842;.42774731;-.17713089;-1.511505;-.38258141;1.7402133;.21845098;-.7160992;-.51242411;1.6764762;-.79371989;-.96425807;-2.2731557;.84310818;-1.312951;.33042279;1.2249403;1.052016;1.8931165;.1748542;.4971118;2.0421503;-.25151703;.459102;.73461056;-2.5216289;1.6035722;.77718139;-.94764167;-1.4604801;.47106603;.32054174;-.49691936;-.73174322;-1.5180117;.36308342;.66517586;1.1441941;1.2196183;-1.2309904;.91929275;-.33682981;.60275292;1.5063528;.23741119;-1.1096107;-.79299051;.9811548;-.053176459;-.61030066;1.4426775;4.7833018;3.2165713;1.9546109;-.69980603;3.4248559;1.2657887;2.0152535;3.2367644;-.59646112;.80519688;1.960991;.73761225;.75417149;-1.1281451;2.5761614;2.5157022;1.1234666;3.051904;.13565539;-1.4806916;4.6026387;3.8521285;.87372458;2.5167196;3.0918922;.73092473;.76808381;.54918951;-1.6760113;1.9690996;-.6089741;-1.7614621;1.0762413;3.0008924;.62827855;.5375849;2.4952326;.13127114;2.8671608;-.44862047;-1.2643907;1.5436713;2.0941265;1.4816684;-1.6419336;1.4083456;2.1034665;-.37884495;2.705502;1.0383608;60.374649 +-.36103016;.77730757;2.0161386;-.5930953;-.33318114;1.0331819;1.0768529;-.047690906;-1.0000982;-.3544009;-1.3370714;.54677457;-.069650508;.55937737;1.1577613;-1.6604294;.20124288;.049360182;.99956113;-.37996438;.22547987;-1.28108;.16657726;-.67695874;-.86242491;.26218581;-.38624117;.14369895;-.31794798;1.0246838;.010755842;.21494223;1.2188854;1.2888329;.56369901;.96671754;-.38316774;-.39940259;-.13601936;-.89886045;1.7556336;.68599772;-2.3073888;.65274531;.35217568;-2.271049;-2.2633882;-1.0747838;1.0679375;-.39185625;2.5151348;2.2510118;1.5035782;.69379455;.30688089;.65764809;3.7713363;-3.4460108;4.3479862;4.2156119;2.9722164;4.1280308;-.70639473;1.8390633;.76418686;-.76957893;3.6149814;1.372111;3.1273372;-.86802113;.93522596;6.4940019;.5890395;3.1767731;3.3741219;1.3975793;5.9514046;-.28363183;1.9426724;2.4724121;.53052962;2.4062934;3.63117;3.3278866;6.7551856;2.7857063;.2928938;3.4518783;3.284102;5.0719533;.99902272;1.498709;-.73215622;-1.7847811;-1.6116199;3.7054822;4.3748193;2.7821939;1.4132295;5.8652744;.63366306;-.22043791;2.2517242;-1.5256166;-1.4389002;.36992472;1.9235966;-.81081879;-.36532944;-.28851402;1.2361507;.27581206;.1087342;-.17511734;.56055176;-1.4868168;.0083426135;.42720205;.43828374;.11042432;-.51246458;-1.5152061;-1.5750101;1.0904849;.78912228;.78714144;-1.1150769;-.64036441;.50649649;.26505482;-1.6037999;-1.3375977;1.5015295;.232658;2.0941656;.24256395;-1.0893852;.089438803;1.1968699;1.2809185;.85382992;2.0711651;-.62865478;.17381655;.66844678;-1.6483426;.27424636;1.6003902;.75512385;-1.7379726;1.6434132;1.3445072;.66109979;1.2106228;-.44268784;.81783527;1.7530996;-1.9842472;2.5359192;5.2576914;1.9017856;4.4442468;-1.2155068;2.5466268;1.5505717;-.024001783;1.1787404;2.0345914;3.0427759;-.15634941;1.5481653;3.8658409;1.4021857;1.8622206;2.7761111;1.0824198;4.4535933;-.71368897;1.9525036;.90563035;.17928934;1.0708629;1.2175474;2.2678642;4.6004782;2.1177049;1.6123999;1.0879935;1.3542944;2.3948426;.95510101;2.0860286;-.49022698;.10838674;-.62902647;3.7689078;2.5926013;2.8204741;1.3857182;3.3303175;58.092251 +1.3818344;1.0342318;-.17734057;.24593076;.57709575;-1.3061388;-.57509792;.39503708;.24093811;-.31932536;-.66875648;.40086475;2.0616488;-2.334579;.19188955;.22407381;.46950027;.30972776;-1.2396029;.080643781;-.63927847;-.16827995;-.21809019;.44982311;.25388223;-1.0821297;.076781005;1.6533197;-.6786623;-.39192778;.24083823;-.38303775;.17575423;-.8401792;-1.165344;.54502743;-1.8696585;-.53414404;-.38055268;-.21709158;-1.8827094;.72361314;.18141453;.68222708;.58901608;.19279832;.70297456;.98381835;-1.4496844;.57959306;4.061574;-.095159367;2.5025842;2.9791746;2.9838324;4.7699175;-.44479272;4.0300269;2.6943791;4.3935699;1.1853228;1.9645008;2.2723248;-.10898804;2.8143823;2.9409428;1.0399847;-.40917569;2.4556558;1.5250627;-.17105007;1.2125816;4.7735267;2.2835939;1.3293914;3.993125;.98328632;-.54013264;4.2686534;-1.4466388;2.1382539;-.16352624;2.01351;2.4054267;.41685402;-3.8459568;.86725837;3.8961694;2.9057634;1.8444145;3.2909589;2.6670542;3.2765663;.85729766;.8829757;3.959589;.88817364;3.207108;4.0088196;2.7784607;1.1186143;.38058269;.70927399;2.4814434;-1.1004193;-1.8024771;-.50278008;-.4165796;-.35645077;.0027244622;-.15727206;.11638662;3.4863679;-1.7488121;1.369395;-.49208248;.70284534;1.7613457;-.58543718;-1.7177089;.27627942;.18759531;.14889166;2.0577402;-.79747379;-1.5680038;-2.4403918;.20699751;-.6905117;-.72957987;-.14820881;-.48512429;-1.2148589;-1.0424708;-.97079164;.40929732;-1.1168972;-.79073572;-.28174183;2.1010983;-.12433464;1.9029278;.82528412;.12967239;1.1012343;-.15266696;.56246173;.60438317;-.19833748;1.2254263;1.779382;.24116793;2.8734157;3.606214;4.0986123;2.2435315;1.053901;2.3750849;2.8040755;3.3633559;.20215173;2.6937795;1.2610298;-1.6639715;2.4804132;2.9121556;-.62587923;.31629398;.65268761;-.69820023;-.30598029;1.5473475;3.8293543;3.8595755;-.75374073;2.1554747;.11433591;.10200315;2.846514;-1.8222127;2.2361565;.68856144;1.0339445;2.3065078;.35282484;-3.818459;1.8180382;3.3074679;3.4057913;.045172043;3.1505425;3.8255389;1.1910433;2.036412;1.2745852;2.2675471;-.70049661;1.7033671;2.3134112;1.2920568;48.001289 +-.29740369;.046029791;.99598044;-1.8837272;-.99858242;.35060981;-1.1057503;-.0094229169;-.61263078;-.39347184;1.1898965;-.95460153;-2.1344764;.23388863;-.809443;.73979372;-.43538272;1.0667857;-1.2777598;1.2417507;.41206604;.77908635;.2049748;.17663527;1.6254137;.54400963;.93393368;.17441876;1.199542;.54608423;-.028931791;.84696251;.80766648;-1.7084383;.019984104;.50264752;.67025822;1.4607772;-2.4531252;-.12744626;-1.6650411;.25523791;-.23453318;2.3896306;2.5777986;.6374256;.93914825;-1.5305011;.77340454;1.2197405;-1.7659011;-1.2418503;4.1248407;-.038000535;3.8694811;4.0576553;2.9661734;1.9972141;2.6622369;2.2473381;4.8170557;3.2021196;4.884407;3.4020264;.48214555;4.2012982;2.7410486;2.3308578;3.0070624;3.1837583;3.2945871;1.6650774;2.3509824;1.3993434;2.1924469;4.6437383;5.2836967;5.2531476;-3.4504383;1.8316733;1.7012713;-3.2993786;5.3664904;.88633353;.3724007;4.2223406;5.5374513;-.053183302;2.5336587;7.4517255;.083032534;1.924209;3.5306995;3.205606;2.690284;2.0359724;5.51334;1.2961435;.71782225;2.3009927;.3299751;1.3051358;.63488513;-.25003356;-1.2077428;.93067265;-.84671217;.11156849;-.057394527;.09460482;2.7196662;-.63683236;-2.1632135;-.45432359;.42775911;.60982853;-1.9263564;2.126672;-1.838438;1.3115029;2.262445;.86856109;-.90668124;-.10036778;1.6626394;1.0324572;1.2969905;-.49493769;.93022722;.4319258;-1.8606116;1.8916023;1.459078;-1.5001605;.64489567;.7037912;1.8932188;.95435554;-2.9607174;-.45728549;-1.1495831;-.086307496;2.4538398;1.2183523;.75271928;2.3249485;1.2102578;-1.7270894;1.1660668;.81987214;-.17955464;.44767389;1.9797158;.37846854;1.6570369;.80876261;2.9126544;2.1690245;2.8777182;.50453675;3.1468282;1.1454313;4.0471539;3.3202288;-.098118268;3.3175378;2.7568977;1.5514002;.99015468;2.0866737;2.7129087;1.3379238;3.3881373;.40412185;1.5691551;1.875104;3.2804213;3.5862784;-2.2251043;1.3563963;.20875095;-2.0940292;3.0610907;.7568512;.57024217;4.0600686;5.7489886;1.3526422;-.43469918;6.2936211;.60162884;2.4395146;3.2040057;3.3788655;1.1502433;.32972258;2.9184401;.55924088;.76325309;2.0244055;64.431511 +.034210529;1.3726877;1.0392295;-1.6103899;2.4242721;1.2370484;-.75595474;-1.2454178;-1.2027001;.60343432;.17800683;2.0213413;.59547544;.24263698;1.1576903;.5458129;.48711413;.22843739;.98573536;-.2391395;.096453615;.8342641;-1.2007391;.71173555;-1.0755918;-.530698;.20470397;-1.8364371;-.014161609;.19869253;-.24142173;.51408857;.36494392;-.22295856;-.21214989;1.1742146;.1453694;-.71609807;1.7322495;-1.036853;-.28408521;-.1796518;.52069724;.24043947;-.26345676;1.2415379;-.69037044;-.81287849;1.8045249;-1.3942958;2.2331424;2.0738471;.65328646;.016953014;-1.9495741;.15781078;.57650727;2.7906275;2.3928735;1.7000933;.30604154;3.8367767;4.2007809;1.2294059;2.5220568;.48039353;2.6524949;3.4138627;.33643547;3.502528;2.8969424;1.7993397;3.4014761;-.53951126;4.7968535;3.153616;7.4544621;3.5185163;-.96292329;.086780295;2.1793737;.68160737;5.1288528;-.7633931;2.5942471;.80889457;-.75231409;3.1002104;3.0673633;-1.7828014;1.8505234;4.5852699;-1.295676;1.6140231;4.268147;6.6877413;-.086493917;.60454804;.63722193;1.3767889;1.1782098;.6201548;2.0794766;-1.7743831;1.252202;.69110805;-.91772002;-.70806289;-.43440363;.26055458;1.5025499;1.3566259;-.50405294;-1.6439044;1.7023095;-.85180491;.86793107;-.74892366;1.3046021;.091941558;-.44111517;.18211515;-2.4619117;-1.8298445;-.8636862;-.0009425981;-.093248345;-1.4945384;-1.4220341;.35352194;1.5256313;.67460608;-.049060058;.83243793;-.87561846;1.9482876;.016427319;-1.0652906;1.0952344;-1.3647752;-.11708787;.57059193;.54734981;-.56947154;-.31937024;-.39767236;-.33215624;1.2463197;-.63792598;.52828431;3.0160344;1.9072101;.37245402;-.53282237;-.27722481;-.44865751;-.68544239;2.6999559;2.1915083;.6890732;-.71261847;2.2557878;2.7647581;.20061058;2.0967274;-.77418178;1.5936705;1.1031953;.23009779;2.8605664;-.11709467;.65097177;3.5095329;1.9799882;5.2103925;2.9922788;6.7328005;3.40312;1.7994657;-.87991345;-.93094862;-.38034371;3.1419394;-2.4807487;1.2662891;-1.0870657;-.75188005;2.2296231;1.0317527;-3.1202235;2.5311894;1.9360218;-1.6481986;.74365389;2.6131947;4.2162371;-.92418551;.13394879;-.66822767;.37045166;46.110592 +-1.3326727;.035966311;.2808474;-.30916741;.13559072;-.10661927;-.87197179;-1.2559628;.29767856;.29527083;1.0521687;.37586999;2.3159475;-.40497482;-.69018257;-.4678641;-.33018816;.037728123;1.0961622;1.1972791;-.40221196;.72325706;.30799311;1.3111507;-1.6552052;.99217737;-.48660016;1.3320924;-1.0101978;-.32940286;.21895063;-.16018204;.37968391;.81256068;-.18668917;.60831571;1.9294397;-.81002676;-.13544329;.76397151;-.85433888;-1.487252;-1.1478822;2.3496842;-1.4799067;2.152287;.90783554;1.3703998;.56366485;.010937;5.7942181;1.3994148;2.292691;-1.7450268;2.0116515;3.5985913;2.5223918;-.87340754;5.5120726;3.5920777;1.1376765;1.5482912;3.1377108;3.0799356;3.5831401;-1.3775456;-.36041409;3.5378306;4.2003412;10.041189;-2.2142727;1.9464796;1.4076464;-1.0666313;3.2898841;.67199272;3.2498381;4.5109167;2.9404724;2.7670896;2.1765711;-.32799941;1.6234268;.82275701;2.8874912;.3946943;.80132669;3.8506348;1.6854511;-1.1838636;-1.0831913;2.2167649;.83736551;2.1956458;6.5839601;3.0249274;-.21765843;2.3734858;2.7645559;1.3888021;-.097185507;1.0365241;.003198788;-.75841337;.045856763;-.52433509;-1.3042227;-1.9799739;1.1705847;-.12564133;1.6025077;.43008962;2.1762249;-.068824746;.44897124;-1.553369;1.2275275;.94888264;.31135473;-1.2857105;.3750934;.088661201;1.898176;-.77279955;-1.8149043;2.8408828;-.19026689;-.29739198;-1.9094766;-.30429152;-1.6588442;-.26213542;.76178193;1.9095052;-1.1669379;.10570473;.88510501;-1.7065537;1.3634446;.55027902;-.31474528;-1.06631;-.17056239;1.0051609;-.7717852;.31203213;-.026278205;2.0412881;.56334937;-.65667367;3.3497999;2.1835246;2.8064251;-1.1136199;-2.0346942;2.3801208;.68806535;.9544962;4.3713546;.39806145;.69292521;.71378672;3.3385737;2.7727821;2.8588526;-1.5441544;-.22857206;.79368025;4.6631203;8.5822916;-.79064369;-.73116821;2.1501877;.12524813;2.8330083;1.0029129;2.6894989;2.3117943;1.2218751;1.4263963;.54555118;.92969561;-1.3941402;-1.3847578;1.6425998;-.62048352;.70319343;2.6009598;.3243871;-1.7542191;1.2612201;2.1815374;1.6688168;1.6794318;3.5231574;2.1714323;-1.157341;.2548019;1.4101616;1.1333916;52.778339 +.73946661;-.23601688;.56097907;1.2340373;.060640994;1.2734768;-.90207952;.31624588;-2.4573445;-1.154385;.40897933;-.4915168;-.81623507;-.60294205;-1.5982102;-.22717555;.15604667;2.9134753;1.0128809;.42189908;1.0313197;.49067903;.74082583;-.048546031;-.19584218;-1.5631657;-1.123203;-.63892663;-.3654936;.82276452;1.1977457;-.34088698;.060120128;.88628983;-.95883381;-.54354167;.15746391;-.21154033;1.6376411;.91249567;.2615968;1.5573033;-.87895882;.84796292;.11762015;-.1535742;1.2661119;-.49894807;.45841712;-1.0972677;.77872217;2.1436439;.24526872;-2.3955081;3.9909546;.99238861;2.7283394;.95365858;6.158524;.5095709;5.8800359;4.7902408;2.4446218;.79940641;3.2295642;-.79881722;2.7594123;5.47228;2.9588563;6.2527523;3.1729419;-.762281;-.22565621;-1.0125796;4.2255669;.12469044;-.41885689;.46258259;.61955512;4.6570768;1.7201903;-1.6361141;1.1069622;3.9914203;1.5744946;1.1506249;3.5109794;4.8054647;-1.3441796;-1.3295491;1.3455104;1.300094;.89773542;1.9945557;.5909391;3.7108033;1.7437834;1.9940941;2.8255951;6.821115;1.039554;-.36542109;.92531329;.89579642;-2.1211061;.30986053;.015534224;1.3988167;-1.1544621;-1.0302514;.021886902;-1.2041732;-.4448702;-.57044709;-2.2331059;.20854224;1.4750249;.29400232;2.5190365;-1.0265177;1.6450663;-1.3210127;3.7402976;1.4874008;.57449347;.1965795;-2.1762373;-.87772518;-1.6557221;.9143796;.93928236;-1.0398916;.56988454;3.4988;-1.7391802;-1.247763;2.7042892;-1.3230933;-.027908348;1.839173;.46257523;.76435101;-.45121387;.3212983;-1.1114142;2.1012712;.50978035;-1.3893069;.26114213;-1.2557368;.87530327;2.2454112;-.27162981;-1.087303;4.0814505;2.3579724;1.6346098;1.7691151;4.5957646;-1.7499053;7.2110076;2.8177304;.50718904;.56807959;1.5031233;-.13504159;1.1465957;3.2572486;2.3886561;4.2587214;2.5826378;-.19821964;.83406126;-.66648442;2.287035;-1.2592783;.17950149;.77181262;-.11423562;4.3662734;2.4974613;-.70659447;1.2904769;3.5429885;.27442679;2.0306869;1.2012337;3.8691273;-1.970963;1.2273283;1.3798584;.68989474;1.768339;.030093199;-.7590872;3.8137081;-.75917894;2.6861658;4.593122;4.2316985;47.757572 +.95554096;3.0568249;-.03372224;-.074497566;-.45465094;-.87788337;.67543364;-1.1863096;.56397313;-.48770016;.91427237;.27712131;-.80574441;-.84685445;-.2965194;-.31410551;-.44131741;-.61364979;-.16476445;-2.1479371;-.7028898;-1.1143303;-.43536764;2.3714223;.4461937;1.0724462;-.65798789;.14061838;.82271516;.52451169;1.156786;-.96883768;.23799956;.57747024;-1.3745183;.96616375;-1.1860524;.79522121;-.83718544;-.57323742;.14513074;-2.0428457;.82876116;-.73920941;.47486317;1.5135756;-.19820979;-.21907498;-.60383505;.55015057;.90658087;-1.6808167;-.16561954;4.5498228;-2.7729523;2.9251628;1.8940997;-.29862452;2.3600047;4.3644514;1.4608353;.069348857;3.1453505;3.2555609;2.0338566;3.7472601;1.8008413;.37294602;3.5478177;1.8675313;3.9621158;4.6329055;.17232522;1.9908389;3.182024;3.010361;2.6181333;.62183994;-1.3964585;3.3318896;4.5588918;-2.3107831;1.9162298;3.9825497;3.9634819;3.6852889;.48539376;4.2066774;3.2054539;4.6498227;.049009431;1.0299428;2.7057323;-.91989326;1.7193055;1.7470173;3.0382509;.78301084;-1.5104177;.68656385;.63799798;4.4401808;-.085631192;.19597322;-.37038434;-.52557576;2.1687629;-.27389747;.75103438;-.18681335;.25203246;.037708066;.39075893;-.63992709;-.21319696;1.0971256;-2.8071961;-1.8361392;.17211415;-2.5223799;-.45051935;-1.9468303;-1.0731281;2.2019162;-.54290062;.64685333;.93791246;.30742884;.20821774;-1.1845205;.51715147;-.29874954;.90489358;.80003279;-1.3416005;-.89299464;.079222336;-.40683919;-2.85042;-1.5229577;.92312169;-.71012139;.69231224;-.32558322;-.88395172;.39120942;1.4289024;-2.4521065;-1.7338405;-1.6713525;1.289609;-1.3295884;-.40210158;3.063168;-1.0238655;2.5835032;-.102686;1.1317917;3.146946;3.3902967;.98334891;-.37958616;1.7579716;2.5185983;1.7698466;1.3480597;2.0242672;-.20548789;1.917565;3.5455716;1.8926544;3.5116522;.88812822;1.8056331;.16795503;3.8214304;1.6477348;2.1579561;-2.6903491;2.4437253;1.6137868;-2.1012042;3.7129924;2.4062598;2.9337091;1.8103871;1.0023471;3.8403347;1.402126;3.7388229;-.97815537;1.5265372;2.3605828;-2.0901635;.23872355;1.9276208;2.4517312;2.6608336;-1.0641476;.65825474;38.751667 +-.85818893;-.87982243;.099716261;.14778729;-.24592777;-.030354567;-.28869319;.51509309;-.52547449;1.2010664;-2.4269683;-.76452345;-1.7917099;-1.1856035;-.32751364;.022993635;.21108668;.81221926;-.052287135;-.23053114;.38674247;2.0051486;.84639788;-1.468581;-.83126932;.23621081;1.746815;.98875195;.96587473;1.1740555;.13084634;-1.4456908;-.37053365;1.5558455;.78937918;.067539982;-.12626623;-.98064941;.87152362;.73490328;.022006793;.70554268;1.2499841;-.94752616;-.58865643;.20851579;-.19538164;1.1317767;-.80328363;-.071510993;.40023094;2.0987351;1.7695221;.65480226;4.7370343;-.018528076;5.5960941;3.1078186;2.9183216;2.2412171;2.1287811;3.4217896;.86609471;-.48936146;5.201241;2.4795511;.87642205;-4.1783586;4.5673914;.42126933;2.8313036;4.207654;2.4065888;2.355571;1.9982299;-1.4702545;5.6047363;1.4758239;-2.0266488;.67600381;2.1290202;4.4109964;1.699862;1.7410818;-1.1771134;3.5969987;.16536683;-.045850128;4.3613267;2.1880853;5.7097893;.35861313;-.0026174202;2.4384162;2.4828558;2.5943534;1.5258594;5.0775394;-.98777366;2.6719608;1.4712455;-.36709571;1.2227094;.83315539;-.099548191;.72849077;-.45897853;-.48927078;-2.5534635;2.0464094;-2.6702216;-.032538649;-1.1027467;-.27319509;-.57769287;1.5304796;1.5768167;.16895612;.38867432;.53168124;-.0074752118;.93978;.57069069;-1.613611;-2.114315;-.80739188;1.9133757;.5263204;.74723774;1.0228798;-.56485546;-.34331274;-.33920231;1.0826675;.44740337;.55774534;.39404073;1.0257941;.24620062;1.171657;.57096601;2.3436394;.21167314;.51785851;.8143875;.5865252;-.29699686;.6806404;-2.9302158;-.41775411;-.042498041;1.4285797;.87473136;.26479104;1.9543784;.22932123;3.9277575;2.730695;3.6659431;1.7432629;1.047841;2.1046219;1.3359644;-.43299484;3.1491632;2.4597054;1.8527507;-3.1654997;2.5349438;2.6170297;.49220997;1.6198608;2.4702694;2.1904917;2.0162129;-1.4422052;2.2610495;.56161714;-3.1903307;.69849122;.67481232;4.5332079;1.331672;.23747164;-1.7262198;1.7437449;-.10845093;1.1684483;2.5846148;.7387957;4.7810941;.25049064;-.65158397;1.5182033;2.0818307;2.4404824;1.3785691;3.3694103;-1.3061731;.33698696;49.14938 +-.86160779;.043554552;.64541298;-1.0946908;-.070319377;.82117927;.12323353;.69553339;-.15482639;1.7485986;.27888167;1.015433;.85118312;-1.8774184;1.3698602;.47342092;-1.323902;-.69167638;1.62532;2.2429681;-1.0132912;.91899359;.0096923225;-.34068823;-.82370043;-2.2464569;.93614954;.060814276;1.1849518;-.84617579;-2.2217743;.57354057;.58823675;.41719741;.4732424;-.97311789;-.34818971;1.2364191;-.20666237;.13685259;-1.043965;-.71335876;-.49869344;-1.4579786;1.0919305;.53768933;-.20041634;-.40720305;.49659348;-1.3811125;1.2575346;-2.1800318;1.8354353;1.2218471;1.0485669;3.2365582;3.6323917;3.3631907;3.7105532;3.0206084;5.105608;-.7540549;.44531202;-.48133913;.65490627;-.48415807;1.0093597;1.433395;1.8958933;3.4775441;5.0496464;-1.2213247;3.9640257;-.23795632;4.3403506;-.93880349;4.2085009;4.9207821;-.097641647;.090214901;-1.0086157;3.0620484;2.3165507;2.5590601;-3.264751;3.2306385;2.3591835;1.0178043;1.2605263;4.6584158;3.8409564;1.4029442;4.452785;3.5866132;3.4401157;1.9268079;3.0850396;3.8204324;-.704027;3.8727677;.61243361;.9546743;-.65230441;-.59465998;-.10935975;.27438101;.27110377;2.3902376;-1.715706;.86902976;-.76784432;.50988877;2.6684802;-1.2741128;-.36069587;-.36865202;-1.1459359;-1.0867854;1.2472646;-.10898151;-.18110533;1.4685131;-2.4731517;-1.0374031;-1.6161624;-1.5399485;1.1787126;.49263695;1.930164;-.22076283;-1.3668422;.40990636;-.14682102;-.19192673;-.68076664;.0027662627;1.3276817;1.5856262;.52938908;2.6698563;-2.2111516;-.28189933;1.0382903;1.751912;2.8670228;.62244838;.25726697;-.97883952;1.4988663;-.62177485;-.9734782;-2.7930722;-.79843175;.097290426;-1.0802462;3.1393082;2.2047491;3.2519863;2.7681804;2.8713841;1.674171;-1.7516384;.41627979;.44663441;.54285407;-.32824501;1.9623979;-.34027994;1.8722246;.55687582;3.8462222;-1.2124636;2.3301222;-1.1822118;5.1205959;-1.9195974;1.2883984;3.7217846;-.69579011;.054668233;-.12149884;3.3805974;2.9604795;3.2011077;-3.1287653;.3978211;2.2066147;2.2006075;.17920707;2.7252307;3.7589958;.011589676;1.2324765;3.7574925;1.7863179;1.1143225;3.1365783;3.0739589;.36394054;.63201857;46.202694 +.73287785;-.13206926;-1.5937518;.18849574;-.58444631;1.0385869;.74470216;-.15317118;-.34130037;-.5681777;.079950757;-.25076374;.37443557;.76615483;-1.3847744;-2.0468357;-.32172012;.39645362;-.17646238;-1.1848514;1.8974935;-.427127;-.87794727;-.39206609;-.12813793;-1.2734176;-.89849013;2.0900979;.33524624;1.1807077;.47901332;-1.0486404;-.18494497;.79145813;.3274101;-.88178283;-.39142674;1.5782931;-.53441691;1.3566937;-.54271352;-1.2306707;.32759431;-1.5343583;-.23052041;-.60338932;-1.9029605;.061756145;-.14000334;.56694585;1.43424;3.4929643;1.671563;-.092574909;1.6942682;7.451241;1.6649332;.86642021;.47692597;-1.5531496;1.0562134;3.1691544;1.7207952;-.019825397;3.0677361;.65830958;3.3780456;-.83067781;1.8823737;1.9605514;3.5451586;2.5355186;1.1971769;1.267802;.50952369;2.1732402;.09617281;1.7302274;1.4961489;-.0030379097;2.9743381;-.21837065;2.5868914;5.0031109;2.9145613;1.4203005;2.4685128;-.79082936;2.2473493;-1.4578006;4.5689831;-1.280314;2.9276829;4.8868322;3.40908;.53603959;4.9553518;-3.1282241;.69046742;5.1027436;-.27103126;-1.7628837;-.13373551;.73151833;-.4781591;.33243221;.35243919;-.27766743;.28090498;.58672869;-.18037349;-.87048978;.80933589;1.5549182;-.65678769;-1.5335187;-1.9132427;-.0012950348;1.0020888;-1.0355771;3.6325436;-.33309337;-.17719372;.5163855;-.65482152;-.41337764;-.38238046;2.3650355;.41508031;-.41149983;.7884782;.16712627;-1.0660937;-.49203414;-.45646665;.57222778;-.62521249;1.0183806;.15395814;1.8087544;-.181435;-1.0300815;1.8316619;.34769377;-.77485442;-.44364557;-2.4317129;-.50457388;.49140981;1.1528785;1.1874328;2.0556147;-.63030577;1.9116353;-.050008971;6.7067537;1.2718048;1.1021832;-.44534126;1.3310136;.032249223;3.2398698;1.4008992;.052622069;2.3732235;-.35590702;3.1424456;-.74629796;1.857545;2.443778;3.3984799;1.6021414;.78886503;.90097225;.17181069;1.1058303;-.38160032;2.2096722;-.15807995;-.65385753;2.1180229;.13589603;1.4329026;2.4710505;3.4407785;-.5692504;.51391029;1.2490506;1.8478502;-1.5391164;5.0631328;-2.5308092;1.3118324;3.6164379;4.034276;1.0432308;2.430156;-4.1889997;.54994458;4.0001636;40.845268 +.27545753;1.1848323;1.0449828;.64906484;-.92177063;.6575132;-1.1174383;.74588907;.25526804;.39014137;.56672555;-.068086438;-1.4646025;.14023256;-.24809681;-.28136691;.72763318;-1.8134207;-.42431778;-.13324359;-.90051663;.40593085;1.0985879;.90567702;.63052624;-1.2498007;-.82236409;-1.0887526;1.1326809;-.89373964;-.11609587;.31078503;1.6992142;1.2509046;-.43710354;-.47678551;.028344577;-.26530311;-.38092157;-2.1193738;1.4639236;-1.3264194;1.5813866;-1.4137481;-.49243042;-.44801605;.81542885;.34518269;-.75115341;.70295012;5.015974;.44616902;.67078054;1.1534035;-.50254124;4.8374047;2.8330603;1.1465358;3.6081228;-.43876234;1.5361809;6.7393527;4.6599383;1.0666548;-.8214671;2.733844;2.9541173;5.0287838;.68525505;1.02133;3.5904784;1.410512;-.26917148;2.6126628;3.8459139;1.8128819;2.8389776;2.1903808;.11548437;1.3609557;3.0893495;1.6627141;1.562116;2.092515;1.4222153;4.8832445;5.6893253;.54139876;.98390234;.45438802;3.6951089;-.78752655;4.2510967;4.3799524;2.5663049;.55841398;1.4745437;-.45282683;2.4877889;.88913345;1.9173174;1.6722716;2.1596017;-1.2372799;.10893273;-.50013286;-1.1012028;-.20722327;-.084452622;1.0515589;2.0753081;-.15022478;-1.520786;-.56167001;.62539881;.3822464;-.061530747;-2.193754;-1.7921761;-.48712867;1.1353947;.92287147;.96362138;-.1750339;1.4248165;-.69225401;-.017885195;.40112808;.19035414;-1.775576;.88049483;.46737978;2.4295487;1.1873544;.037819918;.0034429657;1.2247635;-1.0159472;-.29979491;-.8818121;.44017896;-3.5908456;1.1408563;-.29190275;.22270301;.55890548;.53630126;2.1144207;-.30315405;-.43420494;4.9470439;-.17241234;.8976422;.073321454;.15949973;3.1714268;2.3599813;-.7329191;2.6856668;.43990093;1.7625459;4.6305799;3.2122102;.0082584312;.048111707;3.4121861;3.7709873;4.1128216;.47600394;.58530116;1.4861778;1.6093464;-.56764686;1.2506685;2.000921;1.6646639;2.181076;1.1149848;.28490064;.39013132;1.0937793;2.1333334;.37691978;3.2862229;-1.0689149;1.0418102;2.9394491;-.271162;1.7799683;.63632876;2.2261229;-1.6694934;3.0986662;3.9392292;.69289535;.08063437;1.151449;.40005711;3.1786544;2.2893512;54.386921 +.043099124;-.7454403;-.15957212;-.066380277;.48797792;-1.0758351;1.479009;.59866065;-1.2650331;-.17845058;-1.294031;-.48454419;-.9944194;.2156643;1.2371609;.52021295;-1.3844496;.14581859;1.1619469;-1.3657824;-1.0435526;-.50946891;-.56386322;-2.4084787;-.63440883;-.04078088;1.0586871;-.84041411;-1.4471045;.13403265;-.963121;-.14763419;-3.111212;.65722793;1.4093143;.68160725;.80291301;.3971988;-.34976709;1.5060861;1.7274683;.72160882;-.81890118;1.3741975;-.76602972;.26856047;-1.5870259;1.0512205;-.060322918;2.1137049;4.1555982;2.8837593;.20803794;-.33900407;5.6909599;2.7994738;3.1140034;3.8235724;-1.071167;3.9431319;1.1692067;-.21977095;.76487243;.69026244;3.1785278;1.9709032;-1.4467906;-.17102972;2.3272967;4.4357257;2.7341747;1.2135606;-.80272293;1.6658202;3.5464659;3.0806623;3.198344;1.8843739;-1.0179799;1.1958828;4.1561403;4.9251566;2.531126;2.9434948;3.63237;3.3093133;.17527461;5.7335305;.99500501;1.520999;4.6960864;2.7779589;1.3521204;4.4222517;3.4135704;4.8159804;.504062;1.388495;-.15680775;1.0334411;.1312661;-1.2132665;.40079221;1.7707455;.408427;-.68144339;-.66404921;1.2241412;-1.9815125;.95404088;-.86791056;-.15332162;-.24084339;-.20955338;-.96893191;-.84406245;.096441388;1.0515066;2.0370579;-1.4698439;-1.149366;.91386783;-.43342313;-1.1010764;-.5877189;-1.0920696;.67174244;-.65042865;-2.0105505;-1.1929799;.17926319;.71175051;-1.58079;.79533422;.57523251;.73701274;1.228395;.36463881;.62777805;.77992362;.87230378;-.30004388;-.54945374;.75275832;-.11903916;.99616772;-2.2368238;1.3512645;.088007629;3.0033422;2.6612744;1.5490109;-1.0398319;-.34937769;4.3911052;1.8002141;-.17023525;2.3070822;-1.4687898;1.7706116;-.0025899133;-.44841778;-1.1296723;2.4137859;1.7067581;1.5288922;-2.6004865;1.1748039;2.6049416;3.0832944;1.5182093;.41967183;-1.1090071;.43825001;1.5730313;2.2118714;2.2274656;.83521807;-1.3123112;2.0737422;4.6611581;4.038126;2.455966;3.3474503;4.2585001;1.3238811;-.5247761;4.6022372;.15159403;-.39484668;4.8373795;1.4773823;.050951868;4.7608032;3.3527668;3.6807728;.6344074;2.1202228;.44443482;-.80552787;50.267044 +2.5286248;.38163048;-2.0244436;.90989387;.86383331;-.85290068;-.56332612;.36922163;1.3571998;.93948793;.80242449;1.5767485;.28596216;.40115631;-.1626398;.22570889;1.4092649;-1.1420003;.24705699;.02874589;-1.5225676;-1.7050203;1.3095322;.69800079;.69606602;.5691328;-.79065377;2.0472901;-.93350178;-.39355621;.41455585;1.8114662;.23482797;-1.4989598;-.70410484;-.95937037;-.078443594;-.23682977;-.49543729;-.32720789;-.069224589;-.44819272;-1.0461304;1.1307844;-.668984;.64302254;-.82754093;-.22358336;-1.4812509;-.1617008;-.025389079;2.0592294;3.0923483;3.4684308;.88316703;.96693969;2.1911848;.029439116;6.1227536;4.1646848;.64694458;-.30292049;-1.3799824;-.43025878;2.1522269;3.2105954;1.7237271;.59537005;1.198086;1.0977199;.13786751;-1.8334218;5.156785;2.3184016;3.9898536;.86044043;3.0984366;3.0217323;3.7354608;4.4024434;.61668766;3.5173151;-.54086602;.077913791;2.3967087;2.7375815;2.197998;3.4010904;-1.3395791;3.9855003;-3.2255199;1.1160502;2.4724708;.3237569;.80528069;.6268425;-.6493299;-.16085222;1.8945495;3.5635297;.41195825;-.48636636;-2.2061894;.14265816;1.0471503;-1.4257023;2.8156075;.85072345;1.7632289;.85839319;1.6331961;.17115584;1.4184159;-.63773882;1.2397085;.15656073;.71665514;.69773453;-.72021645;.74078929;-3.8250539;-2.4524829;2.5843198;1.5451157;2.1817069;.62190086;-2.3350472;2.2205696;-.43717372;-.41668507;1.7257594;.94553089;-2.2005305;-.59816343;-.17250594;1.2398381;-.80191892;-1.922029;-.99344677;-.93698347;-1.2395855;-.23768856;-.78658301;1.1938034;-.55619526;-.71918446;.52946496;.23322928;-.17594847;-.11755029;-.15125184;1.7073157;1.6888425;3.0725684;1.3450595;.68560171;.0082387477;.28499284;3.7784796;3.1976199;.90474087;.19191241;1.3334769;-.25120828;2.1751206;3.5767179;1.8883187;1.6764518;-.31378791;1.6374408;-1.714389;-1.617175;3.2597272;1.1104416;2.6239009;3.0965128;3.0142105;4.3132639;2.2335279;5.0539784;-.37240243;3.6829734;.35806119;-1.715115;.57440227;.50345367;2.8477397;2.7725036;.87180257;4.146349;-1.9078603;.075303406;2.0499141;-.15532164;.18375315;.83302385;-.41460443;.24719764;1.4095774;3.5016139;37.109493 +1.059328;-.078844234;-.47123542;.30585977;.62811005;-.52531689;1.5067115;-1.2787652;-.68895155;-.39102396;-.03751282;-.80357444;.16591033;-.334683;-.31361476;.86356193;.16726948;.57780558;.48543265;.13990739;.3745665;-.99919438;-1.1570507;.93622488;-1.8053317;-.81426448;.99186814;-.16930354;.49452332;-1.5422162;.4707368;-2.2548516;-2.7765405;-.74999553;-1.7176607;-1.6971437;-.40931621;-1.2882066;.71115232;-.097958952;.87622583;-.81426668;-.71312183;.62088609;.42475137;-1.1863807;-.43588546;.79909539;1.3021811;-.15652376;6.0440226;2.3359351;-.0079503767;-.22917414;.77246147;3.0312736;-.29468769;.30487791;-2.9864957;-1.2674882;-.95886678;1.4604017;6.2587681;.17880279;-1.5547463;2.4279838;.097952701;1.1691989;2.1328688;.9297294;2.7815392;-1.8657639;1.1259884;2.2652094;4.4250741;2.7367592;6.5766263;3.0644739;2.4619904;-2.678416;2.5410118;-.71735871;2.3253233;-1.1486585;1.9024974;.29982302;-.57019365;-.19435927;4.0725217;-.33522341;3.167026;3.8178017;2.8889458;6.4218907;1.6388446;.69770128;1.6461232;.53252387;3.2849028;1.7826461;2.0782278;-.31435469;1.0122925;-.029788777;.7831915;1.4976474;2.5410006;-.44026932;-1.0125464;-.12978518;-.98488361;-1.3320614;-.001493656;.93947297;.97327983;-.9154588;-1.5610725;1.3642781;-.42901856;-1.157571;1.9706396;-.21773028;-.63908684;3.4973342;-1.2387816;-.098491989;1.6258414;.16328108;-.69536871;-2.2621624;.14914791;-2.5734365;-.25404698;-.139945;.11116801;-1.6177191;1.9785122;1.2803391;1.314978;.095576331;-.34157082;-2.5300736;.93689764;.01094899;-1.3753841;-.1197005;.17843868;2.0007758;.77333659;.035279579;5.2434416;3.2379541;1.0875491;.91433394;.88907695;1.6548098;-.042845201;.012082484;-2.60971;-1.0117282;.14512113;.26250443;4.567462;1.745203;-.7380783;2.2927477;-1.1051432;1.1964837;1.8466556;.69814533;2.1683829;-2.4886842;2.5471988;.5988605;2.5551791;2.0227425;5.7660198;-.62460333;1.2415323;-1.0443785;4.531651;.35993344;2.4956591;-2.4197228;2.4252863;.018282212;.89743072;.76313275;3.6292648;-1.2974831;3.5061576;2.9878008;1.7180117;2.8392739;2.142545;1.0845085;1.0828561;-.71192855;2.8497624;1.4589326;33.647121 +1.0545034;-.039958667;1.3227351;.19077052;-.12140923;1.3876523;.34586084;.2732406;-.92045236;-.50451773;-.19737451;-.33372477;-.22139692;-1.1499648;.23020115;.070869014;-1.7243924;.26654047;.45410088;-.69144565;-1.099631;.33408844;2.8777885;.37271109;-.25883824;-.59074324;.53376973;-.35736144;.16947587;-.1266848;2.0485249;.038822554;1.1797358;-.4702234;-.22101137;.53263932;.83090889;.4825311;.22653976;1.6411;.85991436;-.12772724;-.37057006;-2.400975;.8101204;-.79504913;-.34751138;.46369505;-.014285961;-.60728258;4.7073817;.47452116;3.1068943;.36377361;-.41076106;6.7558322;1.4698472;4.2830167;1.5784479;-1.6832112;1.2406358;2.5619767;.83834308;5.0906253;2.2574174;2.1884704;6.5225511;.99242014;3.9611437;3.3990474;-.38607049;5.5125136;5.1882753;4.1208673;1.1869389;.51376748;3.5401704;-.2432842;1.7480217;1.7193178;2.2045975;-.72875881;3.2626138;-.21506733;-1.3364859;2.0801699;1.7884084;1.4836042;-.33623236;2.4947629;.33751547;1.0764118;-2.359431;1.2137897;2.8774016;1.6452047;.10426874;-1.4570756;1.6618952;1.3115088;.75461352;.66679329;1.336852;.28697535;.79938322;1.1698395;1.4189898;-.70073438;-1.1015766;-.022868132;.64123911;-.35369453;-.28435624;-1.3014798;-.25631461;-.06438528;-.86402726;.054140769;.048846446;-2.4047086;-.62283576;-.36874419;.97442979;1.2289134;-2.0846848;-1.4491111;-1.9406253;.27738667;.81356889;.43305555;3.0063088;-.16912743;1.448925;-.58452684;.74837404;.089628339;2.6313703;1.2815957;.91765511;.89659774;.71733779;.14315771;.98705143;-2.1591117;-1.2864288;-.58199924;-2.4534519;.43035331;.53259027;-.10829651;3.9423943;.075912639;2.3561299;1.3818685;-1.2552619;5.6746669;1.3968902;1.5305511;1.5419177;.22225332;.35973567;1.7204311;.40794519;4.6385942;1.693254;1.2609396;3.7979126;.62216312;1.9949704;1.6477115;-.81280845;3.5036461;4.6054301;1.8099197;-.30490777;-.23753577;2.9111614;-.74410981;1.0019916;2.6680431;2.7263157;-.78508431;3.7047541;.3938418;-1.3384032;1.7626168;-.40668982;.88039696;-1.6730721;2.1542871;.053084832;.36160299;-.39186019;-.50024402;2.9126463;-.76157182;1.3391759;-2.0456464;1.0983429;.89788598;54.311794 +-.32292268;.41879234;.45539975;-.24719572;-1.0436068;.6609233;1.3083053;.31480333;-1.2002701;-1.3035324;1.7662168;.46016917;-.2552138;.12387515;1.4247969;.1308763;-.14698485;.26641428;-.0045790188;-2.4622142;.013280394;.36252832;.029250883;-1.1336552;.038746655;-.82892102;-.82917482;-.1419394;1.7777938;.56251174;.67335993;-.58259046;-1.7831154;1.4129392;.57288754;-1.4498501;-.92849594;.14379664;-.63423407;-.79827178;.71295196;-.80909562;-.16007742;.21914552;-1.5611111;-1.233277;-.17865643;2.438113;1.027229;.59761029;6.4457808;2.0210996;1.9913112;1.9971678;6.1597743;4.045269;1.2756652;-1.8234645;2.3967717;1.5975238;.9918986;1.9671885;3.7753398;1.9118531;2.7712348;1.2989004;2.0297511;2.1658225;2.0057702;1.4301138;1.2092254;-.50233424;.64649439;1.61256;4.9953337;1.8127537;-1.9062846;3.4235675;1.4698104;4.7050929;2.4390492;2.6658347;1.108829;.3996383;3.0115185;1.6409533;3.2374284;1.8068099;2.492801;.47402424;4.687005;4.6690993;.4972623;3.7163308;3.6075864;-.52135986;2.4426448;3.7944536;2.0515947;-1.0654669;-.30149791;.23075514;-1.6861544;-.28898898;.63708156;2.457742;2.3819928;.83074588;-2.237184;-1.2106866;-.67803627;.88196921;-.52449334;-.75716788;.46129435;1.066828;.29812747;-.35554248;-.88770556;-1.2862952;-.51532662;1.3933799;-1.280934;-.12378697;-1.2020783;-.76423031;.48501816;-.78184098;-1.6832403;.85322964;.46004447;.15217596;-.66378117;-.18748185;.18596104;-.72107422;-1.2880708;1.3928518;.12829781;-.28822151;-.45803192;.83958262;.69131565;.31932396;-.76591569;-2.281863;-.71464241;2.5536668;1.4515369;-.15370964;5.1191816;1.2158272;-.30941132;2.9619524;3.4306419;2.0971248;.1741304;-1.0934935;1.5869721;2.3722439;1.5080609;.28928015;2.0136282;1.729926;3.1709876;1.2355607;1.5484121;.38087484;1.230193;.39227074;1.2572968;-1.2360057;1.7628878;1.0605077;4.3788972;1.1021315;-1.7714409;3.3004477;2.6108673;2.2918143;1.5655558;1.0329378;-.55635768;1.5116539;.60256714;1.1534872;2.8109279;1.2578249;2.0006952;.02200173;2.4678032;1.5900693;.31650493;3.1655641;1.8178715;-1.6878262;.37717244;2.8949254;.7031824;.86207306;49.564789 +.10349919;1.2682549;.053404;.26700127;1.5636379;.4257836;.020414608;-1.0850754;-.3207984;-.6509586;.71450853;.17017779;-.7580511;.088007852;-1.4302349;-.71455646;-.70826298;.48674461;-.4155978;.36541376;1.2227345;.016443947;-1.114398;-.18669727;.095531099;.3140077;-.46288311;.74482656;-.51687682;.50302917;-.96109104;-.80436581;.73540419;-.16602279;1.1304169;-.10329374;-2.2832305;.90511197;-.81325519;-.68594313;-.84278202;-1.0276754;2.1365514;1.3359874;-1.6943494;-1.1745855;1.1265992;-.156224;.057008855;.97132963;2.5582249;3.5218902;-1.1122724;3.5466523;.38621923;-.98074782;5.803781;.94522506;.73151779;3.7134926;3.3268702;2.2509165;1.9649569;.83660161;1.0025105;3.1279948;3.1969903;2.31546;2.8653653;-.2727319;.60315233;2.3444617;2.0041564;-.41542831;2.9346583;-.62349743;6.3551874;.39694405;2.6787529;1.2530951;1.700843;2.6926649;2.840718;3.0054467;4.2948179;5.1230941;5.4266167;4.0717082;2.4700954;3.228276;5.7130322;1.7438887;6.7791123;2.5693078;1.58395;3.695061;3.1113646;.56803381;5.4556479;.52575272;.74821734;.29692322;.14663854;1.5924132;3.1593759;-.50001878;-.95625865;-.88673544;1.8083241;-2.0663943;1.3361784;-1.1827683;-.015698019;.46051133;-.49263558;-.92660731;-2.1492524;.87902772;.31193736;-1.6370066;1.2845668;.079706557;-.14479327;-.8917644;-.15555641;-.75617951;-1.3861831;-.52157569;.57386816;-.39211932;.45023254;-1.005594;.45176288;-.083149977;1.6740372;1.0945837;-1.9365996;.34323108;-.60196674;-.94423473;1.2165645;.31099194;3.326102;.38820162;-1.3550526;.42574987;.54179591;-.79525614;1.2750169;1.5427347;2.0506651;3.1114593;.40215799;.9927811;.91147429;-.76805431;3.949322;-1.599797;-.15853974;3.8977809;1.949684;2.2009625;1.7963414;-.23577563;2.1996615;.73061007;1.5598769;1.3353754;.38098809;1.0484045;1.7150536;1.3879545;.94091696;-1.9612153;1.9038982;-.43675452;4.767406;.20719254;2.4857385;1.2163686;-.04092196;.46175653;3.7119346;1.6640451;2.1348765;4.1306229;4.3593941;2.8341267;2.2052321;3.4392707;3.7917547;1.7653307;6.2488704;2.3589516;.024092564;3.7897778;3.2528431;1.1805457;2.783267;-.48048466;60.117104 +-.60064268;-1.1070986;-.15300426;.085802063;-.48382059;1.117821;.73189062;.92504251;2.4808969;.17542702;-.18647543;1.2226429;1.0051825;-.41500285;.8446784;-.57803774;-.529136;.19856091;-.27240029;-.17242689;.86124891;1.0032785;-.028405899;.23228349;-.63740939;.16540512;-.45452788;.77188021;1.659374;2.4809644;.85065573;-.97663021;.098756939;.046064578;1.1413031;-.27145776;-.10959712;1.822755;1.7600534;-2.18942;.7668274;1.5092829;-1.5791043;.79123896;.66046578;.88453639;2.2301002;-.72583318;1.0498934;-.47462657;-1.0280719;3.0530925;4.3713355;4.6192603;1.3129909;3.0062463;.18000947;5.5426784;1.1471336;2.7098567;1.4366227;4.601357;2.4581177;-.070378669;5.140996;4.175118;1.9963633;2.7843597;2.0035865;2.2677543;4.5357628;2.8703129;2.9934573;3.55497;1.5355262;1.8601511;2.6499498;-.60433501;.68269706;2.0929761;.0070984787;3.136955;4.5458736;1.0392849;.77729315;2.9072707;3.2569034;1.484365;2.5894866;2.1284082;2.5657485;.95867693;-.75757349;1.6649733;1.0470668;-3.0411181;2.7109575;.66833097;-.47047648;.22575964;2.5378101;-1.0832301;.14551938;1.1419595;-.78894526;.41759455;-.5613153;-.43078813;2.1889119;.008299063;.42404953;-.39370996;3.3690825;.21929783;-.019675769;-.5566414;2.009093;-.32701665;-.15462001;.022824533;.30617851;1.8694305;-.22677633;.21374215;1.8429918;.16244981;-1.293484;-.46520114;.43859825;1.2629296;1.766748;.13504788;.55585933;-.26734111;-.25913692;.22153355;-1.2312033;1.7022088;.65116137;-1.5805594;-.24177538;-.21856488;-1.1983551;-.5898627;.59193933;1.1511757;1.2278371;-.80824274;.50818843;1.8639451;-.60003281;1.8853774;4.1706438;2.4811726;1.2398665;1.8456694;.70207518;4.4421043;.71116132;.22668517;-.25342074;2.7017994;1.2323382;1.7687176;6.1006718;3.5457397;.17712782;1.3407619;.84581965;2.1186495;1.3383462;1.6394845;2.4118409;3.4757221;.053460952;2.1328292;2.7979202;-.75660807;-.94348222;-.97766399;.69490147;2.2407379;4.3730397;.30684671;-.39327651;3.6098251;2.7705657;2.1153131;.031744476;.51180017;2.4003401;.63666511;.61701852;-.26987246;1.3662919;-3.9086139;1.4181927;.57157826;-.19227263;-1.0848898;62.035088 +-.21195932;.99917001;.55754584;-.28594512;.42930779;1.442728;.75497919;-.038333207;-.74859804;-.067787021;.19590414;-1.5016125;-1.290471;-1.2084131;-1.6741686;-.11123695;1.7133281;.64907521;.71661085;-1.7240828;-.22631904;1.6597289;2.878571;-.026281752;-.15250657;1.373866;-1.2511408;-.65159822;-.48953158;-1.1192585;-1.5588638;.17878935;.31256753;-.72039062;-1.5546969;-.74339485;.084722206;.31243524;-.83374214;.622392;.20800474;-.53922009;-.21034382;.80774993;-.10479427;.68648833;.46937877;.26454338;1.5702335;.58288634;-.7297594;-3.8378332;-.62394428;2.7447972;5.0915475;1.573707;4.3397703;-1.2031204;3.3877022;.91368484;6.5650797;3.4261653;1.2469641;4.8875446;.71674579;-2.3866141;1.3198434;3.9371543;1.1861726;3.3325429;3.3225968;.25482664;1.4541832;-1.0632018;1.2407972;1.7792679;4.1381183;-1.5513723;2.1284757;1.4710561;1.5489377;1.4147282;4.0178051;.087156191;.51308006;-.052482098;3.6213913;4.3497696;.75372589;2.5597975;2.0638864;2.1823444;.14786647;.65497124;-1.228883;5.455792;-.81294107;.59238255;-2.0044603;3.8512037;.16867565;.78346032;.40824038;.40673983;-.8580398;1.8748089;-.27863264;-1.0157721;-.67045259;-2.1347556;1.3847618;-1.286763;-.86668187;-.018000767;-1.6516848;-1.506129;1.4257677;.73819613;-.68800962;-1.2253704;-.88921273;.90203351;1.8266587;.12052503;.60616457;1.5069273;-1.4897625;-.52711916;1.1865696;1.0060803;-1.583378;-.058046017;-.16084081;-.12833221;-1.4981132;.20830619;1.6311933;1.3741693;-2.2952843;.97582978;-.48679176;.02152474;-1.5093197;.70511979;1.2894685;.89268142;.57163972;.46125746;2.0438251;-.71871829;-.03416536;-2.4550946;-.666008;3.6248538;3.9304392;1.2883979;2.8285093;-1.3868672;2.0021768;.32130072;4.6529465;2.4265401;-.22149025;3.5350986;.19469553;-3.3534062;.64553756;3.09744;1.3832535;1.6260573;2.5005932;.43688458;.94447768;.38969496;3.0735774;.99619699;3.3832154;-1.2526649;1.7783718;1.7978086;.81659436;1.7932711;3.732857;-.24810249;-.90148377;.56846404;.54263312;2.7060931;.26007152;1.2254236;1.3313582;1.6961527;-.94634825;1.3760115;-.21449603;4.8702111;-2.7952516;-.65923929;-1.3476992;3.336946;39.23679 +-.037572831;-.66899765;-.86038703;-1.0842936;-.89719266;-.86567098;-.59386164;-1.043804;-1.2718366;.032202143;1.5913199;-1.6738833;.41574103;-.58601266;-.39543539;-.67458594;-1.3907441;.36431766;.93103468;.28675881;1.6306047;-.18899725;-1.3469857;.18696655;.82204324;.2558952;-.31514394;.70658004;.18449838;-.35842863;-.018141102;-.20760384;.88449746;1.9704955;-.7642473;-.61964786;.0054377094;-.0022744366;.14686164;.45946106;.026009355;-.47172239;-1.8360004;.58890057;-.23603083;.920322;1.884573;.095533647;.63535106;.66139072;5.010819;.51218569;3.7782974;4.6997471;-3.0863781;.86461991;.34988853;1.2950736;-.031019973;-1.8750372;.2753689;-.16654205;2.9292147;.78655112;3.4133749;-.07729169;-2.3440022;.033329859;4.0357571;6.0419989;3.835139;-.70491534;3.3593805;4.157145;2.2495449;-.74489874;3.0260642;5.0158272;1.0796883;2.4222753;-1.166185;-1.7771674;4.8047295;3.2277179;1.1151376;-.55350423;1.1778257;2.6174161;.961263;1.1367757;4.7259579;1.8196298;-.10838038;1.530075;3.0896225;.80444783;2.5203154;5.0299911;5.8372502;.055329878;1.6659383;.56792706;-.034748644;.42944285;-1.9594411;-.76949161;-.086661622;.81897169;-1.4646711;-.21093106;.43245921;-1.9108731;.2652683;-2.0200229;-.63369882;-.13143893;-.43710926;1.9717427;1.7765846;1.0254054;.15136245;-1.2742743;-2.0610845;-1.5995333;.30791453;.0079986034;.29118139;-.069700353;1.770249;-.78673881;-1.4007459;.011380076;-.61098295;.42596489;.48073831;-1.8212168;-.56798601;.58555561;1.4492697;-.60708815;-1.6737566;-.8238833;-2.7069199;2.1151721;.03984027;1.7659744;2.754133;-.79047817;1.0420638;-.76865155;3.9585094;-.3294138;3.5288785;2.3697312;-1.6481742;.41551426;.42436099;3.8520036;.10899406;-.44429931;.19711588;-1.673003;2.189693;-1.843037;2.9554718;1.7764385;-.80358523;-1.0554122;2.1910396;4.7890248;3.0732522;-.023704639;1.8617048;3.3691931;.47833803;-.29566902;1.5580318;4.1160927;.085319832;1.9865178;-1.0242897;-.12078798;2.1151011;1.8186537;1.8935369;-1.8075769;-.84952128;.28673929;.49694636;1.0099233;2.4826112;.79065728;1.1131395;1.6059278;2.8190334;2.5504289;2.4830871;2.103761;3.9104455;-.20506907;43.354198 +-1.7059152;-1.4841808;-.47334704;.13880278;.040618151;-.74563384;-1.6075926;.084957361;-.65896857;-.66936159;-1.894418;.7938202;-.86426026;-.31448358;.2095405;1.947816;.31876782;-.93573022;.95754194;.24036494;-.25346598;-1.6349084;-.50525331;-1.3259069;-.15323775;.78816229;-.53855866;.66581172;.36878198;.67946512;-.58719784;-.61031324;-.10418336;-.49850631;-1.6674001;-.082183018;.55662102;2.9411199;.51331222;-.23837209;.6141206;.37246832;.52148533;1.0586681;-1.0184319;1.4326421;.13755524;-.57804716;.050102018;-1.5372819;3.4195797;.098212972;.0030911397;.94606084;.97140163;-1.794855;5.9219699;.0062361243;4.5114431;2.3188994;-2.5953076;3.2362654;4.430676;3.2790275;6.7187428;3.6640561;.25848868;-1.4290514;2.3967834;1.2887979;5.6938019;2.7740717;3.1970756;3.4144213;.46921819;1.5299578;1.4340549;-.59521985;.88090968;3.1598644;1.5245234;-2.4797525;-1.3921636;.13222936;1.9217064;1.9460965;2.4566143;4.2105155;2.6665781;4.5025949;.49654222;5.5151868;-1.0786901;2.7409167;2.7785103;3.2982836;2.6514933;5.319304;5.2509847;5.0421019;-1.0525098;-2.2570922;.9867757;-1.8956329;-.35409558;.89873976;-.61752152;-.52454108;-.32478082;-.62492728;-3.1144266;2.0836253;.12924922;-.50992656;-.0048817722;3.5502591;.38808805;-1.0122334;.68506044;.11934245;-1.0440668;-2.6203063;-1.070501;.293515;1.8453447;.24582495;-1.3977712;-.46229774;.59087688;-.50393611;-1.4353136;.33329815;1.0413573;-.69116646;-1.2733392;-1.1270627;-.62420064;2.63677;-.27430195;-.9003762;1.8407187;1.8994458;.85536265;.76392764;-.40256456;1.4669468;-.62149191;-1.4116815;2.8993621;-1.1913391;1.7410036;.95676756;-2.1381712;.57070416;1.5390495;-1.5039053;4.2215676;1.6938258;2.7082348;1.1039368;-4.184391;1.5634545;4.9407139;2.5728178;4.3085446;1.7442335;-.41416985;-.71289963;4.4336562;1.0225141;5.8022285;2.7035422;1.3665015;1.2865592;.28438929;.34677574;3.2586563;-.92257184;1.182675;4.0834188;1.129807;-1.6640414;-.28958702;.17439313;2.1604445;-.54646277;2.1403584;2.1135259;2.3566339;4.4531083;1.2814183;2.9207091;-2.3466702;.99296665;2.430388;-.32137144;3.9441125;1.2218583;4.2402949;2.4323611;51.074333 +1.8594446;-.7808798;-1.2028507;-.46890855;.23433241;-.25814199;.075566113;-.033017635;-.41446868;1.0302353;-.24675594;1.3728205;.49766099;-.98539007;-.36368075;.081434838;-1.1742964;1.061924;.50896704;-1.1336293;.12190691;-.92080909;-1.2333771;1.3947419;.13802473;-.30762738;-1.0789347;-1.4823501;-1.9464055;.18107474;.42230594;-3.0089357;.029167352;1.4602649;.071934126;-.39223987;-.06936612;.42259669;.2845358;-.58538204;-1.6011345;1.5463144;-1.5147102;.77725178;-1.2788552;.70666635;-.30618152;-.55893308;2.3144717;.46453437;-.4620997;.27566466;5.3953266;1.3999711;.86678141;3.5744312;3.4720371;1.3656038;3.368149;3.3704;3.3098922;-.83586425;2.3940089;2.0497947;3.3302264;4.6338778;5.4889116;3.7291439;4.0362372;1.9985209;-1.1355948;3.2988834;-.29935589;-.75611919;2.7592523;1.401421;1.098238;3.4559093;3.2395504;.9020437;.54054648;2.000526;1.3339314;-2.162081;1.5826108;2.9848132;2.3135433;-3.0497327;3.7346299;-.37004536;-.021779049;1.0466646;-.16072807;-2.3347099;.59140819;2.1153481;3.4336605;1.9063516;4.700232;.28298357;3.6885817;-1.5906299;1.1915399;-.9591341;-.72893226;1.5094494;.81057322;-1.5129639;.49174288;-1.4571283;2.8272989;1.3938978;1.4106414;-1.1744565;-1.2049514;-.83243132;-1.2132876;-1.0588026;1.3662188;-.6630944;-1.7392464;-1.7341135;-.38818306;1.0177654;.34520668;.58391523;-.83433181;-.55708826;-2.4892416;-.59379292;-.035646074;-1.7346432;-.76859593;2.6086988;-.67930043;-1.3658979;.6936909;.3008008;.95008129;-.19460146;-1.0976056;.10118182;-1.4516957;1.9735392;-1.1791935;-.77418888;-.76616442;.49402896;1.3618436;-.31043589;.548756;.47905815;5.173718;.32009667;-1.7689735;4.090035;2.6234622;.54239374;2.576458;3.9033558;2.4409132;-.33847401;2.780926;2.2605877;3.4203069;3.6527455;2.1427679;3.4716802;2.3986351;.78095919;-1.6039735;2.6996131;-.78165811;-.13566501;.63385808;1.3931581;-1.0611542;1.9857143;3.6238058;.43396986;-.23585042;1.1962818;.42994222;-1.5057522;.11785944;2.2394402;1.6411909;-1.9112288;3.4423745;-.02563801;-1.0563351;1.1329405;-1.7535858;.74255687;1.3014617;1.4728863;1.9512401;1.950752;3.8530231;-.120671;36.847134 +1.2293547;-1.15502;-.80347753;-1.3983291;-.095793881;-.74076498;-.31002882;-.084074713;.23292336;-.6421392;1.0760305;-2.1448638;.27405769;-1.8756196;1.0381507;.32654238;-1.8963164;.18667193;-1.1162614;.97346938;.31284329;1.3844401;.86121881;-.38414741;-.2214116;-.54792261;-.13658884;-.4670524;.57615089;.73000658;-.55316114;-.35445118;.27258191;.4147661;1.1404669;1.1031197;.12839687;-.4223628;-.32407537;-.29395172;1.0667849;2.0204713;.64979917;-1.6293308;-.21206613;-1.989535;-.86889064;-.87642729;.3982341;-1.3121117;-1.06777;2.5557575;-1.3638028;-2.9004798;-.36196214;2.6264362;-.37348655;-.085679248;2.7739062;4.811697;1.211144;1.5716486;2.2701621;5.847383;1.1069058;1.2452226;-1.4344431;2.0790412;4.245738;.61568761;1.1707741;2.2183104;3.617461;1.1591642;-1.2845769;-3.1348219;6.053452;4.040874;2.789537;-1.163529;5.0193434;1.6692266;5.0668721;.9196052;2.7650414;3.0310316;.61910892;2.5576284;2.1611426;1.3033491;3.4308164;4.0709338;1.5793957;1.3015124;-.30136055;-1.4599264;1.3983021;3.6221251;2.0783002;2.5874748;.28247124;-1.6439599;.87985337;-3.3429694;-.90229303;.76826274;-1.271598;.14479984;-.27079585;-.079476655;.62486869;-2.9478965;-1.0852337;.34524965;2.154933;-.42050663;-1.7613252;.67800236;-2.3245604;-.13606933;1.3363518;.80856293;1.0085078;-.022463746;-3.5843453;.064283185;.93293262;-.50269604;1.5923069;.48503289;-.57664096;-.44102904;-.44329813;-1.0235393;.15919833;.28355429;1.2227098;-.90513164;.21790466;-.15659538;.90167558;1.473294;.13157822;.69365102;1.2894155;-1.4214251;-.85395855;-.021912316;1.5063521;-1.4062108;-1.5867813;3.3790979;-2.2983027;-1.2901779;.52345151;.44070274;-1.1792718;1.2423472;.31114429;3.18593;2.0259662;-1.0355819;.076198719;3.7899909;1.7007074;.87577111;-1.4287425;1.4992982;3.1378422;1.1017045;.58062935;1.9137448;2.0826769;-.75415248;-1.8287765;-1.6049055;4.0362368;.82058507;2.4371889;-1.3500338;3.1545429;1.4825079;3.8185873;.15754971;1.8491622;.62867612;.53169626;1.1412593;2.000387;1.9471399;1.9684417;4.8874574;.49788749;.056888442;.54320937;.79350668;.97799253;1.7073622;-.12787282;.050350081;38.222542 +.36608341;-2.6421764;.29291585;1.5107648;-1.551748;-1.297526;-.053693898;.22355536;.96979392;-.20519027;-2.018332;-1.2595475;.46744522;-1.3842504;-.73692781;-.89320999;-.96780413;1.2639326;-.60097098;.026097011;-1.2741679;-.23480363;1.2701291;-.59447801;-.28066263;-.16192578;-.040935561;.58771145;-1.0854256;.33942896;-1.0413972;-1.1062044;.76006728;-.65011275;.032126509;-1.5108923;-.86120087;-.14352088;.91513485;.026953897;-.98835099;-.84561312;-.98262429;.85205209;-1.0707361;-1.2805251;1.7755492;-.25975958;-2.5079823;.70627511;.54939479;1.1696981;2.2303805;.83029366;4.3955846;1.0635579;-.45706046;3.8626411;1.8754182;2.2935653;1.1141212;3.7070687;-.10957833;.79130995;-1.1335984;2.2084396;4.997323;-2.166096;.10645103;-2.6745117;2.7435899;2.5334618;-2.2205117;2.1406796;1.1390558;2.8552248;1.879993;.2267552;1.3955073;.80746371;-.78698611;.30806583;3.8966196;4.7012925;1.6115751;1.3709596;1.4596826;2.6289434;-.072313301;-1.9373642;1.392992;2.167891;2.819495;4.3298264;-.79523951;.79318744;.93796402;5.7656736;1.7631358;1.3186668;1.034629;-2.7804148;.38252935;2.1862142;.99271762;-1.2213845;-.46486545;1.0952125;.55737329;-.073464565;-.12481225;-.85178506;.70318598;.12370386;-1.4254295;-1.0770496;-.023683526;2.179965;-.35945189;-.40658471;-1.2329072;.26216528;.73149204;-.10241877;.30238754;.29560852;-.76675653;.94778723;-.61234462;-.99987698;-.53873676;-.73256749;1.4516041;-1.7022867;.60206765;-1.4152174;-1.6065284;-1.1876436;1.3185245;1.3572276;-.14431439;-.77533865;-.6596157;.61963993;-.001356195;.41768104;.83502877;.87403584;-2.8046131;.55700821;.22752796;.096122228;.19523653;.79969567;.85519654;1.2040905;-2.1521208;1.8604847;.56134725;2.691329;-.12762347;3.4064796;.021844309;.02069951;-.70596611;2.0859706;4.259419;-.93375415;2.5264857;-2.5714738;.58428258;1.369102;-.79639536;1.8037902;-.19716704;1.8550436;1.1661704;.39579707;1.9286697;.0085933609;-.55199826;-.067486413;2.9426725;2.8514142;.74275339;-1.0315074;3.2331519;2.0444603;.053583182;-.45980108;-.079144448;3.8143268;1.4447339;3.2297919;.093587123;-1.3259739;2.0159037;2.1567504;2.5742261;-.92344874;24.569387 +.47555637;.38641167;1.7985308;.89495224;-1.5618865;-.2225939;-1.1824517;.41037443;1.2280232;-2.249433;.61282921;-1.0554723;-.10572938;.64432973;.4447239;.98427331;-.00070173724;.37042081;-.4465417;-.80621618;-.12710808;-.23788227;-.12698765;-2.0044947;-.42625612;-.060008064;-.2915346;-.21692424;.047246672;1.08171;-1.7572837;.0049782596;-.17784184;-1.2568855;-1.4503391;-.23801291;2.3218627;-.59096712;.58071899;-1.9816694;.71962065;-.94366556;-.10328426;-1.2155894;-.63088393;.37952861;-.75502747;.62923312;-.26127219;-1.7859274;4.4515381;3.3728931;.57990915;4.0824313;1.3819386;.67279041;-.96967173;.64831024;3.2835498;1.5961056;.53327167;.67983681;.37443233;1.9498813;1.5444586;1.6935301;2.9884055;3.891715;3.0264699;3.7308316;6.1803713;.90756023;-2.5186012;3.8885713;.41628224;.28401908;3.3467238;.38973576;4.2044735;3.5112405;1.3733577;5.9708052;2.6026332;.50425798;2.987294;1.3578342;1.8237228;2.9072549;3.6165581;1.5074342;-.27207091;5.849237;-1.223887;-.40027395;2.1040103;3.8028924;1.4174889;.85033053;-2.240236;1.8342046;-.6910435;-.97071666;2.3799508;1.4630419;-.55028582;-1.3044139;-.52664709;.63053572;.82157713;-2.0568578;.35277012;-1.0039515;.093771785;.013427595;1.3032171;-.90806967;.56125921;.75458837;.064065658;-1.4207345;1.0807512;-.66499227;.63934678;-1.89001;-.02744545;-1.4498219;-.057689477;1.7930274;1.0644647;.10183072;-.28188258;2.7873027;.67565155;-.26743898;-2.195972;-1.5603535;.86162746;-.74902862;-.39712673;-1.854337;1.4327954;-.55187273;-1.0562352;-.79892111;-1.5389037;-.029975275;1.1241199;.31574681;-1.7491012;-.57266319;3.9446328;4.0029287;1.5474645;4.4625673;2.995322;.27303466;-1.1719321;-.15706024;2.510217;1.4419628;1.5673124;.61963344;.44132522;1.99562;2.0176742;.24854068;2.4664342;2.9307699;3.0481231;1.6249695;5.1093674;1.4993968;-2.4703641;1.3391232;-.058022507;-.47656357;1.414746;-.81396556;2.7465119;1.7323929;-.24691591;4.0307698;1.1504831;.68796533;1.1748062;1.3343309;1.542991;1.9260339;3.5921631;.77361035;.58018786;4.1239796;-1.3481431;1.3205897;1.5177847;2.760051;2.5745733;1.0410422;-2.4793749;4.1071534;47.90535 +1.1075234;-.30487612;-1.4974912;.85484892;1.2262844;1.1484542;-.43333042;.40832675;2.079191;.11680383;-.36419386;.12467619;.81708419;-1.395303;.49780932;-1.9549657;.69312614;-.40911928;.44370359;-.66085184;.44443661;-1.7165881;-1.3887999;.12103206;1.6888448;.48784554;1.0245013;-.65880817;-.92408109;.31097478;1.3702158;1.0024502;-.48977053;.054596908;1.1812941;-.86387402;.20682332;-1.0994385;-.95769465;-1.4750564;-1.4868368;.17201267;-.070131406;-1.6346673;.78627366;-1.2050624;.48937148;.027518714;.4708387;-.71767157;.81224513;4.9313531;4.7190838;6.0681348;2.5484295;4.4635029;3.3521347;-.010905296;2.9319665;-.33207399;2.1047878;4.9278636;3.6952453;2.6228075;1.3523492;2.4659841;-.34928679;3.0514746;4.1063404;1.9374028;1.2332017;3.2584465;1.2076184;2.969553;-.84210765;3.6268833;-.99942857;1.4294101;.54772985;-2.7142987;6.6805663;2.1444383;.5049715;2.1136944;-.23059538;1.4226342;2.2920671;1.9358007;2.7263143;-2.4104145;-.025154267;2.286983;2.7545674;.091011614;4.2776241;1.6666163;3.2731497;.39425528;4.1417966;1.1178823;.44179964;-2.057864;-.2284442;-.47707054;.63866466;1.6807672;-1.4307374;.48531407;1.6974407;-.3374747;.71451426;-.133797;1.1736062;-1.6140926;1.0233076;-1.5660974;1.625452;-1.2062546;-1.2390251;-.064440019;-.67129868;.62106907;-3.3025107;1.084021;.041954607;1.0238723;.90586811;.72352827;.11939749;.30705571;1.2088026;1.6176031;-.280292;-.2311375;.84865272;-.037777986;.1691207;.13493593;-1.9700602;-.93101144;-1.3042233;-.28617072;1.3241926;-2.3997526;-.14870039;.55597526;-.33884588;-.21793509;-.54897553;.38563463;.95400667;5.230432;2.5385084;4.3216419;.031451933;2.9336512;2.7544637;-1.4618664;.92924327;-.1156941;1.5503248;2.3637247;4.0193515;2.4733436;-.59755182;1.800999;-.84249568;.93428755;3.0044928;1.4152792;1.9343297;2.2929897;1.3692496;3.3355012;-1.275737;2.5010962;-.39245328;1.6617163;-.95175886;-1.202502;4.0210023;3.420414;-1.0145768;1.2021242;.18106124;1.7341199;1.2697494;2.7696924;1.2624823;-.68249112;-1.1816186;1.2307409;3.058203;.46013889;2.7642007;2.2752345;2.8807092;.30365708;3.1821678;.85840064;47.600468 +1.1713324;1.5251634;1.3284253;1.8863435;.7218861;-1.0989318;1.6700804;-1.6055075;-.22052111;-.32930771;1.5881149;1.1556077;.59121972;1.0333459;-.9573279;-.083052948;-.94065309;-.72491598;.43202001;1.2797348;.63460732;-.71013194;-2.6853387;1.1593368;1.0189432;-.46024048;1.1380252;-.8934837;.049971398;-1.88708;.19127013;-1.9883132;.93860567;.31240368;.99020225;-.2497873;.1141493;-.12833735;-2.1123033;1.5270455;1.0976354;-1.1556352;-.99463934;-.86210763;.41992462;1.6977601;.68828392;1.2891748;-.69784719;-.64175689;2.2620485;3.7678235;.73935908;.94156104;4.2852831;6.5668936;.65506703;.10976625;3.5781155;1.4687375;4.1593752;-.79176056;-.30826515;1.5916431;-.89144701;2.220366;1.8842767;.83467811;2.0607767;2.0241287;.55354387;.45069027;5.3517451;4.9338508;3.1975927;1.0582058;-.5307374;5.7966871;1.3841212;1.3705189;2.4491098;.92677891;-1.0851357;3.9604993;-.52389771;-.16162075;2.223237;-1.0651813;4.0408988;1.0261027;.83907092;2.6027181;3.6697981;.16467732;3.5043557;1.3336407;2.5119636;-2.0636868;1.5174602;3.187201;.70770478;-.26818556;.063777514;1.481604;1.19266;-1.2717054;1.4657844;-.89712006;-.23320572;-.31181315;.75140584;-.041356411;.14731729;.79448044;-1.4082607;-.76779205;1.0920172;-1.2119383;.57194674;.66442353;1.1664598;-1.3934567;-1.0215335;.85275185;1.4449072;-.9139697;.80625248;-.11158531;-1.4938074;-2.2530146;.090300672;-1.6276735;.9711709;.51998913;1.6733259;-.39845312;-.84386015;.98823059;-1.395524;1.7052186;.22194424;-.55169654;-2.7822983;1.1521032;-.2268661;1.8530822;-.86859018;.18624781;-2.1424634;-1.3565853;1.4017273;2.0630977;.025320427;.23460649;3.5116074;3.9544318;-.038960159;1.6525905;3.4145155;.5719142;4.121439;-.30696398;1.2471032;.056310602;-.93652606;-.61379004;.67615479;.7664507;3.1308689;2.0394876;.17412043;-.35338327;5.2912602;4.3322453;2.0473273;2.0142033;-1.1973289;4.8445826;-.3346647;2.5992129;2.2969398;.96513075;-.125264;2.4798753;1.7248077;1.0398537;.36933795;-.76120293;2.7591093;.9578315;.91091192;2.5733008;4.1009517;-.21950944;1.8592262;1.2518164;.80133492;.48391414;1.256736;2.8511002;50.277218 +1.9880055;.39136565;1.0344421;1.3427801;-.74657804;.48745027;1.4305166;-.014877148;.1272328;.23895167;.61225384;1.2057561;-.91330945;-.061044388;-3.1432998;1.1020278;.43353778;.40590337;.43303806;.30033794;-.18286699;-.080372348;-1.855937;.51945525;-1.3062694;-.095652647;.54287899;.60516685;-.40217891;-.40864339;.12538141;-2.2420044;.86682659;.10131685;1.344681;-1.6612244;-.64522487;1.2785765;-1.6336411;-.743626;-.3527239;-.78663909;.72635949;-.25315335;-1.0991575;.57249993;.32233727;.081656203;-1.847385;1.5089452;3.3847229;1.347039;2.8962426;-1.7270364;2.504837;2.8741655;1.5043143;4.5309381;2.3090217;2.0349298;1.3334731;4.6922317;3.708925;3.9355056;2.6203434;1.2534794;-.86857605;3.5556982;-1.0940111;.67062879;4.9850106;3.3510814;.33040094;3.8548665;-.18084021;-.044266552;2.344377;1.5494648;8.4462843;-.19473869;1.4244527;5.1457605;-2.2447488;4.7909126;2.1336756;-.67435503;1.1895955;-1.7968532;3.2444594;2.1290934;-.32779849;-1.6264449;1.8414183;4.501389;4.4705238;.35137093;3.3545446;-1.2396032;6.237381;7.9586453;.044269677;1.9745591;.66102242;.10460331;.092563644;.19480476;1.3647856;-.23679364;-1.1044393;.64409441;-.57516432;-.89615107;-.74002397;-.17093761;-2.7691991;.50158429;2.0492864;-.11980673;.88480836;-.5806089;-.8652302;.47788179;-2.4806488;-.81637162;-2.774102;-.015459013;-1.1357026;.26343226;-.50866115;-1.6989746;-1.3206536;-.34949398;1.7806028;.30468827;.9092077;-.49935824;-.60623091;.71315414;-.65105045;.53376406;-.42133242;.98252094;-.13393728;1.1734526;-2.3188441;.78343397;.37762839;.30918565;-2.0309238;-.53905457;3.1004834;1.9713848;2.305203;-1.5738803;1.5356663;2.1241846;1.5732418;4.1802411;.70824569;.99984086;-.55190325;4.5486412;3.9474564;2.1072862;.67258728;.29809508;-.31187639;3.0283749;-1.0322093;-.90925944;3.7322793;1.8508911;.39641058;3.586153;-1.9763696;-.79161936;.54935896;.90752792;5.858428;-1.4349971;.093609586;2.5976231;-1.8379458;3.7827868;3.2305176;-1.9615721;.15573342;-2.0573044;1.1992354;2.2239733;-1.2804928;-1.1306159;1.2253426;4.1908374;2.5599816;-1.9856886;1.9853934;-2.2363081;3.7956941;5.3779302;59.057533 +.65359175;1.8727063;-.36913049;-.22298402;-.056023169;1.0699198;.30360252;-1.0736902;-.075927004;-.40090096;-1.2720059;-1.2297046;-.60991853;.30519378;-1.7035359;-.54552984;.86730486;-1.5534457;-1.9585466;2.1537137;.20272268;.67671806;.55328208;1.0606681;.80060214;.024686553;-.4151929;-.71007609;-.1176976;.59403962;-.16681081;.51446331;.064103879;.54495192;1.3987737;.45566511;.39606732;.32303247;-.41990852;.88738495;-.31373867;.30984962;-1.0498465;-1.4345646;.084612511;.64720058;-1.0864285;-.38511983;.75224173;-1.840544;3.1836853;.52885109;-.021982273;1.3462461;2.965975;.58573282;4.1193008;2.9643373;3.2457428;1.45105;3.3166146;.24522786;-.48968127;2.8742151;1.1835493;2.9061694;1.6762522;1.7524136;.89252001;2.1910517;.31034535;3.0526352;6.638968;1.5672069;-.67384881;2.4163525;-.63708156;3.3802376;4.4734325;.032251474;-.079493001;3.0054479;-3.0722106;1.4994148;2.892401;.1888324;5.1767125;-.48591465;2.582828;1.5202819;2.3413618;.94218391;4.8171458;3.2328238;3.1371405;3.0822532;1.2894626;1.202268;2.1790004;-1.2822127;-.64270651;1.1674904;-1.9589214;-.5020631;-1.3095201;.02640241;.96162355;-.88498825;-.22266187;.46216357;1.8163058;1.7973377;-.044837486;.43115574;-1.1717441;.4182522;1.5437667;-.42025781;-2.1333079;2.0697148;-.46396714;1.6719334;.24205427;.68718618;-.28638902;-1.8122902;1.0886729;3.5289662;.91391647;-.26674879;.53358442;.24016789;-1.2878537;-1.7598464;2.6774943;-1.9035589;-.34260374;1.4456;-1.1244158;1.6952369;-.45988038;-.3378396;.63575637;-.9671151;.43069106;2.8878987;.55921209;-.85671324;2.0655746;-3.3644588;1.6241889;-.54934478;.038034592;.73027813;3.5664625;-.21040511;3.7657743;1.5049839;.053940371;2.7776837;2.4938848;-.62345141;.16690733;1.9100056;-1.1439142;1.8428918;-.10980765;1.5665935;-.19916157;.52681643;.15695415;3.0957122;4.6184006;1.5777285;-.97685623;1.483229;-.72586876;2.6845019;2.6995306;-.90583354;-1.3077124;2.4225266;-1.0067521;.44454762;.72817433;-.33352333;3.7967629;-.62957835;1.7965562;2.2937686;.68588692;1.9785049;3.84882;2.0882032;2.1665215;1.736039;.47135916;-.35577881;1.352955;-.18171322;42.648148 +1.4405339;-1.6246198;-1.115896;-1.3303895;1.1447698;-1.1564549;.46012533;-.45421472;.075723879;-.00019870896;1.3788729;-.68934029;1.4701931;-.2951732;-1.1734039;.82746363;1.8651758;-2.1245308;-.73162878;-.55832195;.0030672504;-.64562744;.31262082;-.18101542;.79716891;1.4317933;1.0801986;.025529528;-1.029126;1.4274462;.594437;.61820221;.45122185;-.32057729;-.32037881;-.22886981;-.345566;.044204008;.80567849;-2.232213;-.59784079;-1.0326508;1.15868;-.17037438;-1.1841267;.48597205;-.35722402;-1.2803051;-.55054986;2.1679721;4.2519546;1.2304462;2.92679;-.69443458;1.4422306;-.91156614;3.755399;4.6179018;-.94555122;4.2525067;4.5701518;4.5101323;1.591683;1.6929282;5.3846331;4.0557284;-.26103005;-1.7888563;3.3166671;5.6172051;3.4551375;6.0809731;.59208965;-.46016079;-.37770048;-1.4283948;2.0793445;1.8972615;4.0336156;2.200351;-1.5123156;3.5785124;-.64667827;5.5452051;4.4821081;1.4474508;.45177224;4.5116949;6.1027179;2.058599;4.3330989;-1.6017923;3.1944973;-.14748333;2.6937399;4.7666807;2.0850229;-.23810524;4.1926441;.4452039;.84628499;-.9220382;-2.4236968;-1.1420479;1.4262731;-1.2041103;-.60656315;-1.6742697;.020546425;.18978253;.62113011;-.51332939;2.9825366;-1.465274;-1.1304203;1.0782336;-.67820746;-.62243605;-1.6769972;-1.7407395;2.2148685;.85257971;.70117354;.332151;.50830036;.89138138;-.39384061;.34590793;-.72850758;1.970191;1.4097362;1.199648;.92854983;.93192059;.36120677;.53114218;-1.2115877;.017436633;-.55752468;-1.6141266;.61726016;-.98134208;.99455667;-2.4249632;.1490069;.63160419;-1.7253624;-1.9370754;.25524834;1.1474967;3.5151246;2.0683486;2.6390944;-2.3428731;2.6980817;-.94784904;4.4458222;2.2683828;-.44370663;1.7862039;2.2089305;4.5839295;.59262067;2.1812675;3.6053379;2.0494528;-.90212315;-.94542676;.51177967;3.4792547;1.4444151;3.6123219;1.2065804;.22934458;-.57056183;-.52678436;.028699417;.73299503;3.4839108;1.6711668;-2.1200185;2.862864;-.10712157;4.5390782;3.6618767;2.3612776;.67386872;2.5125973;4.0560913;1.2475013;1.9374121;-1.1548526;3.8819211;.36228403;3.3555205;2.7664382;2.1724644;-1.289987;5.2812734;.59837538;55.473053 +-.31319788;.1296252;1.1516373;-.50662309;.32056519;1.3003528;1.9567069;-.6815303;-.30896109;-1.0578413;-1.1332259;-.30111817;.81452525;.71428812;2.0032692;1.3878657;-.63589793;1.0219283;.036082819;-.82863075;-.06731309;-.148476;.74090666;-1.2504462;-.64861959;-.72901154;-.51716077;-.41934022;.88084453;-.48180246;-.056408126;2.9157019;.60402846;1.0847803;.51867729;-.9321512;-.54752588;-.061515331;-.68166572;.99404883;-.82924002;-.046889666;1.4724464;-.31881416;.68693715;.61056161;-.20376515;-.4652684;-1.2198081;-2.2756963;1.6542779;2.1217375;1.4579898;2.6627364;4.5486298;1.5925316;-.032594178;3.979624;-.64291209;4.7676473;.020987177;1.069006;2.133146;2.1419067;2.9728584;.013931269;-2.9468632;.92574656;-.42605871;2.6095064;-1.0266128;3.3981099;1.6825697;1.5460334;1.6915941;1.1984295;1.6704586;1.7601155;3.5651026;6.4393296;3.3830967;.26319158;1.557765;-1.047157;4.2389126;1.1746941;2.3583879;1.1229943;5.4563565;3.5413849;-.38852811;2.8298566;1.9174128;4.0955348;-1.8341678;.41837525;4.8771782;4.3079824;1.2068976;.4265824;.26799473;.67274618;.64700949;.66382456;1.947819;.66030574;3.3762221;-.028659336;.73221302;.011477431;1.9470361;-1.6217688;-.70374614;.64458686;1.6944361;.83015507;-1.8003069;.40280333;1.8025157;-.38518667;-.73545045;-.026139673;-.24041441;.68126148;.69894451;-.087374568;-1.1247536;.92241043;1.442453;-.26549757;.20185083;2.4712007;1.3544346;-.095084906;-.61899126;.0030405717;.47799361;.57221258;-.1467305;1.3690193;-1.3237752;-1.4551193;2.2332473;-1.4437537;1.5728052;-.89473611;.8955732;-1.3048381;-.52090651;-1.3363533;1.8696984;1.4945019;-.38543019;2.1607349;4.9255781;-.12906982;-.056613564;1.7196516;-.40699008;2.2845705;.29277593;1.7102165;2.1738875;1.6289185;4.1584001;-.5464282;-2.6406183;-.096027397;-1.9556667;1.8626598;2.0454268;-.79427129;-.32906729;-.6908024;-.0056480509;1.3088828;.52954501;.39239782;1.0967191;4.1397195;2.3157978;-.84973055;.72069651;-1.2673023;.43117881;-.75921142;1.7531346;1.8389148;2.1103799;3.3151698;-.93361884;2.9349592;3.1184175;2.4545894;-1.1900809;-.1582862;3.7627966;2.2733722;1.781608;1.3212243;54.393093 +2.1608968;.49567389;.09133938;-.26428488;-.50703055;-1.4479047;-2.096689;.16025014;.17691751;-1.9518408;.098346002;-1.3383123;-3.0585587;1.5331773;-.37089023;.29540583;1.0362232;.85812145;-1.2845402;1.0128138;1.065185;-.01510474;1.3083706;.93024629;-.7334159;.22154902;.18172875;-1.3051164;-.1682713;.11125022;-.36378315;.60164452;1.1081347;-.7526933;.62686867;1.737246;-.36797407;-1.3693982;-2.1005089;-.99841106;-.69861054;1.2751133;1.7435216;.012390273;-.10908579;-1.5100977;-.98247099;-.55696762;.32964262;.92544341;.75624019;2.5574636;1.8271769;2.9017496;6.9656124;1.0381621;4.9163051;3.9803247;1.8998381;3.7896719;.9761343;2.2387798;4.55337;1.6917763;1.4177084;2.0849614;3.0025086;.4980422;2.4869044;1.179299;.2244907;1.0686486;3.5092363;.63331234;1.922174;4.1743727;-1.7477278;2.4718888;-.18315756;.64511859;.26076704;3.6320481;2.2961106;2.4954164;1.8860158;4.0419278;.46058878;-.74664897;-.4207471;-1.6258366;.90831673;4.5511441;1.1444268;2.2700484;3.1361117;2.7279134;-.47738421;2.8278642;3.3412657;3.2892606;1.0682474;-.72046131;-.80309367;-.67435682;-.071092956;-1.6116484;-.64033681;.92840427;.076842494;-1.3756222;-2.0702152;-1.7017316;-1.7409358;1.1379193;1.0341403;.76496482;.99710429;-.85861236;-.057247534;1.442201;-.50914079;-.36700377;1.7699243;-.56150633;.092485689;.63441378;1.2751155;-.49530399;-.8839246;-.34217927;-.65895844;.7317158;.41513705;-1.2789892;.49458134;-.41096884;.35260314;-2.1392376;-.4416343;.46966094;-.49072084;.59612066;1.9313478;1.0016707;-.087611318;.49218747;-1.3414274;.68377221;1.0465659;1.0886834;.86887151;.81226867;-.15809265;1.2893918;4.6838679;-.22087416;3.7598577;2.5806789;-.77367032;2.0420871;2.792305;2.9287417;3.7871282;2.0944705;.23178823;2.0594008;1.5102104;.5995599;.79585886;-.6448797;.15114775;.41568458;3.3128197;.023724243;1.0602883;3.0587318;-1.1704204;2.1592011;-.10550869;.69544971;2.2191458;.17639087;1.2116549;2.9435887;.31546506;4.6668935;.037668947;-1.8397911;2.1700335;-1.9483269;-.79592431;2.9204803;-.16363361;3.2074122;1.787752;2.1698451;-1.0572048;3.0112643;2.4265311;1.5973636;50.882065 +1.0797811;-1.1287861;.73444533;.28878185;-.84653825;-.051251512;-1.0573239;-.56631386;1.6714687;.13616161;-.0428156;1.2967533;.62659818;1.1575036;-.14856015;-.80703801;.59152097;-.49169013;3.032145;.0112691;.30187374;.76548535;1.4522663;-.12619361;1.0652497;1.4693946;-1.6133404;.44972661;.48389414;-1.1376352;-1.028968;1.09323;.13554129;.92459273;1.1676861;-1.378461;.48150024;-.21453165;-.81212997;.0055208858;2.422761;.61167789;1.0493038;.97824448;-.99796426;.98534346;.33277997;-.89375168;-.17779104;.12650695;1.2365516;1.191192;2.9167745;-1.9127915;-.52526104;3.0173621;1.4242089;2.8734741;3.1199319;1.3667763;6.5233808;-.93850011;2.5831609;3.6549797;1.5652307;.4760766;2.846504;1.3990275;-2.6318376;-2.2322631;6.1277428;5.1530476;3.9155722;-.55106831;1.1824743;1.767108;.39977396;1.3643804;3.0366538;-.16405697;5.0632219;2.5282905;1.0347617;.87174714;5.116786;2.7555757;4.1699109;3.2252061;4.2018619;1.1545794;4.1295567;-1.8763887;4.0056353;.79937583;3.9041972;2.6819158;.16739529;4.3088346;.9291656;3.3144014;1.5416442;-2.3682125;.91450906;-.54539317;-.61579233;-1.3618305;-1.7674166;-1.7508923;2.1365397;.61204338;.34452033;.80959255;-.034018084;1.625742;.69415355;-1.8167722;.7362473;-.53755403;2.3500419;-.52726978;-1.4269233;1.2760545;2.2186902;.56095546;.86198264;2.2843106;-1.6108286;.82883781;.48855394;-1.1840509;-.75812072;.82936555;-1.6123863;1.9120338;3.2141452;-1.0612055;1.1270162;.16875061;1.2559093;.15872736;1.0986084;-2.1778483;1.9392315;.33469814;-2.4181306;2.7590687;.048449807;.033722218;.15967059;.47952864;-1.0302179;1.2647369;3.2276042;-2.7863951;-.082565166;.031618439;1.1328359;.44476911;2.3524516;1.4409076;4.0407982;-.28301784;2.0516341;1.1623273;3.0861816;2.2236445;2.2821934;.011812011;-.20506355;-2.5516293;4.930027;4.8421907;2.7192574;-2.9016714;-.20900659;1.0166503;.60967606;.80361909;2.1603334;1.1064408;1.940039;.82007104;-.24109261;1.418355;3.720732;2.1999865;2.1726444;4.1729403;1.4802135;-.46096694;2.9123456;-.76265401;2.2803392;-.4925395;2.5968928;1.303231;-.34009877;3.7223263;-.49689698;1.3983973;61.014988 +-1.9149008;-.81530887;-.94388545;.61190724;-.91129607;-.66964024;-.31628343;1.3089108;.42108467;.062656343;-.40993527;-.52263868;-1.2550967;.59503549;1.5421686;-.83421236;1.8932377;-.83490652;-.4406974;-.17396113;1.1408582;1.5628231;.724226;-1.0598731;.15364002;2.896559;1.4906287;.34508818;.19760348;.7281583;-1.1706583;-.24024922;-.54512697;.2025445;-.40082186;.19403712;.28241593;-.030718135;.72209513;1.1772101;-.16211566;1.5161946;-.10796449;1.6598226;.32128534;.46960664;2.6466026;-.16530152;1.3243673;-.5678013;2.6994565;2.1673732;3.0229695;2.0052404;6.3019791;4.2486901;4.588449;-1.3427156;1.9907168;-.48412025;3.5298293;3.6669533;2.0672286;1.4937453;.76540214;3.4570587;4.2442136;1.6477327;3.7137747;2.565784;1.8271836;1.3328117;1.4909036;.26215553;4.8358827;2.5126824;2.0791769;-1.6310527;6.0436788;1.0625811;2.3873873;.5652501;2.4766188;2.5781722;1.6577966;3.6197653;4.4319363;1.5949042;1.6975679;-.27752471;4.4879661;1.5047579;4.7383819;-.3036181;.79934412;3.9067409;1.140064;-.44346303;5.2831936;3.4978714;-2.7733281;-.015384844;-2.1138222;.050666563;-.61561412;-1.3655702;-.016358754;.94694895;-.67168802;-1.0603149;.38745034;1.1555969;-.52855986;.31593403;.048446208;-.68279272;1.1110553;.060146246;-1.2639506;-.40194708;1.1183957;1.5879833;-1.7616432;-.53941238;.60399276;.83411652;.82864332;.83987182;-.15767193;.86435413;-1.1210225;.25154126;-.38040867;-1.6681814;-.88625115;.55593622;-.16542478;.41385019;-.76403189;.89617711;-.19322275;1.7511241;.33852395;.79206502;-.9017061;.89484525;3.0868967;.9826535;1.0539272;-.86980546;.67413253;1.782105;3.2980735;2.2293775;2.6177726;3.1041687;3.1221514;-1.1780555;2.7633302;-2.0413685;1.7117058;2.3181891;1.587387;2.317976;.12197891;1.7797015;3.0428944;1.585521;.17545623;.90314966;.77947563;1.3273544;1.7188153;.32011041;3.3116379;1.1452831;.72221071;-1.1559848;4.6206322;1.4927715;1.7801608;1.2222421;1.6806334;1.2910036;2.7295747;2.3061025;3.070102;1.0088427;1.4403161;.33347735;3.8810997;-.1577706;4.6146197;-.25298077;.55610627;3.3002498;.50791514;-.37637827;2.7356012;.73216635;63.562553 +-.59901214;-1.3782072;-.63007355;-1.0731833;-.27406859;-.58810413;-1.7935486;.54597056;1.458272;.38950083;.83593446;.35330153;-.67074341;-.13951196;.68081051;-.030667379;-.68830931;.7600804;-.20022549;-.51347184;.54786438;.84987646;-.38829443;.36678967;.79803503;1.0779651;1.2348249;.35118106;.82327622;-2.3101974;-.34549588;.25775725;.42978656;-.3164615;.632617;.45399797;-.94694942;-.35564712;1.1174965;-.27674884;-.46059504;.88835627;-1.1801883;1.0142183;1.2020472;.19806689;.26237524;.84508681;.012938045;-2.0735807;-1.1524909;.36964533;5.6867881;1.835228;3.1594331;2.2548213;-2.3241036;1.5056634;1.9460412;4.936069;1.3565946;-1.5104365;4.233551;3.3539939;1.7985908;-.7364831;7.7430501;2.4222596;1.3948927;5.2750363;.34496441;1.6674968;1.756438;3.1084051;2.5552332;4.1339231;2.3349004;2.1153011;5.0561242;1.4152895;3.6468437;2.0503743;2.2870986;-1.0137485;4.0662355;1.5495526;1.307045;-1.8407958;2.7179954;4.8478646;3.2974038;1.2446524;4.6626487;1.6990225;-1.4055339;-2.9000621;3.7375965;4.3853426;3.278342;-.61910427;.26454678;-1.1580307;-1.1253712;-.86897779;.16644958;.95575374;.3656826;1.2612282;2.7544575;.10623513;1.0832545;-.19913122;-.07113231;-1.4503556;1.004622;-.19871376;-1.7093705;.78892833;-1.3391876;-2.1187992;-.91601032;.86832207;-1.9030031;-.13120922;.57059097;.80328143;1.8326334;1.7576514;1.6160665;-.99297374;-.60953683;.0073602949;.22795264;-.8075844;1.7654423;-.025547514;.32019293;1.3956804;2.1487207;.62721086;-2.4898171;.24533896;-1.8050636;1.1310294;-.78519422;.77229404;.15169492;.5649597;2.5131814;-2.5644059;-.55074072;.2665731;2.8727944;1.4861299;2.6020927;1.2757735;.11816044;1.7374512;.91763395;1.4885604;.51953954;-.58999205;3.2537568;2.9241312;1.1393684;-1.0558101;7.1218114;2.1427422;.13768806;3.8190618;-.055899356;2.4502914;-.27425784;1.699477;2.7498026;1.0774698;.41348228;2.0377614;2.5184009;-.22127151;3.0408673;1.4759289;.80237275;1.392343;2.849153;.69250029;1.8817729;-1.249885;2.6781924;5.143168;1.9840193;-.22016303;1.975642;1.807464;-.87995869;-2.2806051;2.3101962;2.6762631;3.1710465;-.62747914;53.235165 +-1.3569764;-1.7682;.56788909;-2.2690868;-1.8740535;-.82844162;-1.181008;-.98579443;-.52569777;1.8977625;.13842535;-.044083189;.60402542;2.0683155;.63681561;.11588456;.089493133;1.1409867;.89857244;.044438388;1.4517944;-1.4042919;-1.1427417;.59496504;.15116802;.57423562;.70284295;.057018738;-.085900523;.3487348;-1.6253009;.12269079;-1.0366415;-.70626777;-1.513356;.99425012;.09115351;2.398267;.80208755;.43997124;-.22777833;.034221586;1.6016268;-.41464272;-.24919336;-1.1853598;1.654624;.34257334;-1.0377029;-2.1755126;.49570873;.0044478746;-.67017937;.83457577;.88246453;3.9210963;1.2350086;4.6821413;5.6822262;-1.0798551;-.21295832;1.3270487;.28512868;.81452423;-.10630883;.67217344;2.0570917;3.347702;.89318019;2.1300511;5.6905828;-.7767514;2.3208873;2.9291141;2.706821;4.1311121;-2.8139453;-3.2160814;.96062213;6.6641178;2.9687924;1.4593583;.81796622;4.2958417;2.5314505;.99942738;1.0970739;-1.336772;.33749145;1.7432586;-.53001177;2.538765;1.6446278;-.75410241;3.8291404;-.32891634;4.4122677;-.39296636;3.4299276;.74864215;-1.1845984;-2.0457981;.18769912;-.21487668;.69676924;-1.6018156;-1.1907794;-.39473185;.10934922;1.1018434;1.0320857;-1.5806103;.7917037;.69983315;2.7305183;-.45631334;1.4707851;2.0573785;-.018893942;-.63770509;2.114166;-1.120561;-1.7868677;-.050189856;-.03522449;.057526555;1.2846733;-.75892788;-.69885439;-.15326619;-1.9221781;.52507114;.79086077;-1.2927941;-2.7133133;.44386217;.80269885;2.5769501;.76829052;-.17302766;-.88323849;-1.5416999;-.27907541;-1.4822321;-.012826337;-.72799474;-.095337138;.68014419;.1187868;-1.3505365;-.25528452;1.7059612;-1.2502151;.48245814;.32682714;1.1807394;2.0913942;4.173058;5.096632;-1.4100398;-1.0798944;.4699443;1.6048647;-.61385101;-.45105752;.90857536;2.1357493;.57320839;2.0966251;1.8221903;5.0705051;-.0066647194;-.32737792;2.4331546;.39742196;2.8084304;-4.300519;-1.4040139;.94471323;4.162323;3.9857278;.70966411;1.2098444;1.5253706;3.2811558;1.483016;.23180611;.054282498;-.60084867;2.0344756;-.60070902;.64880598;3.480684;-.39809319;2.6926928;.38348368;3.7670345;-.34800467;1.4975524;1.1402903;36.787868 +-.68740952;-.48405701;-.39659071;.84996682;-2.5725305;-.79509676;1.6750509;1.1587983;.64287615;.89431292;-.084939517;-.62543273;-.2939513;1.7273394;.14072767;.34183106;.76323903;.74937725;.18430303;-.31140217;-1.3402444;-1.7045565;-.082517803;-.29533264;-.72275627;.19263683;-.038295303;1.3532332;.047474939;2.4393346;-1.0072967;-.091077775;-.033513766;-1.2301506;1.326584;-.94589692;.52851272;.35775417;-.50318885;.36718589;-.35852656;-.11294282;.50855386;1.4386125;.41588259;.28490883;-1.1617904;.70620978;-1.3843923;-.62023807;2.4519608;-1.7193354;.65190268;5.341208;1.7556126;1.604884;5.4304595;1.4405361;.3302961;2.0267224;1.1453046;2.8851824;2.7992675;.45392969;2.2639039;.93555719;-.16106555;3.6002884;1.5364658;1.9597003;2.1590564;.90962321;3.8748534;4.0473056;1.2282447;2.9140613;1.5730207;1.3866644;2.4584603;1.908672;-2.1105483;.38102615;4.8215218;-.67407995;1.3348823;3.2813241;.15594825;5.6476746;1.9444164;4.0151434;2.3967679;2.2156098;3.507268;-1.180436;2.0248544;3.6609025;2.9782655;.82166684;3.1804585;3.9657724;-.17059956;-.47847822;-2.1187954;.4085618;-2.419481;-.19353789;.39834398;.41629404;2.0116601;-.54986012;-1.0085335;.6547938;-1.6499687;.60390115;.63492769;-.47235179;-.77108282;-2.0563812;-.97608507;1.7344918;-1.5295571;-1.8377109;.17792392;-.27524379;-1.4219694;-.0068922061;1.3241109;-1.0590844;-.46195745;1.7926251;.20313568;-.63342953;.22661071;-.92742068;-.23882426;-1.1036042;-.34329984;.92876256;-.76445794;.88850009;.59030187;-1.1685879;-.17171122;1.4734859;-.59623665;-.36514887;-4.3803225;.48401394;-.71998894;.84385723;2.3284507;-1.9088514;1.032773;4.3968434;1.6794516;.46165386;3.873065;1.2295417;-1.1878585;1.8724723;-.29968506;.65871465;1.4381402;-.28011343;1.450325;1.0057472;-1.2265586;2.9059637;2.3190627;1.7448775;4.0220623;.69263762;3.4747944;1.8827903;2.9103777;2.6437032;-1.0354934;1.965233;2.498251;.62412542;.12085994;.45932549;2.2193913;.88234663;1.0109985;4.1863112;1.5876799;4.5605202;.88454038;1.5074686;1.8034462;1.3376482;3.0328314;-.76761603;.4643912;3.5600588;2.6598575;1.13495;1.3769165;.60164845;51.745525 +.13517213;-.84740156;-.22719991;-.50356811;-.06174938;-.38218257;.37057951;.58984196;.99702889;-.64758223;-1.3032924;-.46595302;.84371156;1.0231864;.84724456;.093600914;-1.1786668;.52782357;.21073991;-.9772166;.52225298;.30857754;.66274023;-.8804484;-.1203704;-1.2437285;.7448886;.99131167;-.41998872;-.35163563;-.49753895;1.2354786;2.5345185;-.60584879;-.31717891;.34642637;.34292117;-.81504643;-.43134809;-.74105102;-.75791502;.65376467;-.87514818;-.03389873;.056775838;-.36570367;-.67429787;-.35040843;-1.0330477;.33230534;-.051292326;2.4381416;6.234098;2.5792472;.33319169;1.0226208;3.6633415;-2.2477601;2.7505758;1.8210431;4.3898816;2.2391918;1.6369867;3.5935135;-.33665413;5.6782017;2.4261727;.64621329;.57624137;4.7629046;1.5577251;2.0550139;1.7754574;-.089767367;2.8840227;-.5331617;4.8585691;1.6569715;3.0247607;1.5376508;2.9985704;3.4384723;4.0756068;2.3709092;2.8071148;1.3073331;-1.2440431;-.70537537;-.062205926;2.1231315;.92528003;-3.2696249;1.4906797;4.18573;1.1903958;.37945068;2.1373618;-.2456228;-2.9649019;1.1908051;-1.9714942;-.65880227;1.4206362;-.071711481;.73069316;.31267044;.27904508;1.2019778;.92999017;-.36371791;.44276026;1.9571903;-.68606007;-.46509027;-1.3296191;1.9820005;-2.9308481;1.1480472;.74792677;1.0896738;1.5035403;.79443902;1.487074;-.38916945;-.61279583;-.28808132;.042905532;-.43000203;-.30218083;.57360518;-.081149615;.28911582;2.2867556;.43719274;-1.4931405;1.5853328;1.8288255;.56697112;1.049498;-.42397019;.60823059;-.48035133;-3.5968246;.80273002;-.20158544;.1706932;.23452958;.77303851;-.72506577;-.19469918;.15375613;2.2584527;4.1141224;3.004281;1.2417634;1.7903838;3.7707086;-.38274917;1.5689919;.086857446;2.2711844;.075451314;1.1354516;1.3632355;.22167256;4.6155066;1.3419341;.0082681524;-2.2616494;5.4645767;1.4093068;-.21835545;-.072858296;1.1261684;2.047929;-.43862227;3.7661791;2.4189374;5.112287;1.8940465;2.653873;1.0271657;3.9422646;1.6367694;2.1727247;1.3669868;-.91976953;-.45032838;.66376019;1.6923671;.40630525;-4.7680454;-.023541568;3.3623822;-.36848792;.012440121;.61615771;.7913475;-2.5479183;2.0453289;45.569977 +1.13819;1.7351909;-.24063531;.040154755;.1767651;-.32545477;-1.4760789;.20231846;-.60047781;.48135555;3.0872126;1.8564565;-.5211491;.32357079;.25956756;1.0635308;-.015618118;.38218728;1.0850888;1.0349962;.17282549;-1.1402311;-.21556824;.43017903;1.6528623;.26185039;-1.0206178;-.18277626;.48097396;-.18266927;-.901371;.27408093;-1.5629425;-.73209703;1.1647346;-.29306245;-.52097023;.25468224;-.082953557;-.63102901;-.20590279;.11588589;-.57359135;-1.1531686;.20629694;-.78359842;.032452449;.091566041;-.69566923;.89511585;1.3308835;2.395262;.61808497;1.9077721;1.3868378;1.345696;-.43764845;3.6275308;3.3013203;-.099303678;2.2135477;.67660356;5.0554829;-1.1223395;3.4926116;1.7543479;4.0855446;5.1222377;2.0055482;-1.6263924;6.6752801;.15050377;.92332524;1.8915893;4.8906169;-.76882535;-.30939505;2.2250643;-.047127303;.96309656;2.9173608;3.4561315;-4.4527988;3.4197562;1.4144218;-.055942383;1.2855697;.6169126;4.9787693;2.7554607;1.7903761;4.8834195;-2.5162649;1.4822851;.507402;1.1341637;-.6370787;-1.1194952;4.4155736;4.3365383;.013959804;1.0091839;.73865891;-.60916901;-.73836488;1.3813924;.32647422;.10862198;-.53432089;-1.4348531;2.0013192;.74097478;.4022705;.41783154;-1.4782362;1.4177319;-2.5666118;.68889105;.56774336;.50038999;.85937399;-2.6894779;-1.1940536;2.0312538;1.9427097;1.4116138;1.030632;1.5078671;.60850048;1.0152541;-1.2209991;-.80752164;-.066355817;-1.8843553;1.0269915;.93526614;-.44963419;.36746848;.28236881;-.69175088;-.96929872;-.55650878;-1.5541825;2.4041326;-.52011621;.41155058;-1.3043195;.81962579;-2.3658116;-.93033999;1.7426274;2.9434764;1.236982;.43595421;1.7117735;.29202747;.79268873;2.9030309;2.171288;.48764303;.31893408;1.2695737;3.6178772;1.3331907;2.2033112;1.2751602;3.7547071;3.417402;.59099394;-2.2084169;5.8124886;1.3417366;1.1728256;1.1030369;4.7999144;.17089826;-.41088459;.76546472;-.29302078;2.5984817;2.4700699;2.1681552;-2.42396;1.2161698;-.80659932;.53522182;.66600502;.32625499;3.8803871;1.170496;2.2530682;3.878634;-2.4136693;1.396572;.48844889;1.3002741;-.28048486;-.5094468;1.9290401;3.986434;49.431515 +.97808832;.18159701;.71575207;-.29287234;-.77539408;.86313283;3.1135092;-.78812808;2.4665813;-.58799702;-.08318042;.0073941299;-1.7335019;-.36225539;-.47855052;-.74586171;-.73064446;.74604368;-.62183374;.61969149;1.0300671;-1.3265467;-.54958111;.071831517;2.2853534;-.090040155;-1.9113593;-.17646182;-.6419847;-1.5892255;.90656257;-.40657586;.19607632;.52218604;-.044175275;.83380383;-.89576411;-1.1814138;1.346633;-1.0602626;-.51845139;.47095996;-.2148813;-.22479331;-1.4957395;-1.0368536;1.1217486;.019842997;-1.9077682;.63309163;1.2079058;2.1288722;.869192;3.7237973;2.6073828;5.8980885;1.1607471;3.5668607;-2.0447502;2.1632524;-.28175658;1.9442973;3.6083453;2.1055939;3.1659045;2.4658747;1.7587323;-1.2342268;.19469896;2.9337189;-.80931425;.47903699;-.010327647;.88156849;3.9891701;1.0933564;.92567784;1.5712618;1.7274446;2.5835812;4.330709;-2.97932;1.0963763;.71846634;5.1123838;3.8758938;.034585465;3.0460985;3.9152761;1.6147903;3.7790737;2.7835524;4.7653675;2.2671416;1.2374568;-1.0867296;2.3126833;2.1184564;2.1429157;-.41080046;.21658975;-1.1719434;.29883051;.17428912;-1.1063762;-.66656071;2.4949412;-2.0525906;2.9312;-2.1699317;-1.2595782;.47747371;-.29664397;-.74576181;-1.8078382;-.55488533;-.44004467;1.9252603;.83443743;-1.3780922;.065436512;1.9603546;-.065228209;-1.8784981;2.1704888;.28099182;-1.5050589;-1.0836048;-.13763535;-.098877497;-.18011241;-1.4920714;1.3387682;-1.2834388;.25268546;1.0819616;-.2369182;.34889659;.08839453;-2.3568282;-1.0569597;-.61921793;-2.6865041;-.10070249;-1.6398679;-2.1142833;1.1584443;-.0072370684;-1.5266767;1.5561172;1.6542968;.73259592;-.079489797;3.5049546;1.5530781;4.4185658;.46166962;1.717232;.26389223;1.5189161;.26072082;1.5901229;4.6849995;1.5790637;2.0863516;1.9801375;2.0260103;.099919945;1.1372658;1.872219;.69441986;-.60563803;-.86426306;.43673959;1.7032678;-.15829828;-.27412966;1.4126276;.25882146;3.7145159;2.3473313;-2.1120441;1.6277708;-.43786249;5.3449411;2.9016449;-.48988575;.8680976;3.377928;.61758882;2.1053538;1.1622633;3.3504379;2.549911;1.4894893;-1.7098359;3.7733328;2.2487404;1.1305672;-1.2577578;43.526913 +-.62921041;.74757552;-1.2927148;-.33090407;-1.7262143;3.4597595;.64486235;2.8748605;1.2343444;1.186512;-.42266047;.43588892;.74496067;1.3141596;-.10465114;.1465757;.8981328;1.1621958;-2.7068129;.76814002;-.14463639;.4872424;-.25113845;2.7083724;.24023944;.43076289;-.20774274;1.4373343;.62509567;-1.2767371;-.73494983;.82807338;-2.1810744;-.22491874;1.0695981;.23873718;.32515177;.10257769;.90613586;.65836424;-1.7612075;.38997367;-.56592238;.37883413;1.8630996;-.61147505;.82673907;.29121453;1.1423063;.007421873;1.8464862;.67769313;4.2418094;2.0817177;1.0551109;.54018027;.21275222;1.7437348;2.4118643;1.2097573;3.2025719;2.3973598;-.58731949;1.6151263;1.6777645;.72163856;-5.0152316;-1.1222599;2.8241119;-2.0152276;3.118217;3.8453994;3.0872326;5.1737976;3.2760801;3.5254807;3.3191772;1.1084844;4.9954925;.72159487;2.5517914;2.3059862;-.25586495;1.8544496;5.4288578;2.6340516;5.0738444;3.8203218;-1.381053;1.6965547;4.6568561;-1.9660438;1.3922243;-.90790719;2.5075047;4.2054148;3.6072526;4.2448654;.69580656;4.8599205;-.29921627;.82992059;-1.4656886;.58851588;-.58488023;3.4527836;.63549685;1.78008;2.3354056;.64334303;1.622596;-.51386422;.67150939;1.4315764;.96998751;2.0644066;1.7514154;.69458073;-1.6065463;-1.1897748;-1.3399357;-.90003848;-2.1346464;3.3156469;-1.5027349;2.5838187;-1.3043025;1.7363439;1.0976294;-.7650826;-.53367406;.9061293;-1.894336;-.64958876;.83135045;1.0144711;.74961323;.53101653;1.51509;-.61215073;-2.2238576;.75839305;-1.4590275;.15843162;1.7723178;.59850353;.63688713;.17985825;-.32074106;.83474642;3.1496923;-.51751751;3.2244854;1.3466833;.04993546;1.3462162;.45963502;1.5045;2.384331;1.4444361;2.3970613;1.5718434;-.44250652;1.0237435;2.2604489;1.0493672;-2.1208467;.097426459;2.7125185;-2.4814842;2.8841429;2.2916052;2.206181;4.0115376;1.3597556;3.0051639;2.9693615;2.5226049;3.9516001;-1.1926534;1.4944223;2.2962887;-.65614706;2.8177271;4.8673301;3.6636569;3.0538075;1.112074;-.64689589;3.0055778;4.5151286;-1.0884573;1.6312634;-.81293488;1.6732154;2.4357753;4.7835684;1.5785615;1.6559371;3.6543515;59.319218 +-.96955132;1.4298755;.17777297;-1.8995327;.67506379;-.32457155;.52819288;.10858729;-1.2642894;1.1171263;-2.7992923;-.78618622;-.093782514;-.62038541;-.20222944;.32158241;.24945125;.91750288;1.5409275;-.1690456;.84729874;-1.3892444;-.79900587;1.1129868;-.1630694;-.6412288;-1.9715135;.95208353;-2.2198842;.043247394;.63762891;.14081173;-.6895324;-.82548648;.8126443;-.88384843;-.3550925;1.3517209;.39296743;2.0578787;.381686;.2604813;-.76114774;-1.2670951;-.050894573;.36138469;-.95376211;-.55027866;1.2014638;-.70777601;.068305053;-.31619766;4.4952817;3.1737404;4.5474539;4.1002965;.93488306;3.6948795;2.6381412;1.8268632;-.43847752;1.3866664;4.166368;2.430702;.59895778;-1.9856153;1.983888;5.0000806;3.5483384;4.4739666;2.0383167;.68761593;-2.2479644;.73706913;1.2263736;3.9823322;1.3572258;1.3200305;.8774212;.021979023;.091004573;1.5703357;4.9917011;8.2018614;1.9321189;.25985244;1.9628516;4.1862068;3.9786248;.34550947;-2.1297297;3.8099997;5.3043017;5.2855954;-.042646755;2.4136469;2.3948455;-3.032654;.23089689;2.1660204;-2.1251726;.75345451;-.97311997;-2.2424648;-.70254236;.41851753;.16522098;1.9199818;-.71495515;.26763943;-3.2063224;-.335756;.49735352;.22305937;-.41520745;-.34832841;-.029094415;1.7582824;1.6653342;.040915884;1.001105;-1.559818;.054896805;-.066952512;-2.176055;-.54447687;-.8488974;.67969763;.39223397;1.3688098;1.4136331;-.12471088;-.53667635;-.82046902;3.1691005;-.094032466;1.2609594;.0012004116;-1.474136;-1.052946;-.46056309;-1.7323488;-2.0135283;-1.4011633;-.85428399;-.22289805;-1.4681222;1.0938922;1.4550648;-1.1944433;1.2669133;1.365303;3.4928749;3.1046073;3.0795038;3.4729536;.17072062;2.5512145;.50841367;1.3452213;-.77718455;1.415972;2.0519676;2.5084329;1.1464729;-1.3968238;.99313533;1.2231158;1.9192004;2.8385272;3.2638676;.94239539;-.35110721;-1.1030326;.85483074;2.9276283;1.4760749;1.0824814;1.6533295;.54117095;-.24353984;.84286064;3.6222711;6.4081903;1.291427;.64488524;2.2268665;.87819773;3.4102936;-.70610791;-.64900279;2.792026;2.6760566;3.2379694;-1.4979085;1.1350701;1.2799529;-3.6882117;.049176782;2.1134496;50.0219 +.16181213;-.49724576;-1.2266928;-.47326097;.37651089;-.076877221;.12116771;-.15861186;.87477964;-1.3438956;-.23816597;.067450471;.63509184;.18113323;1.6680005;.5087027;-.23711166;-.19727305;-.16469418;2.4021921;.99764931;2.6447637;.5675658;.55718178;.72528386;.21927735;-.4227843;-1.0978141;1.6460716;.42372605;-.80519068;.081823617;-.29661217;2.5909569;.19386643;-1.4121889;.011373578;.05090522;-1.5287645;1.1939263;.70248568;-.05341699;-.57027853;-.76783544;1.8492321;.35626453;-1.5061562;-1.4519112;.54510826;.73503125;-2.610534;5.0442758;.38819072;4.9830132;3.1739948;1.1828562;4.4701462;1.4407771;2.0426466;-1.0985297;1.4093486;-.38333583;1.5973221;1.9812696;1.9112067;-1.3502312;4.708375;2.3318019;5.6844144;2.4832039;2.6675756;2.7853897;.092559382;4.0043807;3.399312;-.99956352;-.11744831;.53089863;-.90278608;2.28737;3.160979;2.4997938;1.7183791;1.3814436;1.3287482;.41356912;3.2487998;2.2264662;4.3938437;1.788476;3.118154;-.30946141;3.0818548;2.5063109;5.5175529;1.8653917;4.9219189;.39927933;2.7271163;.09534508;1.06124;-.2551471;-.48276588;.52864879;-1.9202738;.023910616;-.088598706;.7606588;.44668141;.0027119559;-1.653726;-.48524511;-.65309519;-.57613039;.59439301;-.083415471;.35204005;-1.5267593;1.8320785;2.8929126;2.4366815;1.4230458;.54883194;-.33717164;-.068136297;-1.1893517;-.16129243;-1.5216115;-.29601043;2.0210776;.39918149;-.16816312;-1.139424;-.098576993;-.60588568;-.96893555;-.2939623;.92482418;.0072341054;-1.0550739;1.2040061;.10773408;-.56503206;-1.509086;1.5226645;-.15412785;-.90878516;.64950013;.78574461;-1.1011924;.11289588;3.5054898;.33550978;4.8383985;1.8858389;2.1936536;3.9366527;-1.0622452;-.15365602;-.93608749;.48019964;.61962014;2.2778227;-.033665977;.72978288;-.77706337;2.4348698;2.0335021;1.5982857;3.0896571;.49963525;2.6580563;.45614398;3.9827499;1.8984587;.41122124;-.81754708;.9572444;-1.4960771;1.811446;1.2216289;2.3068786;.40483585;.32488444;1.835192;.72526646;2.1073084;.39457875;1.9253998;1.7857888;3.3772852;-.35154831;2.21873;.94646049;3.843226;1.4345592;2.7300353;-.76972234;1.7657243;1.3404802;54.535053 +.95872313;-.14567317;-1.3568982;.26382193;1.160417;-1.0673605;-.0080339685;-.079600051;-1.9734299;-.77736515;.034132261;1.3157511;-.98333013;-.21100159;-.47463351;-.28399938;.47729152;-1.1629424;-.60796505;-.35560575;-1.6396903;.86927319;-.42793506;.00094545947;-1.0984447;-.93344957;1.0349106;-.26507166;-.10078019;-.48521903;-.089255281;-2.3656304;-.16013633;-2.0763242;.4391951;-.25041628;-.57067466;1.3534492;-1.0886222;.29687992;-1.0665464;1.6909468;-.48305428;1.4775772;-.52574474;.1761453;-.40118423;1.6155216;-.75136751;.4519996;-.058808114;2.3112655;2.1260834;.8966136;1.3624872;1.3562254;.78314108;-1.1639308;2.0217595;5.207727;2.7016082;2.8412607;5.7212739;-.91578376;1.4349076;1.7510396;1.3519317;1.1470084;-.12684396;2.551295;3.7476962;4.0296397;-1.5939999;1.1811211;1.1591694;-1.845865;1.9702257;4.086112;1.054377;3.5210731;1.5333091;.50650609;4.6771812;.9165656;1.0124315;-.81550252;4.7111964;1.7337896;2.4912949;2.2833319;2.0606852;-3.0407155;2.3480754;.13601899;3.8681927;-1.0805743;1.3004915;2.3743527;-.58317173;5.1049194;1.4261216;-.49691904;.40111837;.56934047;.064160444;-1.7587239;.9641909;2.0609267;-.15982044;-2.9707303;-.59437686;.36324325;-.8072027;.053379986;-.12474842;-.7648859;-.82399213;-.90665209;-.97571999;-.83031583;-.87625027;-1.0028896;1.0705985;-.81729251;-2.1643269;-2.1510096;-.91617578;.69297624;-.13104029;-.63777667;-.22058588;-1.3060567;-.61738873;-.62724638;-1.3028926;.96736443;1.2760118;.73438787;.47688961;1.2966577;-1.0411696;1.1411986;.0051778085;-.16308111;-1.2069323;.82605761;.9604972;2.2267945;-2.6582854;1.4672674;-2.4424119;1.9489168;1.3872476;-.2097103;.75768727;1.5563526;.868402;-.058006365;1.6135398;3.0808187;1.0708975;2.9286816;5.0117888;-.584548;1.4052625;-1.1043698;.99783415;2.8378675;-1.3845949;2.9523582;4.2941718;2.2367172;-.94943798;-.57193369;-.38210174;-.83553189;.42293099;2.2476373;2.0636022;-.45250514;1.3766022;1.2654285;2.4865055;.70711392;.83031636;-.89025444;3.2487667;.89491373;2.4775031;.87897497;1.3897829;-2.2842162;.95861012;1.2507933;2.3656292;-1.2710912;.24302769;.33014217;-.31416413;4.5354338;33.811623 +2.0789638;-1.2400953;-.85032493;.49145323;-.54836506;-.17861088;1.8020762;-.82406729;.28747594;.35578743;.56928098;.12909321;.58719808;-1.6675901;-2.9508317;.46459949;-.8454597;-1.0855743;.59712082;1.3233582;.97107512;.050031267;-.86532909;-.67071736;.97187561;-.95732594;-1.0908251;-.0030503466;1.1044836;-.3566758;-.415867;2.6587501;-1.8532557;-.4813323;-.85761482;1.2032517;.79203826;.95628673;-.01399571;-.22052047;-.78599447;.034172881;-.16274127;-.02724098;-1.6165032;.5693084;-.62604731;.045665774;-.84923911;1.0530251;2.4436774;.89057654;.59303027;1.8665738;2.2454281;1.1301417;.9751367;2.960433;1.3338735;-.10636033;.69756669;2.0593858;4.1908226;5.0778804;.51114845;2.5924332;7.1393604;4.1812258;-2.4284253;3.541822;2.9841528;1.2607778;6.0297961;1.7138456;2.5003467;1.9138752;2.2821467;3.1421497;2.8587229;2.3700542;3.8319063;2.1185012;2.0977371;-.042504728;-.33106512;2.9643717;2.5999138;.0037204255;1.9103547;.87770402;-.78162265;3.5046601;1.1813946;1.4014996;3.4549108;3.1425014;2.6156895;-1.072011;1.9157892;2.7753274;2.15048;-.38205618;-.79113358;.73518491;-.55388528;-.41073591;.40718138;-1.1979753;1.8300065;-.48462319;.22690459;-.39688969;1.2564464;-.081692964;-1.684393;-.5254603;2.5377872;-1.7821989;-.27374578;1.4332643;.51814336;.574422;-1.3673778;-.75848669;1.0323261;-.60968357;.37686867;-1.8686558;.020416718;.073585965;.3170498;1.6184285;-2.0896447;.91528565;-1.5566632;1.0114472;-.8306694;2.0259311;-.732234;.42074901;.93846685;1.5605391;1.3612182;-.17008126;-2.669502;-.26332802;.93354684;.3980248;-.19786963;.46382958;.40855208;-.49648127;3.4831583;1.8440747;-.25376129;.54046482;-.57185143;1.4838902;-.57657743;.26042211;.14932688;1.0642025;.84923875;2.0426459;-.7343936;3.6900954;4.8950586;2.3089464;-1.3422914;2.3945787;3.1595886;-.53230911;3.6287863;1.471477;1.1070291;1.3474268;1.182364;2.9369159;2.3837571;.86148351;1.7629488;1.4458789;2.1154926;.032418936;-.94134247;2.9655406;1.1123649;-.63869369;.31989729;.61917305;.91814023;3.4674056;1.7094831;2.3762109;2.234642;2.0808756;3.0897679;-2.2962868;1.6826757;.96338582;47.632511 +.88311434;-.39983329;.037582777;-.5627178;.08653681;-.90276045;1.6231939;-.74193615;-1.1815443;.37604609;1.2377456;-1.0442302;1.2284088;1.1821727;.22060877;.026905745;2.1358054;1.6769068;-.10338122;.28102157;-.63511229;-1.3429421;-.56027526;.80264217;-.27279928;.46434653;1.0178061;-.59101182;-.60903203;1.5261602;-1.1714983;-1.2175819;.33922705;-.098235235;-.81575209;.083546214;-.96191031;-.44797844;-1.8758827;.026383694;.93330914;-.22683266;.66623104;1.3048756;1.3299644;1.0882009;2.5508487;.13841631;-1.0593811;-.18225947;5.7810469;-.67689949;2.3293121;4.2831469;2.69572;3.6215987;.99575096;3.2336633;2.3469262;4.1134143;1.1268939;-1.3587027;2.2697639;4.7731094;2.6056724;3.0954335;1.6051375;.89296287;4.1494856;-.062856883;1.6712055;-1.3273817;2.8127024;1.3587475;5.7252722;1.7062644;3.7020607;3.6942985;4.0358644;2.9202383;-3.6348932;2.8485067;4.8677363;-1.2080221;5.3827291;-3.5728035;1.3924078;1.7895864;8.2783718;2.6555517;3.2166529;3.0988786;.40523264;-1.758608;2.5213234;2.0675156;1.3834945;-2.8843644;2.8160782;2.2299519;.21809542;-2.0055268;1.1500887;-.56019664;-.21778516;.38084137;1.39899;.56319147;-.66377586;1.3136871;-.0021247398;-.95984334;-.73536426;-.94090766;-1.4077036;-1.2498679;.95944738;2.7630448;-1.9528741;1.5038842;.62604469;-2.5094535;-2.6969967;1.9535294;-.28804198;-.83302945;-.11441203;-1.2404289;.84349698;2.2473822;-.29881743;-.86507541;-.26864368;1.7785895;-1.6317521;2.4586222;-1.1289977;-1.2681882;-2.8164067;1.4241043;-1.0354786;-.035507202;.7571137;-.16497302;1.9518248;-.67699456;1.2683986;1.4176812;.50482142;-.42059648;4.8317266;.42113543;-.13641633;4.0401254;2.1220748;1.4108505;-.0094898837;1.3989233;2.714752;.87117082;.37524423;-2.7305386;2.084306;2.4906483;2.7292705;1.7849693;1.5418296;-1.3256695;3.6713943;.62857711;2.5549755;.31921595;2.1119766;1.320007;4.6065369;.69355792;2.0903459;4.7538056;2.8501456;1.9158695;-3.0899994;.9572137;2.6054578;-.69638544;5.0029664;-1.5295072;2.2944655;.2645281;7.0008268;3.4174654;4.8671403;1.5836231;.019436838;-1.1882448;.72693473;2.4937112;1.1013256;-2.5634069;2.4345803;1.3306487;48.772289 +-1.0306931;-.3288244;-1.6876398;-.65778387;.77450001;1.2130069;.1888485;.15854792;-1.0299413;-.85611337;-.7446208;-.74392039;.63254756;-.081994891;-1.2456992;1.6328946;-.36217591;-.017738318;1.6658671;.70696992;1.5777612;.23379354;-.25582376;.18677613;.45377517;-.14447428;.25994465;1.1874589;.30473211;1.5034846;-.92435753;.11653341;-.23206758;.28303841;-1.254898;-.21119402;-.68581367;.82449061;-.1310638;-.022751225;-.30839312;1.749915;1.0339255;-.88349438;.83282125;1.0786201;.13595426;-1.1614735;.29016531;.25214002;-2.5202763;-4.0212326;2.0568497;.81906599;3.1841416;.7976703;1.581959;2.7302876;-1.0419316;6.7447262;2.9920435;2.9772439;-.89184141;-.93807387;-2.7388117;5.3130407;1.2611594;3.8813055;2.7656932;4.9955659;2.544462;3.9862516;-.50709766;.83622015;2.0526891;3.1597607;2.3751256;-3.5314574;-1.2224058;-1.2511015;3.0093648;1.4174807;-2.3101823;-1.1262091;3.0265193;1.1618458;.087291777;3.9998121;-.67143905;-2.7626626;3.2946818;.43964455;4.9368491;6.8800607;2.7405794;.23793139;-.99454701;3.5910735;.74268419;2.2809103;-1.2584147;.20158479;-1.6924114;-.58095199;-.54715073;1.0216793;.70813453;-.5399937;.17352608;-.045826674;.21849477;-.70257837;.95162863;.64264077;-3.4729557;1.3991193;.34116536;1.5579309;1.2963642;-.20046178;-.38490814;-2.5830746;-.86195493;-.35182735;-.59868681;1.7691181;-.1547174;.44726554;-.44180402;3.5039358;-1.1552973;-.48725718;1.5570105;-1.264215;-2.7473679;2.4222722;-.13630877;1.0903283;-1.2096637;-.50829482;-.41881251;1.0565404;.7384339;-2.2916536;-.22824326;2.0247543;-1.4931371;.37398288;-.27192065;.72473073;-.72227395;-2.4309614;2.065742;.1221431;2.5841472;.11661067;.75676203;-.47958302;-1.0478637;5.4793468;3.0836449;2.6509738;-1.8462278;.2395898;-.4363054;4.4296408;2.0163925;2.9531808;2.9339268;3.6213748;2.270251;3.1967428;-1.3817961;.060894407;2.3439751;2.7214656;1.1560918;-2.2976394;-2.6194825;-.61966223;1.410822;1.6911651;-1.734351;-.82800275;1.8876929;.0903842;.36146137;4.0998435;-1.2241316;-1.9869784;2.9802814;2.2636817;2.7202725;5.6379724;3.1028726;.64801061;-1.6582905;2.7022936;1.3704123;1.6576166;34.397861 +.45459566;1.4496686;.010151715;1.7923834;-.64635831;.35134581;-.13691513;.11999129;-1.4340391;1.0743654;2.1688385;.28837201;.74403739;.69400156;.024170779;.06306453;-1.6352513;.20692642;.67254961;-.86314553;.30292547;-.074256316;1.1406318;-.8896727;2.2807677;-.80328351;.45532143;-.08321023;-.35094085;-1.3887172;2.0629597;-.15197195;-1.0562217;.66583842;.020701054;.36139154;.82833171;1.3721343;.65139085;1.1173972;.79638255;-.15146086;-.13338606;-.031535648;1.4557133;1.2213029;-.61173689;-.84687698;1.6297241;1.1485784;.61477703;-.073139913;.24203368;4.010119;3.3546705;1.3615074;-1.7932826;1.9761754;2.8739066;-5.7780986;2.7908511;-.35722268;3.6996205;2.6995397;-1.2534641;.433698;2.4775589;1.3893911;-.995947;1.1874444;-2.61672;-.27416745;-.7588349;-2.2128956;3.7660849;2.61813;1.4361414;2.6400931;-1.4978254;-.48728687;3.3934236;.41960013;1.2739471;-2.7704768;2.4589956;-2.1910124;-.85847527;2.0263736;1.9548873;2.8372619;1.4451116;1.0709867;2.3918428;-.74495906;2.5645757;2.9478974;5.4973598;.88507003;.19845328;4.4195442;-1.0982044;.30700698;-2.0661869;2.6901834;-.78293532;-1.8273151;-.75713736;1.0053014;-1.9844835;2.3348732;1.7887669;1.4012485;1.585736;2.2490175;.36333042;-.035168733;-1.2550501;1.2456404;1.0915116;-1.2312583;.15313776;-1.0165951;-.067718208;.52871329;2.8006239;-1.6204983;-1.0270189;-.80561328;.39584637;-.79794616;1.6283488;.16350779;-1.7893931;-.27041969;-.31556016;-.13987277;1.4423028;.94256657;2.7699988;1.7952493;1.2162256;-.74397475;.018190449;.63331342;.41638526;1.0784121;1.2220441;.0012448059;.6578024;.64090103;1.1755861;-.64712375;-.33345324;2.354399;3.2591918;1.5046179;-3.2226331;.145035;1.2011799;-3.1147485;1.5130194;-2.2526517;2.8346181;.82815504;-2.2481315;-1.2742721;-.18640687;2.6022227;-1.3662354;1.4845538;-2.9252341;.12597519;-.20827474;-2.1715581;2.5563331;1.2196397;1.0261436;2.0565574;-1.3572208;-.049714822;2.406739;-.77448857;.59904605;-1.3207456;-.17682841;-2.6740539;-1.620303;.61285484;4.0284204;2.7622843;1.600484;-.76949221;.55802989;-.39151052;.89093155;2.1841657;3.7339809;1.1883881;-.10386183;2.2997024;38.751427 +-.082109883;.33952403;-.32390112;.29909933;-.99437392;.13189821;-.27311632;1.0127701;.26294112;.12491911;-.45340478;.89101917;-.28198785;-.29358518;-1.4702209;.73530763;.62374157;-1.6194282;-.19198138;-1.8443142;-.76647055;-.15339933;1.2237972;-.16663599;.25442484;-.41093159;-1.8581358;.34099326;-.39799598;1.4462376;-1.2311631;.37272957;.44565487;-1.9414256;.29404178;.20932114;2.994487;-.93451309;.48813939;-1.0375192;.77716839;.21048418;-1.0524638;-.36871102;1.8933569;-.19186081;-1.2182425;.47865275;.13216357;-.016532252;4.4953771;4.2838807;-3.5984836;-2.1713579;6.1422658;8.189908;2.1246078;.22229284;1.6565062;1.2056737;2.9555707;1.7168974;3.6322224;.19463845;-1.3102239;2.0767064;1.474182;3.0226808;5.9861732;4.2412729;2.4464035;5.3674426;-.12788872;.88753206;4.9979119;2.1717789;1.2214122;3.6282299;.74169743;2.3714249;4.1823874;5.0177069;.37849414;2.8047225;3.0661173;2.5182781;3.2125695;1.121098;1.522307;3.5033998;.83393377;-.79833609;.18938841;-.56412232;-.29986843;6.081903;-1.3743111;2.9129577;2.1935723;.46353963;-.19332954;.88954395;-1.0823534;.82228339;.97527957;.15257113;-.62370527;2.085242;-.86012203;.009007955;.29980969;.95181531;-.76890302;-.1424446;-.3982099;2.1203067;-.072907083;-1.012586;1.8532082;-1.3610961;-1.8908859;-.3392216;1.6820878;-1.5499533;-.93338788;.091210075;-1.234229;2.1071832;-1.1958802;.33406171;.11681007;.25589514;-1.073561;-.7992022;-.27529338;.47829244;1.8555523;-.020357948;-.48600537;-.26339939;2.5031085;1.4981126;-.043056194;-.18679038;1.123512;-1.6833481;-.12446265;-.32624793;-1.0980791;-1.1247567;3.2623553;2.6879382;-2.5179732;-2.4106131;4.7728567;6.0617361;1.0098627;-1.0465587;-.27282587;.26675785;1.9046174;.1124336;1.3522439;.39037535;-3.2608802;1.3002415;1.5521122;2.6949532;3.0159206;4.713439;1.700381;4.1907315;.69772869;.27557757;4.1821733;.89935005;1.4238878;2.2780473;2.8230748;.25741473;2.4978266;2.4827888;.011705959;3.8400013;1.4416412;1.5097865;2.2147558;1.2396852;-.56408536;3.840126;-.15872177;-.20436789;-2.1673303;1.0682696;-1.5557153;4.1876745;-1.7537369;.76923174;.5605849;.062621459;50.427769 +-.7539289;-.094764188;1.0033714;.41528347;1.1910124;1.4307327;-.33955687;1.1034495;-1.1993136;1.1116375;-.41291231;-.94169497;.60345256;2.0289552;-.44290879;-.73953784;.8622188;-.12115676;-.8260904;1.8329886;-.58821076;-.3520436;.93811876;.71574116;.76866239;.74265563;.35663775;.56275934;1.5558738;.11229957;.20076022;.10831335;1.176764;-.5952462;.34831786;-.95815086;-1.1675218;-.99347985;-.5978595;.13381785;.48132631;-2.3880575;1.3727114;-.37167534;.49325219;2.1684902;-.73951447;.81530666;1.3700732;-.22358978;3.2700415;1.3170981;-.6661939;5.3874626;.021029426;3.081743;2.8950009;.13643901;1.8797164;3.6215262;2.4977043;7.4493418;2.0443707;3.390605;5.0122099;1.9745952;-.97816622;3.5060179;3.5134542;1.1281867;1.3623921;2.6765637;1.8359585;1.4842187;.5862987;.1957356;.73783028;1.3609704;.23583332;1.8773574;2.088753;1.4916598;1.4610044;2.7093349;2.842253;.42479569;4.1021166;-1.6154827;4.3771224;1.8797402;1.3554305;4.9273725;-.82140428;3.7612126;-.66275954;.88855952;5.5922771;-2.4354579;.37685183;3.5430241;-.59344274;-.28700787;1.6939465;1.6698745;1.6646564;1.1115396;.44566301;-.86938596;-1.5656463;.53429544;-.88293725;-.82048643;.010446773;.62445468;-1.9968084;-.65543854;1.6019055;.96087056;-1.5959988;.98922902;-.68806183;-.43497232;.52218556;1.6469942;-.29989517;.19154187;.30495381;.95667726;.45591861;-.29170686;-.95972085;-.79866898;1.8773677;-.58565354;1.6184192;-1.1486065;-1.1545005;-.76977813;-1.6641767;1.4408852;.50842613;-.16915435;.46059814;-.04690475;.78977203;.22138493;-.16909623;1.9075412;-.030252697;.38063839;2.9391789;1.1875526;-.84858567;4.5188594;1.3895344;.85657454;2.1612253;-1.5256954;2.857301;2.4841473;-.063755281;5.6931849;1.166387;3.0165532;3.5575347;2.9817097;1.7395052;2.8608644;2.6636248;.5064311;-.49321455;1.8981764;1.9347407;.0066536297;.44444087;-.75643063;1.74743;1.4448397;.14462776;.44481507;2.3140712;.36442965;2.5728753;2.6788828;1.5018749;.6603545;1.6403179;-1.5297941;3.9936607;.6097706;1.9833044;3.2022712;-.79045832;1.9634529;-.62016326;.19904171;3.262027;-.21570434;1.0790652;4.0385423;50.313339 +-.76252627;-.76290691;-1.6324673;-1.1909473;-.43608353;1.3299296;.58503652;.20572235;-.0025917694;2.0342295;-.23469563;.4575758;-.095420174;-.059082564;-.60638934;1.0363331;.54334635;.88552189;-.39110842;-1.0647025;.13254414;-.88705164;.30742416;-.16413687;-1.61292;-.11121419;1.7995561;3.0969372;.11466224;-.79753405;.58803242;2.1492431;-1.1705407;-.35860279;-1.6308072;-1.4777677;-1.2294317;-.72844678;-.53835112;.20484495;1.5280133;-.010769419;.82135105;1.0214058;1.6388538;1.1912446;.28116709;1.346064;-.18828164;-.79556113;1.8681962;4.1099739;.41870099;4.1278257;-.1507678;2.2565866;1.2186877;3.3825603;2.4413457;5.5423913;-.61507124;2.1712186;2.0705502;5.7117348;.37528971;-.47736451;.30600256;1.5415519;4.0825257;3.033221;2.845078;6.1896081;.64014262;-.18661016;1.5483404;-1.3470387;7.0760555;1.4236242;.84732801;.64906025;2.4284284;-1.1271255;3.1691532;1.7809496;3.1215258;1.4433219;-1.7889087;.97419786;2.8547812;1.9872118;-.72189587;1.3599147;3.4980249;.11123022;.18864058;2.9538212;4.3036308;2.4222682;.52286595;5.9474282;-.17328046;-.98302561;.18880299;-2.2893665;-2.2149417;1.0986016;2.0314524;-.39211723;.66351056;.20987615;.42058522;.33578238;-.57164425;-1.9937042;-1.3592223;.069974862;-1.5814413;.48715004;-1.725192;.53817618;1.425084;-.21829416;1.5250497;.56832165;-2.428138;-.84040576;2.7832098;3.1452279;1.0676711;-1.3713897;-1.1923282;2.9390736;-.80549639;-1.1423254;-.7135098;-.6921196;-1.7507856;1.789371;-1.4520365;.50406927;1.4380704;.53642052;2.0207407;1.8339998;.37379661;1.879902;.20966174;1.1300646;-.5736106;.16240032;1.2260141;2.8447011;.84071451;4.7494788;-.76305276;1.8855195;.18452632;2.5076206;1.5237436;4.8931489;-1.0409546;1.8574523;3.2909966;4.5639005;.92671067;1.2251556;-1.1804887;.80710143;3.0192626;2.4364049;1.6975189;3.3749087;-.55645341;-.61302644;.74530357;-1.560685;5.9573712;.23608235;.3565625;.73069298;3.1177382;-.17945078;1.9482864;.54351234;1.9761301;1.5945458;-1.6931514;-.11993212;2.1164777;.56192213;-1.9641994;1.7864857;1.9644778;.81525463;.45052636;1.3689837;4.3078194;2.0512271;-.42951015;2.8558667;51.719177 +1.0426643;.59110653;.80337667;1.8539048;.87941116;-1.1454924;-.28958625;.41986132;.36546469;-.40850273;-.62520444;-.99905455;-.29276896;-.13797264;.11778951;-.10595326;-1.9687442;.33139881;-.20978066;.4404268;-1.3983353;-.6603229;1.481133;.8589586;-1.3348796;-.10139594;-1.0972189;-.69900185;.2017718;.44956994;.55558062;-.20909098;1.9354359;.34610122;1.2875677;.8497504;-.82076603;-.56014216;.015103102;.087930977;.8014558;.79729414;1.5035238;-.50164098;.019017421;.45411465;-.19555865;-2.2334211;-1.1288643;.27171832;1.1691507;-.76561505;6.5091896;2.8142152;4.851274;4.8051934;1.0904235;1.8579764;1.6657743;-.382898;1.8772784;1.1087122;1.0176947;.98993868;1.2890396;4.0238261;3.9578781;5.6951842;1.946031;.10994007;-1.8805956;.89623451;1.1534224;-.10628062;.66221768;-.67391068;4.5328231;2.1352363;2.3882587;-.65492266;1.9325666;1.7032;3.6889915;4.5249972;.5924505;.42078543;3.9707801;.41903907;1.6621493;5.586153;2.2930748;-.77458268;.11392909;.70716476;4.2260342;-.047140233;-1.101325;-.83471739;2.0157669;1.3747417;-.64078611;-.31488353;-.29885134;.50021899;-.2762464;-.8743332;-.16079032;-.0067184884;.010919675;-1.0508679;-.087002456;-1.0823646;-1.3711027;.75206643;-.59881347;.38964984;-.28691986;.0079159103;.014671138;.84785444;-1.5903928;-.15275468;3.2533641;-.45833516;-.27783382;-1.1929554;-1.0290458;1.0610269;-2.1463358;2.3016052;.96695632;-.74171466;.80535209;.93726265;.96937281;1.4555343;-.40150678;-.9770965;.31033894;-1.6245002;.68132973;.36982512;-.38394555;-.93862057;-2.0069287;.66912818;-1.1228292;-2.4932921;.10632629;-.45438927;.63351315;.032441918;4.0717325;2.809098;3.1419783;3.1332829;1.7389457;3.6613462;2.4684536;.37437683;-.65895057;.82910132;.4672983;-.59807163;1.3982487;1.8298016;1.3366182;2.3285484;.21646692;2.186342;-.36316288;.62068319;1.0874431;-.49895534;1.8569427;.50652099;3.323633;1.8188316;2.1798794;-1.7642984;2.8290253;.21121694;3.339066;1.8333118;.6488322;.18247303;2.641031;-.017183477;2.0839863;3.9409137;2.9058487;1.586926;.50317711;.2915909;2.1289682;1.3093427;-.64044082;-2.6338537;1.18383;2.1141279;44.124104 +-1.7603916;-.74079883;-1.2670544;-1.3807613;1.7012329;.25222883;.54903108;-.3675383;-.12083016;-.010153814;-.5711816;.8661564;.35811168;1.086722;-3.4720078;.35521355;.91914839;-.86631989;-.71118909;-1.5763386;.28535491;.62045205;-1.1637256;.15144286;.72243565;2.3924606;.047419317;.20294967;.92564356;-1.0791509;-.37663746;-.66029459;1.049051;-.45750272;-.73723668;-.88785726;-.57606715;-.41831115;-1.1934675;.59109789;-1.1776867;-1.4746804;-1.3915819;-.12335635;-.023978258;.37155753;-.87449926;-.19830519;.46470699;-.0024166272;2.7322321;3.7196472;2.1760957;-1.2312222;-.33273578;4.8418632;-.41041949;2.0309877;5.1106501;-.33480161;2.0485249;-2.4622352;-.79446799;-2.987175;4.7234511;3.4995563;4.5811801;1.0994943;3.2394733;-1.6074901;-.091622382;1.6484567;.35894942;4.5753169;5.8681841;-2.2471099;4.4390559;2.3987567;2.2379084;.70445478;2.8643427;1.9624497;4.9793782;-.76335955;1.4811876;3.1090314;-1.5862328;.35933176;-.20636159;2.6078153;4.7883706;.47971061;1.1815121;3.0437012;1.6795412;4.7686896;.7479589;4.7900081;3.0111525;.38049823;-1.1475554;.36116007;-.43348226;-1.010166;1.9861594;-.19026941;.21056758;-.46072543;-.77272123;-.53766954;.075288974;1.5269779;-.59700137;-.30647686;-2.8098941;.046889719;-1.0995297;.37613869;.22532728;-2.2739911;.22925374;.81936681;-1.5417992;2.0468655;.48181996;2.5659699;-1.0158827;.9489584;-1.0942672;-1.2937917;1.6215776;.069660448;.71824539;.29520866;-2.0181191;-1.547472;-1.7550189;-1.4392415;-2.0496788;-.18727094;-2.9667766;.42444545;-.68642455;-.0036117239;-.058343515;.66840857;-1.3620868;.059676837;1.1434957;-.96595788;2.3656318;2.6620975;-.12081297;-.98762339;-1.1983334;4.4155288;-.86154753;1.5627626;4.6976337;-.56872326;1.9634572;-2.0765655;-1.6315861;-2.1540332;3.0892074;1.2293903;1.1860607;-.14047606;.66460794;.6024161;.74264556;1.7513781;1.3300836;4.0113072;2.4114788;-.98145074;2.4187441;2.404676;.95735705;-.13497427;1.9739138;.98815125;2.6891179;-.0052638887;.91071355;2.310719;-2.285634;.71655136;1.4246688;2.2040741;3.4513507;-.65861177;1.288321;1.0306588;.94126439;4.9980698;.93217754;3.6401663;1.8308012;-.091966182;38.146248 +-.79705048;1.3187332;.13912445;-1.4129126;.73521048;.1373091;-1.1742568;-.51315755;.92300659;-.12675214;.13346229;1.0676062;2.2063465;.5607354;2.5900025;.67853397;-.95191091;2.5647631;.39995629;-.39970145;.23478755;.17657475;.31707197;-.20187406;1.5393676;1.8502401;-.53553706;-.46253231;-.82894558;-2.9753325;.86513102;.40399012;1.0331374;.055976979;.55700523;-.3322967;-1.3603054;.62640095;-.29656252;-1.8316963;.94654852;.70962065;-1.1896307;-1.16896;-.11038744;.16586024;1.3070664;-1.2548211;1.7422446;.71544486;4.1809034;-2.5075097;1.3336245;-2.7689815;3.2379353;2.8916817;-.071629077;1.6658921;.14035022;3.8186524;1.8932561;-.2169092;1.4352264;-.39927241;3.0795891;4.2121401;2.705574;2.0744123;3.3553131;-1.5371598;4.0633898;.32530212;4.9093266;1.3086867;1.8551048;3.7801723;.45817351;-.58243436;-.36473212;4.1136875;4.3872495;2.2475138;2.1793334;2.9477415;-1.5293298;-1.235599;-1.0458479;-.50521106;.24554226;-.36979738;-.29643455;2.7652118;1.8589494;4.3474412;5.4906754;.65843248;.95930791;1.4349775;2.2968369;.073521659;-.045969382;2.9984031;-1.4559033;-.71948224;1.7653364;-.67482924;.269788;2.4021587;3.1639206;-.17537335;.66853249;1.4367213;-.70935005;.92401963;2.1501632;-.5187642;-.091115363;.88304162;1.335435;-.89861941;.36943623;-.64798504;.86946285;-.54000229;2.3020232;.82755369;.95348102;-.93792319;.7353422;-1.9743598;-.04581802;1.6296302;.68759531;-.66392821;1.3667594;1.6536124;-.31621319;1.4744186;-1.1887378;-1.1501256;1.9654746;-1.7268015;-1.4143212;2.4911115;1.459383;.5803473;1.3186693;.47699112;.08242289;.85268921;3.2160695;-2.5999968;1.2626477;-1.3402145;2.7241418;1.1199149;.43598947;1.3546981;1.328086;2.6508024;2.3496039;-.0083635719;2.2586331;-.9558323;1.7756765;2.6209435;1.1685169;.65410161;.39568141;-1.5507634;1.8309921;-.21064141;4.233572;1.7885666;1.1759365;3.1113639;-.040970329;.064257942;-.77312964;3.5011873;3.3784914;.65789706;2.5584655;2.2077925;-1.8109199;-.33001593;-.89823645;-1.1065475;-1.7521242;-.69882584;.77716857;.45671329;3.2955384;1.2296323;4.0560908;1.7843794;.66217411;1.6776234;.25112486;-.74076372;44.346695 +1.6426214;-.42531148;2.2221673;1.8251768;-.76518619;.4587799;.98630661;-1.7160248;1.4359363;.12084901;.39212939;.24075986;.073906511;.40105703;-.39395729;-.46435961;-.95687366;.27312002;.70589322;-1.4748988;.68110025;-.3141053;-.89221394;-.63415587;-.24232936;-1.8356133;-.51360476;-.92151469;-.62820035;.071906075;-.22361179;.23180327;.37031886;-2.3955386;-.94480044;-.24905325;.63914496;.5638656;-.59593356;-.73208874;.76915199;-2.016866;.13615401;-.1788892;-.75757635;.56513506;.52398241;-.26436275;-.53764629;.50898772;-2.1442568;-1.1314205;.84469056;1.6607528;.038241912;-1.3822515;3.6665504;2.8604598;4.8606267;1.678008;-.26845017;-.12002528;1.551196;4.2239809;1.1545843;2.6357496;2.8284342;5.5646687;1.6557293;3.7107272;.13877462;-2.06497;-.82231545;.75485557;1.6815608;4.9111719;3.6790907;1.6022925;1.2884774;1.2162982;2.3981307;1.3690352;.79301763;3.1880944;.75796473;1.0047423;5.7323642;.851255;.72829133;4.7349935;.040058941;3.9025993;-.89171845;1.8565356;1.4287293;1.6297569;4.5853038;2.3106098;2.5771506;3.4631469;2.1019022;-3.0326569;.91851497;1.8576056;.073505357;-.11686534;2.0521781;-1.0127095;.26046896;.15887742;1.0947791;1.5997646;-.87777859;2.5444109;.5280962;1.2390553;-1.6565888;-.088145375;.2832557;-.98584712;-.72989231;-1.051609;-2.2504027;-.80769682;-1.3598784;.98447436;.090700105;-.26766711;-.65294784;.17833368;-.052491941;-.68012708;-1.1552907;-1.5240459;-.99991274;.42618236;-.89804351;.14665714;1.619976;-1.6151954;1.7060416;-.58636153;-.59105724;-2.7460153;-1.6593976;-.018541142;-.50247449;.49026853;-.56169885;.68474549;-1.7911679;-2.1922963;-.46347249;.15259051;-.21300569;.1729366;3.449085;2.3324976;3.4849653;2.1676586;.93044114;-.75537336;1.5455967;3.2000606;1.8088528;.33176532;1.9801801;4.2633777;.040419947;2.8897955;-.5725044;-2.4112985;.0027995505;.084591992;1.411096;3.2078691;1.9273419;-.2516292;.71691644;-.99005622;.64233804;1.288237;1.1983768;.73718137;-1.4327848;-.51683676;5.4404802;.93667853;-2.0371389;2.9979703;.13412479;4.8232775;-.25342193;2.773725;.54824328;-1.0576627;3.4360955;1.5523392;2.6142797;3.3851142;42.123871 +.19874738;.71573764;-.65329796;.39331484;-.57855988;.91252214;1.4552333;.11799651;.32392019;-.58140653;-.77882719;-1.0975825;-.23769927;1.0080274;-1.6403335;-.30069491;-.10359886;1.0167968;.99781805;-.4797709;-.10883967;.92391241;-.58388156;.30783987;.52623898;-.24857034;-.72782928;.21511717;.097039878;.53205168;-.21168825;-1.0104691;1.5546777;-.75949156;-1.0458764;.28316259;.34786004;1.1726761;-1.6178784;-.84888911;.47247982;1.0161777;-1.1917992;-2.370507;.20507775;-.91570532;-.1055461;.16839306;.67384863;1.1294351;2.463501;3.5767469;3.540344;3.3924007;4.2677584;.16522561;1.4867659;3.7505236;2.1732666;1.8274347;3.1789384;-1.4184959;4.5363917;1.1899495;3.7607081;6.6912799;1.3263474;3.5142691;-1.9971764;.078170732;1.209016;5.344326;2.3402374;4.2814527;4.8631325;.95954263;-.36188164;1.4616767;2.6950743;-1.5763077;3.432796;-3.02652;2.734477;4.403954;.5340122;.84019774;-.19803934;.49528286;-.49040636;.71690488;-2.2368107;1.0765029;1.4745563;3.0182192;2.8571317;-.40946263;4.7532115;.55900013;2.0102029;1.7883821;.53794426;.074698932;-.41515017;-1.3509264;-1.7314433;1.3570478;1.9298348;.78280693;.55965883;-.91416883;1.2044059;-.17318133;1.8605576;-.69440711;-.38021857;-.40047756;.13234754;-.54809982;.036265619;-1.1997596;.38569936;.86010951;.41883811;.0020978926;.56389111;-1.1467568;.54987264;1.0746546;-.70931524;-.20209526;.89127392;-.61677402;2.2188506;1.7269846;-2.7127261;-1.1515826;-1.0516195;-.2816956;-.84400517;.6284737;.89443243;1.3813214;.70010102;-2.3929245;-.46060875;-1.2232043;-.067141309;.53711343;.26113918;.064647056;1.3917388;2.9622772;3.6718328;1.3832263;3.0671542;.90037417;.88646114;1.4695485;.82128257;.58350992;1.3150078;-.95820564;4.6313338;-1.4625249;1.527944;5.4946699;.71847838;3.1252522;-.21627538;-2.3760033;-.34526622;3.7789161;1.4671004;1.9434915;3.0040886;.22984336;-1.1332406;.56081098;3.3982008;-1.9803993;2.5735636;-2.9768045;1.1699923;1.6302361;1.6640918;1.044044;.7444784;.87115997;.39049691;1.6762811;-1.2686449;.62069243;1.2124512;1.4858371;2.1631756;-1.4927502;3.1752081;2.0318227;2.0201097;.38958016;44.1283 +.43343785;1.2066286;.046352327;.39915448;.61967731;-1.3972589;-2.7653644;-.025470216;1.0430932;-1.1236;-.39526436;-.5055781;.67525816;-.53191793;-1.6674935;-1.2304029;.90496522;-.44295391;-1.5121393;-.72361636;-.11287155;-.8426246;1.1488587;.14642467;-2.2345462;1.1909466;1.9333285;-.89171529;.39843521;-1.8360289;-.33622426;1.5642278;-.72938699;.16689745;.035706449;-.39970693;.42358685;.22977023;-.042394064;-1.2548993;1.0815763;-.2675989;1.117191;-1.3988609;-.12230103;.57135522;-1.1681859;.077495657;-.74187768;-1.2888443;2.5983696;3.916724;2.3515491;4.670763;1.7925215;2.6841989;2.5667596;-.81867713;4.8520784;1.8428557;-.96993256;-2.684526;4.3460097;2.1906447;-1.9348718;.46207285;4.0887952;1.8714639;-.598418;1.5248821;1.9482609;2.3932974;1.0718999;6.5746088;1.7744627;.24870591;6.986155;2.2573752;-.10311535;1.7373376;.56737643;3.9103584;-1.1350805;-.83827513;.53987241;-.4122375;5.9217029;-.13141641;2.8117712;3.7957397;-.51031816;-.37816235;1.4595255;2.1668153;2.9051108;-.63424546;.20456909;3.0943367;4.8868284;.27016106;1.6437798;.81463611;-1.1641644;2.0656312;2.5040722;-.74447083;-1.8751826;.15866069;2.5010793;-2.0470252;-1.3294009;-.61970407;1.4589128;.55997467;-.68353099;.62842733;-.41634068;-.28446695;-1.5117615;-2.0697041;2.3321896;1.3655928;.44146195;2.0794032;-2.8144114;.81874675;2.61747;.29150712;1.6619413;-3.0156252;.25973868;1.90683;-.41710931;1.3222293;1.1755619;-.86253178;-1.9412476;-1.3545189;-.29443315;-1.4683743;.42989191;1.6448644;-.056016304;.86748034;-2.8256621;-.26865235;-.0061873104;-1.0835166;-.31904581;-1.0666901;1.9026896;1.9984082;1.3063382;2.7915969;.79555774;1.4119079;2.659776;-1.559577;3.111254;1.4000893;-.64787316;-1.5069054;3.5135953;.63665247;-.17156881;1.0152194;4.6103096;.97233129;.60689783;2.1809978;1.359094;1.1225278;.16319175;5.418592;1.5704883;.32654682;4.469378;1.660442;.62771755;2.8673403;-.15849146;2.3554897;-2.4731238;-1.742363;-.15191332;.60475111;4.3431473;-.21266381;1.5700228;1.8782256;-2.6880383;-.48694557;.12988915;1.1989685;.93428314;-.71208775;.20456426;2.5404804;3.7642186;.21753924;43.205757 +-.58010101;-1.174704;1.1926321;1.3413898;-.71267098;.28484994;.42855793;.70837349;1.9310771;-.33341038;.060445905;.045719407;.097094551;1.4084347;-2.3658781;-.15443014;-.58710635;-.67340618;1.0906606;-.72866726;-.79686487;-.84177464;-1.1820316;.83640897;-1.4204483;-.63325024;1.3528051;1.3677558;2.0439289;-.91315585;.25568345;-1.5809419;-.16584891;-.73196387;-.86253947;1.6731532;.200643;-1.9261709;.65950948;.2482724;.92912608;.40557143;-.19495805;1.9954351;-.80282503;2.2241971;-.51898223;.82306147;-.49325714;-.74621576;.28086212;-.11239443;.11863267;2.062254;2.3329191;2.041235;-.65119731;1.420179;.70485783;.83688706;2.5322063;1.3948767;.53877765;-.2262217;1.1786654;3.379987;3.7515624;1.6945406;.15660056;1.8906997;-.13689023;6.8267202;.45757657;3.7197895;1.182871;-.10261516;2.5526271;4.3207026;3.5476255;3.9143825;1.4123989;.6925841;2.8109553;-.7882632;2.9378765;.13599527;3.9914804;4.4821129;3.6108506;.007345323;4.1072927;.78390294;-.17724331;-.52385449;.38481292;2.8236973;.4136602;5.658195;.90167558;.71905452;-1.2951952;.65696692;.85300142;-.33495307;-.91911292;-.76608378;1.2579575;-.28512698;-.30462328;.88324583;-.83613271;-.90559375;-1.8044736;2.0561843;-.69802415;.24163869;-.92495537;-.74784887;.75132251;-2.2956164;-.48885244;-2.1821916;-1.7383564;-1.9503208;.0028138135;-.37196279;1.5520377;-.030763656;1.3600442;-.49276373;-.63998336;-2.8637722;-.56371838;-1.1682607;-.73159438;.05072505;.16604804;.93472642;.65524912;1.7353588;.33120888;-.18095694;1.1180178;.039500728;-1.2061558;3.4493942;-.015090523;1.0078876;1.9472837;.66593593;-.64019042;2.2650678;.42917514;1.910486;.79663825;.43374074;.67439854;.11873389;-.53667933;1.5298671;2.5736213;1.7862581;1.615413;.56735587;.68905818;1.3486197;1.6455388;1.2608116;1.0155791;1.2452615;-.3352778;5.7505946;1.5537534;3.1010671;-.1611464;.33093145;3.7544124;3.9700551;2.8631964;3.3166118;-.0078186374;2.4086344;1.395475;-.65073597;2.9695361;.62924963;3.5929959;3.3383653;3.7724845;.53772008;4.135675;-.78248024;-.95316398;-.40277883;-.39560694;2.060365;1.3383275;4.2034206;.41860738;-.28296468;46.852535 +.45581877;1.4156927;-.1210965;.56950879;-.55208802;1.2281693;-.59612632;-.97564608;.40919036;-2.4589343;-.052436065;-.8034749;.83157647;-.43809235;-1.4811472;1.3722674;1.264047;-1.0967468;1.3038117;1.6100968;-.48573205;.25901589;-1.073964;.65103471;-.31124702;1.0184315;-.42260692;.17257975;-1.1538719;-1.2268785;-1.2182499;-.19794711;1.2871468;-.31428784;-.084560663;-1.6082138;.14046809;-.5241828;-.1624632;-.22059131;.14655203;-.57751095;-.15537712;1.9272101;1.8008084;1.695582;-.71666598;.85895765;.56691247;-1.3865409;2.0072095;2.4979248;3.5771556;-.16356169;.97234744;2.1282027;4.9762602;4.987813;-1.2834979;7.4818859;.54567313;-.92893916;3.7587972;3.3034704;1.4772452;-1.8570486;1.6146983;-3.7120106;3.5455832;1.8246903;-1.0612975;2.2508876;2.6776779;1.8623301;2.4462693;1.6282959;.75518662;1.746182;-1.3145355;-.65932596;1.1972784;3.045866;3.2120495;3.7968345;.80144614;3.5530324;1.6134911;3.1797628;4.1240525;1.4712611;.047862023;2.2050686;1.159523;3.2684481;2.3705792;-1.1135428;2.7967455;3.2174289;3.5104783;1.8397042;-.66257972;1.3598133;-.21046446;.85575747;-1.0698268;2.313977;.59665912;-.45214626;.90159214;-2.1388063;-.72387779;1.3157088;1.2856302;-2.7935491;-2.0699415;3.4918616;-.28199676;-.73665965;.67545623;1.9853468;-.46212876;1.0841568;-2.0394356;.31675458;-.51117891;-.050331138;-.84933406;2.809366;-1.1055468;1.7739242;-2.4244123;.868559;1.154758;.35065204;.17269121;-1.3616245;-.61203104;-.16115505;-2.362885;-.89248919;-.22075799;-.9268558;1.1043419;1.3228097;2.3109734;2.4087288;.48487365;-.2399109;1.0613098;-2.5174263;.69663537;2.3754942;1.0340132;.19615048;2.014621;3.5519798;4.8883615;1.5282483;-2.1231391;6.7455807;-.64555776;1.3309722;2.896852;1.3082247;.8496111;-.77126461;2.0944288;-1.094516;2.9353504;1.3104643;-1.1656761;1.5867876;3.0287395;1.5504036;.7253052;-.21955091;1.853914;1.3958762;-.64880747;-.16502354;.62645239;3.1744099;3.6763439;3.6347432;.43361682;3.6304183;.99592674;2.3088794;2.8085396;1.4389552;.67179257;1.5647825;-.49258292;2.5471339;2.0822802;-.67432702;1.5466955;1.9451984;2.4402239;-.58377028;51.382034 +-.14473692;.37769613;-.75923598;-1.3317688;-1.0323207;.45242658;1.3370024;1.7173793;.22422256;-.29861924;-.10691634;1.1226327;-.01815776;-1.2222977;.11504944;.31746429;.53590888;.79256207;.31639001;-1.5495267;-.3402054;-1.1695009;.52037835;.46923718;-.031338397;-1.5001037;-1.1988314;-1.3683414;.11123119;.92574751;.90588772;-.00077983172;-.85436147;-.86764139;-.46475247;-.0044241771;2.4910488;-.78606355;.42380545;.8045072;.67469448;-1.3794236;-.14182958;-.67501521;-.3414025;.12787297;-.53640676;.091502726;-.41688022;.80956352;2.659591;-2.2658651;1.700731;2.7005401;2.8270912;3.0247629;1.7218896;7.0643053;1.271649;.64476317;3.6298442;.4731473;1.9513581;4.2213845;-1.335835;1.9798272;2.2115154;.7726931;2.0617704;1.8675996;2.8189228;.74704123;2.9064844;4.1534648;2.5048411;.3888602;3.0124893;2.6561551;1.4124693;3.4536622;-.48485643;-2.4800017;2.4743609;-.088794321;-1.7208073;3.5087941;2.2561495;3.6153495;2.3532672;1.840252;2.5921748;1.4332935;1.4139585;2.9630644;1.3434784;3.8754179;5.0527449;-1.2165843;.22169958;3.0670106;-1.9056873;-1.8018242;.20058423;-1.3852208;-.16746019;1.4337581;1.2358985;1.5203532;.10512607;.22025278;-1.1409835;-.41608149;.093835898;-.44738856;1.454119;.3505851;1.4723866;2.5286891;1.4455492;-.13067412;.098590121;-.95005137;.78266227;-.77879524;.41966715;-1.0890675;-1.0123155;-.16112748;.88256389;.54505903;2.6511669;.57664084;-.96364152;-1.2629935;-.95055473;.18057498;3.6719608;-.19219956;.23382272;-.47360247;1.2635064;.6737299;-1.7088215;-.3490096;.87283266;1.3211234;1.0753562;1.0799568;-.58945185;-.88748527;2.3145118;-.65055704;2.5883038;1.0041343;.54895234;3.2751663;-.078349344;5.2693005;1.2157772;-.37578416;3.884769;.68788481;2.1403892;3.308387;-1.1004704;-.16064931;.8900497;-.8764534;.90336847;1.2846091;2.2160158;.21747527;1.9551015;2.7865767;2.7231555;2.7661107;.12581076;1.9588411;.72684151;2.9173737;.32248342;-1.8534126;.58740222;-1.1537421;-1.9688607;2.5113945;.73305047;.85311168;-.93130696;1.6865302;2.2009177;.15499601;.98686576;-.28585643;-.5448727;3.7744188;2.1775608;-.79056889;.69689107;2.8106377;45.42001 +-1.011222;1.580698;-.67896634;-.69817066;.5231775;.010982097;.45785248;.57824755;-.85099316;-.73323673;.56417334;-.34125334;1.873746;1.0906602;1.308817;.25343859;-2.0740957;.040552936;1.0560266;-.35661918;-.46132571;.15390746;-.081832364;.26468447;-.84278756;-.051729284;.40648329;-.056002282;-.35089394;.73896194;.3861762;-4.1971598;-.98008841;-.70480508;-.53011608;1.1522671;.33653104;-1.5742558;1.390435;-.96206647;1.1215825;-2.3433278;-2.1970074;2.2360353;.22406569;-.5050925;-.067337729;-1.3663872;.72270286;-.89293331;-1.6395975;1.8852003;1.0411079;2.5485263;2.3973315;1.9138914;1.8107942;4.5474987;-3.1849086;-1.9105915;2.6175275;-2.9106448;1.2193333;-.37533492;1.6723081;1.0654603;1.9291793;.765347;-.045377698;4.3593459;2.3539774;.12862885;2.7266881;-1.4075673;1.4154208;.19264957;-.83585614;1.2025079;2.9775398;6.0373039;2.348793;3.5091074;1.4633549;-1.7420334;1.8955866;.28542897;3.4627445;3.162051;.59885806;-1.3383573;3.5555117;-2.6227219;1.1760343;-1.2715372;3.8619175;3.6296601;.21652523;-.33760878;-2.099791;-.47291368;-1.9064938;1.6614568;.080741003;-.29957741;.9175356;1.3780112;-.97594672;1.8942622;.49723399;-.73113477;1.1210958;.19337928;1.1668116;2.2878366;1.1618565;.84499103;-3.0752814;.62075257;1.4894576;-.29734302;.58842123;-1.8330967;.32597017;.24459288;1.0127763;-.81977683;-1.2082859;.46540987;-1.1709012;1.8798994;.81936872;-3.4158399;-1.2219343;-1.5886086;-.24868324;2.488147;.94526356;-.43709227;2.5788622;-1.5850736;1.7283992;-.47939333;-2.476819;1.6569301;.25611112;-.71088898;1.1778872;-3.2564595;1.0812409;-2.1039174;-1.79476;-.5113492;.72072589;.81136817;1.3266791;.68588585;2.6005278;2.1757813;-1.927664;-1.0454583;2.3712833;-3.9997778;1.5751894;.23076253;-.098245978;1.0631114;.64326847;-.34555095;-2.4140809;3.7399807;2.4599941;-.38688096;1.9266956;.19713242;2.1815054;1.0334758;1.3230973;-.23958085;1.9750718;4.3569303;2.2754352;1.9416372;.074196815;-.049699932;2.558804;2.0944762;3.3614531;2.8904841;.43647754;.13704704;2.9333618;-1.4974129;1.0800792;-1.4493849;2.5238214;2.0647302;-.046908688;-1.0110824;-1.9885881;-.21522389;22.815119 +-2.2811637;-.064543389;-1.1234994;.63678116;-.4305166;-1.0555025;-1.5605279;1.2943594;-1.8803883;-1.1562083;1.1599667;.9776215;-.094415583;-1.1851412;.38958377;.81694621;-.73619568;.15747164;.51226735;-.18048325;.92211527;-.59065032;.28806326;-.29775664;.90235466;-.31659997;.40229276;-1.995453;.14894032;-1.503891;2.262357;.69131356;1.2064865;.073875733;-.027153544;1.7618625;.47165495;-.19760387;.021347933;-.26100957;.78542507;.39578462;-.20487204;.39804864;-1.2350118;-.95990628;-.16305046;.76358193;.9274013;.89567447;2.6435506;1.450469;.26197311;5.2547793;1.2240345;2.3794067;1.1272714;-2.4093277;.73388058;-2.4471474;-.013125313;2.4394114;3.3479712;2.7647145;3.6231112;.65251577;2.3993373;1.4265879;3.2937279;-.40383506;3.7695503;4.9715257;.94724786;3.0475979;3.1845343;.13655972;1.812042;2.905328;1.1953181;1.2229909;2.3669536;.44668147;.90040344;1.0137653;1.3954371;3.1843622;1.6897134;2.057416;2.3414888;2.8662376;3.8370936;2.0952122;1.192957;-.89040965;1.7811819;.47667959;1.938369;-.42534781;1.491773;1.3308451;-.86787188;.31535593;.54890853;-.89462078;-2.2296298;-1.4937867;-2.1525636;2.0800719;-1.1622189;.28053996;.10987556;2.4183114;-.2974171;-.88971061;.83776671;-.10505436;.10103777;-1.0538746;-.85516512;.26459682;-.50704747;-.14920606;-.27831802;-.96244889;2.9585717;-.65556175;.80373132;-1.3497488;-.18562485;-1.6855446;3.0061021;2.5283494;1.3187152;-.17728359;-.64365005;1.8910451;-1.9247314;.058341321;.9312278;-1.5251349;.46747506;-.3438324;-3.2266414;.36770573;-1.0774648;-.75095636;1.8744093;.034537762;1.3735684;-.046101287;1.0706564;.74817091;2.20068;3.8228769;2.1036983;-.098853521;-.21877199;-1.1332811;-2.0247064;-1.5475249;-.40858698;2.0361917;1.7961514;2.1652219;3.259335;-.44898683;1.1735418;.21515477;3.8524675;-.89615089;4.1972394;2.7793291;.62763572;.55973816;.96955287;1.3538083;1.1190678;1.0133803;1.8367641;1.3227834;.54798824;-1.3830628;1.241679;-.34665784;2.2155082;1.2719609;1.7209164;2.2786944;2.2627552;3.3526058;2.5806999;2.6170828;.15170173;-.15332195;.94079137;1.476173;3.4215856;-.12876557;1.9030044;1.3946891;40.015877 +.27022567;.49367535;1.4909475;1.0585942;1.204301;-1.0529552;-.29828951;1.4094677;1.0626968;-.24679251;-.28862122;.21369152;-.53484195;.17963068;.60959721;-.81329829;.37573591;-.088743486;-1.1900704;-1.3787111;.23285164;-1.0433433;1.6113647;1.696352;1.6910355;1.540393;2.2204859;-.89375037;.0035516357;-.70793432;-.9331826;1.0431812;-2.6511817;1.845268;-.019721754;2.5433602;.87130016;-.80067039;-.69800436;.39275366;.45867276;1.8345221;2.0509005;-.55544806;.91788328;-.071891807;-.42023453;1.7399261;1.3262196;.60115302;3.8233507;1.4323351;4.8552628;-1.0244668;3.089323;2.3775396;4.4506116;4.5914512;-1.9664663;2.1664109;5.4790864;.14283097;.55046415;-1.6039308;1.9041766;-1.0807585;3.7344463;.63624829;1.0850405;-1.2564278;1.5780687;-.53816009;5.4666638;3.6501904;2.2092078;2.5674777;1.5121355;2.0301218;-.94211459;1.9693017;1.5888262;3.5601635;3.3707507;1.4345526;2.3671186;4.9769144;3.8131492;3.4873564;-.12082162;1.6788709;-.79810101;-1.84172;3.1560256;4.024303;2.6601071;1.3943464;.82946897;2.6154644;2.8311365;3.3648415;-1.0679625;.75945103;.18563095;-.023283334;-.77083921;-2.2899828;-1.0260513;2.0071161;.89029413;-.85845882;.31999952;.56911451;-.93598098;.66615379;.54103374;-.42372274;-.90165585;-.22013463;-.76082957;-2.1136825;-1.163301;-1.063504;1.4886444;.96978992;1.04712;-.1479568;2.324043;-2.0856855;-1.1805606;.38499299;-2.2551939;1.1218652;-2.5884032;1.7677912;-.37016261;1.6863822;.56309456;-2.0124936;.77432221;-.84127402;.087515794;-.40146607;2.9107008;1.3914982;-1.6946238;-1.0516975;1.7724345;.55331755;.43820301;-.50740588;3.180438;.79779166;2.9929218;-.39979419;2.4316542;3.1615586;2.4019158;3.0917015;-2.4609499;.30765569;5.7559104;-.63574839;2.7471306;-.39529365;.8293733;-.039947648;3.1521432;1.8605356;.81999123;1.0929366;1.3858808;-.87579876;4.4253035;1.3704622;1.3176281;1.9703012;2.82705;.9342463;.19610761;2.298367;.36222839;3.1859229;.13153684;.24734573;2.0435667;5.0760865;.69936603;1.2429181;.21193802;.78674865;-.33430597;-2.6930671;2.3434911;3.2220252;3.6686375;.2227954;.88274461;1.9846922;2.8664837;1.2047108;53.957115 +.94191748;.060692508;-.093435884;-.52653152;-1.0933326;.14770603;-1.3676357;-.78662753;.79682004;-.5777697;1.1129907;.17676054;-.18060213;-.60937113;.061718021;-1.258148;-.96302134;-1.5192435;-2.2050576;.95538223;-1.0717992;-1.0597374;.37079883;.45098713;-.4851734;-.065097012;1.1199846;-.33107466;1.1744967;-1.538787;.94804949;.1132643;.099672951;.16061892;-1.9669696;-.64324242;-.45193097;.41866946;-1.2603251;-.12697245;.48627344;.11141277;-.16608642;.16966477;2.134037;-.39356822;-.53292501;-.13916236;.30605507;-.95884812;.67956448;-1.0434788;4.2477565;1.1823378;4.6800985;3.4152899;2.5537839;-.94483757;2.7662394;-.21721578;2.5001009;-1.2264826;1.4161665;1.0227298;2.0332649;2.5679591;3.4623342;3.4620812;4.3134537;1.5793835;3.8301663;3.0768459;.29426482;3.4501619;2.3136744;.16050673;1.1184303;4.7377472;.96793103;-.052755468;-.37660113;4.5607491;3.4311006;1.1242074;-2.1766055;5.8337941;2.5332451;3.1350334;4.0150294;-.55244672;3.3072176;2.0599153;1.0159769;-.21574695;-.85787272;4.4603591;-1.205089;5.6371393;1.2826377;1.253166;-.45512938;-1.0232083;.94001293;.20359059;-.93503368;.55066121;-1.0302875;.45809007;1.3470649;-1.1844995;.75221598;.33435443;-3.1863012;-.74614608;-.37902495;-.54772294;-.67945528;-2.3770733;-1.2715315;.86390382;-2.1949449;-.014164893;2.7427263;2.3686528;-1.5679548;-.68450063;.91866118;.094260648;2.0725987;.66663837;-1.756963;-.98712581;-1.9210962;-.20245796;-1.0401813;-.56548083;1.4775437;-.46996263;-1.140656;-3.1955855;.60676283;.87304354;.57885623;-.22334769;.43904847;-.5785749;-1.3662649;-.81962872;-1.2824309;-.56577593;.26294443;-1.7244779;2.5992615;3.14485;4.6106772;2.7804942;1.788716;-1.1228662;1.632219;-1.000934;3.2594433;-.37512758;-.27144891;.79172289;.38281131;2.9597716;5.4376969;4.0037441;2.4737494;1.4193823;4.0157242;1.3732747;.023514096;2.256743;3.5216146;.17446713;1.2560496;2.5783408;1.7734265;.95723104;-.50368088;3.4108961;-.064014331;.97726613;-2.2786157;3.4289627;2.6108291;2.7747796;3.6149056;1.055405;.71390665;.95104271;.63168055;-1.5782833;-1.7470547;5.3003931;-.52291256;1.9193676;1.3300855;2.1171315;36.596321 +-.035941646;-.4101716;-.16503909;-1.4206258;1.0808551;-1.1936365;-.42130691;.20275804;1.9186407;.66229701;-1.3972336;-.5185793;.90615648;-2.715467;-1.4223188;-.053263821;1.3058084;.31691387;1.189901;-1.5663342;-.33953032;-.63542724;-.058731925;-.48951605;-.30820689;.85766065;1.0487378;.49032146;.28698382;.23643126;1.8155297;.57419991;.3801989;.38323644;1.4304332;-.86790657;-.90623951;1.541153;-1.0186805;.47175092;.71587259;-1.2780881;1.3042276;.6013056;-1.2543111;-2.3429244;.67749351;-.51742208;1.355325;-.14496033;3.1247511;1.0316741;1.3627119;2.8992891;1.6837939;4.4409895;5.1997342;1.8252691;1.589903;-.5856452;3.8229036;1.5901701;2.6692336;2.9396381;-1.4699377;-.24543615;-.2294433;2.3297162;2.061022;2.9398596;1.7054285;2.6970258;-.23549394;2.5228729;3.0599034;.14963888;1.258155;2.1101756;4.5428839;2.3882673;.28655073;2.5956218;1.5629822;-2.2894189;-.5906651;.54120868;2.7418265;3.5513403;1.7131075;.63602293;2.7567019;2.4973936;1.0713184;2.9382834;3.2078774;2.3551662;.19428822;1.2340963;-.60658377;.51980442;.1233224;.52481693;-.51149172;-2.1395819;-.71928322;-.70754933;-.7508862;.5104531;.082036749;.63918114;-1.6721035;.042886652;.35008878;-4.3693166;.85602939;.41683915;1.1277039;.68375039;-.86508119;-.033051208;.38124231;-.81381232;1.4613197;-.89220905;-.65438581;.76458126;2.6716218;1.1554241;.56719947;1.8118827;.8611123;-.82812327;-.58716631;2.0519481;.45660397;-.99077892;-.8811022;2.376122;.49648362;-1.8453636;.454593;-1.8727651;.41528335;1.074316;.44635412;-.80840915;-1.3514066;-1.8672433;1.4908652;1.9430362;1.5471267;-.46331117;.40243956;.95772207;.045088921;4.3912406;6.1015191;2.2988334;1.1173751;-1.3608537;1.5005826;.22475934;3.181402;3.7642252;-1.9235944;.05682078;.15461028;1.4373541;2.6162283;4.3654294;1.9309102;3.1080642;-.29277399;.86781228;1.4150263;-1.7459145;-.3018074;1.8506953;3.558979;-.56778026;1.0537915;1.1886753;.063437305;-1.2453146;.19776885;2.1017935;1.5361851;2.1290369;1.9464868;3.1179271;1.0066931;1.8616507;.867814;2.3104441;2.9220469;2.1130323;-2.6451421;1.0503572;-.59891796;1.8443304;46.313328 +-.23781174;1.5676841;-1.1446614;1.3555959;-1.7872521;.51844013;-.82595366;-.86085486;-1.4715199;1.7017604;-1.2806083;-.30656695;-.3051787;-.87455404;.66912049;-2.7085879;-.23590988;2.6482072;-.50684381;.074429803;-.81222427;-.04672417;1.9816129;.17620711;-.86516422;-.58250576;-1.5669723;.80173409;-.3924948;-.48295254;.31314617;-.018361617;.50007528;.63220769;.58184141;.62689108;-.087831803;-1.0455054;-.27018774;-1.4239191;.45809683;-.45208928;-.41286996;.53529763;1.7064383;.20660289;-1.1352885;.075300001;.15997563;-.43090096;1.7517045;1.5666223;1.3582287;4.4197688;1.1599381;.27270228;-.2803897;-1.547038;1.1534117;.068011865;.16820206;3.6089125;2.8437123;2.9038537;2.2506938;.41324776;2.8072391;2.3752308;.1757198;1.2805415;-.59219825;-.98481548;2.0923703;.49466234;-3.1091988;-.65008312;4.4191294;-.13388054;1.7031753;-2.0559411;2.4696634;.75053126;3.0599904;.69200122;-.010443402;1.2481749;1.3083774;1.2558333;-.31899664;2.6715896;4.0177393;2.0736775;3.4941237;1.3809592;-.3652533;-1.1365905;1.8117611;6.391367;2.1913691;4.7649302;.096303433;1.582255;-2.2428331;1.7563179;-2.4151635;.26490146;-.77664256;.06932006;-.63740736;1.3029058;-1.5649343;-.093884036;-1.8127532;.045157954;.13117383;-3.2892511;1.2510304;1.4565896;-1.4786474;-1.2378032;-1.5567708;-.14223637;2.6167264;.20874272;-.5227071;-1.378765;-1.1909267;1.2685076;-.051622491;-.51549798;-.018853189;1.7840736;.51758933;.14938638;.33839187;-.84423012;1.1136885;-1.8150851;.7397666;-.13528396;-.041842856;.22727807;-.79795533;.42320767;-.15640663;1.8447777;-1.1412978;-.50148749;.22046208;-2.2306898;3.2080851;2.5420024;.62909645;4.2860208;-.60730863;.80691767;.46811217;-.49369577;2.2303908;-.6028977;.67730749;3.155077;1.6825752;2.1074319;2.4697962;.1935713;1.6490543;1.9827667;-.74524617;2.1961858;.22510445;-2.2258677;3.0512199;.86401355;-3.0708091;-1.731812;2.9705937;.33343515;1.104906;-2.6670468;2.0468314;3.7394202;2.020328;-.088941932;-1.1365836;1.0367962;2.0904696;1.07981;-.98013121;2.7717993;1.9811716;.85854757;.84621716;-.6411705;-2.0800829;.49670678;.43749774;4.7482166;2.5848503;2.1378868;28.136759 +.58284712;-1.2034626;1.6103269;.10889881;2.1199698;.81994301;-.14187807;.16108866;.41898555;-.42901012;-.59547096;1.4157469;-1.1234323;.41882756;-.11487776;.94544536;.15039179;-.56736976;.73646605;-1.4006001;2.1754673;-1.3580586;.94534087;-1.9605356;.70440263;-1.2498385;.46150178;.54466176;-.7239393;-.0061095627;-.50705349;.28009099;2.3295035;-.68010902;-1.1165919;-1.4167467;1.0264306;-.21794552;1.1691942;-.38726845;1.0930719;.21134049;-.40056494;-.44480318;-.12125593;1.6735647;-1.2344496;-2.0508597;.74969292;-.34967208;1.8255053;1.990051;2.3334162;2.6848497;3.4825516;-1.460917;1.2753391;5.9502625;2.3639774;4.6422496;2.6073265;3.6010239;3.2989316;4.2715087;.93485606;5.5703993;2.2190492;1.007811;1.5324212;-2.8939581;3.9211738;7.3489757;-.69706887;2.1088345;5.2496004;3.1747401;-1.4184655;3.6156998;3.2442563;3.3227453;1.1531314;4.8764257;5.482142;.74930125;1.2566946;4.7770333;1.5794955;2.4234271;2.5539968;2.348346;2.8506718;2.600091;3.6052504;2.7050502;1.7169679;4.62256;3.9714265;1.4494022;1.3824027;4.9298129;-.49600357;-.30030835;2.1401818;1.8810676;1.4872656;-.76322281;-1.0282918;1.5172307;1.0123894;-.97857308;-.4446989;2.0698586;-1.3021013;1.8799276;-.35556859;.82670391;-.43785313;1.3773834;.42892149;-.45947909;3.2662613;-1.1976463;2.4193742;-1.5628581;.85391563;-1.565544;.70639294;-.43393081;-1.9196565;1.2659538;-1.1019636;.23116617;2.2449739;-.42272106;-1.7584597;-1.7146862;1.6803753;-.081986673;.41699111;.41381225;1.4203273;1.4797585;-2.502641;-.30164996;.19106348;1.3475914;.32239217;-1.7777672;1.6675957;-.73472244;3.1816139;-.66583765;2.4534214;1.9552705;.99823481;-.08970838;-.64221758;2.3395848;.52258843;2.7544594;.69797581;1.7401865;3.0085046;4.8426609;.63331395;4.045866;2.2420611;1.1946276;1.8263414;-2.8801935;3.3306808;5.7994118;-.85815233;1.216873;3.6486332;3.5745165;-2.0850821;2.8222415;2.2717614;2.8309712;1.4080141;4.0110583;3.4396067;.97548705;1.6972386;3.493094;1.1382731;2.4316249;2.2744884;2.3180125;1.6575397;.71092236;3.096828;2.2424185;2.2803645;1.4573822;4.0247788;3.2089505;.46997207;2.7550528;65.235512 +-.20778446;-.054664802;.28425762;-.07237161;.38108858;1.291527;1.2863891;.68599945;-.92625922;.62510455;-.056361251;1.2865118;1.3196119;-.61666656;.0048973644;.72346354;-.30245745;-.40695974;.35187605;-1.427038;-.20457862;-.10075208;.82793665;.94438022;-1.5868104;-.59715849;1.1978145;-.93136132;.90685356;1.0995994;-1.3946234;-1.1368603;-.81902725;-.74655128;2.0188501;.86678278;2.0881424;-.29594213;-.088543884;1.102406;-.75688732;-1.0825211;-.27600586;2.1742592;-1.1311003;-1.0770408;-1.0360994;.48295262;1.9149245;.40760371;2.9482579;2.9248738;1.6549168;-.67370009;.048415694;.18158984;2.1176946;2.5747185;4.9485703;-2.0095873;2.9515195;4.7029867;3.9392335;1.8834027;2.0862672;3.0129151;-.43923903;.36039585;-.24428585;1.8279021;1.0239602;3.6223197;5.0399075;-.045283105;3.3800621;1.3176813;-.36036342;1.5212091;3.9364669;1.4124522;-.48119715;3.4612808;.062617145;1.2680224;4.6945219;2.722244;2.1728077;2.1073008;.31340879;3.9860165;-.98509198;2.5571496;-1.8364428;1.2776757;1.3018131;3.3621154;1.3157507;6.8855839;4.3316522;3.107708;-.13576196;1.077381;.18909064;-.023227334;1.4128813;-.34183112;-.3882888;1.0441408;-2.2603192;-.087086037;.99313521;1.5966568;.40081742;-2.2974358;-.012911582;.62504888;-.86351627;.5355283;-.80092877;.28362751;1.6607556;1.2240773;.7666716;1.2038682;-2.8017919;-.68957615;.12279607;-.7645669;-.95814204;.61358428;-1.5893693;.1438577;-.83052814;-.81648886;1.2541947;.13690928;.90775198;.075333416;.97570699;.66783738;.32716089;-1.4919229;-1.196663;.02131502;.91943115;-.36609197;.649194;-.61230761;-.90617234;.25524756;2.0262396;1.9132963;.43494573;.62399948;.041249987;1.2594405;1.036303;2.193881;5.3339767;-1.5926226;2.4233181;3.7720096;3.6816642;2.7589753;.3613795;2.355978;-1.7428218;.43529928;.21161872;.66663539;1.0545064;.73760712;1.7941331;.65247583;3.0007346;.60039622;-1.524241;1.6195947;1.9447097;1.9644796;-.97359997;2.9406826;1.6825931;.72435337;2.8936772;3.8943951;2.3388827;2.7095282;-1.2495329;2.1809585;.18000953;2.6081204;-2.3585215;.86425364;.70541251;.19254707;1.4490341;4.1331077;2.8004556;.02569765;51.732685 +-1.2504152;.81243068;-.98454082;-2.4154551;-2.6486127;-.025432438;-.31750366;-.25561759;.83618772;1.4018385;.058494844;-.91230363;-.036482558;.18824184;-.33245927;-1.0119706;-.2828646;.4249585;-.95907307;.30583319;.58411855;.063251182;-1.0416198;-.28067154;1.4274815;.74783206;-1.595088;.24616049;.27631575;-1.7979201;-.00047901587;-.0043153986;1.7796581;.95965266;-1.5837134;-1.7353731;.21192315;-1.2162628;-.044275403;-.0060968893;3.0451515;1.8840383;.98971558;-.34408364;-.025797507;-1.4222535;1.5933714;.32943895;.69390982;.50304639;1.1235095;2.772018;3.9338968;1.9831464;1.4846079;.80081534;2.669858;4.4062724;.65085614;2.2007468;5.702498;.1972857;1.1108853;1.8647507;2.6024065;1.5018955;1.8737092;4.8562574;4.0451393;4.5488381;1.5040587;-.79750782;-1.5813193;2.256094;2.3118174;.42940068;3.3102531;-.34492755;1.3106474;.76299828;2.1417406;.38621727;-1.2358783;.95257103;.13388351;4.7735972;-.20011488;2.1002059;-.06482514;2.7270434;1.9841671;-2.6193261;2.4046025;2.1457009;3.0600598;2.5513449;4.0215125;-.0025954291;3.560066;4.8383727;-1.2935901;-.73294419;-.34789824;-1.8038546;-3.7552929;.35139114;-1.4376473;1.1721234;1.214541;.030200802;-.86544043;-.64035839;2.0301108;1.0633327;1.2874051;-.047798842;-1.5542364;.82448369;.45089021;-.65509254;1.9256119;.19234368;-1.1063368;-.030311666;1.4073179;.73396295;-1.9801732;1.0591409;-1.1294787;-.8015818;-.016258674;-.67570657;1.420639;.50229144;-1.1755257;-.44289544;.12269405;-1.0043758;-.30651346;.87319863;2.0929222;1.7174237;1.4685484;-1.6928358;-1.3865176;.014702629;2.1619742;1.3909297;-.73758078;-1.423133;.86961198;1.5158888;3.0613191;2.9365966;.40747136;-.22100295;.59266919;2.6982963;-.91386461;2.2164288;5.8286276;.21368416;.50632131;1.6827794;1.3123316;2.1802309;1.0153724;2.5052295;2.5619049;3.4093165;.29261282;-.30676022;-1.4815803;.043919824;.32834685;.31607828;2.4636753;.094565101;1.7681961;.44627196;.80270529;.44373056;-1.4672759;.65969485;-.892003;2.7626967;.33291972;1.3606153;.35534307;2.1109056;.57102793;-2.4317331;2.3912826;2.0335739;2.0784619;1.6926239;3.0964005;1.5253471;2.4918852;2.2376735;48.906483 +.24347979;.55033994;-.48352611;-.30146682;-1.7154677;.73120338;-1.1683333;1.708487;1.2970915;.90795809;-.28704306;-.66977423;-2.331214;-.038577799;1.0007054;.17774148;-1.2317895;-.68455654;1.059829;1.4572978;-.57620454;1.5985984;-.94105929;-.15912408;-.20690468;-.036846962;-.16830221;.8848508;-.00065319811;-1.0634271;-1.6349777;-.2384861;.77779627;-1.4799532;1.0290468;1.1779444;-.14834987;1.280672;1.4053332;1.4739168;-2.9255874;.01586155;-.84454811;-.99229622;-.51576698;.14556515;1.0143384;1.1266747;1.565618;-1.7287763;3.5200782;1.1977757;3.1237314;2.8053687;.82915342;4.2210779;3.6412406;.73579836;1.5829647;-2.1532149;2.4041536;2.3118412;4.7178097;2.1896222;1.9731753;2.1900177;3.1116431;-4.1718836;4.2305169;.8416751;1.1954464;.41943452;.70199603;-.27496189;-2.1397531;-.94652951;.2039431;.75417912;.69268113;1.5976225;3.023582;5.0566301;1.2923412;1.2548087;3.3156984;3.6909113;3.2034314;2.731611;2.5064659;.42695704;2.5741363;.92029345;3.0968485;-1.5284129;4.2878432;2.5855246;2.3230367;4.2643838;4.4995246;3.2653611;.71422833;-.71947116;.072092071;.41525811;-2.3503692;.18988068;-2.2459962;3.4700518;-.045293491;.19439313;-.75920337;.75648999;-.61669308;-1.0566959;.42369992;.15740968;.44778907;-.98434657;.22541769;1.6399033;-.9118439;.94148093;-1.1846551;1.7593707;1.7125896;.30438662;.037075985;-1.1497744;.37986246;.052641615;-2.2579226;-.12358376;-.32175401;-2.8647316;.28740856;.42709973;1.7588301;-.38199642;.62754649;3.0115471;-2.7444592;-1.6186597;-1.4027578;-1.2629491;.12543185;1.4203421;1.4751098;.71025693;1.0385652;-3.6099041;2.9582129;.41045347;1.6575055;2.0602994;1.9354197;3.7309818;2.5556428;1.9314767;-1.4991105;-1.6806375;.32406142;1.7815615;2.8535461;1.7790058;-.76722592;2.0408857;1.7098911;-2.8201923;1.5028349;1.1475989;.17268912;-.49011883;1.5544;-.079305463;-.011822551;1.0568429;.17501652;1.2858646;.47171563;-.43959427;2.8103242;4.1384544;.55719578;2.0046096;2.5286589;2.4157417;2.5247266;1.1601248;2.376313;1.1883173;2.8094044;.67543471;1.1006222;-1.0959328;3.6474028;2.2063761;1.8118489;1.7449739;4.990541;.67014796;45.933346 +.05871794;-.10003181;1.3364831;-.13858551;-1.6148771;-.76935202;1.1352198;.57299179;-.010179635;-.25726223;-2.7926192;-.095731027;.16024548;-.80282825;-1.5310396;-.63983697;.64452404;.39727235;-2.1671002;.50016654;-.50197673;-1.3987384;-.46939889;.46505177;.92919606;2.3651035;-.83644807;-.42967445;-.26296341;-.94665658;.5719257;-1.4427286;.078637011;-.26147354;-.66609377;.46347052;.79212862;.70566916;-.25858143;.7821089;-.61831725;-.78995007;.80070424;-1.7945911;.079116933;.32313824;.28538522;.91858602;1.3944408;1.4441915;3.4089408;-1.4402387;1.5681167;2.0482292;1.9895501;3.6186409;2.5176361;.22531015;2.0831404;-1.5373223;1.5295494;1.0471716;-.4353666;3.9087222;1.1148562;.66666633;.795223;2.5988331;.54914165;.038302649;.84678143;2.5213311;-.49131781;2.2250526;4.5620036;3.0457222;2.1799791;3.3342714;3.5309939;5.1514959;3.740572;2.8322291;3.442605;.66843855;4.5833426;1.8909032;3.5629797;4.384841;2.2284849;2.2802112;5.2655115;.13452308;3.6382651;.41418573;5.859271;.46576196;3.3447831;6.0661407;2.6164658;3.3676403;.20833282;-.21177824;1.9817846;-.83360606;-.79595631;.06291835;.76760143;.098045029;.61386812;.18053141;-1.4905752;-.076391459;.48704803;-.56760198;-1.1808858;-.24808003;.093942039;-.094023131;-1.9967372;.54955614;-1.573638;-.9857046;-.20886809;-.35237548;.029339831;2.0621357;.46277171;-1.3040605;.2418187;-.49249837;.076285459;-1.2867004;-1.6325802;-1.3095107;-.14358491;1.0178967;2.0310163;1.7974373;-.29811582;.36898053;.4534454;-.89975011;-.61359626;-2.4113832;.067862801;1.1261188;-.26352331;-.68435735;.83539844;1.6870917;1.5743428;.42944321;-.30419987;-.75981176;.90612358;2.6766973;2.7873888;-1.1748817;1.822257;-2.1195636;-.46479863;2.4083107;-1.0503036;2.9679487;2.5616601;1.703603;-.10756863;1.3425593;.51821584;1.8830274;.72016585;.72297251;.84123743;2.406342;2.698961;-.27557245;.46258518;2.2996306;2.6275246;3.8796399;2.2437987;3.2469769;3.6477153;.75377274;3.7170582;1.2868096;4.1277227;1.8689995;1.760116;2.0003371;3.716166;.20616755;2.7618906;-.45123607;3.9120858;.95355856;4.1544962;4.1501975;2.0893242;1.6050315;50.725399 +-.61123425;-1.3236237;.74108815;.59547359;.98016471;-1.0418408;.22212492;-.36924428;1.0934577;.43270007;.79647726;.76206297;-1.0645847;.92794508;-2.0782561;-.4522875;.83465838;.037974112;1.426327;.89934617;.15072398;1.1076365;1.0243471;.89361596;-.6317929;.098107763;-.17534904;-.74184471;-.3221789;.27027991;.12605318;.59597874;.36850649;.99311644;-1.2678293;.72422242;1.0058224;-.61323869;.9893828;.15626122;.28591374;-2.5018504;.80923951;.6789723;-.43688124;.11607973;-.97408062;.8455196;.87549597;-1.29758;-.24476013;2.9837146;4.5963798;2.9771502;-1.5089622;1.0937884;3.6946669;1.3150092;2.4393241;.65853173;4.4403772;2.0483069;1.8760192;1.1961287;1.1959623;.76733971;1.1777737;3.5574062;4.2441349;-1.1294709;2.2022367;1.2792078;3.7702625;4.1824503;4.1906228;1.1469561;4.0998993;6.1956987;2.1951425;-.76330853;1.2296675;2.3777409;-.50528121;-.11660675;2.7335873;.78968704;1.905841;2.8330779;1.547007;2.4192166;3.3382256;4.6246066;5.8266659;2.0975802;1.5465353;2.4691372;1.6850874;1.3457218;5.6984386;2.7742155;-.0066022789;-.31813905;1.1877056;1.5219129;-.90406245;.17236932;.59536451;-1.2915362;.49962094;-.35064474;-.32330981;-.25321135;-2.0034101;1.2395134;-3.5644207;1.6773049;1.3274822;.66585714;.42005682;1.7395149;.80901974;.60987824;2.1986649;.29262087;-.3298479;-.085227393;-.41759849;-1.3736151;-1.3443812;-.21136484;-.17545985;-.27298257;-.70885766;.21976566;-1.5020415;1.8573982;.73247302;.85751969;2.7011361;.35854417;.60110545;-.25948569;.23940533;1.1051133;-1.003463;-.35194397;.78725129;1.7742344;.32445571;-.43194881;-1.0067036;1.6466254;5.4612584;1.095974;-1.0299832;.92991334;1.7244929;.84873295;2.1481531;-.3504217;4.2140622;1.6908076;2.7223549;.017085284;.12026665;-.15264492;1.4132327;2.575048;2.0734146;-1.0138102;1.5265975;-.13110864;2.4088192;2.9835067;2.4668422;-.030521212;2.8745365;4.7053976;1.8346409;.56196558;.68830281;.60850137;-.23372333;-.049541656;3.3178973;.92624807;.086499594;1.4713041;2.6527607;1.3601986;3.092201;4.2910328;3.5650251;1.6403255;1.7984377;2.5863729;2.4331009;-1.7157857;2.3614886;2.8398342;60.876007 +-1.0050868;.89496022;-.38873568;.19027835;1.1776665;-.20893975;.7215389;-.74179041;.14788343;2.1274502;1.0325029;.59347326;.35413179;1.2475802;.60115027;2.6722875;.99932152;.10086561;.89911348;.1115554;-.012435286;-.76099879;.17546153;-1.3320436;.73799109;-.14016694;2.1998129;-.35353532;-.73547524;.24378954;-.11422927;-1.1535403;.15292843;.54544216;-2.1575363;-.98875177;1.3561307;-.58071792;-.17338642;2.1473393;2.3314478;-1.6756756;-.23133154;-1.2093664;1.0568469;1.675383;-1.2474455;-.17398073;1.1182961;2.2814622;4.4077239;2.2846327;-.39234099;5.2957463;2.04637;3.614485;1.6637638;-.16925436;.56927001;3.1122909;.77434671;-.77645612;4.168819;4.9025402;.61481947;1.6035488;.20889583;.034296408;.37955996;5.7607408;3.8592458;3.5183685;.72741002;-.048685841;2.260335;2.8403397;2.8335168;2.8265977;1.9661646;3.5109491;3.5170541;4.8121653;7.003726;1.8360636;.45227662;3.9184422;1.9736197;2.9712625;.54396945;4.1631165;2.2612329;-.76289064;1.2629491;1.2377931;1.0101876;3.4485641;1.1552514;2.3081203;3.608855;4.5292444;.3002691;.55208802;-1.1975943;-.44814801;.16865987;-.95815492;-1.3030109;-1.2923754;-.61155987;.78284502;.81953084;-1.1734442;.53850913;1.6148449;1.1410055;2.7707908;.220586;-.7426725;.5046261;-.19716452;-.17052571;1.3057749;-.24890229;-1.5794212;-.21087593;.30382508;2.0045538;-.49591619;-.69158548;1.9615717;-2.7426107;-1.4128467;-.21393694;.73196119;-.35872215;.97775781;-.39805311;.26219237;-2.1554103;.15081595;2.5946977;-.58180201;.99111861;-1.79896;1.1567553;-.094749376;-1.197861;-.47199202;.93198514;2.0432141;2.9756281;3.2448289;.15843357;3.5295291;.87187791;3.2964182;2.0063477;.044223551;.3350341;1.873571;-1.7512828;-1.944527;3.4713824;4.6100097;2.996187;1.8729203;.77943265;.99238753;.090664342;3.9807744;3.3305962;1.3720825;3.1473157;1.6836884;1.774642;3.2494292;3.1433856;3.2038999;1.4169955;2.6552098;2.1796708;4.4568119;5.913765;-.58512956;-1.3552186;2.1181192;1.471336;2.6341569;.75593966;2.1903598;.99372119;.12808283;-.74320227;.94507396;.7333582;3.5034626;1.3981591;.80063069;1.9845119;2.447911;61.793549 +.15842806;.49558714;.99721515;.71140856;-2.1780298;-.31898746;.93021232;-.043760389;2.3795695;2.7283034;-.79916114;-.54420775;.79377669;.60959798;-.51517195;-2.9826381;-.72242451;1.6573235;-1.168517;.92635339;-.45447341;-.61217517;-.54817724;.66093922;-.73472899;-.52823913;1.324224;-.33804142;1.33227;.33668244;.63579613;-.84519166;-1.6509441;-.32897863;.4201515;-.0083867768;.67420673;-.76669669;-.62104416;-.59409708;1.2551384;.52270138;-.19001363;-.27151564;-1.547628;.45927203;.57363707;.49390438;-.037602466;-.48016658;.40901399;4.9583936;4.9911075;-.5328415;3.8039727;2.5090823;.30207354;1.9265921;.8500874;3.5505915;3.2739425;.24074537;.46710724;1.7017922;5.5267839;5.2416968;4.4583831;-2.7507751;2.5105565;1.8585577;.90484637;4.2941103;2.7985222;-.41585353;3.4950383;1.2949849;3.7305982;3.1770558;.23123731;.78776199;2.2518606;.48394769;-4.4379964;5.2452617;2.4513867;1.4587299;2.8588991;1.9102875;2.313818;3.0315573;-1.9538529;.96007937;4.4621048;2.5284224;6.9437156;1.0987438;4.4686708;-.6942122;.84784156;2.9985638;-2.1849637;.81698376;-.18821536;.94880962;-.3883504;.40921283;.94819695;.23312649;2.4257758;2.2435765;-1.2947495;.24125545;-.32266909;-.35678366;-2.0523436;-2.0751863;-.01330852;-1.2923462;-2.0676041;.36106169;-1.9240686;-.28138816;.64832336;.96972555;.72870964;.4337194;-.49284714;.65909421;1.4773799;-.26972389;1.857614;-.41768053;-1.1020222;.68760669;3.8620141;.23877218;.038714144;.46358323;-1.2869532;-.032476954;3.1803646;-.17592707;.11636604;.31311479;-1.6394794;1.0304378;.21357866;-.32871577;-.28116006;-1.0771067;-.086952433;4.8084006;2.1548195;-.63633621;3.747962;3.7926633;1.3944551;1.0362477;.88168043;3.7300022;3.0444837;.054459557;1.9763927;-.32495242;3.834439;5.3514051;3.1625507;-1.5382686;2.4121683;.8946951;.35588956;4.4666848;2.1999302;.072841041;1.4865386;2.2037945;1.7434424;2.8159466;1.0332842;1.9857402;1.7601807;.31317121;-2.9306588;3.6430199;.87912315;1.1054933;2.0961175;1.6590768;1.9673363;3.8831854;-.039127778;2.8008013;2.2096245;.67095411;4.586864;.65372992;4.5427346;-1.5422432;1.8855777;1.5665685;54.141567 +-1.4751827;.76796883;1.2937785;-.17706391;.029017735;.34001529;.12193698;1.2039427;.26327839;-.8835656;-.61554128;-1.1610757;.8413946;-.84286356;-.87911564;-1.1650693;-.58901465;-1.3502967;1.826074;.22980012;1.090577;-.12266408;.046920765;-1.1671382;-1.6347554;.089779481;-1.1100101;-.3872669;1.6886995;.6973787;1.3665967;1.0785291;-1.0334525;1.6847283;.2283776;-.58365196;.90184134;-.5684604;-.18676811;.09321925;-1.3854982;1.4343635;-.31973383;1.1435127;1.1967986;.28067213;-1.0408964;-1.0580955;.22628015;.87423337;-.72158116;2.2885342;4.1562309;5.6767826;1.4567128;.88491797;2.4406402;-.68440521;-.052192565;3.5799296;2.8701839;5.1246448;-.02914821;2.4704247;3.7601538;.24479407;.91858798;4.6781225;3.9912164;-.83866745;.92506701;3.968693;4.370945;-1.1705157;1.5535206;1.3535411;5.2139683;3.5807137;2.9365509;4.646811;-.5691703;6.3474665;4.0229893;1.5259598;1.3034328;-1.2075411;1.4794173;.89508796;-.29497138;4.4825916;.72792429;-.60111797;2.0271955;.50040019;.39625388;1.4987872;2.0797186;-.93228203;2.5204217;.50784618;-1.0530579;-.36696941;1.7054528;1.1206748;-.30669644;-.48133257;.10265847;1.7273158;.72941625;-.22588244;-1.0578374;-1.1697088;-1.0086588;-1.5111535;-1.8212091;-1.0959815;2.5909386;-2.8364139;1.1194354;-1.2352357;-.3765159;.81372917;-.28557447;.65981019;-.22841932;-1.7040476;-2.7480013;-.50277895;1.4899729;-1.0229018;-.33673194;.82003689;-1.9833158;1.6654667;.83593303;.87454021;-2.7492926;.82952303;-.20089462;-.26729733;.78792745;-.73227549;1.5936854;-.45855832;1.704648;-.64106452;-2.1649764;-.89858478;-1.0452769;.32432789;.096394457;1.8841062;3.9847424;5.1453853;.88088238;1.2549409;2.7225456;-.042305473;1.184199;2.8435564;1.823004;3.1111548;-.96188039;1.5470089;2.1351058;-.82516652;2.2469587;3.6997931;3.3438222;.076503761;1.9691186;1.2664921;1.4968069;-1.3996751;2.1123478;.058696587;2.893697;5.0725341;3.7055457;2.6645837;-.65084016;5.9654174;1.7765458;.76584691;.54077369;-.2038735;.22256099;.68995762;.11579398;2.8703518;-.97369266;-1.562829;1.6316837;1.1612114;-.061307151;2.5591724;1.4926621;-1.8944824;.97116953;1.8954828;48.999588 +-.50441098;.89587528;-.83255988;-.65029389;.60479218;-1.9475303;-.014267527;.62001669;-1.0077028;-.60517418;-1.9742531;-.73063308;.28058594;-.17898665;1.8319315;.48383725;-.70062673;-.34556419;.084566139;1.2172282;-.68850219;1.3672994;.57067728;1.8493866;-1.2992102;-1.3061851;-.23562771;1.7916747;-.71615958;.35468951;.28490707;-.50267422;-.52733088;-2.1578088;-1.1972204;-.11444475;-.64502978;-1.584476;1.5810148;-1.506364;-.43805045;1.298767;.32620811;1.1238199;.55464536;.30267882;1.3299361;1.3626944;.39323169;-.29728737;.62615103;5.1905165;6.3942432;6.5035186;2.4130299;2.7727258;5.0822921;2.2613213;1.0843983;1.400052;5.7731395;2.8836057;3.1749923;2.1238391;3.6745713;2.158108;-.9935506;.53212261;1.9475582;2.4975677;1.3428879;-.36733773;7.0812211;3.3773162;.22641131;.82722092;5.4269876;6.6711931;5.9809103;-1.4089606;2.6400859;4.6838346;.88174975;4.1723599;2.6231134;2.53478;-2.1902556;1.6559453;1.5954247;.81842685;1.6719723;6.4408145;.21643285;3.2564676;1.5854905;-.55237883;3.4801879;-1.2617959;3.7348886;1.8372082;-.19531463;1.8238425;-.71269196;-1.6889287;.31116861;-1.2319344;-.28898144;1.4876058;.25537366;-1.6970735;-4.2517924;-.71230936;-.44862145;-.77792078;1.7147292;.24570328;-2.4343648;.14926443;-.88036013;-.06934379;-.92082423;1.1502979;-.78758866;1.8893954;-3.794245;1.5196072;-2.0073187;.54407245;-.31362244;-.50322157;1.7561024;-.78403622;-.9132877;-.92845607;-1.4636703;-.35689062;-.1554023;-1.2455317;1.8290268;.48787493;1.0889913;.53483921;-.68181717;.33002535;-.26455307;-1.9224707;-.061452407;1.057492;.87124354;-.75609571;.70026684;5.3469677;5.6623802;3.0916729;2.9609807;2.2713766;3.6714692;1.5678309;2.1597674;1.4186964;2.7785974;2.7505388;2.8410504;2.6887379;3.9401851;1.4247262;-1.097438;.18730299;1.6124713;3.5532918;1.5764246;1.3794397;5.6882639;2.9780927;-.16445027;.97483999;4.3992462;4.1838694;2.9804015;-2.3677256;3.6716669;5.1688213;.87935215;3.4537232;1.6121019;.13040982;-.081879534;.880557;.28581047;1.1480289;.58752745;4.2649598;.8715235;1.0659134;-.46132037;-.037680697;2.2504153;-4.6435895;1.5624927;-.15873842;59.531918 +-1.980505;.32188749;-.32238701;-2.3290784;-.072194189;-1.1852632;-.65889537;.69949943;.35131481;-.25255212;.9042058;-.35658199;-.15044884;-1.0059203;2.2847512;-.47995281;-2.3372395;-.26607934;-1.3611465;-1.890733;-.44605687;-.9111315;1.1335491;1.0341682;-.97953796;.13880706;-.8225705;.33983323;.94092613;.10180677;-.5054704;-1.4867638;.012760268;.19035308;-.73478132;-.41454953;-1.7159995;-.15460593;-1.1705602;-.64232397;.91484654;-1.013862;1.3626558;.95648825;.32422084;1.0775425;-.30074418;1.8866913;-.25553182;.3132526;.56134737;5.4754224;-.7666223;-.33455235;.70543987;2.3767891;1.9227744;.67292309;2.7908118;1.4637237;1.5378404;3.408505;3.3087039;2.0296609;3.7727942;.86721605;2.6678739;.26498291;2.2170844;1.9039954;.71441525;1.1060448;4.6186728;3.2870481;.56047505;1.4795541;-.76234764;-.28314358;.17837638;1.0214868;-1.480024;.46832466;-.29464588;1.6101191;.025555119;.83044034;2.6588271;-.89120388;2.82057;.8272199;1.7821141;.079055712;2.8541844;.19945499;5.2724752;.88335824;1.2609035;.13962723;2.3511438;2.946748;.5801394;-.11784709;-.37800071;-2.5571003;.2623806;-1.0423657;-.46367231;.73324865;1.7146136;.057527356;.40037823;-1.3021997;-.59384394;-.31100199;1.3827512;-1.228794;-2.3685246;-.0084684035;-.09032014;-.59219819;-.75203168;.40024251;.580118;-.87169373;-.22432424;.72351086;-.95104593;1.2014807;.66720462;.32044968;-.60715348;1.2847565;-.43565127;2.3602202;-1.7996063;-2.77175;-1.0787262;-1.5723211;-.5486511;-1.2810328;-.57978195;.60608757;.83357382;-.30904901;-.9828245;-.062910542;-2.5025632;.99570793;1.812048;-.052780084;-.73320001;4.9707837;-2.1178565;.3741146;1.8412529;1.4336759;.56252497;.094892383;2.5548809;.91634452;-.18560074;1.4766734;2.7651141;.97635484;3.0010252;1.2134293;1.9952605;1.2478288;.87728435;1.3896701;-.13178194;1.1587405;2.2950497;2.7925858;1.9668709;1.3517134;-1.9884709;.41588366;-.86342633;2.516973;-.17812209;.28487369;.69889778;1.2647574;.090771161;-.99345744;1.241907;-1.1145583;2.124737;.85150033;1.2280127;-.94699085;2.6093707;.53845698;2.6118579;-1.0174677;.35553679;-.4055132;3.2831426;.14151499;26.742895 +-.16114481;-.50155598;.90304381;.057007566;-1.0527141;1.2660148;-.27320486;.48161936;1.4861253;-1.0740395;-.15127485;-.9881292;1.442252;1.782765;-.73908615;.62712133;.11596113;-.17513593;1.2609866;-1.4481889;1.0154655;1.4893907;-1.1396455;.77578014;-1.5213546;-.3229008;-.25392786;.9158088;.13018522;-.22067197;-.3259044;1.5589861;.0049920836;-.35876474;-2.3191102;-1.3427247;-.33950624;-1.3226117;.62998319;.0916223;.40039986;-1.1842687;-1.3633242;-.021225844;-1.8030794;-.54788715;-1.4572743;-.74689955;-1.1306213;.2783013;4.0543585;2.0111525;-1.0261987;1.9143445;-.39947653;4.3861241;-3.0622814;-.40288249;1.9425749;3.9297233;5.9381366;2.2722626;.18041463;2.2872009;5.7425504;.79201901;.99125248;.39155212;2.0871263;5.9603071;.24015531;3.1579719;1.4689304;5.2924385;2.0238011;3.0343242;2.8465345;1.2199783;3.8798366;1.1554404;2.2438703;3.1890857;4.6493168;1.5608565;1.1924565;-.1405828;-.12757257;-1.1530102;.65459716;2.3965464;.75382125;2.1722105;.44267297;4.485651;-.61944449;2.26894;1.2094904;2.6204302;3.8433778;-.74720067;1.1361833;-1.0265316;-.091362238;-.73012525;.1486984;.34971389;.7526269;-.3822037;1.0053705;-2.7257962;-.05474852;-.73984486;.15555327;2.405268;-.047890209;1.2553331;.038725924;.86747402;2.7793996;-1.2378414;1.8770416;.27455211;-1.7031075;.9308579;-1.6624001;.83699858;.3246249;.16001989;2.1006353;-.082671806;1.6826276;2.4737501;-.3016063;.3283768;.29775831;.25895476;.27435702;1.0199116;-.61499095;-.44015113;.85765719;.45803696;1.3696709;-1.0261697;-.60226649;-.42250276;-.019286608;-.01969024;-1.0590818;1.0093062;4.0410957;-.60471523;-.17359212;.82660323;.24677922;1.5832535;-2.1840925;1.0167902;2.0745592;3.2796805;2.4970582;.277825;1.3335359;2.216579;3.2826023;1.4490488;.28049099;-.0064132144;2.5079684;5.3265042;.047757953;1.6225324;1.5943589;4.3898025;3.2423506;-.14646523;2.8988965;.76497442;2.305212;1.4205644;.84655696;.73978996;3.9071298;.30913574;2.5202172;-.92656857;1.0527185;-.090525031;-.90521407;-.40374127;.37328732;-.72577786;-1.6005878;3.9469554;-1.3391925;1.4688926;-.3253406;1.1432602;3.1225977;-2.0839019;43.429554 +-2.5048499;.69936079;-.29563254;-2.0589817;-1.3618835;.76629847;-.95568913;.48757213;.49252814;-.8284018;.81404096;-1.4291446;1.4856546;.087955862;.10339572;-.056365151;-1.8357584;-1.1232246;.37938365;1.4916966;-.030639645;.34454134;1.252685;.26718947;.34613004;.56465489;.098733015;-.67965096;-.84921509;1.4853088;-.74674749;.46992874;2.0100214;1.9460175;1.3362048;-.88996357;-.11952859;1.0432378;-2.1614761;1.7704659;.15956013;.38485491;-.13895303;.072402544;.65863627;2.2680333;-1.012951;.22323936;-.42819861;-.52276766;2.5218527;3.6696033;4.2908921;2.8756239;-.60776252;.90449351;-.60089922;.96527469;2.0667932;3.3403332;6.4494462;3.7383354;3.3032169;.85221016;3.1251211;1.6981196;.75842428;.36531827;1.0775654;.6844877;-1.4719379;-.25315267;2.8911462;1.998198;1.6992136;.23871341;3.5440016;5.2282891;4.8394575;5.5101538;2.5805144;3.3535025;3.3623354;1.4690959;1.7843599;2.8730309;3.3311515;1.8117601;.88000494;1.934635;-.84694654;5.319633;1.4653801;2.9805086;-.92526823;-1.0944031;5.2581077;3.1704054;2.8039656;-.80868959;-.51053524;-.4675819;-.55698603;-.59588772;-1.078933;.33426762;-.81819218;.40290883;-1.3003237;-.68817788;-.12031184;-3.4795303;.11776117;-1.4590822;.37736183;.89967608;-.84595376;.12441546;.99729621;1.2752354;1.0675771;.34660879;-.12076426;-1.1069094;1.5184608;.15364943;.60787982;-1.8411939;-.037242528;2.8141203;-.99563128;2.4574747;1.3184459;2.9890983;1.6873634;-1.2101091;.21769492;.71077597;-1.5075254;.86985767;.091506235;2.0625253;-.64757282;1.3532287;.36868688;1.1683161;-.60699028;1.1529484;-.50016952;1.4253808;1.039663;1.3707292;3.6415613;2.8557496;-1.0177541;-.53121585;-1.9827986;1.8708729;1.1088512;2.7810221;6.2507982;1.7272148;1.0528833;-.72772479;3.3347492;1.998848;1.3371663;-.43343619;.46578175;-1.0732565;-1.5685794;2.4492359;3.0141675;.70733982;-.46008664;2.235528;1.6059581;4.3081336;5.1269321;2.9298086;2.6663413;2.3214779;1.438441;2.0975063;2.0643439;2.9368966;2.4959037;2.2899873;-.50084585;.93427867;-1.0918787;4.3264828;.87929153;2.5969012;-1.1309525;-.87428147;3.3013811;1.6818963;2.8436913;.57169282;56.165146 +-1.1509746;1.4513636;.37182769;-.35897917;-1.3578963;.065529756;1.801317;1.7328144;-.19374545;.13249521;1.8861568;-.029901057;-.37005076;.51039374;-1.3981489;-.34022984;-1.0535734;.41169271;-.52064884;-.25919172;1.0239918;-1.0608311;-.2115939;-.16404849;-.84297621;-.47948554;-1.9407082;-.60313249;.12841842;1.1776979;1.2424388;.92722255;-.54162884;-.53701794;.74611175;-.57301849;-1.4860734;.042717092;.10398956;1.5225919;-1.2826661;.39843214;.8887465;-.19644901;-.50376993;.58759052;-.76541758;.18978086;.82377684;2.6636844;1.9743074;-.84099501;-.57143253;2.3590233;1.9408219;1.4677634;-1.2728168;4.267169;2.1364887;1.067152;2.8318129;.57685363;4.5477109;.95919281;1.7319428;-.89460337;.99061245;-2.2082245;2.6135828;.40875807;2.4302483;2.8395963;2.8143618;2.6289303;-1.1801841;-1.2389127;-2.9524522;5.4648423;-.034915864;1.3296026;-.68174601;1.111555;3.3630311;2.9997318;2.3609037;3.6872485;-1.4039526;5.398675;-.35013342;.75029629;3.10395;-2.5160825;2.9540606;2.8937795;1.3855031;.43276176;3.1434216;1.659083;1.7212648;.79493934;-1.7529788;1.6107047;-1.044946;-.23974533;-1.0746372;.21853276;1.9195158;1.501367;-.21499006;1.4484483;-.09472502;-.20715134;.34719437;.070315391;-.4401693;-.85232282;-1.4306302;.58144766;-1.8679036;-.3250559;.062966183;-3.2838843;-.056969233;1.6097779;-1.1454589;.17198324;-.92924362;-1.4393684;1.500403;1.4348669;.4745765;1.7498811;1.9351358;-1.7045363;2.1712427;-1.4743198;-.21388136;.48314741;-.3093704;1.6392115;-.82792008;-1.3008384;.6523971;-.26600227;-1.2963248;2.0003989;1.6357265;-.41188127;1.1724294;.83588672;-.20949122;-1.0427163;-.77765441;2.473491;2.871187;.85634381;-1.0456758;3.3381641;.8057822;1.6190788;-.27164462;.074223705;2.3882511;.083976112;1.8437001;-1.3962896;-.71951884;-1.15218;2.6914301;.096793778;1.1380603;3.9687686;3.9922013;3.3764622;-2.3596802;-.22901981;-3.208343;5.6536007;-.32760924;1.900443;1.6556501;1.5284853;1.8440244;2.5624447;1.8901579;2.3845503;-3.1283967;2.9648204;-.56322902;-.9940269;.67721349;-.89896268;2.5165267;2.3028255;-.78133863;1.1079696;1.9610561;1.8279512;1.9383883;.010011897;30.620644 +.6636045;-.66152471;.81452656;.77960944;.04661788;-.35257825;.58681977;-.76356167;1.863626;-1.3057125;.95500392;.40792459;-.38668233;-1.1650844;1.1593448;.96228135;-1.0502332;-1.6237588;.58461714;-.25825027;1.301695;-1.8338559;1.8136995;.55177587;-1.6118323;-.02121485;1.2227463;-.28676763;-1.5291853;-.57239163;-.14940642;.12424219;-.45106995;.044835676;.46121278;-.1107057;-.59635156;-.36503521;.68035477;.14243101;.88500649;-1.3081322;-1.2293296;-1.7982563;1.5343298;.17533547;-.4188183;-.6206736;-.80964428;-.41516998;.15732263;1.6817169;1.9823964;.067850627;.43320155;5.7727184;3.7561836;1.1301134;2.6107919;1.7045197;4.4557562;2.3321564;1.1864334;1.8734052;1.5321708;3.2221844;5.6609058;4.1698289;.28324178;4.9560022;5.2453504;.68850923;.93362123;2.3811488;4.8172255;2.8822393;-2.8463502;2.464695;4.317205;2.5594718;1.7060529;3.6324124;2.7896326;4.481226;4.2457366;-.65728778;3.7636836;1.6957942;4.129602;1.1073753;.18212438;5.0467062;2.1928463;2.5116262;.74982536;2.3855712;.94576406;1.0672166;3.4096513;3.6014714;1.005739;.3251541;-1.1117605;.35785598;-.72632217;-.77250105;.091681801;1.2774156;1.9534317;-1.4040892;1.0220205;.46309674;1.0412227;-1.9315835;-.23787214;.21431173;-.52407759;-.84407467;.10490037;-.82231081;.55176079;-1.969041;-.84516162;-1.4750147;-1.6609111;.28416994;.83035934;-.27634621;-.65091789;.92574555;.31016582;-.33529368;-.37757942;.62365049;1.4762567;-.55293232;-1.5617416;.93860596;1.3035946;.73697954;2.4053719;-1.2245337;-1.7043196;-.6135428;.34945744;-.43490946;-.89475393;-.28209031;-.70782399;-.13666339;-.19163284;2.7332025;.18922731;1.5621392;.47552004;6.6470623;2.5875564;1.5922407;2.1793299;4.1094098;3.0763035;1.1764647;-1.065084;-.1950985;.3174369;2.2261462;2.625814;4.4115834;.077665605;3.256923;3.5026803;1.5800645;1.8634644;2.1354535;3.9044592;.90037549;-1.0957072;.13693833;1.9788487;3.1127155;.73209041;2.2294974;3.8354323;2.0107567;3.5828466;.47916132;1.2376899;1.1260117;1.2406051;.071494401;.23907104;1.234756;1.3999869;.57828134;-.66804218;.37916309;2.1949325;1.0984576;2.1020689;3.9055269;56.420444 +-.02667331;-.77242583;.25822973;.68347031;.39423069;.35053;-1.4423809;-1.5184146;.25594604;.85039318;-.50979209;-.67976928;.92119366;.43436208;-1.4824399;-.3803187;-.08176963;-.78516835;.81969321;-1.012894;-.26117137;-.07970617;2.3944421;-.45900613;.34902307;1.1997119;-3.3426931;-1.4777749;.27292231;-.85913056;.18567064;.18729772;1.3521829;-.60210836;-.73009109;-.65297282;-1.3945588;.091603547;-.12653336;1.355983;-2.2759371;-.36378795;-.73576498;.13178751;-.8514818;-.91296542;1.1751722;-2.6168461;-.81324011;.61610103;5.2412472;1.5059476;1.9132069;.31257188;3.452457;1.8243039;3.5442345;6.4759803;2.6532004;.0053683287;4.5264106;1.4655616;2.6481936;3.7494452;3.9475074;-2.046077;1.9571465;3.2708304;3.2002268;3.7337646;1.4939131;1.5719512;3.7134821;3.0254829;3.7967083;2.5426536;2.8215322;3.9931314;.33103633;4.6335206;.58807558;4.8508673;6.3114462;1.5691265;-.93733257;2.8772933;.77515244;2.132211;1.9270648;3.8113387;2.1324725;1.5458548;.22386757;2.6400614;2.3897076;3.1342885;-2.3370972;-1.0127075;-.61525571;2.6856477;-.439239;-.5520528;.26916975;.54152566;1.2860148;-1.1819237;-1.533565;-2.0466633;.1321772;1.0088452;-.047509678;-3.7170157;-.76715046;1.885741;-.60030532;.051563535;-.18583983;-2.2688298;-.87260228;.47631061;-.047502633;-.31587762;2.3116775;1.6353757;.23955385;.48940232;-2.5765188;-2.138603;.27076763;-1.830709;-.72168535;1.0103304;2.7374287;-.71103686;-1.3045539;-.34496099;-1.1095155;-.62953603;-.695162;1.487497;-2.2847915;.44698939;-.27498934;1.2442462;-1.2371343;.11436702;1.4999502;-1.6666336;1.0759765;.52469653;3.9542789;-.027582498;3.5376124;-.78701472;2.7735367;2.4872217;2.4966464;3.6196361;1.9659187;1.0389524;4.2265272;-.53795451;.57910389;2.7593329;1.6252935;-.55130112;.89731234;3.5125797;2.619081;3.2124593;.92709631;-1.1760775;2.189419;-.15434495;3.6500564;1.5670637;2.5734932;3.3499393;-.074844956;2.8735163;.22471789;3.0490263;3.0314209;-.60281849;-2.0562859;3.3141677;-.48733377;1.5564557;.21479647;4.077229;2.0757444;-.29020083;-.35820168;.66381878;3.0486131;3.6915414;-.60318369;1.3638537;-.50307268;1.9278189;54.180294 +-.82466131;-.83508563;.90593565;-.85387802;-1.2144704;-2.1203761;2.1848295;.6958375;-.99351692;-.85153973;.12386819;.5295788;-.39672709;-1.1669891;-1.0556428;-.31019387;.3881664;.018496331;-.98984945;-1.8498349;.79121703;1.1464837;1.2464631;-1.1211861;-1.3104597;.12741323;.25052035;-.003671784;1.8927399;-1.5639935;.66034776;-.95378548;-.44687054;-.48200434;-.86854309;-.54945099;1.6547161;1.1091194;1.3392348;-.45407024;1.6707727;-1.3258047;.85724097;.42397308;1.2169354;.73561174;.18231164;.022295428;.29013959;-.041776411;2.9955893;3.9888573;-.067822024;2.9186058;-.22654159;1.9300499;2.2239113;5.3633618;.85565794;2.8369098;.15254691;3.0290325;2.7497118;1.191628;1.763381;3.2835863;3.5640233;.88262671;3.7465398;3.3383863;4.1355314;.35018492;1.8480312;5.3228693;5.7528386;2.5994623;.79639;-1.1131752;1.1381099;4.9292741;1.1580466;1.4462845;.075408712;-1.1252143;1.223114;1.3767481;2.6696227;.9645586;-.51190567;2.0482836;1.5026459;4.2509837;.11788125;.25519928;1.4901456;-.19551355;1.1936617;1.0554063;1.8019097;3.6716254;-2.1041851;-.29161263;-1.3698736;-1.2846562;-.55099094;-2.316824;1.0976558;-.88974476;-.65012527;.63363594;-2.645612;1.9408838;-.90179121;.56936634;-2.1971767;-.56537658;.11242033;-1.9745888;-.02099118;-2.2720046;-1.2192366;.14325722;.75918812;-.80844623;-1.8762428;.50484991;-1.2538549;-.079150498;2.4962134;-.91680288;.83926052;.23876967;-.9499172;.58582366;-.51963902;-1.8540325;1.218442;.96831375;.72055626;-1.0960765;1.02722;-2.0307245;2.1716738;.33563277;1.6841252;.65436041;1.4143624;.67499977;-1.9943746;-.085460566;1.8372951;2.3239226;-1.196123;1.3747401;.48480463;-.119037;1.9206473;4.2614861;.30440998;1.7677658;.052354313;2.417444;1.8842582;1.2185303;1.0755677;.27932385;3.3862224;-.072638609;2.9429865;1.7732525;2.7252107;-.92932266;1.2842402;3.9352553;2.8927274;.22133505;.16687264;-.30799055;.76218456;2.5663438;.60265744;.03972508;.16906931;-1.6990244;1.344949;-2.0086584;2.8915567;-.5651592;-.04308537;.79059964;.8830418;2.9331691;1.0362463;.053699579;2.2671831;-.32274565;.95299995;.59162104;1.6167293;2.6989818;43.85651 +-1.1632733;.0064513981;-.68917245;.40663055;.19125988;.87961245;-1.1626908;-.32303476;-.37004718;-.72468334;.10106277;-1.6047039;-.4854075;-.81125689;1.0211084;.79415756;.88738286;1.1355066;.58341032;.2752448;.99922156;1.6742626;-1.7127677;1.2251867;.43252555;-1.9967664;-.64418077;.065116011;-.36725661;1.3328638;.67886311;-1.7025292;.12796675;-1.4711912;-2.7302053;-.052069716;-.6689651;-.73596591;.10627087;-.19792368;.52646697;-.36651239;.260454;.55891305;.71155494;.14995091;-.49759808;.2080994;1.9180915;-1.1441811;3.3674836;3.3467541;1.6302911;4.2443428;.86438578;1.2149405;1.2756668;5.5922208;-.2193872;.31683046;1.4583179;-.73724443;-.81887519;1.6431738;-1.2167104;1.9887047;1.7884415;-2.6991611;7.681354;-1.2758658;.54873711;4.0844707;3.8948109;-1.061523;1.6059164;2.3855426;1.7588392;.70438904;1.1090457;2.378727;.83409101;1.8829575;.20125127;.89105523;2.3278913;2.1326351;3.7038426;4.4673352;.80145216;-1.8817599;1.3508441;-.10241728;4.0616817;.5938285;1.8579652;.72208261;.65054953;2.6723244;1.6596991;-.14916699;1.5723965;.90896374;-2.1346767;-.98481262;-.084187634;-.4973135;-.47293523;-.097791985;-3.0089118;.38845369;-.58109927;-1.2541854;-.99366432;-1.1297572;1.0211169;2.0276387;.10277098;.32506201;1.9741899;-.41795135;1.2104666;1.7263062;-.59752804;2.4114318;.69126922;-.76393819;-.3230446;-.58012307;.053931262;1.2820163;-1.187149;-.052731704;1.5050724;-.14332226;-1.8137926;-.9111231;-.056624245;.35877985;.70288414;.15312964;-.40383348;.86763;.43440279;.99443245;-.30627885;-1.1428052;1.0270079;.08405415;2.4919536;.26732108;.97737193;4.4092536;2.1307993;4.0198202;.429712;1.7517862;-1.1239814;3.187824;1.0297681;1.0086384;1.1516687;2.0555325;-1.601756;.93145496;-1.2922353;1.3994049;.95467097;-3.0040107;7.0889444;.032008883;.14391328;3.5916576;2.919687;-.93096226;1.0617332;2.5533252;1.8988063;-.35855031;2.548707;1.7060808;-.92763788;.32563075;-.043647334;-.28531048;2.4877284;1.4529097;2.1135583;2.7051167;.53645247;-1.5068165;1.0484544;.54159468;3.372345;-.045260757;1.9326365;-2.0111666;1.0387461;1.683362;2.7291281;-3.1214654;32.852943 +.90888888;-.10735241;-.0077799745;-.011104765;-.433669;2.0012841;-.59249675;-.59099543;-1.0181065;.83333856;.83158755;-.93468738;.3687222;-.7955901;.14856449;-.15794945;.12693822;-.21315955;-.33553401;-.19303824;1.514786;-.76169163;.68967372;-.40201312;-.89689291;-.80779201;-1.5976971;.09121915;-.13373484;-.91388226;-.10694688;-1.58135;-.4550533;-1.737891;1.2148597;-.19389708;-1.0990176;.21207592;1.4027294;.69561815;2.7537286;-1.6285989;-1.5670464;.48115346;1.1320148;-1.0432736;.69867557;-.023062102;-.85524333;-1.4575014;-.61315012;4.5215535;4.9001775;-.59892619;1.5362399;.39765868;-.8204658;3.2176208;3.3338208;.19069158;1.9638273;2.192559;2.1003282;1.9946975;.52811295;-.4791232;1.4086193;6.1756177;4.1457129;1.0067067;-1.3841585;2.4075191;3.2828603;.84661537;5.0713;1.7469229;.88862747;2.0059388;3.9020007;1.7898227;2.5489531;1.808574;2.0471036;4.281117;5.4475241;3.6703463;.52010101;2.3970222;.37475806;5.4726267;2.3591206;-.71352232;3.44135;1.3431796;1.0386621;4.7118192;2.7692676;1.8189831;5.961729;.79339486;2.4512708;.98761237;1.032675;-1.7224288;.78420246;.43502346;-.17883247;1.0754246;-1.2569444;.79106528;.27648374;-.64790523;2.1117415;-3.4616601;1.2210618;.7925179;-.12526289;1.1600032;-.00035464982;-.4964945;2.3024771;.98328513;.17540587;.90440059;-.25266495;-.89760357;-.99101102;.38232753;-.72509176;.10619082;.33543724;-.80365533;-1.5428088;-2.365911;2.9493866;1.0322489;-1.2041646;1.6746461;1.0955367;-.18844031;1.9857337;-1.6317241;-2.0568671;.97793722;-.42921242;-.10730885;.34709057;.80071878;-.89640194;-1.2237309;1.0744325;2.15118;4.7945776;.093691193;.94519162;1.98747;-1.6409642;2.6203635;3.0174961;1.5686789;-.044864971;.3876313;1.9888717;1.2063839;-.35361704;-.37208956;2.2074258;4.0844264;2.5655675;-.010519902;-.71916842;1.5267076;-.18047781;-1.4111947;3.0773497;.0224654;-.26026213;2.2178671;3.5155096;.78102779;1.4894371;-.5854376;1.8721098;2.1951692;3.0658183;2.6236091;.36298397;.50515646;-.0033233501;2.6593359;2.0812778;-.56003535;-.31032956;1.0974308;1.4201901;1.3291179;4.3302341;2.1539264;4.1963081;-.22569953;50.762733 +1.2257868;-1.0472069;-1.057958;-.17793556;1.4893442;-.58424824;.13521524;1.9051054;1.3423445;-.32172585;1.2465633;-.23302674;-.9335767;.052978419;1.4370577;-1.4796205;-2.0032167;1.1251823;-.26487991;-.19253239;-.45455319;-1.2457168;.011344081;.35875031;.022634139;-.12909156;.43919361;2.7751079;2.6881523;-2.0651219;-.60275877;.50784039;.66472983;-.86798447;-.037582349;.21508846;-.71715611;2.4505413;-.60411495;-.29791605;-.30823344;1.2847463;1.6683136;-1.7854993;-.77674633;-1.0132831;-.27564821;-.21241273;1.3542831;.2131914;3.3222384;3.719722;2.759367;3.5779462;-1.8923308;-1.1131759;-1.4919606;2.2969301;2.5562284;.41442373;.78621602;1.8557187;.76735938;1.7899915;1.4167807;4.2237935;-3.0794597;4.0838814;2.0161126;1.5404078;6.6132116;2.701735;2.3567932;1.7608149;.90032238;-.42588538;4.8234062;-.99191523;-.67119735;1.8831484;1.6803956;1.712845;4.9160805;1.7528491;.66353416;2.5339208;3.4708428;3.505821;1.7627383;2.8635726;1.0333338;1.7534976;4.0332971;3.7836189;2.5560915;.4065862;4.6711674;.80176032;-.68320578;5.0393357;1.5756396;-.25519729;-1.4565715;.8616665;1.7295533;-1.4631772;-.25170282;.078550987;1.4277749;.57599485;1.3982278;-.6386143;-2.5933621;1.1406293;1.8540429;-.77845132;-.059276994;-1.204131;.48205599;-.41401839;.60908848;-.11706951;-.43868992;1.1635936;-.64018023;1.2989736;-.014402229;2.1603098;2.1978436;-1.5178441;1.8793935;.77205461;1.8030002;.37729421;.27438587;-.58512032;-2.6115267;1.8085378;.043430846;.79398626;-.24181855;.66113549;.6133076;-3.0435445;.75113595;-.15030645;-.19539048;.010044552;.71058381;1.5182155;2.3357778;4.3735833;2.4493763;.52399641;-1.8532786;-2.544656;-1.8407079;.80399573;2.5434649;-.59446639;-.13793685;1.1211452;.14056873;.29222843;2.8550646;1.9860773;-2.4956329;3.3622231;.85986233;-.25691113;3.7458968;1.9733404;1.9479789;.99080849;1.4905535;2.4910154;3.5521405;-1.4339283;.66311771;1.4369349;.57324576;1.9170697;3.1401567;2.6863494;-1.7276087;2.0457001;2.9031575;2.0591233;1.1927643;.46711844;.10966384;2.5107136;2.8935361;2.237771;1.1224535;-1.2520595;3.0180852;.69752121;-2.1533818;2.9223754;47.25304 +-1.6233031;-.086668767;-.93411708;-2.5653088;-.37908921;.032470167;1.3408307;-1.9663714;.19109786;2.0706904;-.42718574;-1.3398851;1.531709;-.48094442;-.8862443;-.5810349;-.42020214;1.048919;.78569728;-.80339116;.26283932;1.339848;-.32777065;.27690279;-.124159;-.51744014;-1.7574631;.6325103;-1.1483968;-1.2516257;.38515353;-.46502277;1.3956754;-.78459227;.29589736;.90734309;.61116159;2.0402315;-.81302971;-1.3563938;.17445204;-.12014579;.082894064;-1.6181496;1.789934;.56074142;-1.8960524;1.8050686;-.34767392;1.0388684;1.5204868;3.7054551;4.8536649;.55003279;2.8635242;-1.2450222;-.75205553;1.1294223;-3.2438719;2.7764375;-3.3734622;.45998463;4.140841;-.27666041;3.4121351;-.14891492;1.1115276;2.3351359;3.2446368;-.72745961;1.9750098;2.025743;4.0496068;.69317323;1.70471;3.6663122;2.4081464;-2.5177767;2.7037001;2.1864021;1.1888531;4.1587057;4.1344585;-.1447154;-.14709426;2.2647705;1.893338;2.339318;5.3410439;2.4688923;4.2291412;-.66979462;-.35582447;6.0061255;-.21023922;3.2286136;4.3188167;2.4198368;1.7822537;-.60583627;-2.6077447;2.1655452;.65253502;-2.1020906;-1.8953718;.41880336;-.02957903;-1.094908;1.0494233;3.8128357;-.25408599;-.094859734;.84010518;-.82026184;.92766339;.23174891;-.83191425;.38432869;.79364055;-1.0913849;-.67663348;2.2497504;1.1618228;.61689329;1.9797034;1.8975325;-.34379715;1.2067071;1.1325839;-.35192317;-.40367836;.065204389;1.0173544;-1.3157274;.59296232;-.73589879;-1.0984166;-.74147195;-.014070533;-2.5928607;.28066736;-.0604105;.86196917;-1.6207955;1.4488935;-.60479486;-.46291605;2.4345043;.10272062;-.35264269;.097693823;1.4504689;3.667387;.0087759988;1.7088182;.1580748;-.53781801;-.29209283;-3.6640534;2.0039129;-2.8145504;-.043605153;2.1183405;-1.2505256;1.6284219;-1.4784482;-.096576355;2.3175526;-.24927264;.82458168;1.7077038;.60244364;4.2097526;1.6413571;.8382411;3.2780154;1.9400622;-2.2069089;1.8528289;2.6139529;.64615458;2.0531714;3.4513984;-.22998047;-1.0841825;2.1055927;.55944133;2.4053044;2.9761534;3.3983023;2.5561883;-.77836764;-.80200738;1.9679132;-.14568222;3.0286274;2.7361434;2.3091514;.57630706;.27707219;46.593807 +.0047574048;-.49960244;-.68671876;1.1900082;.30086979;.92111742;1.5487969;2.0438659;1.0372653;-.039043698;-.73834378;.64871085;1.0555406;3.4897015;.55359823;-.59492308;-.76200134;-.4523204;-.6587671;-1.3913065;-1.5433596;-.96829343;-.029042818;-.76071197;-.15549022;.59742248;-.88717371;1.0126718;-.25503051;.17125423;-.31754807;.13011676;.01453897;-.067226909;-.34779048;-1.2371639;1.7517316;-1.5814489;-.47359404;-.071740389;.11964425;.24211648;-.669007;-.49246392;.26546749;.38763946;-.02910205;-.33318204;1.0031471;.040293995;5.0386529;.86016917;1.7270083;2.0943737;3.9842472;1.7845323;2.3013937;2.8563905;3.3367732;3.2814405;1.8865774;-1.8359783;5.0175333;.3604846;1.6932765;-.46113709;2.8540134;5.0593171;3.0574367;9.4957714;5.4421902;4.3172169;4.6278114;1.3169228;3.3418307;5.7918534;-2.887645;-.13419481;4.1368184;2.7221057;3.6509736;3.5267575;2.7766664;3.2822328;3.0743821;1.4431593;-.49286848;.56638902;1.996026;3.492445;3.922765;1.6382167;3.2185431;3.5704803;-.84784889;-1.7386324;.25672677;.59167117;2.3446465;-.85105222;-.12862065;-1.461629;-3.0019977;-.069173977;1.0313462;2.5970924;1.9116956;2.6222999;.14349146;-.68672425;-1.445955;-1.5233947;.26811975;2.9633849;-.10337671;-.011674477;-.20605183;-.46991956;-.9502297;-1.4715871;-2.4959745;-2.2681386;.36543277;1.340505;-1.3784574;1.5965538;-1.617435;.9267574;-1.2953315;1.2954694;.2270325;-.22783928;-1.5567489;.30277625;-.39505962;-.38120636;1.2513208;-2.259222;-.68725723;-.31398508;2.8183634;-1.3971537;-.38780734;-.97162157;-.90452152;.61038333;.49516699;-.28827316;-.23275436;-.2235567;2.4756131;1.3412106;1.8940911;.84966975;3.1483138;-.019863322;.60196757;1.9265603;2.7911592;2.0139124;-.12547454;-2.1188085;4.857954;-.54210472;2.8107784;.77021992;2.3305364;3.3118031;.15129355;5.6828918;6.1408224;3.9542923;2.1200466;1.5299069;.49546492;4.745399;-1.5622786;.46469247;4.6294236;1.7771695;4.3155222;3.9924676;2.4586785;1.8123271;.82952338;1.8044237;.053597409;.11682726;2.9959569;4.6205654;3.5250506;.67740458;1.3361804;1.9300882;-.46354976;-1.5170736;-1.8314201;-.81101429;1.831807;-2.1206212;55.823845 +-1.2293197;-1.7448016;-1.7607396;.78477323;2.1718354;.97123069;.64732033;-.87298727;-.57639992;-.71292913;-.26430202;1.5567307;-.33176151;.2524744;-1.0904411;.38660067;.43385199;2.1676664;.98725438;1.9008048;.88613069;1.995634;-.53414762;1.1250259;-.59812903;-.78266662;-.84278953;-1.6035215;1.2218996;.20047465;-.96474552;.69926131;-.36803719;.098160475;.65868992;.55136174;-1.8605672;-.43666276;.38338372;2.0804539;-.75002748;-.1037492;-1.1405293;-.2120882;-.051799625;.041900314;-1.3910483;-.99683797;.8269155;-1.3389964;1.012759;-.32766846;1.5329796;4.4118128;3.8958027;4.3014727;3.500299;.48149666;1.7192833;2.3647711;2.2357385;-1.0417541;1.0465962;4.0653057;.64124948;2.7111902;1.8825586;3.7877386;2.4800534;.15964545;2.6124005;4.8111315;4.5984402;-1.3819407;-.43791288;2.5240092;1.8799682;2.5383019;-.6682027;.685862;4.3671923;3.9103;-3.5025418;1.7217369;2.1515265;-1.2974524;4.195569;3.275553;-.054389428;4.5131469;6.460753;2.204092;.77309948;.78921276;2.5131385;.84223694;2.1552825;2.9880548;3.025543;3.4252937;-1.8776052;.26130083;-1.5808462;.35148299;3.9108431;-.51047271;.4276267;-.41502562;-.0058336542;-.26045054;-.46157366;1.8390807;-1.5871509;-.91968656;-2.2197666;-.57306057;-.39668438;2.2877483;.6851334;-.65852356;-.92888695;1.8317578;-.50565058;2.5313754;-1.1402142;-.58542037;-1.2755767;-1.4248633;2.3844986;-.63754386;-.6613043;.76260865;-.69151467;1.2535993;2.4843318;.80169314;-.77692318;.2656481;2.1139617;1.0177155;-.36750329;.64231277;-1.0404587;-1.768784;1.2829212;-.49746901;.40063828;.34111363;1.316715;-.39619717;-.52719635;1.4697118;-.14923407;4.8197331;1.5317632;2.9522507;.11534459;1.3149332;.42509362;2.3450344;.92271906;-1.1359655;.78872132;1.5682217;.6440317;1.0935984;.43842584;2.0483429;2.9140167;1.0631223;2.4142206;1.9974325;4.2554173;-.78982699;-2.2595215;1.8560156;.67118514;2.6185932;.39874989;1.6740377;3.7036035;2.1695721;-.27027217;.24620123;2.4321618;-1.4950114;1.9490054;-.030378252;-.83444846;3.9639103;4.2164593;.91879475;.52119774;.32248026;2.3358629;.7090801;.79739439;3.3154795;2.0587726;1.563396;42.835991 +.10920634;.81284553;-.51583123;-1.4065036;-.29516408;-.30104673;-.037325524;-2.3450289;-.67231631;-1.4443468;-.095033266;.70733029;-.97648066;-1.4000958;-2.6790936;-.45806023;-1.1513913;-.14986536;.15840781;.93145031;-1.2125465;.8537913;.45476222;.0063990005;-1.8230032;.22666535;-1.0613141;-1.0442536;1.143366;-3.8567514;.42374751;-.90495688;.79160964;.031536736;-.22236583;-.096503757;-1.175253;-.42863879;-1.6079502;.83569801;1.5640888;-1.5927237;-.42522597;.080441698;-.17555797;-.24791309;.57818913;1.7234329;.091156594;1.0098853;-.13810582;.66433597;4.1475983;3.9560363;2.7145596;1.4506674;-3.3690195;1.6431348;1.8820102;-.090925977;3.9902873;1.0829406;5.2438927;-.089864403;3.1885531;-3.917408;.09719298;.97641325;3.5943041;2.2840493;2.7358747;-1.4159211;1.1944981;1.5786577;1.5659478;1.6070606;2.6063125;1.3028685;.59136164;3.7725441;1.3945615;3.9575815;3.7497511;2.0594752;3.5630355;3.2649119;1.5161622;1.8808806;1.1020399;.14219551;3.1797955;2.0251181;3.9452155;5.088038;.27825063;-.094685115;2.7340178;5.8668551;2.1508625;2.1036246;-1.3326811;-.19231901;-.45500267;-1.154934;-1.4817998;-.63981909;1.2054253;.66599995;-.60549963;-2.4807613;-.1334454;.42092562;.028582731;-1.1083149;-1.1520741;.79867733;-1.2479707;-1.6317885;.22605367;.70171797;-.037473235;.31379715;-.63789272;-.17302741;-1.3752593;-.93621254;-.29726768;-2.3895948;.84938294;-2.4762864;-.18903702;-.90446931;2.2195497;1.5905509;1.6914978;.49069852;2.1836638;-1.4810592;.014297838;.71496475;1.8583418;-1.1869293;1.0350097;.07026007;1.846155;2.28157;-1.0335838;-1.3531528;.43222246;.1032941;-1.7675079;1.9067376;4.9091702;1.1112537;1.1590469;.37536135;-3.6511238;1.6018691;2.825726;-.54508281;2.7204626;.37814116;4.4401913;1.1746175;4.6771116;-2.3066285;.2472772;.13025522;3.6520746;4.0651531;3.2042696;-.28937238;1.2948523;.78055096;-.73132986;1.5796707;1.2668737;1.4984726;-1.0232594;2.1842413;1.7170547;2.3958607;1.82613;.71900225;1.5648168;2.2514615;.99895388;2.684622;.48886395;1.1194305;1.4682744;.61091769;2.686959;4.7478704;.63434005;-.19706847;.69457138;5.1330881;.72724879;2.896301;38.519794 +-.096097402;-1.1013016;-.22886597;.92269492;-1.755199;-1.2800817;1.5894105;-.58319962;.71542233;-.25473991;1.3199786;-.82125354;1.2508553;.54460335;-1.0626261;1.484153;1.6061947;.75877374;-1.5045203;.67055285;.65735489;-.86053592;1.2857525;-1.7609074;.42625335;1.6845767;1.3957205;1.0421158;1.6493714;.33039641;.82981145;-.64577943;-1.2165114;-.32326791;.092676803;2.418956;.2041945;-.44522369;.26643011;.15726264;1.0419136;.7131322;.51064491;-1.0820735;-.46643049;-.076496057;.18484278;.1018056;1.548126;-.8286432;2.2882679;4.5210757;1.1204616;2.8333001;.28682962;1.3073974;5.1567035;-1.5726298;.63484222;1.9280685;-1.6033224;1.1631089;-.57618725;4.8501091;-2.5821536;-.25158703;2.4773743;-1.3381032;.27088645;.10130475;2.7628539;1.0213116;3.4037833;5.9304881;2.0845606;2.5153348;.46989828;2.5974629;-1.2843614;.41879979;2.0200162;1.5181055;-.71208513;2.2762389;1.1387793;.84732437;3.9853513;1.5429485;1.7927588;4.3657961;1.5985709;.90952349;3.9742694;2.4112692;.82599914;.8409186;3.5796361;.29525548;4.2443571;-1.308771;.52554071;.046084903;.27893239;1.0868421;-1.1303471;-2.3096769;1.4804826;-1.2931389;.31189328;-.61179656;-.77765733;.1580746;1.7119253;1.0968695;-.03341553;-1.0416477;.36376801;.68953925;-2.5516465;.03434819;.83460921;.79959178;.1395445;-1.3199215;-.84052956;-.15032108;.52989399;-.77765018;2.1085541;.37557071;1.4403955;-.3696495;-.55107582;-.17090249;.58311731;.77163255;-.069251925;-.70768613;.36937124;.74488294;3.0408816;2.0700209;.73527205;-.40409866;.48665369;.21968113;.26078081;.47181433;.9160623;-.94409204;.7933718;2.4339716;.42932454;2.1267178;.31716445;2.3729064;2.3303149;.44192412;.61520338;.18763287;-.0092932228;2.0265005;-.89847082;3.2743089;-2.3396709;.13325071;2.0024102;-1.0857278;.38735825;-.037871867;2.3934851;.9119854;2.5571778;2.2609041;.99486184;1.8520868;.70283335;1.8923939;-1.1617012;1.4534153;.47950172;1.7297614;-.43958712;1.3781708;-.11793496;-.46360373;3.1596768;.78068882;1.2602199;2.960736;.70914119;.25569043;2.6932869;.88114446;1.6766348;.35957634;1.9475211;.031865191;2.2609427;-.93630838;39.15646 +-.61181879;-1.5410428;-.21085712;.3066844;-.64171243;-.59629565;-1.2188497;.52291518;-.4558717;-.21205953;.55733669;1.1076987;-1.2411153;-.027252203;-.78356016;1.3884957;.8216688;-.51564217;1.1853201;-.31405497;2.3996224;1.9355356;-.96840304;-1.3634218;1.7227902;.23354316;-2.2898035;.89006472;1.3585845;1.9206793;.023804257;.38411212;.22198667;1.6270977;-.53512704;-2.0625105;.73455441;-1.6635139;.53983766;-1.3415642;-.92170244;.66310525;-.92216808;1.0263081;2.1893303;1.0569621;-.31909794;-2.1769733;-.8670001;.30644831;-.3440358;2.0298078;4.3956952;3.6189361;1.0269717;-1.5683448;2.9126558;.5966512;2.4723217;4.1171322;2.2628951;1.7748263;-.8653273;2.8705211;-.00025981708;-.13631411;2.4633071;.99074757;2.360945;2.6968935;2.5997441;.88183635;5.3786497;1.9820024;-.19056641;.41213578;6.2378292;1.0464319;1.4650831;-1.4807303;.1904076;-1.4700061;5.4295397;.90910369;-2.6026487;5.2717404;2.3040428;-1.8003476;1.2096385;.27934307;3.1175513;2.9870181;2.9805942;2.0386848;-1.5033324;2.6470914;5.1902223;1.8752174;.471001;1.7198457;-.18905586;-1.5609921;.83492798;.75845623;-.11560414;-.78854501;.67089725;.21762484;-1.5588124;1.0259309;.6230799;.2581346;-1.9237771;-.8084814;-.1003948;2.3587208;-.60154355;.38701761;.40879875;1.2377883;.81744307;2.451508;-.13644664;.070275038;2.0011888;.085406937;-1.5161026;.36801669;1.9047492;2.5666239;.01781635;-.17940828;-.97363865;1.0349815;-1.2649513;-1.5048307;1.7457989;-1.5909587;-2.8225117;.72213632;-.67399102;.14025071;.48600018;-.37860727;1.5194906;1.3388357;1.179595;-.89599305;-1.5688601;.80378425;-.11796971;2.5150702;4.1664553;1.6022161;1.3845053;-1.1703671;3.0195255;1.1038404;1.6511869;4.1882534;1.0065308;.70712841;-1.5804658;3.3466606;-2.3847947;.22826394;.98244703;-.34068367;1.2248782;2.5981677;1.3455586;.21854085;5.2296553;2.3741541;-1.3334967;-.91436428;3.6247976;1.9882846;-.48611027;-.95236474;1.9181306;-2.2069287;3.5763102;1.3788697;-1.7962402;3.5126059;3.2199426;-1.3475887;.067379683;1.0927129;1.144828;2.857053;3.0041406;3.5360746;-3.0265348;1.3625985;3.8795917;2.1244857;-.38835466;1.7585177;49.284637 +-2.1588852;.39566901;.70706779;-1.7926724;.64177871;-.93292987;.15778731;1.8540798;-1.3936247;-.62370425;.22562124;.98695773;.40313229;.71812463;.38932052;-.006202843;-1.3737595;-.054551035;-.11980094;1.0819558;.57658052;.39758378;.99953425;1.0785418;1.8825699;1.5660577;-.52642941;-1.3281665;-.81790382;-.16274641;.3312391;.46213785;-.45685789;-.32280359;-.10330554;-.18144235;.32810688;-1.8361218;.15793286;-1.3193099;-.80299032;-1.6495883;.77689266;-1.0116782;-.34170908;.64141208;.29955015;-1.6027703;.81873596;.87451136;-.6038332;-.12709606;-.99117714;-.33627373;4.1827207;6.7655363;-.99643087;6.5027194;3.0525682;6.4398031;1.606566;5.457253;.64831549;4.16856;.28768766;.072455958;1.7521018;1.9768963;1.9980298;3.6158426;.67998725;.62744802;4.2990489;-1.4603183;.37195596;2.8341694;-1.675032;4.1689429;4.1300898;3.3872609;.97638726;.92386228;5.4221582;-.97159868;3.212539;1.5851662;.72013843;3.4704394;1.6714137;-1.5281841;3.6351471;3.0660732;1.5312454;2.173969;2.2787938;3.6188002;1.0374305;3.0509796;2.489351;1.9540921;-2.1994817;-.33985883;-.6705777;-1.0304313;.94214994;-1.4050666;-.25798327;3.2492907;-.90226042;.7617048;-1.4516777;1.2268965;-.55543411;.22932641;-1.5507818;.068815105;.50243759;.36529836;2.0485477;1.6310965;-.016771974;-.66032445;.80925977;.77429891;1.2088205;1.1052251;.11837009;-1.8396254;-.14879623;.86376041;-.22165775;.18760183;-1.7147585;-1.4169759;.097158231;-.020910429;.30327594;-2.5961795;.36586612;-2.5104587;-.73575646;-1.5423285;.19229992;-1.0427102;-.38150263;-1.0981019;.23723851;.49646232;2.1737585;1.0007181;-2.0687535;.23236294;.32639226;-1.4793335;2.4991159;6.0317569;-1.7942971;4.3463678;2.0006063;3.5008948;.90018988;5.0352044;.31026289;2.607245;.80798203;1.3062829;.08514715;-.51932889;2.3372912;1.6150295;-1.7163649;2.2552452;3.7737937;-.82382143;.54777724;.83279151;-2.5582006;1.7162672;2.2894032;1.8531891;-.37051913;1.183217;4.2619357;-.52220625;1.2757424;.035636164;-1.34342;2.8519034;1.0080545;-2.4017255;2.719779;1.8209038;2.2654262;.92342997;2.8180335;4.1076746;-.84179038;3.999603;2.158632;1.9178896;50.855114 +.1350694;.29063839;.75657934;.61467946;-.38626915;-.64953172;.76627368;.68805778;1.9552621;.98407024;.68544954;.096849211;.64604455;.74284327;2.0799484;-2.14485;.51088065;1.7481186;.44840384;-.94245702;-2.0420024;-.10093771;.65067083;1.0822386;1.9947553;1.072095;.15345566;-.16329494;-1.164349;.40113428;.99070245;-1.170879;.90806949;-.48090944;.89754272;-.68561727;-.21883753;.32495236;.51114571;-.26803175;.95592904;-2.4918864;-.63107878;-.43751228;.016230335;-.35272843;1.0637642;-1.4948993;.65334475;.46091273;1.2287602;6.5215063;4.5078211;1.2348368;-.029572571;.70838851;.077172719;4.8930511;2.1546435;.21016304;4.5492377;5.7686696;1.6662997;2.8697207;.2417728;.88735712;4.6485176;.38295445;1.5222281;3.9380238;2.8995788;2.411593;1.7553859;-.30907357;3.4975052;3.032527;.14778143;1.6750348;.42146504;-.14555986;.37434936;2.7181573;1.9073035;1.5172789;.03307255;1.2501186;1.4214205;2.0628638;1.9944774;-.40488115;.22234222;1.0513917;-.16131915;6.4864473;-1.5695406;.65052646;3.1833572;.0096553098;3.2148151;4.644558;-.60678375;.073273554;1.0226762;.84407502;-.57811105;-.77158171;-.55404174;-.30797762;2.7051249;2.0906508;1.9186089;.72640884;-.044495769;.43925688;2.4897878;-2.5286572;-.39631924;-.32507414;-.35825175;-1.0989941;-.52007508;-.71625769;.2360933;1.3914973;.68189061;.95285082;-1.6698929;-.46570313;.33557662;-.14143634;.59741306;-2.1704624;1.9076995;-.060854074;2.0832121;-.9374395;-.34630117;-.70505399;2.3258717;-.064308368;2.7057621;-1.3321671;-.41486809;1.1870573;2.0419939;-1.0981377;-.29397184;-.73105067;1.4390939;1.387248;.71153748;4.3794446;6.6589231;2.932364;.76648515;1.0835785;.87509316;1.8812028;2.3716493;1.3167018;3.0565605;3.7630088;1.3422263;1.8076142;.23480999;1.4802585;2.8238025;1.0067744;1.8302547;1.2293731;3.8679426;1.6661764;2.827141;.684062;1.1981239;2.0265582;-.8221103;2.0808082;.21515143;.36530104;-.22493787;2.7495823;1.0710884;1.969523;.39987221;-.83497065;.28116363;.76768798;1.7598283;-.46419021;-2.2507956;1.4738393;.11094175;4.0931191;-.57571959;-.74675119;2.8824954;.49748674;3.6534867;3.5905328;57.268612 +1.8652558;1.4907885;-.85457253;.11384554;-.14411668;-1.7223256;.26050025;.3315194;.78068841;-1.0635443;-.586923;.46811718;-2.3844073;-.50481266;.65894735;-.43260187;1.3067223;1.5004462;1.0774424;1.2626735;.19388822;.61755705;.52520019;.50452626;.14644742;.50926864;1.0070419;.65592474;.61879337;-.74882889;-1.016336;1.302253;-.91106021;3.1021054;.084194303;.6994856;-.2396986;-.86777103;2.0847473;.20118526;-.85606158;1.1444584;.93587828;.87881935;.62775344;-2.3500028;.22562246;-1.371011;-1.5106707;-.059229579;-.17055686;3.8659399;-.19894604;-1.5307412;2.0989978;.74337357;4.1789145;2.9209638;3.9349263;1.2650268;4.3981357;.39071593;.58668154;3.1987631;1.0054858;1.0173392;1.9657986;3.034672;-.44058517;3.3538785;5.3436127;3.6870174;1.2189568;3.1494825;.37014532;1.401266;4.8488545;-.98986995;2.5954273;-1.8770914;2.579196;.90672392;2.5664392;3.4830034;5.937294;1.8984982;1.8414601;2.129312;2.5374947;2.4141951;6.5918875;3.9287794;1.5206208;.59203511;.016200216;.83430231;1.729229;5.2936029;-.7895146;-.59417039;-.17298065;1.119014;1.734717;1.2141706;1.3117367;-.28161177;-.095187038;.26940936;-1.0696459;-.45211798;-.37157252;1.6859623;-1.9656482;-1.1953162;-.48627239;.16873956;.69825852;1.9438268;2.2748802;-.46072146;.42282131;-1.1460881;-.12561436;1.5244274;.48840129;.82980978;1.7198895;1.8498992;-1.6820757;-1.8861103;.80618143;2.2273717;-1.3757823;3.5174229;.11001478;.87729442;.44571853;-.8111071;2.205915;.32262069;-3.0510421;-1.0415986;1.2837424;1.7343531;.73617649;-2.014719;-.22158223;.98715961;-.33782628;-1.2332575;.95347553;2.8142245;.23347269;-1.476943;.94392306;-.21501915;2.7457275;2.7296829;2.6810305;1.7036486;3.2820809;.52375895;1.2051316;.67853171;.85399014;-1.0730249;1.6275038;2.1760192;.69781739;4.5797563;4.9471297;2.4387696;.90411508;1.7089919;1.7256769;1.2786173;5.5664978;-.3152765;2.3778443;-.82055527;3.1368988;.43668532;1.7414768;3.3505762;6.3155365;.2804465;.87144196;3.6871312;2.0148246;1.2713444;4.9462829;3.3712296;.18978822;.65008855;-1.6312102;1.1131203;1.5106534;3.9855764;-.72058207;-1.8121431;58.781227 +-2.4737179;-.42386144;-.60282648;-.59667099;-1.6602976;-.14409858;1.485141;-.4075036;.65137005;.22115439;.42799801;-.075226396;-.048629612;-.9477995;1.8574955;.66743106;1.2498562;.98694038;-1.3539898;1.3927592;.33114859;1.948125;-.23223922;-1.3121862;.27427396;-.6555863;.029124977;-.44202346;-1.5554099;-.4253366;.14030026;-1.5661924;-.45008874;1.6209077;-.35396734;.46685392;-.29362643;.39506543;-.8237161;-.46881694;-.17176017;-.50581908;-.42351615;-.00060553849;.13667247;-.5370968;-2.5607543;1.6141601;-.05186053;-3.1494584;3.2149415;6.61134;2.9439528;1.9428591;2.9777822;.98883462;3.395268;3.7534177;4.833251;4.2039456;1.8657049;-.82160777;-.634628;1.0291805;.92602175;5.2069221;4.0562038;2.5647192;.4937624;1.471795;.98197973;.94867498;2.4171841;3.4755433;-1.4053512;2.8881996;1.5144241;.87069136;1.9745144;3.1473119;1.4145889;2.6117423;2.4809086;-.33629775;3.3010948;1.4738699;3.1084015;1.0962374;4.0309224;4.4942179;2.249665;5.6450176;2.1452906;1.0625769;1.4673543;2.8303714;3.3574021;2.2763498;1.7455987;4.3210201;-2.5028577;-.1414084;-.48327035;.28604385;-1.9782929;-.018115321;1.6340721;.95432538;1.7322059;.34582776;.086150795;-1.0070674;.086237952;-.40919396;2.994427;-.30124557;.60648918;.38411957;-.4183144;.022872861;-.84050882;-.61410081;-.53130424;.86275953;-2.1743121;-.62987703;-2.6828051;-.48223513;-2.418448;-2.2714832;.56676739;-.14068137;.48924446;1.1431775;-.21880488;-.081973776;-1.0332105;-.46639147;1.8554178;-2.4566896;-1.5723131;.19733006;-.24564934;-.50447547;1.6654179;.75539815;-3.9559488;1.0517534;-.62326229;-2.4456687;2.3291645;5.4196053;2.4317646;1.1527979;1.6641748;.85078341;3.9532733;2.2667229;4.1550269;4.2710395;.47038177;-1.4177159;-.61126179;1.9385577;-.095898412;4.956666;2.8184748;3.0560279;-.29140088;.71503359;1.5976145;-1.4714411;2.4820676;2.9092176;.40718576;1.8790666;2.1452489;-.53550279;1.2509398;2.0400817;.037243616;2.3109732;2.6220341;.03540574;2.5541823;.45420083;2.6396952;1.5060352;2.4064536;3.1779349;2.3667991;4.0475492;2.7027817;1.0703936;2.9678733;.95326972;1.889194;-.18305616;-.32909974;2.8084323;53.10054 +-1.1034951;1.4564371;-1.619073;.18030713;-1.0189517;-1.0910583;.10888244;-1.133394;-.90703613;1.0428224;-.036937539;.59928906;-.26965103;-.56770527;.50354183;.24828047;-.25618425;-.16249239;1.4170518;.4184683;-.34015808;.99711341;-.38714504;1.5442045;2.4886861;.28524947;-.9648903;.60651344;1.4166152;.15659462;.67871064;-1.777537;-.96467781;-1.4608443;1.3087246;-.81988657;.89761055;-.25130844;-.22638623;.35768908;-.77193058;-.011073143;.15551375;1.1709607;2.3833117;-.096239209;1.0999199;.38396066;-.38472301;-.11984179;4.7652378;.59380066;3.4947903;3.9207287;-.88781077;.61321151;1.8293158;.67820477;.95795178;5.175704;.80480015;2.2961712;3.330014;1.5726079;6.5040436;3.0239046;2.3570642;4.8945398;5.5101323;1.4190133;5.3436222;3.3413978;.67129958;5.0011086;1.3560506;2.9777234;.70796716;-4.3841619;3.5074961;4.101398;1.9548711;5.8024731;-.9663735;2.2726202;.83813506;2.2406602;1.7296562;5.1536331;1.9692731;1.9704962;2.6295457;1.8460261;6.0225186;2.3251884;3.0982122;4.8554091;1.9340611;1.4778799;6.041739;1.7535098;-.19393049;1.3669027;.87215197;-.53230554;-.97698814;-.1504138;1.8106891;-.016926993;-.54832673;-1.4497157;1.7704312;1.1185831;1.3860317;-.95404613;1.108934;.64053982;.41463161;-1.067215;1.7132255;-.22171518;-1.3469101;.02892725;1.1414403;.63249409;2.1540375;1.1111357;-.73939764;1.0255151;.76229852;3.39342;1.671283;-1.0696998;-.73097295;-.46698031;-.73476923;.78578919;-1.3811744;.699772;-1.1036574;.2956503;-1.6162472;-1.5925301;.049158614;-1.3707366;1.4321469;-1.1300368;2.5888612;1.966473;-.76533669;.76336062;4.1600194;.96750546;2.4628072;1.3796744;-1.2242874;-1.4225557;1.4287416;1.1069639;1.9920838;2.2900288;.88124317;.32424822;2.2550046;1.1062391;3.4306099;2.319001;1.2818716;4.0110455;2.8002787;1.1764473;2.3963451;1.9899883;2.5815771;5.1644092;.7475276;.83498061;.085071199;-3.1463449;2.4329405;3.4618835;1.7515408;3.7713134;-.79347587;4.9749327;1.1778715;4.5524926;1.0086588;4.398272;.29092893;.35858274;2.7998528;2.4988883;4.9634752;.63976187;4.5626702;3.2593272;-.23047818;1.1144722;2.1557498;.46186563;75.284912 +.73454398;-2.0361209;.28614125;1.095837;-1.2782794;1.3691895;1.3156126;-1.0214074;.34844589;-.47972471;-.28709465;.12340084;1.6387078;-.95519483;.77061105;-.16824862;-1.1239644;3.4216354;1.1640331;-.14433005;.66615552;-.12817712;.73287433;-.86780274;-.23304875;-.9877674;1.7239923;.79301667;-.74234009;.58179462;1.1059018;-.36415318;-.28476691;-.72433984;-1.3954704;-.75863659;.84563637;1.0957971;-.35082465;.052248023;.44110465;-.26120248;.6459766;-1.4594244;-.55531383;-.80882227;-.40273532;.78463763;.081915148;-.51459634;.94485897;-.14145862;3.5259776;3.3643358;2.3862209;-.31807953;-.15212503;3.3925326;3.6431351;3.0777183;-.3672736;3.5465572;1.5950081;6.6711717;5.1600356;-.7448377;1.9536264;1.6795785;2.7295363;2.4352968;2.222373;2.3026969;4.4243393;2.6818841;.39476505;4.2378864;-1.3804673;3.2292743;1.8533136;-1.5342076;.15222476;4.6504283;2.36373;.71614099;.27642468;3.1856208;2.4448819;-.75864887;3.4591036;2.9637411;-.094644681;-.069908008;-.97118741;1.5460575;.73609883;1.3899189;3.6582396;2.4195373;1.6121699;4.4454622;2.4105654;-1.5864662;-.83320445;1.0072794;-1.624051;1.5920628;3.0281978;-1.0074167;.31816328;-.047943346;-1.9975008;-1.3207313;1.9871998;-.050531741;.77246559;.17851985;-1.6377424;2.5010574;1.6988666;.077365212;.02428548;-.95007217;2.4322195;-2.5639486;.63058978;.15609166;2.166821;.84399617;-.99658114;-.16369532;.8036682;-1.8103889;.33389664;-.37701353;-1.493971;.47214499;.63036239;1.9798025;-1.5750272;.0070101982;-1.0280699;1.9447154;.80210012;-2.2330627;1.3795972;-.64570206;-.35676086;1.5898689;.81408626;-.55973172;-.085208759;.51409376;2.7628093;3.5892227;1.4463084;-.79815364;.3265211;2.1013174;2.7289736;3.1730123;-1.0393466;3.0011253;-.54314905;3.7131503;3.422718;-.69750875;2.730624;1.5042914;1.9363667;2.6314042;3.5769987;3.1635447;2.998812;1.2649543;2.3718696;2.1550736;-2.6525986;1.9398673;2.0917482;.020001274;.058115464;1.504868;3.5741043;.40089923;.10823236;1.1626981;2.4605658;-1.4150765;2.0667863;2.0943522;-.60229725;-.20132254;-.064766586;-.96592665;.24059825;1.1250693;2.7951095;2.5925126;.98099858;3.5271375;48.21006 +-2.3828347;-2.4493697;.41209334;-1.3921658;-.79296929;.33822164;-.29232961;-.41065085;-.51639962;-1.5147296;-1.7638768;.1534688;.76661366;-.33675516;.55074424;-.28314421;1.543798;.23328707;.92227614;-.19407398;-.58746874;-.28153512;-.9991926;-.3908163;-1.6980485;.17303336;.83276552;-.3866615;-.59393406;.57635605;-.47404683;-2.937572;-.36335108;-1.6540776;.69937545;.042436257;-.011970523;.22533385;-.2542679;1.7900985;-.21459685;-.50386232;.57416844;-1.0325875;.59658909;-1.4514744;-.42832226;-1.7360409;-.30886626;-1.6541332;-.86216992;4.6642585;1.9761781;2.4673388;4.0133972;3.6922665;.41939867;1.1292162;1.7406802;3.1656101;3.2096214;3.4018128;4.0447631;.20527653;2.2205081;4.5886745;3.4337804;2.0536437;6.6016936;1.7309263;2.9998128;3.0027423;.23233025;-1.9978085;4.2473912;2.9167967;4.8068657;2.7543788;3.2830157;1.4110299;1.9984426;5.4348664;3.9016321;1.3641829;4.1018004;2.8004794;3.1161027;5.1314793;1.1770549;1.2444659;1.4506752;2.770299;1.2651669;2.7598689;1.6025125;5.5142169;2.698101;1.9150885;2.02918;2.6214557;-1.808198;-1.7432926;2.8693671;-1.6900326;.35362199;1.1749084;-.035035074;-.69822192;-.55107969;-1.5082154;-.81017166;1.6917893;2.0580261;-.17916052;-.56252056;.97716236;.77274764;.26883137;.18244834;.54240316;-.55051267;-.12287621;-.54315054;.47330022;.72125602;-.18707444;.38720161;-1.3614788;-.72751057;-1.398849;-.49910086;-3.3338451;-.31300753;-.49355632;1.5121331;-2.1066506;-.35419446;.35587069;.36432406;1.1604769;-.65966821;.081187963;1.8151095;1.3174818;.4963325;-1.4478811;.33056694;-1.5790708;.67010075;-2.3227503;-1.7225553;2.9766514;1.4393135;1.5110419;1.42626;1.2898493;-.033075195;.7746594;1.3112292;1.6569877;3.2738178;2.6738722;1.8532625;.7508626;1.7789829;3.4649158;3.3670752;3.129019;5.3541961;1.5078954;2.1385145;2.2737348;.89937282;-.58561498;3.2753379;1.8331407;1.7656815;1.5393219;1.5325304;1.3350273;.54970062;1.986357;.96899706;.84584969;1.8941804;1.6050125;1.5476841;2.8202314;1.4159932;.61460006;2.0035927;3.6091702;.696913;1.0408509;2.7659154;2.0585456;1.6994225;1.0645065;1.243493;1.3350521;52.362537 +-1.2476616;.0096012438;-.76856565;1.7551826;-.64030236;1.2674613;-.96224862;-1.1028974;-2.302007;-1.5303779;-.33100349;.70179749;-.01100924;.62245709;-1.0826179;1.0370514;-.76564085;.12509347;-.30350509;-.24359317;1.2754995;.74461144;.50606704;-1.9258482;.028401066;-.72738826;1.2887225;-1.212293;.65210629;.27695918;-.82701397;-1.0486655;1.4577963;-1.0485322;-1.7285289;.12267824;-1.3604338;-1.8605732;.70209712;-.75532615;-1.257941;.25683936;-.45012695;-2.3614521;.53495479;-1.1386943;-.34855852;-1.5021663;1.0978069;-.44365293;6.2380204;2.3787975;3.1923051;2.4284356;-1.4023323;.9776054;1.6522049;5.8610182;.35850552;3.0420763;3.7038653;.41646105;5.9534001;2.8260658;.97021067;2.7476952;2.6362391;3.1485462;3.2004576;5.0787454;3.2559047;.5006215;5.4858041;.22304448;2.8858848;1.770723;3.4296093;.057921939;-.15813285;6.3147631;4.0484276;3.5704195;2.0867758;2.0805075;.087459907;-.41417083;2.5567226;2.8268647;-1.4386761;-.3513051;.5135439;1.3694725;4.8822103;2.8730168;2.5159798;3.7779539;1.7562259;1.2344947;2.8614957;4.7473598;-.50313467;.83477545;.62881732;.79811132;.60983473;1.206141;.29996961;-2.0571258;-2.0967896;1.0801691;.32592115;.23366329;-2.7688169;1.2268033;.844823;1.3593415;-2.0308125;.52197957;.79107547;-.30008399;.6075232;1.218297;1.5919724;-2.0397806;.21286702;-2.841145;1.3143492;-4.2456527;-1.0295573;1.0948222;.092122696;-1.66339;1.9576387;-2.5329416;-.28515196;-.029904399;-.99085808;-1.7692353;.020038104;-.11896407;-2.1968236;1.6155231;-1.2039086;-2.2183015;-.8491689;1.0290447;.30806303;-1.8018068;2.2330911;-3.1420162;6.0410728;1.0958098;2.098237;2.0453289;-.96150309;.73016602;.60538876;4.3779101;-1.7053016;1.9823565;2.6358678;.38688248;3.1956978;2.604068;.31126612;.74091548;2.2139852;2.3819139;2.0673726;3.5864098;2.1357887;.53676009;3.7631257;.71484852;1.8120837;3.1507032;3.2898955;-.45760354;-.52448875;5.0634356;1.8451995;2.1161089;3.1808257;1.9513266;-.031598791;-.035125233;2.1773179;1.7628872;-1.4299222;.077871837;-.47965193;.42800611;3.0493274;-.016673496;1.3490194;3.6731036;1.9017012;-.19257119;2.95924;3.9328918;57.173496 +.53281814;.38045433;.18990938;-.095384479;-.37462658;-.53454268;.90189517;.077956371;.42433396;.030071687;-1.0874662;1.0748432;-.58847058;-1.2438411;-.96117669;-.78717136;-.52495366;-1.2614911;-.6383999;-.096779324;.18439993;-.36849177;-.7322641;-.3633275;-.48117286;.55046248;-.39653295;-.13937789;.43620235;-1.314461;-1.393849;-.47334409;-.083833754;.57024294;-1.5130072;.58654964;-.23074736;1.5026351;.45404589;-.61801958;-.21733157;-.74876022;1.192505;-2.1270146;.11883768;.76322591;.76980686;-1.797691;1.207278;.076212637;.19576834;2.8049607;.71339893;-.21977039;3.3977914;2.8746819;1.8232774;2.0678885;2.6931376;2.7312343;2.0209517;2.3772359;2.9246459;.0065392018;2.7977543;2.1557117;1.0015141;5.013783;-1.3930917;3.1859488;-.85613954;-.68224776;2.5605347;-1.5247993;2.3188775;-2.0761831;7.2524376;4.0913725;2.2623215;1.1249279;2.2227516;4.9748249;1.2084067;2.5820017;-1.7168512;2.6137102;4.3308377;-.90435487;2.9730625;2.52598;1.8002537;3.7828639;1.8985969;.21193907;.16986699;4.9932652;1.7228463;1.2618806;2.5748429;-.62230575;1.570454;.67991585;.30980006;1.428984;.14994773;.85585374;.66200548;-.22113702;1.1131949;1.1477828;-.26042208;1.9939294;-1.4858663;-1.6971849;-1.3989588;.27886775;1.0718949;-1.5579169;.99115694;.57032698;-.74071723;.26156676;1.1561469;-.50702679;-2.6611142;.47577426;.51356357;-.2645078;1.9731735;.055031966;-2.103296;-.62117404;.44149065;1.3205249;1.0444099;.28644186;-1.3426601;.40840873;1.1100193;-.039511781;-.86217791;-1.6408684;1.3862673;-1.6577911;1.4200374;.56221545;.46348622;-2.2126343;.8419807;-.42954773;.071722813;-.10272957;-.67857814;-.32287821;3.3846712;.48215416;2.0567422;1.174139;1.3657932;1.2889583;2.0382416;.50400114;3.1707902;.15441859;1.2853782;.83542973;1.8249518;5.0141549;.43143877;3.3086658;.480021;-1.5584868;1.817395;-.89828104;-1.3146645;-1.4436287;6.1609335;4.518847;2.2073691;.021143269;.43205416;2.9939773;1.5432291;3.3376784;-1.1922092;-.28622493;2.9545488;-.16002132;.71010864;2.3527794;.82099187;2.7530942;1.3568286;-.69888848;-.87817371;7.0566545;1.2592684;1.923016;-.0036951886;.6487391;40.481228 +.56609428;.48961157;1.0098503;-.99436957;.24760619;.97078925;.76771462;1.0105714;.21871734;.48809978;-.19280578;-2.1826224;-.60552937;-.60356492;.23649172;1.5547457;.78052723;.25850853;-.58627504;.13151203;2.1367602;-.03081386;1.3311558;-.088361092;.761226;1.5895258;-1.0136067;-.64072609;.59706849;1.2493646;1.5937482;-1.4972144;-1.8214196;.85010713;-1.6637844;-.63472092;-.68983394;-.89706212;.65558088;-.89729697;-.046071414;-.32772753;.75004041;-.032202885;-.30515954;.98228842;-1.769858;2.151145;.37247017;.34674808;1.7231743;3.8850462;-.69220942;.93933189;2.3588758;4.4807644;1.4593253;.904342;1.2703191;.71870893;-.86986768;3.0677598;2.5923584;1.4755194;1.0740691;-1.8783222;-2.0786402;2.6097302;3.9047253;2.2161598;1.6348039;5.1463504;2.8026681;-2.4126956;3.5931835;3.4857898;.12974279;3.5796435;2.6305218;2.9197466;3.5886986;.72690624;2.0445292;.21135661;-.20095596;.3018609;3.112921;3.1570435;-.93059099;3.7942972;6.5451651;3.5147886;-.72713816;3.2172618;-.34430936;-1.013263;2.0839372;2.2413571;6.5165548;3.5655551;-1.5300901;1.5619663;.7309919;-.83917499;1.2228936;-.040373527;-.29645863;1.5201598;1.238009;-.2240542;-.59617209;-2.5815713;-1.5636038;-1.0615507;-.19259833;1.6879994;.89594907;-.53029901;-1.3041234;-.16085958;.47038332;-.31529254;1.0611786;-.17988789;1.0374383;1.4339302;-1.6255463;-.27437451;-.95501155;.73881173;2.8023901;-2.5904176;.041531753;3.1014693;.056343362;.95192331;-.61425585;-1.1246163;.4306832;.84271228;.60681218;-3.019166;-1.2350628;-.071234368;-1.0876416;1.4976332;-1.3950764;1.0464462;.935651;.71728098;-.0050337375;4.4145346;.76312375;2.9464965;1.8781484;2.3173702;.027263876;-.66666013;1.014474;.76064599;-1.340934;2.1330929;4.1499734;1.0097094;.35483941;1.4533441;-.46907222;1.5912626;3.4887502;2.2990627;.65427762;2.4983962;2.0728023;-1.8636128;3.2555921;2.6957884;-.020919062;2.3742011;-1.1384517;2.5338321;3.4683928;.095150016;2.2584975;-.37138149;.17095491;.3653776;.33155715;.86816925;-.050145727;1.1100787;5.2751918;.78439862;-1.3965837;2.4659371;-.54052007;.41542163;-.62258792;2.7990518;5.6488504;1.0164924;48.728027 +-1.1756889;.39852953;1.2059591;-.87346083;1.3503723;-.080761358;.53210974;1.2747924;1.3780184;-.099736623;.39942989;.40057692;.67429352;.21171224;-.58275241;-.81669259;.80671549;.28984889;.47281235;-.49361616;1.3367301;.1981069;-.92020655;-2.0516763;-.45139652;1.2513139;.070566185;2.8509922;-1.2101399;1.0266418;1.4145055;.025605414;1.0039829;.18921325;-.99365646;-.593045;-1.1087182;.61601901;.7487728;-1.7112058;1.481483;.19127209;.89285803;-1.3149586;-.57055557;.7979902;.21259013;.63556421;-1.0835198;1.3679154;3.7104795;1.3005248;3.182822;-3.8775735;3.4794638;.26198456;-4.2920065;2.7389727;.82322794;3.6234536;3.1529567;4.1737442;-3.4573963;2.4398627;5.0836172;-3.7622557;4.1623678;3.034554;-.34597534;1.4841166;-.55653799;1.8973765;2.3461046;4.880918;.97825587;6.5625858;4.7217517;.35299501;-.60008043;1.83128;2.5740862;2.3373051;2.1018369;2.6081288;-.31228977;-.039853144;.33286855;5.7533755;5.1003914;4.2816062;6.1002092;-1.5715879;1.6866069;2.5650148;1.7174537;-.4291048;-.42628071;5.8488693;-2.9833717;6.4575415;-1.3311659;.86443126;-.63188952;.26070106;2.3249969;1.6548448;1.4029858;.37414795;2.4623239;-.80749524;-1.2548677;-.44138414;-.54725301;.27527541;1.4179989;.34404343;1.4501868;1.6339176;-.78880441;-.43725076;.84938234;-.052863568;.14251219;-2.4650683;.27173081;.53123283;-.85572493;1.2495604;-2.0686769;1.7406633;1.0470825;.96132576;.42940721;1.3331124;.39917409;-.8306942;-.033567097;.93954462;-1.4117084;-.71071959;.82599789;1.8114084;.43851081;-1.0114577;-1.1701764;-2.2505352;.780864;.44464758;.2511431;3.1575508;2.4813557;2.5498245;1.2954785;-2.1946378;1.3347147;-.75494456;-4.5501618;1.3894273;.89770728;1.6261528;4.1072688;2.9350324;-3.1938782;.36836454;2.0968173;-3.1869082;1.868892;3.2657888;-.61864012;2.4635181;2.1802387;1.1314365;1.6066566;4.4440985;.38049531;4.3967838;4.8226399;1.9064704;-.95555449;1.1387911;1.2173073;2.0107493;2.7654762;2.6523237;1.0389031;.54152918;.1752421;4.8362961;3.0374458;4.482214;4.5170007;.6379512;1.9407146;2.3595557;1.5569757;-.77764386;-.23487331;5.0007157;-1.4760275;4.8383236;44.514954 +-1.1821022;.56764191;-.0031667508;-.58544719;-.76930559;.19460277;-.011909503;-.17199342;1.4236071;-1.2341092;-.28875303;-.36834297;-.55238789;.2590656;1.4578896;.16713075;-.9545725;-.039696127;1.2725438;-.32981247;-.29371756;1.5581191;-.1444108;-.73936999;-1.2662119;-.027013717;-1.2712643;-.10298738;-.89159179;1.3210384;-.16765517;-.48448941;-1.1744825;.1066149;.98325926;-.52998006;.9099021;-.63245553;-.99232435;.29370964;-1.6232949;1.380286;.40738896;.20098519;-.23400755;-.74811465;.77438134;-.089424588;1.9614199;-1.5612932;3.024801;1.0715774;2.0340219;4.8293386;4.1810088;-3.413188;4.7199168;1.1763973;-.7985065;.04641993;3.5473742;-2.1960773;1.5029724;3.4536598;1.0705892;2.5239995;-.13838972;3.2466908;1.1926824;3.1064796;1.5032647;3.6112335;-.88142616;4.2988954;2.3842533;1.3691522;1.4529463;.23089045;.52510881;1.2948807;3.2070158;-1.6305526;1.8678732;.73937559;3.5437701;4.7066875;.13104856;1.2848395;2.6671932;4.753716;1.9689455;2.5538137;4.6615634;3.1656473;.67505646;3.8306053;.42833367;3.5767281;.12552035;-1.566452;-.97317839;-.41290766;-.66220963;2.2631574;.45856977;-.17684811;1.3381685;.78918844;.98950857;-1.4862912;-.28716436;1.2536638;.12559898;1.8624693;1.2877681;-2.3993254;-2.020792;-1.1760515;.76216978;-.16605125;-.19806401;.81528586;-1.6397417;.95205563;-2.5556622;1.0768286;-2.1299801;.119392;.025552813;.096620373;1.2073542;-.28574011;-1.2150936;-.60421538;.91343379;.10263142;-.49228072;-.13416603;-.46847859;1.4561568;-1.4748727;.0084902458;.07765343;-.07285551;.77262878;.68813431;2.2633376;.65341192;1.4807725;-2.2323871;1.3210149;.35724187;2.9892161;3.6584404;2.7612898;-3.8132706;4.0743995;1.380329;1.2870396;.61333895;3.5866687;-2.0485489;1.2052824;1.7934927;.24872251;1.6992531;-1.3659225;2.6927118;-.51813096;2.3646436;1.3670826;2.4899626;-1.0046155;2.869642;2.4296181;1.4793342;1.5403612;.69652224;-1.7032398;1.0475618;1.9991355;-.94967639;.92234695;.23035367;3.9118469;3.4222853;-2.6607802;2.695291;1.1889142;4.9795113;.69834977;1.3419845;2.2776549;3.5930798;-.45554534;2.1142552;1.1818856;2.8785133;1.6919221;-3.0256267;45.621956 +-.054895382;-.046997368;.099179007;.45655197;1.1166732;-.054119539;.34613633;-.46314678;-1.0130143;.70124882;.16008908;.44280991;1.2758042;-.2361403;.36210528;-1.303966;-.022278177;-1.2315134;-.22130817;-1.0963099;-.47823969;.42744631;-.34600613;-.94385952;1.0503035;-1.251214;-.12465204;-1.040081;-1.2935361;-1.1599556;-.076926284;-.72519755;.69747549;-.27882841;1.8552938;-1.7293317;.18690664;-.22031659;-.46637645;-.044701949;1.1632847;-1.4536024;1.1242943;-.57696587;1.9398147;-.42151862;1.2106647;1.6554396;.35345173;.52652633;3.5295799;2.6517119;.15842749;3.3778369;3.6228328;1.7622734;3.2234836;-.52039737;3.7449083;1.1700816;4.1033878;.12809558;1.3768512;1.6178634;-1.0240022;4.5399365;.43266666;2.5956213;-.25884923;1.3085115;.90208566;-1.7350516;1.7530755;3.2255871;-.56926882;-1.7821964;3.4405174;1.1378254;3.0539634;-1.4738727;-.90807635;4.6583738;1.1333605;3.5980186;4.1489601;1.5995753;3.5744023;3.6960735;1.9616674;-.24870923;.045709476;.75657719;5.4129305;6.4629493;1.6954082;1.5874716;1.4920858;2.0691931;.4170495;3.8446732;-1.3379345;-1.0423969;.085581928;1.0758779;-.78769994;.5332585;.29498851;-.93795741;-.59834892;.20683274;.95160383;.6786049;.35230237;-.82793367;.55249286;-1.5532341;.43838462;-1.9136715;-.39825958;.31743264;.069404453;.29576775;-1.9737985;-.73755354;-.00037245921;.43824539;1.7043511;-3.1645272;-2.3644638;-2.7069862;-.85358781;-.73795778;.43832195;1.6550202;.39861521;-2.3328741;-.86940765;-1.1058031;-.99908465;-.040248487;.54665112;-1.6401027;2.849062;.93258053;.19664726;1.3738092;.18346247;.99404913;-.62390643;-.32804212;1.9346279;.13512716;-1.4041623;2.6726646;1.9746699;2.9951823;3.9646268;-3.4969134;4.4360075;-.32727593;1.1161836;-.52312607;.96856177;1.1393176;-1.7860199;4.3901954;1.5979482;1.5373622;-.086601377;-.3383677;1.6357598;-.7415306;1.7179887;2.4725099;-2.0091722;-.56679583;1.978394;1.1397241;2.7381563;-.86037034;-.22778161;3.1895492;2.3988843;2.901984;.48987055;-.9446733;1.7234756;1.2237934;.61161214;-.4656187;.43039417;.71540219;3.6622014;5.7303624;-.45103091;2.4547276;2.5327687;1.486671;1.1316011;3.7237895;51.689533 +.88653564;.14130303;.2760267;1.7207776;.73171335;-1.3710726;.33979595;1.5563531;-.081827432;-1.4589455;.13938405;-.78368372;-.018477205;-1.0739686;.40442714;1.8268595;-.62744558;.58166099;-.68541044;-.38517228;-.73442793;-.62253487;-.76390243;-.069871671;-.72427607;-1.1449273;-1.5499568;-.47721681;-.4119963;1.3441064;.99754435;-.12725367;-.23359087;.62343258;-1.2891721;-.82028556;-1.2469079;1.3867968;.058120813;-.88949579;-.13167089;1.535561;.96537107;-.12152354;.31034163;-1.215102;-.13994998;1.0164632;.2804077;1.4719322;.015038847;4.2927036;1.4287773;3.3538878;-.58095491;1.743607;3.6039734;3.5998311;2.4839728;1.1842579;.6473577;.74703217;2.3095765;1.7189153;2.9381533;1.0538616;1.5430996;2.4976673;2.5589142;6.5840077;-.053313956;.022381255;.95991218;1.9770173;5.5068035;1.9850132;4.7036853;3.1818485;.33411947;4.039279;1.3149776;4.4420519;5.0405931;4.2658157;1.7732139;.89084107;-.49054202;.68916053;2.6433959;.74320132;1.6923039;1.8244215;-.24084188;-2.2767906;3.1145232;-.63827711;1.8716871;4.6369939;2.9895043;1.3120732;-.081959322;-.11531457;-.21384545;.087069713;-.66911423;.14607537;-.5903554;1.6582267;1.5258938;-1.1168851;1.6597658;-1.609664;-1.4618207;-2.5702953;-.81422681;.9277404;-.50470757;.40379232;.52226901;-1.5540422;.62165034;1.8857141;-1.549476;-1.3122259;-1.9825771;-1.0094612;-1.4494473;-1.2657086;-1.2458335;1.0910621;1.7321734;-.66661847;.69191015;-.4335708;-1.2418958;-.56611341;1.3077036;.68319237;-.92832804;2.045341;-.13092828;1.3501673;2.065989;-1.1472101;.53576314;-.84091926;.52975643;1.7923583;.2815282;.083742045;.19553211;2.2998545;1.6476164;4.1106567;-1.4362469;1.4217376;3.4929101;.81566107;2.4451349;.39242762;-.39445883;1.9044839;3.7197449;2.2396629;.58113891;.70213854;1.9212935;1.0037069;1.6568183;2.2751882;1.4834366;1.4925005;.3079465;3.119236;3.2931643;1.8681321;4.7045856;3.5369899;.16665487;2.1215665;.89197677;2.3583794;4.9228358;2.7770772;-.49941194;-1.5028073;-.052024473;1.0045493;1.7830918;3.3292322;1.5104684;2.7197256;.64188397;-2.5042272;2.3790774;.62587661;1.4134698;.35307586;1.6121663;-.19157404;46.137527 +.424972;1.2149522;.61179465;.36010137;.67069858;-.99838907;.26322898;-1.6096144;-2.5943227;.76468629;1.1992133;1.6765679;-.85737735;-1.6288878;.42708203;-1.5101317;.33255687;.52007103;.81040263;.10136877;.83462244;-.21106613;1.5055156;.6065892;-.052040908;-1.2069246;1.756712;1.2865565;1.1695899;.31106964;.34508917;-.028716812;1.2107776;-.37343115;-.28788173;1.5202023;.77125752;-1.5317719;-2.1372736;-1.2688057;1.4344026;2.3236177;-1.0834831;1.1143026;-1.0042731;.97823536;-.99580145;-2.1672535;.63026959;.5214076;5.4227633;.053404048;.60863686;.71649718;2.9071774;2.7088099;3.9991884;.88752401;5.1796336;.63393331;2.6961811;.4240987;3.0196099;-.14587849;1.870662;1.0220453;3.052969;4.4421272;.5968293;3.1390889;-1.0840305;5.6658325;4.0174532;2.1547592;4.4955373;2.1884041;4.9351974;5.304307;3.0161533;2.140466;2.060787;5.2780561;.91474938;.88338995;.6459949;1.8806082;-.3786768;1.4789386;-.71788073;.50877732;4.5359993;-.83787811;.77278221;.43542296;-.81934804;3.3714807;1.0200491;2.1784375;3.4246705;.33120716;.1653873;.36543307;1.8702899;1.2895753;-.55213648;.27217788;-.08302775;-1.8581064;-1.0803938;-.56964171;1.0372624;-.40709931;-.65264499;-1.9007676;1.6187238;-1.1415534;-1.5777357;-.094121188;.42520663;.42822713;-.69947594;-.27084491;1.0852729;.10660793;-1.6929166;-1.4861926;1.3889574;.73351568;2.3150983;.40251607;.46046683;-.31677729;-.17830318;-.88279939;.52595872;3.6244135;1.7377838;-1.8120989;-3.3858128;1.0352848;-.78136027;2.2720025;-.0031254396;2.8355045;-1.5457129;.69878423;-.88930994;-1.4347569;1.4922911;.68218762;3.7964416;-.91106623;1.4572777;-.62954128;-.031824876;2.6539311;3.4866407;.233687;4.7789454;1.0030882;.7803005;2.3268526;2.9277515;-.28755623;1.5679963;.56765014;.76505744;3.161834;.32605255;2.8948743;.83013594;6.0246325;1.4393256;-.37985557;5.2345548;1.4526085;4.0115156;4.9619398;2.7218952;1.3406531;1.633083;2.9081311;2.3276696;.54061902;-1.3875722;-1.2847048;-.10382247;2.1959026;.074953265;.40016219;.65622884;-.25035188;.41173998;-.22049102;-3.2711267;2.2846453;-1.3112184;1.302784;2.82623;.044843458;53.287701 +1.7545246;.47447741;-.43250859;-1.9526321;-.91751194;.37189397;.95941108;.59302974;.20736383;1.0365032;.70088178;-.1872611;1.1547675;.67125094;1.5447069;-2.5268531;-1.0843595;-.44491574;-1.3329087;1.2828434;1.3828682;.81549513;.092697114;-.89784539;.39150426;-1.7882046;-.12645429;.57081127;.78591353;-.52163994;.70423883;.85751683;-1.0625826;.75161386;-.67402351;-.2585271;.28358117;-.024047496;1.6294339;-1.2966756;-.7446959;.11213931;-.43187779;-.31032217;-1.6431479;.16490228;-.47302249;-.47590473;-1.3417369;1.4731703;4.0334682;.30747125;1.519266;4.3354878;1.2516148;.18320321;5.639883;.70527959;3.1004815;2.5583515;3.273175;.59336591;2.8210931;2.1756468;5.6759996;.38700488;3.1122816;4.6820016;3.7216837;1.9531637;3.3635032;-1.1814089;3.1208174;.54289454;.20247199;1.4624271;1.692057;5.3022895;6.9633627;4.5433421;3.1118836;3.8948612;-.74204612;3.8075857;1.8517044;-.87576658;1.9200896;.26499835;6.3596158;-1.203794;1.0015885;1.6726239;5.613894;2.9709196;1.0012857;3.6819582;3.2669425;3.6740098;2.7314441;3.3707566;1.2683599;1.9334786;-1.0571105;-1.0247272;.32330361;-.54476094;-1.1742091;.050941594;-.57120013;-1.3833617;.46511391;-1.4649808;.7429319;.59378016;-.78268063;-.57661986;-3.4427607;.55834383;-.078277379;1.1926883;.84130138;.22392654;.49408928;-.33516046;-.77837318;-.94615513;-.83015281;.097976573;.73267472;.63436431;.67212129;.29045829;-.82310778;2.6578023;-.41657168;.085471243;1.4664787;.37526074;1.9011774;-.33958632;.46042755;-.09694843;-.76383328;.11655097;-2.1564226;-.49651739;-.034170087;.81366712;-.019637793;-.76879996;3.5811369;.27979583;2.789834;4.3442998;3.4473054;-.37885907;4.337616;-.72429627;2.4515247;2.9010406;4.3648415;.55510765;.09338586;.99417841;5.7934079;-1.1344577;.5029093;1.9051304;2.7694242;2.1505792;4.0934691;-1.3443156;2.3165052;-.44955805;.35923153;.52881354;.71256077;4.1062417;4.4436326;3.0817859;.61344421;3.5335882;.35308999;4.1567965;2.2347701;.54937178;1.8712821;-.86419106;2.3668792;-.86188012;-.37221479;2.1288826;4.1971021;2.6247756;1.4528446;-.38180196;2.4743617;1.4700565;2.3256776;.75860244;65.636566 +.40249771;-.87059712;-1.3751459;.46529916;-.38831207;-.73329222;.66166806;-2.1523051;1.3144785;.8309021;.1234139;-.02908612;1.3967499;1.0055269;2.0665007;-.31519729;-.10443206;-.33792201;-.28556901;2.002996;-1.1289983;-.51372868;-1.225381;-.99606633;-.054711711;1.2140696;-1.4371972;-1.6039751;.87797111;.62186229;-.15012018;1.6121981;-.90648264;-1.1025189;1.2689557;1.0062011;.065183215;1.6641011;-.81379551;1.0412303;-2.0263124;.16018076;.0088751335;-.59437263;-.66526818;-.56216705;-.077499449;.24633196;-1.9922622;-.39418674;5.601263;.54506254;3.5662439;2.9006445;.88054001;3.9950655;.20387053;4.4340172;-.11632447;4.6435499;3.323837;3.4845195;1.6089063;4.5577126;1.1661215;5.2134833;3.7437966;2.4643528;2.9898372;2.7331276;-2.4890685;-3.1146684;4.8372145;4.4341249;1.3553497;2.0028124;2.1663079;.80717891;1.2057791;-1.4976394;3.7441363;.085955217;2.1841071;.062313356;2.1301184;2.6496098;.20065457;1.9092476;4.6906886;1.9959195;-.2186441;1.6010143;1.8316087;3.056915;5.162591;-.73469883;.50559604;2.2421556;1.4239979;.10760847;.62654328;1.1522778;.83806294;.83399594;-2.7313447;.08360903;-.61082077;-.50290632;1.0705949;-1.0498393;.27817118;.16802663;.1038278;.51867318;1.6529477;-.30967307;-.086519733;.38608742;.097834006;1.7375053;-.96151513;.71492052;-2.2194486;-.99725789;1.2062647;.54126167;-2.4163432;-1.0606779;.57515121;.013272595;-.030887984;.78397393;-1.5236485;.284468;1.7419106;-.20852397;-2.1234882;.40256414;-.27014408;-.054360699;-1.0822344;-1.6933285;.26410958;1.4771547;1.5367228;-.81084597;1.4028746;-.97406322;-1.591118;-.25888973;3.553489;-.13128094;2.8113742;2.5221627;.10247659;3.2826591;-.67173648;2.7915792;-1.0629791;3.326901;1.0659941;2.396466;.462901;1.3159939;.17401542;1.53211;1.4510084;2.8839302;2.0205591;1.4305145;-2.601824;-1.5096759;2.0961266;3.0599463;-.44289443;2.4123447;1.31819;1.7913281;-1.0860562;-1.1671335;4.6007862;-.4950048;2.1876507;-.48902929;1.075748;1.0368757;-1.5720546;2.3891156;3.0730052;2.56075;-1.0122144;1.0833237;2.0194888;1.165805;2.5524747;-1.1053524;.040400103;.17562295;.11049505;1.6495397;45.147518 +.8253274;.71298695;-.67767876;-1.6136416;1.4636247;-.39830357;.85577422;-.9980644;.96270788;-1.1598358;.61502564;.70049077;.47924045;.75784594;1.8337846;-1.4193469;-.93412405;.66933823;-.041916344;-.28295323;-.9140954;-.87398928;-.41111898;1.8733376;-.71238166;.22852787;-1.3599453;-2.4116092;-.60481554;.42628416;-1.4262257;-.43963915;-1.9933634;-.14864421;.82904685;-.62969208;-.35466287;-.60252512;-1.0194347;.47402012;-1.6516891;1.3992256;1.9867965;.82222766;-1.4763147;-.44680065;-2.463675;1.3269889;-.058535758;-.86831999;1.9664049;3.4117153;2.9202588;3.3740361;.0070028929;.75186598;4.7698288;1.2583339;2.814754;1.4675878;-1.6167973;2.1666327;1.8662492;5.48317;3.2047546;2.7347684;3.1868842;-2.1397536;.10436333;3.4693401;1.1669207;2.5020194;3.0074234;1.2643595;2.2248852;.23671177;2.0441918;-.82293415;2.0904367;.99474019;2.4046364;2.0541074;-.97814709;2.0680926;2.9087954;.20199262;-.45109963;3.8025675;2.0065117;-1.210099;1.5122646;3.6506665;3.9409194;2.0156889;1.1366754;-1.1316515;1.1110855;2.9513116;1.139689;-.34107998;.23831609;.50053912;.090022221;-1.0319943;1.6130474;-.53518492;.19573051;-1.3032752;1.1672451;-.6941275;.95493364;2.0173161;1.5751947;1.358158;2.509887;-1.9732836;.44497383;1.3173589;.48504782;-.1485766;-.87526566;2.0101681;.53022844;1.0890659;.064889289;-.067074604;-.5780341;-1.7374279;-.56659341;-.22468822;1.0205287;-.11882036;-1.3460515;.2612493;.89192235;1.0551697;.62847078;.024219882;-.97114575;2.0242186;-1.0624621;2.5226483;.3737953;.45809674;-1.3024851;-.38300374;.36077255;-.048465051;-.7931903;-.79998475;2.0772686;4.3783221;1.9460247;2.5100777;-.91663295;.091051623;2.9272349;.68923998;2.636354;.99924749;-2.0004418;.8298952;1.3864971;2.8111601;1.8442513;3.5272489;2.5043263;-1.5493652;-1.3411317;1.1991321;.49577299;.44815639;1.7786168;.2471077;2.7761152;2.0865831;1.2696038;.69070363;.62904769;-.12712079;.87570989;2.008148;.05965998;1.4575341;3.2515075;.49262089;-.93273616;3.7190986;.93550181;-1.2941109;1.2940037;2.5962546;1.6976943;.35975033;1.0062079;-1.1488776;1.3015999;.88276666;1.6324725;-2.157594;35.551945 +-.34877136;-.72436243;1.0317425;1.6622075;-1.6922069;-.3292236;.0026088648;1.6272134;-.37698343;.56217676;-.8421725;-.27992064;-1.4125034;-1.5973673;.18834166;.26892605;.036718711;.58882111;.79280603;-1.9053798;.11158313;.8096264;1.6143633;2.524487;1.239491;.64710361;1.2198042;2.079524;.21458182;.14236309;-2.2681911;-.1625192;-1.0870094;.57087719;2.4567711;.60751665;-.069724113;1.4379945;-.79652214;1.5304135;.12402981;-1.0884358;-.81637138;-.1741568;.29465595;-.6042698;.031092163;-.31940618;-3.0636261;.24368645;1.5524564;6.9392896;.67256176;3.0594816;3.8087456;.46142304;3.6831803;4.4338155;4.9186935;-.79734373;3.079653;2.4936323;-.57280117;2.8032444;.83865756;2.4992967;5.443058;-1.1581534;4.8483686;.29415211;2.5518594;3.0663505;1.0374396;1.4335287;2.5987079;3.0334616;2.2343867;1.8603748;.90667373;-.088553935;1.8580856;.71415138;1.8984852;1.981014;4.5303307;1.4746238;2.058918;.34586558;-.18792482;1.5742046;-2.8922243;-1.8041652;5.383111;2.385778;1.9408903;.43594706;1.4838734;.92510623;1.4221212;2.008919;-.4869889;-2.9967723;2.8780525;-.49530384;.18591209;-.94952714;1.8070536;1.3146888;-.072524995;.37682512;-.17815059;.24566139;-.47159484;-.80508173;.80364895;.68879968;.81342852;-.62381947;.6432929;-1.5097289;.81120408;1.4121482;1.4804403;1.9070891;1.6331872;-1.1694629;-.37508225;.85798395;.46422198;.32105151;-2.9156582;-.95673341;-.018863859;-.10402691;1.2308496;1.4157113;-.33572423;.76727474;-.71684873;.74416465;-.46921569;.60691774;2.22631;.830172;-.50923163;-.36651132;-.67426145;-.22462445;-3.1688519;-1.1600153;2.5517232;6.0298939;1.2981492;3.3560119;3.3959172;-.023912398;2.624495;2.4018178;2.6257467;-1.812673;3.0370808;3.5670602;-1.5274376;3.7770107;.68375111;.94590688;2.6154418;-1.1777626;2.64165;1.690091;2.8168902;2.254595;.025284328;1.3748579;1.5639926;2.0135531;1.8947765;1.0395904;1.6287085;1.6690577;1.0777842;1.1863055;.54276133;3.1229651;1.0898048;-.13904241;1.4755627;.8700844;.20281838;.90219748;-2.5150208;-.14681245;4.7055407;.72208393;.92124152;.92203701;2.2629561;-.71321672;.8650049;.79254448;52.599342 +-.28551263;-.50459433;-.02403613;-.47237876;-1.4780329;-.59601784;.7555117;.14360338;-.75735694;-.98176038;-.90195173;-2.0073843;2.0911741;-2.217417;-1.2973386;.39127752;-.11766847;.30292943;-.77191228;-.014671532;1.6015378;1.3894489;.81096369;-1.5421662;-.21548118;1.4038012;-.65948606;.0072819949;-.016913634;-.79765356;.10476273;-1.2310263;-.70704287;1.6869375;.22420937;1.8878982;-.22781017;.90222776;.90792167;-.55207992;-.3413592;.8843956;.30402774;1.1977426;-1.8881171;.95215362;-.18394651;.036209386;.66225433;.23343742;2.6809669;.15688564;1.6421036;2.7661893;2.3624828;-.96977699;.42239204;1.4658077;3.9912539;3.8638451;2.2771852;3.2383752;3.1940331;1.0440645;2.0774331;-1.6341972;1.3320233;-.48149881;2.6534584;4.3308549;.61009306;.21514158;-.14058213;2.1800754;3.0882797;1.3195752;-.32616845;.10538796;2.1417904;-.050619874;.98176646;4.9324541;.72153103;2.3929591;-1.7976539;-.2848998;-.55260491;2.4909759;2.2005634;.48743552;4.8100891;2.9153872;7.9773932;2.870086;-.81126314;2.760464;-.21851061;2.5105033;2.9810319;1.1400256;-1.0209032;-.53270447;-.9205147;-2.0187016;-2.1418686;-.020515192;.55106974;1.6634167;-.14062051;.15745422;-.41039363;-1.3237368;.50460464;.59219855;.71113443;1.3980685;2.0281546;.70211583;-.068326183;.35975048;1.4409672;.60371977;1.0654596;-1.8854452;-.67588443;1.5182095;-.78758597;-.7754367;-.47482207;-.66714585;-.15882108;-3.3057141;-.1563483;-.88177329;.93929684;2.8457229;1.1457597;1.0302526;1.7489288;-1.0867313;-.34570098;-.10412164;.11667854;1.1590234;-.76064205;.78092241;-.52110612;.8160165;-.792346;-.65906429;2.5165987;.92468655;1.3662095;2.7355113;3.1528616;-.62493539;.81507456;2.2923324;2.6991069;4.3058205;.61469489;1.8298331;1.2284181;.54833138;1.3016838;-3.1894915;.34930065;.20325147;1.5298969;2.4419563;2.3210611;-.81921661;.15499461;1.3663357;2.7569599;2.5825512;-.91176963;.065992586;.79652584;.6610747;1.9311494;2.9719393;.13962507;1.2233815;-2.1333015;-.32907131;1.8022283;2.8065157;1.9727762;.13162373;3.838412;2.289957;7.3984952;.040720355;-.94575179;1.6127391;-1.6462392;.87496996;3.9321456;1.8917997;30.537048 +.12875248;-.70637298;.95471746;-.2862789;-.80296326;-1.0219294;.94430971;.73267418;-1.3535582;-.83781379;.1215116;.65477407;-1.2074018;1.2043312;.082329214;-.15515782;.70796984;.13451625;-1.4446774;-1.017526;.4198707;.33342886;.36539921;-.86212331;.67129141;-.46878588;-1.3718796;.63491148;-1.55575;-2.0691562;.40167204;-.17388479;.0079722079;.25442463;1.1586086;.45371488;.76741362;-.12842433;-.43717045;.89866608;-.94005078;1.1613991;-.88756472;-.32218572;-.33418497;2.8453884;-1.7036562;.84273785;.77979404;.26385999;5.2864914;-.5627951;5.7206564;-.064955465;4.0784235;6.2884979;4.4262791;4.9871345;3.4287844;5.0638824;1.8606117;-.72799128;1.7141281;.64980572;4.1389198;2.6471925;2.088438;1.3357123;4.4426999;2.9525361;1.0849547;2.6322095;1.4623455;4.5062776;1.5475103;3.1205289;-1.2525647;4.6304412;.52410305;1.6138928;-.50967044;1.6181484;5.2054729;-.21132146;1.4920162;1.6447883;2.4529786;1.6402072;2.0044165;3.0678878;3.9205287;3.2033062;1.9646212;2.1639524;1.4717633;1.8708458;3.2339149;11.281081;-.78351134;3.0163059;-.047633365;-2.4798434;.51035929;.14084847;-2.2859776;-1.576084;2.4224041;.74335164;-2.5547612;-.37208596;-.95818907;-.018393233;-.45477897;1.0362771;-1.2974602;-.022798928;-.42656574;1.2256052;-1.6400479;-.67118633;-1.1746089;1.5718317;-.14209458;-.7796222;1.0462354;.00020133874;-2.0064161;-1.363682;-1.6889089;-.97209299;2.1204846;-.4274196;-1.5952394;.9807902;1.8767521;-.46383911;-.66143733;.10393013;.27719957;.37622905;-1.1446064;-1.128543;.21705557;.14366074;.018023994;2.7069464;-1.6970438;-1.0355246;.96824914;-1.9504379;5.0751548;.49243128;2.9845893;-1.1640851;2.6191883;3.0534971;2.5816321;4.2131701;2.8112903;4.5002751;2.0834439;.38621306;1.6965103;-.12692617;3.0580809;1.3354963;1.3215241;2.905313;2.8476121;1.9165856;-.53582597;.49321121;.024697527;4.3963637;.024680397;2.8665464;-.72184122;4.88732;.050168429;.13843462;-1.2168099;1.3859512;4.0693846;-.98689109;-.88513309;1.1820585;1.6707548;1.397517;.67736113;1.3159862;1.039553;.88234293;1.4121786;1.195253;-.57484204;-.18259446;2.7801263;7.1037617;.90573615;3.6078439;63.308926 +.64227557;.12085968;1.2091432;-.78811711;-.52068561;.49521455;-.18797795;.27865493;-.31672785;.59354585;.58622617;.89538193;1.2381235;-1.3498188;-.62071419;1.1605536;-.19452795;-.286026;.15370798;-.33689231;.53261411;-.21998791;1.8937665;.47137994;-1.4688456;-.56863213;1.3941222;-1.2569612;-1.2839608;-.5027585;-.41313928;.67937696;-.79481655;.56409508;.4965612;1.1116976;-.70880562;-.54246694;.37600207;-.54829824;-.68536991;-1.2406964;-.7214244;-.20018093;-.73326546;.49660632;-.84022141;-.43217558;-.4789857;-.18943334;1.3626033;4.8555923;.62099487;-1.2606838;1.6634653;1.2969784;.46994609;-1.4492083;2.9875181;5.4271154;.90801096;.38506705;2.9346783;2.625145;1.3449864;1.9921014;2.3578303;-1.3519216;-.52567667;2.1218996;-.22842404;4.5059938;1.0205344;3.2579327;2.9734371;4.0732174;.84012121;2.092411;.80218059;-2.7913237;2.8554466;9.1809807;5.2013545;3.7449145;.8958295;1.0349362;2.390909;.34265348;2.6227634;.22640868;-.11397484;2.9917214;2.3867431;4.5159893;3.648392;3.7305238;.7607047;1.1568362;2.8706887;.56575227;1.1746649;-.18432376;-.1726035;.11554429;-1.0343689;.08903677;-.96735317;.86336261;.8649618;1.7034681;.3701846;-.72390002;1.2375579;.34356135;-.079399139;1.3050675;2.3615503;1.0003586;-1.4233804;.70586932;1.1479183;-1.0486627;1.4751042;1.8868259;-1.1822685;-.5536595;3.0052314;-.49611607;-2.6374817;-.64777434;-.21031056;1.4723028;-1.4904218;1.0024549;-.18936238;.35145873;-.55397117;-1.44174;2.0092237;.11886594;-.75890809;-.39260039;.76974767;-.24861771;-1.2752335;1.4332395;-1.8033468;-.92154634;-1.3809103;.066990606;1.3256197;2.8286247;.39022574;-1.1754605;1.2852653;-.58523959;.38668281;-1.3158218;1.3612818;5.0486088;-.19394077;-.40089032;2.1098106;.96399361;2.2627137;1.8611833;1.9940324;-.92034471;.97881013;1.7732102;-.52764988;2.8904912;-.83877474;3.7249198;1.8242233;2.7953894;2.1385846;2.042649;.55548894;-1.3606359;.88067263;5.2929692;2.8376386;2.3285365;1.7174066;.84968716;.5013175;2.6589079;1.7967976;-.88263863;.39041024;2.0624008;1.3765519;2.5125964;2.110462;3.5846121;2.6506224;.77179259;2.6089735;.38548246;44.759884 +-.58960205;-1.1193585;-.85192049;.59976548;1.873741;-.28164315;.055747833;1.0280266;.69123495;.6747812;.26853681;.088301793;.1700878;1.7924266;1.0259548;-.59016907;1.1411116;.21505941;1.1772074;-1.4092689;-.23845181;-1.0136371;.036891486;.034270402;.39857444;.78883249;-.19003791;.25634772;.7702024;.037745327;-1.0722421;-.65725166;-1.1174402;-.078921705;-.45141038;-.63981336;.20185985;-.7820093;1.0403094;.63251042;-.22637013;.82084757;-1.4573905;-1.9074941;.4863975;-1.3328415;-.93571585;.045714691;-.97791535;.072669782;.53361571;1.7326746;.84430265;1.0889248;2.9411047;4.4653893;.6380747;1.8101058;2.8042867;1.188188;3.0816255;.97335613;2.9729877;2.2664137;-.27450174;6.6840687;2.8004799;-1.9183307;1.0509378;-2.9668934;.00022423819;4.3718057;2.0281842;3.547415;2.6294055;-.29687369;-1.280213;-.025512565;1.2657633;2.5708141;1.7369919;3.5683773;3.0171945;2.1150506;3.3720348;2.5365076;4.1263013;-1.9389284;.93203008;-.74748665;.53321767;6.1953378;3.9525061;3.0268226;4.1064658;-1.4529777;1.0611751;5.7260618;-.25416499;5.0815887;.33357656;.52917409;-1.9324476;.45036867;1.7134634;.46218896;-.21557446;2.1591539;1.1899544;.66754782;-.10394533;-.34812197;.86825442;1.3957497;-1.7487442;-.070603348;.74644542;2.2849915;.16181062;-1.0551338;1.2528853;-.7049467;-.4913936;.46611857;-.80233544;1.2187184;-1.0798563;1.3780007;.06606108;-.89994973;.16206604;-.51466697;-.55022317;-1.485319;.057461891;-1.1756366;-.19640695;-1.2338178;.15896559;.15325828;-.43344903;.9876253;-2.1707082;-.38457355;2.1619067;-.77930945;-.42459708;.56412452;-.97465706;.45202291;-.049372897;1.5448624;.60764021;.79869056;-.047433179;3.0894337;1.0867925;1.8756779;1.1135937;-.3083258;1.0921772;2.0325401;2.3045993;-.69077641;-1.1879327;5.3699622;1.5210358;-2.1057763;1.6205698;-2.710762;-.46030584;3.903271;1.0230259;4.23663;2.141479;1.8593497;-1.658861;-1.0758408;-.02053594;3.6318424;1.5548379;1.6436045;2.864625;1.8373226;1.9182001;4.6641703;2.7612646;-1.446524;-.47148773;-.15422314;-.024147497;3.7837996;1.6717759;3.5520294;.88504171;-1.3940663;2.5691545;3.5218966;-.23270708;3.5145035;48.90477 +-.2134649;.71603465;2.2545481;-.059229732;1.2929736;1.4261054;.28164682;.59042543;-.94306219;-1.381523;-.71915895;-.16401687;-1.3264904;.027223175;-.80944574;-2.0647492;-.93668336;-1.7111127;-.98617733;-.575849;-.5599581;.60889012;-.081848666;1.1025047;1.6532708;-1.1433591;-.40925366;-.17863613;-1.0330119;.46077934;.90567917;-1.1702458;.030333763;-1.8388511;-.051527642;.35921711;-.48174635;.40237039;.42055488;1.6571925;1.0585084;.51762378;-.86148435;-.26591784;.56586802;1.3266735;.10246335;-.60927802;-1.6721931;.70070475;4.2783036;2.7178624;3.8576365;4.1577644;-.11166108;4.6122799;3.3739848;4.0361967;4.0847006;5.1261744;.88282716;5.9636874;-.28533792;-.04287779;5.7809024;.33159018;1.80566;4.5219507;.89296871;4.6814322;2.2078016;.72350597;-1.6401888;2.2730446;-.56952041;3.1528935;.44157335;1.5000809;3.3208702;.16936211;-.087952495;-.47575164;1.2094685;.98891491;-.74194223;2.8864732;2.1333463;4.9310656;4.4294562;1.5726162;2.562124;1.2756037;4.9674397;2.5514247;3.8103657;2.7535961;5.9802752;2.7756832;2.3462584;-1.9280568;1.437129;1.0138059;.48823237;-.0086868014;1.1844162;-1.6661218;1.0677609;-.12590265;.99028337;.028682191;.37538844;-1.2034715;-.19925678;1.0147215;-.38826194;-1.3238196;1.5495684;-.79748946;-2.1748793;.88810837;-.42232648;-1.4333043;-.73570389;.0010152155;1.7051119;-1.4936217;.8553918;.24689536;.75771552;-.13751708;1.1313262;-2.9106948;-1.2130054;-2.0610292;.22288828;-.85251129;-1.372561;-.0044456855;-.10804033;-.34757555;.72370875;-2.1839976;-1.6778616;.34835044;.92014861;-.34410006;.03033576;-1.9454527;-.17985825;-1.2028111;2.7768753;1.9245182;.6827361;3.2787743;1.1468186;2.2327423;2.6121421;2.829134;1.9405994;3.2713499;.42151442;2.932575;-.11700454;-1.3789704;4.267015;-1.2869151;.62546146;2.3942518;-.5788132;2.3873932;.79473358;1.2807611;-1.2189487;2.225261;.50855649;2.8810632;1.6517823;1.5943912;1.1882838;.70388395;-.39505082;-.34088734;3.1475782;1.1411414;.59282637;-.75691307;1.9806882;2.0562816;4.3668313;1.3296905;.80892169;1.6243709;4.6744485;1.7442569;3.803287;2.2649171;3.419827;1.5001031;1.0769118;-.91017663;56.427444 +-.08524397;-.1984964;-.10439201;-.50117344;-.32169998;-.10221454;.41027826;-.27964842;-.90971869;-1.08632;.025605679;.85871816;-.31559148;-1.1981701;-.42566875;-1.2111617;.66191196;.01314474;.55605656;1.4009123;-.43562496;.66240728;.37873757;.43643832;-1.0047789;-.18800518;-1.9582876;1.7500739;-1.7292122;-1.1187468;.39833599;-1.8078694;-.55109853;-.47691271;.16905473;.447869;.33280879;-.27897879;-2.5511539;-.87203902;-.11470169;1.4303625;1.3165334;.49345151;-.6233716;-.24749297;-1.2444737;1.9025236;-1.9339511;.79489672;3.9169579;-2.0186286;-3.5226312;3.4063938;2.1583846;3.3728476;1.2098211;-.52463287;.3152431;-.5282228;-.56900084;2.1187365;4.3625755;.11290032;-1.8214433;2.1150954;-.086294308;2.6152213;2.2833641;-.42548731;4.9489665;3.5519574;4.105597;.58558571;.88709807;2.938834;.74680662;-.96756178;3.9259171;3.6769505;-.63714415;3.9477248;4.3287873;.39660263;3.2110219;2.4907761;-2.532768;.90979522;2.4762478;3.4724259;1.8317949;.84964681;4.1858668;4.8393126;2.2395728;4.5100126;3.9736145;1.1750726;.82007557;-1.162058;.80555809;-1.1473655;.071206853;-.91561151;-.47417644;.47287834;.32037899;-.41736242;-1.8034456;-.91681731;.078550726;.87819111;.15972908;-1.4649236;-.4303768;.037470721;-1.1317153;1.859607;-.16121814;-.50618929;-.21213396;-.31759205;.63254476;-.37753141;2.2552905;-.60657537;-1.141773;.23884387;-1.4439138;-1.8632653;.16474716;-.56055516;-.58577931;-1.4339229;-.32396129;2.0905604;-1.0431007;-.44701219;-3.207412;-.14758258;.96584433;-.080838047;2.435128;.008757472;-.48231676;-1.5272884;.14191535;1.6197029;-.60282189;.85138774;3.5758524;-1.7876514;-1.3083053;4.2861538;-.21588679;1.0318202;1.8863358;1.50425;.87222749;-.41111019;-1.4866079;1.3196206;2.621912;.97509897;-.70286334;.55236351;.81460655;.60720044;1.6667631;-.059755541;3.5398993;2.7839963;3.902029;-.66485566;-.17340918;2.5528576;.76706612;-.11879079;1.5168076;1.5573195;-1.2223426;3.3881116;1.4422957;.86642802;3.4459641;2.3777685;-2.1488447;.20244929;2.4876778;1.4471116;1.5914904;1.4661396;2.9461346;3.8409863;3.0582085;2.4426768;2.3002052;1.9456438;1.5829397;-1.9564384;40.838856 +.33398244;-.047581099;1.2033404;1.3962772;.1207982;.16651289;-1.4985231;-.48410752;-1.2690169;1.0912189;.0033330759;.78674006;-.027356204;-1.646634;-.12458477;-1.1158663;-1.472735;-1.8249937;-.17398822;.082918778;.20130329;2.1914613;.67066091;-1.0952406;.65457231;.95715636;.064256452;-.31927899;-1.49911;-1.0105482;.0547572;-1.009558;.98834401;-.54205555;-.6492334;-.53723645;-.24164248;-1.2642403;.015853127;.61285079;.95449674;.79897213;-2.4559991;-.92359477;.15629773;-.11763439;.51174664;-.53324759;.56178027;1.8430501;3.5966337;4.1909266;1.7225125;3.962976;.96266741;.77432847;-.2036908;.2573956;2.0460222;7.0598531;-.96971899;-3.3815796;2.9511938;2.9100063;1.0980841;-1.4326371;1.7756929;2.4931726;.7443769;.33421487;3.1860344;4.3571382;2.5609396;2.6796165;2.9173675;.19316262;2.9445121;2.4152844;2.5584302;.49477959;3.1426167;4.0027823;-3.5166929;-.042452171;5.3025851;.1455394;.88333124;-.52060562;1.6289061;3.916435;-1.9978203;3.6740599;3.4166484;2.3954351;-.48289469;2.992341;2.8901339;-.92797124;-.08629591;2.2636142;.31775674;-.76083785;.76127285;2.5201504;1.460531;.0052449736;.14271823;-1.1373911;-.69229013;2.6589453;-.43404722;-.57180953;-1.3385465;-.73760128;.89801311;-.10902412;-.7761271;-2.0937665;-1.2769103;-.7879352;.39960143;1.3484231;-.70393723;-.66868097;1.6388124;1.1277435;-.98237526;-.89129609;-.52653217;-1.9907852;.18349686;-1.1029305;.41680503;-.72028071;.31450322;.41794962;-.11451635;.31611809;1.4663843;-1.7005079;2.5407796;.20084107;-1.6169553;-1.1286596;.39411956;-.3097207;.35955822;1.4024522;1.5198202;1.5938457;3.7620857;2.9682353;2.8266635;1.626969;1.4633648;-.013989375;.85836464;-1.205472;1.5983155;5.3680334;-.58841711;-3.3244967;1.3053071;1.2363429;.70623058;-2.0604913;2.6225045;1.8344989;2.8118753;-1.2543347;2.4512656;3.3232317;1.9317367;1.2856903;2.0274777;-1.5889907;1.3381335;1.4529047;1.6923418;-.065992281;1.7025248;3.6092799;-3.3554418;.19760898;3.2993343;-1.3535666;.72258449;-.91867834;1.7803402;3.2058377;.18716526;3.2815807;1.6773463;1.8386046;-.77397728;2.7352223;-.0072504859;-1.4094366;.10870376;1.0438881;42.025867 +-.51323986;-.77862817;-.76104575;.76125908;-.73835701;-1.1781178;-.53273934;.7029779;.80548483;.12399335;.22893956;-1.7118701;-1.5753865;-.77603853;-1.314377;-.98755336;.043270078;-1.9127507;1.1318748;-.0084786434;1.8940839;-.49708068;-.64427513;-.91670805;-.13950627;-1.1226486;.25675488;.95434129;-.64762419;-1.1656598;.82169378;1.4751993;-1.1746097;.17084669;-.087232031;-.24651191;.91372275;-.50091416;.44087628;.46363619;1.2721584;-.90148169;-.093524918;-.87947088;.4292022;-.62949586;.47315294;-.24300127;.4905031;-.052761376;1.7831043;-.59908253;4.8394852;-.42203319;.098091975;3.6870005;2.2945936;1.4581469;.076550268;-.53993654;4.9839063;2.7742937;-2.5122595;.93634325;1.4308711;4.3430367;.51931864;2.0442212;3.4887662;1.4136355;2.5500636;3.3257358;3.3641257;3.0975471;1.7351094;4.4989843;.1098479;1.0243244;2.653053;.0075124879;2.7353432;2.9660802;4.3847227;.12206234;1.5523354;4.7004499;1.203192;3.9548185;2.1950383;1.3376683;-.56133789;3.09027;3.6478035;4.42943;-1.5632547;1.1028169;3.2220192;5.0033326;3.6679499;1.5637276;-1.2861487;-1.3788651;-1.6924022;1.2465326;-.26939934;-.64998257;-.73887467;.70849991;-1.5957667;.067482583;-.10839321;-1.4121785;-.53069031;.40006989;-1.7922984;-1.0450248;-1.4767476;-.17230135;.63050109;-1.0678387;3.338701;.54734927;-1.0947809;.036839612;-1.3847361;-.65008587;.23576818;.49461991;-2.5145745;-1.2627356;1.1726124;3.0178788;-.6965822;-.90123552;-.051683601;-.60648578;-1.334408;-1.3844422;-.21027248;.2420176;1.890402;-1.9329547;-.70614433;-.2873477;-.72513533;-1.2041094;.011373044;-.30934456;-.90590012;-1.624324;-1.0571864;1.1846576;3.2648005;.25355998;-1.2193102;2.4956532;3.4971471;-.23788179;-.2266905;-.87154639;4.1895461;.83574522;.034500778;1.3142203;-.40517285;3.3756804;-.34506673;1.7946455;2.846602;1.462483;1.6443651;3.2346857;3.0369546;3.2660468;.35645491;3.6123374;-1.1984172;1.1313083;3.2078884;.67057407;2.4055305;2.3024952;2.5301077;.33988535;.42466062;2.4174144;-.52217638;2.8787899;.55584419;.81052488;.24194421;1.9977689;2.1441567;1.4184095;-.56716061;1.3717865;2.0114923;4.5631456;3.3652778;-.15147313;45.697807 +-.71063977;1.447337;-.9023295;1.1728536;2.7158763;.71537966;.0064459685;-.78042608;-.87596148;-.18470477;1.4359773;1.3074628;.81356829;.33026057;-1.3498483;.55366564;.13655673;.57488149;-.042165846;-.66486049;-.38052696;-.82453346;1.5357699;-.87372047;1.1755064;-.41062158;-.66745192;.37364805;.77602941;.32992208;.49269855;1.4358089;-1.3608413;-.86728138;.44407633;-1.3655764;2.2416682;1.8477056;.65756351;.53605604;1.8276877;.63983959;-1.3780392;.31983489;-.49563199;.72775578;-1.2362479;-.8497659;.56318521;1.002473;1.9135659;1.0598458;3.7793894;2.929184;3.4310403;-1.8370255;2.8770087;1.3911281;.26224402;2.7185466;.49170798;5.7731848;1.4182289;-.2306062;3.7630384;.5857901;-1.2325848;5.3327689;1.1109142;3.4244978;4.3764992;5.508975;1.9854127;3.3922963;6.1840005;2.4965944;2.0650384;1.0667324;3.875874;-.58031309;6.3786459;3.4251049;2.1473298;-.90596956;1.6084381;.61902237;1.6535709;2.4596038;1.7691735;-.64874351;2.035542;3.387377;2.8537908;1.7061526;1.7319945;1.5120019;5.8360281;5.7733917;3.4668431;-.28697631;-.5942111;.924101;-1.0141573;.89430153;1.9143126;2.2419238;.63335454;.60491651;-3.0784452;-.091770649;1.8686514;2.8437006;.76123488;.76816016;-.46277088;-.38736364;.67461705;.24710551;1.2321992;-1.1032104;.010013613;-1.5098785;2.6158414;-.2932218;1.6878647;.58635247;-1.0580978;1.7580514;2.0999396;2.8763564;.37585917;2.0801897;-.60257292;2.2170222;.038583919;-.55078006;1.9729689;.58009982;.64564317;1.355675;.56538504;.038555328;-.18671197;-.35354856;-1.7576084;.060849428;-.55213064;.86168098;.3897616;.24611646;.4511885;.57127285;2.0906131;1.560738;2.9175067;-.14484814;1.7618401;.89480025;.43391046;1.6627636;.13584302;4.7601447;-.43829918;-.95032907;2.4882309;.13534909;.23008855;2.3369446;-2.0344648;1.4126518;2.3016653;3.1411138;-.29471827;4.1488876;3.6350191;1.3264486;1.693979;.35644221;2.5271077;-.9209348;6.1285639;.45985815;2.5917583;-3.2666266;.25571051;.17138989;2.4054563;1.1873645;2.43683;-1.0743628;-.32536751;1.2813082;.97769397;1.8883506;-.018691406;-.57981116;3.0041018;4.6951509;2.7571404;-.54794347;61.362648 +.99306571;.90880871;-1.69666;-.54372245;1.9693875;-.78558421;.14904533;-.6746583;-.33230221;-1.1711353;-1.7799699;-1.990801;1.1259708;.71103877;-1.96753;.58956814;.13698605;-1.907764;-1.3550057;.4984487;-.91101354;-.77171153;-2.2332456;-.72648436;.0020879076;-1.4236442;-1.6460104;-1.1969622;-.53279167;.63831639;.99108952;.47967795;-.69806975;-.92412275;-.25283721;.18511671;.85716146;-1.4104987;-.6248132;1.0738565;-1.6307343;.19377683;.14437029;.7330631;.65898395;-.70173043;-.71115375;-.53557187;-.81109637;-.45923293;2.9953325;3.6612508;.83629626;1.2244176;4.6266236;1.9997694;.97801584;3.4308908;3.1261775;.10390889;3.2963643;3.5341277;2.3874681;.15924418;3.6907828;2.7495258;2.0216067;3.3731709;1.6270729;.30519786;4.6185699;5.928278;-1.758188;6.6616888;1.4074186;3.492219;2.0202894;3.3598747;4.0711503;.65710175;-1.445148;1.2303551;1.7479678;1.5582128;-.15729059;1.0744498;1.3247;1.902952;1.8866104;.5114935;1.9401752;.6797688;1.1787952;-.56559038;.49970436;3.222368;1.7235253;2.1259084;5.855947;2.497571;.78781968;2.6289277;-2.7008281;.49470228;-.1222925;.057215493;-.36707753;.11319548;.13910648;-.61433589;-.22012293;-.26693267;-.16157843;-2.0581529;-1.4956071;.22338584;1.2776492;-.78059435;-.29685181;-.36219487;.23172447;.4650403;-2.7156441;-1.3029202;-.53687632;-2.2646182;-1.9581848;-1.2201059;-.73693502;.95481181;-.025856927;.79349506;-1.2938049;-1.8632638;-.097774208;-1.1589165;.44554427;-1.1026058;1.5811917;1.5986873;-.86516249;-1.3055247;-.45056576;1.4707971;.87910593;-1.1583122;-.21737248;-1.5867047;-.61147058;-1.896652;2.856087;5.5589838;-.63535541;1.7724353;3.6194367;1.6399944;.18540317;.53371364;1.774707;.61062378;1.9072256;3.2236383;1.3444777;.045392085;3.0663466;2.8720837;2.3351629;1.1339846;.28764233;1.8520427;3.1148825;4.6521726;-.45206776;4.0027828;1.8068235;3.1722388;1.0080904;1.885452;2.2461109;-1.6380026;-1.1358906;-.24508603;2.227098;.92535931;.12235148;.6392408;-.83292329;.18544753;1.9583476;.8008284;1.5076808;.38571185;.71762931;-.40275061;1.249684;1.4488544;1.416021;1.4009496;4.9923129;1.4816569;42.677261 +.35168239;.18097721;-.48541477;-.40616113;.84098804;-.04755266;1.7484021;-.43687102;-1.2908982;1.458901;1.5613081;.41636664;-1.3387774;.73842221;-1.1926787;.58959776;.59568;-.63673812;-.069738969;-.75984943;1.6034099;.89775985;.25968117;.009366639;.29514137;1.8139509;.34259692;.56045216;.8972953;.92982131;-.76876462;-.012540913;1.4198718;.78776032;-.25788999;1.4018297;-.35897568;.78325123;1.3705103;-.91326886;-1.6576453;1.2508086;.30029202;.84180462;-.93157047;.79934293;-.22998662;.17449589;-1.2000425;-.5214712;1.0321559;2.7201829;1.9394243;6.0675192;2.7853301;3.5192757;.75649196;5.7523603;3.6263487;3.4590683;-.52415866;3.4608386;7.3482299;1.6914483;1.7253993;2.5939984;1.6277372;1.9095137;6.2553039;4.4885774;3.7903435;1.548364;4.7358322;2.6641753;1.7215973;2.0688069;-.18788964;1.9987561;3.6540036;-.23890759;.60310471;3.002135;4.5123205;3.1233644;.74926662;4.417469;2.6178031;4.0243287;1.9778967;-.86867124;4.3032503;1.9426056;1.1533562;-.37446335;2.3080537;5.7442474;-2.456496;-1.1806338;5.0165057;2.6319506;1.1319599;.079096615;-.21861435;-1.413527;1.1706506;1.3202729;.39369208;-.76327926;-.44293103;.12257024;1.2885298;1.7203935;-1.2160372;1.1143068;-1.0128579;-1.0571762;-.6267184;.49779883;.26156202;-.78195649;1.3365725;-.49306849;-.86861253;-.66331279;.83394647;1.0338937;-1.4622295;-.36670354;1.7597492;1.7358537;-.46524283;.52882588;.72271669;.19203521;1.0043499;-.088915288;1.3381331;2.3433492;1.7101487;.91104311;-1.3957793;.63626868;1.6425004;1.4387323;1.3375895;.18139505;.6265766;1.0404799;-.51280916;1.5699731;.42932734;-.64998788;1.7850968;4.8110046;2.414181;2.5906446;1.1020412;1.5369577;3.2735181;2.4207489;1.7539848;4.2073407;5.5801234;1.3399253;1.3072211;1.8525698;1.7230793;.71469831;6.4821191;3.2242162;4.9482498;1.6698097;2.7610693;2.5683134;.42030066;.72984225;-.15371197;1.1268367;1.1715218;.92491102;-.95036769;4.3377361;2.4525094;2.5650394;-.67085439;2.8506148;2.0629656;2.9278734;2.1837795;-.16065536;1.1053891;-.76327229;.2575312;-.77387232;.84816438;6.491497;-1.1639836;.048827995;4.2379274;2.0010257;64.161621 +.00030308464;1.7348002;1.2415857;1.3590126;.96175575;-.25496489;.038282745;-1.6930819;1.5185255;-1.5004086;-.56235182;-.60688049;1.3661968;.46819517;.74422908;.44936609;1.9353507;.4705961;.76635456;.43162981;.59093755;-1.0214889;-1.0627048;.4773491;-.44430199;.11799706;1.0279882;1.3480808;.74288273;-.82584268;1.8497566;-.73734784;-.035706546;.67940342;-.22909354;-.08837159;-.54587859;.6933403;.28505015;-.46107873;.92611992;-.41860494;.68896109;.56305355;-.90000337;-.031552833;.62959677;.68404311;.42703521;.076500461;6.0759301;2.8960886;1.8242644;2.2533255;1.1026814;4.5562491;7.6384406;5.5733209;.82556456;1.4206275;2.0632212;.66244584;.53048748;.79891318;3.2689574;-.88871241;3.2442544;5.595952;4.0765572;1.5116034;2.3601861;-1.1099216;.23841091;.56815296;1.0818075;1.3846865;4.3941545;5.218534;2.5242791;1.9097602;-.19712132;-.53626072;-1.2797508;-.24836904;2.2235248;2.5399275;4.5751872;1.2517853;.10322317;1.1968833;2.7904201;.88354802;-3.8795998;2.9161801;.91073126;-.39992133;1.251948;.12254743;1.8085809;3.3887613;-.17791513;.97097391;1.0653136;-.60125351;.469542;.5420596;-.090842173;-1.0252371;1.5364732;-1.056681;.91961831;.49969515;-.70335764;1.3056637;.62257713;1.5234523;2.3487594;-.026484219;3.229342;.99655056;-.15067232;-1.1580719;.77783006;1.1454098;-.35868767;-1.2296715;1.124027;.77359086;2.6153016;-.017374348;2.0347526;.63683075;-.51830643;2.7226477;.6378116;-.18061984;-1.8932658;.42337623;-.071114138;.29867446;1.9093301;-.82249135;.78410846;1.8382653;-.01622883;.36321953;-.20238629;-1.3533297;1.5772444;3.2889032;3.9330292;2.2808354;1.7074105;1.5606298;1.3607311;3.0232236;5.5685115;3.6444724;.99278122;1.2651299;1.6834711;.52618486;1.2994896;.62409198;.67028612;.29182115;1.7148889;1.963828;1.8090296;2.6415081;.0052749552;.54048598;-.34522951;.20049535;-1.0600771;1.1424034;1.9505911;4.4107418;.67116207;-.58777243;.74354839;-1.6002923;-.95128596;-2.0712361;3.4724948;2.7409248;3.4977293;-.479267;.99739689;-.39822432;1.5432534;2.4084225;-3.0411613;2.3517971;.73432106;.17644249;1.6380529;-.49459913;.2812627;1.5398239;60.372761 +-.61045098;-.27522683;-.50058144;.29442921;.82524645;-.66891026;-1.0856675;-.93055636;.60373044;1.6007525;-.9455238;-.11480846;-.68055046;.41013116;1.8861525;-.67621481;-.27890503;-1.0778974;.67346638;.54681158;1.0612527;-.078308433;.696154;-.39246809;.98255926;.63377136;.032779798;-1.2581729;.56058651;-1.2221241;1.9131488;.53709495;-.069381379;.55102253;-1.3674821;-.27609485;-.053941283;.90376258;-.39603388;1.0228472;-.019539561;-.8235665;-1.2881502;-.46815071;-.04323855;-.10949774;-.0033072357;1.0294704;1.5109845;.779944;6.9085956;4.7551851;5.8433399;.73411447;-.54960245;-1.8036804;-.52567095;-1.3237349;.21780282;5.1017241;4.4898639;3.1766927;1.8712535;3.5776441;4.2303667;.61641973;.71654344;1.6553812;5.696743;4.5611401;-1.9982867;-.91446137;.30357066;-.037104305;3.057163;3.2146924;-.30566072;4.2634525;1.6342626;1.038203;3.618983;-.49853593;2.5791504;-.30466717;7.2294421;1.2998025;-1.1200292;4.2636771;-1.1384094;3.4212482;-1.047457;1.3817266;3.1515884;-1.3785338;1.4529762;1.3384335;1.8919657;1.2045569;.91788274;.78274643;-.85142446;-.22559093;-2.666014;.62341809;1.8601258;-.90353858;-1.544481;-2.7716351;1.2100509;.27459812;-.67130435;.08936628;-.18588422;.63398623;2.0810616;-1.7220732;-1.113892;-1.0363758;.19465287;1.3618541;.4412221;-.14781725;.38775226;-1.5017993;.78546733;-.43127018;-.11554037;-.38916111;.48664948;-1.7770141;1.7797809;1.30944;-.41414204;.87395763;-3.1141226;1.8965819;.098955706;1.5309476;1.4544106;1.5632404;.075696267;-.99266618;.87015933;-.22613139;-.20390694;.98589319;-.20527555;-.87917066;.53859234;.043282092;4.9844642;3.3212857;4.7282715;-1.0458322;-1.5214781;-1.8191203;-.11599209;-1.5522934;-.97628003;2.1830921;2.5789347;3.9731359;-.4517692;2.446352;1.748513;1.2160901;1.6696739;.95152587;2.8727207;2.0989821;-2.0029404;-.060974568;-.46917683;-1.3763626;2.6086848;3.3796279;-.12211548;4.5790324;.78701365;.55793542;1.7581416;-.40151525;1.4680895;-2.4892406;2.1922953;.66371262;-1.3394318;4.3230643;-.67609924;1.5474676;.3374579;-.40650469;1.5888627;.79040295;2.4595358;.35302359;1.0984721;1.6539527;1.5914009;-.62988764;44.640858 +.68759096;1.0299965;.70493615;-.35821617;.93189192;.37675229;-.38033748;-.81369239;-.58153081;-2.0225134;-.20694609;-.12611544;.69730955;1.0249287;-.54652286;.20158651;.33514792;1.3141322;-1.2970958;1.236565;1.471101;-.077594876;1.0947416;-.73825091;1.0516016;-1.0556535;-1.6861819;-1.240839;.60688072;-1.4244392;1.4622825;-.53822666;2.2237659;.30329594;-.53349185;-.16480999;.87636268;-.62530863;-.14725043;1.6942779;1.0700009;-.76094073;.69553828;.35813397;-2.4507995;-.50727403;.040619075;-.63509315;1.809831;-.48332828;2.7508817;1.4333494;4.623198;5.8634915;-.63977951;1.6697943;1.8886389;.71512079;.24605566;1.7742614;-2.9471684;3.7132325;.11318363;2.3287547;6.035903;.74601972;1.3835292;2.3684099;-.58504415;-1.250725;2.5648959;4.4416604;3.6824961;2.5596092;1.408803;4.358294;-.043284662;1.0137259;3.1475945;5.2532539;2.988941;1.7624511;.89342892;1.6990033;3.653456;4.444387;2.6923554;2.9195411;1.2425398;3.7003362;3.5357461;1.0835397;1.5935667;.92665309;5.6689157;3.7472057;2.5272424;.18187293;.55134779;5.9674511;2.9893043;1.322558;.19897556;1.4416536;-.092906974;1.3433566;-.32481903;-.61225009;-1.5594529;-.72863084;-.75204206;-.048822533;.74214327;-.29917568;.091178618;.011409248;1.932937;1.3288637;-.018046282;.19059671;1.9721196;-1.0822616;.087716073;-1.2120587;.44372323;-1.7442809;-1.7059953;-.41875604;1.4635843;-1.2522191;-.56758338;-1.7463766;1.5036943;1.2276227;-.86653578;.8555727;.53341514;-1.5950068;-1.054635;.44949761;-.092048392;-.85456264;1.0225224;.56973898;-1.2792617;.020567898;.030886622;-1.7176163;-.26456377;.30236632;2.1490216;-.21155761;1.8200427;4.4172001;.33355096;1.4556473;.49941891;.84540778;-.78372878;2.2179649;-3.2164085;2.3137107;-1.1899834;1.6304313;3.8343744;1.0543311;-.81664169;2.7366066;-.4738901;-.39012396;1.5615689;2.4704537;1.4971188;2.5344908;2.5117769;2.975127;.5844934;-.14542057;1.8802962;4.5240726;2.3057563;1.6289707;.63294929;1.2070922;3.622004;3.2921567;1.6048496;1.2768347;1.4469121;2.5562916;.55304754;1.1136715;-.14942421;.2292833;4.3637547;2.2885871;-.23810348;.54344678;-.88241577;4.5253315;58.648266 +.21243669;1.2352947;.66537559;2.1830864;.83093959;-.48792785;-.90213585;.13497201;.92770553;-1.3046509;-2.2547498;2.1745381;-1.0815803;-1.405627;2.3325214;.47569597;-.68534267;-.25272363;.81168103;-1.1288773;-1.6970036;-1.4275368;-1.0804548;.90940821;-.31950596;-.040705141;.22328125;-1.5689569;.99987912;.050155405;.48008457;-2.3919368;.024882488;-.1727975;-1.5561023;.63374776;-.16413173;1.4795662;-.35507184;.89852738;-.24280858;.57884806;-1.264228;2.2967186;.87650436;.57640612;.94004554;-.4010236;1.2657541;1.1483353;-1.2779462;-1.8682623;2.2361023;-1.3080773;1.7655134;.11933748;3.1180689;5.1014347;3.5697529;.69966745;4.2913322;.55909669;.46321332;2.0507259;2.4145117;-.53976697;3.3959575;.74568069;3.591717;2.4324515;2.1351376;3.61392;5.705636;.72183347;-.017793735;.191535;.61959529;-1.2866251;3.2412355;2.8565447;.98848438;-.36245334;5.5375857;3.2619116;.85427469;4.7353907;-2.0652769;-.3560411;1.7091537;6.1553717;-.44128355;2.5312068;2.9947858;.6826973;2.0428257;-.46832508;.82320708;1.6720747;2.0715508;.21970072;1.8513501;.1574862;.17713337;1.9944878;1.1141387;-.30809695;-2.2573507;-2.9445941;.90758216;.57857525;-3.1503553;2.231216;-.67343152;-2.190985;1.9664418;.40989906;.59211332;-3.39029;.82982618;-2.3729405;-3.6431739;-.099888556;.015639307;-.47356418;.35941178;-1.602986;.40521166;-.80809397;1.5784111;.0048584347;.6857819;-2.3961096;.60318172;-1.2250071;-1.0896651;.30601078;-.295847;-.71602494;-.54022396;.12266298;1.6721342;-.30109164;-1.0159826;1.4179831;1.4307632;2.2915602;-.42089337;1.7088691;3.7563777;1.032186;-3.1066189;-3.1960735;.093460537;-2.5743051;2.1351764;.43386585;2.8839104;2.3990324;1.6206498;1.1913955;3.3522899;1.2974164;-.8856073;.81529874;2.3886588;.3480531;2.3457017;-.1909159;2.4898162;2.0010111;2.0933623;4.9771399;4.1956205;2.5239823;-.16508584;1.8168634;-.53020507;-1.924683;3.3313498;2.2895811;.57414472;-.09181685;3.5597966;1.5899329;-.49347955;2.6634903;-.093520671;-.50011986;2.1594977;3.3205647;-1.7150447;3.0956657;2.6173859;.046307091;1.6490905;-.27024525;.15508756;.65484053;3.1670976;.54427528;46.759823 +.64721346;-.15774131;-1.0687628;.79583478;1.3405391;-.62774861;-.084645465;.3575232;1.1808633;-1.2200413;.50246555;-1.5957943;2.2833955;-.067631446;.41559216;-.41412273;1.8534486;-1.4916921;.12602827;.60850757;2.0992668;-1.5273381;-.18655246;1.2477459;.1383861;-1.2456571;1.1914943;.73985767;.91233808;1.7978259;-.15986425;-.076201424;-.18124935;.91404617;-.58354133;1.8045862;-1.0982647;.010927784;-1.1157136;1.2107476;1.5265267;.052916151;2.1472726;.27346516;1.1444215;1.4429122;.75882018;-1.1308081;.22839224;.00152002;2.7898328;1.9491483;.35752285;-.060646079;5.3110018;.86273581;4.6497188;.80318165;1.3758832;-1.0571213;4.0345316;1.9694281;.99398607;2.6446521;.071279578;4.7237396;-1.410879;3.7007105;6.2482395;3.5747025;-1.4286317;2.1941884;-1.6593463;2.988142;-.43486834;6.5489111;1.9020486;4.890007;-.024401836;2.7221255;2.5320835;4.6946177;1.4092966;.92404419;2.7727549;1.3664943;-1.4599224;2.6687534;2.2677143;.48719662;4.6420269;5.5727119;5.7094593;-2.0231888;1.7963738;3.614728;2.6075301;5.557157;3.3612981;.79613048;2.2847018;-1.60514;-1.1397362;2.4512835;1.8340137;-.62139493;.79220366;1.4331628;.29386872;-1.6790104;.60827315;-1.1781088;.069318525;.70461023;1.4921895;2.1363823;1.1693792;-1.1704327;1.1237469;.5290401;.37970722;-3.3982329;.83592302;.55439472;2.1102557;-1.2552601;2.4230537;-.079486676;.13072982;2.0184166;-.42120573;.71613139;-.67839706;2.1999795;-.42152998;2.4435856;-.089350045;-.32862261;.42848799;-.35312444;.34245482;-1.0233668;2.4216707;.89132619;1.8233202;1.2542679;.47797015;.25163919;.78904396;-.36373347;1.6708769;2.5698476;-1.0922333;.88827753;5.6893444;.54463643;3.8290417;1.4346443;.59977245;.8143521;2.623688;-.40428028;.84643501;2.3359892;-.50140584;2.9913776;1.3010762;3.8995204;5.0161104;2.5346141;-.51222003;.17343351;-1.3001275;2.9586728;-.071079053;4.1375265;.84609848;3.4371409;.037444837;1.2160701;1.5979772;5.5282907;1.9143423;.87390906;1.5718646;1.6348094;-.11056539;2.2275209;1.3240343;.46771345;5.1181021;3.4997568;4.6363816;-1.0212539;3.2392976;1.1597513;3.4374864;3.6194055;2.2205348;.61547059;73.025116 +1.0544132;-1.7339588;.43309626;-.97721237;-1.5972674;.71599257;-.26727688;-.78203607;-.36549023;-.013188017;-.25819993;-.87007165;.96232569;-.63720912;-.86860824;1.4335259;-.54018009;.25410426;-1.4190025;-.21495156;-.41391808;-.95073515;-.78571522;-.85168314;.72794104;.36864147;-.46468461;-.050987553;.017302947;.37930512;1.0593227;1.3562206;-.54861504;-.2486192;.90798903;-.75479096;.46912324;1.2864468;-.81274688;-1.0122696;.67903578;-1.3613629;-.30066377;1.4944807;-2.6868558;.6784395;-2.0829146;-1.3411247;-.380463;-1.0750134;-1.4549162;1.1578562;1.0210248;1.0008923;.41885206;.35391548;3.1011026;-.14667869;5.2670069;2.3545802;.58138162;2.6871202;1.2228975;3.4411194;1.4568949;.55561858;4.6559167;3.0464759;4.7146549;2.7246399;1.750681;4.0941501;1.7720413;1.9001472;1.3112539;-.023723843;4.8549457;3.7031322;3.1139517;3.2423503;4.719635;.52952373;1.8321724;2.3361502;1.4866533;-1.6443373;3.8986807;-1.4480374;.72765887;1.8194419;1.5883399;-2.1562884;3.5728796;5.029202;-.17123045;3.7819085;1.0650796;1.3860126;2.9737566;6.1344175;.55617577;.43084371;.28693315;-.40872586;-2.0961678;-.86276782;-1.0956817;-2.0085602;.38945869;-.6442315;-.39681786;-2.2441206;-.33014411;-.56701833;1.1107154;.95785463;.58828884;.29022032;-1.1879655;.79551744;-1.9163649;-.95065123;1.4948345;-1.6941856;.24657574;-1.3866183;-1.1969382;.74203312;-1.3212136;-.99736083;.32289022;2.9413381;-1.80553;.76136178;.080744095;-.82862508;.59143132;-.35003006;-.96708328;-1.5458959;.53496665;-2.3259399;1.6678782;2.5838904;-2.2310617;.62533867;-2.3145027;-1.4116852;.92333072;1.1418345;-1.0365329;1.0950286;-1.1060448;-1.3384885;-.44083098;.10544682;2.6506228;-.34259507;2.7955019;2.8342264;-.073007643;4.5568886;1.63441;.46333951;.48273236;-.3682535;4.2722402;2.8311396;5.0915918;1.619343;1.9151947;3.5743394;.59850311;1.5150518;1.0965753;-.70976502;2.8013172;1.9024762;.75844264;2.3945205;3.8217425;1.0003798;.89750326;.38441095;1.54199;-.017836617;3.1001351;-.54383099;-.17385603;1.9354203;.52802896;-3.1475372;4.237886;3.3582826;-.46494427;5.5263276;-.144117;.64751643;3.1338575;5.1005917;34.794838 +.27156064;.26222557;-1.018292;.39812508;-.86918515;.39922804;1.7221615;.049405526;-.4618558;.88963795;-1.3703576;-.86643809;-1.9780182;.075038508;.16217366;-.23491059;.0046876059;.72783661;1.0771626;1.0894742;-.35810828;.18579899;.23146904;.078062609;-2.3840761;.85524535;.036333013;-.73281533;-.35818034;-.66619354;-.37750977;.93913877;-2.0873978;-1.7906885;.801507;.65347892;.040386073;.71711814;2.2179439;-1.4280056;-2.3368647;-1.5500336;.64561462;.44806269;.67796671;-2.5046463;1.7545961;-.83831769;-.47194603;1.5360634;.74042684;6.235754;7.4340987;4.1084676;5.009686;.7114718;2.4185383;.92910951;4.1676064;.84581941;2.1300254;1.9279335;1.4900215;2.4166746;3.6168728;2.2018116;2.7661228;2.7149115;.85589927;2.040062;2.1830592;6.5790477;5.2212553;.92417371;2.2128894;3.3572834;2.5923471;1.416651;-1.3768995;2.4670372;2.4137397;-.47320244;3.9586415;-1.1722944;5.9722204;1.1470199;4.9642549;2.175957;1.1590228;.37293291;-1.2246499;.34089264;1.7775214;3.5297132;3.9921176;5.2430778;8.6293669;-3.2976122;1.2179625;3.4251957;.19312078;.67603588;1.4838407;.25087571;-.81959963;1.5514848;1.6730375;1.1567625;.45475337;1.3938354;-1.2220136;-2.6508844;-.64033747;-.44206238;.22257107;1.4235419;1.3368385;.18428464;2.8346982;-1.442376;-.63453674;-.16807717;-1.0464796;-.060599025;-2.3617396;1.4652764;1.8075074;-1.0114484;-.56518626;3.254832;.75748616;.92759556;-1.0568472;-.72977829;1.7785033;1.481236;-1.2818995;1.167263;1.9596697;-1.5752857;-2.3408608;.25902331;.72213727;.48430952;1.0693685;-2.2548153;.27781984;-.11976267;1.2089028;.4943091;-.065466955;3.1425698;4.9036045;3.5517378;4.5701046;-.91340888;1.7434462;.75754613;2.6546547;1.1363034;2.2103119;1.7434982;1.6892242;2.3739886;2.5056183;2.813338;1.4623159;.25666523;1.3569291;1.3834698;1.236322;4.2359233;4.5993171;.23584943;3.0608737;.93568593;.44278368;.70193976;.90105242;.090793453;.55007607;1.4824749;4.8176122;-2.54935;5.0021205;2.3747499;3.191468;1.6275123;-.2557773;1.1388837;.77630407;-.68704236;2.8264039;.97207654;3.6124096;3.6986487;5.6968188;-3.1349123;.48555478;1.6646234;61.538033 +1.2634989;-.85738111;-1.2507216;.3140341;.61410981;-1.0620204;.049344022;.92472225;.47294915;-.3417829;.90591377;-.5032236;1.2554183;.10521825;.056413319;-.94372356;-2.0317869;.12258825;-1.1228917;.19789304;-.012200972;.76336855;2.1954112;-.60957599;-1.1837627;.87377191;.20677435;1.5660448;.55189157;-1.2460674;-.42206287;-.1352708;1.7744484;.0029579864;1.462523;-.88745779;.53010046;-.47063869;.38584718;-1.1617408;2.5244479;.89387375;.78569984;-.05965697;.70573413;1.2150726;.37752211;1.5071269;-.64954317;-.23716524;-.47067839;2.9642973;5.4134212;2.4421654;2.7296953;1.4154655;3.1784143;2.4339931;1.718817;-.80997264;3.0220559;-1.0042922;.043350562;3.2229939;.8695758;6.1668072;3.1853893;1.7728662;-.43835509;-2.3527985;5.1653204;3.7775283;4.1073718;3.9426076;4.7885394;6.4178987;-2.4998069;2.4892824;2.1033809;-.50323117;-.76894736;1.0255473;.30948487;-.91662288;.44475323;1.826535;4.3238306;1.180463;1.3196015;3.728296;1.4480311;-1.795321;3.8662429;.92586333;2.629271;8.4665108;4.5426621;1.4846624;2.8479598;3.5347259;.55288303;.14578822;.50121564;1.6217831;1.1565212;-.20120569;-.68144506;1.0058346;-.21819067;-1.1662554;-.35273796;-.64959282;.27797073;.88131601;.55953121;-.0085699214;-1.3841902;.80276161;-.60147041;1.7635174;.097328193;.37047356;1.8527808;.59736151;-1.5196095;1.6367172;1.786554;2.5557461;1.4164536;-1.3153087;-.70186007;.99995857;.35521528;-.39894322;.3349188;-2.2063987;-.15213223;-1.2791386;.53471291;-.96928978;2.8082058;1.1624987;.30164027;-1.3795393;1.5624152;-.25399488;-2.2392182;1.2253666;.61113489;-1.5590861;-1.9790186;1.9740198;2.8381827;1.0661393;2.4396317;1.2167907;3.0402722;1.1455756;-.99638069;-1.0079139;2.0964992;-.5533675;.29095617;.30067641;-.59483141;4.9942279;2.2844591;-.079869509;-.15139532;-1.720594;2.7470202;2.1470377;3.4489348;.34607556;3.8942313;2.8699965;-.66024476;1.3498422;1.1404649;-.31262022;-1.5300258;.31788778;.42850423;-.44226387;-2.0837088;.29999623;2.3201613;1.8401097;.065138072;1.7464006;1.9123502;-3.1800282;4.31284;.74000818;.73291904;7.2215972;3.6217527;1.3126487;1.4596685;2.5458803;62.831051 +.15477011;.76109737;-.8924787;-.12478337;.58054495;-.55368179;-.51201266;.043618985;-2.100343;-.46873564;-.27212796;-.86990732;.69862163;.23241811;-.50561202;.33502752;.65337646;1.7420157;.079647437;1.0245421;-.81112963;-.81522715;1.0003027;.08898174;1.2850404;1.5170704;.88080984;-.6580019;-1.5979885;1.6212062;-.41675708;.70075881;1.2936301;-1.2471014;-.37182578;-1.3214655;1.434865;-2.0938683;-.91974056;-.85879028;.3356905;-.30892304;.0062414031;-.58211666;.28866729;.63123453;.029203851;-1.7980002;.39280638;2.3846354;4.0684843;4.1585393;4.7071209;2.3027692;4.1568346;1.4668286;2.0730126;2.7931037;2.2119265;2.9105175;.93083352;3.7603238;.2987605;6.8860869;-.26455203;-.81380522;-.14807558;-.54242849;.97780859;4.9793649;.84400636;-.60309327;1.2776228;3.5176494;-1.3417507;.24493268;.72230232;.38887855;2.0054975;.065954298;5.7308779;1.6274993;3.2986894;.28125054;.3478637;3.5813348;.58006877;-2.1151421;1.3411062;2.7926033;2.7727127;-2.6841822;2.8422728;3.7639561;1.7282751;5.2975979;5.6028857;1.482962;-.78148913;.9720006;-.65964252;1.8525532;-1.3974701;-.045510154;-1.2325379;.72804755;1.6259702;.069853328;-1.7234979;-.73118156;.5761705;.73084772;.88346833;.15963688;-1.5819014;1.8738971;.12660649;.35413143;.11969186;1.4755901;-1.4574057;.29948542;.0147443;.76609582;1.9899998;2.4805763;-1.1592675;-1.4365096;-1.1761041;1.0339521;-.93212509;-.89002103;.60405117;-.25860915;-2.5189006;-2.1183584;.46657881;-1.9923207;.6564104;1.1707985;1.3193295;-1.6880113;1.5386739;-1.5966711;1.0807025;.68727875;-.75357705;-2.051789;.32384539;2.8276634;3.0265839;2.0169792;2.6092188;-.12365177;1.886192;1.7915947;1.9417886;1.6128548;-.2516059;2.3380251;1.4332849;3.0821033;-.18387504;4.30897;-.10460754;.44416541;.50983161;-1.1365268;-.51686656;2.693609;-.20415787;-1.7923654;1.79357;1.7656167;-.73836172;.1498365;1.3816485;-.45616829;.91872317;-.77442044;4.1519465;1.1554841;3.9439983;.57890499;-.23478465;2.6245427;-2.213599;-1.112941;-.072067633;2.2428958;1.8638554;-3.8281751;.82730645;1.860305;1.0166415;2.5310247;3.537014;1.4729964;-.68453848;.063004635;43.687141 +-.2558859;-1.1210053;1.3184705;2.2267835;-1.272764;-1.7866919;-.22798914;1.2402472;.58590281;.59050751;1.4989622;.64523578;.96537125;.93011862;-.56614;-.90083796;2.0988798;.57537448;.15024363;.56455493;.14864448;-.18408701;-.19690163;-.3617745;-2.2089021;-.42538425;-2.1183305;2.9699361;.018533094;2.2876198;-.77359188;.8459549;-.35096592;-.39240283;1.2273958;-.84225768;1.0132936;.55415493;-1.5987282;-.57713777;2.0800421;-1.5482229;.68053246;2.2295625;.28828871;-1.4682721;1.2184066;-.056725238;.033002842;.39358294;3.1840441;4.8394628;3.1478794;1.9300802;-.56679207;3.5018673;4.3227706;4.1568251;-1.0608745;1.0643489;2.3689001;3.1292846;1.8120761;4.8313437;1.7623847;5.7293463;1.4879162;-.15569915;1.3709384;1.6707294;5.3537054;3.8846965;-.77333206;2.6554084;-.019744663;5.3629985;3.6719129;-.51955324;1.1286941;.73461729;1.9607199;3.3933311;.67395425;1.9361377;.99037009;2.9128499;.25017974;2.7278798;3.0984159;-.1574201;2.7797489;2.6138554;4.2783275;2.4811096;1.2966506;4.0534101;4.6324563;-.52197558;2.7809446;2.3643491;.44368201;-.075251259;1.4625162;1.0561918;-.9752357;.38483232;-2.6424348;1.2102151;1.6059022;.44467846;.59725535;2.3282483;.97311634;-.32807049;.29316977;.14759983;1.8519167;2.1286054;-.9363569;.29441139;-.94369698;.62688327;1.4224004;-.91683936;-2.102365;-1.1097363;-2.8551922;3.1542017;.69966781;3.6521263;-1.1163067;1.6907816;1.5077941;1.2181385;.67062509;-.51016313;-.0085663768;-.45381525;-1.6908575;-.16946445;1.3877549;-.98613995;-.27099964;3.4327984;-.397632;-1.2257354;.68537354;-.61315393;.60209668;-.55926949;3.3750246;4.4126892;2.7637854;.97168165;-.72710025;2.1432264;2.2078204;2.5625606;-1.1274041;2.123946;.84158087;1.0474045;2.6429217;4.0150409;.77468759;5.7545681;1.2077034;-.70909178;.8788861;.17851599;5.2221055;2.9105158;-.88477111;1.4939228;.5757212;5.8070674;1.531394;.024553472;.076485664;.54591745;.58103973;2.6985171;.81076235;-.22883886;.69345653;2.0871093;.68788749;2.3049252;1.6236632;-.20656353;.65304762;3.3102205;3.7127399;1.9003093;1.3664893;3.2499893;3.693476;.079864874;2.6133673;1.2130756;63.595249 +.75693041;.091893233;-.91389644;.75937682;-1.2540226;-.47768214;.097801089;1.4471519;-1.1277357;.020659475;-.29065776;-.51082391;1.812269;.77395087;-.0043328512;.14204437;.90359157;.11204107;.43674928;-.19567171;.088329211;-.52596879;-.023025163;-.4103874;1.9182094;-.12117382;.2297733;.70972329;-.46432886;-1.1688288;-1.404942;-.042300865;-1.7434998;.023173681;.433842;-.55425841;-.51352882;-1.2470497;-.01556858;-.19448763;.62178689;-.34361342;-.56736106;-1.1777627;-.3704479;.084629975;.3929497;-.28584158;-1.5413362;-.63254279;3.234422;2.7708676;3.2814772;1.8328294;-1.8109121;2.66324;1.521044;2.5818622;5.1231542;2.4037764;2.8817286;.69395304;-1.0623507;.65845484;2.43012;-1.1446155;5.6837673;2.522882;-.36639634;4.9181128;2.3828101;3.445194;4.473207;2.5455036;.38312617;3.4146533;3.2913277;2.9029331;3.7155397;1.7664177;6.1691046;1.5332527;2.5515223;-.0052554826;2.5131259;1.0253394;.86201084;-1.3183409;5.1160612;2.8876421;4.0921402;4.0657253;1.010473;3.1913953;1.4062512;2.1934879;5.9445124;.081890173;2.6686566;1.7310101;1.6802641;-1.3457497;-.40214926;-1.3766054;-.3261193;.17668368;1.0495265;2.7504432;.13781002;.0057756845;.42925161;.66138905;.19363306;.088671207;-.95593262;-.078059636;-1.1949437;-.2726545;-.14933194;.21098644;-2.2828574;2.332953;.36600581;.15826876;1.535585;.95898443;.34548959;2.3149424;-.51504987;.51180083;1.3729966;.79168069;-.93076271;-.42270508;.13210534;-.25398755;-1.0835359;-.30103922;-.03410304;-.65099865;1.9243124;-1.6449498;1.2740034;-2.2138894;.86350298;.45950139;-.22280517;-.73458153;-1.1144998;-.3441267;1.2219039;1.3918909;2.277343;3.8734097;-.70978373;2.5464947;.5310477;1.8342907;4.0929627;2.0314865;3.0155253;-.49499196;-.10737186;-.40733293;2.0725889;.17353438;4.4378867;.26931456;.77207989;3.2989061;2.3854656;2.2785654;3.2789838;.87795639;-.95522952;2.9756036;2.858443;1.8603255;2.9186609;.85486901;4.484138;.019748228;3.0478346;-.61854333;2.2910275;1.9660596;.68589646;.93864661;4.245203;1.6960578;2.7631748;2.5086071;1.2088494;.79513991;1.5501956;1.5018036;3.7425077;.63913405;1.4093423;-.27699378;48.132954 +-2.7483284;-.60306627;1.8258557;-.81160516;.1099482;-1.2209922;-.73122174;1.6885569;.67385191;.72184241;-.11469615;-1.2451619;.56304431;.90163314;-.53825277;-.47764736;-1.0937402;.8822425;-.9536972;1.5039862;-.66495216;1.0195514;-.09992741;.36664927;-.69824284;-.97351319;-.98010695;-.24396989;.0010387811;-1.0524786;.41743022;1.0278544;.60285234;-.57782805;-.30224442;.55041581;-.62063414;-.27376005;.32896385;-.10806703;.41177365;1.3368355;2.9827292;.028465033;-1.4863394;-.57927001;1.9053087;.77218103;-.78015345;.97706556;2.9093418;2.9998701;2.843009;-1.2121073;2.1351957;2.1880603;-1.2758712;1.8801581;4.3286481;-.11044755;-.89487547;-2.9001055;5.8491116;-1.9560465;.093646079;5.2167835;3.0924664;1.3338904;4.9469762;5.3093996;1.4859563;2.3362222;2.1347837;3.9719672;4.0350766;-.43510726;2.3524818;1.6132654;2.6469204;5.126955;.3312152;4.761447;4.0170808;4.9075894;1.9668356;-.77140003;3.2724094;5.7680736;1.9253415;4.1171417;4.1390829;-.033895005;-1.0005714;2.9609308;3.0222321;1.1567256;.10086007;.77669328;4.3115559;2.3099961;-2.0925376;.43762422;1.2217959;-1.5999087;-1.2254218;-.28161752;-.30432904;.74285454;.26198071;.73073888;.039509431;.49174616;1.9313221;.73149282;-.94432056;-.4679279;-.91008228;1.7938541;-1.1057669;1.6468707;-.79265654;2.3563275;.29861894;.7863974;.58247948;-.47610882;-1.2379825;-.82792735;1.1421226;-.95715463;1.1039878;-1.1455537;-.234317;.070480734;1.0444416;1.7395219;1.6022012;-.97406042;-.13966759;2.5652046;-1.5302871;.59016448;1.3829297;.21474621;-1.3885854;1.0199679;2.1957045;.29319945;-3.0090196;-.59548271;2.0821855;.53089625;.26850072;-.65244305;.92513084;1.9365062;-2.718147;1.8621229;3.5783186;.73282486;-1.0145557;-2.6753004;5.4164567;-1.293543;-1.4218498;4.1802063;.55088764;2.1809344;2.2390356;5.1676245;2.2723796;.46016982;-.055340175;2.4084289;2.0445569;.12315046;2.3041418;1.2899772;3.394397;5.5050783;-.2498396;3.9948246;1.9015968;3.510987;1.1083926;-2.0171537;.65181208;5.0004697;3.1899433;2.6280737;2.8822484;.15120892;-1.3694043;1.8160607;3.5802672;.43906248;.16267477;1.1462852;4.113296;2.9930394;54.636368 +.82641476;-.92301285;-1.0390393;.58596396;1.1110177;-.21536036;.9099471;.99794942;-.14686753;.69251657;-1.2495247;-.82821065;-.64653158;-.66041756;-1.4365544;-.50771827;.32838076;.085039452;-.59292132;.60860634;1.0590233;-.076289356;2.4073844;1.7745687;-.16859403;.50492001;1.1352931;.31221631;.30329433;.23187435;.053225901;.203006;-.79087996;-1.8308992;-2.3090491;.83450329;-.60994422;.84760576;.48751059;-.41817275;-.81145364;-1.1867576;2.4633882;.89960933;-.20886937;.59467101;-1.9582019;-.40420213;-.977323;.73133534;3.6178589;.018357195;1.737398;1.2406989;3.6560881;2.4919553;-.048390962;1.4398338;.86913335;.24452987;3.7229943;-3.158618;4.9754834;2.5872607;5.9370179;1.8235148;2.456682;.82919759;2.6582131;.43208137;1.8076236;-.38668647;1.0118845;.7290681;3.0199761;1.7618285;.71824622;2.9111662;5.04036;5.0069132;4.5210638;6.3266783;1.4765979;-.59575123;1.8970417;1.7619662;-.80613506;3.9155149;1.8694179;.32069528;3.9386489;-.60564595;-2.0673397;2.7098143;4.2068963;3.6686795;4.6868181;3.990792;.18171431;4.026289;-2.3602202;-1.3768264;.25697571;1.954995;1.8855742;.95974892;.15342344;.95162886;.37602317;.53260314;.94623697;-1.1299177;-.95415163;1.5010145;-1.9301022;.49048847;-.88310409;-.71848339;-.57358688;-1.172779;1.2826533;-.30321515;2.4084804;-.44532675;.97485769;1.0096476;-.40988201;1.2341985;.13303733;-1.2821414;.86566848;-.0045209215;-1.4304945;-.62940413;-2.0564365;-1.4422239;-.46045381;-.44389203;.69534266;-.85498148;.16172454;-2.2165883;1.7970624;2.3310089;-.88681012;1.0979316;-2.1878474;1.9766809;-.78281325;3.0858757;2.7574549;-.24323262;.81420177;3.3285608;3.6973689;2.412816;-.96935451;.33633026;1.200027;.80655468;2.1094933;-2.3421233;3.9296529;.6834833;5.1782155;1.3719798;2.6603405;1.6895335;2.386538;.012973446;1.5160899;-1.212558;1.2858075;-.015778784;1.9554431;2.0342808;1.7592133;2.5523248;5.1317816;3.9112773;2.749279;4.6498103;1.9170827;1.4761485;.51256812;2.055073;-.32100952;2.3224885;1.8007517;-.77573633;6.1441574;-.61094201;-1.9123857;2.0595121;1.8516464;1.7302409;4.4398026;3.6128576;.60124397;2.4372935;54.01334 +.43171346;.92185426;-.28804794;1.5139295;-1.7561023;-.81779796;-.30630094;1.0139261;.21084748;.91878462;-1.6481694;-.78221077;1.2383099;1.4260256;-.4177703;-2.1074309;-.63230878;1.302265;-1.8041203;.4719632;.23742723;-.21353181;1.2354324;-1.2611964;-1.4850564;.71118736;-.50320572;.5471316;1.1654686;-.24564378;-.92516208;1.3013406;-.0028810697;-.53055143;.87712818;.8945387;.74915695;-.57907385;-.4400596;-.23218384;-.096619494;-.52518994;-.076931879;.2293805;-1.3414078;.81262696;.96796548;-.32579383;.008074169;1.2212354;1.9488986;1.6100775;5.3979969;3.1632488;3.7915382;3.801126;2.4318826;-2.4040143;2.4641733;1.2037814;4.6197562;5.4205136;2.5851905;3.5838261;1.736594;1.1588514;3.5617528;2.1471717;3.2575462;3.1628745;3.2239447;1.6918595;1.3023322;2.4918671;3.0830879;2.7854695;3.7509489;3.2535012;1.1324054;1.6794122;3.577333;-3.2138195;1.5181464;-.047052439;1.508118;-.64735448;4.2978463;3.4696436;1.3437493;1.3327373;-1.0502301;3.5407245;1.7769769;.8403641;-.62716758;2.6730576;1.6326681;3.6023796;-.61181074;-.22793841;.89073461;.24173196;-.26030803;.30322659;-1.7256738;-1.4674088;-1.1649466;.016156973;.37956703;-.45298681;-1.5657325;-1.1612163;-.9300009;.89947486;-.67965472;-.61854917;-.23415022;2.2356942;-1.2682002;.026547724;1.3962225;-.97694689;.42466545;-.87302101;-2.5031595;1.210798;-.92772979;1.1018068;-2.8129313;-1.9755317;-1.1388141;-.36509782;1.7825977;-1.0842971;-.10604759;-.136482;.84837902;-.11168766;2.0226874;-.12782928;2.2064705;-1.3285934;-.63794518;-.36735263;-2.1589055;.42995071;.40384442;-2.1409738;1.254685;1.3011639;.61858118;1.6344442;4.6662722;2.8088048;3.3149586;.68527943;1.2549267;-1.7778933;2.2551458;3.2603173;3.2977409;3.1919656;2.0038779;1.4207773;-.17875263;-.50916654;3.0991614;2.3178535;2.9079926;4.656713;4.3050599;.30038083;.62749398;.77327609;1.7364094;1.4496717;1.5919679;1.3440043;.41463748;.39606452;4.0784135;-3.8806815;1.4588016;1.8808339;-.02333075;-.8868593;4.1647673;3.3163781;-1.5019081;1.4462985;-1.4179626;.92266226;.94319206;2.5713794;-1.9929073;3.3978429;.14132275;2.2730637;1.0412563;-1.9034165;50.560993 +.36689565;-.5609529;-.56266481;-.026166392;.1718165;-1.1996;-1.2999576;-.25450453;-1.0383976;1.6018382;.88551623;-.88469362;-1.3614705;-1.6122894;.96521151;-.9737317;-1.8278708;-2.1224623;-1.1249584;.68054336;-.60260755;-.17480564;.95922405;-.023568597;-.27751255;.6769653;3.4481061;.12525874;.92024171;-1.7856658;-.5633989;-.12813306;.55848092;-.23970556;.3219223;.3710444;.10377596;-.39781621;1.2877324;-.26337153;-.54952073;.56087154;.626086;1.1966741;.87257761;.44751823;-.19509068;.23325124;-1.7097181;-1.4212147;2.1720808;3.0854497;2.452523;1.1469191;1.2095004;-.34615755;.555668;-.43111518;.35881478;1.6761197;.73176849;2.4479961;2.6380064;.93162709;1.7970904;-1.4089488;.080735832;4.2013378;2.3573713;3.4857283;2.4320083;1.7840165;-2.7027578;-.20537746;6.168571;1.796801;-.093646422;2.0697329;5.1890726;3.0876169;6.1865182;-.50452679;4.6413574;1.236056;.636917;1.8809493;2.7761154;.93058383;3.0133767;3.5012734;3.8027945;2.7437816;1.520262;1.7574794;-.75587016;1.7770193;-1.4867904;-1.5224335;3.6688302;4.39921;1.1868922;-.97597194;-1.2589983;.0020581286;-.61930883;-.41895345;-.1381572;1.2719992;-1.1361605;1.9393084;1.8978339;.38573059;-1.4612563;-.9272275;1.3268861;-.35058483;-1.1138471;-1.9285595;-2.5336573;.1019147;-.045461588;-.43138862;-1.6615758;-1.0976022;-.47170505;.92870742;3.8825026;.68026817;-1.2060487;-.36658278;-1.9306467;.82044852;.42223331;-.26544058;-1.7814348;-.021089222;-.28824511;.10887777;2.6232736;.57055748;-.86396837;1.2383002;.66856092;.77918398;.52434683;.60928106;-.46814209;1.5008566;.70282465;.17417364;1.5859108;2.3660889;1.6819327;-.3690145;1.6065358;-.54429877;.92562282;-.063695408;-.85888755;3.1995542;.45236117;.87163049;4.2609572;.85743392;3.060462;-2.6361568;-.18216239;4.1720138;.62947822;2.6163726;.98749197;1.1046858;-1.5745443;-.5949744;4.1733184;.48876706;.60718507;.21199092;5.3380089;2.3713577;4.5145321;-.45255691;3.4403968;1.1071737;1.6156644;2.6794872;2.6897745;.036192607;1.5484054;1.6724447;3.7157731;2.5046062;.11041208;3.3511097;-.79639488;1.5163939;-2.2226827;-2.3499169;.37987754;4.6374111;39.370247 +-.71762604;-1.2722918;.29892442;.31865987;-.1161465;-.48879823;2.0067878;-.6006121;.71327323;-1.5186198;.25018844;.7003442;.32909551;-.57244456;-1.1791809;-.021245081;.59095418;-.48218015;.032297589;-.70570654;-.51457769;1.4533733;-.83153659;.82561058;-.17183255;.70128274;-.53941685;-.90583849;.22363363;-.18554719;1.2364908;1.9476258;.77099419;-.85066777;1.1953623;-.89924973;-.27364853;1.3168547;2.8691654;.18005736;-1.4984956;.63467562;-.74359667;.10419651;-.24083413;1.1653732;.11089852;-.49563837;1.0139146;-.084536485;1.5134187;3.5457182;1.9798225;1.467943;-.315667;2.3325734;3.5510662;-1.9243389;.66237086;-3.95029;.1061147;1.298329;1.8445657;-1.4217378;3.9542444;4.6478653;1.4688864;4.9595094;5.0455565;3.0444555;.43071601;2.0485671;4.4644189;6.7709107;3.7886164;.076954715;1.6115822;-.40751028;2.2161334;6.3471813;-.51937115;7.0639782;1.2262294;.68198305;3.5690823;1.6078311;2.1797578;.66923583;3.7521589;1.6667298;3.7264609;1.1231428;.2364708;-1.681592;3.9007964;4.1504083;3.7934978;.79519051;-.65818501;-.057556566;-1.3269938;.58672249;1.8629062;2.0318887;-2.0904558;-.35500684;.9980284;-.078440018;-.34679136;1.3781191;1.1530409;.64882725;-.16379409;-2.3130088;-1.2255222;-2.4382625;.44968581;.56695199;.33190814;-.95584637;-2.5956111;1.5409397;-.55460286;-.5242933;.073081717;.88138503;.33293512;-1.1016834;1.5626096;-1.4695069;2.5352018;3.0291436;-.73294532;-2.863945;-.15061268;.34898788;-.065661021;-.50615698;1.1099523;-1.4042213;-2.3048952;1.4203014;-.56755847;-.11259197;.10008141;.66116184;.63597614;-.20954028;2.0650022;.9580642;.37563968;3.4293742;1.8426145;1.4077618;-.72669703;1.8286924;2.6260221;-2.9490473;-1.0439634;-.7750448;-.81328714;.68440568;.68680364;-.61807024;4.3817215;3.254246;-.3566227;2.9368064;3.6509981;2.8693202;.34231788;.32003346;4.3622804;4.6155481;3.6832037;-.086590618;.98530716;-1.9451288;.60214442;4.9168019;-.8625378;6.0929036;-.045487259;.45996192;1.5163422;1.2182909;1.7088715;.20518517;.53804481;1.63095;3.5425549;-.47935563;-.14072123;-3.0134208;2.6319134;1.2005602;2.4417419;1.5411133;-.37578163;-1.604435;55.002018 +-.76778144;-1.0439947;.71349216;-.74789876;-1.8542162;.14367284;.7212739;-.32744819;-1.3743211;.39698619;-2.1413467;.034640037;-.48636714;-.93836802;1.0582443;-.80500388;.50403178;1.1345907;.70624298;.89652193;1.2347374;.23019508;.42773318;-1.4852813;1.2175603;-1.6335105;1.3919003;-.19023339;-.1727124;.20637789;-.67662418;1.5614449;-.70554978;.33784825;-.2157395;.08022783;-.96224827;1.1414846;-.14055704;.42045063;.071271598;.41099635;1.6958947;-.83594418;.75894868;-.96558231;-.62475789;-1.4548694;.42024934;.093324542;-1.6535404;1.739064;.46402514;-.92651713;2.531657;2.6677091;3.8468158;3.3059413;3.6713779;-.13332693;2.8305399;2.5669386;3.868058;3.9356906;.95935863;-.19223936;-.5744195;2.3177004;.31659752;-.30952775;-.46019253;2.1188438;2.4832568;4.228374;4.8777738;2.1357358;.061526138;-.82454479;-.23207349;.094934225;3.5805502;4.2347775;.25108552;1.5293499;1.9660408;4.686306;2.4049394;2.3205543;2.4993694;.7861982;3.0918043;1.7821769;-.10666075;1.5535816;5.2754936;3.2961693;1.5060753;3.8244729;3.1709437;3.4488857;.18407395;1.4034996;.67981428;-.60866654;-.34732193;-1.3094647;2.1895723;1.15829;.96314245;-1.6647922;-2.7853265;-.010287032;-.92952681;-.94169641;.36464667;-1.0574387;-.036599968;1.0913961;.14602342;.74914825;.77992809;1.8370354;-.38597113;-1.2938679;1.0012982;-2.8534288;.88849914;1.1910776;-.3161504;2.2562239;-1.2934749;.94805413;.2768518;-.99104416;.34982115;-.062903903;-.8076995;.34921032;1.988956;-1.036184;-.33432877;.3542679;1.3395628;-1.2941827;-.53386104;.96582747;-.95807964;-1.4646159;.93441767;1.0904118;-2.1175902;-.37121543;1.428048;.89551419;1.0641851;.85525221;1.6867592;1.67397;2.6204355;2.8504624;.56709355;1.5663143;2.3091009;1.7949687;1.1715844;1.7157289;.056599069;1.2128612;.074229538;.33080208;-1.274067;2.3045716;1.8920057;2.8084786;4.0852904;2.0814857;.57350546;-.92634678;.13757583;-.51444131;1.7395325;3.9086723;-1.2093287;.61953682;1.0202296;3.0636981;.40524617;2.3821428;.72129995;.37206963;3.486995;2.7470748;-.54244566;.65677351;2.8116975;3.1896496;.99838054;3.6694314;1.5527244;1.9491239;44.68988 +-1.1666168;1.2289747;.21461213;.60388058;-.77588195;-1.631346;.10355681;.63487107;-2.1296608;-.83381683;2.0269685;-1.6481538;.83412814;-.85175496;-2.3740504;-.82544035;1.514907;.61510462;.10865615;-.86525249;.17103538;1.2880899;-.99402905;-.66687775;.82129341;-2.108041;-.24576938;-1.2789083;-1.4044236;.20238696;.78547138;2.684341;-1.5149032;-.52263635;.70751053;.14233878;1.5690894;-.6751439;-1.6757003;-.09452343;-.50732875;.47889259;1.1967036;.18717651;.78196627;1.3090541;-.56955314;-.54649329;1.2680753;.51180458;3.03879;2.6813085;1.3313714;1.6400368;3.8750596;.58410233;3.6109586;2.7082944;3.7080903;1.300092;1.827947;1.4153116;3.5759327;4.4041181;4.181654;1.4290024;-1.4981611;1.3784055;5.3182878;.06249154;3.0537281;3.415031;2.4457197;2.411876;4.8770437;2.8449628;.56246358;-1.7056257;3.8333826;6.184927;3.4117658;-.41455287;2.9053664;1.4562739;.53446037;2.5325575;1.954416;2.966943;3.8726823;2.8541934;.60004079;5.6778922;2.6756766;-5.1758099;4.3554988;3.4758883;3.588495;2.6214833;-.058072224;2.5297205;-.85425806;-.26415104;-1.3089721;1.5333775;-1.3122504;.044973694;1.4293518;.22102094;-1.1901119;-1.6817101;2.9146259;.35696763;-.16969408;.57046956;.25734529;-.05758163;.56491923;1.0061547;-.24366534;.11876467;-.12885255;2.8427105;-.71250266;-1.1977388;1.4160572;-2.3485615;-1.0396546;-.47066072;-.83348411;.13527483;2.137464;1.2110409;-.85173386;-.69335276;1.4669187;.48709184;.75698942;-1.5668219;1.014257;.45176876;-.79277444;-.33894786;.29035503;.10341746;.33441073;.66209114;-.52700996;.71972448;.60466504;1.539704;1.7999152;2.0540583;1.9822327;.94839555;.95268971;1.290723;3.2606437;3.0630591;4.9739709;-.28768665;1.9001396;-.18765277;3.093482;1.7795255;2.1998556;1.4217669;-.9760021;1.5094793;3.6214337;.057943039;2.0078807;2.3481143;2.1457148;2.6066444;4.5361094;2.6016746;.67363018;-1.9348861;2.4200125;5.0860577;3.2859719;-.86701357;2.8481586;1.8032959;-.96534342;.99633431;2.2040033;1.5952753;1.8680325;2.0186403;.65708625;3.798532;2.0388942;-3.676893;2.1266143;2.0541782;2.2727842;2.5205653;1.0595692;1.4110049;58.864326 +.36297351;.77359486;-1.739231;-.30088589;1.1640414;-.18758072;-.137447;1.7537566;.16820504;.76774865;.25182202;-.24589014;.22646059;.73548567;-1.5094285;.28962454;.28774542;.92658401;1.4930946;.046849933;.78482628;-.50948209;-1.728508;.89607692;1.7699008;.027879443;.22714664;.41967538;1.9821156;-1.4919472;.23011215;-.41210333;-.94429052;-.27539229;-.96020311;1.8038778;.85063928;2.0939684;.91328692;1.0136081;-.30653688;-.066129044;1.014796;.16612825;1.0093207;-1.8322706;-.63021642;-1.0178061;-.66965675;.95794076;3.2714458;1.7301592;2.6795762;2.3795228;.53817612;2.2294633;2.1979313;-.67844874;.30782998;4.5730739;-.055270601;4.0362873;5.6364727;-2.4308047;3.0620379;.23989223;.57325923;3.6424675;4.1250415;4.9353971;2.4032745;2.8947639;4.0880446;1.6291684;-.49033558;1.1849406;7.3555837;2.2701662;2.0266783;3.9666338;2.0873361;-1.7645075;4.2873049;3.0230687;2.993288;-3.0963936;5.4297013;.99865377;1.7151145;2.5255651;-4.0738177;-1.5853484;3.6325524;2.2103684;-.98013604;-1.1758997;4.1267452;1.5945843;6.3375597;5.0699344;1.5283964;1.6820104;-1.7851555;3.2307267;2.2602417;-.10626307;.09295392;1.7445874;-.17949627;2.232465;1.405661;.15882078;.069241986;-2.7439075;-1.0559919;-.34605658;2.6880012;3.2924151;-.030167496;-1.4066136;-.18691491;-2.4919474;-2.7314551;.96538228;-.8536185;.30763987;1.0073853;-1.5522571;2.286932;.51501906;.44309545;.32216808;-.45639655;-.94659483;-1.5731838;2.785888;.42983916;2.382159;-1.01956;1.4035106;.22870021;-.20936227;.18759081;-.25864846;-.27531239;-2.1437142;.12978354;-.56431276;-.65833068;1.2121532;2.3774188;1.6380488;2.5256836;1.3207042;-.23591751;-.26516265;1.1978146;.37369075;1.0105367;4.5245171;-1.4245577;-.38730839;3.4797292;-.69828278;3.1161883;-.27124035;.25634712;2.0276415;1.8546631;4.6034136;1.685254;1.0798473;3.9252887;1.2459115;.19910243;1.6363461;4.2414241;.83478492;-.10144509;2.7485006;1.9379512;-1.8698287;4.5183311;1.1494622;2.5866215;.26336139;2.5010569;.82288778;2.4884486;.70051372;-3.3328741;-.12124686;3.6064973;2.7238154;.42226747;1.007161;2.4028685;2.2974892;4.2378931;1.4874517;62.73698 +.63239646;.37281993;.64300418;.1127662;.32611275;-1.3632373;1.134251;-.48575726;.78217447;.56575686;.28387198;2.092767;-1.9023523;-.76335233;.2301781;1.067626;.97308636;.35766792;1.1074231;-.57800704;.20487481;.71930677;-1.031615;-.7907806;-.81798136;.39019808;1.1162857;-.93096644;-1.3509766;1.3195175;-1.3591963;.80202401;-.8399837;-1.6095369;.75430679;-.72785616;-.48128876;-.7964856;.59225571;.56525892;-.25693801;.093134381;-.43482462;1.087393;1.2079809;.6007269;.63783419;.90976387;.24254735;1.2905557;-1.2145046;.81005812;-.01910889;.9759534;2.3459339;1.385288;3.2373674;.027005462;3.0227268;.34886047;-.12254331;2.3797579;3.2095845;4.7190886;3.2891855;-.76693475;3.5063455;3.277199;-.25104907;.55037814;2.6173909;3.8508584;.085753366;.50479406;1.6717798;4.3101349;.99139094;8.3663826;5.2172961;2.065001;-4.3406334;-.52624685;4.7199178;2.0739846;.54114628;3.5612624;2.7182231;2.2721257;1.2876635;1.720268;1.8020914;-.44756135;-.21739306;1.0518153;-1.2763644;2.6460421;4.1505976;4.6274791;.40576401;3.5956914;.84978312;.25807866;-1.7510893;-.42947155;1.1937282;-1.6101;.43403521;-.87939626;1.9429405;.46335772;1.8798161;1.1774695;.43034017;-2.8720114;.36664429;.07379625;.07167621;-.22451687;1.5799119;-1.169829;.53087747;-.4818399;.81330729;.14805894;-.54497665;1.4372088;1.3319529;.32015151;-.78245693;.66038656;-2.0293696;-1.9162965;-1.1191111;-.88961595;.79010791;-.29076219;-.15129285;-.26384535;-.42432469;.42823139;-.65188283;-1.5992774;-1.5637941;-1.1061767;1.5912101;-.25161174;.98245156;.92196;-.24142119;1.0926704;-.92699832;.55641836;-.84697074;.37951624;1.4215814;2.3634224;3.5986764;2.4009485;3.6491988;-.99107611;1.2964718;2.7510562;3.4026852;4.4232116;3.2559698;.34841603;2.6640778;.38871706;-1.0853269;.62700915;3.4258668;3.572871;-.019399166;.33320069;.72865188;3.5021122;-.99168432;5.0771418;3.6260114;.37172073;-3.7637558;-.41907421;2.5594025;1.800123;-.64313668;2.0367544;2.6201389;1.9318765;.96991003;.7066738;3.9786537;.83296567;.60835129;1.7482389;-2.606288;3.3427403;3.0145922;2.7099199;-.43908951;1.760988;45.735542 +.17042494;-.92524952;.40066114;-1.0379984;-.35121703;.1888513;-.23555265;.25300357;.80739373;1.6913953;-.028936742;.73597127;-.31135309;1.2164301;-.82250881;-1.240653;-.38100535;.042971488;.35717377;.077836558;.38895601;-.22428617;-.16043107;-.094623059;-.034896601;.1800632;1.19116;-1.3013486;-.037121441;.017552361;-.58852857;1.5950857;.026317557;.99015361;-1.04565;.98939747;.40580526;1.1882907;1.0631847;-1.1194646;-1.3836637;-1.4102854;-.93731886;.94694781;-3.0849974;1.4722972;-.46817333;1.1853471;-1.1820232;-1.0736014;1.0972213;2.8076677;2.5252354;4.5121036;2.1483464;-.0038459199;4.1006861;.88263047;3.5365441;4.7286873;3.2571673;4.5989227;1.2607141;1.251037;3.0678589;3.8083217;2.4773462;1.0047362;4.8592277;3.8234088;1.6044595;1.8265005;1.2208601;1.4803934;2.2713454;5.2700305;-.82552981;1.0185395;4.3047042;5.0335522;.07788717;.547858;6.1109619;2.1863859;-.80420417;4.518436;2.0447767;-.076355532;-1.7682118;1.5703113;2.5546415;2.9913507;.091110855;.21091233;2.9152565;.54885632;.55518025;1.2607378;2.8162231;3.9427028;.000046850091;-.060450219;-1.0399842;-1.1743721;-.11575519;1.6120079;-2.4051189;-.14891544;1.5329019;-.076298833;-.51775777;1.3746164;.18719789;1.2072693;-1.1824732;-1.9583211;-.5477671;.77044922;-.16045088;1.8799844;1.0867332;.3507705;.70131189;1.4244838;-1.5742198;-.1451875;1.363355;-.54017967;-.61737591;-.14140573;-3.0480795;1.3104534;-1.7405517;-.58451229;.23896021;.50695521;-.71385986;2.5889752;-.31914923;-1.3065453;.12996694;-.58166635;-.51538754;2.7073934;-2.2477772;1.3135247;.70053351;-.68740761;-1.2987121;-1.4981697;.73413014;.71647853;1.6529547;4.417304;2.1354492;-1.2638426;3.4312255;1.8906338;4.4490647;3.6728165;1.9209054;3.7875779;1.8274369;.3104566;2.651639;1.8447783;2.0526035;1.4817485;3.5835035;3.0959339;-.4706839;.12984654;.98236841;.92347199;1.8365182;2.2931943;.77367854;1.9834626;3.4380696;3.2279811;1.1095418;-.21031731;3.0000529;2.0310214;-.63907903;3.4023149;.26552323;.83136237;-1.1494561;.54517245;1.4869456;2.1657298;-1.4139555;-1.0431041;.79767233;-.76325148;-.18886057;.85835344;.34116393;2.5317786;55.39711 +-1.1367934;-.66640031;.50692922;.26260713;1.8187871;-.02860417;1.3150223;.20010264;1.3715008;.088795587;-.2553207;-.78805363;-.022411302;1.0666872;.82189864;.8958565;1.6956364;1.0159571;.20604065;1.1406827;-.6302228;.48201197;.090557903;.20133539;-.63750392;-1.6703451;.92511606;.45857066;.058160115;-.4222548;.278613;.47411218;-1.0499313;1.0022434;-2.1087384;-.83246893;-1.2337596;-.80319047;1.0962863;2.1352324;.50160688;-.11463902;-1.6141875;-1.5606887;-.17558177;-.51702487;.052020937;.11776769;.92934835;1.2703879;5.6195645;.82520211;-.60524446;1.4715345;4.3228078;.85918587;1.0145551;2.7823992;.36716059;3.9464657;1.7117275;4.8282619;2.1773188;-.30961308;-1.1664917;2.5821865;3.5267105;.5411337;1.7538602;1.5700047;6.6402388;.89139271;4.2558975;.6536473;3.5035264;.24286766;3.2410226;.081204414;4.2657142;4.0942745;4.4498048;2.5137849;3.1363461;.99236894;4.2674489;5.5672717;2.7772706;-.95614421;7.3134179;-.77160048;3.0828292;4.3870091;2.5368795;2.2432153;-1.956477;3.0324972;2.7115762;4.4342346;2.667223;.29246536;-.15718545;.90829313;2.3193882;-.39199534;-.40025261;.30675092;1.7494165;.28633916;1.6608146;.69401783;-.11353119;-1.8264829;-.067291103;1.1802589;1.4727139;.44613513;1.6963396;.30163917;.77919519;1.2533007;-.88145554;.74344605;-.33967692;-.42242631;-.12424144;-2.6221581;-.79975325;.41381294;2.0803595;-.88229764;.045945827;3.0985935;-.70429939;.6158973;-.21584132;-.31138197;.96473408;-.07410901;1.0685391;1.4347975;-.16573726;-1.1212691;-.59264719;-.31300467;-.56503028;1.132984;-.82812124;-.85143065;.74727613;.19830243;3.5600262;-1.6090463;-2.3478508;2.3370414;.80307764;.70739859;2.0333307;1.6894637;.90469402;2.6582465;1.4789855;3.5143983;2.8381701;.4680388;-1.9545143;1.580176;3.4489563;-.61283785;.56733978;1.4617372;5.8341756;1.3708026;4.6194658;1.3214687;1.9351648;-1.1270179;2.748945;.26351175;4.7671599;3.4086797;2.9458721;2.7593932;1.8844422;.64596128;2.6066751;3.9272616;3.0730207;-.89387804;6.7323565;-.27242354;1.3620478;3.8307848;.89671338;2.441925;-2.2969034;1.489683;2.3415971;1.7083626;1.281019;-2.2790189;62.077766 +-.050962396;-.37029293;1.3422447;-1.147881;-.73630738;1.2001778;.81144989;-.44898918;1.3202219;.036253292;-.98523664;1.6879179;-.53842211;-.99155307;-1.3998407;-1.1367446;-.071370997;.52537268;-1.6142262;.62120479;-.99626577;-.83372343;1.4736292;-.10096376;-1.335749;1.8785633;.49810892;-.2837047;.74308372;1.4169635;.75143588;-1.037346;.76330221;.91746521;-1.0539777;1.2665149;.3805159;.21246435;-.82274598;.88705993;1.0698925;-.26262823;.81326807;1.6034909;.41711295;-.38813108;.71657729;-.68088198;.73200864;-.45854086;2.1869869;4.293992;3.2133155;2.7354612;1.4312378;-1.1362077;5.2784576;4.6368132;1.8224366;4.8089032;2.8898559;4.4816651;-1.2824508;2.3442874;.093145624;-.1707605;2.1311257;.33322552;5.2332945;2.8287539;3.9428763;3.1816819;4.3207655;5.7021699;1.5502433;1.6569352;5.5771184;1.7749641;2.4240828;2.4328623;2.3598211;-.92238075;.75300568;2.3827052;2.6125202;4.2069349;4.5325046;.30179814;4.9844236;5.035655;4.6370707;1.3343312;3.4986081;2.3705084;3.2883134;1.9478391;.046184782;1.5287346;-.009296651;-2.32021;-.93422741;.75790405;-.6732707;-1.8897514;-.96182239;-.17795935;1.3309704;-.24862826;-1.0005792;1.4511802;-.88271779;2.5432465;-.44651237;-1.3018194;.31103498;-.22641976;1.1724143;1.1624697;-1.7659256;.22908574;-1.4995048;.64469606;-.45176902;-.46468732;-1.0405661;2.1601319;.93518126;.85765767;2.9252965;2.4810314;-1.732657;-1.3942424;1.5387229;.11173209;-.04774867;.78331345;2.10554;.43774167;-1.7622671;-.38364351;2.1305735;.48150355;-.49716264;.1789261;.56073195;.432639;-.23045082;-.98576915;-.28409737;-1.452232;3.0298326;1.9389131;3.185426;3.150347;1.5169369;-.8606745;2.902277;2.560096;1.359038;2.6236174;2.7380359;1.6028266;.32594812;1.5985473;.13757013;-.83008158;2.1461184;-.98722005;4.3336191;2.1348476;2.0295758;3.1638753;3.6231217;3.566637;.28349614;.34361792;4.3127112;-.19324912;1.8684384;2.4304838;1.6185544;.85106105;.86560398;1.8734874;1.5616214;1.0969287;2.5637548;-3.0079882;2.2737341;2.7516906;4.0127978;.93284833;4.0558977;2.3301458;.58500874;2.6615705;.2929368;1.4777976;.5651837;-2.4006066;62.630596 +.38304859;-.4376013;1.0135058;.27694297;-.30529013;.34807846;-1.2770001;.28655532;1.5738914;-.026310854;-.3832809;.42099059;1.6112812;-1.3196574;-1.1098994;-.76215518;1.711341;1.9095832;-.15829487;.40506747;-.42484459;-.087065421;-.27830511;-1.0193295;2.0134785;1.3560679;-.038648412;-.7357493;.37866262;1.6071968;1.04565;.1975484;-1.7452646;.27437726;-.4600791;2.0784125;-2.1561959;.4455139;.32340366;.26726103;-.32696989;-.0062878132;-.10002915;.7997216;-1.8309319;.71317506;-1.0356085;-.52150708;.94547373;-.57817024;2.656796;3.3645034;4.438004;3.2825615;-.30195028;2.4728348;.77507001;1.3359609;-.99393404;-.62815809;-2.0985754;4.2706885;6.5048423;4.2365112;-1.9536855;1.1143788;.88428414;3.9117579;3.6763074;4.9899583;3.5953486;3.1340487;5.9431176;1.526769;.42881772;4.0281529;.68132037;-.894503;4.2264633;.73608398;6.5079074;.25852218;4.7237983;1.2144357;1.423512;3.1248138;-.51662737;1.2181132;.59823334;-.00093992357;3.8561113;1.0023829;5.2641168;-1.0927759;1.5407542;-1.3054779;.89920151;-2.2845814;1.8968095;3.9169359;.13172495;.73851788;-.29253414;.19601104;.80381113;.84198326;-.86288941;.34553906;1.134111;-1.1612597;-1.0812556;-.12100882;-1.3991773;-.15002248;-.61985439;-.39641419;2.7527511;-1.2957433;.37604702;-1.5572873;.43247846;.093690753;-.82744145;-.52531523;.91742331;1.674994;-.23681089;-.79331678;-.16950756;1.2000898;-.14167583;-.33858511;-.068058632;.63111115;.31241882;2.630223;-2.3229387;.74025184;.29009649;1.1603762;.11939869;-1.8796798;.22077559;.74626267;-1.040272;.73953217;.19703221;.18758598;1.8308254;-1.5058657;1.4638275;2.2880828;3.595468;1.5293;-.012755604;2.5328791;-.28007299;1.1792183;-.85232162;-.44893822;-.57806808;2.1571546;3.7287095;3.2144279;-.12709734;2.4205952;.31605417;3.5874207;1.6479918;2.7496407;1.2959818;1.0328548;3.3353295;1.9172442;1.1995192;1.7650461;1.068643;-2.7409863;3.1690938;-.29801467;5.896666;-.38652879;3.2392669;2.2136221;2.5595789;1.8506275;.1980456;.77086174;.62858176;.22638784;2.3989701;3.2574389;4.0412893;.65441251;1.1821705;.72739393;1.9076548;-1.7449439;.88254654;1.8081694;42.696033 +.47464752;1.3005766;1.1831992;.83564436;-1.0621991;1.0360721;.1106768;1.5803449;1.5737113;1.9222429;-.29601336;-1.3148559;.57627589;-1.3152601;-.52677953;.055266239;.91225517;.01015579;1.4807463;.1766793;.81379616;-1.6742082;-1.20965;-1.7306005;.994766;.61275369;1.1177968;.74838185;-.75933617;-1.4939693;-.93391472;-1.3530396;.40269339;.28316358;-1.3012304;1.1438897;1.8626158;-.25390369;.45853373;-.18835768;-.66020268;-.83191931;.066116594;1.7812599;.56214052;-.86672622;1.4705275;-1.8258353;-.059829481;.63944644;1.2868042;.89739633;3.8795245;-.70776814;3.0040455;4.9613824;3.3467803;6.7877235;.38841131;1.7995878;.76870143;-1.2523743;3.5516677;-.030896101;3.8146753;1.5152559;5.322423;1.9825277;2.5242653;2.3186264;3.9140382;1.4855726;3.215481;1.6653696;1.0339522;.19148628;1.1162678;.20516647;.65402198;1.5600442;.50741649;.48868725;3.0176401;4.4881134;6.0067024;-2.0845251;1.2625035;.74481761;-2.5401061;2.1350338;4.1741476;-.88488305;.86821389;6.6812787;1.1050285;2.1339855;2.3275676;-1.6707275;3.2091465;3.4861712;.11353292;-.070608519;1.1513636;-1.1006924;-.083651885;1.2684267;1.3070767;.88997149;-1.1465631;.8685661;.4048053;-.88552535;.57001525;-1.2747035;-1.0243083;-.60142559;1.9685328;2.4052751;.45425332;3.2266583;.81152326;-1.1115748;-.029752718;-.82400316;.5144915;-.71053898;1.2952331;.73454881;-1.5823885;.33728206;-1.7065215;-2.5098732;.90444243;1.100976;.21859954;.59343255;.10152116;-.037628826;-.65936816;-2.4792154;.10164376;1.5164289;.56620729;2.3980987;-1.2551898;.22385709;1.6297187;-1.2426189;-.24361253;.12290868;.81870484;1.6316296;4.6012568;-2.4927731;.45831543;4.0437784;1.4904984;3.4416447;1.4628915;1.7048432;.23147804;-.052013595;3.0500374;.61375546;4.2591138;1.3469843;2.5530479;.27411279;2.5394597;2.1203678;2.5503006;1.2573086;3.0886328;1.6192248;.045832429;-.014925833;-.029186673;-.13305792;.42143056;-.25413418;-.67898029;1.889167;2.6994355;4.418262;3.8703945;-1.9639522;2.2015603;1.647621;-2.3290634;.0038331337;3.3019836;.4853242;.95582485;4.8524408;.8292045;.71308649;.029392697;-.84445566;.65940875;1.5933264;46.994148 +-1.221041;.67168123;1.3541042;2.0640614;-2.469723;.082866266;1.9126351;-.055598587;1.5870889;.77551365;-1.4334594;.46124771;-.059157856;-1.4425983;.29181492;1.0801073;.47447491;-.5969981;.33261266;1.0081825;.34856847;.43817988;-.24616696;-.80786431;-1.0953531;-1.5545051;1.1715747;1.7309852;.33321074;-.25658777;-1.5592291;-.27322319;.13070977;.39932996;-2.2490079;-.76798403;-.5025807;.21625039;.33038378;1.5663579;-1.2555833;.98827225;-1.5860718;-1.0689744;1.2444063;2.5494192;.67706847;-.17315844;-.37610081;-1.1046419;1.9504944;1.313014;3.3797281;-.81609094;5.2542658;2.1054769;2.1274753;4.1182723;-.15117098;1.7912757;3.3795171;3.1819055;-.63347995;3.6956637;7.7812757;2.007772;.67614013;4.2488093;4.0861712;.89791572;1.1440718;.60805959;4.7323165;4.4784427;3.7747877;-1.9975228;4.5325999;2.426476;4.3258243;4.7173448;3.5140197;2.1474001;3.4844639;3.4829047;-.90242738;4.7357945;2.8497734;.68861055;2.4182515;1.8150195;3.7965591;.1948733;4.8495693;2.6845427;3.4493308;2.5832171;-.064790614;3.4141819;2.1391728;5.9053569;-.31178221;2.362426;2.2075629;-.35105398;-.24363017;-.77033323;.31048727;-.11795711;.070298411;.59344095;-1.3323275;-1.1276478;-1.4167231;-2.2681623;-.36152405;.8326571;-.64493591;-.62294716;2.075736;.86500949;-.084955409;1.7613957;.084548809;.12806205;-.032838404;-1.6666473;-.39214075;.98523867;.84502393;-.28104961;-1.5732181;.61321235;.99873781;-1.0378865;-2.5572135;-.86550534;-.31203011;2.2326882;.70302296;.35759011;-.11427748;.82356048;-.15091471;.0010276815;2.2371905;1.1844462;-.85311866;.70462513;-.10969442;-.25664783;.51800853;.91357142;1.6900553;-.13281819;3.1751444;1.340223;-.90252113;2.5785732;-2.4159689;1.820278;3.0750265;3.7146707;-1.4256603;3.14533;6.545393;2.358753;-1.2127612;3.7137246;1.7344438;.34288496;-.2883268;1.2946541;.76519275;2.166867;2.092706;-1.7748183;4.4294481;2.2237372;2.6992466;4.2333965;-.031019254;2.1229541;3.0613446;3.4906619;-.10153314;3.3801951;2.6825585;.99377441;2.3810792;2.3525963;3.2720141;.73616904;3.6682162;1.8054638;2.5523694;1.0382611;-.035009339;1.9229391;1.4144959;4.4881721;72.627655 +-.39187798;-.55037695;-.45417285;-.46207622;-1.1869153;-.87630773;-.56633973;-.41377792;-.39183515;-.748088;.85207117;2.3993022;-.36918983;1.1739069;.55501598;-1.0611231;-1.3632885;.97033745;-.33694202;.92404175;.42620277;-.83545494;2.1022213;1.054073;-.73081827;-1.1114014;.52533853;-.20365994;-.66618758;-.27705857;.38874543;.43919137;.69152808;-1.6812607;.17574151;.20465438;1.3559351;1.3364837;.1319034;-1.197426;-.76705331;.83963883;-2.3967793;-.10916018;.53220677;.64162457;.62917626;-.71659154;.13646899;.57080293;1.4630302;3.1717117;-3.3458459;2.5319471;3.5638115;-.027073765;-.53831035;.47688663;3.9374459;-.19577885;2.3428023;.99038112;-.87483108;2.7955186;-.53629243;-.037382159;4.3389449;1.9567928;3.6517353;5.5028887;-.2540291;.84010291;.71328908;.87246883;1.1938733;3.0554907;4.9479423;3.7292376;1.0413046;-2.2790203;4.0165262;1.3743137;1.720934;2.1637819;2.7399812;-.4001154;2.7479939;-.17171983;1.1736953;-.7671622;.81139719;3.4595435;2.2569115;1.4334704;.57279766;4.2593665;3.0930364;2.1382349;1.1811877;2.6694701;-1.19163;-.82132292;-.56888503;-1.6507056;-.00032557483;.52081698;-1.4123232;.40870124;-.44400546;-.20284027;1.1471646;.62608743;-.9346562;.88598561;.2355535;-.51529694;-1.0160596;2.8882067;-.61199999;.99805546;-.91335696;.41718253;2.0024555;-2.2725811;-.40865275;-2.0327051;.09752433;1.9353074;-1.2836359;-.64260513;-1.6243263;-1.8139875;.39289024;-2.1657896;.23732218;.27016824;-.34947377;.5277288;.28532282;-.67903656;-1.1072612;.46586666;-2.3457882;-1.8754901;.92754167;1.1117332;-.40896469;-.75338155;1.2758141;1.0708995;.83819795;2.4392416;-1.2728842;2.3042178;2.7953901;.064136811;-.48437682;-1.0998398;2.568723;-1.6954566;1.4253924;-.073134027;-2.6738439;.65467936;.20670524;-.63982368;3.0611103;1.340176;3.0481732;4.2902379;-.79389066;1.0114307;.28417838;-1.2888962;.66267568;1.6384091;3.2556698;3.9826162;1.4348801;-2.5266685;2.2617538;.060317252;.78076893;.28462765;.3194406;-.73915613;1.4927541;1.0212616;1.9070857;-.10405736;-.35411105;3.4322612;1.8084811;.45496079;.26297101;3.1800246;3.1208589;1.2571093;2.0672708;3.3390658;38.409584 +.43656969;.83344644;.48538962;-.61574042;-.99807388;-.39318711;.066629127;-.4756557;.78616768;.55618364;-.89742774;-1.2508507;-.30124789;.34107521;-.42835531;-.53298062;-.059092965;-.36492366;1.5679365;-2.3059492;.48985755;1.8006278;.34375402;-.21170022;2.5424099;.66905379;.7198624;-.20619018;-2.2955577;.086944602;-1.0497431;.19576116;-.70138413;.13494913;-.86935282;-.22044191;-.44585136;.95461375;-.43007359;-.58426857;-1.0125201;-1.981215;.84499764;.88871121;.4367004;.24445093;-.16220857;.49937585;.077243775;-.74019283;1.8976539;1.8006473;3.1411321;-.95009345;2.6593733;1.3743044;2.3509243;1.560385;1.9824347;1.1989821;2.3930728;.48027048;4.6641555;1.8329818;2.5990887;2.8982439;-.99923003;7.5964246;.890163;.96590239;2.7049136;5.8400006;2.9394491;2.8776381;4.7403731;-2.1949565;1.8635054;2.3625977;5.6745219;1.6170362;5.3687062;4.7347245;3.5654595;3.238647;1.1118621;2.9143126;.014481838;-1.6649201;1.6927001;3.4666364;-.33319479;2.8544071;2.6951187;-1.3287205;3.5817742;1.1648698;2.5854366;.30244756;.10990685;1.5400463;.17493668;1.3861458;.98280948;-.76401031;-.16464062;-.14323391;-.17091498;-.81977284;1.8381916;.67913878;-.68077886;-.18124022;.36090982;.35193348;-.80010527;.43494207;1.1323571;-.57187039;.56709659;-2.2795837;.089402325;1.3502576;-.89670318;-1.6163044;.69722414;.061757363;-.38330707;-.43201697;-1.005571;.51035774;-1.2452662;-1.125264;-.61473006;1.5226856;-1.2014521;-.55787796;.1753601;2.2274683;.94240451;-1.1369321;-.88725036;.16799846;.28438354;-.54426962;-.748191;-.52739537;.80804753;1.5162278;.39576471;-2.8649421;-.76656389;.16633865;1.7388514;.35166728;3.739476;1.5138901;1.625909;2.7829905;.5146246;1.6266066;1.7857184;1.0817907;3.9905822;1.5877161;.16612038;2.4756694;-1.0724459;4.3297625;-1.2037922;.53408176;2.7896485;3.7666767;2.637912;1.5974028;3.3155389;-1.0096058;.43963382;2.1695778;5.7038393;.6326645;3.510829;3.1488965;3.0993288;2.0051177;3.0224764;1.4119614;-.6035586;-.64217013;1.2631016;2.4017785;-2.5793254;2.8173609;1.0605857;-.52740586;2.9261684;1.0949737;.38605505;1.5434577;-.0046674754;1.9115225;54.83448 +.52737933;1.6330873;.1652988;-1.4425659;-1.0503558;.027005453;-.9659636;1.0419447;-1.217373;.70591813;-.31001765;-1.422569;-.28692606;-1.8081824;.61459935;-.39228711;1.2653596;-.67573529;.58442587;.89769822;-.46568772;-.074400246;.063543908;-.49268669;1.3492904;1.31378;.73986584;.9319315;-.98690307;1.052543;-1.0418948;-.74431831;-.52352935;-.97014004;1.008132;.51741874;.93327695;-1.3247247;1.6622542;-.74672866;.29855019;-.92145121;.71865296;1.2372907;-.29740274;.31350568;-1.084731;1.2249509;1.8629236;.79349971;5.5100713;3.9857984;-1.0183016;.54355592;4.955195;2.6102939;1.8810543;4.3019071;.55898869;2.9310069;3.5904498;-.12841374;1.6872357;5.9739065;.63594419;4.3183255;3.5168791;3.7681234;2.5371375;-1.8026717;1.6694524;4.0455241;-.74568701;4.1669822;4.8450689;.91080242;1.8234096;4.4863973;2.8311784;1.2010217;1.2760149;-.3012647;.23924275;3.165303;1.9756585;.9070757;3.3513749;1.5346454;.081997797;1.776484;2.381285;-.040345278;2.8267951;1.8861276;2.8467276;5.0764623;-2.3059592;1.9443541;-1.0232608;-1.2431337;.81697905;1.962745;-1.0551884;-1.0551401;-1.8747222;.082319647;-1.9854525;1.8191631;-.28300804;.80792493;.048386205;-.84642029;-.6199339;.2337561;-.04512234;-.92016613;1.053779;.78128296;.44727179;.13237245;-2.0933027;.45671275;.24450105;.17353962;2.9260921;1.6854894;1.7003597;1.6794928;-1.6226432;-.33665699;.55667448;.065932959;.32002768;.35935175;1.0845652;2.0737526;1.0960312;-.41363561;2.5687079;.59960747;2.5006132;-1.2473489;.55517137;-.65986109;-1.9169543;.46981004;-1.4362026;-.076141797;1.9983332;-.47544184;5.9490948;3.4764307;-.031605072;1.4384509;3.4143932;1.5768956;.64435446;.48024577;.058355417;2.0832734;3.6386385;-1.9323583;1.7666733;4.0581598;.04238677;2.6049452;2.3675814;.49952534;2.0444131;-1.4742631;1.4726142;3.5746067;.80708009;3.165915;2.8740556;.5783534;.29462653;3.3410041;1.7632438;.93326402;.57850885;.96709031;2.2854078;.8640461;2.2091465;.79256839;3.0881808;2.7782328;1.4860911;1.982964;1.7355101;-.28670573;1.2905204;1.5576609;1.5773352;3.3812351;-1.0856447;2.2848046;-2.2072992;-.029812967;54.302917 +.35414529;.55253673;-.51763934;.69019896;.58818203;.23769787;.71401542;-.085400119;.29177406;-.64560622;-1.8157042;2.1457074;1.1269884;-1.222375;-1.4226218;.13945134;-1.550009;.039052345;-.10708845;-1.1415554;-.12573013;2.942826;.38612923;.050171182;-.25351375;.30834171;-.52318585;.031616431;-1.063875;.031579442;-1.0360042;1.3736384;1.4022566;.41654962;-.33766735;-2.1080852;.66510105;.8552466;1.6402922;-.4256984;1.2876681;-1.2409575;1.8102505;.15966301;.26168856;-.83473456;1.6201514;1.2193933;.83260173;.79376137;1.562297;2.0742438;6.1315255;3.7765846;4.0826712;3.4710655;3.8080847;-1.8644902;4.8287024;3.1682017;2.7499275;5.8967195;-.24092664;.022466682;2.2783532;-.2448523;2.9670293;2.6274343;3.2066755;-.33141649;2.4973826;.030998442;3.3079884;.78741366;2.0578454;4.1414728;1.9949157;1.045328;.78451139;-2.9319904;1.1333094;3.4053798;-1.02546;.85618025;3.5331419;2.0700922;3.2277718;1.6763136;1.7286446;4.3194017;2.0464654;5.1241555;.46097809;-.55567884;1.5222957;1.3620254;1.9853295;.64710206;1.0149273;1.1103234;-.21035133;1.5548646;-.96912062;2.4401565;.77310842;1.2756151;.77552831;-.36838067;-.73088253;-1.1799941;-.62323046;2.2740912;1.0465246;-2.1480923;.74924433;-.19895631;-2.4913504;.79158205;-.044005495;-1.1956587;-.67406255;2.1448472;.93455237;.47654465;-1.0683091;.65508491;-.95060045;.86983669;-1.0340887;-.35753989;.77852005;1.142401;-.25769433;1.703351;1.6566737;-2.3351331;.018746972;.75860661;1.0555152;-1.6278113;.82483077;-.099159628;1.6117971;-.83713764;1.3951;.77607858;1.1189033;2.218549;-.070939355;2.3176227;1.9868255;2.4437516;4.4523149;3.0183971;1.4044594;.99658442;2.3012283;-.2313222;3.7243757;3.4500525;3.4095776;3.113622;-.94428295;.1976503;1.6492623;-.37097836;.83317947;1.2572399;.92643148;.76194662;1.6395807;2.4320798;1.7129784;.64936179;-.74024612;3.5677328;1.1836662;1.2291352;1.1047651;-2.0477872;.87531078;3.0934148;-3.0524709;2.0942345;1.7492006;1.2631537;2.4554946;1.6646616;-.44353047;3.2987306;.85769784;4.5897346;-.075525269;-.077299632;.40187129;1.109257;1.3480536;1.2367533;1.6568363;.58950794;52.970402 +-.40766907;-.46426949;1.6713204;.2100696;.23989829;1.247648;1.594201;-.62954748;-2.2931938;-1.7359546;-.85000747;-.046640389;.48837754;-1.0143669;2.5243897;-.087497436;1.7010622;.9091056;.2313313;-.99769294;.60113519;1.5247604;.69084144;.12522739;-.059437409;.57400793;.018406777;1.2149003;.69069433;.89507109;-1.218901;-1.8273176;-.28870353;.72371459;-1.539953;.27903092;-.12205496;.047401547;.52795225;-.019905465;.64118814;-.30158427;.36480454;.82908654;1.5757461;-.11333854;-.80361515;-.85875583;1.6903945;1.085463;4.6699934;2.5661538;4.0647926;1.3541588;2.0619161;5.4273801;1.2312986;.50220054;4.7243776;1.4105189;1.8256968;-.83282363;-.42103061;4.1367235;1.8422854;.65121645;1.2911688;1.8975134;4.2113404;.81551951;5.5972214;2.0139384;5.1258645;2.0465858;3.1328359;.023707973;1.801375;2.5055637;1.1747975;1.5107108;4.1546659;2.0988259;2.7110355;2.332864;.51427197;2.9307914;2.3353295;6.4543624;3.1929176;1.6757462;-1.3807636;-.7158733;4.0676856;3.8954585;1.96635;1.5707332;-.81494623;5.0237908;-.23397169;2.3754661;-.80571502;-.57061338;1.0956075;-1.048373;.43307716;2.0419281;1.5325326;-.2687391;-1.8313637;-.72027028;-1.1097981;-1.1895367;1.5763334;-.40622616;3.7102501;.71068716;1.1899481;-.45201889;1.5839748;-2.2495859;.6864782;2.4781659;-2.0151305;.07808812;-.064151108;-1.5551383;-.1250844;-.95711589;.35278031;.48070455;-.39492124;-1.5524832;2.5460136;-.47853458;.11995611;-.19130774;-1.1774726;-.77855515;.044667218;-.88083279;1.6940497;-.097658604;-.16574939;.012379087;2.7872384;.39059055;1.8764163;-1.5485985;.72703075;.75361502;4.4730067;2.3199711;3.2571182;1.0157396;.47935951;3.8011661;-.0018414798;.8606559;1.8755245;1.7511661;2.2326498;-.92036521;-.034243945;4.5346255;2.1165986;1.501346;2.2963109;1.9486371;3.2404542;-.39220411;3.1061938;1.6912444;4.0694838;1.1495101;1.792574;.56915367;1.7569271;.96715683;1.710991;2.3141203;3.5011315;2.4216292;.79885232;2.0500634;-.37148973;2.1324091;.30068889;3.3570383;3.3288047;1.8199284;-1.6645685;-1.8011709;3.5564239;2.5419281;1.59943;.98339796;-.88971388;2.5701976;3.0451093;1.7614543;54.681545 +1.309666;.5341751;.49959981;-.36109504;-.17595966;.63962251;-.96941757;-.90540618;-1.2142891;-.11031219;-.50712174;.33522332;.57801539;1.4050696;.70290887;.78612089;.025493108;-.10052962;-.98125374;1.02694;-.66031665;.63499522;-.2765297;.5589115;-1.1018615;-.19980662;-.86003369;.98159629;.79249477;-.63505155;-1.4167167;.2700848;.41849512;.47666633;2.4396203;-1.4772285;-.28560343;-.48681408;-.96856064;-1.6784323;-1.3543931;.76324004;.23277138;.15823358;-.12453745;.44460997;.93693227;.75227141;.1166605;2.368911;4.0744061;.99544656;2.7402461;5.4823842;2.0595641;2.452749;2.106657;.54280484;3.5992393;2.1460576;-.1320236;2.6456995;2.6705287;2.8034875;3.2883952;1.2248738;2.9205775;-.58831388;-.86015487;1.991504;2.4764471;2.6275122;-.10009883;.2269922;-3.1732039;-.3106851;2.7123959;-.5818575;2.287559;1.4716727;2.7122717;3.3352995;3.0522287;-.6047681;.24970746;2.9518085;-.73027706;1.1778315;5.4283576;2.1941047;3.0207467;2.423306;-2.4761944;4.1706772;2.3787746;-.033836637;1.9070027;.73097903;.53165269;3.1782017;2.3397543;-.91966486;.77761853;.37141237;-.28577349;-.76991683;.090839021;-.99030513;-1.028917;-.71615905;-.69652307;-.95479351;.59249574;.44048306;1.0243572;-.12471992;.011872122;.078269601;-.62622404;-.87554014;-1.881721;1.1895801;.15013607;.38520759;.40245229;-.8571716;-1.2096144;-.27155635;.21524794;-1.6273115;-.31606624;-.70397013;.55397576;-.56420702;2.3963814;-2.1605618;.78117609;1.0402955;-1.220984;-2.5327301;-1.6034374;1.3644191;1.0583751;1.8918645;-.39403701;.045326043;1.1172574;2.4401746;-.14958175;1.0547782;4.2867227;2.6739156;3.5218801;2.0101306;1.8212023;2.2873337;1.7448305;1.2295121;1.6151173;2.5057147;-.72026408;.9944573;.06269408;2.6171162;3.0185599;-1.1871259;3.5152388;-1.2703984;.34421825;.16696303;.96087188;1.519803;1.6130913;2.1876462;-3.0550685;1.2298837;1.4271606;-1.0957825;1.0973938;-.93774313;2.0497675;1.3393503;1.047034;-.73261702;-.7120716;1.351283;1.0307373;-.69653839;4.4986391;2.1605575;1.0694096;2.9564843;-1.2273109;1.9429799;1.3801676;-.15510097;-.49543321;-.93087947;1.5088811;.90069127;42.375553 +1.1714647;-.20102112;.90859711;.23677941;-1.7467338;-.073531441;.58341348;-.30519572;-.456146;.78730392;-.83587378;.23816562;1.3315443;-.9419176;.21916062;-.83099669;.53176576;.49196726;.49088907;1.1479299;-.94277894;-.58242923;-1.3989841;-.72026145;.24950957;.62455481;2.3406372;-1.047273;.58243757;-1.7967215;.86298585;-.22006954;-.87597364;-.32348979;.408427;1.6697592;-.090594977;-.36022991;.65123069;-1.0400505;-.041977007;-.65996605;-.91442919;-1.5704976;1.7198591;1.9018521;-.0024619512;-.75708324;-.56013173;-.11015313;.12227776;.46577406;1.6404245;1.4432365;1.520812;2.8297861;.92145944;3.1239345;2.3580418;3.211519;-3.0834517;1.8598276;3.8204019;.75443596;4.4722447;3.201221;3.3659701;-1.9943711;-3.9497299;2.6303754;3.3973823;1.865597;1.6744342;.73415709;1.8986495;2.3342123;2.5288472;-.14567968;-.68338257;6.1259136;2.9848211;3.9576938;.779778;7.033052;1.6745604;2.670846;-.33085603;4.4201169;-.72837353;1.6475748;3.0048449;.74098456;2.2778487;1.4503659;4.0464454;.85029751;1.7034913;1.4239776;-1.7525437;3.5214999;.49266839;-1.754041;-.66876715;-.10061498;-.36717591;.98441499;-.00063685229;-.27080742;.12399906;1.4425328;-.076381519;.083666652;2.9204698;-2.890898;-.39134777;-1.5954833;-1.0438513;.42516905;-.21063396;1.8080589;-1.9774499;-.40863395;-.20435002;-.87975574;-1.9245543;.53765577;.5539875;-1.1251994;-.60705286;1.3004391;.62364405;.028919922;.48746601;-.080592826;.75332236;.2762059;-.53318942;1.5361525;-.08913707;-.50904745;-.86629272;-.9805305;-.85511619;.30267036;.91534621;.12285727;1.6557959;-.70684558;.24987389;.060958683;.95668715;.14263265;1.1914668;-.43600467;-.60541755;1.946128;1.1088339;2.2697632;4.0205598;4.4310708;-3.9615083;3.0992155;1.1524186;-.85253644;2.0091946;2.1540368;3.0430908;-1.7006187;-2.878624;3.3094356;2.3934457;.84905493;1.6207982;.87733179;2.6362073;1.1279012;1.4155685;-.022005269;-2.2693949;3.6671093;1.6901903;3.8560193;.99960011;5.990016;1.1647233;.30308059;.40624461;3.6962464;-.46170998;-.42915016;2.9300585;.54575092;.82688582;2.628963;.72250104;2.3762312;.40660939;2.0348635;-1.2570024;3.3177125;38.789066 +-.40503517;1.8098238;.75091207;.78938818;-.84798968;.92260599;-.82653892;-.91764224;.031443395;-1.0793773;-.13046478;-.28376678;-.019046566;.72304517;-.26903954;-.33953592;-.86805576;1.1575953;-.48094457;-1.2577825;-.89365506;1.1609299;-.75409675;-1.0578933;-.0084931375;-.36134192;2.4504406;-.15116103;-1.2374111;-1.0721518;.33510566;-.80661303;-.18631412;.52256954;1.6775304;-.49742553;1.6616478;.46471608;1.8335208;-.35401246;-.98992956;1.4291774;.90638161;.50696689;-.1940936;-1.3592659;-1.6523551;.0079365559;-.37444803;-1.2842975;2.0914066;2.0732956;3.4079216;3.0507424;-1.2805128;-1.6553046;4.6523132;2.9631987;2.1953099;2.8801088;6.8560634;2.3516893;2.2783375;2.7718315;3.7281086;-.74432361;2.9215496;2.0691683;1.6988689;2.6829169;2.1549463;.0066371318;5.392046;2.1071804;-.50314826;2.7074876;-.71951228;3.5487838;2.3941829;.097400963;4.5563831;-3.0150154;.55007815;2.1877885;-.65345263;1.4923952;.67942739;2.9324703;2.0674682;3.3557763;-.11383066;.69516718;-.16480626;1.0464106;.80769509;-.040334005;3.4497941;3.5469906;1.2573751;-.88171196;-1.3305956;2.6389558;1.410892;-.86208814;-.22697319;.30578852;-.10866639;-.45785469;.71481776;-.72655582;.21166168;-.97705019;.31560659;.025396755;-.59771401;-1.5833482;-.69022113;1.9641274;.13913898;-.8240701;-.46655667;1.0358239;-.40128967;-1.0943714;.96376169;-.37649763;2.1454644;-1.0139217;.071202025;-.13927417;-.55915141;-2.1508884;.067313328;-.80150366;1.1879566;.42937145;1.5995775;.88383222;2.2068069;-.81345809;.57357973;1.5727388;2.3347306;.72361273;.52848661;-.0062292321;-.01098585;-.41722706;.9750514;-.97965759;.23853709;1.976917;1.6823851;4.0148249;-1.28698;-.88661671;3.7017155;1.9725515;1.4960879;1.2570254;5.843554;1.822735;1.9369124;.35726106;4.3676214;-.98024839;3.8345644;3.7251973;2.5149457;3.6426461;1.4761567;-1.3207893;3.603543;2.0020914;-1.8236324;1.9410131;-1.6935397;.50799268;2.4555492;-.83015031;4.1753507;-1.0191129;.075599529;.31766996;-1.4793582;1.4592947;.051149845;1.0849054;.33331555;1.7806562;1.3239623;1.348753;-.15275416;1.3653733;.96368504;.96813911;2.1448679;.68239892;1.8937709;-2.1512344;44.164082 +.28143603;-.15568785;.44594303;.27901545;.028252687;-.0691339;-1.467308;-2.4974453;-.95411998;-.55238134;.78923631;.55433691;1.3977406;-.12385881;-.35386112;.74787307;1.250479;.54886895;1.0291489;.51047158;-.88138241;-.96365064;.6915428;.053801939;-.082466081;-.19509903;1.0188419;-.71148604;.49783525;.41525421;-1.1780442;-.50002563;-1.9849877;-.93867075;.12808962;.048943434;-.65545434;.51032317;.60043055;.53417552;.72452796;-1.0071968;1.1806483;.70366341;-.42204696;2.433018;.32418755;-.094207771;1.6647911;2.0614643;2.4652016;.92136067;3.6755044;.061899368;6.1636248;3.0135598;3.4835498;2.8795269;2.6557939;.99174011;1.1195875;-1.722001;-.5818134;3.5186064;2.5748389;3.7716761;1.743878;4.8393106;1.2618427;.84831971;2.9948304;5.0038314;5.4145293;-.95351368;2.4508159;1.6864803;.3971509;.036101665;4.7072358;2.5267684;4.7819552;1.0380661;2.6506371;3.8184972;.27983159;3.2921624;2.2007866;4.0519648;1.8011464;-.24507818;5.2318835;2.5027297;1.7813901;2.8013165;4.370647;-1.6672157;.39648747;4.3596373;5.0727572;2.1584289;.40397891;.3128503;-.2884388;.15294121;-.023789639;.68034303;.055491146;-.99496949;-.77549452;-.42366982;1.0939809;2.1136084;1.0556704;-.21388897;-1.0561715;1.5518323;1.4395626;1.5983192;.010517758;.22071606;1.7845377;.58973145;-1.139129;.95382446;-.98628545;.77055883;2.2148662;-.73809636;-.26038012;.45572242;.11122818;-1.6400852;.31539431;-1.1111462;1.303691;.091407456;.78069812;1.5374315;.22369635;.020712132;1.5199505;-1.9529866;1.0876719;-.059709132;-1.2569559;3.0678251;1.425874;-.59225357;1.0713259;1.8596576;.86919016;2.0941181;1.4673122;-.067821339;5.0200014;2.8511987;1.7709447;1.5424473;.89647454;.91982663;1.4118407;-1.8793175;-2.2291362;2.0805984;.59700948;1.4805689;1.3967166;3.4344363;.22944823;.060853913;2.8049965;2.9802883;4.5615964;.69156009;-.049323916;.69254482;.16343744;2.2658486;3.0913634;.96981376;2.8373694;.17313252;1.0217572;1.8203667;.52244186;2.4600115;1.0486819;3.2905948;.7451275;-.066911429;1.4284111;.23876482;1.8746445;1.643846;5.5162024;-.5314756;.41037121;2.8286805;4.3628526;1.5179489;67.263046 +-1.234435;-.73308772;-.95528054;-.44254822;-1.056628;-.32867324;.88559562;.85213017;-.3763099;-.14455408;-.10634373;.14144695;.77276719;1.2762588;-.85963202;-.27486202;-.82179862;-.18115439;-1.5521994;-.24524723;-.92463362;-.254513;1.0274453;-1.1985918;.55879372;.32065704;.16555138;-.75625712;-1.3931721;.84855145;-.3407934;-.67318809;-3.6682146;-.79030347;.052787457;.13355756;-.15350866;-.41018733;-.39691615;-.28228024;-3.4918447;.8961789;1.240954;.81842685;.65086704;.72650903;1.2219822;-1.8237138;-.638515;-.64917725;2.4173265;5.8411784;2.8673925;4.1820083;2.0296254;.27606165;2.4777088;1.3484368;.20406017;4.3728962;5.0387774;2.6211121;.8596921;1.8967628;2.5839925;1.3296704;2.888489;3.4592664;.017685836;.92091191;2.5200152;2.2144275;4.1584973;3.6910398;2.0765734;2.1969323;2.5142741;2.6160994;6.4236765;4.7495046;2.9591677;2.7689593;.99491364;-.30439949;3.1693101;4.6023483;4.0065103;2.5428967;1.7053037;6.9616346;3.6474071;2.549947;4.4107966;-1.2030736;1.4816016;3.2431583;2.3200285;1.7578702;.71299195;2.1051676;-1.0054654;.51560169;.24317105;3.6229703;.49045166;-1.8999852;1.6084806;-.67731595;-.33876011;-1.4339119;-1.0186776;-.86555529;.54106516;.81434876;.50134277;-.54942781;-1.8394549;.48450616;-1.3812734;.62010622;-.45629519;-.18659088;1.6701957;-.017452952;.60285002;2.4178822;1.2455567;-.12464155;-1.0289807;-.25460491;.99030268;-.69357741;-3.6766846;-.12674457;2.0973842;1.3901845;-.15684247;.8493765;.72105074;.14056891;-2.3337462;.3049919;-.027125873;1.0101228;.12386337;-.32340729;.079926044;-.32854664;1.0841371;.53094411;2.649158;3.6732259;2.6201136;1.892835;1.9805478;1.5967358;3.828598;2.0227766;1.0241632;3.2105269;3.4430268;2.5506732;1.775737;.38491398;-.065959215;.29913652;2.3100469;2.9161477;1.4131726;-2.1983829;3.4949286;.84535837;3.5955427;3.5209649;1.189945;2.0425525;-.20145245;.88597077;5.2499924;2.0697062;2.314626;2.4523561;1.3696239;.30703834;3.2716587;4.8584557;3.0718958;1.3222771;.77385134;4.6853399;3.4696376;.32719555;5.4479899;-2.281853;.68030089;2.8272605;1.5475631;.24446088;-.77291685;.11467792;60.412746 +.093261071;.080086224;1.0879146;.5753516;-1.2357827;1.2054868;-.14593719;-1.0256168;.095907412;-1.1422863;.37082657;-.53192472;-.10087601;.66630304;-.40775201;.74356461;1.0614194;.97770321;-.71203357;.58180261;-1.8514659;-.73818052;1.9910898;1.0784389;.092596821;-.3085089;-.9598363;1.8723354;-.35958669;1.2076027;.029401259;-.68378609;-1.4638565;-.96557909;-.31318989;1.3724964;-.58252525;-.83189756;.97923505;-1.6159956;-1.5403547;-.97019023;-1.037616;1.8320546;-1.4332348;.72568369;.5200296;-.39277214;.61458242;.97563958;2.4718521;3.1124473;-1.6444856;1.5402652;.14628582;-.032888174;6.5296712;-1.2736764;-2.1114416;.43841594;-.20223108;3.3612475;2.3351252;2.0897059;.70891935;-.31453425;7.0681806;-.73397875;2.2366114;1.6684873;4.1817088;.44626969;2.2632606;-1.3690147;4.5185261;.40077403;1.066381;1.8906246;2.4015608;1.3584765;3.0885739;.084729105;.74524093;2.7307177;-.31900796;4.34447;1.3610812;-3.6728365;2.5546956;3.3126669;.24839649;1.7710887;4.4769154;3.8638401;4.2427731;1.1998928;3.9901352;-1.8925189;1.9884714;5.4543633;-.98128873;-1.3799747;-1.1356636;.064336166;-.46537378;2.5987213;1.1580873;-.16994075;.94210279;.6608839;2.0415761;-1.4774525;-.21420105;.02847331;-.26985601;-.87251693;-.62392014;.60491461;-.92198485;2.2453353;.25601798;-.83614105;1.9807959;-.75625664;-1.6128448;-.049029272;-.18235551;2.4108026;.68897301;2.5810676;-.81828225;-1.0828071;-.15693903;-1.8738673;-.79242891;1.809472;-.17644525;.090956993;.40250778;-.25457406;-.99408078;-.41135937;-.87552464;.31052986;-1.0761085;-.32016838;-.33316219;.76044136;-.48295408;.52696902;-.23801185;2.6254661;-2.2217095;.13396913;1.2934362;1.1626893;4.8135972;-.97250551;-2.0189688;-.33841467;.53893983;1.5323558;1.6188512;.39055502;.10808355;-.3376708;4.2373638;-.047057785;1.5266504;-.39593199;4.4288588;-.22295317;1.053899;-1.2570324;1.8215743;-.063128836;1.3254708;2.3259516;1.3248383;1.7438686;2.0537212;-.087228157;-.85935837;-.079576626;-.12971033;3.5144968;1.1503844;-4.3826647;1.3207598;2.1405339;-.67441237;.89632314;4.1130071;2.3053949;4.1879773;.83144212;1.9152447;.30096257;1.6465966;3.4405456;49.787685 +-1.9973769;.19956034;-.60618359;-.60634124;-.83221328;.55751318;-.75014538;1.9223527;.55340815;-.52862042;.16384047;1.2781832;1.0566604;-.29971328;-1.4239998;.9689427;-2.4219441;-.14804533;-.76399577;-.77412295;-2.1151662;.25425753;-1.476812;-1.4918085;1.2858995;-.32491091;1.1992897;-.21529931;2.1854527;1.066422;.20529346;-.47380114;.061918773;-.60920578;-.69682521;-2.3298483;.6364069;-.063654535;1.7794604;2.4014537;-1.0656914;.46029606;-.70993054;.84394372;-.101158;.44969848;-1.4299518;1.5532457;.69683737;-.93659264;3.8379562;3.6894808;1.3600285;1.4239564;4.7928944;3.509202;5.0395894;4.0903726;6.0500455;-1.5670313;-1.1202116;4.4386969;2.7176905;1.69639;2.9656928;1.2953423;3.3931615;3.7709563;-.40522379;3.9734368;-1.675361;1.563377;.46875349;2.5554595;3.4961019;2.041265;-1.940014;1.3685018;-.17648283;6.2986245;-.49159351;2.2734315;-1.3159741;-.23714189;2.084394;4.063705;2.5317132;2.8677123;-.1078101;-.72544277;2.484674;6.9220877;-.56123596;4.1060815;.8890807;.23976105;1.9562351;2.8801651;.20677045;.2356296;-2.2836187;.59747678;-1.1961606;.53051633;-1.3295751;.25114787;-1.2770407;-.50401849;1.2053094;-.55403286;.00093702506;-.77945131;.66254371;-.52754748;-1.1351001;-.019313609;-2.2747755;-3.0801277;-1.6441822;-1.5522695;-1.6326122;1.5650899;-1.315591;-2.7307999;2.2422132;-.62574714;1.782616;-1.1290746;1.1470772;.7384429;-1.746794;-.42018506;-.8902725;-.99668354;-.72971773;-2.8300791;.38969183;-.62305695;.96952313;1.7531004;-.52733392;2.1512609;.53301907;-.22559728;.74754393;-.48864484;-1.7446011;1.3910495;1.3404773;-.79575282;3.9249301;.60652661;3.0516746;.70812225;3.0584049;2.1926446;1.4296685;1.382051;5.6613955;-.31211174;-1.5899606;3.8329282;1.4839966;1.6893916;2.6892917;-.61717635;3.6357923;1.8906236;-.056599021;3.5416849;-1.526336;1.6201108;-.095228031;2.2964642;1.6105912;1.1165823;1.4364911;-2.1951964;.55582207;4.8823757;-.83632231;.43839124;-.23105934;-2.0566235;1.5832751;1.8426945;2.32037;1.6060764;1.3678639;.39281148;1.5738937;3.1049669;-.18479447;2.9147346;.76254183;-.28569546;.32350487;4.1156211;-1.1402618;1.7449644;56.328487 +1.669647;-.22454436;-.28230476;1.6625328;-.092002161;-1.0686119;-.34395391;.080438077;-2.052727;.53972363;1.38003;1.8544799;.8357591;.80182147;.47753388;.54084802;-.89565665;1.1335392;.26013362;.49562591;2.7069404;.23854212;.66846198;.80600256;-.1847495;-1.5677216;1.549641;.32307556;.083279394;.88327402;.78824079;1.4243406;.80929404;-.032570425;-1.2005664;.44845715;.09264677;.50832486;.22069657;-1.5889878;-2.6790578;1.3001285;-1.2947545;-.69836575;-1.3463157;1.0173959;-.98362148;1.0053308;-.4420203;.54145199;-1.1814368;4.659862;3.6847243;4.2350392;3.2786593;4.8097401;5.065136;4.3924322;2.3441939;-.43780798;5.141705;2.8649566;.8446241;1.0701672;3.0902007;5.538198;-.37977844;3.5658247;4.6016536;4.4371443;2.0818186;2.2056632;-.32721069;.79322273;1.9889252;2.1715472;4.0671668;3.8598428;1.5095786;.58448952;.78187865;.75313532;5.0069785;2.8793356;4.0663934;7.9581943;2.340858;.020884825;2.2850196;2.0447125;2.899478;1.7728972;-.05158215;1.637681;3.0246453;5.0055847;1.3777755;3.9466538;.89797676;1.2848885;.4069272;.42541787;.29132786;.29476243;-.22342815;-1.245183;.13414134;-.76762241;-.34321335;-.22925463;-.90796256;2.7056742;.16097935;-.31959307;-1.288269;-.034116223;.062582411;-.4003652;2.8924415;-.20318674;-.800273;-.0589526;1.8687637;.55953068;.027904218;-.079003572;1.8252206;.97072947;.20873845;.34018832;.95134872;-.03316202;.73167789;-.84461415;.23874554;.90646333;.27194047;1.7702315;-.98479044;-2.1355081;-2.8774111;-.0097960616;-2.1412928;-.050092611;-2.266052;-.56667989;-.076553516;1.0664986;-.8373301;-.80154419;-2.809653;2.5082762;2.8253253;4.578011;1.6144607;2.7570896;3.3251586;.35414785;1.9256687;1.4668851;1.4650967;3.5961993;-1.3017322;.96754509;3.3080378;5.7323356;.98055202;2.4853549;3.8942621;2.7394066;1.0858771;.91134667;-.54362738;-.31408471;-.52642238;1.9304665;2.0087726;1.5326201;2.3814695;.14404356;-1.2138138;.34932786;3.6004732;1.3275615;2.9081066;6.1571741;2.4876311;-.33420044;.3711921;.96647006;.49694324;1.3958447;1.4533727;-.15357423;3.9909301;1.9343333;2.0927691;4.9235134;1.3669217;1.8315111;66.292252 +-.86956084;.77470613;-.94644254;-.22332531;.52458853;.51965451;.13029496;.46910721;1.6984143;.49400133;1.2882658;.10081762;-.38155738;.23598725;-.021539396;.76076287;.038999606;1.2684385;-2.2820005;-.27075863;-.79658532;-.11463296;.92039651;-.33339357;-1.7412122;-.80597001;-1.4098063;-.31991479;-.22417602;-1.288102;.10978474;-.61644375;-.4711237;.59403753;-2.0774736;-1.0098733;-.12504157;-.90173405;-.54080415;-.21225861;-.29248601;1.1550109;.95921183;1.6546068;-.9572472;-1.1498636;1.1963691;.111352;-.99416989;-1.5652778;-.38831413;2.5887508;1.9233162;2.7516601;3.0722606;4.5872426;3.2697966;.53171664;1.9715472;-.80629277;4.611804;-.70101291;2.5109072;3.8474576;4.239552;1.8616458;-1.3733013;-1.4611659;4.4475641;2.612092;2.337857;2.0088599;-.16857052;.97901148;4.5745215;2.2852578;2.8719053;3.1434767;3.4866402;2.9768133;-.64706087;4.9731817;-1.7795761;4.1746044;.097885594;5.13621;.27192256;4.7994437;-2.8265467;-2.1280353;2.0992165;3.4812961;-.36427119;.9890486;2.0805132;1.4797213;3.393281;-.45782679;4.6683726;3.2754555;-.34441802;1.7567251;.46083316;-.83114725;-.0071497071;-.28747359;.18229938;1.1451061;.65261346;1.8314371;.9577834;.15310468;.26998067;-.50279373;-.84103787;.73439211;-.042655718;1.431116;-2.8423245;.00204243;-1.633266;-.72737932;1.5704637;-1.3324186;-.84486198;-.38877591;-1.0439725;.059039243;.96544319;-1.5133895;-1.0773398;-.77751464;-1.5449759;-.97210401;-2.1552525;.4867698;-1.4699129;-.59583801;-.66115266;1.4232388;-.656771;.48837611;.096479297;.084282622;-1.9698148;-2.6574004;1.9501622;-.22564264;.69636351;-1.3792063;-.39135328;2.3658891;2.1894848;2.3087645;1.4278971;3.6621542;2.298557;-.0179586;2.3159637;-1.1753657;2.1104782;-1.0109423;2.5180821;2.437012;2.3532364;-.29748058;-2.2076929;-2.7391684;3.6989081;2.4600058;1.2994668;.8547824;.0087412922;1.2650651;1.5239595;3.6009021;1.7254325;1.7317477;3.1342587;2.9622161;-.32753152;2.3844275;-.8025924;2.9619901;1.57573;5.5106497;.8531304;2.5835443;-1.9781353;-.44536978;2.1383402;2.8259344;-2.1811306;1.0329347;-.20126927;.86092561;2.5617981;-.76172823;3.4553916;2.7429783;38.880135 +-.50150228;-1.5138596;1.3737972;.7451427;1.0906131;-.63823026;-1.2596109;-.50340122;-.33631238;.26809719;.52126729;-1.9058349;.62471032;.222202;1.1665697;1.2275659;-1.7157836;1.5302976;.3619675;1.059325;.8166554;-1.9948735;.86642402;1.4296434;1.2226207;.56817389;.62962532;1.6813467;.014916596;-.31893668;-1.1374214;1.503342;.70190769;-.23564731;-2.8634515;-.14345726;.81378782;1.1127526;1.9630163;-.95301443;-1.6573555;.54494447;1.233685;.13044693;.02215807;-1.9408697;.42329895;-.84790206;-2.5444636;1.2584919;-.38343513;.85401905;-1.2619253;1.3879634;1.3827587;.081665799;4.2496071;.57675624;-.25333261;4.1514106;2.4946306;-.46537989;2.5696275;4.2133231;-2.003762;6.5458307;2.1752658;3.0414507;.490592;2.3433008;.56905615;-1.0046647;1.429983;1.7751327;.67929649;-1.1504128;4.091341;3.3105817;3.5346119;2.6288142;.19926137;-2.5371916;1.3505464;3.0574317;4.2137685;3.7308412;3.3922341;1.9464053;3.5284865;.48503426;5.5524426;-.14663997;6.4990425;3.1841285;1.5169963;-.82330918;4.0512948;4.6289501;3.8354309;.38373846;.62608755;-.98339683;-.43548286;-.74271405;1.5235977;1.7378753;-.57776159;-.90107799;.70743972;.73986161;-.94948989;-1.4131285;.22749808;.071965441;-.39261922;2.1289427;-2.2958157;1.9909319;.182383;-.38771495;1.6389763;-1.5445472;1.5901829;1.6501223;-.30739501;.83154684;1.4228996;1.0257865;2.128016;-.39443937;-.70546567;1.0050591;1.7638806;-.2721853;-3.0842781;-.96570778;-.93002319;1.8019896;1.2837378;-1.6317183;-1.2199421;-.36674479;2.0789118;.64711052;.5489372;-.5929842;1.0635173;-.18553205;-2.4853909;2.379921;-1.5450705;.3654553;-2.5224125;2.1677895;-.018352166;.65053993;3.1354728;.77586639;.58680224;3.2663209;1.9319049;-2.201025;1.6051667;3.8613169;-2.7560732;4.1723118;1.2631083;1.2705283;1.3437589;2.144835;1.1957238;-.4022209;-.20631643;1.5338035;2.1603987;.14604387;5.1960144;3.3815205;1.8468846;1.6957734;-1.9244832;-1.5609717;1.2432913;2.7107325;2.3062475;1.5902339;1.0934026;3.6218612;4.0676851;-.23490131;3.7362108;1.9958154;3.9900615;1.168705;.88000262;.28676307;3.3165157;2.7364495;3.243979;.96880561;49.539322 +.62966669;.25123724;-1.1399846;-.41476107;-1.024936;-.23629664;.76449108;1.7128103;-1.0323803;-.21229856;.087868087;-.66555703;.98832417;-.67796248;-.9526723;1.0699151;-.70729601;-.97449297;-.71409106;1.842888;-.81400162;1.7845328;-.37054777;-.0084639834;-.70764875;-.28817889;.65526825;-.064594418;.62683159;-.5098207;-.47707427;-.39528626;1.0925851;.89931905;-1.0444756;-.16751863;.080411978;.4447577;-.33765763;1.4770534;.92191726;-1.0696994;-.12153105;2.1072433;-.35963699;-1.7758957;-.55236918;-.46829754;-.47456267;-1.0742459;.55519772;1.3797784;1.1020229;2.0971565;.35039136;-1.8430824;4.1642241;1.5338793;2.6693175;.6058417;2.8895974;1.177452;-1.5514479;-2.7377455;-.89504796;1.1824409;6.1729212;3.1771009;3.0276079;3.1170301;4.7028227;2.7276957;3.1519988;3.3926778;2.9214675;6.9454222;3.5848351;.76082265;3.0639887;3.4323683;-.33583936;-.6293695;2.6762514;2.2917917;2.2243795;.16284239;3.7409036;-.70300388;-.28312209;1.9148079;5.265923;-3.5197148;1.2867372;3.1352851;3.0833039;.5446021;3.8790224;1.5753435;.6780417;4.1895742;-.75839806;-.5283165;-.80061966;-1.413397;-1.2874534;2.4625368;2.4744468;1.6500754;-2.2844138;-.85242659;-1.2210195;-.84068477;.26311362;1.6837916;-.95463943;.063082598;.52261597;-.70050597;-.28741574;2.5890427;-.98906261;2.6741786;.18749048;1.3140892;1.1331336;.69804794;.87534708;-.53562689;.0090705426;1.1613101;-.70009071;.39521948;.97488219;2.2753422;-.533355;.065953083;-.46970034;-.37075722;.87885875;1.3387368;2.1943378;-.12049044;-.064522147;1.920813;-.85597974;-.93714136;-.31390962;1.6095262;.34881416;-2.2311273;1.5280612;1.0921819;.42709476;.30136922;-.91402465;-2.3545551;2.5841215;.86674976;2.1498005;1.2336065;3.2229784;-.001030894;-1.4618793;-1.9620111;-.046937078;.83100992;3.8294485;3.7762578;1.7656699;.53899848;3.1267099;1.3512888;1.8641144;2.3555112;3.9493029;5.5633082;3.9056377;-1.0860863;2.182838;2.8460445;-2.3700166;-.016816111;1.5408767;2.5961456;2.3439488;-.8714239;4.3490324;.18815117;.55415535;.5143699;3.8778334;-3.2415597;1.497246;2.4260881;2.9068601;-.90714598;2.1075983;1.5702428;.098663479;2.3710923;42.056503 +.12205803;-.57305056;-.024629686;-.0045872522;-.13537177;1.0386673;1.5906428;-.84750032;-.065154485;-.32490572;-4.4223127;1.6936879;-.072012797;-.91241151;-.40281808;-.70815921;-.54433596;-.30925223;-1.1432778;.84263664;.18163474;-.85573405;.44103548;.69803971;1.4263105;.50084049;2.5598485;-.018190922;.54160535;-.60688049;2.2810314;-.48566395;-.72225571;-.41622496;-.077421293;.47767046;-.18116243;-.50036043;.70489997;1.0988379;.88821077;1.2372299;.44913363;.36375105;-.70881838;-1.243667;-.24405885;.35739523;-3.0134671;-.72479165;-1.4137026;-1.9495114;-1.9209679;3.332967;4.0856118;-.31374863;-.84622908;.69817179;.99898934;3.5700004;1.222389;2.2525578;3.0599258;3.20522;4.8816981;1.2051212;.5670855;3.4392991;1.5669359;.13725854;2.4758925;1.8347561;-.34232846;-.81509399;3.1993883;.77721739;-.12260058;.85494363;-.82559431;-2.1347241;.20141578;1.2790482;-1.2070314;.7889179;3.2007806;.13820073;3.2037995;5.1990685;1.80322;3.1073825;2.5380626;.14453386;3.8627627;-.10422225;4.1103015;2.6960924;.69020307;2.1618166;3.2843692;-1.3180311;2.6215055;-1.2120579;.84739083;-.7741282;-.17359568;1.381889;2.0684829;1.3273907;-.42992243;.31244114;-3.4767323;.46236044;.3751159;-.6432128;-.66257834;-1.540688;-.30189916;.10853655;.34487966;-.083179101;.8494038;-.2042827;1.5273609;-1.1509926;2.1447301;-.65214801;3.097389;.26003414;3.4082782;-1.4376806;2.4080567;.094074167;-.22951667;-.13289879;-1.7733871;.11748252;-1.2383054;1.5737337;.92914295;1.1927509;1.0043895;2.2652996;1.5754868;.93618363;.093459584;-.80736518;1.3021364;.058400061;-1.9882207;-.33974484;-1.3230531;-2.5871499;-1.2920285;2.5274808;2.8998747;-.87640631;-1.3486401;-.94523698;-.80743837;2.3396504;1.4606655;2.37427;2.136822;3.5927188;4.6081715;.91005492;.50617081;3.7344522;.64689475;.69351149;2.5907207;1.9079516;.14438595;-.80257195;3.8489785;.81504601;1.9993227;-.26241624;1.6424091;-1.5068763;.25220734;.17038266;-.52332497;1.8639355;2.6912072;-.56313092;2.0878043;2.9896967;2.2854011;1.7257637;2.0385478;-.47963265;3.9488909;-.46895272;3.3336346;1.6053379;1.4453062;-.11861953;2.9073851;-1.0371506;39.27578 +.23740698;.86953133;.99260598;1.0941504;-.18127844;-1.1399632;-.36141029;-.65814209;-1.5882933;.038071506;-.08605127;-.45016941;-1.47602;-1.5021095;.18324155;-.059487451;-1.9358983;-1.1358361;.040395129;.88717449;-.90821356;.49906057;-.43313766;-.33425525;-.87782562;.2519173;.43348026;-1.7757871;-1.8450434;.25359148;1.3286573;-.12278309;-.43755016;.50708884;.46987212;-1.2857324;1.6882408;-.78963012;-1.0565968;.19883686;.53465676;1.2642581;.34950313;-.38883111;-.35759261;-.55178452;-.22425225;-.0041792546;-.35720286;-1.6429781;1.4454094;4.6391053;3.0922549;1.275056;3.0492203;1.0119154;1.8163525;.47550163;2.9664967;1.4859086;-1.8399822;3.5105875;3.4046125;1.8127285;4.23701;.88044459;.86741829;.34518844;2.9992583;.49506766;2.8495631;4.2697139;3.07618;2.783489;2.5516479;3.5208604;2.6723268;4.2911382;5.4523292;2.2700903;5.854413;3.1088753;-.45347214;3.3431005;1.0748518;3.5390167;2.3281221;4.5794125;1.5208349;4.4702153;.22916262;2.8541718;2.6778634;4.0593348;2.4537981;1.6699886;.32485607;.77769578;1.0231081;1.8898566;-.12298468;-.52357072;-.093067534;.90457141;.5585233;-1.1109189;-2.2831752;-2.2929986;-2.3597279;-.00019679725;-.12484501;.79960859;-.45210326;-1.6753876;-.21047023;-.40731087;-2.3769121;-.15816925;-.15925232;-1.6431192;-.40786433;-1.0322875;-1.5131304;-2.0838354;-.39245149;.50438869;.73559463;-.50278282;-1.2521944;-.15243898;1.759614;-1.8826654;-.64697146;-.53208303;1.0434101;-.99797368;4.1261144;.76011431;.60561723;.70054698;-1.6612328;2.2286832;-1.0975255;-.67415297;-1.4740345;-.75631112;-.86363709;-.98906404;1.9487977;-.66263205;1.2520671;2.573478;2.7175431;.62804496;3.3047101;1.1442846;2.7961943;.81906486;1.5327517;1.8241196;-.44549808;1.3675393;3.3912022;1.5342364;3.2757928;1.6614915;-1.4018493;.18863724;2.3321295;.42667094;1.4143937;2.6391129;1.7885793;3.7604539;2.7035894;3.7001498;1.745755;3.6742229;4.7259245;2.1427102;1.9909884;3.2779076;-.95877147;1.0116063;.91733867;1.7111006;1.3743714;3.1416211;2.497447;2.4422946;.80826557;2.6500444;-.42758858;3.6736975;2.1722641;.44471702;.31080166;1.9211754;2.0077744;2.3255744;55.062153 +.93646896;-1.6380746;.94324368;-.078395635;.94787991;-.6075567;-1.4043593;-.048506249;.80267483;1.1853071;-.29686555;.5157482;-.17719874;-.2943576;-.66796654;-.094017774;-.81660938;1.0076445;-1.1520102;.73101103;-1.9428509;.906802;.33791056;-.3297202;.18485029;-1.6648536;1.0901748;-.47598723;.094686218;1.1782411;-.4303427;1.0238872;-1.2135805;-.56168991;.53168166;-.50288117;-.84420329;-.42493093;-1.3937782;1.5441593;.57424361;-.83372152;-.74923849;.34170032;.23883982;-1.0424329;1.6613557;.26531434;1.203355;-.99242884;3.6123474;2.0022447;3.5464461;2.6545644;3.9343812;-3.6802421;.88999999;3.9439161;1.2443929;4.4938359;.9301936;2.0560484;-1.9434811;3.2193811;.98983949;-2.6051164;.43668965;2.2636867;.97564363;6.3363805;-.35473308;.97930694;-2.0785151;1.8339216;2.1629617;3.6961899;3.7871485;-1.9655231;5.1979756;-.38927588;3.4332664;.56548148;1.1806716;3.4461067;2.5025249;-1.2208403;2.2739832;.30892253;-.12560919;1.0680076;.74084604;1.2104012;4.2962966;6.3977675;4.2987781;2.6244893;4.5266171;3.0072765;-.24232259;1.3535141;2.1942468;.27547976;.69397742;-.90644383;-.19886555;-.89551002;.51847142;-.48518708;2.425472;-.59739196;.91005528;1.553555;.78614837;1.658293;-1.2039168;-.67523909;.1128279;.71040756;-1.9166632;.50066888;-.98741043;.51316458;.26440686;.013768358;.3459329;.44053546;.3598955;-.23965201;-.99029034;1.2879463;-1.05467;.79644704;1.9551567;1.2393975;.16811006;.34216264;-1.0622202;.31738141;-.018725956;.9820863;.0054556662;-1.1610794;-1.7456536;1.3184928;.46925497;-1.4756913;2.0889602;-.5962134;1.3774546;-.44938511;1.1901128;-.85542029;1.8368461;2.2584736;2.8563995;-3.1338205;-.90747601;2.7147896;.91532576;2.4869165;.46519116;1.3939878;-2.4972486;2.7623529;-.18120439;-2.5771766;.17865498;2.1967771;-1.578055;4.5301743;-.63129675;-.36233604;-4.4519801;1.6462022;1.8383614;2.7213402;2.7373319;-2.7467442;3.8847442;-1.9684366;2.7422218;.77004433;2.5697896;4.1656241;1.4376736;-1.7568637;1.5352283;1.5542371;1.8793503;.47715461;.61577028;1.2470171;2.4546452;4.0470519;1.6818486;2.4696567;.69147986;3.4513171;.15930417;1.2193334;36.687965 +-1.9577744;.4302204;-1.2273586;-.31858629;-.45890144;.81352919;-1.6465509;.34673125;-1.6602565;-1.52845;.50496888;.77355546;2.47966;-1.5435776;.063774794;-.092795096;.81535918;.17811398;-1.2928863;-.33150452;-.55018139;.17646246;-.70384091;.47969928;.88057882;.74656111;-.74959016;.28929517;-.75382495;-1.0188202;-.93247795;2.0461109;-.8992756;-1.5258675;.56399071;1.6040857;-.72182989;.30593425;-.70795745;1.2751287;.96630561;.17075992;-.90945774;-.57831854;.74369115;.62196577;-1.8273071;.75514692;-.56327242;1.1216046;3.2428989;.071756586;2.4609745;2.4253907;3.0009944;1.1500664;1.3787392;.17584838;2.9616542;2.0422506;4.7153325;1.7054728;1.3461457;.92382622;1.0187713;3.6996603;-2.2457426;2.7880924;-1.4231035;1.582231;.5079608;-.24838679;1.5389903;2.536813;-1.2411644;4.6155572;-1.0030698;-.057344563;2.8300462;.25860086;3.4102211;2.3370638;5.3427672;3.3658721;-.94458133;.20398058;5.1192431;2.174886;2.5775042;.62987;2.7020249;4.4920812;1.8589078;.26001897;2.2578979;1.6696965;.70007879;2.3297398;.29729822;3.1996751;-.13256651;-.9308219;-1.2683549;-.41233909;1.8527613;.14632563;-1.6101373;.51797336;-1.1035974;-2.9871662;-.055886306;-.5230509;1.0315741;-.77497774;-1.3332325;.16762993;-.54079103;.70488322;1.7870438;-.4320972;.25693637;.083109811;-.14443204;.34339154;-.24074878;1.7290615;-2.514329;1.1348525;-.20238939;1.5355366;-.34108296;1.3549224;-.61601585;-1.498078;.17248777;2.2156432;-.83880943;1.5404882;-1.7634417;.48792806;2.6867127;-.6181407;-1.4615275;.435637;1.58935;-.27168232;-3.4525704;.57859874;.72286361;.25522801;.94248062;-2.2592874;1.2714385;2.1198485;.30042037;.96855414;3.2360284;.99872315;-.16166236;.080193244;1.9739058;2.2039671;1.2464341;-1.2832968;-.032854985;1.5482203;-2.1309543;3.1305921;-.38200876;.037944563;.40675262;-1.2991935;2.1128097;3.132405;-2.0365498;2.3937705;-1.57506;.31667462;.48205501;-1.2564908;1.941437;3.0781374;3.6973727;2.5135782;-.92700577;.26607871;2.9821315;4.5178194;1.876977;.86525077;3.5084491;4.8337812;1.2502592;-1.0197804;-.98717439;1.2734978;.83402675;3.1871436;.56875777;3.1576645;38.398468 +.20338376;-.69515496;-.46011043;.2159594;-.55212301;.50867176;.13660467;-.09893655;.27077517;-.051618315;-.38542527;-1.8760951;.54905367;-1.5940162;-.36801484;-.6489765;-.29132393;.18552774;.66097528;1.0816044;1.1457928;.14411835;.23131786;-.57279587;1.7541715;.1687775;.03617112;-2.1335123;.40335417;-.46723333;-.8423996;-.54936558;.15295453;.692312;1.4001755;1.7864918;.57792079;.24574375;.99995989;-1.0998917;.66385889;.23779139;-1.9285799;-.3905676;-.22171563;1.2371007;1.7179582;2.0449905;-2.5785592;.33811358;4.018054;4.6301508;2.7638769;.73723882;2.7984293;3.4515316;5.3094521;2.9299974;4.2713432;-2.9563317;3.9990933;1.0956635;6.8290529;.80282092;.66389084;2.3421903;-1.3528085;2.6316764;1.7117205;2.0040448;3.8690705;-2.6453302;2.4315841;.4001722;2.7181728;3.1484079;-2.8185186;1.2439117;-.25877821;-1.4612864;.59405816;5.1264863;3.0203826;1.2508864;1.7612506;1.3128282;.52740085;1.2537264;5.4366498;3.1062906;2.0285816;.0046212603;1.5166748;2.078505;5.4154596;-2.4630942;-.089517251;-.6135245;4.3411617;.86551523;.44397298;.5700078;2.0386684;-.15746242;-.31846946;.92687225;-.042212848;-.19656818;1.6625115;-.17043947;-.67768401;-.41792229;-.76337969;-2.3244853;.2506398;-1.4511273;-.77681804;-1.1256109;1.5015811;3.2469089;2.1742048;-.72611481;.94013631;-1.070998;.51107323;1.0010055;-.48539242;-1.842993;-.017047897;-1.0366939;-.59092474;.76905316;.070871383;-.23932025;1.0000665;-.22601925;.50443649;1.6267821;2.2452848;.38502568;1.0377324;2.3681183;-.96404749;-.47257751;1.8332161;2.190882;1.9682099;.73840123;-1.6187254;-.80006582;4.0064731;5.1988673;1.230047;.19423902;2.3569849;2.3003867;3.5518835;1.2669108;2.4025099;-2.4192035;3.4592352;.54659295;4.8354344;1.4681263;.84827703;-.089813247;-1.3748304;1.9226998;.95725518;1.2481892;3.8870213;-1.3972371;1.0408134;-.99172843;4.4901075;2.9188039;-.2471132;.44813484;-.50403094;-3.2640018;-.19656071;3.9028704;3.8691869;1.8354713;1.8004687;1.89143;1.1249621;-.95931941;3.4735694;.22452395;1.8205216;.47970518;1.9858031;.45198122;4.1889887;-.20915774;-2.1225946;-1.2958592;4.2238622;.95369518;45.420834 +.21665144;1.0500261;.77313441;.75293797;.85507685;.91949069;1.7587599;-1.4913735;1.8536582;-1.1986723;.88791829;-1.2095933;1.2688947;-.49105048;.080224805;.27501759;-.21363425;-1.8716609;.43157414;-.97352529;-2.5922472;-.55426729;.75367641;2.1850653;.95789289;-.78147441;-1.4885362;1.1856835;1.1481365;-.27833608;.7230739;3.191838;-.97871464;-1.5889459;1.3131604;-.017682353;1.1410044;-.55445737;2.33132;-1.2295845;-.62419343;1.0893368;-.88168544;-1.5727633;-.73100942;.66018462;.04309722;.81132019;.041493535;-1.59433;2.0018089;6.2159433;2.919472;1.3792011;4.8753233;6.6872621;1.4570876;3.314589;1.4952241;2.0613008;5.5313945;4.7952771;2.3953516;1.3902558;.7543537;2.7780516;-2.2793663;-1.3958299;2.0898008;5.6373053;5.7121153;2.4410417;2.6963513;.43696871;3.4291968;-1.6742263;-1.5141054;3.821934;4.1059923;.64026779;-.44576812;.95618367;1.9894791;4.0045161;.98831671;1.7004892;3.93291;2.2725658;1.7229779;-1.5862181;3.4112566;3.2138841;4.0007091;3.0411475;-.092217185;2.7281466;-.33877808;.42984545;3.2164478;.37444261;1.1690339;2.1374912;1.54583;.2613903;1.1393384;.069600031;.76376855;-.24195081;1.2138637;-1.8973559;1.2039193;-1.5396916;1.4550983;-2.5291917;-1.1748679;-1.1150346;-.71945018;-2.1954434;1.0138873;-1.59149;-1.6568147;.84556425;.55183613;1.900575;1.7558818;-.56673414;-.56531239;.11193725;.88018328;.10633738;.82521886;-.43929422;.34397376;-1.1785456;.60856241;-1.7644328;1.4207699;1.0280514;.056689527;-.82939744;.4859654;-.44756666;-.047329403;-1.667341;-.169955;-1.325045;.53519005;.39787254;-.21169581;.40882057;2.5313334;5.1636324;.22999695;2.8499856;3.1850107;5.1627579;2.3003736;3.6362357;1.1799642;2.3606095;4.2996445;3.4855626;1.6365583;1.6996151;.91649002;1.2212962;-.84247959;-.39051196;.67346776;4.4056888;2.7206824;2.0825212;3.4914334;.2086982;1.3512062;-1.3964345;-1.0581706;3.0329874;2.6686938;-1.9904802;.73907816;2.0585215;1.2961669;3.16134;1.5682282;-1.0793446;1.4904723;1.5519793;1.7727898;-1.5683644;2.2158601;2.3235323;1.2786179;2.8782971;.11825611;1.6776347;.084072202;-.38981813;4.0862985;-.42044985;55.569252 +-.056702927;-.49927524;-1.9677868;-1.6741444;1.0977801;-.091931224;-1.5937843;.60704106;-.435532;.59675944;-.73691487;-.39227113;.27692354;-.20773993;.3398622;-1.2915622;-1.0670863;-.71113193;-1.6667616;1.0383708;.77340436;-.058824897;-1.2015468;-1.0314661;-.70606428;.13565648;-1.5537302;-1.3679355;1.0206869;.054305609;-.016374923;1.1505774;-2.0037174;.48745221;1.4151372;-.25385973;-1.124815;-1.1095266;.32582548;.90897405;.11046335;-.33227634;.7876569;-1.5978703;-.71408707;-.64608842;-.86160058;-.046375223;.63906968;-.075512119;-.33232051;-1.184545;-.74288762;-.086534843;2.6543274;.6223802;3.3251231;-.51743066;.36107028;1.6240227;-.77741396;2.2482781;2.9756384;.87053674;6.8379173;-1.1922253;1.5776347;2.2001722;4.28474;.82824224;3.261992;-.7835657;1.4476255;2.3585935;.091615684;.90778363;1.2940453;-2.8345447;.38023806;5.3309355;.10922287;4.5683675;1.0508862;1.0553038;2.2175672;4.8085957;2.191453;1.5704514;2.3485851;2.2686274;-2.2844195;5.7563186;1.0988514;1.5011882;-.16145433;.70056158;3.1345446;4.1098194;1.7624675;2.6692207;-.44654262;-.17203964;-3.9334967;-1.6444333;2.6104572;.38877589;-.28089127;-.055715848;.73085433;.40081465;-.83288217;-1.2696375;-.64835125;.088644519;.57056552;-.46412799;-1.263635;-.5538817;-.69257975;1.9626409;.78960431;.83537138;-1.3901699;-1.9256237;-2.4823873;-.71282214;-2.0133381;.51026833;1.8868281;.20255116;-1.969493;-1.3313252;.66040903;1.8560029;.6165278;-.81030083;-1.1630603;-1.7943678;-.27074042;2.8244429;1.0073501;-.5403412;1.091116;-2.2358935;-.39688516;-.50983071;-.74155432;.033816606;-.22927457;-1.2704191;.22317402;-2.7246547;-1.8828003;-.94060421;.89258939;-.71563435;2.5624421;-1.4380101;-.32502213;2.3010497;-2.8794489;.69061321;-.4571211;1.3893435;4.8592296;-1.1592853;1.1422234;-.62935245;3.2798913;3.0274537;3.7916594;-2.5779858;1.6194507;.52470124;-2.737505;1.4947431;1.405215;-.81751537;.19252962;2.4652803;.38508853;3.533721;.10953937;1.1742874;2.4802434;4.3738914;1.6736166;.22297145;-.046809912;2.9400589;-.32180673;3.1683369;.97177607;1.352538;-1.4309003;2.400012;1.2589444;2.168113;2.9979577;2.2726238;27.866129 +-1.1657896;.061711501;-.15728979;-1.2364634;1.5203851;-.51660967;-.92039078;-.55873263;-.21043293;.19125609;1.1722335;1.0887004;1.1571854;-.035966832;1.2947912;.21688733;-.071547866;1.1729119;-1.4266075;.18668579;.84150761;-2.6279566;-.10842223;.47262552;.057897042;-.67092001;.36137742;.38779789;-1.0888325;-.67090207;-.96745551;-.14709371;-1.7042012;.21739338;-.29370713;-2.1223221;-.71744192;-.42580155;-.79264092;.17290699;-.80341452;-.058545973;-1.0792462;.50445271;1.3054544;-2.083967;.26487669;-1.2145182;-.44161975;.2215741;-.44291422;1.0022056;1.3211194;.10339211;2.4052696;4.2596831;-1.8139375;5.0127616;.082316928;3.8677268;5.7272267;2.5179;.57614625;3.256974;.40624875;3.8720391;3.7508657;2.6787601;-.21845126;1.0936257;-1.7822138;6.6433754;2.6070781;5.0979013;-2.1963489;5.3832173;1.9700013;-.97690707;-1.7172011;1.6522245;2.032717;-.82303303;1.5171405;1.8301693;3.2387278;1.8670576;1.085655;3.0546486;4.1333904;4.0187097;6.4798141;-.31269529;1.3796763;5.0652599;1.6057839;1.4593266;.90592426;.52403754;.98715752;2.115732;1.7933964;.84869307;-.35001034;-1.8955022;.63686311;.21306531;.15814911;.10177311;1.3792422;.080534995;1.0808539;1.9378788;.83235371;-.43316615;.61600918;-.18460603;-1.9602046;1.2912745;-1.8720913;-1.0261589;2.4515779;-.87896949;-.17978734;-.88583493;.1078934;.15608987;.52967221;-1.1408978;-.19456004;.45634067;-1.1710341;1.2153283;.21064816;-.23238859;-1.7000552;-.53546518;-1.6842538;1.1349608;-.92398965;.030283045;.46469736;-.86227053;-1.7106138;-.023985079;1.4073237;-.51658547;1.5248539;-1.6593709;-1.2550062;.46617225;-.30565619;.70836848;-.61486924;-.62907308;.94576275;1.2249578;-.38115048;2.6043134;.38559967;3.1728582;5.810782;3.3299274;-.20391002;1.1021775;-1.1319666;1.1033412;1.3282179;1.4325585;-.82632673;1.4625189;.56512111;4.6633177;1.5434258;4.8733339;-1.8849487;3.4850848;1.9895247;-.75359303;-2.653049;1.1677151;.0353285;-.059062697;.89579672;1.0805271;2.7444546;.66791493;1.1936219;1.9526943;3.8172824;2.5698223;4.6431584;1.5974615;1.7454854;4.5271554;1.1572231;1.436376;.78888279;1.5299985;-.54652208;1.9223176;38.632355 +-1.6979902;2.0577967;.76659268;-.18133965;-.87016118;1.3766694;-.70053524;.70980549;-.73316157;-.27949321;.09942846;-.023042146;-.10737128;1.0578063;-1.4387532;.53097016;-1.0503058;-.19432348;.018163294;.70999843;1.0792885;.040668312;.28873071;.77049947;-.70791924;-.78747344;.21057034;.29967561;-.71775156;1.4381558;-.90468478;.70334888;-.10196486;.69715357;-1.279415;-.23382032;-1.7404252;-1.8723452;.41037601;-.44950503;-1.0800732;.31762072;-1.811861;-2.1603751;-.5110541;-.8644492;.39292076;-.39245427;-.095671579;-.82671666;1.5682173;2.2428217;.55554855;4.0675445;-.96434003;2.4340527;1.7073542;1.5748172;4.1109433;2.487987;1.3797922;1.5988621;-1.5818433;-2.2856457;1.5012484;1.3138498;1.7908126;2.1565552;1.264413;.88641906;.12189129;5.5266738;2.3144696;.52542764;3.5419621;.65657735;3.581562;2.5554864;3.2315929;1.5841287;1.2675016;-1.9947202;1.7934436;2.7065668;6.1453004;3.9269185;3.6977899;.29741174;.042515159;4.6923413;2.1967204;4.8477983;-1.3581961;-1.4131265;3.1009533;3.1289809;.55710828;-.33548248;4.1979089;2.8553121;-1.6650852;.59901673;1.1338028;.0081499116;-2.0840948;.027346797;-.33328629;1.1391326;-1.3056483;-.16377312;-.52029872;-1.1705339;.067822859;1.877301;-1.8052361;1.0522466;-2.2687972;-.70672321;.20035869;-1.6571666;3.1268942;.62196869;1.178161;-.089317225;-.65053457;-1.4013791;-1.5024496;.04845332;-.67307478;1.8861713;-.19960968;-.6926409;-.35200268;.53018385;.10879424;1.2472457;-.71515155;-2.0143397;-.28993347;.06621974;-.44269282;-2.2331553;-1.2138954;-2.2739182;.54788202;-1.7230158;1.3477709;-.05384903;-1.0935149;-1.7346773;.71949548;2.0811656;1.0641997;2.3527102;-.40196362;1.710453;1.5393813;.58614987;2.3555346;1.4014728;1.7678015;.82176298;-.092494033;-1.8231599;-.087056324;-.26673689;3.3088889;1.891011;.26205683;-.65212935;-.39291799;2.6519928;1.9456838;-.26792493;2.2967079;.86702365;1.4790766;2.4779031;2.8250718;1.1682673;2.6400595;-.78909272;.89916766;2.3635168;5.5654669;2.6404693;1.7530891;.60309666;1.9154805;4.5404639;1.764394;4.7499795;-.14452764;-1.302173;1.2223558;.66045135;-.91293889;.24018468;3.1732488;2.9344032;43.084579 +-.47875848;-.8624903;-.66098744;.27166727;.10709685;.19696914;.71341419;-1.4546893;-.87096608;.067612298;-.056758769;.36906898;-.76005;-.87802428;1.431149;.55867004;.24957782;2.3584387;1.049504;-.6249665;.93560165;-.80283713;-.79359514;-.40217194;-1.6079799;1.6942955;-.34888059;-.32700512;.30968922;.70451325;-.48743418;1.2899374;.87203461;-1.0525055;-.901963;-.31963199;-.49794817;-.42919868;-1.4506878;1.0944964;.90876466;-.38134947;.58372241;.69288141;.65263343;2.3183479;.2922577;.90740788;-.13278361;.79279786;3.9025414;.87590408;.43906552;1.299698;4.2234545;-.81522334;3.3559585;-1.1415566;2.655051;2.0851052;2.2588286;.19274385;3.2510898;2.9679987;1.0817444;3.3336279;.85377753;3.7954943;2.2442272;-.36688602;2.4016342;2.2177024;3.962832;.70160401;6.4683838;5.857007;1.5902075;.074737981;6.6678658;3.144486;.042056423;6.7991996;3.1053526;2.1534641;1.119421;-.84625781;3.9173565;-.41466996;5.1740842;2.0421643;2.2558067;2.6831098;-.26815692;2.952647;.075131878;.60065788;.66465712;5.9831343;4.1412153;.92273515;.10145032;-1.1785524;-.11082102;.39426619;-.83434051;.15888238;1.7854481;.50290722;-.77344757;-.70728445;.41792512;.18089972;-.63259661;-1.6482208;-.28573799;.90787846;.42808616;2.6049757;1.8767575;.10247225;.43694299;-.48486376;-.25504062;-.47822872;.14943038;.35251728;-.082865544;1.0846529;.45838392;.3212606;-.97414935;-.18373154;1.4021369;-.56940222;-.83888441;-1.7516984;1.7320763;1.1677057;-.35393074;2.4741955;.51605165;.47995964;.6562202;1.2628537;.82011896;1.5029962;1.0353764;1.0120951;-.51452237;-.41801637;2.6016641;.0054240664;-.52451062;1.4845315;2.6357646;-2.0941978;2.3385186;-1.8961776;2.2119753;1.3348911;2.1819997;.48864001;1.842949;2.07605;-.30203077;2.512929;1.4933382;1.3978115;.88804567;1.2973132;1.871014;2.5834944;1.5671285;-.28969237;4.1782098;4.3407044;.71927649;.1602326;3.6725707;2.0091982;.94202727;4.3900995;3.7263439;.67624712;-.3511709;-1.8190746;1.8779739;-.74739927;2.4208658;1.7850021;-.30731806;1.8244464;-.48254043;4.2500553;1.4377807;-.067734502;-.16269897;4.6538363;3.8907411;.61457288;61.97617 +-.26998013;-1.14967;-.45660439;.26410362;-.15728343;-.74762827;-1.5748527;.099861853;-.013999513;-.94087684;.48764193;.8086856;.21874058;2.814729;1.2023208;.40151662;-.8592689;-.47012892;.33522835;-1.3842312;-.66099888;.4602924;-.018650886;-.37733072;-.20885372;-.44379959;-1.2356875;.58197302;1.9212008;-.67954719;-.50255167;-2.7099648;-.27582729;1.130803;1.0892589;-1.9983894;-1.3429075;-.90953481;-.98166895;1.3779032;1.1039906;1.1716776;.30664232;.18460454;1.1440918;.23211229;-1.1221557;2.0539639;-1.2044129;.47888801;6.7879467;1.8445553;-.070316039;-.47355875;1.1924305;1.6660652;2.4081872;1.7449749;2.8999474;-.64225549;1.6445068;.43517998;4.383553;-.34137213;3.2017546;-.27346233;1.1518278;.39191133;.35760614;2.8194184;.074332133;.55316806;1.5856427;1.5003755;2.935216;2.7728877;2.6618345;4.2473173;1.2408364;-1.9047922;1.7016399;3.196697;-.60223711;.98181283;1.4677845;1.9421319;.47404543;3.9330714;1.975878;3.4475067;1.301277;.65193444;5.5147896;4.0970526;-.53473783;-.72052103;.37101054;1.0281882;2.5876453;-1.7653207;-1.248309;-1.0514108;-.4891122;-1.7555661;.90553629;.17239513;-1.0797863;-.4412508;.5645389;.54552853;1.4137781;-.11554087;-.7849378;1.2556465;.88831693;1.5274872;-.12289053;-1.1099255;.47167471;-.32869205;.18785845;1.8909061;.56078315;.51257187;-.18402819;-.78684855;-2.1820617;.90281886;1.4046896;.53087753;-2.8427119;-3.884068;-.067746028;1.7031562;1.0513252;-1.1999269;-1.6442342;.98389518;-1.9521544;.50537229;1.4015197;1.1602018;.89974755;-.15220675;.93477303;.24673672;.23249489;-.77051246;1.0979331;-2.0395863;4.2466354;2.910696;.96616983;-.27007169;.4685421;1.4843603;1.7081518;1.4414288;2.0775907;-.96217287;.79710388;1.4364239;4.522542;.78128701;2.6576283;-.11354248;1.3199215;2.0383945;1.4394336;1.1690747;-.11135288;-.30232662;1.0674869;1.1864786;1.7413121;2.4973958;1.5916672;3.8204122;.61040747;-1.4739428;2.5106924;2.5723932;-1.7508093;-.29877606;-.64299291;.84009123;-1.2209035;2.2936358;1.0124644;2.5424428;1.4019005;1.0329454;3.0301318;3.330219;.63876599;.62468886;.80644816;1.4782898;2.2552423;-1.6576636;41.392979 +.90718198;-.27742425;.15945336;-.11046767;.088850692;1.2909254;-1.2315379;-1.3451895;.44396362;1.1195132;.60603964;.36134878;.73265737;-.62145114;-.45305029;-.13644519;-.55263132;1.0266339;.31788042;.11194404;-.53336328;.12989046;.91827041;1.5267925;-.044434708;.37220854;.048695441;.36945081;-.58275664;-.65269977;.62961477;-.15810153;.40444013;-1.4635916;-.82324409;-.82564521;2.708698;.60739285;.36109728;.94248927;.88390249;-.046794508;.44815394;.85562533;-.203301;.087703481;-.11734062;-.88600755;-.22616829;.64364511;1.9639195;.11277265;-1.8141395;2.9987953;.11778301;-2.9586401;-.6966446;5.5948558;.24183804;-.10059784;4.3069301;2.7538157;2.5575807;1.2983776;6.74229;1.5277742;5.6683478;2.2441597;.22577466;2.8161547;3.9466987;.67980921;-.96823657;2.8596647;7.3374271;1.5211902;1.2509979;.43278307;1.5230538;-.87687182;1.5308867;-.74679172;6.1027813;2.7174268;2.2258325;3.1464479;4.8201108;3.4931145;.71521372;3.5929894;5.1484771;.78853846;.89782977;3.0950348;.11301556;2.9154091;1.316123;2.2134573;3.9934592;-.1934948;1.3266847;.82354206;-.23728597;-.94613248;1.8526832;.32837012;-1.7926863;.6944344;2.3480194;1.4897305;-1.0854037;.94207114;-.32384694;.73082691;-.021841055;.78268695;-1.4262308;.90973371;-.030540001;-.49485129;1.6112283;-.3017602;.45019582;1.1117274;1.8607951;.27251211;-.64251965;.73348421;.70246804;-1.5174025;-.46133074;-.95876878;1.5298774;.63369632;.62752646;-.94540149;1.9817761;1.4758317;.46144596;1.0848442;1.28809;.13066131;.30442151;-1.2143626;-2.3695989;.64353836;.76568007;-1.4013836;-.78797138;.95488089;.31273079;-.36307901;-1.1730651;3.2872086;-.48243639;-2.6394444;-1.0363234;5.6574144;.57334256;-.1439946;5.074801;.22413917;.33921829;2.6946564;4.3900375;.51074588;3.273052;.70727605;1.2372137;2.7120304;3.5537326;2.8135698;.44632301;1.5969929;4.7850332;-.52247649;.59492195;-.17742865;.74747783;.54623628;1.7757219;-.41059253;4.5328703;.075156115;1.3489187;3.0001705;1.8454597;2.0278869;-.12257245;1.4256989;3.6796067;1.6417046;-.33698839;1.2856188;1.4919198;1.4949511;-.13646892;.68282646;3.2803788;.66542232;45.876274 +-.8093679;-.13973641;-.18324414;1.6829144;.16780888;-.1735851;.79128838;-.2301203;.046864048;-.32867923;.8285175;-.49195763;-.23007615;.23299757;.0099135544;.33418679;-.51848245;.49914914;-1.0503671;-1.197284;1.3512031;1.5331455;-2.2065625;-.87187755;.33453536;-.36982328;-.4530769;-2.2625453;-1.7513386;1.6376727;1.7345794;-.16481745;.44181997;.20917545;.52416688;-1.3282123;.26500693;.3268472;-.89637226;-.96532172;1.2736725;-1.0766194;-.50666648;-.58314729;-.11800893;-.15445346;2.2853997;-.54061037;.51189774;-.79892218;4.4118285;1.1281122;1.8862064;2.1153035;4.8019767;.23106745;2.548249;2.2142954;1.7655997;3.8902733;.7794019;1.2209153;1.8645626;5.3670955;3.8740251;1.0645624;3.1348705;1.4568779;5.9768343;-.45329112;4.0111656;2.6171863;3.3591294;.60869408;.31602952;2.9824715;-.69105148;4.3436131;-.48782986;1.344891;-1.3058773;1.8131527;-1.0360792;.72133493;3.5799356;1.8028408;.92283094;3.3112793;-.75743991;4.6791806;3.0088561;5.9016075;4.8140545;1.2680824;.80674422;3.9961774;-2.2653964;.1918219;2.0370834;5.4042325;-1.5181202;.058810506;-1.0116584;.39401376;-.79515749;-.32191607;.34260938;.57628584;.32980591;1.9089874;.84940332;-.52995509;1.0960095;-1.9740582;-1.270393;.082790591;.60008961;-.029516082;-.020022219;-.78182328;1.72378;.29593813;.59717995;-.10580494;.73467082;1.5539091;-1.4244033;1.467855;-.63424993;.85638565;3.5445197;-.3516838;1.2885623;.079539903;2.3369215;-1.9772798;-.98133492;.22997798;-.9197439;-1.8703607;.20542979;.81295633;.31516212;-.42663893;-.84980828;-.23063104;.25767407;-.98860234;1.9725473;-1.0614811;3.2870958;1.5253792;1.130507;1.6053841;1.8299209;.65401822;1.7456368;3.3309486;1.80452;1.4241292;1.4561901;.20613618;1.7018148;3.8730562;3.5953639;-.26113805;2.1468041;.41199434;6.1048341;-.026518337;2.6901999;.87418753;4.9504623;-1.1521955;.4751901;.9391371;-.74456054;1.8073683;.29855528;2.2474275;-.9480406;.90884161;-.67946315;1.1150507;2.6364558;1.4961705;-.88267213;3.4484406;-.9261685;1.9479985;-.13920212;6.6905255;2.8474569;-.4396846;1.8999075;1.5758187;-2.5555177;-.78410614;.37039426;1.884707;52.159832 +.01467598;-.14416888;1.7750121;-.015019802;.037758276;-.04591522;.26986375;.17772485;.91224408;-1.1088194;1.1743342;.78407007;.72213352;2.4228566;-.45796001;-.35100925;.55655676;.96519053;1.2923602;1.1760967;.84304833;.15991935;-1.3320816;-1.0241209;1.6849529;-.83102757;-1.2013658;-.021659641;.013884497;.061615955;-.7422877;-.984227;-.19831198;-.049906373;-1.4485488;.20431517;-.70058697;1.3497136;-.25759459;-.7246995;1.0456665;.40545264;.76641154;.72151709;-2.2239447;1.9747525;-1.9092541;-.36750007;1.0194989;-.56665349;-.40697369;2.0699904;.14199062;-.070833109;.71129733;4.0565052;-.75633579;1.1678449;2.8449199;2.1234751;.85224092;1.0969739;1.1265426;3.4454679;2.232646;2.9625571;3.0335693;.97122824;.99118322;1.7181492;2.4568186;4.0595856;5.4452677;.84704387;-1.1377058;6.4880352;2.2025993;-.99602222;3.1997986;4.2674675;2.7358296;3.830224;1.1684176;3.4594073;1.5885831;4.3629718;2.9420264;4.6375141;3.0159192;.93675506;-1.796284;1.9828213;2.7109358;3.9020147;1.3436295;1.2783928;-.22010368;4.456593;-1.7033319;1.0007181;-.24558949;.54930174;.84067869;-.24599352;-1.7661376;.15762626;.25148648;1.5865296;2.5664077;-1.6110587;.16408119;.80321914;-.13250877;.37305418;.82117337;-2.5017829;-.89105415;.87851959;.38176626;1.8223392;1.0142608;-.10392777;-2.9030638;-2.4432659;.2377097;-2.5195642;-1.2270966;.70454252;.16424355;-1.5394939;-.74049199;-.32838598;1.0051972;.62960058;-.33447307;.19746806;.13246652;1.9746103;.14150181;.67339951;1.65872;.47283009;.56183523;-.45892546;-2.0907638;2.0942478;-3.2932019;-.18336006;1.4988322;.26088944;.16323455;-.23871875;1.6778004;1.1250951;.62999475;2.5376899;.18927065;-.29639554;2.7206888;1.7538892;.37087426;-.49517459;2.3851876;1.9335846;1.347877;3.8571877;3.0361226;-.1128698;.30294085;2.0091;.70952684;2.1350429;2.3318443;1.0634196;-.35105821;4.9516535;.30677974;.25151351;3.7555614;4.5473695;1.3643895;2.7551014;-.23915781;4.4355969;.59823883;3.8663955;2.5512483;3.5745716;2.0147853;1.550869;-2.942723;1.8780316;4.282177;3.7063994;.041485779;.64857173;.015453332;3.3661451;-3.5219548;.80311978;48.829571 +.60999024;.71074933;-1.5616262;.033341385;.16739111;2.2478864;-.42216885;-.48643678;.22753094;.96659452;2.0484133;-.58765411;.59925061;-.066366747;-2.9172432;-.25893703;-2.0085144;.65939242;2.2070262;.24864447;-2.0839529;-.44267812;-.40311953;-.58012205;.39987481;-.25807494;1.3706834;-.33695519;.2016239;-.35257635;-.37432653;-.07383167;.2709997;.2437104;-.11793645;.20902209;-.33752051;1.4117892;.35978702;-.88814801;.075729698;1.5207148;-1.3846188;-.33192426;-1.2512187;.31146988;.9390291;.69238913;-.75571322;-.81380159;3.5074875;3.6914375;3.2048342;.65802217;2.567827;2.2228477;3.066503;.36988676;-.076103263;1.4367651;1.8210138;1.2568172;2.8626227;2.171957;3.4911199;5.583777;5.0320892;-1.1789525;5.4203191;1.7836854;-.048544548;7.0730233;-1.0118567;4.2967353;1.5944866;2.2633991;2.3192379;1.6657193;-.063674018;-.36909485;.45978141;.004376749;-.92876279;1.2095084;1.8704534;4.4795313;.095212214;-1.3465465;2.5805006;3.306313;1.818792;.82581687;4.8560271;5.4079881;1.5659173;4.1805887;4.844955;2.2967482;3.6345842;.22254094;1.4495794;1.0264412;-.45201561;1.1131498;1.7021862;1.68828;.20243509;-1.7662388;2.9601405;.4112303;.39564779;.62048459;.016363991;-2.0796568;-.52163041;-.98323607;-1.6736754;-1.5098463;3.6033356;-1.4490007;-1.9631165;-.40781608;.16858155;.12388517;.33052534;-.48959512;.31260511;.80545068;1.1709036;.97833389;.26080057;-2.1462848;-.37724033;.14419638;-.57392901;.81348884;.23176251;2.2320955;1.2049886;-1.0726181;.60412228;1.3726116;-.3910954;.021404246;-1.6174275;.88998026;1.6855373;1.0159293;-.14674939;1.1601377;2.9363718;1.7589607;.82151014;.27178934;1.044148;3.4258838;3.2349689;-.58164346;.034346256;1.9215391;1.7533489;2.5712087;3.3525143;2.7463083;2.6626828;5.4566774;5.3117142;-.55774206;3.7154384;1.6818706;.031190094;4.5159354;-.50152463;2.2868035;.038928259;2.8764274;2.1371424;.61410642;.79186618;-.58612996;.97764629;-1.4505682;.58822995;1.755722;2.8473577;2.0857689;.11614311;-1.2104443;1.4332564;1.9392179;1.4349728;1.4048069;3.4001603;2.7429521;.92211384;4.2127495;2.9967701;.48771375;2.0558991;-.9112488;52.712322 +-1.4956013;1.2338797;-.59649968;-1.281281;.30803847;.57793421;.59065628;1.3361523;1.2439715;.22104234;.52885872;-.29107174;.37768623;-.87193012;-.89951545;-.03529916;-.15696415;-.23894329;-.43962747;1.7775005;-.95080459;-1.1785885;-.93316084;-1.0029192;-1.1999137;1.003023;.36905009;-1.0104145;1.9055886;.87132072;.36247936;.49372742;1.0801054;.12858875;-.24983692;.83828717;.28340447;-.14954829;1.5194951;-1.3252327;-.55228144;-.44467473;-.090511061;2.2840295;.81837219;.20193413;-1.4352971;-1.8972334;.86700839;-.014900471;-.87874806;.76162207;1.0787315;2.1598086;-1.7639549;.97465563;1.282905;1.5896722;-1.2599117;3.0478909;3.0339158;2.2954321;.18950044;3.4607439;1.3869598;-.25471559;.90596634;2.8789167;3.1599574;1.7223784;2.8343515;-1.1007615;4.4453435;-.055421177;3.6037991;-.45977467;.85974234;-3.1727283;3.2768791;.56534261;3.0743182;.11279412;-.015162683;.52787888;-1.7583107;-2.1932728;2.7534819;1.3005847;4.6038837;1.9867027;2.669347;2.8122962;4.4278464;1.7816845;2.2844427;1.9655848;.64201093;1.9307749;.33603165;1.4179621;-.28532153;1.2242465;-.26536196;-1.4621139;1.2763672;2.3708701;1.6347153;.50866425;1.0187722;.83244097;.96361631;.2991299;.61753732;-.16048025;-.22125757;.011656198;.41434664;1.371397;-1.135035;-1.0538735;-.017935691;-.29232234;-.99868071;.6700325;.31195515;1.7576517;-.75935215;.43537909;1.6397123;.98490661;-.17899558;.70589781;-.1432991;-.25915709;-1.8765886;1.7109743;1.4147182;.13045892;.74308574;-1.1330032;1.0929458;-1.8491157;.59048015;2.7024405;1.4539671;-.56122512;-.93116212;-1.5593556;.43482742;-3.281867;-1.5374681;-.188336;1.245378;1.4643059;-.79141051;2.1294363;1.1493191;.98597187;-.16759647;2.0836756;2.0429332;1.1581221;1.0014663;3.0847836;1.8176171;-1.6075617;1.9423203;3.6578755;.63195658;1.2763191;.21677934;-1.3014038;2.6175702;-.15132651;2.5315111;-.15394539;.85575807;-2.4481099;1.6027759;-1.976714;3.2193019;-.54074889;-1.1749454;.51618832;1.9853617;-2.2155075;1.6757389;1.1017542;3.6004541;1.3235757;2.5900648;.97527438;2.1121264;1.6627733;.95056492;.90314943;.70622551;1.2654036;-.53321606;.47380817;38.49778 +.032209728;-.41367054;-.56410688;.42575803;-1.582522;-.69460797;1.3278761;-.75388902;-.51384658;.75222009;-.21109994;.32712355;-1.4807506;.35246986;-.48607722;-.84458703;-.16946299;-1.0455867;1.6763332;1.5279212;.36631197;-.11606721;-.38481879;.17181702;-.15031299;1.3506602;-2.2620287;1.7245073;.53298366;.20106748;-.84295851;1.1671528;-.017037539;-.80451739;.90674573;-1.3571576;-1.0619388;.4091776;-1.1218158;-.22203526;.36793384;-.81120878;.82566524;-.60155571;1.0949199;1.180707;-.36454228;.60632735;-.66973275;.58532256;3.3204832;3.4837236;.84215856;2.5950704;-1.4082216;3.1549942;1.3228776;4.6559224;2.1625917;4.4355402;2.761394;5.2701445;2.0832834;1.0911167;-.46560764;.37210542;3.3013659;1.6771001;3.6014631;.82759035;2.0875056;2.426676;2.980377;-2.4872062;-.12505908;4.3612905;5.5773554;1.33901;1.730842;2.5381634;-2.3501041;2.1737759;2.8432963;1.6570334;2.833673;3.832149;.33588183;1.0459305;2.4798839;.3485508;3.549999;2.6541498;2.0798409;1.8227535;5.9669781;2.8063862;3.9575894;2.0616214;2.8502622;2.1865611;1.0248127;.15443935;-.72154826;-.33384734;-1.3269691;-3.1776333;1.3447679;-1.4347253;-2.735605;.58404595;-1.5486503;1.1390694;-1.4420719;-1.2923889;-.3767978;1.772959;1.5364447;-.16606991;-.21160509;.74913836;-.30579782;-.96427226;-.45643693;.63776648;1.1175265;.33899927;-.69738978;.59376061;.28924453;-1.1898947;-.013552315;-.40230983;1.2209405;-.096001484;.68860304;.60053086;-.95916611;.034378845;-1.1071334;1.0810629;.62998408;-.36175036;-.15119691;-1.5498331;.83423018;3.7333841;-.84076607;-.44183052;-2.0294809;.86106676;2.6411643;.9282133;.085211389;1.6602876;-.78491706;.336146;2.2686093;3.3196771;1.4872497;5.6168118;2.2402871;3.5885403;2.5694842;1.1905154;-.029340662;.40823352;2.8118825;.23288822;2.6708946;1.0367327;2.8573117;3.0339851;2.5842044;-1.1929162;.78491116;1.3423049;2.1771662;.81431317;1.2665737;3.2856188;-.035838805;-.21065025;1.4366828;1.326821;1.6521974;2.1047783;-2.0191541;.80063254;2.996114;.52962494;1.5010914;1.5261006;1.6872325;-.66053843;4.5760059;1.2803439;1.1567222;.99231511;2.5620453;1.2601748;58.300663 +.92031872;1.1416969;-1.4856995;.44204527;-.31167144;.77035296;.20746739;.3692961;.93589669;-.329777;-.57814813;-.83292586;.34425542;.45657563;.40374902;.030450471;-.10156929;.48322856;.17806943;-.16878217;.86364394;.55928791;1.1814938;2.2146723;-1.7145123;.36518887;-.44405508;-.44276282;1.1244329;-2.2692382;2.1020799;1.1697781;-.26099011;2.7949278;-.50083405;.57061958;-1.2305417;.03813459;.016215229;-.099277034;1.6229848;-.54562002;-.73224121;-2.3333387;.75821966;-1.2693161;.66598642;-.3670063;.17945594;-2.4284511;2.0423608;1.3818942;4.8019271;3.4912562;.41827565;-.5541442;2.421375;2.2067447;.23470365;5.5431366;2.345957;1.5580844;5.1021509;3.1813314;3.4478264;1.1930616;1.279186;1.3176625;2.9666016;-.67215693;1.1260157;1.0805711;.39617488;2.0478992;3.3296421;1.1290883;4.4253869;2.9531059;.929075;5.8013716;3.507283;.81739104;-1.6568584;1.2923182;3.5289114;-.81595129;3.3633463;5.2709284;3.5692127;.73503292;1.7006975;1.2394036;.56134456;3.3772793;3.3086553;5.7799907;2.3801858;2.3280234;2.2879686;-2.540895;1.2282528;1.2570753;-.91442698;.43364713;-.10413537;-.3825191;.31220537;.75688189;-.23269026;.59229195;-.78729856;.62208933;-1.3147885;.61089551;.51766795;.83817589;-.43507352;.847386;.91040099;.10820178;.91692311;-1.2447597;.47844416;.4042924;-.45788628;-1.048629;-.94931543;.080487415;-.36570254;-2.3908963;2.8833864;-.45212767;.091972187;2.5916054;-.69787234;.78086168;-.6417622;1.3791188;-.54973942;-.92226064;1.6450454;-.18389668;.87260848;-1.5409883;.1837894;-.29020295;2.0074816;.24641441;.43070298;-2.8755603;1.8396361;-.49486363;2.5759003;1.9332078;.14940141;-.67468494;1.9111352;.68299043;.5378353;3.6110139;3.2704506;1.2480751;3.3933229;2.8404493;1.8030154;2.2045076;.0064783506;2.3472784;1.2331727;.055087302;.79814243;1.2843348;-.0036852187;1.9246359;2.3108816;1.2870121;3.4659178;2.5498857;.77354747;4.7481828;2.6392951;1.5905535;-1.5765049;2.1483116;3.9552846;-2.5685899;1.3326107;3.4860928;2.918746;-.22480904;1.1987158;-.17303795;.24010447;2.5644541;2.2108808;4.9864187;.93891031;2.2689068;.85831386;-1.4671478;53.844994 +1.1828493;-.3645924;.074486479;-.36408138;-.96131086;1.1564627;-.095946953;-.89706987;-.48255605;-2.1042283;-.72915208;.19830674;.61267883;-.76359165;-.78698659;.39824373;-.4604162;-.54624999;.62488621;-.90921909;-.10222829;-1.0383637;-.81639779;-1.1480774;.56713521;.57846832;-1.0476156;-.91718912;.53945428;-.63363105;-.48650965;.1883001;.094840579;.78128022;-.92306405;-.044225693;1.3594049;.73883623;.4789061;-1.3868402;-.050798025;.64145124;-.32361197;.53160417;2.0031903;.80448252;1.1126344;.30029437;-.1378444;-1.2697744;2.8431497;1.3942254;-.042416703;1.2855726;2.6590557;1.8044959;3.7836671;1.0328656;3.100884;.31503302;3.7860031;4.3506508;4.8951964;3.5705032;3.6833582;2.1397448;1.889726;3.0677764;1.0832688;2.8766141;3.2721951;-.62407756;2.6666038;.2487527;1.066642;-.59905255;-.6148591;4.5551839;-.22850841;2.8193479;2.6660476;2.3199635;3.9945264;4.0909405;2.3132935;1.3641746;4.3641763;1.7872742;2.4538133;1.7633671;5.4913096;.54550952;2.1723161;1.9859923;.78328633;7.7349086;1.8921521;1.4216536;2.3016808;1.6049443;.38642198;-.13945694;-.16760224;.44828272;-.58220959;-1.5939699;-1.6582935;-.41745874;.73729283;-1.0694574;.4617179;1.883388;.2860778;-1.7259229;-.84620196;.042896248;.20320249;-.32561642;-.58204579;2.0922174;-.46188679;-.090978324;1.3098447;-1.1953266;-.82115245;2.0695076;-.99615651;-.80952024;-.10528769;-1.0824025;-.17498162;.28891465;.17515567;-.44810489;-.56196833;-.024138076;1.8060666;.11136978;-.066573754;-.68864781;-1.1398561;-.4249624;-.070157394;2.1732292;1.2050508;.33284229;2.5388789;1.9193504;.090503596;.86857909;2.2629459;1.4312069;-.13854814;.055625472;.57353926;1.3126287;2.4039471;1.0990844;1.2155432;.88621169;4.5623612;2.0654995;4.3722768;1.721879;3.4526739;.84322393;2.355809;3.4155412;1.1238115;.59745735;3.6646304;-.27197769;4.6084733;-1.6799735;.069206096;-.017820915;-.74868119;3.6429167;-.048894159;1.0789372;.88599515;1.4338754;2.1229746;3.2842753;2.6996543;2.4623225;3.8905807;-.26603958;1.3460578;2.4787335;5.057137;1.6927453;.60429549;2.7396984;.51000792;5.2146268;1.556914;3.7405758;1.3893855;1.701537;56.306011 +.17456569;-.72644597;-1.4478899;-2.7204604;.9980312;.5346511;-.6008532;-.19303311;-1.3978213;.99041873;-1.1596702;-.36475319;-1.1021523;.024792526;.65750241;.89624512;-.092595413;.49632764;-.57847416;1.4994193;-2.2197709;.32995227;-.36701396;.4338235;-.2240756;-1.645752;-2.143507;1.5561949;-.13739914;.45642993;.60920084;.33607176;-.32447559;-.46557727;.5355252;.75555891;-.18450199;-.4240368;.5072158;-.5981217;-.76078743;1.981186;-.0099696666;-.91625166;.080721967;-.82623976;-1.0045437;1.0479362;-.36468026;.42986003;1.9398124;4.819838;-1.6886822;3.4185874;2.1064374;3.2273552;4.5243654;.72810221;3.2761533;5.1792827;.41773614;-1.1122804;1.7067863;.59367871;4.4069538;-.7583667;4.4632411;4.2660704;3.0104961;3.196918;2.0311995;.5145359;5.4842887;4.2654853;3.5859199;.61174083;1.6159445;3.18501;3.8234866;1.1505572;2.8180878;-.52427083;3.6295283;3.9587975;1.7851603;1.4949135;-2.3826714;-1.8371991;.11847475;-2.2121754;-.8813144;-.34078422;.95679396;3.1315718;1.9525925;3.298351;2.1926672;.91629618;2.3200758;2.222816;.5723803;-.83951569;-1.6665049;-1.1881852;-.15388924;.44434187;.35376477;.92129272;-.67597693;1.0277448;1.1780565;1.5404732;-.68355954;-.15280043;2.1031046;1.3617573;-.13920048;2.7805462;.14883615;2.1387615;-2.1457236;.83242017;.77593327;-.59791112;1.1021228;-1.7317448;-1.5756632;2.6873012;-.65659976;1.3054701;3.2140586;-1.1928051;.0097328303;-.91869038;1.0178078;2.5847361;-1.1238084;-.22159526;-1.8685819;-.60492206;-.43791443;1.1811411;1.4197384;-.14720728;-2.0672007;-1.1286063;-.34851828;1.119199;-1.108391;.54506528;-.16048308;1.7643037;-.73012602;.75931555;.16555461;2.2968459;3.8860328;1.1126018;3.9218001;3.8922033;.76356661;-1.4534485;-.12878393;.13314964;1.6519147;-1.6718472;3.4570608;2.1986358;1.1127013;1.1363961;3.1733413;-.2273391;3.6532054;4.0733585;2.494956;1.760839;.51222026;1.8869661;3.3850896;-.65055013;1.8093921;-.7156589;3.1595933;1.9797179;1.9033535;1.1439036;-1.7470207;.31086043;-.91484362;-2.2309997;.47816718;.13250713;1.3316351;.094135821;1.5896956;4.7011552;.27970287;-1.18855;2.3687246;3.6000946;45.570858 +.15129359;-.20060514;-.38175207;.47653681;-.32040617;-.84681726;-1.0335839;.84238261;1.0172416;-.97529393;-.43531564;-1.5406687;.16845773;-1.1802142;-1.297761;.66842294;.31422451;1.8805734;-1.0982071;-1.30382;.14195837;.090862498;.66136712;1.4447739;-2.1519675;.37228867;-1.6733067;1.0120777;-.76875842;-.17757972;-.3722775;-.73236692;-1.1784142;.89985281;.98977;-.45579138;.94208944;.55558318;-.99929047;-.53955942;-.27198949;-1.0229393;1.0766529;-.073545605;-.94440144;2.0807621;-.31300339;1.8716592;1.0305909;-1.0892464;2.4858196;.3422738;3.9967675;.80686355;4.4134264;-1.0392441;2.6565831;5.48768;.21031386;1.2687666;2.4235396;4.1602573;5.1058836;3.2616115;3.2034311;3.4569452;1.4502388;.88772541;3.007925;-.30205682;1.4953979;3.6032088;-1.3054503;4.1269231;2.0896721;.22546262;2.8116591;3.2803431;1.9711401;1.5146382;3.4933062;2.2187431;3.3496454;-.64726233;-2.0012815;5.9032183;3.1303368;2.0933301;1.6152604;3.950036;.45326051;1.8618079;-.9808175;2.4455678;1.7401084;2.7866724;3.7967761;.62134385;-.0010637017;1.8576752;1.0359249;.10939559;-.84222245;2.0800278;-1.1348243;.53612363;-.94441396;1.9521611;1.1195678;-.60013425;-.20527977;.12467468;.51983482;-1.7650242;.14722703;-.009371982;1.9397112;2.3179538;-.25218171;-1.3247037;.81655562;-.16209881;-1.2849107;2.3613172;-.8748917;.3596952;-2.6065059;.77902663;-.91638255;.48421925;-1.8705419;-2.3294256;-1.4341636;1.9108737;-1.9577867;-.99293756;1.1105157;1.5579722;.36388472;-1.0652194;.41665375;-.053887274;1.369894;-.32582834;-.60453516;2.0783999;1.2720072;3.2933154;-.22925831;-1.4440376;2.3111205;1.0752889;3.636888;-.17431;1.5386437;-.80583656;1.2473978;4.2866359;2.904294;2.4625072;1.0310955;4.1409969;4.5401211;1.5819167;3.0089271;-.51042199;3.2289195;1.2855626;2.4761541;.19664502;-.12378649;1.3801558;-.82932574;1.0181057;-.0086784419;.29837945;2.1810226;3.9792295;.43531504;.28441036;1.9929645;1.4083351;2.4818888;.16258425;-.9072904;4.7192893;1.7611735;1.2647827;1.3064529;2.7264762;.030609606;1.0120568;-1.0963812;1.3969059;.69236296;2.2404301;2.2290339;-.41739294;-.47147042;1.7912642;52.127075 +.1527409;-1.5817361;.32896775;.78407454;.52223992;-.85029691;.56899416;-1.8126404;-1.9378126;-1.0975689;-.75104785;.64708644;1.3565043;.59011364;.64107788;.60653907;2.2056758;.98608696;-.083546832;2.5100424;2.201427;-.25266922;.55712825;1.4409605;.23511273;.28069714;-1.5950257;.74822909;-.05201903;-1.2635823;.18686879;-1.6251268;-.92109197;-.15179448;-.99209577;1.3388935;1.3000883;.13733184;-.352512;.72974229;.2480486;.90119892;.1146142;-1.4060593;1.1237417;-1.0406135;-.79623222;-.2374292;-2.2951164;-.3823165;2.88146;-2.2570837;2.4983654;1.0732369;1.4997872;3.6533155;-1.2425269;5.1235752;5.5919542;3.3633869;3.2241039;2.0734866;1.6831766;1.273387;.27211151;3.305316;5.4917212;5.5774288;4.0593905;.72986394;4.5655336;2.3352826;4.149271;1.5568898;-.12907717;-1.4238372;1.9630374;3.9996002;4.7882643;3.3267555;2.6461482;1.1536036;2.5995419;6.5813351;3.8649278;2.0332782;1.6548992;3.1041768;1.3726939;1.4202386;3.567826;2.0215542;1.1461856;4.3421044;1.8187598;.42404732;5.3576808;3.1034606;5.6234412;3.339653;.69484568;-1.4169445;-.15752546;1.0852988;1.0827584;-1.535032;1.0906829;-1.1936942;-1.9048861;-2.1062782;2.7098;.19260868;.090378515;.21502841;1.9033529;.33571973;1.8396158;1.3214499;-.91005892;3.1153836;3.065223;.023934819;1.270527;-.26840216;.8847295;1.4981278;-.92954493;1.2873726;.54791117;-.12613395;-.065417826;-1.839781;-.59910011;-2.9060957;-1.0884265;2.1282144;.81905538;.13942856;.55367917;1.214063;.15846041;-.64249545;.16340722;-2.5206335;1.4804929;-2.4152935;.71773881;1.0808188;.70189834;.26683363;2.5041156;-.59175783;2.3998578;-.58456641;-.23109919;2.5768557;-1.5324212;3.4104688;3.6776619;1.9109983;2.3459914;1.4636832;1.0863607;3.8676674;-1.0548358;3.3624945;3.5555189;4.5832162;2.1811659;-1.3893845;3.4458516;.37631297;3.3117337;.84112614;.28882018;-1.2435379;1.4804733;3.6896122;4.7310672;.68256086;2.0554988;1.0932328;1.833376;2.5489047;3.1393805;3.4371207;1.423252;3.5225265;.063077763;1.5682064;4.5370941;.91529399;2.9090123;1.1238251;2.9801621;-1.7281439;2.1631122;2.9356647;4.1940637;2.3266556;63.226593 +.25262368;1.9790989;1.9393474;.84267318;-1.1328459;-1.1473651;-.38023525;.61752039;.80037898;-.3961091;.64126056;.12776069;1.5348152;-1.0025922;-.4920291;-1.5687195;-.67814124;.30239761;.23248498;.92723811;1.9278841;-.19672379;.011468481;.070966236;.19530508;-.057220541;-.15955864;-.24316289;-.30586162;-.857979;-.26188281;-1.8536142;.6012693;1.5952023;.60356426;.31270051;-.22621624;-2.7229202;-.067008041;-.77583539;-.98562962;1.0600985;.38008472;-.93336457;-.87414694;-.085378945;-.33868337;-.4820728;-.27174848;-1.2546732;2.9881892;-1.1028315;5.1456494;.77335966;3.4165406;1.7467803;2.0353119;.73795438;1.5488098;2.4101498;-1.3847156;3.9558785;3.0590301;2.5721927;3.0275545;.94125503;2.1555359;-1.1125267;2.6850686;-1.8695447;3.1006958;3.1353359;4.3192;.71758288;2.6539817;1.440742;-.71696216;5.4045181;2.3076732;1.8142154;.022908902;3.4049432;4.9395385;1.8117189;2.1581793;1.6725836;3.1256201;.10537397;2.8670847;1.5061256;2.1611731;2.6175759;5.3333211;5.4068408;2.659301;-.13827454;3.2053807;2.3468759;2.4933684;2.2205384;.84884459;1.5292116;.70291013;.78672147;-1.1442187;-.094118945;-1.7201349;3.279022;1.3644896;1.0569918;1.8436658;.58418387;1.4520779;-.18201828;.7203126;-2.145566;-.26787978;-.48661032;.43511555;.38096988;.99991822;1.1928813;1.1256961;.26000863;.3216278;-.83910149;-.93977416;-1.6714013;.048639178;.63794899;-.6351319;-2.9066253;1.7026314;.50701225;1.0963877;-.20074806;.2362491;-2.4468553;1.3652866;.0058839656;-2.7985439;1.191188;1.7516354;-.31961122;-1.6416575;1.1411932;1.9014727;.44542515;1.479596;.56142044;2.6916492;-1.8807164;6.2267723;.019268416;3.5558121;.51395637;1.5052261;1.8540944;.21519759;1.7475201;-.30155972;3.2798796;1.3794936;.80682284;.3093439;1.5762172;.60508889;-1.2820005;1.9124274;-.95807272;1.5008655;2.8889487;3.0364892;-.5793016;2.6416349;.39221197;-.73435831;4.9901643;.058815163;1.5612664;.58216494;1.6828691;2.6349883;-.26948485;1.0882558;1.9131254;1.3656298;1.7465584;2.117002;.65739989;.66209978;.97097409;3.6180654;2.770334;2.9268625;1.4918388;3.6783412;.58253372;2.072948;1.78677;53.189205 +-.36553743;-.029562797;-1.2210166;-.98870736;-.54713362;1.4153466;-1.5933028;-.16717578;-.22880739;-.87230039;.16248964;.032181114;.79046559;-1.5392573;1.4456575;1.2562288;-1.6838477;-1.2293975;-1.0296023;-.40218106;-.31189358;.63872844;.65447414;.27042523;1.1617199;1.8356347;-1.23247;1.4518714;-1.1644779;-1.0877334;.31883922;-.6722374;1.3334801;1.1324519;-1.4156774;.60468102;-.53332388;-.21144751;.53047019;.73936737;-1.1533338;-.29453093;.20596534;-.66845697;-.75395513;.41687322;.71915996;2.26089;.48958176;1.4077135;.096845612;.65813851;1.751547;1.253229;.3756631;4.0906725;2.6467316;2.5928586;.32416591;4.0021801;2.3258305;-1.1801999;1.8849051;-.64379805;3.9636922;3.863868;2.4577541;1.7440225;2.4068809;2.7233872;1.5261505;4.0239949;.24748488;.34471163;2.312829;5.3159308;.93345118;1.0977364;1.1426055;2.9623404;2.8781452;1.9268008;4.3007932;3.6264188;.9083215;-1.9373275;.97399062;-.71145892;-.59252936;4.4585409;.082856238;2.0288239;1.7879133;6.7566028;1.3574991;1.6063497;4.3306799;1.5621605;3.7177773;2.6353114;-.095683694;-.16366778;-1.4629099;-.56712061;-.088634238;.82748502;-1.5564218;1.14307;-.39862368;-1.5129013;-.0278343;-.1847648;1.1043453;-.74714172;1.6850122;1.192814;-.46119764;1.0509008;.89532989;-1.0580174;-.5571326;-.6902343;-.29430926;1.6005278;.74861044;1.7883234;-.58563232;.6314007;-1.9559773;-.63715822;.062606968;.41983342;2.3649757;.39613575;.34486878;-.028810371;.068640172;-.8279255;1.1176808;1.0112519;-2.0447934;.67415434;-.4415423;2.0657218;.081728384;-.051320411;-.83960253;-.6647467;-.84917933;1.3561658;-1.150998;2.562479;.63581139;1.5603478;-.89097899;3.6998847;4.9821692;2.6193612;.85238653;3.5586681;.56814659;-.40353709;1.6314956;-.069189958;1.984508;.832304;2.3934124;3.2236345;-.045359455;.94519603;.064256169;1.7062199;-.26381043;.68812758;1.2583245;3.6848853;.49950299;.1944216;.81377101;3.9978938;2.7760363;1.5613372;2.8340378;2.7172129;.72061431;-.52397293;-1.6043608;.55109835;-1.8792331;2.9560606;.9368335;2.0294673;1.3966378;7.1060214;2.9335504;1.0195115;2.9956067;-.24112675;1.7087376;3.2249367;52.565834 +-1.2546915;1.2367561;-.93185472;-1.501694;.29633036;1.6886309;.26183334;-.29557353;.19162239;-.91956532;-.72019506;-.35847101;-.92802429;-.21004726;.87945986;.51950598;.68479288;-2.3039355;.90018374;-.31819901;-1.1094296;.26168352;-.88568467;.18116249;-.043039978;-1.0020014;-.38940391;-.75534105;.92572749;.55289608;-.36072209;-.46314666;.34548175;-.78362256;-.14401425;.29006028;-1.0918357;-.93869251;-1.8948483;-.78907996;-.049794246;1.1011696;-.13720107;2.0481381;-1.0358493;.23216523;.16458414;-.6706751;.8346622;.74229783;1.9060456;2.482688;3.9165456;.0021124401;5.1326389;3.78104;2.5433934;1.1910039;2.0930061;-1.408288;-3.4904451;2.1835694;4.3176198;.44572496;3.683496;5.2818923;-.97716194;1.9857904;5.1947422;3.3329625;-.8808617;2.1287613;2.6028388;1.8757043;1.8068281;3.6082547;3.6614795;-.12419844;.48804846;-2.3686759;-.55625129;2.3274715;.96633321;2.4822676;2.8045688;3.6127441;3.6453192;3.1622648;5.0087314;3.046114;-.80450302;2.8814437;4.2309213;2.1783712;-.14715753;4.9867711;4.5497236;-2.3733804;3.2104824;-.813667;-1.3999873;1.7699404;-1.048753;-.90290147;.57942277;-.026763279;.54051125;-1.7950187;.47781754;-.091684185;-.33418167;.32214293;-2.030072;.28629017;.24265416;-.69644022;-.5115447;-1.9887657;.68343735;.79504132;-.47148639;.11318787;-.90815449;.98813409;-1.2289342;-.030348983;-2.4472697;.24666068;2.4543433;-.29609179;-1.3516539;-1.0368503;.92814571;-.19082874;-.048045054;.30376023;-1.599082;.77868241;-3.0012944;-2.2564259;-.78381824;1.3176216;1.4335144;1.7442446;-.85450578;-1.0137745;1.2026837;.62996405;1.6446296;.32617095;.54935426;1.9143454;.86840779;.60459763;3.1713359;1.878213;1.2466905;-1.3984778;1.7742558;-2.0444832;-2.7959814;.061201636;2.7282948;1.3374665;.82190847;5.183269;-2.5875821;.36367914;4.2482314;3.5314627;.087366454;1.5791578;1.7574959;2.1852863;.6343177;3.6778562;1.336072;.26069543;-.69505805;-.66458672;-1.3488191;2.4994719;.91540736;1.6209177;2.6585262;2.8377023;1.4863489;3.1061203;4.7352099;2.5761919;-.87368006;3.4437647;1.1723416;1.9042599;-.78225392;3.4066987;2.6500747;-1.5639449;1.2534195;-.35172603;38.552456 +.56908864;-.99523592;.10410564;.41949257;-.39976913;.030144932;-1.2052426;.065950938;1.8296938;.95589215;.1479923;.61815602;-.48638421;-.51876402;-.38335374;1.4722602;.85404623;-1.0952839;-.32069194;-.36524054;-.088865563;-.47064933;.99607497;-.9062022;.87158799;-.19328074;.90828264;1.1519532;.54618287;-2.0358348;.3283259;1.7648215;-.028830433;-.18783522;2.0424492;.8465097;.24697024;1.4760786;2.5335033;-2.4975846;-.83603776;1.1097275;.48837397;-.27688974;-.3234612;.88293338;-.082468234;1.4567949;2.1905491;-1.8490407;-.081234083;1.2426865;6.1686258;-.59895015;2.4623532;2.5003171;3.4782434;2.1784308;-.92796057;3.5741677;.76770586;1.8638799;1.9973773;.60830653;1.9707429;-.77612638;2.3520799;3.2025881;4.3577967;-.13048974;2.5370336;.97278357;1.1906338;2.2186258;.91089296;.07884863;3.8090713;2.3980899;2.509248;2.9180603;3.8276191;1.8427609;2.3049841;1.0507953;3.8195758;1.7305179;7.0447564;6.0352545;4.7317281;1.5380821;1.3309758;2.3701429;4.384912;2.3241858;1.2804226;-.42103028;.26341182;1.8504183;3.0012269;-1.7197673;.92007661;-.80097324;-.59939748;-.43473569;.14220233;-.4063887;-1.0305452;1.3145084;1.6547842;.41828477;.46557295;.19191501;-.0027484889;-.52475142;-.90267372;1.199281;.42073813;-1.0482873;.92557275;-1.7329665;-1.5929255;-1.3761743;2.7294023;.05073791;1.8320369;-1.3733411;.4960413;-.51567489;1.7919317;.21120989;2.0551083;.12573448;-.62079883;.10155971;1.0490109;1.0633709;1.3399869;2.8439505;.38315228;-3.1694527;-.60107392;-1.2668722;1.8301574;-.048271563;-1.7800843;.99860096;1.3255247;1.4239025;2.3368037;-1.9940587;.97539961;-.66643357;2.8601332;-1.1731973;1.7603456;.92931247;3.5490727;-1.046111;-1.4563113;1.8265598;3.7466493;3.4660532;1.8525404;.43949831;1.3540148;-1.2897372;1.3782719;1.1347433;3.3809576;-.4805676;2.4528363;.30338085;.61501408;2.8279135;.75635731;.97282279;3.250242;2.7759602;2.6927547;2.4313064;1.2824088;.49665517;2.0617571;1.2949028;3.1262059;.31223783;4.2466526;4.5468826;1.9504576;1.1349303;-.39374042;-.13253275;1.1077198;2.1839817;-1.2186285;-.61951911;1.6762698;2.7461934;2.8803048;-1.2820659;58.070362 +.3279486;-.63354117;-.64735687;.99098223;.87712425;.26824549;-.038627815;.18924837;.049062595;-1.2221395;-1.2459108;1.0416436;.75942856;-.75879574;.82242996;-.53093612;.26936084;-.47341982;2.1457112;.39972377;.22216584;.45239028;1.0796231;.69737178;.63609749;1.5658259;-.86927527;-.2996152;-.30262285;-1.9382392;-1.7498398;.10372081;.33910581;.23888412;1.6583675;-.98342681;-.7087658;-1.3497289;.6729517;-.083072424;.37926766;-1.8000299;1.8335677;-.53468204;-.32465884;-.32195112;.48081434;1.057529;1.4888946;-.32184649;1.1761614;2.3857908;5.5224648;1.1089112;4.7701693;1.4884338;2.7278168;2.3708811;-.82251835;-.017665906;2.22299;.031576846;4.0937257;1.957705;1.9004908;2.5947931;3.8776522;2.2602196;1.5845777;-.3143245;3.4112086;2.3749778;-1.6408725;1.4665093;3.1442847;2.078779;1.8183031;.56435031;.28744018;6.7627268;1.7860458;-.30245301;3.3742766;1.0882609;.40278795;.64223814;4.2782631;5.9133081;5.2388773;3.6011147;3.0874567;-.5585683;4.284059;3.2188542;1.6654716;4.269875;2.4751761;3.9029505;2.3313949;4.1189203;-1.9757787;-.99671614;-2.6446652;-.86384326;.11684142;1.8818383;.72291011;1.385272;-.36085796;-1.4700483;-1.5719875;.52905202;2.134815;-.17942113;.0042105294;-1.7915887;.080109097;-.66060764;2.0815244;.6296258;.73467219;1.333584;-.03442058;.59177947;1.4226955;.56664568;2.6661539;-.10895815;-.47622979;-.23336019;-1.1575984;.40606067;-1.1733564;1.1341329;1.5140743;.7262392;.0025619718;-.80280906;1.4555333;-1.130347;.60077739;-2.6561074;1.0448618;.7795068;-1.4141598;.31714666;.82891238;2.0588272;.77020758;-2.1487784;.41013393;2.3195522;4.3287358;1.147097;3.5869019;.56302375;3.8167894;2.1850114;-1.3838031;.24411291;1.6006974;1.1036229;2.2372141;1.885177;-.031473748;-.36677179;1.6048198;.96982497;-.11638708;.66473782;1.9751643;.59236777;-1.5863049;.68690723;4.0437422;1.1105102;.39319021;-.82971758;-1.0099845;7.1469035;1.7083459;-.69868791;2.5088489;-.65169543;-1.2602619;.7779038;3.0098121;3.0518897;3.8467021;2.9106305;.7158677;.41114935;3.0048976;1.5919633;-.70794159;1.8834431;2.5693843;2.0906496;3.0341201;2.1388977;60.718452 +.87507373;.016261404;-.34676737;.46303779;1.4297047;-.67032844;-.92735231;-1.2314794;.35697845;.28008443;-.43666738;-.12276038;-1.2684834;.020789098;-.587946;.75639647;.23302385;.87589824;.15624489;-1.1491094;.37066647;-.032697737;-.17175487;-1.3833196;1.5111864;-.4559119;-.14284717;-1.1104944;-.36361524;.64217061;.84342068;.12604241;-.19018859;.16086344;-.093785971;-.054738287;-.71025002;.014658222;-1.4619937;.38474035;-.57169396;.17424726;-1.1310577;-.18930331;.14130071;.76137209;-.26955628;-.14521022;-.063005023;.27783042;2.335624;2.4476175;4.6632681;2.7933829;1.90564;2.7573557;1.6342878;3.6646647;1.9090894;1.8831809;4.8492222;1.4656523;3.0886612;2.7023041;-.10854435;2.8039887;5.4563761;2.3108807;.56280106;-.43252754;.12307569;3.2427204;5.7390561;.26073226;-1.3652859;-1.2144465;3.6646307;-1.1909307;.42513779;4.7928219;3.7744696;2.710758;4.414649;1.899848;1.1711055;3.7691336;4.2293725;-.95294911;2.7558174;5.2236772;5.4770536;3.4946277;4.1193819;3.3291895;-.89253193;2.1122582;-1.4869339;4.0736227;5.2680073;1.3284004;1.6518257;-.48834422;.18900891;.024202196;-1.5902159;-.58077055;-1.066411;-1.853168;.2970835;2.4109452;1.3948426;.23670019;-.69390309;.79524583;.24149022;-.20931806;-.032722242;1.5316404;.62891757;-.6549682;-.20448729;-1.3256698;-.24427502;-.24124649;1.2053956;-.68144321;1.7213222;-.38886455;-1.7930064;.19939174;.87891012;.20987453;-1.5642868;-.45250812;.53603882;2.2691793;-.32921883;-1.1169502;.90318644;3.706593;-1.3445542;-.042154223;.55946016;-1.2881204;-.13595739;-.10334505;.072028831;-1.4470931;-.57667351;1.0209814;.87886006;.31853628;2.6868029;.26036727;2.3062363;1.9339995;1.8469608;1.8676102;.72633582;.52104926;5.0810132;1.1110003;2.2880268;1.723726;-2.8624821;2.3742404;5.5728159;2.0922425;.9687497;-.82960808;-.36884713;2.522475;3.0565438;1.3438686;.18856521;-1.357399;4.0207558;-1.8945552;-1.0076138;2.8276949;3.1084206;2.3913045;3.6694446;1.2476344;.24638136;3.0249648;2.9916844;-1.988845;2.9579792;4.7014694;1.8939641;2.6018476;3.1692936;1.8741865;.16572447;2.415205;.22146079;.96971065;3.2916286;.15029968;62.992142 +.17450897;-.26315522;-.087265886;.3076559;.7945801;.34736595;-.37260461;-.45068565;-.69140369;.68526053;.23836263;.06128158;.33485928;.30579847;.88038385;-1.2781647;1.4130995;-.1713971;-.25187907;-1.4791589;-.59784091;.15894829;-1.2168927;1.196735;.25286388;-1.0232266;-.094375633;-2.052259;-.61634642;.057882287;1.3131082;-1.1661874;-.70786774;-1.1635039;1.869364;.11800221;-.044874661;-.8321408;-.46756688;-1.7015352;.49626932;.92549163;-.70548004;-.82910234;-.4295387;-.29963043;.96334952;1.1754222;-.46502006;1.1418151;-1.3891764;4.7231994;1.909216;3.93731;2.9978368;4.0932074;4.0128412;2.0273948;2.9951017;4.194243;2.0260329;.53963625;1.6569527;1.2808223;7.2239447;5.7820315;1.6532532;.76781094;.89926028;2.7806342;2.0863881;3.639605;1.7515267;2.012182;1.9337171;1.7095832;.099351004;5.2899356;1.3177605;6.3709693;5.2643056;4.507072;2.1384084;1.4597117;3.3787506;3.2900348;1.3148533;6.5034442;.77158689;-.85729206;3.1566162;3.4422019;.31133315;-.19799076;-1.3275194;2.05036;3.2137718;3.1649096;2.5595539;-.17404401;.93746138;.11824819;1.7175037;.44050133;.11265979;-.94839478;-.37696445;.28201476;-.66315162;-.086531512;.12230375;-.072237283;1.3745904;.15220253;1.465716;-2.357815;.2235233;-1.3680388;-1.4163685;-1.4100195;-.46668407;2.6838014;-1.6107304;1.4831678;-.19437462;-.34126621;-1.2828356;-1.3824161;-.013510401;1.3610315;-.49317047;.47967482;1.0827883;-2.4705715;1.7887105;1.8796248;.59441727;-.73040241;.50117886;-2.7008693;.61693907;-.26851562;-.63770533;-1.9869416;-.27580586;-.34735987;1.279707;.11668713;-1.4979773;1.2586507;-1.1300575;2.9821596;.31189403;2.5367079;.28054816;1.8128111;3.0871327;2.0095525;2.0750372;1.6414045;2.3350372;-1.4389328;.29677239;.055253793;6.0219502;4.2275453;-.59100962;.6317426;.8008396;3.0435543;.2409308;2.2227356;-.22654481;1.6080655;3.5170062;.30096012;-1.6149733;3.345737;.27970102;3.6240449;2.3199837;3.7280984;1.0908699;1.5580109;1.5958358;2.2056127;1.6769803;4.8004899;.023901792;.66445524;2.1472504;3.1157179;-1.0138534;-.12438402;-3.700433;2.0785575;2.2513771;2.8333886;1.1554153;.1186931;57.777065 +-.049041722;.52684695;-.76977026;.48365182;.13857986;-.83812422;1.1647022;-1.3480414;-1.1277131;.10977894;-1.1613616;1.530802;-2.4786968;2.4114432;-1.9483615;-.20503955;.60440654;-.78065759;.28764564;.40202674;-2.7410965;.12088808;-.22259279;.042018648;-.12237532;.99379724;-.1195276;-.63014954;1.0254457;1.1562564;1.7319424;-1.0365402;.87822789;1.2276733;-.32578108;-1.4909909;.54138762;1.4796289;.48902792;-.11047155;1.5344894;-.97236317;.5556373;-.10097294;.44495055;.85744214;.92263114;.72788775;1.1756257;.34132153;2.0896196;.55915833;2.9966023;3.3050721;3.4259243;-.23905705;3.1541619;4.4935474;.37001565;.80532604;6.2278018;2.2889624;3.2598281;5.5729947;2.8963473;1.5660077;1.3725762;4.0856371;2.7449799;.62131542;1.2536374;2.5008571;3.5499442;.18644994;-.31102765;2.2313566;.056686562;1.6248938;5.0019364;2.6525102;1.9315971;3.818028;-.1975909;3.6743388;1.0062584;.24783944;2.4848418;4.0377235;-.80753672;.012956821;-.68033493;-.085801899;.61291468;3.4026175;4.1275058;1.5899985;1.9642804;2.3541312;1.3871216;2.8923252;-.69478339;.071946636;.074407957;-1.5175681;.85791916;-.70402426;-.41701508;-.52285433;-1.3402319;-2.2982867;-.072452076;1.0023057;-3.096081;2.7334146;-2.0708945;.1993783;.27832097;-1.5128667;.68518043;-.63584846;-2.5475376;-.4902952;-1.1549662;-1.4479036;-.00093537749;2.0311127;-1.4932353;-.94457895;1.7515625;.66674042;.11260629;-1.1538012;.734245;.42040083;-.56915551;-1.2152313;-.84442717;2.7474933;-.83968592;-.89517224;1.5184288;-.49148956;.73142916;-.29478252;.26504838;.51309901;.87825859;-.083513647;-.3555209;.75449955;1.0077772;.32628268;1.1083683;1.1424656;2.2780616;.012624945;3.3337924;2.9240208;-.90425038;1.996298;4.1851635;1.6970978;1.5205088;3.3318532;2.8060341;1.0445875;.12160147;2.3419609;.9972949;.83522779;1.359175;3.4895084;1.8783456;-1.6185292;-.91629237;1.5986295;.58950031;.33786607;3.3657324;2.4360058;.10497707;2.764297;.26288155;4.4222455;1.1977404;.48679224;3.0103362;1.9182411;-.64540112;-.1567339;-1.2061658;-.43479607;2.0362206;3.1378317;1.7206442;2.6353331;.83965963;3.2375505;2.5202241;2.0839169;49.918114 +.46353006;1.7101729;-.84970343;2.6471028;1.8506532;.86322606;.46159819;.41775772;-.61014128;.48265111;1.4536098;-.057691641;.0083020478;-.19778356;.32793093;-.20700964;-.051645659;-.67448509;-1.015947;-1.6618979;1.3199394;-.87858337;-.26771513;1.7765625;.0061187763;-.32651252;-1.132647;.91183579;.13779989;.25542212;-.61658251;-1.4439669;.30644095;-1.0401604;-1.5933599;-.6495586;.13194373;-1.3434019;.18823081;-.18838504;.12615025;-.034430448;-.27391371;1.2155452;.2561048;.94955367;1.1553905;-.74177784;1.0201919;-1.2684441;-.67171872;3.4467037;.3284438;1.0636282;2.0515864;-.024385868;3.8752787;1.2749479;-.11878674;.017829826;.013677475;1.9457451;2.0931785;1.1556782;-.8263188;2.1883624;2.3647766;.51852918;1.2548277;2.2636046;3.2052248;5.1223235;.87372285;2.0737448;-1.2110404;.91077882;3.5441813;4.1684661;.99444938;-3.5294802;4.0970731;4.9083552;2.6900804;1.9928019;.156361;3.7819052;3.5416961;1.7002662;1.6729909;2.6349466;3.6396086;3.3053453;2.7001393;-.31069618;1.7852354;1.7585295;3.8612623;2.2846885;1.8578601;.60285151;1.3353999;2.1326747;-1.6474715;2.233707;1.9773145;1.1233609;-.52304995;-1.1851848;-.43611774;-.68682659;.883555;.5552299;2.2276888;.58005518;-1.4325548;.63896316;-.014607027;-1.6219065;-.031712431;-.39398944;2.6004789;-1.1060472;-.40474063;.57883257;-.70254552;.42467001;-1.6966604;-1.1560978;.75639963;-.98962009;-.55112344;-2.4568446;-.27828118;-1.5994991;-.32517403;-.096691981;-.50504047;-1.0852255;1.2357726;-.04273697;.28155208;1.1657493;.39641345;-.23354687;1.036786;1.80755;.59065992;-.0687102;1.3537903;-1.0846088;1.1059127;.099166974;1.2364032;-.62830794;.92747146;-.84343618;2.0601938;.92254615;-2.9998817;-.21520537;-1.0822237;.29342136;.86501038;-.040687323;-.6855917;1.5312909;2.6146057;-.087649383;1.7494854;3.2035236;2.0122728;3.2341485;2.6391823;.52435935;-1.3367105;.65057945;2.3030324;1.728209;.25374004;-.9668901;1.1258481;2.6301839;.0494444;2.561024;.79667753;2.7588887;3.7637181;.55896467;-.40584809;2.5181317;3.6628814;.21526627;3.0532181;-1.4291917;1.6020648;1.9773188;3.3548558;.89495385;2.4881887;1.5770348;39.331886 +-1.3089703;.46920353;-.60757738;-1.847927;-1.2584114;.87589508;-2.1139667;1.4852003;.43401197;-.26044211;-.0067811776;-.87277669;2.8221414;-.87055522;-1.0249419;-.28332573;-.092926085;.48356733;.060625166;.18514313;.24735619;1.2651947;-.83769274;.40890801;-.22295928;-.95025349;-.96789974;1.3538239;-.74311244;.91904324;-1.4835888;-1.2996031;-.45807725;.86221546;-1.0802529;-.031754266;1.6069248;-.5191772;.53078896;-1.2395451;.45283455;-.70133209;.55669171;-.20216995;-.44037703;-1.533909;-.13147403;-.13419479;1.1696589;-.032058999;-.39950719;.69323224;.56785023;-.10707395;-1.3251554;1.4723753;-.48722818;-1.7552969;2.6944532;-.63099921;-.066484965;4.0539618;4.9913955;.43362325;5.5012546;4.2999473;.89566481;3.3062;-.73336858;1.8278288;3.1164811;.62725002;4.874084;5.7956176;2.0194609;-1.0956384;2.7223816;2.9207549;.051879045;-.53066671;-1.5506241;.85652691;3.40892;1.6172445;2.5145836;-1.0804479;1.0843965;2.9283364;4.2134123;4.8813829;2.1890621;2.9896228;.91665816;3.9920251;.95326084;3.1575494;4.7692418;.33829555;3.2196014;2.3348832;.078391865;-.71913308;-1.7355822;-2.3079679;-1.8958272;.77033424;-.83807713;.70767367;1.4349643;.46061164;1.2942094;-.95360553;1.5474615;-1.8500223;-2.5770261;1.7000227;-.24794023;1.6596439;.18722604;-1.1057639;-1.6303167;-.11661314;-.30988944;-.88333225;-1.8061442;.4131009;.43038511;.43348369;-1.7083163;1.0937079;.18687434;.22191475;-1.697875;1.0452443;.31365773;-.14333095;.85676438;-.22768636;1.419925;.001346069;1.4180167;-1.8949848;.28679663;.084367692;.36988398;-.49899444;-.094375372;-1.1538869;.23231539;.034760639;-.011048946;-.83548486;-1.160028;1.1703715;-.38506517;.36737391;-2.3447819;-.1691525;3.514353;-2.1689279;-.19760343;1.623551;4.2601695;-1.5002062;3.8087609;2.9168086;.49177173;3.0576999;-1.059256;.58630371;1.2564354;.76066226;3.5083632;5.6327038;2.4630244;-2.3736651;2.0132458;2.4813533;-.95662987;-1.028366;-.57069391;-.20220633;3.2050254;1.2668135;1.0175595;.097182967;.45042485;1.9376757;2.4281442;2.46138;3.666497;3.1148572;-.22117639;4.2906013;.70386302;1.4269444;4.2916512;-.48088294;1.3573601;3.568743;42.015705 +2.091552;.53947139;.43320063;-.98715758;.76765382;1.1341312;.89414304;.40760565;-.74501377;1.0592511;-.95887327;.5954051;.083108887;.41989747;.46213272;1.0320129;.30398268;.62356627;.84306741;-.70060211;.72633779;-.011790864;-.48985788;-1.8757313;-.27640095;-.43924084;.50258642;-.083983503;.65261173;-2.1673176;.81618458;.85586119;-1.2084794;-.19419089;1.3783354;-1.3210601;.31489259;-.79279417;-.23585722;-.7179566;-1.3276031;-.97394681;.097562;-1.614516;-.72988647;.45358318;.28599501;-.40913627;-1.4959807;2.1429923;-1.0833049;2.7064621;4.45891;1.4060692;3.1090915;1.1235452;2.2103634;.12883182;-1.6328232;2.986798;.20248787;2.7201223;1.5204148;2.993561;3.1109424;4.1632814;1.0036894;-.11818603;3.7157016;-.029214712;2.9237611;1.7985007;4.3198762;4.4235168;3.8002553;1.9275678;5.3200417;3.8960838;1.2302835;2.2676241;1.0819774;2.0800047;2.3064275;1.7627388;.49295023;-.69885516;.56362224;.7507745;1.1859804;4.2453527;1.3073461;6.0213218;1.7096355;-.18845735;.25512308;.99633843;.94919664;.079732552;2.8024492;-.22442836;1.4307896;.39550972;1.2382452;-.84814757;.10001731;1.4303244;1.5118091;.88572478;-.19566369;1.542787;-2.5192204;1.2222159;-1.6061618;2.4955831;.85522985;-1.6905828;.65010309;1.7922078;.28640857;-2.3043628;-1.4703358;.70240825;-1.1065361;-.30558619;-.66241312;.41502345;1.6364812;.080988184;3.2264333;-.24048059;1.6255385;.81479728;-1.1378796;-.12463579;1.7121181;.39905536;3.196861;1.4092188;-.24774362;-.43828797;-1.6979159;-1.1304429;.48357049;-.88286531;.42611471;.30748883;.26373407;-2.1661718;-1.5926774;2.305784;-2.1859016;2.5111122;2.4416213;.78491533;3.13187;-.97167689;.49548927;.79059756;-1.6896838;2.2134807;-.62303996;2.0734303;1.043083;.70406824;1.8857136;.46801344;1.1721274;.34052408;3.1225216;-.1633698;1.8214171;2.6971159;5.5763063;3.0779147;3.3084409;2.0209227;4.6434731;3.0759127;.5437445;.82904279;2.2705846;2.5777321;.013584457;.66067803;.89257222;-.33962002;.030101528;1.1428908;1.5385697;3.7429006;.94454199;5.0816412;-1.3107039;1.7281574;-.35156059;-.6254319;-.85185039;.70111352;3.6198416;-1.5231962;47.662048 +-2.7994258;.24796012;.40179482;1.2515086;-.91918325;.52656126;.99273205;1.111631;-.18489063;1.5391052;-.25817773;.087122835;.72730571;-1.2220503;-.35425258;2.1385632;-.011435483;1.1871082;.30685604;-.92212033;1.7676703;-.76935858;-1.9746212;1.3400294;-.53006971;-.0043926071;-.94431305;.49569976;-.13249859;.90316772;-.23188084;-1.7895818;-.68965381;.64029235;1.4637849;.13046671;.74048305;.91570413;-1.4149119;-.52504647;-.41333842;-.92348391;.95499897;-1.2918867;1.222101;-.80010545;.058070071;-.71624011;-1.4831893;-1.1803964;1.9577485;.89955676;4.2431731;-.16584419;4.5768113;-2.0517781;1.8922043;6.4348102;1.1936531;3.9325943;1.4507053;2.1352475;5.181529;2.4320097;1.4589225;3.2111447;1.9256541;3.1086807;4.0115471;3.3529632;2.5567415;4.1197748;4.0210176;6.6911635;3.5278008;2.7766554;5.9494524;4.7546926;.074535951;2.53775;1.0943815;3.0454893;.75558209;.89594167;1.4619129;2.4786077;3.1092038;3.8918159;.090661213;-.2072701;-.22609025;4.1663246;4.7852306;1.0440611;-1.2566504;.87960517;1.4499019;1.2956885;3.2489047;2.6922839;-.5424161;.86012626;2.6473539;.29636401;.95306307;.94870561;1.6526611;.19965011;-2.1180649;1.4634066;.49267057;-.1879822;.58729637;-3.3125608;.22490573;1.5202987;1.7686739;.75995898;.33118752;.25616825;1.0095304;-.33795521;.1642065;1.2656335;.57472605;-.68580014;-2.2068536;-.99368525;.08841601;1.3147707;-.90385818;-1.8094368;-.31452796;.31353235;1.8958992;-.18193068;1.2348951;.11220951;-1.3818451;-.62960398;-.24237825;-.18465793;.56177318;-1.2748399;.89417613;-.72461182;.083888754;-.96142793;-1.7902319;-.37285241;2.1140487;-.10622866;2.0898378;-.66217011;3.6173069;-1.8429706;2.7366936;5.1015973;2.5448391;3.6002362;.95002359;.98218423;4.1051607;1.889702;1.8514172;3.9995646;1.4021294;3.0547116;2.7236872;2.3405585;.38797632;4.3044395;1.7140304;5.3373713;2.7695813;.36099318;4.4747133;2.4176612;-.62749624;2.4990523;2.1434586;.9755159;2.1680248;.65553826;-.79773664;1.3966051;2.8008294;4.3103352;-.71312279;-.41106203;-.26573485;1.4569981;3.504317;.50158274;-1.8721819;2.0341635;.63365471;1.8642999;3.3124216;2.0372183;59.641865 +-.40493697;-1.2674408;.9036783;-.40181077;.39089429;-2.050133;-1.1056124;1.0959374;-.29964033;.74957293;-1.0688121;.14999731;1.832232;-.17304188;-.38378462;-1.2114551;2.173233;.87919241;-1.3982455;-.18424058;.30779979;1.924944;-2.6445925;1.9628603;.79108852;1.3257332;-.71330857;.36329681;1.5465713;1.5279871;-1.2581898;.49041119;-.49052718;.12326178;.076615497;-.38748085;-.93430448;-1.1271063;1.1730597;-.51981443;-.29172224;2.2325871;.15649781;.41896752;.19033606;-.20614544;-.51709813;1.8534818;-.067104906;.58927697;3.3185024;5.3250995;1.4854506;2.0187032;3.8918951;4.3724422;.71284074;3.3034945;1.8837445;3.6363821;-.21400088;-1.6965617;3.8817599;-.90551478;4.2587032;2.6328249;2.7777383;6.8855453;2.7008698;3.7779732;1.485304;2.722425;.71750528;2.0139799;1.4519154;2.7333739;1.688694;3.4858217;2.7656543;5.8219476;-3.1851802;4.3769274;2.9587436;2.5702803;-.73255199;3.4473493;.17328545;3.7705338;.25616053;2.3497074;-.0011506021;2.3821807;1.611138;4.6988873;-.041545596;.7791307;4.6661611;.83580285;1.228789;1.997915;.58751142;-1.9121488;1.7452356;2.118516;2.4123051;.62438351;-.36256498;1.0857733;-.23976965;.492847;-.97058994;-1.1950576;2.2373922;-1.1223212;1.5017209;-.19802588;1.571548;1.7853855;-.2438858;1.2640964;.39789802;2.6748631;-.17178126;1.0297971;.26830313;-.29072165;-.37246433;-.0010618287;.25171146;.90319639;.022495128;.75806153;-1.7260152;1.4495102;1.0506065;.53251874;-1.0214676;.64905143;1.2454019;.36730579;.23797101;1.4910389;.84069961;.11121966;.73548073;-1.5019269;-1.1474773;2.9338477;1.6365222;.057916358;1.9476602;3.4968171;.37662503;1.2220552;2.8140893;2.2698359;.6274972;3.1761954;2.9773016;3.1027429;-.41409659;-2.370265;2.3350918;.21902891;5.1543584;1.3911498;2.406826;5.6411715;2.1484544;1.3887311;2.2727368;.34178019;2.7064683;2.1528733;1.4055557;1.171074;1.6620948;2.5140958;1.6582359;3.582736;.60624343;2.2968876;2.3193774;1.5598835;-2.0794547;2.2511685;.26388225;2.7004101;2.1634793;1.3079786;-.22228892;1.3807954;2.0108705;4.3369107;-.56054026;.74116778;2.6654556;-.9569056;.87751436;2.7541974;57.97961 +1.8532346;-.72956359;.4588753;.90897512;.38385782;.75430292;-1.0601141;-.9191317;1.0193362;.52323478;.27703267;.16015518;-.16515388;.11753897;1.5068436;2.6806152;-.14284576;-.029461671;-.55821764;.8423807;2.8231347;-.93605548;-1.1088052;-.17457426;-1.2884113;-.42158234;.17131823;-.21562584;-1.0250494;-2.7680209;1.0050192;.77850378;-1.1667596;-1.4807012;-.64530712;-.56002998;-.80983227;.68503767;.021227555;.71423048;1.0248623;.57349998;-1.7642356;.89867973;-.49867129;-.41465664;-1.5955527;-.77839041;.16244923;1.9233383;2.8849578;3.2394969;1.1582638;1.1057733;3.5306699;1.8337234;3.5554538;.84942323;3.3243868;1.7098539;7.5807066;3.2006359;-1.1521573;.84494549;4.7489214;2.550488;2.5845826;2.066906;-.52113497;.39722914;-2.5878284;.78278267;1.1772546;5.0561619;2.5395052;2.6209898;.29181907;1.1940066;1.9194528;3.9377365;-.096213579;.70307809;2.3760755;1.1292993;1.7211916;-.14382407;3.4913993;-1.6488359;2.1691446;1.2300702;4.7988091;2.6537774;2.0572393;2.1606407;1.7709053;3.0313678;.98262388;1.7535549;2.1118417;4.3540301;2.5164993;-1.5376422;1.2444695;-.26164991;1.268134;.3173188;-.21734975;-.51711881;.21823813;1.2869945;1.1631088;1.2834165;-.57162762;-.0014087091;.98927712;2.3041265;-.033576064;-.73846084;-.95965236;1.9420593;1.2449089;-.4981901;-1.0829166;2.4988396;-3.0708733;.41540873;.27914304;-.38712233;.15542035;-3.1170585;1.9398543;.1253119;-1.4188359;-.16388814;-.77609295;-.82029754;.28541002;-1.302902;.16646792;1.7956158;1.414528;-.79493862;-2.47837;.44337282;-1.1867404;2.3219042;-.51647836;-.41459477;-1.4340577;-1.1259834;2.5513928;3.464751;1.7598234;1.7575672;4.9672542;1.2689105;3.3038671;.1743923;-.089022823;2.1302781;4.2473688;2.9518735;-.5222252;-.4298006;4.6014132;2.6316361;1.7971967;1.2340623;.65218061;-.5244621;-2.4658008;.68989366;1.6837062;3.3262925;.7650829;.3933897;.083091229;-.8150264;.68454671;2.7414896;-.25361142;-1.2524114;1.5685983;1.4760524;2.3913338;-.25389111;2.9323311;-1.6538049;2.0453696;-.59847993;1.5853028;1.5918967;2.1895514;1.12037;2.1953595;1.2705444;-.14160742;1.0519961;.53555024;4.3127351;43.437233 +-1.9422812;-1.1195015;.6237458;2.3540788;.091325089;.76732594;-.66986263;.59405285;.22881338;.79251665;-1.5894855;-.14431062;.48283577;.13928874;-1.6050316;-1.4034997;.17078759;-.98995787;.10332058;-1.0465004;-.67726892;-.61968791;-.64965016;-.45414826;.022661628;1.1199483;-.093283162;-1.1749008;-.80003774;-.022879761;-.10473277;1.3063347;-.92259204;-.40385652;-1.9127322;1.7718197;.68698293;-.5135262;1.3701096;-1.3361465;-.66019815;-.38075781;.58503056;.74438494;-.42482111;.0517033;-.65623689;.80671048;.61977243;1.0606751;3.8822613;-.19515641;7.4645829;-2.487922;1.0705372;2.8161376;4.4189839;1.8727304;1.4245477;4.5669789;2.3723965;3.0243673;-.73098135;.3014906;1.2184674;3.3179226;4.2912488;5.2047195;.9863773;5.2043734;-1.7304763;4.0403953;.59485304;.46927741;-1.3042198;7.6487231;-1.7628858;4.1515861;.94112921;2.9764457;.19568491;1.8955464;1.1289297;-2.6522744;1.1583652;3.6594121;1.6545842;2.9667113;4.1276927;1.108775;.82153517;6.100872;1.4528809;1.2597291;.085144036;-1.2061653;1.8737462;-.8801859;3.2755466;1.7034183;-2.8200939;.034438219;1.0504137;2.102845;-.10103558;1.5520822;.38289097;2.7088089;-.54050231;-.76480067;-.10238109;-.22252883;.45343176;-.48776478;-.53470623;-.06707003;-.67334676;.014870374;.24879596;-1.1023399;-.53614736;-1.646714;-.84201026;.85224408;-.85616642;.8725487;-.8096661;.37441772;-.63761526;.74154961;-.12099145;1.1879456;-.81939316;-2.2107484;-1.5304773;.80247056;1.0998831;.16529217;2.1705348;.96977711;-2.054204;-.97826904;.082422666;1.1625868;.45416147;.61652255;.038430396;-.93872625;.35753846;-.45744479;2.625644;-.1872111;5.341826;-2.4978702;2.0389004;3.8133242;3.8500116;1.8493648;.71394795;1.2073188;1.9258394;3.3337486;-1.6172086;.62567383;2.5183096;2.2715764;1.8454877;2.1533225;-.048198406;3.0989075;-1.4649203;2.6886342;-.029290337;.43583864;-.52103275;7.1111054;-1.2560425;1.3990964;-.39742041;.18853205;.098511241;.88865626;1.2114205;-.52929455;.42309639;2.3069868;1.7396525;1.7834384;1.5934961;-.26838687;1.0545237;3.2592742;3.3790545;1.890036;-.9079445;-1.6286917;2.2141311;-.35426256;1.3989801;.30719519;44.231594 +-.02873496;.89744544;-.25939381;-1.5045186;-1.5934542;-1.2740066;.31614703;1.1529109;-.54719144;-.34305984;-.4166289;-.379695;-1.3710407;-1.7772413;-.99213392;.054917745;.83805597;-.63175452;-.53115821;.62168127;-1.0395744;-.059204515;-1.3086979;-.59825504;-.024543406;-3.0821238;-.96460223;-2.5723605;-.25524476;-.8933481;-.097960442;.86549121;-.5246129;.69334728;-.26595736;.5733704;-1.0880078;1.6702358;.62627828;-.26319635;-2.22174;.16153896;1.0389413;.073680557;.39756072;-.62122768;.81830341;1.449326;.80518109;-2.2357283;.62453359;3.5478406;3.35742;1.3617853;1.3306916;-1.3999947;-.49153197;.80329198;4.8583722;1.3452048;1.1823242;-.999475;2.279228;4.728672;3.3061426;4.1917696;5.209723;2.7900977;4.8918257;1.608622;2.0707526;1.8058989;2.9013109;1.7718339;2.8614478;1.7480594;.42087424;-.2402232;.2842043;2.9294558;8.5160494;4.0881686;4.4722877;4.9473386;1.4501992;.53625786;4.1719394;5.7235756;.71969098;1.7857555;6.5673866;.07500916;5.1237965;1.8427942;1.9813366;3.2555451;2.9897594;4.6579909;2.9605296;1.0435765;1.4969703;-.18010871;.57607496;-2.086096;-1.4831406;-.10534059;1.1533923;2.6184175;-.043750506;-1.2189543;-.84161884;.63879192;-.74670851;.055406805;1.0304935;.11551259;-.43205982;.50469434;.83118486;-1.5713707;-1.0407428;-.39918202;-.48711425;1.1359637;-1.3872875;-3.4006975;-1.9598588;-1.3498948;.96775627;2.2100837;-1.1833081;-.07002975;.043058574;1.7010999;2.3005319;1.613833;-.5215559;1.3562316;1.6760507;1.7328999;-.36332279;-.18639392;1.4042358;1.614488;1.6839092;.89517486;.29381683;2.1051922;1.21755;-1.7696064;-.67839295;.86684573;3.4840269;3.0306358;.68069285;-2.8734744;-.468849;.6678068;2.0802882;.52996618;2.135561;-.12344592;.46605659;4.2981639;2.919328;2.8775806;4.277998;2.0297995;2.9915209;1.1695671;2.1636074;1.5328289;2.0204785;1.2439184;1.9027091;.42442244;1.0818094;.23390615;1.6554646;1.7881513;4.9983592;1.3544893;4.0790906;4.1102014;.17067125;1.3183712;4.0425253;2.6406987;.13607444;1.7544216;5.5298753;-.93665564;2.2711732;1.1291459;.38728091;1.3368481;2.1791584;3.3279886;1.5010563;1.3038442;57.425457 +-.73427474;-.23891939;.912009;.93004894;-.46163249;.84560198;-.32108089;.24257477;.6174202;.25722906;-.025070198;-2.4769585;-.3003574;-.35620469;-1.5919856;-.30174375;-.36449713;-.69360274;.88836157;1.2043053;.30801252;-.58963609;-1.342428;-.63648182;-2.0164332;.2141376;1.514709;-2.1466935;-.32876042;.55977982;1.7715787;-.49402821;-.28622654;-1.4670961;.79039401;-.85474056;-.57228851;-1.8839948;.2956011;-.32145992;.93818736;.17562999;.94404137;.7155326;-.23653063;.58994645;-1.4270816;-.22059898;-.48357484;-.27281645;3.7740536;3.3724647;1.4079292;.63725948;1.1515392;6.5746341;2.6464934;1.3930681;-1.5289989;1.1943862;-.61560142;-.8451668;3.2238646;3.418391;1.2213904;-.023342673;-.99687713;3.3331738;.025994191;2.3914165;3.1273472;-1.1715494;1.1262162;1.0348513;-.32921952;1.2549261;6.1175737;4.1377754;-.62241274;2.9808888;1.3172001;1.1821548;3.0138872;.39256427;.00095716363;2.299628;4.2937655;.095588312;1.6641868;-4.0500274;2.4720368;-.89030766;4.0796108;-1.4808649;2.1649404;3.5727425;4.0617867;5.6335087;-.95350838;2.319402;-1.4302295;1.1422669;1.5068461;.64730674;-1.110719;.12284782;.0053283265;-1.206959;-.23673093;1.3071653;-.93039882;-1.5197681;1.7561139;2.3545818;-2.2632637;.20133977;-.49215174;.82533342;2.2274766;1.9512846;-.36098489;-1.4052564;-1.3676769;.85250294;-1.5317342;-1.6177927;.87720639;-1.686771;1.7174803;-.44235903;1.7257921;-.27988186;-.52857226;-.43059248;1.4658862;-2.8101783;-1.346595;-2.138798;-.13754447;-1.1445831;2.5112946;.90672779;-.26613411;-.21816632;.71804845;1.6239858;-.86786318;-.7144534;-1.4539483;2.5903676;1.9209701;3.8085155;-.33939347;.31352398;-.18433417;5.4655113;.37119865;1.159161;-.28017932;2.5276792;.39540702;-1.4832026;.9404394;3.1685622;1.7233145;1.0639569;1.6478808;2.1414199;.39595598;.39181703;2.8072393;.29689661;.99497181;.98339027;-1.25907;.36390978;3.228281;3.4203866;-1.0912299;2.2471087;-.021971228;.66574818;1.3682429;.22026972;-.53200138;2.7326007;1.9218726;-.71990949;2.4388835;-2.8259492;1.8206676;.26160005;3.1058276;-.46145421;1.5164719;.25608015;.89412856;4.4027147;-1.7434201;2.4316752;35.7187 +-.60101736;-.7039234;-.76510525;1.4536628;-.36522481;2.0149434;.57610714;.72951955;.65814984;1.1002326;.73964435;-1.749559;.93060905;.84950566;-.86630815;-1.2598844;-.0090145236;-1.2582458;-.22673178;.60383886;1.8904845;-1.0508423;-1.5131807;-.38221675;-1.1032081;.068797238;-.31572238;-.2223116;-.43971217;.8280766;-.38329333;-.076117314;.31025177;-.22423139;1.0059136;.48742527;-1.9044126;-1.3026466;-2.6572607;.35855946;-2.0800977;1.5152912;1.2937419;.18263963;.15337496;2.3154621;-.23101951;.75774425;.32651713;.22914171;.61017042;5.5794268;5.7079072;3.2823977;-.013632605;4.7424946;1.109246;.58432126;1.02826;2.7444704;3.1972272;3.5227814;2.0529857;4.2491741;-.82107639;2.5293002;4.7599783;2.6206841;3.4514;.61973119;1.0588896;4.8034415;-1.6662283;-.67650461;4.1768909;4.8362741;2.4269354;2.5034516;3.2405844;2.1389997;-.075809322;3.0990274;1.6618224;1.5612973;1.8219163;.7698859;3.1445961;1.558494;1.9062101;1.586351;4.6334233;1.8138895;.46968475;1.1920655;2.7420714;1.5148885;5.6051288;.70598328;2.778831;1.9067745;.6415419;.97041917;-1.0044712;1.122223;2.300544;-.81298184;.30388907;2.9603708;.42753774;.53071368;.59277123;-1.2475873;1.4218382;-1.1475295;-.12402355;-.6813305;1.98151;-.88692713;-2.4804485;-.045895882;-.12781301;-1.208122;-1.9825807;.63951796;-2.3416948;-1.1565734;1.0762898;-.75799686;-1.1416628;.96408331;-.56335664;1.4120938;-.32831246;-1.4321289;2.0595467;-.12277897;-1.8944532;-.57339847;-1.7272761;-.48810339;-.44065833;-.37094557;1.2013236;.97368962;-.48702252;4.3159213;1.6714915;-.62426734;-1.3158281;-.4473058;-1.1379788;3.8160453;3.4736364;1.4918573;-.17693493;3.1161859;.64044255;.023629626;1.221133;2.5742667;1.8642386;1.889223;3.0744982;3.4625638;.76189774;1.9149002;4.2157121;.68857282;.64947516;.87244844;-.34621695;3.4180477;-3.1885293;-1.9112806;4.2338233;4.1401725;2.8532197;1.7185178;2.6390939;.97360873;.89937103;3.7300007;1.9922816;1.6634442;.46556729;-.31895283;3.5405965;-.36772627;1.1454295;.63329482;2.8497446;.91400224;-.47057343;.99408937;3.5229504;1.6586894;4.6593657;1.9739548;-1.1725402;1.1582468;57.13678 +-.45939878;.96826345;1.2895194;.72477299;-.22861846;1.1413023;1.2462335;-.14213216;.060513273;-.020677697;-1.053521;1.4355438;1.0071347;-2.2073658;1.7096075;.26114732;.86188942;-.061487891;.17434683;.88414007;-1.0565372;-.99434435;-.1871777;1.053714;-1.5783279;-.1424101;-.21555901;-.53880465;-.38970357;-.22075464;-.41845864;2.5667839;.080674104;1.5411386;.59199041;-.44511816;.2166478;-.14102122;-1.7690506;-.37565726;-.66532934;.69334453;1.3676958;.073380172;.91086149;-1.7580271;1.2585869;-.019813977;.49791077;-.88598359;2.0525649;1.5791788;1.0772269;2.5301323;1.745401;3.9197617;3.8285255;.68628871;.7292093;.55495161;1.5311546;-.07422708;1.7058173;2.6660693;.81104732;1.1096514;1.6244771;1.5850003;2.3174012;4.0397062;-.47565541;-.60078287;3.995599;4.899272;3.0451169;4.2663279;.1508992;.40924051;4.584682;4.5067482;3.1859381;-1.9233141;-1.0196397;-1.843145;1.7836308;4.8058681;-1.7850358;2.7494781;4.1764493;1.7963622;5.0468826;2.2320137;1.1709688;3.9595087;3.0822115;2.7691123;3.0671074;2.5680456;1.6742003;2.7838314;.59785652;1.754061;.33786753;1.20323;-.89026082;-1.6898808;.19612704;-.48963991;.062486146;1.2612554;-.66836113;2.2239611;-.87316769;-1.7439445;3.0971639;1.768523;.53602427;.70404524;.00600748;1.7870644;-.53507578;.024451235;-.71429044;-1.0661106;-1.3649341;-1.1981037;-1.3756433;.93046641;-.28789023;-.49272341;-.55696857;3.2832019;2.5685415;-.18904446;.98177141;-.68464905;-2.1711712;.36930129;-1.6583754;.15060753;-1.6556672;1.6233672;.5246594;-.070715591;-.74132961;-1.8574072;1.4609164;.5287388;-.35965151;-.48974228;3.0843465;-.060745802;1.2714934;2.5764189;.88899177;4.258738;2.1474042;.54196501;.71130246;.66604036;.85307789;-2.0768521;2.4225218;2.0161328;.15884621;1.6657875;1.0075585;.47438747;-.52882022;3.3068273;-.43284127;-.84469455;2.1270955;2.7050545;2.096612;4.2952824;.065785177;1.3309717;3.3123615;2.9384308;2.143178;-1.0025744;-1.0199111;-1.1384279;1.2355235;3.4197745;-.64093721;2.9198587;3.5935025;1.2059089;5.3762293;1.5235685;1.642114;1.5322574;2.3332722;.52340162;2.2489376;1.2719953;1.6816721;2.5283349;48.943981 +-.51606733;.48597682;-.14684705;.23547116;.0031525644;.48953897;1.1317993;-1.6076251;1.3932776;-1.0035967;.1880168;.27753356;-.57077581;1.3893064;.28814727;-.95606792;.81199193;-1.9826753;-1.3068153;-1.5342374;-.61610311;-.038491759;.91091931;.84956586;1.4885598;-.30692086;-.30076179;-.12976156;.032649316;-.6774658;1.2737772;.7469874;.035941023;.4732253;-2.3041246;.30768749;-2.6503618;-1.5388899;-1.1693689;.31410259;1.3052124;1.1965495;.090105571;-.68317765;-.12129653;-.13379873;1.8298081;-1.0564405;1.1257806;-1.7204062;2.237936;1.1728499;-.81520724;2.7311661;2.8688502;2.0802741;1.9995153;3.832696;3.0791283;1.7128597;-1.0823003;1.9911557;3.3851171;.19881523;1.9656552;.41887996;2.5699713;2.1006353;3.9595778;-2.7383132;.55875516;.87551606;5.710547;.27705601;1.8938781;-.78053206;3.1021597;3.8243985;1.6748114;-1.6640834;4.4406857;3.4427016;4.3494072;5.0400496;.78311497;1.2188909;1.1399719;.31418049;3.7859516;4.9135971;1.0296882;6.1486807;-1.1408002;2.849297;.74093246;-1.4956356;1.8131312;4.6500111;2.4112206;1.3205199;-.012434923;.59019369;-1.7322303;.35152376;1.0330762;1.3701433;1.016018;-3.9536414;1.3686235;.56498021;-1.3077662;.55132765;.23142831;1.3091617;.13876054;-.48577413;.7020548;-1.1404808;.068677291;-.43518624;-1.7711604;.29893237;1.2896404;.72268152;.84393942;-.52084905;-.87612075;-.62348092;-.97198617;-.35138693;.48458418;2.2190719;1.165274;.56862116;-2.0692058;1.4900689;-1.9627017;-.60675216;-3.8240998;.59550494;2.0521476;.94470793;1.4381994;-.5733481;.24626347;-.66920364;-.2797479;-.09151914;1.3271312;-3.3643055;1.1383861;.89915699;-2.6860676;2.4308279;3.0564742;1.1394206;1.6918173;2.6682158;1.5437955;2.1726155;-.17629999;.97410172;2.6767657;-.59485561;2.5853522;.98518312;-.17881206;3.4593165;2.2024548;-3.4347508;.33543521;.82408291;3.0896232;1.7563807;1.2694147;-.38283294;2.0749586;.98784512;1.193982;.019170484;3.3222063;2.3310437;3.5037043;3.6092489;1.1449145;.18638048;-.8168183;1.6344218;1.5828376;3.3879449;.42941594;4.7145786;-1.5301604;2.9739015;-.88645732;-.79031503;.55992466;4.2656536;1.2017454;2.666477;49.686382 +2.137876;.026080228;-.67311698;-.41996393;-.90062118;-1.1104503;-2.1329148;.20307183;-1.3927387;1.2995219;.8356626;2.0238786;-.44760299;-1.2889127;-.37623501;-.80001801;-.84758157;.27860081;-.83197922;.43247634;-.4596377;-.57640183;.11089288;-.15866162;-.90049511;-1.2123578;.33360854;-.14363129;.60023808;-.11008316;-2.4394727;.29090855;1.6932727;2.0764554;-.18014164;.80257732;.23717065;-1.5385101;2.0176852;.62319624;1.2331433;-1.1465354;.60127866;.20798995;.11564621;.39413854;-.45294851;1.1520765;-.89070243;-1.2931418;2.5754871;3.1405795;2.5581067;4.0670886;3.2658739;-.87286925;2.0357308;-2.539119;.21480472;.36109513;1.7905755;2.5507257;.8395189;1.9541527;1.1529194;1.8812407;2.2558992;2.5724435;4.1654048;3.2975235;2.6438758;1.8816937;-1.526933;3.5111151;1.8344095;-.78731388;.88668996;1.5166049;.17623346;-1.0252832;1.0255072;2.0638561;4.0778985;.53149784;-2.9561536;3.7045884;3.4225216;1.5206662;.21999286;1.7099018;2.5729115;-.29310417;2.9908023;.89796162;4.8411059;1.8717178;1.430423;1.1048583;5.7093658;3.8028193;-.50897956;.12156957;-.59731907;-.49560642;-1.0187397;-.90345579;-2.8807755;-.543428;-.94105005;-1.6172575;1.2072772;.19738762;.35022032;1.1107389;.29444528;.015775731;-2.6138527;.7760461;-.29040048;-.20966479;1.47524;-1.260368;.12912843;.37597859;.32975793;.22717822;-.18634649;.28357509;-.73617733;.05587874;-1.495344;.80009693;1.471794;.35628518;.58990663;.81587183;-1.4070837;-2.5657434;3.2986448;1.2098985;1.4208984;1.292665;.09699481;.64730537;-.52402043;3.5105627;-.50498843;2.4222398;-1.4924324;-.39919102;1.133332;1.4707166;1.9835745;2.2709169;.087896481;-.30383211;.88409168;-3.1383781;-1.1409352;.91469109;.7691626;.44276106;-2.08989;.90836555;-1.1963514;1.827176;-1.6060622;1.1303416;2.9692721;1.9208337;2.6933169;.34348658;-.64051056;3.8904474;.53461385;.37815967;.49564135;1.1876268;1.45152;-.98917556;-1.3474736;2.840286;4.0911918;.21545655;-1.4344252;1.149057;3.0530984;1.4487836;.41813466;3.1177316;3.1266489;.58976644;1.9012877;1.4899192;2.2663698;1.7288792;1.8414494;1.1772221;5.0542512;1.5338559;48.029003 +-1.2854067;.036540244;1.2109209;-1.4612522;1.4657848;1.1419303;-.34382233;-.95789486;.3654421;1.2687062;-1.4754968;1.8593353;.93569481;.14253642;1.0020404;-.0039403504;1.6537493;1.1767559;-.9035849;-.51489794;.25040868;-.027143754;-1.4669057;.4490661;2.6992769;-.07937941;-.53206676;.26387233;.025437227;.062255245;-.30108991;-2.011745;.08973714;-.63123798;.53650135;-.3314057;-1.0446526;-.69112134;-.66083509;-.96355903;-.81166518;-.62748462;-.46636286;-.51610416;-1.2589524;-.17039873;.64251667;1.2162194;-1.3784848;-.86227709;3.7128358;.28765374;.48809412;-.81779456;2.6681817;1.8228246;1.8341076;1.9463333;1.5812575;3.6533372;3.1799784;.78783792;1.2810489;-.628546;.50315386;.67853791;3.763849;1.6917117;1.4454955;2.0479686;3.8489168;-.31954131;1.8825172;-1.0028994;4.1950164;.43786639;2.7672637;.79850668;1.5521797;2.160408;-.86071312;1.1884;2.0467842;.47765929;3.3456514;2.5252185;3.343765;4.7149143;1.8291974;2.9434197;-1.0813314;1.6719028;.27683949;.081238575;-.088119209;3.0796316;1.6917607;1.5409241;3.20015;4.9289126;2.0676477;.57242465;1.8186581;-1.2036277;-.73823321;1.9930704;.397544;.26994476;-1.8394874;.60536963;-.537956;1.8523469;.59549761;1.108887;-.33750483;-.8106389;.83916742;1.1570069;.48275208;-1.0807871;-1.2324746;-1.5474977;-.44656286;.11073905;.6117717;-1.0252321;.029445553;-.056782138;.18704839;-.95265275;.31853119;-1.3086863;-.19071095;-.69474024;1.7280307;-.26582912;.095156729;-.36873248;.2484533;-.42867291;-.66852045;.43944111;.39959726;-.13278937;-1.8615528;.09789627;.082253329;-.26214048;-.45990226;-2.0501766;.77431047;.069552101;-.868029;-.13871737;1.5545573;2.0716996;2.0892904;1.1886231;-1.0625741;3.4766176;1.8185029;.18958049;2.1835806;-2.2753179;1.1587713;-.7203033;4.715477;.62636685;.75865453;.27265656;3.1470783;-1.1836025;3.06264;-2.1296041;2.8706083;-.83266759;2.3466456;1.7126304;.19570751;2.7654135;-.60490054;-.11170734;1.866009;-.14804922;.23438792;3.2444193;3.1829853;4.9671903;1.2206261;1.1037197;.90211666;.3738527;.75662249;1.2920426;.034276746;2.0711465;3.695673;-.36765522;2.5547597;4.1773143;40.381439 +.21564785;-.31472465;-.11620224;.81653285;-1.073459;-.42042729;-1.9470719;-2.0359509;-1.1284524;-.17607751;-1.3956757;-.91876507;1.1550639;.55476463;.89276338;-.39493817;-1.4450368;-.71131283;-1.5570383;-.8824811;-.46422961;-.22967567;.18612176;-1.1351417;-1.391786;1.752785;-.13957883;-1.8560537;1.3868251;.85954767;-1.4182404;-.2051926;-.51644975;.63309532;-.88161212;2.1356955;.90691769;.055472601;.82464558;.17381817;-.51036245;1.8756378;.13715656;-.66035837;1.0601535;-.78743041;-.52685022;-.39135385;-.71073294;-1.470726;-1.6961386;1.3648252;3.8168004;3.4713576;.3454366;-.40555853;6.6695471;3.1640851;1.5690248;.69343537;1.6853399;.18891978;2.4131701;-.86409366;.50175685;2.4024615;2.5870326;3.1748717;-.2394972;4.1998091;.99615502;-1.9742293;4.5466037;1.9951345;3.7105918;-3.2776344;3.019696;2.2342732;4.2521758;2.8962488;2.9142077;1.6125882;.70919323;1.8758332;2.2313111;.64142662;1.8278908;4.2303581;2.1379802;1.8981075;.40689781;-1.2173964;1.5499306;2.2967799;-.073220998;1.1470261;-1.7316111;1.3604956;4.9221082;1.2080172;-.31147856;.37867999;-.12291324;-.41384885;-.43976754;-1.7260021;-.76269484;.17775549;-1.0747496;.22219603;-1.0653031;-.9794665;.16170597;1.3670398;-.41622409;-1.0437297;-2.1937037;-2.6787708;-1.1829664;1.1355326;-1.3594756;.35303578;.16690846;-1.690977;-.64945281;.12547418;-.932769;-2.1977406;1.1023474;-.098560497;-.28526786;-.85961753;-2.5668552;1.03124;-2.6352301;2.75703;.62443542;-1.1021867;.28941992;.11454176;-.67012674;4.0741653;-.16270195;-.67634094;1.0037905;-1.0161506;.2113627;-1.4538435;-2.6114531;1.4534104;-.98671067;-.47486758;2.2329028;1.4600353;.19895418;-.61803722;5.0240903;2.3840418;1.5412557;.24287501;2.5089173;-.44891077;.88924092;-.63250881;1.0462322;1.3908243;-.26241919;2.5672538;-.38990632;3.0179129;1.5541073;-2.9543264;2.3672712;3.2520902;3.6748772;-2.1189206;-.65049422;2.9594491;3.1645083;.7275877;.26654211;.3412371;1.6070026;1.84377;2.4850793;.45802614;1.6673343;3.7160995;-.74187523;1.6448212;.85412872;.9804557;1.3011248;2.3978491;-.37076008;.43029511;-.6015532;.047528982;4.7299399;.65412933;30.066799 +-.16924444;.43185169;-1.5126625;1.0322825;.5553118;-1.5050603;-1.3106878;1.8651386;.71691149;-.58188736;-.071315646;.67177463;-1.2011745;-.17587988;-2.3741214;.56035918;-1.4387408;.27206945;-.060981445;.73788244;.33436534;1.7547711;-.15115957;-.21656254;1.0673579;1.0974462;.81915796;-.24459021;-1.0053824;-.81036395;.69996351;1.4591738;2.2540545;.50576371;-.52641636;.069129676;-.91908622;1.316309;.44298178;-1.9170353;-.42179191;-.33888489;-.10083488;.20659465;.44353539;.35599324;1.176317;-.32824862;.34816378;-.0006446258;-1.1159574;1.1751091;-1.1315763;-1.8902733;2.3169966;2.14765;4.6370597;3.151758;4.0258608;1.0619177;1.6726048;.62621474;-.24091122;1.4101073;5.3372583;-.17190382;-2.0529258;1.1912357;.020107843;.28623492;3.3957222;.7516138;2.9043467;1.2193241;.049718719;2.7694843;2.9458215;2.1673553;5.7737217;1.866919;3.5141785;.96609199;3.6302166;-1.8716929;.36049524;2.3657153;1.09782;3.3436105;5.3017964;3.590256;-.26221228;2.7786546;2.3737519;.99720943;3.8659768;3.9471617;2.0860081;4.6519675;3.6851451;.7935161;.15473102;.82836318;-.8159042;.70675731;.64157474;-.49740317;-.93840367;1.1049645;1.512063;1.211773;.2236813;.75968826;-1.611182;-.56211621;-2.3717141;-.65298116;-1.500401;1.1402141;1.3743733;.94650984;1.9629976;.90026963;-1.3730208;-.25752261;.53016484;-.50868326;.44027188;.86322021;-2.1177175;-.30055782;-.72112685;1.1525389;3.6138194;2.3963945;-1.6533339;-.84435725;-2.5374069;.73634386;-.10414928;-3.0273046;.32114953;.32130072;-.50656486;-1.1706916;-2.9694731;.28406706;.080929495;-.53522241;-.02328991;.75545436;-.39291376;.84612358;-.77914816;-1.6380546;1.0020592;.20799091;4.1379437;1.7785199;1.1513071;.96920359;-.0081911599;1.955094;-1.8022535;1.0558895;2.1276443;-1.520798;-3.0523179;1.2362566;-.27727893;-.0047470331;1.9337717;.27840135;2.7464237;1.0067326;-1.1800859;3.963593;2.7964156;1.7023913;2.8825417;-.43702278;1.4178011;1.0072919;2.6704166;-1.3195869;-.71691459;.88147664;1.0603471;1.5340241;2.9668226;3.1895053;.26593709;2.902045;2.9600518;2.217515;2.0407841;2.4589169;1.3181335;3.0110662;4.369206;1.2797524;47.136818 +-.92137516;-1.5045812;-.4158664;-.41855675;1.2427497;.22669055;.049056601;.74806464;.74431866;-2.7637775;.080361083;-.0083295582;-.15133919;.58053946;.5589298;.33954421;.84337181;-.96072572;-.029600678;.9536618;.95213777;.060433414;-.29107222;-2.2517123;.78550762;-.35842007;-.27871948;.3214418;.064853288;-.6940791;-.83804983;.58089936;-1.1613765;.037291747;-.42963412;.38853124;1.0180923;-.36113006;-1.8400067;-.43223488;-.11182111;-.29095757;-1.3472784;1.7120733;-1.9665564;1.2545264;-.91518289;-.98483843;.043963719;-1.1393908;1.1845201;2.5058808;3.2801185;1.6425306;4.4005017;-.14970882;6.2361507;2.5287025;5.9413099;4.1456857;-.80130386;4.2407656;.28083435;1.822939;1.1954951;4.1981578;.20278707;4.0421767;2.0362298;-3.4274313;.66816795;6.3437948;.65159959;4.2853069;3.1910019;1.3267245;.82192445;1.1082256;3.954344;1.5924977;1.5136836;4.6352162;-.77259463;-1.0162058;6.164227;2.9758093;.61397523;-1.0124531;.76535952;.34686357;4.080842;2.5568392;4.1145549;1.6400602;1.4891747;2.4551685;1.7301641;1.6061409;3.6337655;-1.058085;-.23654181;-1.3178798;-.97300535;-.73603135;.6830554;-.39128187;-.61288249;.090528496;.097204924;-2.6325517;1.2243391;.43386725;.40072978;.024687791;.94405049;.5542469;1.3562329;-1.7999873;-.2451971;-.33891636;1.9104139;.17616966;.77710032;-.82796204;-.82513714;-.39156306;-1.485309;1.7756453;1.0797579;-1.1537064;-.73616183;.21565939;-1.1892105;-.66577435;.45954135;1.605736;.97620392;-1.6590738;-1.4688437;-2.0238204;.45768586;.4424997;-.079323977;1.5377865;-.59886438;1.1036863;.26673263;-.294213;.21532881;-1.1597626;.15915991;.4913418;.28740984;1.9385072;1.8078787;-2.1927972;2.8496852;1.8349978;5.4873705;2.9922466;-.4305959;1.6334141;-.1118408;.90582877;.2413467;2.5286613;-.31353545;2.0181229;1.9408622;-.63044882;1.8762257;3.0479114;.94162953;3.5198932;3.8721242;1.2327971;1.8508571;1.6288164;1.5867444;1.3567305;2.9203165;2.4443107;-.82152569;-.65207714;2.7975416;2.6967251;-.7778725;-.64586186;.18414845;.2661913;2.0086484;.19351292;2.0955818;1.3045419;1.7170516;3.0232532;1.4507834;-.62981957;3.8283904;-.32286221;45.116177 +-.47177815;-.31859031;-1.2938406;-.32280296;-.89569718;-.65997797;.31759599;.44548267;-1.3500855;1.0069346;-.81747854;-.41518059;-.51142436;2.2881646;1.1418046;-.1191179;-.052624919;.24046221;-.89607877;.30659962;.86246794;-.59623641;.48988357;.12911312;-.61200571;-.48287642;-1.4239789;1.0666367;.4214181;.91951615;1.1793944;.0045260442;-.086580351;-.39486927;.32785988;.35892966;-.077420816;-.77249354;.77861375;-.87245429;-.22045995;.64680165;-1.0971978;.44946164;-1.1743196;.76423639;1.2883228;-.27135569;-.32363123;-1.5670861;3.9495547;2.695379;2.301774;3.495302;3.5181363;1.8367112;2.6162276;2.5721292;3.6657863;2.5161872;4.3224983;2.2093072;-.50409132;1.1160394;-1.976418;3.2861767;3.0663357;3.2703242;3.4367709;-.83958179;2.5476103;2.540566;2.2062223;.4455584;3.5717969;2.3119042;6.2275987;3.9634593;.94426531;.47662941;-.87027258;-.70325667;-1.515227;3.7075956;3.6791911;3.7300787;1.5439304;1.23958;.90561706;1.4473733;4.046195;1.9467312;4.6106324;1.5490836;.84732896;5.1045494;1.0933433;5.4158506;1.5201241;3.4936018;.44451386;-.50553417;-1.3111323;-.87949908;-2.4950111;-.21625145;.6191386;1.0007688;-1.2343104;.65586901;-.098265715;-.53458762;.56251502;.43090293;1.6581143;-.2140725;-2.1331124;.27782038;-1.1464289;-.26002768;1.5019307;-.4353376;1.0426875;1.4349833;-1.4866;-.8992036;-1.7835095;1.1692235;.91880393;-1.2299225;2.04514;1.3397574;1.0091095;.45667621;-.23483622;1.0378094;-.64228559;-.11302116;-.02083418;-.87711036;.062233824;1.3539736;-1.4676077;1.0374155;.52056468;-.18448684;1.2237669;1.4473245;.54344672;-2.2533493;4.1479297;3.2681186;.52040595;2.1052709;2.9429951;1.8760968;2.4030421;2.8922405;1.7589215;2.4244273;3.0599346;2.3052435;-.43013611;2.3519847;-1.4382458;1.8116155;.86658454;-.014365356;2.8129489;-.15600629;.026952833;1.5055491;2.0164843;-.234951;2.7967908;2.5332341;3.7436492;.90510613;.17856847;-.10850483;-1.3338419;-1.7782272;-1.6724083;2.7356765;2.00564;3.3671236;.35009995;1.7624885;.54109603;1.0893193;3.2363989;.46424836;2.0292699;.64639431;.58726329;4.9976707;1.3039875;5.5249925;.19113477;1.79649;57.456417 +-.44536325;-.66288811;.5295468;.048170019;-.33139843;.30152118;-.31890061;1.7227235;-.81739956;-.06111934;-2.0604441;-2.3424227;.372554;-1.2177646;1.0679436;1.3789836;.24534211;-.44703671;-1.1269714;-.12577453;.39251319;-.19269688;-.71655494;-2.8624187;.40616596;.62679243;.59317356;.46575135;.33723727;1.187927;.22288392;-.29613194;2.747576;2.1101449;-1.6632944;-1.0103788;1.0280913;1.0647831;-.08348982;.49039593;-1.3255272;.38064733;-.044652611;-1.4329511;-2.1159754;.10886596;1.165416;-.13290101;.99017519;1.4188657;2.7655888;1.3495095;2.0398939;4.8891282;.88558292;4.3837318;4.3194537;3.5728538;.30329913;1.8870542;2.5773499;1.0338919;2.7558196;3.4532394;4.5110812;1.3569508;2.3817439;3.870265;2.1115918;1.9136158;-.38417566;.78811568;5.127501;1.0199571;2.8044679;1.5645379;-.13407625;1.252331;1.4265144;.031671673;3.4359307;-1.4720184;.53362894;2.6555927;.44731262;2.3278532;3.8136499;3.0187151;1.9104899;.38346303;.81061673;3.344027;3.5842288;2.1557713;1.6725912;2.626143;-1.1971551;7.0224795;-.89079887;2.5684047;-.26111913;.31885096;.9300217;-1.1252203;.7705366;-.17042331;-.34926325;1.1450198;1.2417586;-1.1020924;-2.6003573;-1.0312043;-.34787288;-1.2514341;.29601166;.091465279;-.26367781;-.86251259;-.52668464;-1.0039905;-.14144848;-.068860501;.707923;-3.3458335;-.86083287;-.34117216;-.85050714;-.63065577;1.1675758;.27188402;-.058517523;.03367988;.48894551;2.646383;-.37561771;1.1674466;1.481068;.18542674;-1.5953395;-.16730782;-.53249168;.98616177;.51317072;-1.631538;-.90430909;-.82225901;1.6032357;.13275227;1.6399887;3.0466611;1.9920123;1.1880863;.6794675;2.431093;.29701999;2.8442428;3.3934326;1.918736;-1.1262162;.76672417;3.1070631;.74084246;3.7946405;2.6545408;3.8353012;2.0578132;1.5650891;3.3088906;.80338085;2.6275697;-.074837238;1.5177381;2.5991802;-.5129115;2.5991762;.5120995;-1.2483178;-1.7213129;.6572507;.085386828;3.0046973;-1.2982857;2.5717635;2.3823133;-.36980054;1.5269506;4.114902;.19053972;1.6317191;1.5618129;.69144177;2.2860601;2.8221052;1.4732944;2.0645611;1.6520599;-.93879688;4.4456606;-.68589658;2.4516013;58.215382 +.94443738;1.5994666;-1.4635746;-.91276944;-.33923957;1.2859849;.050617039;-.28782424;1.3007884;.057017647;1.0739335;.14983642;.084762238;.95389771;-.51488602;-1.3311424;.40996468;.73223358;-.012033216;-1.14867;1.2370125;1.4701431;-.86587083;-.56869012;-.68392992;-.77641654;-.31309077;.2220066;1.0130937;.62160975;-.67344415;1.1381633;-1.1682703;-.88116211;1.1181408;1.2471193;-.36381;.7516737;-1.4598918;.57400984;-.50464225;.86684024;.9508971;.65129703;.48989269;1.1810988;1.2233369;2.9485862;-.12461437;-.90495086;5.3148952;2.7606936;4.4431939;.34607086;1.5319793;2.2815304;3.5318258;1.9118317;5.3426285;-1.8284231;5.0819526;1.8993815;4.5896745;-1.4290003;5.2875161;2.476424;1.0208945;-.98087895;1.8164877;.72094786;2.9376848;.071358852;-.19246614;.26129153;1.6600702;3.5600266;2.8168004;-1.0731152;1.530838;3.3063405;3.2046733;-1.7150004;6.2445769;2.7595589;.70907474;4.0114322;5.1066723;.46643955;.096250609;-.035541356;3.4261968;.99592024;3.835922;3.2899544;6.9376931;2.1812487;1.8739271;1.5190754;1.1948935;-1.184835;1.2752997;.30250415;-2.424499;-.4464696;-.64714181;.59791213;.059240032;.1288185;1.9802041;1.4614749;.13836427;.43667075;-1.4314526;1.0724108;1.7155356;-.84335107;1.9856559;.22521254;1.1900795;-1.5252242;.48318943;2.4876502;.54607767;-.60757095;-1.1577537;-1.3153605;.99727863;-.41397989;1.4602286;-.49670872;-.65944958;3.1370089;1.5069543;-.11648726;-.43195179;-.28030893;-1.2541593;-.011550777;-1.1355402;-.07793913;-.28072724;.65080208;3.0974619;.49513558;.45781785;1.0953841;2.9744093;.019460877;-.96522564;-.2113325;4.198132;1.6240274;2.6245549;1.1215277;.3480047;2.2857888;2.4813042;.73077893;3.2602623;-1.7892865;2.6413288;1.2157711;4.2026305;-1.331432;2.7482276;1.5470067;.76245528;-1.1924912;2.1200619;1.0847127;1.8176284;-1.2878822;2.6705806;-1.5531943;2.1981988;2.0338995;5.3850513;-.74886996;1.2125827;1.9498823;.40065205;-.90903747;3.2071252;1.9626842;2.0170877;2.846801;2.6285696;.50822461;2.3692162;1.3154225;.98087215;1.6550988;3.1386919;2.2234995;6.9174795;3.549933;1.1032118;.055692602;.74685621;-.94942516;60.370544 +-.98464155;-.45997879;1.9409605;-.13817936;-.57410234;.24998525;-1.3122615;1.1697993;.86303639;-.2189057;-.091258265;.3827213;-1.6629828;-.044344652;-1.6002359;-.51661056;.40078366;1.7267935;.61142182;.83871984;-.58629632;1.4249766;-1.489022;.29710332;-.59260702;.52657014;-.81271785;-1.1318066;.95277989;.12207341;-.021233901;.51323354;-1.9118187;-.83465201;-.69164622;-.068531245;-2.2704847;-.14603736;-.65005219;1.4387693;-.35673079;-.81907117;.49336612;-.92801225;.19365692;-2.111702;1.1975614;.15572287;-1.2375928;-.29842716;2.297446;5.1642227;1.5257932;2.6726358;6.3386798;1.7550218;5.1303549;-1.6281012;3.3666124;.28263241;-.56245619;.5843963;3.3341672;.52567208;3.493969;2.4072337;1.5008143;3.5163877;1.0289332;5.9846134;.40596122;3.6334541;5.0241437;-.4642913;2.3642268;-.92528903;1.850539;3.8132732;2.7093058;-1.0024374;5.3823128;-2.2042038;6.5616593;2.8045993;3.7419076;.9533754;2.8079121;.58281386;5.7434907;3.2905509;1.4617795;4.4620166;-2.2562449;2.9913762;4.9847398;1.8809814;5.7565241;-2.082957;1.3367481;6.7774682;-.63112229;-.19284834;1.1353519;-1.0617228;-2.0721884;.76596791;-1.1331888;.35368252;1.3099468;1.2211037;.81114626;-.49510315;-1.9755468;-.39844155;-1.3593448;-1.3734518;-.96590912;1.5337679;.97978997;1.5058604;1.7611854;2.2372084;-1.5017732;-1.4245963;-.39686054;.93723547;-1.1218646;-.77146274;1.1712381;.85497493;-1.2466013;1.4580338;.18084224;-1.2264432;-.38794175;.033689279;-1.322798;.33784428;-.77569497;1.4309233;1.141639;-.5868656;1.5568719;1.4256558;.3247911;-2.8888657;2.3969874;-.13208441;-.51845205;.88507056;3.1986175;3.8975925;.46019638;2.6442869;4.520833;.62854862;4.737916;.68474686;1.9677758;-.31797996;-.47656164;.4467862;1.4298114;.93507856;3.6814997;.49007434;1.0387467;2.3468716;.19680855;2.2524192;1.0613207;2.5202684;2.662389;.89226466;1.9023079;-.19451061;1.0655125;3.6673875;1.8080777;-.58273327;4.7594028;-1.1631811;4.8667617;3.0914493;3.561259;.85321504;3.0128324;-.088412039;5.2198324;-.4749501;.98934853;2.8342216;-2.6048563;3.5056486;3.0024254;1.439822;5.0332665;-.74760157;-.16544364;4.8173575;61.410873 +-1.0245346;.71842378;-1.1568019;.56880355;-.61986381;-.31468555;1.365718;-.95024365;-2.9256177;-1.1578496;-1.643535;.36181989;-.84877682;.1947418;.11312505;-1.0356805;-.60036355;.72467744;-.83238482;1.0918934;-.4261446;.41045225;1.1194154;-1.2574425;-1.5659852;-1.7709116;.31080931;-1.0327516;-1.6561313;-.75437427;-.57107753;-2.1710773;.49523965;.26876038;-.93785375;.35242292;.51799291;-1.3343478;-1.1582023;1.9259927;-.20350155;-1.0738637;1.4154011;.1237689;.56820899;-.66567487;-.72858566;.37600204;-1.296356;.57467556;4.1184931;2.903352;-1.1619917;.089393206;-1.6996785;-.36140066;2.7198124;.63674301;3.055248;-.84202707;-1.2544533;3.0765026;4.9189248;-1.9098803;.88642883;2.3362908;3.4880888;1.0176904;1.4578878;1.9064533;-1.5524678;4.386507;-1.0890121;2.2932312;3.7128477;1.5572073;2.0488672;.70325702;1.5627064;3.9237599;2.2619648;5.004241;2.9984062;.89460939;.84643346;.51970643;1.0905818;3.4809093;3.8300779;6.28332;2.4646473;3.9665897;1.7555915;.15422231;-1.4194001;1.6855465;3.6221807;.097883262;3.1330216;3.8526382;-.38285848;-.088386327;.36077291;2.2485902;-2.7980609;-.44298598;.52841359;-1.2448312;-1.2676351;-1.4196095;-3.0675879;.15949824;.72168732;3.0550218;.85455143;-1.349679;-1.1542412;1.0062282;-1.3866023;1.6736989;-.1755629;-.19854648;.39804479;-1.0987222;-1.8941656;-.054519683;.46523762;-1.8250118;-1.5233158;.65347534;-1.0271721;-.52936006;.63055903;.82464182;-.31804103;1.7947915;1.9562767;-1.3778669;-1.1605331;3.1349154;.017502435;-2.6737254;1.6859126;-1.3972845;2.0851796;-2.3956926;-.4968406;.46569118;-3.0594821;.50995171;.83152562;1.579409;-.3579742;.22247344;-1.4462525;1.6804903;3.7045522;.39316708;2.7206578;.74185282;.037326172;3.6676056;2.4153252;-1.5543848;.84443879;2.2719402;1.833833;-1.4880569;1.5433395;.51133746;-1.8480237;2.4057603;-.48503232;1.3933574;4.4976859;1.224131;2.1845338;.229643;1.787077;1.5792705;.89962107;4.3157263;1.6865031;-.34935081;.012138796;1.8824904;2.1829646;.53891116;3.7242799;2.0924368;2.2758651;2.7925348;.96601719;-.25431535;.087774359;1.2044786;2.9630723;.17545497;2.0429704;3.2010784;37.304977 +-2.0364242;.28613782;-1.461357;.09375006;-.17173564;-1.4364434;.37015906;.14609081;1.0616705;1.2945849;-.26146314;.75137162;.015732953;-.28509477;.94720334;-1.7150584;-.56417924;1.5852672;.34417263;-.33332631;.48599407;-.27578455;2.3321838;1.9377292;1.2012452;.82098585;.12977353;-.47831327;-.99815589;-2.1255429;.61092412;-.029464636;.68537176;-.97007269;.76374263;-.70264298;-1.2808;-.90828335;-.024557605;-.73922408;-.66798693;-.60926813;.36756009;.24252953;-1.3754699;-1.313745;.98423344;-.65630156;-.60409665;-1.161535;2.2592993;2.7935996;.4317455;2.6577623;1.3308918;2.6552851;1.2493379;3.1508198;1.3314465;2.9643855;.12505321;2.3319409;1.4550588;4.2685661;1.0773054;1.7146119;-1.7363695;-.20343389;-1.2900553;2.9202709;4.0444865;2.7233586;3.9156744;-2.6365907;2.8432112;1.5940127;4.9581051;1.5724428;1.4622701;1.4236963;.95500189;-1.8160324;2.886766;2.9001184;1.8179902;2.1016676;2.7286379;-2.6926651;2.4123771;5.6069598;2.7606976;2.97122;5.0394082;-4.4949989;3.0765951;5.5476775;.67984772;4.3785415;2.5426929;-1.2018278;-1.5640938;.039680984;-.67173398;-.49315852;1.412959;-.37642059;-1.6593889;-.12867086;-.0022763941;.48288316;-.35159177;.26993388;.071743965;-2.1153481;2.5499735;-1.3371555;-.66405487;1.9819291;1.8892971;-.27785388;-.16727695;1.0007818;.79183686;1.2199013;1.2026739;.76233774;.783714;.91372567;-1.8136592;-2.3397858;-.25129804;-.16193216;.86561191;-2.7164969;.14752318;.48080239;-.37742764;-.40306479;.48680177;-.82600695;-.033884425;-.14785528;-1.7996293;1.1985596;-2.8362019;-1.8018556;.96999776;-.011514826;.038861908;-2.0900643;.55778152;3.2818785;-1.0311694;.8792125;1.1202575;1.8720483;1.1998072;1.4798353;1.0989799;3.3382878;-1.3111942;1.2494956;.4770714;2.4655814;.84088403;.1822027;-.0084805209;.45965147;-.62472475;3.0358787;3.5273533;1.7311043;1.3933824;-2.3626184;1.6582211;-.18185145;3.738848;.38906962;-.85665488;1.2037776;-1.257597;-1.0331173;2.5597451;2.392761;2.1543069;1.4152906;2.0572889;-2.9643621;1.5549897;3.4370034;.66106719;3.9985187;3.2678363;-3.6663346;3.0182149;4.4294381;-.22874646;3.5539634;1.2696022;-1.4504471;46.329639 +1.233951;1.8210223;-1.1300284;-1.4266224;-.59757149;.41764659;-1.3719724;1.0013735;.97650659;1.0797894;.04375403;-.10319671;-1.4197655;-.06805604;.43560436;.27625021;-.51177943;.90324301;-.8392306;-.52338362;-.4020097;-.90056241;.85081995;-.15967609;1.3419911;-.6707834;-.24453536;.41733301;-.59089947;-.040131785;-1.0189853;.15865235;-1.5580487;1.7546617;-1.2248102;-.94292349;-1.9379517;.67547852;.014712156;-1.1586478;-.47068337;.56492412;.85291147;1.1542975;.062528282;.31323096;-.28025675;-.82230675;-.22873156;.034608182;1.5131019;2.2847497;2.6876888;.68560171;2.941452;.21673384;-2.8986642;1.6088526;1.8130617;4.1472206;2.8280475;4.187233;1.4352325;2.6353886;3.605042;1.7080913;1.1353701;1.9658109;2.6680264;2.0152862;1.8881603;.090840913;2.8472452;3.5121062;2.3457522;4.7487535;1.1578596;-.16440862;.1392062;3.4358802;4.1652017;3.5222342;5.1514072;.7899211;1.4310886;.76870841;1.7625922;5.3458052;-.83686501;2.3973038;2.0925519;4.4888406;1.7983556;-1.3940234;4.5623016;2.5897686;6.0738363;1.7725841;-1.5856675;2.7779715;.84840566;.33731186;-1.9703805;-.54725963;-.34211826;-.6849041;-2.0138171;.54438716;1.1142014;1.0749376;.45217773;.61994773;-.19083522;-2.3942401;2.151289;1.5708439;-.58524185;.82041639;-.27810773;.13693723;-.69332081;-.33585188;.53211617;.95716548;2.2902322;-.12561972;-1.1759663;-.72465557;-1.3960434;-2.5148723;-1.6799235;.53404891;.5399918;1.9900589;-.83206981;.29077345;-.96244055;1.6601375;.058877163;.88119769;-.92738503;-.38895702;.70003122;.43886447;.35279518;-.23181844;.12321514;-2.4222958;-.028102687;-1.1332036;1.6911324;1.2108321;3.1863065;-.15742883;4.0784297;1.5802393;-.49298602;-1.2391453;2.9324522;2.0495241;1.0106579;2.7661672;1.8449758;1.9771534;3.1652708;1.1562929;.65343392;.093594864;1.9576106;.43050414;.5437116;.55093586;3.4323819;1.5260642;.11420042;2.4077229;.31310084;1.6182629;-1.9289578;-.17252754;1.3512753;1.5251484;1.7222847;.71128786;2.1117396;1.3492188;.33975226;3.1555829;-1.8038856;-.75390738;1.8148222;2.4778681;1.9655533;-.73440886;5.0935268;1.4995033;2.8053358;3.0789144;-1.7916977;2.716521;46.190971 +1.6008192;-.78695375;-1.8607357;-.092081308;.69232416;-.69699085;.97869623;2.2045105;.48271778;-.5567106;.15317607;-.45565677;.21557671;2.2417784;-1.4307685;-2.584295;-1.673907;-1.4665039;-1.6535622;.18491736;.86448306;1.2110819;.79049677;1.4379746;.64096427;-.059788503;-2.1520805;1.4835871;-.18016669;-.85185438;-.42527038;1.0720228;-.14433226;.045320444;-.21956195;-.10494737;-.24775676;.63776785;-2.049741;-.84427756;-.1713926;-1.4329177;-.8317191;-.33846214;.50935245;1.3091489;.73371565;1.8257409;-2.0578685;.58983254;.8327781;1.7094092;2.700048;2.4688616;2.0389256;4.1836238;1.7641003;3.5573878;3.899874;.29556522;-.38067579;1.0626405;-.83322072;1.970804;-.7620675;-2.2166951;3.7019048;.60793787;.15905307;4.3960304;1.4576089;-.062763415;3.1188962;4.4233503;.67637223;-1.7127783;4.9551272;1.5358707;1.8563014;.062652186;.85987401;.96447814;3.1780949;1.1420749;1.2934436;.37821656;.13110548;3.7796073;-.91434169;2.7181542;-.76460183;1.1241559;2.6018269;6.7158756;2.9734807;3.432879;1.270471;-.81956631;4.0589046;2.1975241;.66355222;-2.18082;-2.2609646;-.94563347;.76604855;-1.1853706;.06579186;2.0046477;.020092331;-.4914459;-.76852709;-.089396887;.12994461;1.8550941;1.1161623;-2.5695307;.47741592;-.027363177;.23346157;-.19557397;.16542105;.18978031;-1.6500421;2.2121615;-2.0617878;-.51653314;-.27116632;.52848405;.51212263;-1.2575126;.43727428;.64996904;1.8278047;.030330807;.76386166;.78920108;-1.2290239;-.76294273;-2.0803549;-1.677676;-.55082971;-1.1383886;.65591216;.98529232;-.22112431;1.2579174;1.0242143;1.0782524;-1.3592215;-.89558953;-.43117678;2.8402796;.60867298;.88729167;1.702896;.37878683;.82105982;3.2605782;2.3655658;-.13772452;-1.5383155;-.32261661;-1.5300881;2.2263489;-.73710489;-.81616932;1.2484781;1.6828371;-.39630553;3.1010695;1.4232647;.38455945;1.0127838;3.3805144;.33293507;1.712449;2.6400266;-.064337105;1.959258;-1.5267425;-.077453122;-1.3318186;1.5782684;.88979834;1.3820802;-.40482828;.54277647;.71166223;-.26233447;1.6291499;-.70728439;-.67131323;.72312933;2.5279915;2.0901997;2.7390974;-.055388894;.075433455;3.0537922;1.2508446;47.336021 +-.23316644;-.33069915;2.6008091;-.70716834;1.3605709;-.23808734;1.5181165;-.90960193;1.0232961;-.59850502;-1.4262764;-.78579885;-1.5595604;1.2714913;.3843824;-.32908434;-.12653282;-.21865429;-.93148005;1.8929124;.97686368;.60547465;1.4514068;.61417204;-.24308601;-1.4658875;1.9096335;-1.3347918;-.057027332;-.1644233;.044411704;-.6662581;-2.2151155;.39937872;-.37249789;-.40092632;-.36303887;-.071181372;-.39816418;-.18085895;1.2951336;.0022405824;-1.1420838;2.3395338;-1.2593297;-.1373501;.036019176;-.16568318;.95371181;-1.5212578;2.062804;2.8637326;1.4780552;.69320577;5.1678109;.71719235;2.2874458;1.5799991;2.5104682;4.7884035;.46365458;.40174666;3.5502632;-1.2229358;1.6452117;4.6152372;.12516844;1.0375843;6.4732552;4.9504466;1.9903427;2.2776749;3.3748417;.0021570658;3.3073821;-1.6422975;2.0795596;1.5175208;3.2397552;4.4607592;4.9572768;3.0846579;3.5032179;1.7819982;.64638525;2.9166765;3.0782263;-1.980994;1.855927;-.19772246;3.2522125;2.8871372;2.5347345;2.2959702;2.4750061;4.0203676;2.9263585;.54061276;3.1921401;.42320108;.19297166;1.3244429;3.9217675;-1.4990101;.6359604;-.81829292;2.1679482;-.23869912;-.29946715;-1.0701643;-1.4844522;-.47211143;-.85407901;1.48131;1.7902199;-.16584007;-1.9393092;-1.5117755;-2.5414774;-.16530278;.97794574;-.42225;.46822795;-.74320245;-2.6230104;-1.8252797;1.5278747;-.92224622;-1.0278758;1.3436005;-1.2849764;-.71163756;-.34090507;-.86742127;-1.4351821;-.78816044;-.72028661;2.0018227;-.7718128;.056157142;.15442412;1.0005711;-1.1369659;.16779584;-.80689436;-.30951267;.12132656;.082705021;-1.8766856;.90918946;1.0354607;.88143963;.28171992;-1.7086215;3.9135368;.6208024;2.8475637;1.8082938;1.3780739;3.7981122;.67232066;1.6595807;3.0646105;.63036406;1.4334505;2.8783247;-.56693763;-.2062342;5.3630986;3.6617768;2.5924284;1.6219872;1.4401735;-1.2772079;3.075392;-1.50414;2.2945507;2.3749673;1.8980579;3.3539016;2.1226914;2.1863587;2.4223371;.84629029;.062406212;3.3142188;3.3677335;-.43282378;-.24785054;.75884932;2.366761;3.3021684;1.731059;3.6186841;.9411366;4.5211782;.58431792;-1.6821797;3.631151;1.1132641;59.921112 +1.1649903;-.43332776;.88149625;1.485917;.039383836;-.38995239;-.38357452;-1.2908455;.33947155;1.2348541;1.1623862;.26139444;1.6375834;-1.9960382;.91539967;1.6261457;-.99527025;-.67153412;2.0030501;.38833421;1.722174;-.66672349;.43809301;-1.2999601;-.51048088;.30959532;.58629125;-.79964495;.05561595;1.8647746;.071307123;1.5222411;-.4474397;-.13490032;.78566241;-3.6709831;1.3601162;-.54759675;.6782971;-.84068859;.23933721;.22687043;1.5551294;-.61802644;.53535086;2.7320626;-1.5874277;1.1648203;.59712499;-2.0748582;4.7956815;2.0979788;1.9587979;2.3260581;.98903352;2.4552841;2.8211277;-.39373675;1.1589913;2.0226574;4.5792651;-.472141;3.2401428;2.5561299;2.6058528;3.2606065;3.58009;-.098426282;-1.62927;.78053528;2.9747293;1.2841886;4.8269334;3.7505529;3.1785321;.92286831;2.644191;2.700897;1.6142219;.14092064;2.5360565;-.42710462;1.5229224;6.1402187;2.8000216;4.1686368;2.8370337;-.88111532;3.878962;3.1500423;1.9203422;2.252939;.49195775;-1.2760383;2.3708425;3.5117965;5.6987071;1.4746445;2.4164422;.29751045;1.3813952;.83199131;.87702757;1.5455058;-.19581886;-.14996733;.84530854;.81526232;-.3728728;-1.1514223;.27236107;1.0190784;2.2671137;-.4113;-1.2061006;1.3801727;.70776534;-1.2402401;3.0346825;1.3443099;.80380309;-1.4566666;-.63860971;-3.7373617;-1.0834669;-.024805179;-.14480908;.79482228;-1.2835773;.55557895;-.26085407;-.37722206;-.28843167;.67054552;1.9364772;-2.2689874;1.1522591;-.51965511;.081237406;-.24158086;.15653846;-.28669325;2.9359803;-.09375786;-.42488384;1.7628582;-.84693164;-.36697942;-.17866889;-1.5183899;4.7988157;2.517657;-1.0024388;2.3280933;.80131;.80037427;2.3020046;-.081201367;-.81242484;2.411968;1.4456538;.0052512176;2.761523;.1138789;.66638553;2.4493923;1.9652259;-.90033406;-.97391731;-.095744073;-.01031381;-1.6204956;4.0687528;2.2650676;2.3413548;1.2007198;-.04527238;.51393747;1.7549974;.86584038;2.0436072;-.18099581;-.0053746784;3.243711;2.4829161;3.1983044;1.7049036;-1.2255545;1.8845419;2.0559416;1.5531808;.52146012;1.1135687;-1.2692027;3.4302485;3.3420999;4.457005;1.9427663;1.7507372;1.478858;58.882099 +-.75640601;-.48215568;-.029578783;.33853498;-1.0452203;-1.6816628;-1.3480582;1.019197;1.1155564;.32329628;.79989779;-.048565231;.21249624;1.8148062;.36019939;-2.1505785;.1982599;-.051996134;.90299958;-.88075322;1.041504;1.0017273;.53117132;-.91603118;-1.4881411;.47987655;-.056325309;1.421371;-.79332256;-.14888668;-.77777869;-.15161195;1.5190753;-.7340169;.098637022;-.67846888;.79051113;-.5940333;-.0017672387;-.70172983;.71684742;-1.2963738;-.46931428;-1.1665561;.60032171;-.70929289;1.2806035;-.71098232;-.05010489;-.034950923;2.6714396;6.1158676;3.2302592;.21032819;4.3570628;.22185868;3.1406226;4.3650622;3.8318605;-.41237992;1.3682597;-.42822331;-.75763339;1.3085324;.59858561;3.1780896;5.5355778;1.884106;2.1503654;2.6277888;2.8294158;-.73032212;2.4434683;3.7384081;-1.0735826;2.6183681;1.8111534;-.8874383;-.97753406;2.0399137;4.9323812;4.0295453;-1.8286639;-.073812455;.045502771;2.5440893;-2.0557172;1.624808;4.8154984;4.0177217;5.588819;1.4951626;3.6797497;1.2878916;5.0204215;-2.247952;1.8602773;.74907094;1.6554195;4.3504133;-.72104442;.35507897;1.6219767;.96382022;-.47691613;-1.5349287;-.64836037;.83990997;1.4806902;.68597817;2.2371826;-1.2301069;-.78881377;2.2356641;-.94173008;-.34822863;.56207913;-.099368289;1.0606251;-1.6614077;1.6456521;-.22997691;-.22476594;-.00080281345;-.28317302;-.43442434;-.92880028;2.2603478;-.39652699;-.64624459;-.095159844;-1.3034483;.78852129;-.98538435;1.1899731;-1.2397074;1.1850076;-.47926608;-.85321957;.33972847;1.4556793;-1.227545;-1.0640333;-2.0740278;-1.253884;-2.8201158;-.70786315;-1.0470099;.62774754;1.3139434;3.8738921;3.6416538;1.8534355;-1.0370424;4.3475499;.82564121;2.0062408;3.0443521;2.3403952;-.81138551;.47819331;-.21266128;.72617596;-.5825609;.94467843;2.0781581;2.8994243;1.0652983;2.6045682;2.4421234;1.2799127;-.76474035;1.2159864;2.8728848;.10216989;2.8042698;.60480016;-.89259285;-2.2995553;2.3662751;2.0596435;3.0303726;-1.1881101;2.4860024;.33983091;.88817573;-.57624024;1.670898;3.2237868;3.9599085;5.0175014;.69630891;3.8885553;2.5828433;4.0392046;-2.0858881;.78261209;-.22120266;1.4980228;3.8039391;46.725578 +-.58160239;.91215843;-.32707381;-2.2391863;1.6100805;.25710297;-1.3984795;-.28682458;.58397299;1.3896492;.26667818;-.46458399;.85769665;-.22085893;-.88907748;-1.6888462;.50328225;.29370874;-.10999276;1.4274596;.81698072;1.7925421;1.1535516;-.34846881;.95938319;1.1703736;.020460678;1.1087699;1.9631357;-1.0522861;.10678806;.087200247;-.87031031;.49808908;-.14116228;1.5015739;.94779664;-.23490337;.080358312;-.46762854;.19918756;.72630662;.56639898;.11588007;-.43199831;-.41186374;-1.458905;-1.8670881;-1.2608459;-.073525295;4.8390536;.31170967;-.67599058;.41848472;4.8549285;3.3572326;2.4399402;1.1081122;-2.6275377;8.3950291;3.6940916;.21570054;3.4003394;2.6720252;2.2848802;-.091686755;2.5686541;2.3098316;.8584975;1.5410309;1.360509;4.0447612;2.9632268;2.9784431;2.1964662;-.75345349;3.2732882;1.8133072;-1.3389362;2.4004481;1.1664419;1.0859336;-1.2244992;1.4624132;4.2431202;3.0170271;4.3073483;-1.6679012;-1.3766387;-2.4527142;-.15073498;.71111047;4.998848;.048976116;2.9909286;4.122354;2.7413752;.57801276;6.2928281;3.7741005;.24555072;2.5442727;.20082603;-2.1919446;.37669709;-.96088725;-.10953278;.53059477;.90549397;.29023659;-1.6736195;-.87835544;-.024286937;-.23989989;-.18935782;.013121081;.093733959;-2.0274456;-.591896;.58379745;1.3945936;1.0454009;-.46467304;-.34234762;.95545059;.20629905;.3592554;.33026689;2.06411;.36944997;-1.5684037;-1.245011;-.088400081;1.7313857;-.50880134;1.4905353;.27575129;-.19084604;-1.3314909;.020585585;-.91401547;1.8358482;-.081541307;.12214857;-1.2088684;-.24944516;-1.9102863;-1.3042525;-.2900098;1.1473957;3.8901606;.90566009;-.96642667;-.79937083;3.1238258;1.1169604;.54125327;1.3075199;-2.4044785;5.3143311;2.5925012;.21746187;2.5605469;1.0565919;2.0423326;.23203239;3.2677238;.68107361;.83426356;.4757809;2.4910638;2.0388331;1.8983825;2.2250581;.87876278;-.85526097;1.7800405;.88213474;1.4679677;1.8807762;-.52272969;.21130665;-.70561057;2.0969391;3.8810523;.83373547;3.0478506;-1.5809834;-2.1647842;-3.0713634;.94419581;.21896374;3.5560994;.31048614;2.6268022;3.9266777;.22740798;2.257761;5.2392859;1.8864384;53.824966 +-.76993692;.78707874;-.69576669;.98895407;-1.354347;-1.0466015;-.91924202;.32771367;-1.3853774;.18221129;-2.0844021;-.69998634;-.53914607;.7659021;-.92091388;-.14951128;.45638859;.18740951;-.16069147;-.84861732;-.40856698;.65976799;1.915453;-.2257445;-.18409379;.94655156;-.57193339;-.22507186;-.68660516;.35726088;2.891283;-.7831341;.21927503;.033146348;-.39096788;-.19008718;.99419224;.30652931;1.6385453;.64795911;-.5704636;-.38424435;.47172669;2.3804803;-.63418806;-1.3872089;-1.4663862;.34164903;.080639578;.6250037;2.5581627;2.7224503;2.6580057;3.4734273;3.2137389;-.28669047;3.1838291;1.6295289;.19188718;5.1737065;.018749051;-.76821446;-.038684644;-.4582704;1.4524196;2.3311229;1.8149452;1.1080886;.0078652296;1.3503151;2.8378894;5.3697014;1.4176619;1.342501;-.040222038;.043705132;-.089683376;-1.4753437;1.4006029;3.9486854;2.0903504;1.5155498;.5775426;3.1343098;2.0753746;3.499871;2.0535097;2.4470263;3.9316561;4.2439795;2.036675;3.2569306;.62975621;1.6389775;1.7158339;1.8496003;1.4643234;4.2083154;2.4959207;1.6900015;-1.2453011;3.334034;1.0594321;.18597409;-.58297056;-1.163247;-1.1831524;.4248938;-.38420147;-.81477839;.67464417;-.61960208;-.091811143;-1.3476807;-1.0153711;.29873082;1.3889945;-.60347736;-.65619624;.96684921;-1.1218712;1.3818086;.96662056;.47547227;-.52833813;1.7549075;-1.3227335;-1.4580708;.065059356;1.2525667;1.9661323;-1.2790402;1.397709;1.0001373;.89685345;.94871068;.9954654;-.26492685;1.6700723;.59878874;-1.4582419;-.30092648;-.68324167;1.1355491;-2.8855383;-.45195165;1.1304705;2.3466327;.17896853;.98186535;2.1485672;.82528824;2.9191353;.38285124;3.0435956;.82101649;4.327271;1.2729194;-.75842816;4.4683232;-2.0859087;.46652633;1.8348303;-1.6794349;1.5160288;2.5930932;1.8431678;.11212883;-1.4201138;1.5313848;2.3055048;5.1497087;.96139103;.16926514;-.47650403;.0022338368;-.17455861;-.11022203;1.6702447;2.2655087;.83396494;1.647128;-.001516738;4.229526;1.5798504;3.1539714;.53406078;1.2374673;3.0050082;3.4263854;.50255632;2.3669765;-.20999467;1.1462327;1.6819245;2.8855395;-.02288927;.92161047;2.6981466;1.7816894;37.598198 +-.65998417;.11936434;-.9108274;1.5607703;-.79669195;-.77151191;.046209227;.81233633;-1.3513013;-.5635404;-1.035822;-.10963515;-.70646161;.64953023;-.71643919;-.21105409;1.6965115;-.3225902;.28123972;-.59799057;.31878725;-.42833686;-.38610503;.60727465;-1.024081;1.8938972;1.6762184;.37103087;-1.06144;-.71921533;-.74547476;1.3137639;.94543147;-.52461058;-.40972993;.72434366;-.38410339;1.5494393;.42871362;-1.6972234;.33378392;-.43721715;.47972494;1.3167711;-.9530887;-1.4870187;-.44392949;-.017875655;-.056145713;-1.0721571;-.33763477;1.4746013;.036541697;1.3737925;1.1960152;2.9683135;2.2567806;-1.4026814;-.36238009;4.1418414;2.2470646;4.1021142;2.0562742;-1.0344007;5.4854102;2.5893915;1.4974167;.82311511;4.0284901;5.7550159;5.1063147;.33550826;1.2274314;.078537822;2.4277489;.60003346;3.6566188;1.5666041;1.8581892;3.5217721;3.7059619;2.7893279;4.3635626;6.6533079;3.7361209;-.83301556;3.4382107;4.6916747;-.90285319;1.3023342;4.9319353;.064584687;4.8064232;3.8321395;3.6993814;2.5670931;2.8305187;2.9221332;2.6832418;2.7427518;-.58537012;-.82003266;-.26269561;.93040466;-.094697073;-1.1352918;.57497954;-.39178166;-.63946646;1.1975327;-1.1406151;1.472106;-1.900944;-.3338626;-.70231062;.48051748;2.5962195;-.42923895;.73355556;-.10905759;1.4468358;-1.569712;-1.6877847;-.17073058;-.90089971;.23532516;-.071111828;.81327593;.60582334;-.16875206;-2.9882145;1.0695142;1.4610773;-1.7475374;.48233652;1.517622;-.41507441;.28672889;-1.050784;-1.1699052;1.8532165;1.4208641;.863208;.49298367;-.59957695;-1.4255815;-1.6258017;.025104888;.68230939;-2.2085693;-.51177496;2.2895374;.55009037;2.5649371;-.17207244;1.6023817;-.61478728;-.59094018;-.53321165;1.3640795;1.9275955;.97521299;1.5211301;-1.6927518;4.1800671;2.8149722;2.3170316;2.1252019;1.7688069;3.4105875;3.1174841;-.52976948;1.4179075;-.54944247;2.5361869;.18496723;2.4257934;.51118726;.85401726;4.097127;3.8859127;.66282308;3.1805861;4.8720827;2.9616899;1.2191937;3.0377309;4.7317314;-1.6638106;1.9555557;6.3384533;-.056181207;1.6188941;2.1678488;2.5029311;1.3253556;.36854836;1.4717357;2.1620522;1.06733;56.627842 +1.3134809;1.9276497;-.036430608;-1.4339517;-.24625333;.86889619;.56841695;.10362564;-1.97458;1.4022992;.36489579;-.051400907;-.85245699;-1.3248887;.52807629;-.06639798;1.6327739;1.0793692;-.86162132;.41360444;.37494183;-.36507165;-.062766008;1.0389656;-1.6455895;-.83259404;1.1163069;.45896652;-.67716235;-.64066541;1.0021135;.49794072;-.94763309;.45625278;-.058506511;-1.8447242;-.66647357;-1.4951652;-.39291957;-.41296542;.067606941;-.3160404;.48938918;-.24673274;-.37028608;-1.2000095;.38086239;-1.5191231;.26840806;-1.1990395;1.8320113;1.0824404;-.28511256;2.9883454;4.4762282;2.8751285;1.7685517;-1.3485245;.72956473;1.7063615;5.2767272;-1.0758957;3.4033868;1.0834399;2.4545624;-.8768723;3.2643125;6.4365678;2.6203792;2.6015029;.19220856;3.3871181;2.6303692;.31172472;.63109326;5.8409281;3.7642269;.7145654;2.6726549;-3.9333425;.42749918;-.094442129;-1.641723;4.1475496;4.0245056;6.6128669;1.3701621;1.5498285;2.2356985;3.7514844;2.4191968;4.864409;.94578332;1.4238709;-5.3734441;2.2446928;6.5724344;.54059929;.3145965;3.3776193;3.2574279;.54367489;.080854595;-1.8338006;-.9826712;1.1513438;-1.489535;.18937074;-1.4872073;-1.2696819;1.2219503;-1.4367934;.36675471;-.31525388;-.1404735;.33682701;.26425046;1.7480028;.039664689;-.0032404889;-.33194849;.20318308;1.5474392;-.92478079;-.73998839;.36005881;.37871221;-.030276291;-.64528555;-.33197206;.95813245;.22827223;-.21238582;1.6133324;-.61982447;-.7425676;-1.9820445;-.13753664;.64153183;-.34823951;1.5650302;-.99094194;-.11594614;-.075297467;.092137761;-.97352815;1.1710702;-1.5803003;.63772744;-.78299189;.28248763;-.3631109;.42214021;3.0304575;5.2239165;2.4880025;1.0575262;-1.7715087;.37948236;.86053449;4.8374639;-.62550104;1.9389274;1.2110534;.34729668;-.78491038;2.221144;5.5603051;3.4924512;.70610344;-.10782374;3.8429983;2.2902532;1.3574542;-1.1247287;4.6008677;1.3346106;.26772922;3.1576996;-2.6084819;1.3255014;.54977149;.26522398;4.7811151;2.0444667;4.9083934;.26417041;.96034282;2.6573167;1.7223567;3.0474238;2.3580191;.47047529;.71695983;-5.9629693;1.6537948;6.0451703;-.9690811;-.57566434;3.4499676;45.781998 +2.1049347;-1.1317524;-.29511902;-.33128712;.31784895;.06389492;.88143569;.68662167;-1.0995678;.63408154;.020484988;.77968532;.042581562;-.85642117;-.13534325;-.85369211;-.35416016;-.11009546;-.073412143;-.7926783;-.24218981;-.44352514;1.4992068;1.1356499;.2178818;.062003668;-.074293405;-1.6034589;-1.0077001;.85698181;.081446812;-2.7350912;.30782497;1.6387627;2.7833328;1.0049338;-1.0726625;-.56470317;1.5634364;.49676085;.64820015;-.9223088;.77403688;.08958862;-.11438521;.30844223;1.5451088;.47955129;.040381424;-.34844989;-1.6153286;.2440737;1.9757181;5.6128049;4.4082751;-.13520084;4.8805528;1.825241;2.7423763;1.7050502;2.1647043;1.2388253;2.0167105;-.20053016;2.5987024;-1.4239384;.71148598;1.4658954;-1.3083121;-.71234959;4.2837901;-2.051827;3.9192519;.8811239;4.1882782;1.5312272;-.41881546;4.725286;3.9417155;1.0929586;-.38034496;-1.1434586;-.098888703;.18289015;2.9065189;.85770893;1.4725587;3.2583609;3.9396017;1.787905;3.7461421;2.7189395;1.756291;.83049321;3.2433424;.99963546;-.61378491;2.9519475;.14592403;.81613302;2.0792358;-1.2966235;.98734277;.30844414;1.2943523;-.19176014;2.0133324;1.6672387;-.44368416;.46692458;1.6772597;1.9706626;.8057512;-.74282616;-1.0025555;.067788191;-1.5862466;.40787414;-1.6727864;-.36379701;-1.6445304;1.9684035;1.2619375;-.30824336;1.4771036;-.1313356;-.28026253;-.30924278;-1.4133067;-.30415136;-.19920085;-1.8682508;.73019433;1.9790905;3.3407147;.83235466;.070509695;-1.2436444;2.2730408;-.017307587;1.3805797;-1.9023242;-1.1264108;-.49648377;-.28238761;-1.3838407;.86093301;.26282877;1.1646811;-.96498936;-1.0466775;-1.6120764;-.14547096;5.041678;3.2868493;2.1330304;2.9778905;1.9209998;4.5096316;1.0725965;1.1169684;2.1458564;2.1394949;.39343023;1.4169253;-2.9786267;.98705328;.16350508;-.048995722;-1.5396003;4.071702;-2.0235138;2.6499343;-2.4080746;4.2648058;.45484114;-.66152436;3.2761164;2.3739846;2.0667639;-.49226829;-1.1935503;-.13888495;-1.0455037;2.7346034;.61991084;.14170226;.94380862;3.0888159;2.6226652;2.3075628;1.6090765;2.422123;.3095836;1.0906619;-.086589575;1.6495955;2.7409651;1.7374941;.41437054;37.340675 +-2.2323787;-.20264271;-1.5959721;-.6817714;-.70169353;-1.2332203;-1.2703528;-.48969701;1.2370574;-.018382184;-1.4776874;-.56994557;-2.0388134;-.24426062;-1.0977194;-.027769448;-.96159816;-1.5025413;.021321163;1.5348397;1.0762576;.28700536;-.46597162;-.8038761;-.23380417;1.5897125;1.4471118;.043936957;.37413445;.6461919;-.29775277;.87775153;1.3733985;-1.5453002;.71901661;.26103365;.29174414;-.44500726;1.4930264;.34167174;-.22854312;-.93936676;-.17803887;-.67242521;-.78967577;.50744069;.50494796;1.9406658;.37597734;.032561198;3.6762397;.58041602;2.029752;3.5845709;2.6728613;.35639375;2.8147044;4.4357495;2.6077688;.87285882;1.8446563;1.643997;.87121058;4.1704898;-1.0571535;3.6443784;.95995826;3.4315009;1.3483192;-.51060212;1.3521473;.12276534;-.44890225;3.0322049;1.0601588;1.0494233;-.67204827;-.92332226;4.1064377;.52947152;-1.0080811;2.5622418;3.5023203;.88782388;.5236519;4.1711531;3.2756879;4.781157;4.9876938;1.7058492;.98289877;.1427865;1.9009033;2.4547291;1.1963862;4.8073516;1.442028;3.2025018;-1.3290808;1.2827512;-1.019908;1.6368151;-.42477867;-1.2384195;-2.9393084;-1.1728761;-.62647945;.80103087;-.52460313;-.20243278;-.82655919;.44996008;-2.4520123;-1.8964233;-.86747372;-.7321831;-.28075236;-1.239248;-.71462423;-.37339857;1.4250408;-.76541346;-.62034279;1.1967728;-.89217591;1.1932927;2.6014879;-1.6581486;-.31791106;-.34893852;.39956287;-.56588805;2.3555882;-1.4878237;.74690598;.63879222;.50498635;-1.0360301;1.6861688;.34152642;1.1618365;1.864136;.77574277;-.95951039;-.48283491;-1.7676978;.14615674;.67351508;.25434658;.21841834;2.268559;.078352205;1.8102244;1.7064624;1.896139;.86106455;.88289976;4.2708898;1.8890392;.43630031;3.1455667;1.2048166;2.3244345;3.4808977;1.1818938;2.0748913;1.1969013;3.6505721;1.264618;-1.4230084;.50192869;.25950083;-.26448131;.54459381;.14621563;-.23894334;-1.2502604;-1.1333729;2.2546117;.13300982;-.89207244;1.4647529;2.8249197;.98949546;.34663379;2.7586713;1.0859364;3.1028786;2.5874505;2.0396082;.50554645;.26910794;1.9586744;1.6771804;.49748507;3.7543077;-.24537566;2.5098224;-.76160395;2.0187771;49.550259 +.73283285;-.10095284;-.16196938;.21351929;-.63835919;-.17980283;-.99496293;.20021616;-.21606645;1.7101738;2.3154953;-1.8143998;-.93673456;1.0026797;-.26505554;-.21160935;-.39418551;1.0133989;.16686283;.55370623;-.31401417;1.1355952;.72858924;1.0473118;-.88067329;1.1990632;.1345221;.54749948;-.076680489;-1.4928333;-1.8827397;-1.0729764;.64315444;.11313283;-.30359912;1.0341527;1.2613175;.60339862;.1847835;.30901983;-.57529706;-.064639911;.65227664;.19696823;.13061014;-.57888067;-1.5735621;-.49831834;.69950879;1.5584546;.14660193;3.2141049;-1.0962905;1.3126552;1.0839608;1.8928642;1.6506729;.47955436;4.6790504;1.2718797;.22920175;1.4827532;1.5928051;5.6666727;.98611534;.076182947;-.91188991;-.86458898;3.0405107;-.32986704;5.6965389;3.8939528;1.1488062;5.519351;4.1404448;.77054226;2.2534885;.68343914;1.2383887;.047131278;.49950755;1.7226199;3.5680792;-.68376595;-.70027488;1.644147;1.3703723;2.2418149;3.026186;.70471418;2.0510175;1.7714179;-.64566141;2.3900688;.62109411;2.0287333;2.2396417;-.73666203;.4393909;2.8163617;-.36757556;1.7135904;.84979284;.636114;-.026794007;.64563113;-.83551979;.06626337;.24965577;1.9546897;1.8570042;-.70218456;-1.244202;2.2032459;-2.4276984;-1.3815961;-.086081989;.89971775;.62079811;-1.0298166;-1.8698423;1.5619634;1.4923053;1.6851825;-.42384014;1.8186238;-.52497232;-1.5881349;-.81322509;-.73647058;-2.2332594;-1.4522867;-.44697016;-.55584723;-1.4639583;1.339975;.70318246;.94027954;-1.4213216;.8202886;.021897357;.69711357;.9044401;-.44184157;.12484764;-.16469042;-2.9683623;.23227048;.6691581;.75117797;-1.5173308;3.0555162;1.1401292;-1.1024137;1.4351352;1.6193585;.89244753;-1.9128125;4.7307558;-.1054345;-.91064042;1.1450195;.62182689;5.2941222;1.759743;-.89007109;-1.4708685;-.81923646;1.3052064;.70944673;5.1326013;3.8601043;.18992074;5.3260269;2.7728939;-.69448519;1.0388221;.90003431;.59712803;-2.2452745;-1.0479444;1.1053649;2.6164136;.27065724;.79921597;1.0029796;1.2878208;1.8274056;1.4863693;1.6409868;1.5713145;1.0948505;-.23027477;2.0494933;1.2585945;1.567917;3.8010323;1.2783895;-.81593245;2.2316613;51.936317 diff --git a/lectures/programming/solutions/Problem_10_Complex_Words.py b/lectures/programming/solutions/Problem_10_Complex_Words.py new file mode 100644 index 0000000..42648bf --- /dev/null +++ b/lectures/programming/solutions/Problem_10_Complex_Words.py @@ -0,0 +1,76 @@ +# -*- coding: utf-8 -*- +""" +Created on Wed Apr 13 22:43:32 2016 + +@author: Alexander Hillert, Goethe University Frankfurt +""" + +import re + +directory="C:/Lehre/Textual Analysis/Programming/Files/" + +# Open the dictionary +file_word_list=open(directory+'Complex_Words.txt','r',encoding="utf-8") +word_list=file_word_list.read() +word_list=word_list.lower() +complex_words=word_list.split() + +# Open the csv file containing the list of the 200 10-Ks +input_file=open(directory+'10-K_Sample_2011Q1_Input.csv','r',encoding="utf-8") +input_text=input_file.read() + +# Create output file +output_file=open(directory+'10-K_Sample_2011Q1_Output_Complex_Tone.csv','w',encoding="utf-8") +output_file.write('CIK;Filename;Number_Words;Number_Complex_Words;Percent_Complex_Words\n') + +# Split the input file in separate lines +input_text_line=input_text.split("\n") + +# In general, there can be empty lines in the input file. The following command +# deletes these lines. +while input_text_line.count("")>0: + input_text_line.remove("") + +# Loop over all lines +for i in range(1,len(input_text_line)): + print(str(i)) + # split the line into the two variables + variables=input_text_line[i].split(";") + # We need the CIK and the filename + cik=variables[0] + filename=variables[1] + filename=filename.replace('.txt','') + + # Open the ith 10-K in the list + input_file_10_k=open(directory+'10-K_Sample/'+cik+"_"+filename+'_clean.txt','r',\ + encoding='ascii',errors='ignore') + input_text_10_k=input_file_10_k.read() + + # Use lower case letters + text=input_text_10_k.lower() + + # Split the text in words to determine the total number of words + list_of_words=re.split('\W{1,}', text) + # to make sure that empty list elements do not bias the word count, we delete them. + while list_of_words.count("")>0: + list_of_words.remove("") + + # Determine total number of words + word_count=len(list_of_words) + + # Reset the number of complex words to zero + complex_count=0 + # For each complex word, count the number of occurrences + for i in range(len(complex_words)): + complex_count=complex_count+list_of_words.count(complex_words[i]) + + # Write cik, file name, total number of words, and number of complex words to output file + output_file.write(cik+';'+filename+'_clean.txt;'+str(word_count)+';'\ + +str(complex_count)+';'+str(complex_count/word_count)+'\n') + + # Close filings + input_file_10_k.close() + +print("Finished") +output_file.close() +input_file.close() \ No newline at end of file diff --git a/lectures/programming/solutions/Problem_11_determine_file_size.py b/lectures/programming/solutions/Problem_11_determine_file_size.py new file mode 100644 index 0000000..bd81486 --- /dev/null +++ b/lectures/programming/solutions/Problem_11_determine_file_size.py @@ -0,0 +1,53 @@ +# -*- coding: utf-8 -*- +""" +Created on Wed Jul 29 11:07:10 2015 + + +@author: Alexander Hillert, Goethe University Frankfurt +""" + +# To determine file size we need the OS package +import os + +directory="C:/Lehre/Textual Analysis/Programming/Files/" + +# Open the csv file containing the list of the 200 10-Ks +input_file=open(directory+'10-K_Sample_2011Q1_Input.csv','r',encoding="utf-8") +input_text=input_file.read() + +# Create output file +output_file=open(directory+'10-K_Sample_2011Q1_File_Size.csv','w',encoding="utf-8") +output_file.write('CIK;Filename;File_size_gross;File_size_net\n') + +# Split the input file in separate lines +input_text_line=input_text.split("\n") + +# In general, there can be empty lines in the input file. The following command +# deletes these lines. +while input_text_line.count("")>0: + input_text_line.remove("") + +# Loop over all lines +for i in range(1,len(input_text_line)): + print(str(i)) + # split the line into the two variables + variables=input_text_line[i].split(";") + # We need the CIK and the filename + cik=variables[0] + filename=variables[1] + filename=filename.replace('.txt','') + + # File size of the complete submission file (gross file size) + # You have to divide the result by 1024 to get the size in kilobyte + # The file size will be affected by html code and exhibits. + size_gross=os.path.getsize(directory+'10-K_Sample/'+cik+"_"+filename+'.txt')/1024 + + # File size of the main text file (net file size) + # You have to divide the result by 1024 to get the size in kilobyte + size_net=os.path.getsize(directory+'10-K_Sample/'+cik+"_"+filename+'_clean.txt')/1024 + + output_file.write(cik+';'+filename+';'+str(size_gross)+';'+str(size_net)+'\n') + +print("Finished") +output_file.close() +input_file.close() diff --git a/lectures/programming/solutions/Problem_12_Most_Frequent_Words.py b/lectures/programming/solutions/Problem_12_Most_Frequent_Words.py new file mode 100644 index 0000000..d70e036 --- /dev/null +++ b/lectures/programming/solutions/Problem_12_Most_Frequent_Words.py @@ -0,0 +1,167 @@ +# -*- coding: utf-8 -*- +""" +Created on Tue Jul 11 09:19:54 2017 + +@author: Alexander Hillert, Goethe University Frankfurt +""" + +# We need regular expressions and counters (->collections) +import re +import collections +# for the bigram part, the sentence tokenizer is helpful +from nltk.tokenize import sent_tokenize + +directory="C:/Lehre/Textual Analysis/Programming/Files/" + +# Open the csv file containing the list of the 10-Ks from MSFT, KO, and 3M. +input_file=open(directory+'list_10-K_filings_textual_similarity.csv','r',encoding="utf-8") +input_text=input_file.read() + +# Split the input file in separate lines +input_text_line=input_text.split("\n") + +# In general, there can be empty lines in the input file. The following command +# deletes these lines. +while input_text_line.count("")>0: + input_text_line.remove("") + +# Create an empty counter variable +words_counter=collections.Counter() +# variable is needed only for an alternative solution +words_counter1=collections.Counter() + +# counter for the extra task +bigram_counter=collections.Counter() + + +# Loop over all lines +for i in range(1,len(input_text_line)): + print(str(i)) + # split the line into the eight variables + variables=input_text_line[i].split(";") + # We need the CIK (1st column) and the filename (8th column) + cik=variables[0] + filename_parts=re.split('/',variables[7]) + filename=filename_parts[3].replace('.txt','') + + # Open the ith 10-K in the list; remember to specify the encoding + # The files are available in the zip file "10-K_Textual_Similarity_edited.zip". + input_file_10_k=open(directory+'10-K_Textual_Similarity/'+cik+'_'+\ + filename+'_edited.txt', 'r', encoding='ascii', errors='ignore') + # if the command above does not work (error like "file not found" or "directory not found") + # please use the following command: + #input_file_10_k=open(directory+'10-K_Textual_Similarity_edited/'+cik+'_'+filename+'_edited.txt','r',encoding='ascii',errors='ignore') + + # read the content from the file + input_text_10_k=input_file_10_k.read() + + # use lower case only so that it does not matter whether a word is at + # the beginning of a sentence ("The") or within a sentence ("the"). + # Please note that this can be problematic, e.g. "US" -> United States vs. + # us (personal pronoun) + input_text_10_k_lower=input_text_10_k.lower() + + # Split text into words + list_of_words=re.split('\W{1,}',input_text_10_k_lower) + # There can be empty ("") list elements -> remove them + while list_of_words.count("")>0: + list_of_words.remove("") + + # optional commands to remove words that only contain "_" + ''' + for word in list_of_words: + if re.sub("[a-zA-Z]","",word)!="": + #if word.count("_")>0: + list_of_words.remove(word) + ''' + + # Add the words to our counter + words_counter=words_counter+collections.Counter(list_of_words) + # alternative solution + words_counter1.update(list_of_words) + + + ############################################# + # optional part for the extra task on bigrams + ############################################# + + # create an empty list for the bigrams + bigram_list=[] + + # split the text into sentences + list_of_sentences=sent_tokenize(input_text_10_k) + + # create the BIGRAM IN EACH SENTENCE + for sentence in list_of_sentences: + + # make the sentence lower case + sentence_lower=sentence.lower() + + # split the sentence into words + list_of_words=re.split("\W{1,}",sentence_lower) + + # remove empty elements + while list_of_words.count("")>0: + list_of_words.remove("") + + #print("these are the words of the sentence:\n"+str(list_of_words)) + + # go over all potential two word combinations in the sentence. + for word_number in range(0,len(list_of_words)-1): + bigram_list.append(list_of_words[word_number]+' '+list_of_words[word_number+1]) + + bigram_counter=bigram_counter+collections.Counter(bigram_list) + # end of extra task + + + # Close the 10-K filing + input_file_10_k.close() + +input_file.close() + +###################### +# Top 100 single words +###################### +# Open the csv file containing the 100 most frequently used words +output_file=open(directory+'Problem_12_100_most_frequent_words.csv','w',encoding="utf-8") +output_file.write("rank;word;count\n") + +# Get the 100 most frequent words +top_100_words=words_counter.most_common(100) +# for the alternative solution +#top_100_words=words_counter1.most_common(100) + +# Write the 100 most frequent words to the csv file. +# Remember Python starts counting at 0, while humans start at 1. +# So, the most frequent words (rank 1 in human counting) is element 0 for Python. +# Consequently, to get a consistent table, we must use the value i for the rank +# but call the element i-1. +for i in range(1,101): + output_file.write(str(i)+";"+str(top_100_words[i-1][0])+";"+\ + str(top_100_words[i-1][1])+"\n") + +# Close the csv file +output_file.close() + + +###################### +# Extra task +# Top 100 bigrams +###################### +# Open the csv file containing the 100 most frequently used BIGRAMS +output_file_bigram=open(directory+'Problem_12_100_most_frequent_bigrams.csv','w',encoding="utf-8") +output_file_bigram.write("rank;word;count\n") + +# Get the 100 most frequent words +top_100_bigrams=bigram_counter.most_common(100) + +# Write the 100 most frequent bigrams to the csv file -> same approach as for the single words. +for i in range(1,101): + output_file_bigram.write(str(i)+";"+str(top_100_bigrams[i-1][0])+";"+\ + str(top_100_bigrams[i-1][1])+"\n") + +# Close the csv file +output_file_bigram.close() + + +print("Task done!") diff --git a/lectures/programming/solutions/Problem_13_Stemming.py b/lectures/programming/solutions/Problem_13_Stemming.py new file mode 100644 index 0000000..744d3bd --- /dev/null +++ b/lectures/programming/solutions/Problem_13_Stemming.py @@ -0,0 +1,96 @@ +# -*- coding: utf-8 -*- +""" +Created on Wed Jul 29 11:07:10 2015 + +@author: Alexander Hillert, Goethe University Frankfurt +""" + +# We need regular epressions, tokenize (to identify words), and stemming. +import re +from nltk.tokenize import word_tokenize +from nltk.stem import PorterStemmer + + +directory="C:/Lehre/Textual Analysis/Programming/Files/" + +# Open the csv file containing the list of the 10-Ks from MSFT, KO, and 3M. +input_file=open(directory+'list_10-K_filings_textual_similarity.csv','r',encoding="utf-8") +input_text=input_file.read() + +# Split the Input File in separate lines +input_text_line=input_text.split("\n") + +# In general, there can be empty lines in the input file. The following command +# deletes these lines. +while input_text_line.count("")>0: + input_text_line.remove("") + +# Loop over all lines +#for i in range(1,len(input_text_line)): +# for illustration filings 1 to 3 only +for i in range(1,4): + print(str(i)) + # split the line into the eight variables + variables=input_text_line[i].split(";") + # We need the CIK (1st column) and the filename (8th column) + cik=variables[0] + filename_parts=re.split('/',variables[7]) + filename=filename_parts[3].replace('.txt','') + + # Open the ith 10-K in the list; remember to specify the encoding + input_file_10_k=open(directory+'10-K_Textual_Similarity/'+cik+'_'+filename\ + +'_edited.txt', 'r', encoding='ascii', errors='ignore') + # Get the text of the 10-K + input_text_10_k=input_file_10_k.read() + + # We need to tokenize the text because stem only works on a word by word basis. + # Stemming an entire document without splitting into words does not work! + # The problem is that \n gets lost in this process --> we cannot easily + # recreate the document. + # idea: replace \n by \n and some indicator that there was a line break. + # Here, I choose "LINEBREAKMARK" + input_text_10_k=input_text_10_k.replace("\n","\nLINEBREAKMARK ") + + # Split text into words + # There are two alternatives. + # Alternative 1 (our standard approach): + #word_list=re.split("\W{1,}",input_text_10_k.lower()) + # Alternative 2 (keeps symbols like ,;.): + word_list=word_tokenize(input_text_10_k.lower()) + + + # Stem the text + text_stemmed='' + for word in word_list: + # The following two cases are designed to improve the formatting of the + # output file. It is not needed for the subsequent analyses. + + # Case 1: 'word' is not an actual word but a symbol. -> there should + # be no whitespace between the previous words and this symbol. + # \A and \Z indicate the beginning and end of string -> the 'word' is just + # the symbol but not a combination of letters and symbols. + + if re.search("\A[\.\?!,:;']{1,}\Z",word): + text_stemmed=text_stemmed+word + # Case 2: the word is an actual word -> have a whitespace included. + else: + text_stemmed=text_stemmed+" "+PorterStemmer().stem(word) + + # The simple solution (without restoring the formatting of the text) is: + #text_stemmed=text_stemmed+" "+PorterStemmer().stem(word) + + + # To recreate the text, we need to replace the line break indicators by \n + # Because of the stemming "LINEBREAKMARK" becomes "linebreakmark". + text_stemmed=text_stemmed.replace("linebreakmark","\n") + + + # Open the output file for the stemmed text + output_file_10_k=open(directory+'10-K_Textual_Similarity/'+cik+'_'+filename\ + +'_stemmed.txt', 'w', encoding='ascii', errors='ignore') + output_file_10_k.write(text_stemmed) + output_file_10_k.close() + input_file_10_k.close() + +input_file.close() +print("Task done!") \ No newline at end of file diff --git a/lectures/programming/solutions/Problem_14_Jaccard_Similarity.py b/lectures/programming/solutions/Problem_14_Jaccard_Similarity.py new file mode 100644 index 0000000..e46b679 --- /dev/null +++ b/lectures/programming/solutions/Problem_14_Jaccard_Similarity.py @@ -0,0 +1,287 @@ +# -*- coding: utf-8 -*- +""" +Created on Wed Jul 29 11:07:10 2015 + +@author: Alexander Hillert, Goethe University Frankfurt +""" + +import re +from nltk.tokenize import word_tokenize +from nltk.corpus import stopwords +from nltk.stem import PorterStemmer +from collections import Counter + + +ps=PorterStemmer() + +directory="C:/Lehre/Textual Analysis/Programming/Files/" + +# Open the csv file containing the list of the 10-Ks from MSFT, KO, and 3M +input_file=open(directory+'list_10-K_filings_textual_similarity.csv','r',encoding="utf-8") +input_text=input_file.read() + +# Split the input file in separate lines +input_text_line=input_text.split("\n") + +# In general, there can be empty lines in the iput file. The following command +# deletes these lines +while input_text_line.count("")>0: + input_text_line.remove("") + +# Open the output csv file in which we write the similarities +output_file=open(directory+'list_10-K_filings_textual_similarity_jaccard.csv','w',encoding="utf-8") +# Write variable names to first line +output_file.write(input_text_line[0]+';Jaccard;Jaccard_own_stop_words;\ +Jaccard_NLTK_stop_words;Jaccard_stemmed;Jaccard_stemmed_own_stop_words;\ +Jaccard_stemmed_NLTK_stop_words\n') + +# Read own stop word list +# This list has been created by manually selecting words from the csv-file +# 100_most_frequent_words.csv, which is created by the Python program +# "Problem_12_Most_Frequent_Words.py". +# Simply delete words you consider to be meaningless and that are frequently +# used. +stop_word_file=open(directory+'Stop_Word_List_Alexander.csv','r',encoding="utf-8") +stop_word_text=stop_word_file.read() +stop_word_line=stop_word_text.split("\n") +stop_word_line.remove("") +own_stop_words=[""] +for i in range(1,len(stop_word_line)): + stop_word=stop_word_line[i].split(";")[1] + own_stop_words.append(stop_word) + +own_stop_words.remove("") +print("This is the list of my stop words:") +print(own_stop_words) + +# Read NLTK stop word list +NLTK_stop_words=set(stopwords.words("english")) +print("This is the list of NLTK stop words:") +print(NLTK_stop_words) + +# set default values for variables +# It is not required. However, if you don't do it Spyder will suggest that line +# jaccard_similarity=jaccard(word_list_edited,word_list_old_edited) +# is incorrect as word_list_old_edited is not yet defined at point in the program +# code. In this specific example, this will not cause an error, as we do not enter +# the if condition when i=1 -> it +word_list_old_edited=[] +word_list_edited=[] +word_list_old_NLTK_filtered="" +word_list_old_own_filtered="" +word_list_old_edited_stemmed="" +word_list_old_own_filtered_stemmed="" +word_list_old_NLTK_filtered_stemmed="" + +####################################################### +# Define a function that computes Jaccard similarity +# As we need these operations several times, it is +# helpful to use a function. +###################################################### +# beginning of the function +def jaccard(text1,text2): + counter1=Counter(text1) + counter2=Counter(text2) + + intersection=counter1 & counter2 + union=counter1 | counter2 + + return len(intersection)/len(union) +# end of the function + + +# Loop over all lines +for i in range(1,len(input_text_line)): + print(str(i)) + # split the line into the eight variables + variables=input_text_line[i].split(";") + # We need the CIK (1st column) and the filename (8th column) + cik=variables[0] + filename_parts=re.split('/',variables[7]) + filename=filename_parts[3].replace('.txt','') + + # Write the information from the input file to the output file + # we do not add a line break at the end, as we must append the similarity + # score first. + output_file.write(input_text_line[i]) + + # Open the ith 10-K; remember to specify the encoding + input_file_10_k=open(directory+'10-K_Textual_Similarity/'+cik+'_'+filename+\ + '_edited.txt', 'r', encoding='ascii', errors='ignore') + input_text_10_k=input_file_10_k.read() + + # check whether the previous entry of the list is from the same firm + permco=input_text_line[i].split(";")[1] + permco_old=input_text_line[i-1].split(";")[1] + + # Split text into words + word_list_edited=word_tokenize(input_text_10_k.lower()) + + + ############################################ + # Sub Task 1: Jaccard for the _edited.txt + ############################################ + # compute Jaccard similarity if the previous filing is from the same firm + if permco==permco_old: + # the command calls the jaccard function that we have defined above. + # in the function, text1=word_list_edited and text2=word_list_old_edited. + jaccard_similarity=jaccard(word_list_edited,word_list_old_edited) + + output_file.write(";"+str(jaccard_similarity)) + else: + # The previous filing is not from the same firm -> cannot compute Jaccard similarity + output_file.write(";") + + # Save the current word vector to a separate variable for the comparison of the next report. + word_list_old_edited=word_list_edited + + + ############################################ + # Sub Task 2: Jaccard for the _edited.txt + # AND REMOVE STOP WORDS - OWN LIST + ############################################ + # remove stop words using personal stop word list + word_list_own_filtered=[] + for word in word_list_edited: + if word not in own_stop_words: + word_list_own_filtered.append(word) + + # compute Jaccard similarity if the previous filing is from the same firm + if permco==permco_old: + jaccard_similarity=jaccard(word_list_own_filtered,\ + word_list_old_own_filtered) + + output_file.write(";"+str(jaccard_similarity)) + else: + # The previous filing is not from the same firm -> cannot compute Jaccard similarity + output_file.write(";") + + # Save the current word vector to a separate variable for the comparison of the next report. + word_list_old_own_filtered=word_list_own_filtered + + + ############################################ + # Sub Task 3: Jaccard for the _edited_v1.txt + # AND REMOVE STOP WORDS - NLTK LIST + ############################################ + # remove stop words using NLTK stop word list + word_list_NLTK_filtered=[] + for word in word_list_edited: + if word not in NLTK_stop_words: + word_list_NLTK_filtered.append(word) + + # compute Jaccard similarity if the previous filing is from the same firm + if permco==permco_old: + jaccard_similarity=jaccard(word_list_NLTK_filtered,\ + word_list_old_NLTK_filtered) + + output_file.write(";"+str(jaccard_similarity)) + else: + # The previous filing is not from the same firm -> cannot compute Jaccard similarity + output_file.write(";") + + # Save the current word vector to a separate variable for the comparison of the next report. + word_list_old_NLTK_filtered=word_list_NLTK_filtered + + + ############################################ + # Sub Task 4: Jaccard for the _stemmed.txt + ############################################ + # Create stemmed text + word_list_edited_stemmed=[] + for word in word_list_edited: + word_list_edited_stemmed.append(ps.stem(word)) + + # compute Jaccard similarity if the previous filing is from the same firm + if permco==permco_old: + jaccard_similarity=jaccard(word_list_edited_stemmed,word_list_old_edited_stemmed) + + output_file.write(";"+str(jaccard_similarity)) + else: + # The previous filing is not from the same firm -> cannot compute Jaccard similarity + output_file.write(";") + + # Save the current word vector to a separate variable for the comparison of the next report. + word_list_old_edited_stemmed=word_list_edited_stemmed + + + ############################################ + # Sub Task 5: Jaccard for the _stemmed.txt + # AND REMOVE STOP WORDS - OWN LIST + ############################################ + # Caution; in general, it is not clear whether you should first stem or + # first remove stop words. + # However, in this specific case, you should remove the stop words first + # and then stem, as your stop word list is based on the inflected text. + + # remove stop words using personal stop word list + word_list_own_filtered=[] + for word in word_list_edited: + if word not in own_stop_words: + word_list_own_filtered.append(word) + + # Create stemmed text + word_list_own_filtered_stemmed=[] + for word in word_list_own_filtered: + word_list_own_filtered_stemmed.append(ps.stem(word)) + + # compute Jaccard similarity if the previous filing is from the same firm + if permco==permco_old: + jaccard_similarity=jaccard(word_list_own_filtered_stemmed,\ + word_list_old_own_filtered_stemmed) + + output_file.write(";"+str(jaccard_similarity)) + else: + # The previous filing is not from the same firm -> cannot compute Jaccard similarity + output_file.write(";") + + # Save the current word vector to a separate variable for the comparison of the next report. + word_list_old_own_filtered_stemmed=word_list_own_filtered_stemmed + + + ############################################ + # Sub Task 6: Jaccard for the _stemmed.txt + # AND REMOVE STOP WORDS - NLTK LIST + ############################################ + # Caution; it is not clear whether you should first stem or first remove + # stop words. However, the NLTK stop word list seems to be based on inflected + # text, e.g. the word "having" is included. "Having" would be stemmed to "have". + # Thus, the stop list seems to be not stemmed. + # Thus, you should remove the stop words first and then stem. + + # remove stop words using NLTK stop word list + word_list_NLTK_filtered=[] + for word in word_list_edited: + if word not in NLTK_stop_words: + word_list_NLTK_filtered.append(word) + + # Create stemmed text + word_list_NLTK_filtered_stemmed=[] + for word in word_list_NLTK_filtered: + word_list_NLTK_filtered_stemmed.append(ps.stem(word)) + + # compute Jaccard similarity if the previous filing is from the same firm + if permco==permco_old: + jaccard_similarity=jaccard(word_list_NLTK_filtered_stemmed,\ + word_list_old_NLTK_filtered_stemmed) + + output_file.write(";"+str(jaccard_similarity)) + else: + # The previous filing is not from the same firm -> cannot compute Jaccard similarity + output_file.write(";") + + # Save the current word vector to a separate variable for the comparison of the next report. + word_list_old_NLTK_filtered_stemmed=word_list_NLTK_filtered_stemmed + + + # Write line break to output file + output_file.write("\n") + + # Close 10-K filing + input_file_10_k.close() + +input_file.close() +output_file.close() +stop_word_file.close() +print("Task done!") + diff --git a/lectures/programming/solutions/Problem_17_Ridge_LASSO_text_data.py b/lectures/programming/solutions/Problem_17_Ridge_LASSO_text_data.py new file mode 100644 index 0000000..ebb10d6 --- /dev/null +++ b/lectures/programming/solutions/Problem_17_Ridge_LASSO_text_data.py @@ -0,0 +1,161 @@ +# -*- coding: utf-8 -*- +""" +Created on Mon Mar 21 09:38:32 2022 + +@author: Alexander Hillert, Goethe University Frankfurt +""" + +import pandas as pd +import numpy as np +from sklearn.metrics import mean_squared_error +from sklearn.linear_model import RidgeCV +from sklearn.linear_model import LassoCV + + +# adjust the directory to your folder +directory="C:/Lehre/Machine Learning/Data/" + + +# import the data for this problem +# NOTE: IT MIGHT TAKE 3 TO 5 MINUTES TO OPEN THE DATA +data_frame=pd.read_csv(directory+"form_10-Ks_machine_learning_2007_2008_all_variables_v1.csv",sep=";") +# The rows of the data are the Form 10-K filings. Each line is one filing. +# The columns are the variables. After some identifying information, +# you find the word frequencies, i.e., how often a word (e.g., "the") shows up +# in a 10-K (e.g., 100 times) + + +# WARNING: THE DATA SET IS TOO LARGE TO BE DISPLAYED -> Variable Explorer +# and Console will crash. +# However, you can pick a small subset of the data and look at it. +# It list all columns=variables and the first three observations. +data_frame_example=data_frame.head(3) +# you can click on this variable in the variable explorer without Spyder crashing. + +# To see the variables included in the data use the following command +data_frame_column_names=data_frame.columns +# you can click on this variable in the variable explorer without Spyder crashing. +# This variables shows all column/variable names in a vector. + +# split the data set into the training and testing data +# we use the filings from year 2007 as training data +data_frame_train=data_frame[data_frame.year==2007] +# and the filing from year 2008 as testing data +data_frame_test=data_frame[data_frame.year==2008] + +# put the cumulative abnormal return around the filing date into a new variable. +# we follow Loughran and McDonald (2011) and use the CAR from t to t+4. +# training data +filing_car_train=data_frame_train["excess_ret_t0_t4"] +# testing data +filing_car_test=data_frame_test["excess_ret_t0_t4"] + +# so far, you have absolute word counts. For example, "loss" is found 5 times. +# As the length of the 10-Ks can be different, we scale by the number of words +# in the 10-K. +document_length_train=data_frame_train["number_of_words"] +document_length_test=data_frame_test["number_of_words"] + + +# the word frequencies are our independent variables -> restrict the data frame +# to those variables and drop all variables that are not needed +data_frame_train=data_frame_train.drop(columns=["cik","year","month","link","filing_type","filing_date","excess_ret_t0_t4","number_of_words"]) +data_frame_test=data_frame_test.drop(columns=["cik","year","month","link","filing_type","filing_date","excess_ret_t0_t4","number_of_words"]) + +# compute relative frequencies, i.e., divide the absolute word count by document length +data_frame_train=data_frame_train.div(document_length_train, axis=0) +data_frame_test=data_frame_test.div(document_length_test, axis=0) + +# standardize the data frames +# training data +data_frame_train_mean=np.mean(data_frame_train,axis=0) +data_frame_train_sd=np.std(data_frame_train, axis=0, ddof=1) +data_frame_train_standardized=(data_frame_train-data_frame_train_mean)/data_frame_train_sd +# testing data +data_frame_test_mean=np.mean(data_frame_test,axis=0) +data_frame_test_sd=np.std(data_frame_test, axis=0, ddof=1) +data_frame_test_standardized=(data_frame_test-data_frame_test_mean)/data_frame_test_sd + + +# There can be missing values in the standardized variables. +# They arise if the word count for a specific word is always zero in the training +# or in the testing data. In this case, the standard deviation is zero -> +# division by zero -> NaN. +# We replace these missing values by zero. +# training data +data_frame_train_standardized=data_frame_train_standardized.fillna(0) +# testing data +data_frame_test_standardized=data_frame_test_standardized.fillna(0) + +########################## +# Ridge regression +########################## +print("\nRidge regression - Using cross-validation\n") +# Regress the CARs on the word frequencies using Ridge regressions with cross-validation. +# In this regression, we use the training data. +# We use five-fold cross-validation. +# Recommendation for initial alphas/lambdas: 100000, 150000, and 200000 +# The optimal alpha is at around 140000. +regression_Ridge_cv=RidgeCV(alphas=[135000,137000,140000,143000,145000], fit_intercept=True,cv=5).fit(data_frame_train_standardized,filing_car_train) + +# get the optimal lambda +alpha_optimal_cv=regression_Ridge_cv.alpha_ +print("The optimal alpha is "+str(alpha_optimal_cv)) + +# what is the R2 in the training and testing data? +print("The R2 in the training data is: "+str(regression_Ridge_cv.score(data_frame_train_standardized,filing_car_train))) +print("The R2 in the testing data is: "+str(regression_Ridge_cv.score(data_frame_test_standardized,filing_car_test))) + +# Mean squared error using the cross-validated model +# predict y in the full training sample +filing_car_train_predicted_Ridge=regression_Ridge_cv.predict(data_frame_train_standardized) +# predict y in the testing sample +filing_car_test_predicted_Ridge=regression_Ridge_cv.predict(data_frame_test_standardized) +# Determine the MSE +print("The MSE in the full training data is: "+str(mean_squared_error(filing_car_train, filing_car_train_predicted_Ridge))) +print("The MSE in the testing data is: "+str(mean_squared_error(filing_car_test, filing_car_test_predicted_Ridge))) + + +###################### +# LASSO regression +###################### +print("\nLASSO regression - Using cross-validation\n") +# Regress the CARs on the word frequencies using LASSO regressions with cross-validation. +# In this regression, we use the training data. +# We use five-fold cross-validation. +# Recommendation for initial alphas/lambdas: 0.5, 1, and 1.5 +# The optimal alpha is at around 0.86. +regression_Lasso_cv=LassoCV(alphas=[0.85,0.86,0.87,0.88,0.89], fit_intercept=True,cv=5).fit(data_frame_train_standardized,filing_car_train) + +# get the optimal lambda +alpha_optimal_cv=regression_Lasso_cv.alpha_ +print("The optimal alpha is "+str(alpha_optimal_cv)) + +# get the R2 in the training data +print("The R2 in the training data is: "+str(regression_Lasso_cv.score(data_frame_train_standardized,filing_car_train))) +# ... and testing data +print("The R2 in the testing data is: "+str(regression_Lasso_cv.score(data_frame_test_standardized,filing_car_test))) + +# Mean squared error using the cross-validated model +# predict y in the full training sample +filing_car_train_predicted_Lasso=regression_Lasso_cv.predict(data_frame_train_standardized) +# predict y in the testing sample +filing_car_test_predicted_Lasso=regression_Lasso_cv.predict(data_frame_test_standardized) +# Determine the MSE +print("The MSE in the full training data is: "+str(mean_squared_error(filing_car_train, filing_car_train_predicted_Lasso))) +print("The MSE in the testing data is: "+str(mean_squared_error(filing_car_test, filing_car_test_predicted_Lasso))) + + +############################################################ +# Compare the betas from the Ridge and the LASSO regressions +############################################################ +output_file=open(directory+"comparison_coefficients_Ridge_LASSO_10-Ks.csv","w",encoding="utf-8") +output_file.write("index;word;coefficient_Ridge;coefficient_LASSO\n") + +# get the list of coefficients +for i in range (0,len(data_frame_train.columns)): + output_file.write(str(i)+';'+data_frame_train.columns[i]+';'+str(regression_Ridge_cv.coef_[i])+';'+str(regression_Lasso_cv.coef_[i])+'\n') + +output_file.close() + +print("Completed!") diff --git a/lectures/programming/solutions/Problem_1_Fun_with_Python.py b/lectures/programming/solutions/Problem_1_Fun_with_Python.py new file mode 100644 index 0000000..81e119d --- /dev/null +++ b/lectures/programming/solutions/Problem_1_Fun_with_Python.py @@ -0,0 +1,121 @@ +# -*- coding: utf-8 -*- +""" +Created on Mon Nov 13 21:40:57 2017 + +@author: Alexander Hillert, Goethe University Frankfurt +""" + +directory="C:/Lehre/Textual Analysis/Programming/Files/" + +# Task 1: Open and print +# Open the Txt-file +print("\nTask 1 starts here!\n") +input_file=open(directory+'Fun_with_Python.txt','r') +input_text=input_file.read() +# Alternative with one command +input_text=open(directory+'Fun_with_Python.txt','r').read() + +print(input_text) + +# Task 2: Write text to output file +# Create file 'More_fun_with_Python.txt' +print("\nTask 2 starts here!\n") +output_file=open(directory+'More_fun_with_Python.txt','w') +output_file.write("Hallo\n") +output_file.write(input_text) +output_file.close() + +# Task 3: loop +print("\nTask 3 starts here!\n") +# Alternative 1: While loop +i = 1 +while i<=10: + print('Iteration Number: '+str(i)) + i=i+1 + # Example of a nested loop + j=1 + while j<3: + print('Hallo') + j=j+1 + +# Alternative 2: For loop +for i in range(0,10): + print('Iteration Number: '+str(i)) +# there is also a shorter notation: if there is no lower bound it is assumed to be zero +for i in range(10): + print('Iteration Number: '+str(i)) + + +# Task 4: Print text line by line +# Print text line by line +print("\nTask 4 starts here!\n") +line_of_text=input_text.split('\n') +i=0 +while i for each element of the list do ... +# line can be any name; it refers to the elements of the list +i=1 +for line in line_of_text: + print("Line "+str(i)+": "+line) + i=i+1 + + +# Task 5: count 'good' +# Count how often the word 'good' appears in the text +print("\nTask 5 starts here!\n") +number_good=input_text.count('good') +print(number_good) +# you can write the command in a shorter format +print(input_text.count('good')) + +# Task 6a +# Print lines with the word 'good' +print("\nTask 6a starts here!\n") +for i in range(len(line_of_text)): + if line_of_text[i].count('good')>=1: + print(line_of_text[i]) + + +# Task 7 +# Print lines that start with the word 'This' +print("\nTask 7 starts here!\n") +print("\n'This' with a capital T.\n") +for i in range(len(line_of_text)): + if line_of_text[i].startswith('This')>=1: + print(line_of_text[i]) + +print("\n'this' with a lower case t.\n") +for i in range(len(line_of_text)): + if line_of_text[i].startswith('this')>=1: + print(line_of_text[i]) + +print("Yes, the command is case sensitive (2 vs. 0 matches)!") + + +# Task 8 +# Replace the word 'good' by 'excellent' +print("\nTask 8 starts here!\n") +new_text=input_text.replace("good","excellent") +print(new_text) + +# For illustation only +print("\nFor illustation only\n") +for i in range(len(line_of_text)): + new_line_of_text=line_of_text[i].replace('good','excellent') + # print the new line IF there are a change. + if not new_line_of_text==line_of_text[i]: + print(new_line_of_text) + +input_file.close() +output_file.close() + +print("DONE") \ No newline at end of file diff --git a/lectures/programming/solutions/Problem_2_SEC_Filings_Part1_Identification.py b/lectures/programming/solutions/Problem_2_SEC_Filings_Part1_Identification.py new file mode 100644 index 0000000..3042d78 --- /dev/null +++ b/lectures/programming/solutions/Problem_2_SEC_Filings_Part1_Identification.py @@ -0,0 +1,72 @@ +# -*- coding: utf-8 -*- +""" +Created on Wed Jul 29 09:21:46 2015 + +@author: Alexander Hillert, Goethe Uni Frankfurt +""" +import re +# Please adjust the directory to your machine. +directory="C:/Lehre/Textual Analysis/Programming/Files/" + +# Open the txt file with the SEC filings +sec_filings_file=open(directory+'formidx_1998Q1.txt','r') +sec_filings_text=sec_filings_file.read() + +# Create output file +output_file=open(directory+'SEC_Filings_Output.csv','w') + +# Create first line with variable names +# I use semicolons as separator in csv files. You can also use any other symbol. +# However, you should make sure that the separator is not part of the data/text +# you write to the file. +# For example, it would be problematic if you use comma as separator and have +# company names like "AMERICAN HEALTHCORP, INC." or "AMERICAN FUNDING, INC." +output_file.write("Form_Type;Company_Name;CIK;Filing_Date;Link\n") + +# Split the Input File in separate line +sec_filings_line=sec_filings_text.split("\n") + +# Loop over all lines +for i in range(len(sec_filings_line)): + # Does the line refer to a form 10-K file? + # As pointed out by Loughran and McDonald (2011), many firms mislabelled + # their 10-K filings as 10-K405 filings. Thus, I included these filings + # as well. + # The condition below excludes amendments to 10-Ks ("10-K/A" and "10-K405/A"). + # Depending on the research question at hand one could include amendments as well. + # Also, 10KSB (small businesses) could also be included. + + match_10k=re.search("\A10-K( |405 )",sec_filings_line[i]) + if match_10k: + + #if sec_filings_line[i].startswith("10-K ")==1 or sec_filings_line[i].startswith("10-K405 ")==1: + # Split the line such that the information can be saved in separate + # variables + # Each information item has a fixed length in the overview files of the + # SEC. + # Filing type: position 1 to 12 + # Remember Python starts counting at 0 and does not include the upper bound + filing_type=sec_filings_line[i][:12] + # Company name: position 13 to 74 + company_name=sec_filings_line[i][12:74] + # CIK: position 75 to 86 + cik=sec_filings_line[i][74:86] + # Filing date: position 87 to 98 + filing_date=sec_filings_line[i][86:98] + # Link: position 99 to end of line + link=sec_filings_line[i][98:] + + # Is the 10-K filed between March 10 and March 20? + # The filing date is in the format "YYYY-MM-DD" (e.g. "1998-03-31") + filing_day=filing_date[8:10] + filing_month=filing_date[5:7] + # Is the Filing Month March? + if int(filing_month)==3 and int(filing_day)>=10 and int(filing_day)<=20: + # The filing meets the conditions --> + # Write output to the csv file + output_file.write(filing_type+";"+company_name+";"+cik+";"+filing_date+";"+link+"\n") + +sec_filings_file.close() +output_file.close() + +print("DONE") \ No newline at end of file diff --git a/lectures/programming/solutions/Problem_2_SEC_Filings_Part2_Download.py b/lectures/programming/solutions/Problem_2_SEC_Filings_Part2_Download.py new file mode 100644 index 0000000..8c68688 --- /dev/null +++ b/lectures/programming/solutions/Problem_2_SEC_Filings_Part2_Download.py @@ -0,0 +1,95 @@ +# -*- coding: utf-8 -*- +""" +Created on Wed Jul 29 11:07:10 2015 + +@author: Alexander Hillert, Goethe Uni Frankfurt +""" + +directory="C:/Lehre/Textual Analysis/Programming/Files/" + +# We need the urllib package +import urllib.request +# To automatically create folders we need the os-module (OS: Operating System) +import os + + +# Define a user agent +# Information on user agents are from https://docs.python.org/3/howto/urllib2.html: +# "Some websites dislike being browsed by programs, or send different versions +# to different browsers. By default urllib identifies itself as Python-urllib/x.y +# (where x and y are the major and minor version numbers of the Python release, +# e.g. Python-urllib/2.5), which may confuse the site, or just plain not work. +# The way a browser identifies itself is through the User-Agent header. +opener = urllib.request.build_opener() + +# The SEC recently rejected requests from Python-urllib/x.y user agent (see above) +# To still automatically download files, you have different options. +# I have listed three examples below but there are many more: +# For a comprehensive list see, e.g.: +# https://developers.whatismybrowser.com/useragents/explore/software_type_specific/web-browser/ +#opener.addheaders = [('User-agent', 'Mozilla')] +#opener.addheaders = [('User-agent', 'Chrome')] +opener.addheaders = [('User-agent', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64)')] +urllib.request.install_opener(opener) + + +# Open the csv file from part 1 of the problem +input_file=open(directory+'SEC_Filings_Output.csv','r') +input_text=input_file.read() + +# Split the Input File in separate lines +input_text_line=input_text.split("\n") +# sometimes you have empty lines after a split command. +# You can remove them using the following command +while input_text_line.count("")>0: + input_text_line.remove("") + +# Create a subfolder in which the 10-K filings are saved. +# When you download a large number of filings I recommend using subfolders for +# each year or even for each year-month combination. +# The option "exist_ok=True" makes sure that you do not get an error if the +# folder already exists. +os.makedirs(directory+"10-Ks/", exist_ok=True) + +# Loop over all lines of the csv file +#for i in range(1,len(input_text_line)): +# To avoid having to download hundreds of files when we discuss the solution +# the loop stops at 20. (Remember the upper bound is not included.) +for i in range(1,21): + + # split the line into the five variables + variables=input_text_line[i].split(";") + # We only need the cik and the link. + # The cik is the 3rd variable. However, the numbering of lists starts + # at zero -> 2nd item of the list "variables" + # The link is the 5th variable -> 4th item of the list "variables" + cik=variables[2] + #cik=cik.replace(" ","") + cik=cik.strip() + link=variables[4] + #link=link.replace(" ","") + link=link.strip() + + # Find the filename + # The link consistes of differnt parts: + # For example: edgar/data/1000753/0000950129-98-001035.txt + link_parts=link.split("/") + # 1st part: edgar + # 2nd part: data + # 3rd part: cik + # 4th part: file name -> 3rd item of the set + filename=link_parts[3] + ########################################################################### + ############################ WARNING ###################################### + # The filename does NOT uniquely identify the SEC filings as different firms (CIKs) + # may use the same filename. Thus, when you only use the filename files + # might be overwritten. To avoid this problem you need to have a unique name. + # Combining CIK and filename results in a unique identifier, as the + # filename appears only once per firm (CIK). + # -> use the combination of CIK and filename: cik_filename + ########################################################################### + urllib.request.urlretrieve("http://www.sec.gov/Archives/"+link,\ + directory+"10-Ks/"+cik+"_"+filename) + +input_file.close() +print("DONE") \ No newline at end of file diff --git a/lectures/programming/solutions/Problem_4_Application_Regular_Expressions.py b/lectures/programming/solutions/Problem_4_Application_Regular_Expressions.py new file mode 100644 index 0000000..21fefd1 --- /dev/null +++ b/lectures/programming/solutions/Problem_4_Application_Regular_Expressions.py @@ -0,0 +1,144 @@ +# -*- coding: utf-8 -*- +""" +Created on Tue Apr 12 15:50:22 2016 + +@author: Alexander Hillert, Goethe University Frankfurt +""" + +# Import regular expressions and BeautifulSoup +import re +from bs4 import BeautifulSoup + +# Please adjust the directory to your machine. +directory="C:/Lehre/Textual Analysis/Programming/Files/" + +# Open the document +input_file=open(directory+'Exercise_4_Application_Regular_Expressions.txt','r',encoding="utf-8") +input_text=input_file.read() + +####################### +# Task 1: remove tables +####################### +# Approach +# We search for tables until we find no more html tags that indicate the +# beginning of a table. +# Search for the start html-tag +table_match=re.search('
', input_text) +print("This is the result of the re.search command:") +print(table_match) +while table_match: + # When we have identified a match, i.e. the start of a table, we save + # the position of the beginning of the table in the variable "start_table" + table_start_match=re.search('
', input_text) + start_table=table_start_match.start() + # Next, we search for the corresponding html tag that indicates the end of + # the table and save the end position to the variable "end_table" + table_end_match=re.search('
', input_text) + end_table=table_end_match.end() + + # We can print the text between the start and end html tag to check whether + # the table has been identified correctly. + print("The text below is a table!\n"+input_text[start_table:end_table]+"\n") + + # the text between the beginning and end of the html tags is the part which + # we would like to delete. + # Consequently, we keep the text before the beginning of the table as well + # as the text after the ending of the table. + input_text=input_text[:start_table]+input_text[end_table:] + # Next, we need to check whether there is another table in the rest of the + # text. + table_match=re.search('', input_text) + # As long as "table_match" exists, i.e. we regex result in a match, the loop + # will continue. + +######################### +# Task 2: remove Exhibits +######################### +# Exhibits have the following structure +# +# EX... +# ... +# +exhibit_match=re.search('EX', input_text) +while exhibit_match: + exhibit_start_match=re.search('EX', input_text) + start_exhibit=exhibit_start_match.start() + # As the exhibits are at the end of the 10-K filing it would not be + # necessary to include an end position. We could also drop the entire text + # after "EX" + # It is important that we search for the only after the exhibit + # started. Otherwise, we could get the end of the main document. + exhibit_end_match=re.search('', input_text[start_exhibit:]) + end_exhibit=start_exhibit+exhibit_end_match.end() + # Print the identified text to check whether the exhibit has be identified + # correctly + print("The text below is an exhibit!\n"+input_text[start_exhibit:end_exhibit]+"\n") + + input_text=input_text[:start_exhibit]+input_text[end_exhibit:] + # Check whether there are further exhibits + exhibit_match=re.search('EX', input_text) + +########################## +# Task 3: remove html code +########################## +# Alternative 1: remove html code without Beautiful Soup +text=re.sub('<[^>]{1,}>', '', input_text) +# This regex searches for a "<" followed by at least one character that must not +# equal > and is completed by >. +# You might have thought about using the following command +#text=re.sub('<.{1,}>', '', input_text) +# However, this command has a problem, as it would delete the following line +# entirely: This is some text that should remain +# The .{1,} would match 'page> This is some text that should remain ]{1,} avoids this problem by not allowing to match > +# Consequently, in the example only the two "" would be deleted. +# You can verify this by using regex101.com (remember to check "Python" in the +# left menu of the webpage) + +# Alternative 2: remove html code using Beautiful Soup +html_text=BeautifulSoup(input_text, 'html.parser') +text=html_text.get_text() + +######################## +# Task 4: delete numbers +######################## +# Alternative 1 - removing numbers step by step +# remove commas in numbers, e.g., 1,000 or 12,345,678 or 123,456,789,123,123 +text=re.sub('[0-9]{1,3},([0-9]{3},){0,}[0-9]{3}','',text) +# remove dots in numbers, e.g., 34.56 or 12,345.678 (-> previous command leaves .678) +text=re.sub('[0-9]{0,}\.[0-9]{1,}','',text) +# remove the remaining numbers without commas and dots +text=re.sub('[0-9]','',text) + +# Alternative 2 - removing numbers using a single regex +text=re.sub('[0-9]{1,}(,[0-9]{3}){0,}(\.[0-9]{1,}){0,1}','',text) + +# Alternative 3 - removing numbers step by step but start with commas and dots +# 1. remove comma incl. the surrounding numbers +text=re.sub("[0-9],[0-9]","",text) +# 2. remove dots incl. the surrounding numbers +text=re.sub("[0-9]\.[0-9]","",text) +# 3. remove any remaining number +text=re.sub("[0-9]","",text) + + +######################## +# Task 5: delete symbols +######################## +# When analyzing tone, symbols do not matter, as they are not considered to be +# words and thus do not biased the total word count. +# However, for training purposes this task is included in the problem. +# There is no well defined list of which symbols should be deleted. So, you +# can add further symbols. +text=re.sub('\(|\)|\[|\]|\$|§|%|\*|/|·|-',' ',text) +text=re.sub('[^a-zA-Z \.,\!\?\n]','',text) + +# Open the output file for the pure text +output_file=open(directory+'Exercise_4_Application_Regular_Expressions_clean.txt','w',encoding="utf-8") +output_file.write(text) + +input_file.close() +output_file.close() + +print("DONE") + diff --git a/lectures/programming/solutions/Problem_5_Clean_SEC_Filing.py b/lectures/programming/solutions/Problem_5_Clean_SEC_Filing.py new file mode 100644 index 0000000..abc587e --- /dev/null +++ b/lectures/programming/solutions/Problem_5_Clean_SEC_Filing.py @@ -0,0 +1,209 @@ +# -*- coding: utf-8 -*- +""" +Created on Tue Apr 12 15:50:22 2016 + +@author: Alexander Hillert, Goethe University Frankfurt +""" +import re +from bs4 import BeautifulSoup + +# Please adjust the directory to your machine. +directory="C:/Lehre/Textual Analysis/Programming/Files/" + +# Open the 10-K +input_file=open(directory+'0000950130-98-001359.txt','r',encoding='ascii',errors='ignore') +input_text=input_file.read() + +################################ +# Remove tables +# Same approach as in Problem 4 +################################ +# Sometimes it is helpful to print the text parts that are deleted. In this +# example, we will print the first two tables that we delete. +i=1 +table_match=re.search('
', input_text) +while table_match: + # Search for the beginning of the table + table_start_match=re.search('
', input_text) + start_table=table_start_match.start() + # search for the end of the table + table_end_match=re.search('
', input_text) + end_table=table_end_match.end() + # The if condition and the printing are just for illustrative purposes. + # The commands display the first two tables that are removed from the text. + if i<=2: + print("This is the "+str(i)+". Table in the 10-K.\n"+input_text[start_table:end_table]+"\n") + i=i+1 + # remove the table + input_text=input_text[:start_table]+input_text[end_table:] + # check whether there are further tables + table_match=re.search('', input_text) + +################################ +# Remove exhibits +# Same approach as in Problem 4 +################################ +# Exhibits have the following structure +# +# EX... +# ... +# +# Sometimes it is helpful to print the text parts that are deleted. In this +# example, we will print the first exhibit that we delete. +i=1 +exhibit_match=re.search('EX', input_text) +while exhibit_match: + # Search for the beginning of the exhibit + exhibit_start_match=re.search('EX', input_text) + start_exhibit=exhibit_start_match.start() + # Search for the end of the exhibit + # CAUTION: search only in the text after the beginning of the exhibt, as + # also appears earlier (e.g. end of main document) + exhibit_end_match=re.search('', input_text[start_exhibit:]) + end_exhibit=start_exhibit+exhibit_end_match.end() + if i<=1: + print("This is the "+str(i)+". Exhibit in the 10-K.\n"+input_text[start_exhibit:end_exhibit]+"\n") + i=i+1 + # remove exhibit + input_text=input_text[:start_exhibit]+input_text[end_exhibit:] + exhibit_match=re.search('EX', input_text) + +################## +# Remove html code +################## +html_text=BeautifulSoup(input_text, 'html.parser') +text=html_text.get_text() + +############################ +# Remove the Document Header +############################ +# There are different possibilities how one can define the start of the main part of the text +# In general, you should delete all text that is uninformative for your analysis. +# Alternative 1: +# Search for Table of Contents. To not mistakenly match a reference to the +# table of contents somewhere in the text, we require a linebreak before and after. +# When the "Table of Contents" is centered, there will be whitespaces or tabs +# before and potentially also after +header_match=re.search('(?i)\n[\t ]{0,}table[\t ]of[\t ]contents[\t ]{0,}\n', text) +# Alternative 2: +# Search for Documents incorporated by reference. +header_match=re.search('\n[\t ]{0,}DOCUMENTS[\t ]INCORPORATED[\t ]BY[\t ]REFERENCE[\t ]{0,}\n', text) +if header_match: + # Drop the document header and keep only the rest of the text after the header. + text=text[header_match.end():] + +################################################# +# Delete the text in "PART IV" +# This procedure is optional. Look at "Part IV" and decide whether you favor +# the approach. I think that the part should be dropped, as it is just a list +# of exhibits, some mandatory text required by the SEC [indicated by the +# capital letters in the "SIGNATURES" section]. +################################################# + +''' +# Alternative 1: go over all matches but keep only the last one +for match in re.finditer('\s{2,}PART IV\s{0,}\n', text): + print("Hallo") +# match now contains the last match +# Delete the text after the last match +text=text[:match.start()] + + +# Alternative 2: save the positions of all matches (more general approach) +# to use alternative 2, you have to comment out Alternative 1! +# Otherwise line 104 will create a problem when you execute Alternative 2. +list_start_matches=[] +list_end_matches=[] +for match in re.finditer('\s{2,}PART IV\s{0,}\n', text): + print(match) + list_start_matches.append(match.start()) + list_end_matches.append(match.end()) +# Position of last match +print(list_start_matches[len(list_start_matches)-1]) +print(list_end_matches[len(list_start_matches)-1]) + + +# Alternative 3: manual coding using a loop of re.searches +# create a copy of the text that we can edit +text_check_part_IV=text +part_IV_match=re.search('\s{2,}PART IV\s{0,}\n', text_check_part_IV) +# create two lists that we can use to save the start and end positions +# of the Part IV matches +list_start_matches_v2=[] +list_end_matches_v2=[] +# variable to save the position of the last match in the overall text +end_position_previous_match=0 +while part_IV_match: + start_position_match=end_position_previous_match+part_IV_match.start() + end_position_match=end_position_previous_match+part_IV_match.end() + + list_start_matches_v2.append(start_position_match) + list_end_matches_v2.append(end_position_match) + + # update the information on the end of the last match + end_position_previous_match=end_position_previous_match+part_IV_match.end() + + text_check_part_IV=text_check_part_IV[part_IV_match.end():] + part_IV_match=re.search('\s{2,}PART IV\s{0,}\n', text_check_part_IV) + +# when you compare list_end_matches to list_end_matches_v2, you see that the two +# approaches yield the same result. +# To double check that the approaches have the same results, you could +# replace the Regex in lines 112, 124, and 142 by "\s{2,}PART [A-Z]{1,3}\s{0,}\n". +# In these case you have more matches and so you can better check that the +# two approaches have identical outcomes. +''' + +''' +# Delete the text after the last match +text=text[:list_start_matches[len(list_start_matches)-1]] +''' + +# Delete item numbers +# This is optional. It removes "Item 1.", "ITEM 1.", "Item 10.", "Item 7A." +text=re.sub('(?i)Item [0-9]{1,}A{0,1}(\s|\.|:|\n)','',text) + +# Delete numbers +text=re.sub('[0-9]{1,}(,[0-9]{3}){0,}(\.[0-9]{1,}){0,1}','',text) + +# Alternative stepwise procedure to delete numbers +# remove commas in numbers, e.g., 1,000 or 12,345,678 +text=re.sub('[0-9]{1,3},([0-9]{3},){0,}[0-9]{3}','',text) +# remove dots in numbers, e.g., 34.56 or 12,345.678 (-> previous command leaves .678) +text=re.sub('[0-9]{0,}\.[0-9]{1,}','',text) +# remove the remaining numbers without commas and dots +text=re.sub('[0-9]','',text) + + +# Hyphens can be used to indicate that the word is continued in the next +# line. For example, "Micro-\nsoft" (\n is the line feed). +# Delete hyphens that are followed by a line feed. +text=re.sub('-\n','',text) + +# Replace symbols by a whitespace. +# Extra whitespaces are not a problem. +text=re.sub('\(|\)|\[|\]|\$|§|%|\*|/|·|-',' ',text) + +# Delete dots and commas that are not part of sentences, i.e. commas and dots +# that are preceded by a line break (potentially also whitespaces and tabs) +# and that are followed by are followed by a line break (again, there may +# also be whitespaces and tabs). +text=re.sub('\n[\t ]{0,}(\.|,){1,}[\t ]{0,}\n','\n',text) + +# Drop single-character words +# One can argue whether one should implement this procedure. Loughran and +# McDonald argue in one of their papers in favor of it. +# To make sure that there is just one letter, we require that there is a word +# boundary (\W) before and after. We use a positive backward looking and a +# positive forward looking condition for this to assure that the word boundary +# get not deleted as well. +text=re.sub('(?<=\W)[A-Za-z](?=\W)',' ',text) + + +# Open the output file for the pure text +output_file=open(directory+'0000950130-98-001359_clean.txt','w',encoding='ascii',errors='ignore') +output_file.write(text) + +input_file.close() +output_file.close() +print("COMPLETED.") diff --git a/lectures/programming/solutions/Problem_6_Clean_10-K_Sample.py b/lectures/programming/solutions/Problem_6_Clean_10-K_Sample.py new file mode 100644 index 0000000..069b38c --- /dev/null +++ b/lectures/programming/solutions/Problem_6_Clean_10-K_Sample.py @@ -0,0 +1,356 @@ +# -*- coding: utf-8 -*- +""" +Created on Wed Jul 29 11:07:10 2015 + +@author: Alexander Hillert, Goethe University Frankfurt +""" + +import re +from bs4 import BeautifulSoup + +directory="C:/Lehre/Textual Analysis/Programming/Files/" + +# Open the csv file containing the list of the 200 10-Ks +input_file=open(directory+'10-K_Sample_2011Q1_Input.csv','r') +input_text=input_file.read() + +# Split the input file in separate lines +input_text_line=input_text.split("\n") + +# In general, there can be empty lines in the iput file. The following command +# deletes these lines +while input_text_line.count("")>0: + input_text_line.remove("") + +print("The input file contains "+str(len(input_text_line)-1)+" non-empty lines with data.") +# We subtract 1 from the lenght, as the first line contains the variable names but not data. + +# Loop over all lines +for i in range(1,len(input_text_line)): + # To see the progress of your program you can print the number of iteration. + print(str(i)) + + # split the lines of the CSV-file into the two variables + variables=input_text_line[i].split(";") + # We need the CIK and the filename to open the file + cik=variables[0] + filename=variables[1] + + # Open the ith 10-K in the list + input_file_10_k=open(directory+'10-K_Sample/'+cik+'_'+filename,'r',encoding='ascii',errors='ignore') + input_text_10_k=input_file_10_k.read() + + # the new file name should be "old_name_clean" -> we have to replace ".txt" + # by "_clean.txt" + filename=filename.replace('.txt','_clean.txt') + + # Remove tables + variable=re.search('
', input_text_10_k) + while variable: + variable=re.search('
', input_text_10_k) + start_table=variable.start() + variable=re.search('
', input_text_10_k) + end_table=variable.end() + input_text_10_k=input_text_10_k[:(start_table)]+input_text_10_k[(end_table):] + variable=re.search('', input_text_10_k) + + + ####################### Begin of exhibits removal ######################### + # Exhibits have the following structure + # + # EX... + # ... + # + # In the recent years, there are also exhibits with EXCEL + # -> as we search for "EX", the loop will delete EXCEL exhibits, too. + variable=re.search('EX', input_text_10_k) + while variable: + variable=re.search('EX', input_text_10_k) + start_exhibit=variable.start() + variable=re.search('', input_text_10_k[start_exhibit:]) + end_exhibit=start_exhibit+variable.end() + input_text_10_k=input_text_10_k[:(start_exhibit)]+input_text_10_k[(end_exhibit):] + variable=re.search('EX', input_text_10_k) + + # In recent years, there are also XML-Exibits. + # CAUTION: These are XML and not EX -> need separate cleaning + # Remove XML-Exhibits, which have the following structure + # + # XML + # ... + # + variable=re.search('XML', input_text_10_k) + while variable: + variable=re.search('XML', input_text_10_k) + start_exhibit=variable.start() + variable=re.search('', input_text_10_k[start_exhibit:]) + end_exhibit=start_exhibit+variable.end() + input_text_10_k=input_text_10_k[:start_exhibit]+input_text_10_k[end_exhibit:] + variable=re.search('XML', input_text_10_k) + + # Furthermore, also in recent years, there are also ZIP-Exibits. + # CAUTION: These are ZIP and not EX -> need separate cleaning + # Remove ZIP-Exhibits, which have the following structure + # + # ZIP + # ... + # + variable=re.search('ZIP', input_text_10_k) + while variable: + variable=re.search('ZIP', input_text_10_k) + start_exhibit=variable.start() + variable=re.search('', input_text_10_k[start_exhibit:]) + end_exhibit=start_exhibit+variable.end() + input_text_10_k=input_text_10_k[:start_exhibit]+input_text_10_k[end_exhibit:] + variable=re.search('ZIP', input_text_10_k) + + # In addition, there are many Graphic-Exibits. + # CAUTION: These are GRAPHIC and not EX -> need separate cleaning + # Remove GRAPHIC-Exhibits, which have the following structure + # + # GRAPHIC + # ... + # + variable=re.search('GRAPHIC', input_text_10_k) + while variable: + variable=re.search('GRAPHIC', input_text_10_k) + start_exhibit=variable.start() + variable=re.search('', input_text_10_k[start_exhibit:]) + end_exhibit=start_exhibit+variable.end() + input_text_10_k=input_text_10_k[:start_exhibit]+input_text_10_k[end_exhibit:] + variable=re.search('GRAPHIC', input_text_10_k) + + # Furthermore, there can be also Cover-Exibits. + # CAUTION: These are COVER and not EX -> need separate cleaning + # Remove COVER-Exhibits, which have the following structure + # + # COVER + # ... + # + variable=re.search('COVER', input_text_10_k) + while variable: + variable=re.search('COVER', input_text_10_k) + start_exhibit=variable.start() + variable=re.search('', input_text_10_k[start_exhibit:]) + end_exhibit=start_exhibit+variable.end() + input_text_10_k=input_text_10_k[:start_exhibit]+input_text_10_k[end_exhibit:] + variable=re.search('COVER', input_text_10_k) + + # Furthermore, there can be also PDF files attached. + # These attachments caused BeautifulSoup to crash on some computers. + # Remove PDFs + variable=re.search('', input_text_10_k) + while variable: + variable=re.search('', input_text_10_k) + start_pdf=variable.start() + variable=re.search('', input_text_10_k[start_pdf:]) + end_pdf=start_pdf+variable.end() + input_text_10_k=input_text_10_k[:(start_pdf)]+input_text_10_k[(end_pdf):] + variable=re.search('', input_text_10_k) + + ######################## End of exhibits removal ########################## + + # Remove Document Header - PART 1 + # This condition should work for all 10-K filings as the hmtl tags "" + # and "" are mandatory for all filings. + variable=re.search('', input_text_10_k) + if variable: + input_text_10_k=input_text_10_k[variable.end():] + + + # In some filings, firms do not use line feeds \n but
and
+ # instead to indicate the start and the end of sentences. + # "Dieses allgemeine Element bewirkt nichts weiter als dass es in einer + # neuen Zeile des Fließtextes beginnt." + # see https://wiki.selfhtml.org/wiki/HTML/Textstrukturierung/div + # and + # "The
tag defines a division or a section in an HTML document. + # By default, browsers always place a line break before and after the
element." + # See: https://www.w3schools.com/tags/tag_div.asp + # It is important to replace
and
by linefeeds because otherwise + # the entire text will be in a single line and the subsequent commands do + # not work properly. + input_text_10_k=input_text_10_k.replace("
", "\n") + input_text_10_k=input_text_10_k.replace("
", "\n") + + + # Remove html code + html_text=BeautifulSoup(input_text_10_k, 'html.parser') + text=html_text.get_text() + + + # To get an idea of what the commands below are doing, it is helpful to + # write the current version of the text to a file and then compare it to the + # final file. + filename2=filename.replace('_clean.txt','_without_HtmlTablesExhibits.txt') + # Open the output file for the text without html code and without tables+exhibits + output_file_10_k=open(directory+'10-K_Sample/'+cik+'_'+filename2,'w',encoding='ascii',errors='ignore') + output_file_10_k.write(text) + output_file_10_k.close() + + + # Remove the Document Header - PART II + # The above command to remove the header ("") does not capture + # the entire header -> we need to delete further parts at the top the filing. + # WARNING: The filters below may be specific to this sample of 10-Ks. + # Some firms have line breaks instead of whitespaces -> use "[ \n]" and not just " ". + variable=re.search('(?i)\n {0,}DOCUMENTS[ \n]INCORPORATED[ \n]BY[ \n]REFERENCE {0,}\n', text) + if variable: + text=text[variable.end():] + else: + variable=re.search('(?i)\n {0,}table of contents {0,}\n', text) + if variable: + text=text[variable.end():] + else: + variable=re.search('(?i)\n {0,}Indicate the number of shares outstanding\.{1,}', text) + if variable: + text=text[variable.end():] + else: + variable=re.search('(?i)may be deemed “forwardlooking statementsâ€\.{1,}', text) + if variable: + text=text[variable.end():] + else: + variable=re.search('\nPART\.{1,}', text) + if variable: + text=text[variable.end():] + + + # Delete Item numbers + text=re.sub('(?i)Item {1,}[0-9]{1,}(A|B){0,1}(\s|\.|:|\n)','',text) + # Delete Part numbers + text=re.sub('(?i)Part (1|2|3|4|III|II|I|IV)','',text) + + # Delete numbers: + text=re.sub('[0-9]{1,}(,[0-9]{3}){0,}(\.[0-9]{1,}){0,1}','',text) + + # File names, e.g. exhibit.pdf or picture.jpeg should be removed + text=re.sub("[ |\n]\S{1,}\.(pdf|htm|html|doc|jpg|txt|xml)(?=[ \n\.\?!])", "", text) + + # URLs --> Remove internet addresse + text=re.sub("http:/{0,2}", "", text) + text=re.sub("www\..{1,}\.[a-z]{2,4}(?=[ \n\.\?!])", "", text) + + + # In Part 4 of the programming chapter, we will determine the number of + # words per sentence. To be able to use the same underlying sample, + # we need to implement further corrections. These changes do not affect + # the percentage of negative/positive/etc. words. + # --> Only relevant for determining the number of sentences + # The text contains dots that do not indicate the end of a sentence. + # E.g., "Inc." and "St." + # The preceding - is found in non-U.S. for example. + # Replace or remove specific abreviations + # This list is incomplete. In a research project you should spend more time + # on editing the data. + text=re.sub("(?i)(-|\s|\A|,)Inc\.", " Inc", text) + text=re.sub("(?i)(-|\s|\A|,)Corp\.", " Corp", text) + text=re.sub("(?i)(-|\s|\A|,)Ltd\.", " Ltd", text) + text=re.sub("(?i)(-|\s|\A|,)Co\.", " Co", text) + text=re.sub("(?i)(-|\s|\A|,)S\.A\.", " SA", text) + text=re.sub("(?i)(-|\s|\A|,)U\.S\.", " US", text) + text=re.sub("(?i)(-|\s|\A|,)Ms\.", " Ms", text) + text=re.sub("(?i)(-|\s|\A|,)Mr\.", " Mr", text) + text=re.sub("(?i)(-|\s|\A|,)No\.", " Number", text) + text=re.sub("(?i)(-|\s|\A|,)v\.s\.", " vs", text) + text=re.sub("(?i)(-|\s|\A|,)St\.", " ", text) + text=re.sub("(?i)(-|\s|\A|,)Jr\.", " ", text) + + text=re.sub("(?i)(\s|\A|,)Jan\.", " January", text) + text=re.sub("(?i)(\s|\A|,)Feb\.", " February", text) + text=re.sub("(?i)(\s|\A|,)Mar\.", " March", text) + text=re.sub("(?i)(\s|\A|,)Apr\.", " April", text) + text=re.sub("(?i)(\s|\A|,)May\.", " May", text) + text=re.sub("(?i)(\s|\A|,)Jun\.", " June", text) + text=re.sub("(?i)(\s|\A|,)Jul\.", " July", text) + text=re.sub("(?i)(\s|\A|,)Aug\.", " August", text) + text=re.sub("(?i)(\s|\A|,)Sep\.", " September", text) + text=re.sub("(?i)(\s|\A|,)Oct\.", " October", text) + text=re.sub("(?i)(\s|\A|,)Nov\.", " November", text) + text=re.sub("(?i)(\s|\A|,)Dec\.", " December", text) + + # The sequence capital letter -> dot -> capital letter -> dot indicates an abbreviation + # three repitions of capital letter and dot are also common in filings + # we need to check for three instances first. + text=re.sub("( |\n|,)[A-Z]\.[A-Z]\.[A-Z]\.", " ", text) + # now check for two instances + text=re.sub("( |\n|,)[A-Z]\.[A-Z]\.", " ", text) + + # Dots after a single letter can indicate a middle Name Paul J. Smith + # or an abbreviation --> also delete these. + text=re.sub("( |\n|,)[A-Z]\.", "", text) + + + # Hyphens can be used to indicate that the word is continued in the next + # line. For example, "Micro-\nsoft" (\n is the line feed). + # Replace hyphens followed by a line feed by a hyphen without line feed + text=re.sub('-\n','-',text) + + # Delete the minus/hyphens + # "Short-term" -> "shortterm" + text=re.sub('-','',text) + + + # --> Only relevant for determining the number of sentences + # Delete dots and commas that are not part of sentences, i.e. commas and dots + # that are preceded by whitespace or line break and that are followed by + # whitespace or line break. + text=re.sub('\n(\.|,)\n','\n',text) + text=re.sub(' (\.|,) ',' ',text) + + # Delete single character words + # One can argue whether one should implement this procedure. Loughran and + # McDonald argue in one of their papers in favor of it. + # To make sure that there is just one letter, we require that there is a word + # boundary (\W) before and after. We use a positive backward looking and a + # positive forward looking condition for this to assure that the word boundary + # get not deleted as well. + text=re.sub('(?i)(?<=\W)[a-z](?=\W)',' ',text) + + + # There are sentences that are in upper case letters. However, these are not + # "real" sentences. Examples: "RESTRICTIONS ON TRANSFER OF NOTE." + # or "THIS NOTE AND THE RIGHTS AND OBLIGATIONS EVIDENCED HEREBY ARE + # SUBORDINATED TO THE PRIOR PAYMENT OF CERTAIN OBLIGATIONS [...]" + # We save the edited text in a new variable + text_edited=text + # Split text in sentences + list_sentences=re.split('\.|!|\?', text) + # iterate the list of all sentences + for j in range(0,len(list_sentences)): + # Determine the number of upper case letters + upper_letters=len(re.findall('[A-Z]',list_sentences[j])) + # Determine the number of all letters + total_letters=len(re.findall('[A-Za-z]',list_sentences[j])) + # If there is at least one letter calculate the fraction of upper case letters + if total_letters>0: + ratio=upper_letters/total_letters + # If the fraction of upper case letters is larger than 0.9 delete + # the sentence from the text. + if ratio>0.9: + text_edited=text_edited.replace(list_sentences[j]+'.','') + text_edited=text_edited.replace(list_sentences[j]+'!','') + text_edited=text_edited.replace(list_sentences[j]+'?','') + + + # --> Only relevant for determining the number of sentences + # There are a few cases where a dot follows a dot or where a linefeed + # separates two dots. --> delete the second dot. + text_edited=text_edited.replace('..','.') + text_edited=text_edited.replace('.\n.','.') + + # The following commands do not influence the subsequent textual analysis. + # The only purpose is to display the output in a nicer format. + # Replace lines that contain only whitespaces by a line feed. + text_edited=re.sub('\n {1,}\n','\n',text_edited) + + # Replace multiple line feeds by one line feed. + text_edited=re.sub('\n{2,}','\n',text_edited) + + + # Open the output file for the pure text + output_file_10_k=open(directory+'10-K_Sample/'+cik+'_'+filename,'w',encoding='ascii',errors='ignore') + output_file_10_k.write(text_edited) + output_file_10_k.close() + input_file_10_k.close() + +input_file.close() \ No newline at end of file diff --git a/lectures/programming/solutions/Problem_7_Tone_Analysis.py b/lectures/programming/solutions/Problem_7_Tone_Analysis.py new file mode 100644 index 0000000..a92b919 --- /dev/null +++ b/lectures/programming/solutions/Problem_7_Tone_Analysis.py @@ -0,0 +1,114 @@ +# -*- coding: utf-8 -*- +""" +Created on Wed Apr 13 22:43:32 2016 + +@author: Alexander Hillert, Goethe University Frankfurt +""" + +import re + +directory="C:/Lehre/Textual Analysis/Programming/Files/" + +# Open the dictionary +# The dictionary has been obtained from Bill McDonald's webpage +# http://www3.nd.edu/~mcdonald/Word_Lists.html +# --> LoughranMcDonald_MasterDictionary_2014.xlsx +# --> select negative words and copy them to a txt file +file_word_list=open(directory+'LMD_Neg.txt','r',encoding="utf-8") +word_list=file_word_list.read() +# The LMD words are all in upper case +word_list=word_list.lower() +negative_words=word_list.split('\n') + +# Open the csv file containing the list of the 200 10-Ks +input_file=open(directory+'10-K_Sample_2011Q1_Input.csv','r',encoding="utf-8") +input_text=input_file.read() + +# Split the input file in separate lines +input_text_line=input_text.split("\n") + +# In general, there can be empty lines in the input file. The following command +# deletes these lines. +while input_text_line.count("")>0: + input_text_line.remove("") + +# Create output file +output_file=open(directory+'10-K_Sample_2011Q1_Output_Negative_Tone.csv','w',encoding="utf-8") +# Write variable names to the first line of the output file +output_file.write('CIK;Filename;Number_Words;Number_Negative_Words;\ +Percentage_Negative_Words\n') + +# Loop over all lines of the csv file +for i in range(1,len(input_text_line)): +#for i in range(1,10): + # If the execution of your scripts takes some time, printing the loop iterator + # gives you an impression of the overall progress made. + print(str(i)) + + # split the line into the two variables + variables=input_text_line[i].split(";") + # We need the CIK (1st column) and the filename (2nd column) + cik=variables[0] + filename=variables[1] + + # modify file name to open the edited files + filename=filename.replace('.txt','') + # Open the ith 10-Ks in the list + input_file_10_k=open(directory+'10-K_Sample/'+cik+'_'+filename+'_clean.txt','r',\ + encoding='ascii',errors='ignore') + # if the command above does not work (error like "file not found" or "directory not found") + # please use the following command: + #input_file_10_k=open(directory+'10-K_Sample_clean/'+cik+'_'+filename+'_clean.txt','r',encoding='ascii',errors='ignore') + input_text_10_k=input_file_10_k.read() + + # Use lower case letters, too + # It is important that the formatting (lower case vs. upper case) of the word list + # and the document is identical. Remember that you have typically lower and upper case + # letters in documents -> modify text. + text=input_text_10_k.lower() + + # Split the text in single words to determine the total number of words + # \W is a non-word character: "Matches any character which is not a Unicode + # word character." (Python documentation) + # this is equivalent to [^a-zA-Z0-9_], i.e. no lower case letters, no upper + # case letters, no numbers, and no underscore. + list_of_words=re.split('\W{1,}', text) + # to make sure that empty list elements do not bias the word count, we delete them. + while list_of_words.count("")>0: + list_of_words.remove("") + # It is important that you treat multiple "\W" as one. Otherwise you are left + # with elements in the list that are not acutal words. + + # Determine the total number of words + word_count=len(list_of_words) + + # Reset the number of negative words to zero + negative_count=0 + # For each negative word, count the number of occurrences + for j in range(len(negative_words)): + # the command "list_of_words.count(negative_words[i])" only matches if there + # is exact overlap between the ith negative word and the words in the list. + # For example the following two commands: + # list_of_words=["abandon","abandoned","abandonment"] + # list_of_words.count("abandon") + # yields 1 match + # In contrast, + # text_of_words="abandon abandoned abandonment" + # text_of_words.count("abandon") + # yields 3. Thus, you have to split the text to individual words!!! + negative_count=negative_count+list_of_words.count(negative_words[j]) + + # Get the percentage of negative words + percentage_negative=negative_count/word_count + + # Write cik, file name, total number of words, number of negative words, + # and the percentage of negative words to output file. + output_file.write(cik+';'+filename+'_clean.txt;'+str(word_count)+';'\ + +str(negative_count)+';'+str(percentage_negative)+'\n') + + # Close filings + input_file_10_k.close() + +print("Finished") +output_file.close() +input_file.close() diff --git a/lectures/programming/solutions/Problem_8_Tone_Analysis_Positive_Words.py b/lectures/programming/solutions/Problem_8_Tone_Analysis_Positive_Words.py new file mode 100644 index 0000000..743da09 --- /dev/null +++ b/lectures/programming/solutions/Problem_8_Tone_Analysis_Positive_Words.py @@ -0,0 +1,130 @@ +# -*- coding: utf-8 -*- +""" +Created on Wed Apr 13 22:43:32 2016 + +@author: Alexander Hillert +""" + +import re + +directory="C:/Lehre/Textual Analysis/Programming/Files/" + +# Open the dictionary +# The dictionary is obtained from Bill McDonald's webpage +# http://www3.nd.edu/~mcdonald/Word_Lists.html +# --> LoughranMcDonald_MasterDictionary_2014.xlsx +# --> select positive words and copy them to a txt file +file_word_list=open(directory+'LMD_Pos.txt','r',encoding="utf-8") +word_list=file_word_list.read() +word_list=word_list.lower() +positive_words=word_list.split() + +# Open the csv file containing the list of the 200 10-Ks +input_file=open(directory+'10-K_Sample_2011Q1_Input.csv','r',encoding="utf-8") +input_text=input_file.read() + +# Split the Input File in separate lines +input_text_line=input_text.split("\n") + +# In general, there can be empty lines in the input file. The following command +# deletes these lines. +while input_text_line.count("")>0: + input_text_line.remove("") + +# Create output file +output_file=open(directory+'10-K_Sample_2011Q1_Output_Positive_Tone.csv','w',encoding="utf-8") +# Write variable names to the first line of the output file +output_file.write('CIK;Filename;Number_Words;Number_Pos_Words;Number_Pos_Words_adj;'\ ++'Percent_Pos_Words;Percent_Pos_Words_adj\n') + +# Iterate the list of the 200 10-K filings +# the last line is empty --> loop only up to len()-1 +#for i in range(1,len(input_text_line)): +for i in range(1,20): # For illustration only + # If the execution of your scripts takes some time, printing the iterator + # gives you an impression of the overall progress + print(str(i)) + + # split the line into the two variables + variables=input_text_line[i].split(";") + # We need the CIK (1st column) and the filename (2nd column) + cik=variables[0] + filename=variables[1] + + # modify file name to open the edited files + filename=filename.replace('.txt','') + + # Open the ith 10-K in the list + input_file_10_k=open(directory+'/10-K_Sample/'+cik+"_"+filename+'_clean.txt','r',\ + encoding='ascii',errors='ignore') + # if the command above does not work (error like "file not found" or "directory not found") + # please use the following command: + #input_file_10_k=open(directory+'10-K_Sample_clean/'+cik+'_'+filename+'_clean.txt','r',encoding='ascii',errors='ignore') + input_text_10_k=input_file_10_k.read() + + # Use lower case letters, too + # It is important that the formatting (lower case vs. upper case) of the word list + # and the document are identical. Remember that you have typically lower and upper case + # letters in documents -> modify text + text=input_text_10_k.lower() + + # Split the text in single words to determine the total number of words + list_of_words=re.split('\W{1,}', text) + # to make sure that empty list elements do not bias the word count, we delete them. + while list_of_words.count("")>0: + list_of_words.remove("") + + # Determine total number of words + word_count=len(list_of_words) + + # Reset the number of positive words and positive words adj. for negations to zero + positive_count=0 + positive_count_adj=0 + # For each positive word, count the number of occurrences + for j in range(len(positive_words)): + # standard count operation without controlling for negations + positive_words_found=list_of_words.count(positive_words[j]) + + # Loughran and McDonald (2011, JF, p.44): "We account for simple negation + # only for Fin-Pos words. Simple negation is taken to be observations + # of one of six words (no, not, none, neither, never, nobody) occurring + # within three words preceding a positive word. + + # When we have identified positive words we need to search for negations + while positive_words_found>0: + # identify the position of the matched positive word in the list of all words + position_of_word=list_of_words.index(positive_words[j]) + # identify the three words before the positive word and add them to a list + # the \ is a line break + list_negation=[list_of_words[max(0,position_of_word-3)],\ + list_of_words[max(0,position_of_word-2)],list_of_words[max(0,position_of_word-1)]] + # check whether one of the three words in list_negation is a negation + negation_found=list_negation.count('no')+list_negation.count('not')+\ + list_negation.count('none')+list_negation.count('neither')+\ + list_negation.count('never')+list_negation.count('nobody') + + if negation_found==0: + # no negation + positive_count_adj=positive_count_adj+1 + positive_count=positive_count+1 + else: + # negation + positive_count=positive_count+1 + + # delete the matched positive words in the original document + list_of_words[position_of_word]='' + # check whether there are further matches of the jth positive word + positive_words_found=list_of_words.count(positive_words[j]) + + # Write cik, file name, total number of words, and number of positive + # and adjusted positive words to the output file + output_file.write(cik+';'+filename+'_clean.txt;'+str(word_count)+';'+\ + str(positive_count)+';'+str(positive_count_adj)+';'+str(positive_count/word_count)+\ + ';'+str(positive_count_adj/word_count)+'\n') + + # Close filings + input_file_10_k.close() + +print("Finished") +output_file.close() +input_file.close() \ No newline at end of file diff --git a/lectures/programming/solutions/Problem_9_Words_per_Sentence.py b/lectures/programming/solutions/Problem_9_Words_per_Sentence.py new file mode 100644 index 0000000..055f623 --- /dev/null +++ b/lectures/programming/solutions/Problem_9_Words_per_Sentence.py @@ -0,0 +1,111 @@ +# -*- coding: utf-8 -*- +""" +Created on Wed Apr 13 22:43:32 2016 + +@author: Alexander Hillert, Goethe University Frankfurt +""" + +# We split the text into words and sentences using regular expression +import re +# For comparison, we also include the NLTK tokenizer +from nltk.tokenize import sent_tokenize + +directory="C:/Lehre/Textual Analysis/Programming/Files/" + +# Open the csv file containing the list of the 200 10-Ks +input_file=open(directory+'10-K_Sample_2011Q1_Input.csv','r',encoding="utf-8") +input_text=input_file.read() + +# Create output file +output_file=open(directory+'10-K_Sample_2011Q1_Output_WPS.csv','w',encoding="utf-8") +# Write variable names to the first line of the output file +output_file.write('CIK;Filename;Number_Words;Number_of_Sentences;'\ +'Number_of_Sentences_1;Number_of_Sentences_2;Number_of_Sentences_false;'\ +'Number_of_Sentences_NLTK;WPS;WPS_1;WPS_2;WPS_false;WPS_NLTK\n') + +# Split the Input File in separate lines +input_text_line=input_text.split("\n") + +# In general, there can be empty lines in the input file. The following command +# deletes these lines. +while input_text_line.count("")>0: + input_text_line.remove("") + +# Loop over all lines +for i in range(1,len(input_text_line)): + print(str(i)) + # split the line into the two variables + variables=input_text_line[i].split(";") + # We need the CIK and the filename + cik=variables[0] + filename=variables[1] + filename=filename.replace('.txt','') + + # Open the ith 10-K in the list + input_file_10_k=open(directory+'10-K_Sample/'+cik+"_"+filename+'_clean.txt','r',\ + encoding='ascii',errors='ignore') + text=input_file_10_k.read() + + # Determine number of sentences and number of words + # Split the text in words to determine the total number of words + list_of_words=re.split('\W{1,}', text) + # to make sure that empty list elements do not bias the word count, we delete them. + while list_of_words.count("")>0: + list_of_words.remove("") + # Determine total number of words + word_count=len(list_of_words) + + + # Split the text by symbols that indicate the end of a sentence + # to determine the total number of sentences + list_of_sentences=re.split('[\.!\?]{1,}', text) + while list_of_sentences.count("")>0: + list_of_sentences.remove("") + # Alternative 1: + list_of_sentences_1=re.split('(?:\.|!|\?){1,}', text) + while list_of_sentences_1.count("")>0: + list_of_sentences_1.remove("") + # Alternative 2: + list_of_sentences_2=re.split('\.{1,}|!{1,}|\?{1,}', text) + while list_of_sentences_2.count("")>0: + list_of_sentences_2.remove("") + # Incorrect approach: + # re.split splits the string by the occurrences of the pattern. + # If capturing parentheses, i.e. (), are used in pattern, then the text + # of all groups in the pattern are also returned as part of the resulting list. + # See https://docs.python.org/3/library/re.html#re.split for details + list_of_sentences_false=re.split('(\.|!|\?){1,}', text) + while list_of_sentences_false.count("")>0: + list_of_sentences_false.remove("") + + # For comparison, we also include the NLTK tokenizer + list_of_sentences_nltk=sent_tokenize(text) + + # Determine total number of sentences + sentence_count=len(list_of_sentences) + sentence_count_1=len(list_of_sentences_1) + sentence_count_2=len(list_of_sentences_2) + sentence_count_false=len(list_of_sentences_false) + sentence_count_nltk=len(list_of_sentences_nltk) + + # Ratio of # of words over # of sentences + wps=word_count/sentence_count + wps_1=word_count/sentence_count_1 + wps_2=word_count/sentence_count_2 + wps_false=word_count/sentence_count_false + wps_nltk=word_count/sentence_count_nltk + + # Write cik, file name, total number of words, total number of sentences, + # and WPS to the output file + output_file.write(cik+';'+filename+'_clean.txt;'+str(word_count)+';'+\ + str(sentence_count)+';'+str(sentence_count_1)+';'+str(sentence_count_2)+';'+\ + str(sentence_count_false)+';'+str(sentence_count_nltk)+';'+str(wps)+';'+\ + str(wps_1)+';'+str(wps_2)+';'+str(wps_false)+';'+str(wps_nltk)+'\n') + + # Close filing + input_file_10_k.close() + + +print("Finished") +output_file.close() +input_file.close() \ No newline at end of file diff --git a/lectures/programming/templates/NLTK_Sentiment_Analysis.py b/lectures/programming/templates/NLTK_Sentiment_Analysis.py new file mode 100644 index 0000000..af9aeca --- /dev/null +++ b/lectures/programming/templates/NLTK_Sentiment_Analysis.py @@ -0,0 +1,189 @@ +# -*- coding: utf-8 -*- +""" +Created on Sat Jul 15 21:56:41 2017 + +@author: Alexander Hillert, Goethe University Frankfurt +""" + +import nltk +import random +import collections +import re + +# We will use the NLTK Corpus containing 2,000 Movie Reviews of which 1,000 +# are positive and the other 1,000 are negative. +# if you do not have the movie review corpus yet, download it: +nltk.download("movie_reviews") + +from nltk.corpus import movie_reviews + + +# Create a list that contains the tuples of document and category. +# Category is "positive" or "negative" +documents = [] +# For all categories +for category in movie_reviews.categories(): + print("Category: "+str(category)) + # for all reviews (identified by file ID) in the respective category + for file_ID in movie_reviews.fileids(category): + # You have to put two parentheses to indicate that you want to add a tuple. + documents.append((list(movie_reviews.words(file_ID)),category)) + +# Print the first element (i.e. tuple) of documents. +print(documents[0]) +# print the words of the first movie review +print(documents[0][0]) +# print the first word of the first movie review +print(documents[0][0][0]) + +# print the classification of the first movie review +print(documents[0][1]) + +# print the classification of the 1000th review (the last negative one) +print(documents[999][1]) +# print the classification of the 1001st review (the first positive one) +print(documents[1000][1]) + +# The default order of the reviews is first all negative reviews and then all positive ones. +# Later we will build a training and a testing set. As we need to have positive and negative +# reports in both sets, we randomly shuffle the documents. +random.shuffle(documents) + +# Create a list of all words. +all_words = [] +for word in movie_reviews.words(): + # We use lower case words + #all_words.append(word.lower()) + if re.search("\A[a-z]",word.lower()): + # check whether the word is actually a word, i.e., whether it contains + # at least one letter + #if re.search("[a-z]",word.lower()): + # We use lower case words + all_words.append(word.lower()) + + +# What are the most frequently used words in the movie reviews? +# Alternative 1: +# FreqDist sort words from the most frequently used word to the least frequenty used word. +all_words_approach_1 = nltk.FreqDist(all_words) +print("Alternative 1: the top 15 words are: "+str(all_words_approach_1.most_common(15))) + +# Alternative 2: +# We can also determine the most frequent words by using Counters as we did +# in Problem 12 --> transform list of all words to a Counter +all_words_approach_2=collections.Counter(all_words) +top_15_words=all_words_approach_2.most_common(15) +print("Alternative 2: the top 15 words are: "+str(top_15_words)) +# -> identical results -> perfect. + +# Search for a word and see how often it appears. +print("The word 'stupid' appears "+str(all_words_approach_1["stupid"])+" in the movie reviews.") +# alternatively +print("The word 'stupid' appears "+str(all_words_approach_2["stupid"])+" in the movie reviews.") + +# How can we restrict the set of words that we use for training the Naive Bayes algorithm? +# -> create a list that only contains the top 3000 words +# get the top 3000 words +# Approach 1 using the NLKT.FreqDist from above +i=0 +top_3000_words=all_words_approach_1.most_common(3000) +list_top_3000_words_approach_1=[] +while i<3000: + list_top_3000_words_approach_1.append(top_3000_words[i][0]) + i=i+1 + +# Approach 2 using Counters from above +i=0 +top_3000_words=all_words_approach_2.most_common(3000) +list_top_3000_words_approach_2=[] +while i<3000: + list_top_3000_words_approach_2.append(top_3000_words[i][0]) + i=i+1 + +# select the list of approach 1 or 2 +word_features=list_top_3000_words_approach_1 + +# We need to identify the words we want to use for classification in the documents. +# We define a function for that. +def find_features(document): + words = set(document) + features = {} + # loop over all the words we consider for the classification + for word in word_features: + # The expression returns either true or false + features[word] = (word in words) + + return features + +# To get an idea what the function find_features() does let's print the features +# for one review. +print((find_features(movie_reviews.words('neg/cv000_29416.txt')))) + + +feature_set = [(find_features(review), category) for (review, category) in documents] + +# How does feature set looks like? +print(feature_set[0]) +# -> it is still a tuple +print(feature_set[0][0]) +# the first element are the 3000 words we use for classification with "True" or "False" +# depending on whether the words appear in the review +print(feature_set[0][1]) +# Is the information on whether the review is positive or negative + +# Define the training and testing set +# The training set comprises the first 1900 reviews and the testing set the last 100 reviews. +training_set=feature_set[:1900] +testing_set=feature_set[1900:] + +# First we have to train the Naive Bayes Classifier. +# It will determine which of the words from word_features appear mostly in positive +# reviews and which appear mostly in negative reviews. +classifier=nltk.NaiveBayesClassifier.train(training_set) +# The following command prints the 20 words that best discriminate between +# positive and negative reviews. +classifier.show_most_informative_features(20) + +# Let's classify the first element of feature_set +# The input for the classification need to be the list of words with True or False +print(classifier.classify(feature_set[0][0])) +print("The review is actually: "+str(feature_set[0][1])) + +# classify the 100 reports from the testing set +# they have the position 1900 to 2000 in the feature set. +i=1900 +classified_set=[] +while i<2000: + classified_set.append(classifier.classify(feature_set[i][0])) + i=i+1 + +# Compare classification result with actual category +i=0 +# In this list we save tuples of [predicted category, actual category] +comparison=[] +# In this list we simply save "accurate" and "inaccurate" +comparison_2=[] +while i<100: + comparison.append([classified_set[i],feature_set[i+1900][1]]) + # If the predicted and acutal classification match -> accurate + if comparison[i][0]==comparison[i][1]: + comparison_2.append("accurate") + else: + comparison_2.append("inaccurate") + i=i+1 + +print(comparison) +# We need the number of accurate and inaccurate classifications +comparison_counter=collections.Counter(comparison_2) +print(comparison_counter) + +# NLT can compute the accuracy directly +# What is the accuracy for the testing set? +print("Naive Bayes accuracy (in percent):", (nltk.classify.accuracy(classifier, testing_set))*100) +# Same value as from our own calculations -> perfect! + +# What is the accuracy for the training set? +print("Naive Bayes accuracy in training data (in percent):", (nltk.classify.accuracy(classifier, training_set))*100) +# Higher than in the testing dataset -> expected. + +print("completed!") diff --git a/lectures/programming/templates/Problem_11_determine_file_size_form.py b/lectures/programming/templates/Problem_11_determine_file_size_form.py new file mode 100644 index 0000000..6b5a046 --- /dev/null +++ b/lectures/programming/templates/Problem_11_determine_file_size_form.py @@ -0,0 +1,55 @@ +# -*- coding: utf-8 -*- +""" +Created on Wed Jul 29 11:07:10 2015 + + +@author: Alexander Hillert, Goethe University Frankfurt +""" + +# To determine file size we need the OS package +import os + +# Please adjust the directory to your machine. +directory="C:/Lehre/Textual Analysis/Programming/Files/" + +# Open the csv file containing the list of the 200 10-Ks +input_file=open(directory+'10-K_Sample_2011Q1_Input.csv','r',encoding="utf-8") +input_text=input_file.read() + +# Create output file +output_file=open(directory+'10-K_Sample_2011Q1_File_Size.csv','w',encoding="utf-8") +output_file.write('CIK;Filename;File_size_gross;File_size_net\n') + +# Split the input file in separate lines +input_text_line=input_text.split("\n") + +# In general, there can be empty lines in the input file. The following command +# deletes these lines. +while input_text_line.count("")>0: + input_text_line.remove("") + +# Loop over all lines +for i in range(1,len(input_text_line)): + print(str(i)) + # split the line into the two variables + variables=input_text_line[i].split(";") + # We need the CIK and the filename + cik=variables[0] + filename=variables[1] + filename=filename.replace('.txt','') + + # File size of the complete submission file (gross file size) + # You have to divide the result by 1024 to get the size in kilobyte + # The file size will be affected by html code and exhibits. + # APPLY THE COMMAND THAT IS SHOWN ON SLIDE 62. + size_gross=XXX/1024 + + # File size of the main text file (net file size) + # You have to divide the result by 1024 to get the size in kilobyte + size_net=XXX/1024 # SAME COMMAND AS FOR GROSS FILE SIZE BUT APPLIED TO THE _clean.txt + + output_file.write(cik+';'+filename+';'+str(size_gross)+';'+str(size_net)+'\n') + +print("Finished") +output_file.close() +input_file.close() diff --git a/lectures/programming/templates/Problem_12_Most_Frequent_Words_form.py b/lectures/programming/templates/Problem_12_Most_Frequent_Words_form.py new file mode 100644 index 0000000..736c2b0 --- /dev/null +++ b/lectures/programming/templates/Problem_12_Most_Frequent_Words_form.py @@ -0,0 +1,150 @@ +# -*- coding: utf-8 -*- +""" +Created on Tue Jul 11 09:19:54 2017 + +@author: Alexander Hillert, Goethe University Frankfurt +""" + +# We need regular expressions and counters (->collections) +import re +import collections +# for the bigram part, the sentence tokenizer is helpful +from nltk.tokenize import sent_tokenize + + +# Please adjust the directory to your machine. +directory="C:/Lehre/Textual Analysis/Programming/Files/" + +# Open the csv file containing the list of the 10-Ks from MSFT, KO, and 3M. +input_file=open(directory+'list_10-K_filings_textual_similarity.csv','r',encoding="utf-8") +input_text=input_file.read() + +# Split the input file in separate lines +input_text_line=input_text.split("\n") + +# In general, there can be empty lines in the input file. The following command +# deletes these lines. +while input_text_line.count("")>0: + input_text_line.remove("") + +# Create an empty counter variable +words_counter=collections.Counter() + +# counter for the extra task +bigram_counter=collections.Counter() + +# Loop over all lines +for i in range(1,len(input_text_line)): + print(str(i)) + # split the line into the eight variables + variables=input_text_line[i].split(";") + # We need the CIK (1st column) and the filename (8th column) + cik=variables[0] + filename_parts=re.split('/',variables[7]) + filename=filename_parts[3].replace('.txt','') + + # Open the ith 10-K in the list; remember to specify the encoding + # The files are available in the zip file "10-K_Textual_Similarity_edited.zip". + input_file_10_k=open(directory+'10-K_Textual_Similarity_edited/'+cik+'_'+\ + filename+'_edited.txt', 'r', encoding='ascii', errors='ignore') + # if the command above does not work (error like "file not found" or "directory not found") + # please use the following command: + #input_file_10_k=open(directory+'10-K_Textual_Similarity/'+cik+'_'+filename+'_edited.txt','r',encoding='ascii',errors='ignore') + + # read the content from the file + input_text_10_k=input_file_10_k.read() + + # THINK ABOUT WE SHOULD USE LOWER OR UPPER CASE CONSISTENTLY! + input_text_10_k= + + # Split text into words + list_of_words=re.split('\W{1,}',input_text_10_k) + + # Remember: there can be empty list elements! + # Make sure that empty list elements do not bias the word count -> delete them! + # You can use an approach similar to the one in lines 24 and 25. + COMMANDS TO BE ADDED + + + # Add the words to our counter + words_counter=words_counter+XXXX # COMPLETE THIS COMMAND + + + ############################################# + # optional part for the extra task on bigrams + ############################################# + # create an empty list for the bigrams + ''' + bigram_list=[] + + # split the text into sentences + list_of_sentences=XXX + + # create the bigrams IN EACH SENTENCE + for sentence in list_of_sentences: + # split the sentence into words + list_of_words=XXX + + # remove empty elements + while list_of_words.count("")>0: + list_of_words.remove("") + + # go over all potential two word combinations in the sentence. + for word_number in range(XXX,YYY): + # add the bigram (two words connected by whitespace) to the list + bigram_list.append(WORD_1 + " " + WORD_2) + + # same command as in line 70 + bigram_counter=bigram_counter+XXX + # end of extra task + ''' + + + # Close the 10-K filing + input_file_10_k.close() + +input_file.close() + + +###################### +# Top 100 single words +###################### +# Open the csv file containing the 100 most frequently used words +output_file=open(directory+'Problem_12_100_most_frequent_words.csv','w',encoding="utf-8",errors="ignore") +output_file.write("rank;word;count\n") + +# Get the 100 most frequent words +top_100_words=words_counter.XXXX # COMPLETE THIS COMMAND + +# Write the 100 most frequent words to the csv file +# REMEMBER: Python starts counting at 0, while humans start at 1. +# So, the most frequent words (rank 1 in human counting) is element 0 for Python. +for i in range(1,101): + output_file.write(str(i)+";"+XXXX (-> word)+";"+XXXX (-> the frequency of the word)+"\n") # COMPLETE THIS COMMAND + +# Close the csv file +output_file.close() + + +###################### +# Extra task +# Top 100 bigrams +###################### +''' +# Open the csv file containing the 100 most frequently used BIGRAMS +output_file_bigram=open(directory+'Problem_12_100_most_frequent_bigrams.csv','w',encoding="utf-8") +output_file_bigram.write("rank;word;count\n") + +# Get the 100 most frequent bigrams: same commend as above +top_100_bigrams=bigram_counter.XXX + +# Write the 100 most frequent bigrams to the csv file. +# same logic as above +for i in range(1,101): + output_file_bigram.write(str(i)+";"+XXXX (-> word)+";"+XXXX (-> the frequency of the word)+"\n") # COMPLETE THIS COMMAND + +# Close the csv file +output_file_bigram.close() +''' + +print("Task done!") diff --git a/lectures/programming/templates/Problem_13_Stemming_form.py b/lectures/programming/templates/Problem_13_Stemming_form.py new file mode 100644 index 0000000..cfd88b5 --- /dev/null +++ b/lectures/programming/templates/Problem_13_Stemming_form.py @@ -0,0 +1,83 @@ +# -*- coding: utf-8 -*- +""" +Created on Wed Jul 29 11:07:10 2015 + +@author: Alexander Hillert, Goethe University Frankfurt +""" + +# We need regular epressions and stemming. +import re +from nltk.stem import PorterStemmer +# Depending on how you would like to split the text in words, you may need tokenize. +from nltk.tokenize import word_tokenize + +# Please adjust the directory to your machine. +directory="C:/Lehre/Textual Analysis/Programming/Files/" + +# Open the csv file containing the list of the 10-Ks from MSFT, KO, and 3M +input_file=open(directory+'list_10-K_filings_textual_similarity.csv','r',encoding="utf-8") +input_text=input_file.read() + +# Split the Input File in separate lines +input_text_line=input_text.split("\n") + +# In general, there can be empty lines in the input file. The following command +# deletes these lines. +while input_text_line.count("")>0: + input_text_line.remove("") + +# Loop over all lines +for i in range(1,len(input_text_line)): + print(str(i)) + # split the line into the eight variables + variables=input_text_line[i].split(";") + # We need the CIK (1st column) and the filename (8th column) + cik=variables[0] + filename_parts=re.split('/',variables[7]) + filename=filename_parts[3].replace('.txt','') + + # Open the ith 10-K in the list; remember to specify the encoding + input_file_10_k=open(directory+'10-K_Textual_Similarity_edited/'+cik+'_'+filename\ + +'_edited.txt', 'r', encoding='ascii', errors='ignore') + # if the command above does not work (error like "file not found" or "directory not found") + # please use the following command: + #input_file_10_k=open(directory+'10-K_Textual_Similarity/'+cik+'_'+filename+'_edited.txt','r',encoding='ascii',errors='ignore') + + + # Get the text of the 10-K + input_text_10_k=input_file_10_k.read() + + # We need to tokenize the text because stem only works on a word by word basis. + # Stemming an entire document without splitting into words does not work! + # The problem is that \n gets lost in this process --> we cannot easily + # recreate the document. + # Solution: replace \n by \n and some indicator that there was a line break. + # For example replace("\n","\nHereWasALinebreak") + input_text_10_k=input_text_10_k.replace("\n",XXXX) + + # Split text into words + word_list=XXXX + + # Stem the text from above + text_stemmed='' + # LOOP ALL WORDS, STEM THEM AND RECONNECT THEM. + # WARNING: WHEN RECONNECTING WORDS YOU NEED TO INCLUDE A WHITESPACE BETWEEN + # THE WORDS. OTHERWISE, THE TEXT GETS MESSED UP. + for word in word_list: + + text_stemmed=text_stemmed+XXX # TO BE COMPLETED + + # To recreate the text, we need to replace the line break indicators by \n. + # WARNING: PAY ATTENTION TO UPPER/LOWER CASE, IT CAN CHANGE. + text_stemmed=text_stemmed.replace(XXXX,XXXX) # UNDO THE TRANSFORMATION FROM LINE 56. + + + # Open the output file for the stemmed text + output_file_10_k=open(directory+'10-K_Textual_Similarity_edited/'+cik+'_'+filename\ + +'_stemmed.txt', 'w', encoding='ascii', errors='ignore') + output_file_10_k.write(text_stemmed) + output_file_10_k.close() + input_file_10_k.close() + +input_file.close() +print("Task done!") \ No newline at end of file diff --git a/lectures/programming/templates/Problem_14_Jaccard_Similarity_form.py b/lectures/programming/templates/Problem_14_Jaccard_Similarity_form.py new file mode 100644 index 0000000..a49c6b5 --- /dev/null +++ b/lectures/programming/templates/Problem_14_Jaccard_Similarity_form.py @@ -0,0 +1,101 @@ +# -*- coding: utf-8 -*- +""" +Created on Wed Jul 29 11:07:10 2015 + +@author: Alexander Hillert, Goethe University Frankfurt +""" + +# For the full task, we need a large set of packages: +# regular expression, stemming, stop words, tokenization, and counters. +import re +#from nltk.tokenize import word_tokenize # NOT needed for the base comparison +#from nltk.corpus import stopwords # NOT needed for the base comparison +#from nltk.stem import PorterStemmer # NOT needed for the base comparison +from collections import Counter + + +#ps=PorterStemmer() # NOT needed for the base comparison + +# Please adjust the directory to your machine. +directory="C:/Lehre/Textual Analysis/Programming/Files/" + +# Open the csv file containing the list of the 10-Ks from MSFT, KO, and 3M +input_file=open(directory+'list_10-K_filings_textual_similarity.csv','r',encoding="utf-8") +input_text=input_file.read() + +# Split the input file in separate lines +input_text_line=input_text.split("\n") + +# In general, there can be empty lines in the input file. The following command +# deletes these lines. +while input_text_line.count("")>0: + input_text_line.remove("") + +# Open the output csv file in which we write the similarities +output_file=open(directory+'list_10-K_filings_textual_similarity_jaccard.csv','w',encoding="utf-8") +# Write variable names to first line +output_file.write(input_text_line[0]+';Jaccard\n') + + +# set default values for variables +word_list_old_edited="" +word_list_edited="" + +# Loop over all lines +for i in range(1,len(input_text_line)): + print(str(i)) + # split the line into the eight variables + variables=input_text_line[i].split(";") + # We need the CIK (1st column) and the filename (8th column) + cik=variables[0] + filename_parts=re.split('/',variables[7]) + filename=filename_parts[3].replace('.txt','') + + # Open the ith 10-K; remember to specify the encoding + input_file_10_k=open(directory+'10-K_Textual_Similarity_edited/'+cik+'_'+filename+\ + '_edited.txt', 'r', encoding='ascii', errors='ignore') + # if the command above does not work (error like "file not found" or "directory not found") + # please use the following command: + #input_file_10_k=open(directory+'10-K_Textual_Similarity/'+cik+'_'+filename+'_edited.txt','r',encoding='ascii',errors='ignore') + + + input_text_10_k=input_file_10_k.read() + + # Split text into words + word_list_edited=re.split("\W{1,}",input_text_10_k.lower()) + # Alternative using tokenize + #word_list_edited=word_tokenize(input_text_10_k.lower()) + + # check whether the previous entry of the list is from the same firm + permco=input_text_line[i].split(";")[1] + permco_old=input_text_line[i-1].split(";")[1] + + + ############################################ + # Sub Task 1: Jaccard for the _edited.txt + ############################################ + # compute Jaccard similarity if the previous filing is from the same firm + if permco==permco_old: + + counter_current_10k=Counter(XXX) + counter_previous_10k=Counter(XXX) + + intersection=XXX see "Introduction_Container_Datatypes.py" (at the end of the file) + union=XXXX see "Introduction_Container_Datatypes.py" (at the end of the file) + + jaccard_similarity=XXXx # ELEMENTS IN INTERSECTION / # ELEMENTS IN UNION + output_file.write(input_text_line[i]+";"+str(jaccard_similarity)+"\n") + else: + # The previous filing is not from the same firm -> cannot compute Jaccard similarity + output_file.write(input_text_line[i]+";"+"\n") + + # Save the current word vector to a separate variable for the comparison of the next report. + word_list_old_edited=word_list_edited + + # Close 10-K filing + input_file_10_k.close() + +input_file.close() +output_file.close() +print("Task done!") + diff --git a/lectures/programming/templates/Problem_17_Ridge_LASSO_text_data_form.py b/lectures/programming/templates/Problem_17_Ridge_LASSO_text_data_form.py new file mode 100644 index 0000000..ae21d69 --- /dev/null +++ b/lectures/programming/templates/Problem_17_Ridge_LASSO_text_data_form.py @@ -0,0 +1,159 @@ +# -*- coding: utf-8 -*- +""" +Created on Mon Mar 21 09:38:32 2022 + +@author: Alexander Hillert, Goethe University Frankfurt +""" + +import pandas as pd +import numpy as np +from sklearn.metrics import mean_squared_error +from sklearn.linear_model import RidgeCV +from sklearn.linear_model import LassoCV + + +# adjust the directory to your folder +directory="C:/Lehre/Machine Learning/Data/" + + +# import the data for this problem +# NOTE: IT MIGHT TAKE 3 TO 5 MINUTES TO OPEN THE DATA +data_frame=pd.read_csv(directory+"form_10-Ks_machine_learning_2007_2008_all_variables_v1.csv",sep=";") +# The rows of the data are the Form 10-K filings. Each line is one filing. +# The columns are the variables. After some identifying information, +# you find the word frequencies, i.e., how often a word (e.g., "the") shows up +# in a 10-K (e.g., 100 times) + + +# WARNING: THE DATA SET IS TOO LARGE TO BE DISPLAYED -> Variable Explorer +# and Console will crash. +# However, you can pick a small subset of the data and look at it. +# It list all columns=variables and the first three observations. +data_frame_example=data_frame.head(3) +# you can click on this variable in the variable explorer without Spyder crashing. + +# To see the variables included in the data use the following command +data_frame_column_names=data_frame.columns +# you can click on this variable in the variable explorer without Spyder crashing. +# This variables shows all column/variable names in a vector. + +# split the data set into the training and testing data +# we use the filings from year 2007 as training data +data_frame_train=data_frame[data_frame.year==2007] +# and the filing from year 2008 as testing data +data_frame_test=data_frame[data_frame.year==2008] + +# put the cumulative abnormal return around the filing date into a new variable. +# we follow Loughran and McDonald (2011) and use the CAR from t to t+4. +# training data +filing_car_train=data_frame_train["excess_ret_t0_t4"] +# testing data +filing_car_test=data_frame_test["excess_ret_t0_t4"] + +# so far, you have absolute word counts. For example, "loss" is found 5 times. +# As the length of the 10-Ks can be different, we scale by the number of words +# in the 10-K. +document_length_train=data_frame_train["number_of_words"] +document_length_test=data_frame_test["number_of_words"] + + +# the word frequencies are our independent variables -> restrict the data frame +# to those variables and drop all variables that are not needed +data_frame_train=data_frame_train.drop(columns=["cik","year","month","link","filing_type","filing_date","excess_ret_t0_t4","number_of_words"]) +data_frame_test=data_frame_test.drop(columns=["cik","year","month","link","filing_type","filing_date","excess_ret_t0_t4","number_of_words"]) + +# compute relative frequencies, i.e., divide the absolute word count by document length +data_frame_train=data_frame_train.div(document_length_train, axis=0) +data_frame_test=data_frame_test.div(document_length_test, axis=0) + +# standardize the data frames +# training data +data_frame_train_mean=TO BE COMPLETED +data_frame_train_sd=TO BE COMPLETED +data_frame_train_standardized=TO BE COMPLETED +# testing data +data_frame_test_mean=TO BE COMPLETED +data_frame_test_sd=TO BE COMPLETED +data_frame_test_standardized=TO BE COMPLETED + + +# There can be missing values in the standardized variables. +# They arise if the word count for a specific word is always zero in the training +# or in the testing data. In this case, the standard deviation is zero -> +# division by zero -> NaN. +# We replace these missing values by zero. +# training data +data_frame_train_standardized=data_frame_train_standardized.fillna(0) +# testing data +data_frame_test_standardized=data_frame_test_standardized.fillna(0) + +########################## +# Ridge regression +########################## +print("\nRidge regression - Using cross-validation\n") +# Regress the CARs on the word frequencies using Ridge regressions with cross-validation. +# In this regression, we use the training data. +# We use five-fold cross-validation. +# Recommendation for initial alphas/lambdas: 100000, 150000, and 200000 +regression_Ridge_cv=RidgeCV(alphas=TO BE COMPLETED, fit_intercept=True,cv=5).fit(TO BE COMPLETED) + +# get the optimal lambda +alpha_optimal_cv=TO BE COMPLETED +print("The optimal alpha is "+str(alpha_optimal_cv)) + +# what is the R2 in the training and testing data? +print("The R2 in the training data is: "+str(regression_Ridge_cv.TO BE COMPLETED)) +print("The R2 in the testing data is: "+str(regression_Ridge_cv.TO BE COMPLETED)) + +# Mean squared error using the cross-validated model +# predict y in the full training sample +filing_car_train_predicted_Ridge=regression_Ridge_cv.TO BE COMPLETED +# predict y in the testing sample +filing_car_test_predicted_Ridge=regression_Ridge_cv.TO BE COMPLETED +# Determine the MSE +print("The MSE in the full training data is: "+str(mean_squared_error(TO BE COMPLETED))) +print("The MSE in the testing data is: "+str(mean_squared_error(TO BE COMPLETED))) + + +###################### +# LASSO regression +###################### +print("\nLASSO regression - Using cross-validation\n") +# Regress the CARs on the word frequencies using LASSO regressions with cross-validation. +# In this regression, we use the training data. +# We use five-fold cross-validation. +# Recommendation for initial alphas/lambdas: 0.5, 1, and 1.5 +regression_Lasso_cv=LassoCV(alphas=TO BE COMPLETED, fit_intercept=True,cv=5).fit(TO BE COMPLETED) + +# get the optimal lambda +alpha_optimal_cv=TO BE COMPLETED +print("The optimal alpha is "+str(alpha_optimal_cv)) + +# get the R2 in the training data +print("The R2 in the training data is: "+str(regression_Lasso_cv.TO BE COMPLETED)) +# ... and testing data +print("The R2 in the testing data is: "+str(regression_Lasso_cv.TO BE COMPLETED)) + +# Mean squared error using the cross-validated model +# predict y in the full training sample +filing_car_train_predicted_Lasso=regression_Lasso_cv.TO BE COMPLETED +# predict y in the testing sample +filing_car_test_predicted_Lasso=regression_Lasso_cv.TO BE COMPLETED +# Determine the MSE +print("The MSE in the full training data is: "+str(mean_squared_error(TO BE COMPLETED))) +print("The MSE in the testing data is: "+str(mean_squared_error(TO BE COMPLETED))) + + +############################################################ +# Compare the betas from the Ridge and the LASSO regressions +############################################################ +output_file=open(directory+"comparison_coefficients_Ridge_LASSO_10-Ks.csv","w",encoding="utf-8") +output_file.write("index;word;coefficient_Ridge;coefficient_LASSO\n") + +# get the list of coefficients +for i in range (0,len(data_frame_train.columns)): + output_file.write(str(i)+';'+data_frame_train.columns[i]+';'+str(regression_Ridge_cv.coef_[i])+';'+str(regression_Lasso_cv.coef_[i])+'\n') + +output_file.close() + +print("Completed!") diff --git a/lectures/programming/templates/Problem_1_form.py b/lectures/programming/templates/Problem_1_form.py new file mode 100644 index 0000000..f0c20bc --- /dev/null +++ b/lectures/programming/templates/Problem_1_form.py @@ -0,0 +1,88 @@ +# -*- coding: utf-8 -*- +""" +Created on Fri Feb 15 21:37:53 2019 + +@author: Alexander Hillert, Goethe University Frankfurt +""" + +# Please adjust the directory to your machine. +directory="C:/Lehre/Textual Analysis/Programming/Files/" +# It is important to use a single forward slash / but not a single backslash \. + +# For MAC users: your directory will usually start with "/Users/". For example: +#directory="/Users/FirstnameLastname/Textual Analysis/Programming/Files/" + +# open the Fun_with_Python text file +input_file=open(directory+"Fun_with_Python.txt","r") + +################################### +# Programming Problem 1 +################################### + +# Task 1: open the file 'Fun_with_Python.txt' in Spyder and print its content +# The file can be found in our data folder + +# get the text from the file +input_text= TO BE COMPLETED +# print the content, i.e., the text of the file (previous line) +print(TO BE COMPLETED) + +# See slide 7 + + +# Task 2: Write the content of 'Fun_with_Python.txt' to a new text file +# with the name 'More_fun_with_Python.txt'. + +# ENTER YOUR COMMANDS HERE +# See slide 8. +# REMEMBER to close your file. If you do not close the new txt file, its content +# will not be saved to the hard drive. You will find an empty txt in your file manager. + + +# Task 3: Write a loop that prints some text (whatever you like) ten times. + +# ENTER YOUR COMMANDS HERE +# See slide 9. +# You have several options. While loop, for X in range() loop, etc. + + + +# Task 4: Print the text of the "Fun_with_Python" file line by line! + +# ENTER YOUR COMMANDS HERE +# See slide 10. +# You need a loop (Task 3) and in each iteration of the loop have Python print +# a line of text. + + + +# Task 5: Count how often the word 'good' appears in the document 'Fun_with_Python.txt'! + +# ENTER YOUR COMMANDS HERE +# See slide 11. + + + +# Task 6a: Now, print only the lines that contain the word 'good'! + +# ENTER YOUR COMMANDS HERE +# See also slide 12. +# You can use the line-by-line printing from Task 4 and combine it with the command ".count()" from Task 5 +# and add the if condition from slide 12. +# If condition: for each line check whether the specific line contains the word "good". + + + +# Task 7: print only the lines that start with the word 'This'! + +# ENTER YOUR COMMANDS HERE +# See slide 15. +# This is very similar to task 6. You only need to modify the if condition a bit. + + + + +# Task 8a: Replace the word "good" by "excellent" and display the new text! +# See slide 16. +# ENTER YOUR COMMANDS HERE + diff --git a/lectures/programming/templates/Problem_2_SEC_Filings_Part1_Identification_form.py b/lectures/programming/templates/Problem_2_SEC_Filings_Part1_Identification_form.py new file mode 100644 index 0000000..a5f640d --- /dev/null +++ b/lectures/programming/templates/Problem_2_SEC_Filings_Part1_Identification_form.py @@ -0,0 +1,72 @@ +# -*- coding: utf-8 -*- +""" +Created on Wed Jul 29 09:21:46 2015 + +@author: Alexander Hillert, Goethe Uni Frankfurt +""" + +# Please adjust the directory to your machine. +directory="C:/Lehre/Textual Analysis/Programming/Files/" +# It is important to use a single forward slash / but not a single backslash \. + +# For MAC users: your directory will usually start with "/Users/". For example: +#directory="/Users/FirstnameLastname/Textual Analysis/Programming/Files/" + +# Open the txt file with the SEC filings +sec_filings_file=open(directory+'formidx_1998Q1.txt','r') +sec_filings_text=sec_filings_file.read() + +# Create output file +output_file=open(directory+'SEC_Filings_Output.csv','w') + +# Create first line with variable names +# I use semicolons as separator in csv files. You can also use any other symbol. +# However, you should make sure that the separator is not part of the data/text +# you write to the file. +# For example, it would be problematic if you use comma as separator and have +# company names like "AMERICAN HEALTHCORP, INC." or "AMERICAN FUNDING, INC." +output_file.write("Form_Type;Company_Name;CIK;Filing_Date;Link\n") + + +# Split the Input File in separate line +# DO THE LINE SPIT +sec_filings_line= + +# Loop over all lines +# you can get the number of lines by computing the length of the list of lines, +# i.e. by determining the length of sec_filings_line. +for / while : # COMPLETE LOOP + + # Does the line refer to a form 10-K file? + if : # USE AN IF CONDITION TO TEST THIS -> see TASKS 7 and 8 of PROBLEM 1 + + # Split the line such that the information can be saved in separate + # variables + # Each information item has a fixed length in the overview files of the + # SEC. + # SEE SLIDE 18 FOR INFORMATION ON THE LENGTH OF THE SEPARATE COLUMNS. + + # COMPLETE THE COMMANDS BELOW + filing_type= + company_name= + cik= + filing_date= + link= + + # Is the 10-K filed between March 10 and March 20? + filing_day= + filing_month= + # Is the Filing Month March? + if : # COMPLETE THE IF-CONDITION + # Is the Filing Day between 10 and 20? + if : # COMPLETE THE IF-CONDITION + # The filing meets the conditions --> + # Write output to the csv file + output_file.write(filing_type+";"+company_name+";"+cik+";"+filing_date+";"+link+"\n") + + +# Close your input and output file in the end +sec_filings_file.close() +output_file.close() + +print("DONE") \ No newline at end of file diff --git a/lectures/programming/templates/Problem_2_SEC_Filings_Part2_Download_form.py b/lectures/programming/templates/Problem_2_SEC_Filings_Part2_Download_form.py new file mode 100644 index 0000000..a98c56c --- /dev/null +++ b/lectures/programming/templates/Problem_2_SEC_Filings_Part2_Download_form.py @@ -0,0 +1,103 @@ +# -*- coding: utf-8 -*- +""" +Created on Wed Jul 29 11:07:10 2015 + +@author: Alexander Hillert, Goethe Uni Frankfurt +""" + +# Please adjust the directory to your machine. +directory="C:/Lehre/Textual Analysis/Programming/Files/" +# It is important to use a single forward slash / but not a single backslash \. + +# For MAC users: your directory will usually start with "/Users/". For example: +#directory="/Users/FirstnameLastname/Textual Analysis/Programming/Files/" + + +# We need the urllib package for the download. +import urllib.request +# To automatically create folders, we need the os-module (OS: Operating System) +import os + +############################################################################### +# Technical issue +# As of March 2021, the SEC no longer accepts requests by the standard urllib settings +# you have to make some adjustments +############################################################################### +# Define a user agent +# Information on user agents are from https://docs.python.org/3/howto/urllib2.html: +# "Some websites dislike being browsed by programs, or send different versions +# to different browsers. By default urllib identifies itself as Python-urllib/x.y +# (where x and y are the major and minor version numbers of the Python release, +# e.g. Python-urllib/2.5), which may confuse the site, or just plain not work. +# The way a browser identifies itself is through the User-Agent header. +opener = urllib.request.build_opener() + +# The SEC recently rejected requests from Python-urllib/x.y user agent (see above) +# To still automatically download files, you have different options. +# I have listed three examples below but there are many more: +# For a comprehensive list see, e.g.: +# https://developers.whatismybrowser.com/useragents/explore/software_type_specific/web-browser/ +#opener.addheaders = [('User-agent', 'Mozilla')] +#opener.addheaders = [('User-agent', 'Chrome')] +opener.addheaders = [('User-agent', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64)')] +urllib.request.install_opener(opener) +# END of the technical issues + + + +# Open the csv file from part 1 of the problem +input_file=open(directory+'SEC_Filings_Output.csv','r') +input_text=input_file.read() + +# Split the Input File in separate lines +input_text_line=input_text.split("\n") + +# Create a subfolder in which the 10-K filings are saved. +# When you download a large number of filings I recommend using subfolders for +# each year or even for each year-month-day combination. +# In this problem, a single subfolder is fine. +os.makedirs( COMPLETE THE COMMAND ) +# See slide 18 for information on the os.-commands! +# IN GENERAL, IF YOU SEE AN UNKNOWN COMMAND, GOOGLE IT TO GET INFORMATION. + +# Loop over all lines of the csv file +# Like in part 1 of the problem, you can get the number of lines by computing +# the length of the list of lines, i.e. by determining the length of input_text_line. +for / while: # COMPLETE THE LOOP + # split the line into the five variables + # THE ; IS THE SEPARATOR IN THE CSV -> USE THE split() COMMAND + variables= + + # We only need the cik and the link to download the file. + # The cik is the 3rd variable. + # The link is the 5th variable + cik= + link= + + # identify the filename + # The link consistes of differnt parts: + # For example: edgar/data/1000753/0000950129-98-001035.txt + + link_parts= # USE A SPLIT + # 1st part: edgar + # 2nd part: data + # 3rd part: cik + # 4th part: file name -> see next line + filename=link_parts[FILE IN THE NUMBER HERE] + ########################################################################### + ############################ WARNING ###################################### + # The filename does NOT uniquely identify the SEC filings as different firms (CIKs) + # may use the same filename. Thus, when you only use the filename files + # might be overwritten. To avoid this problem you need to have a unique name. + # Combining CIK and filename results in a unique identifier, as the + # filename appears only once per firm (CIK). + # -> use the combination of CIK and filename: cik_filename + ########################################################################### + urllib.request.urlretrieve(TO BE COMPLETED) + # See slide 19 for information on the urllib.-commands. + + +# Close your input file +input_file.close() + +print("DONE") \ No newline at end of file diff --git a/lectures/programming/templates/Problem_4_Application_Regular_Expressions_form.py b/lectures/programming/templates/Problem_4_Application_Regular_Expressions_form.py new file mode 100644 index 0000000..ccb543d --- /dev/null +++ b/lectures/programming/templates/Problem_4_Application_Regular_Expressions_form.py @@ -0,0 +1,121 @@ +# -*- coding: utf-8 -*- +""" +Created on Tue Apr 12 15:50:22 2016 + +@author: Alexander Hillert, Goethe University Frankfurt +""" + +# Import regular expressions and BeautifulSoup +import re +from bs4 import BeautifulSoup + +# Please adjust the directory to your machine. +directory="C:/Lehre/Textual Analysis/Programming/Files/" +# It is important to use a single forward slash / but not a single backslash \. +# For MAC users: your directory will usually start with "/Users/". For example: +#directory="/Users/FirstnameLastname/Textual Analysis/Programming/Files/" + +# Open the document +input_file=open(directory+'Exercise_4_Application_Regular_Expressions.txt','r',encoding="utf-8") +input_text=input_file.read() + +####################### +# Task 1: remove tables +####################### +# Approach +# We search for tables until we find no more html tags that indicate the +# beginning of a table. +# Search for the start html-tag
+table_match=re.search(TO BE COMPLETED, input_text) +while : # YOU NEED A LOOP THAT SEARCHES FOR TABLES + # When we have identified a match, i.e. the start of a table, we save + # the position of the beginning of the table in the variable "start_table" + table_start_match=re.search(XXX, input_text) + start_table=table_start_match.start() + # Next, we search for the corresponding html tag that indicates the end of + # the table and save the end position to the variable "end_table" + + # REPEAT THE COMMANDS ABOVE FOR THE END OF TABLE + table_end_match= + end_table= + + # We can print the text between the start and end html tag to check whether + # the table has been identified correctly. + print("The text below is a table!\n"+input_text[start_table:end_table]) + + # the text between the beginning and end of the html tags is the part which + # we would like to delete. + # Consequently, we keep the text before the beginning of the table as well + # as the text after the ending of the table. + input_text=TO BE COMPLETED + # Next, we need to check whether there is another table in the rest of the + # text. + table_match=re.search(SAME COMMAND AS IN LINE 27, input_text) + # As long as "table_match" exists, i.e. we regex result in a match, the loop + # will continue. + +######################### +# Task 2: remove Exhibits +######################### +# Exhibits have the following structure +# +# EX... +# ... +# + +# THE APPROACH IS THE SAME AS THE SEARCH FOR TABLES ABOVE +exhibit_match=re.search(, input_text) +while : + # get the beginning of the exhibit + exhibit_start_match= + start_exhibit= + # As the exhibits are at the end of the 10-K filing it would not be + # necessary to include an end position. We could also drop the entire text + # after "EX" + # However, for completeness, we will define an end + exhibit_end_match= + end_exhibit= + # Print the identified text to check whether the exhibit has be identified + # correctly + print("The text below is a exhibit!\n"+input_text[start_exhibit:end_exhibit]) + + input_text=TO BE COMPLETED + # Check whether there are further exhibits + exhibit_match=re.search(SAME COMMAND AS IN LINE 65, input_text) + +########################## +# Task 3: remove html code +########################## +# Alternative 1: remove html code without Beautiful Soup +text=re.sub(TO BE COMPLETED, '', input_text) +# Use a regex that searches for a "<" followed by at least one character that must not +# equal > and is completed by >. + +# Alternative 2: remove html code using Beautiful Soup +html_text=BeautifulSoup(TO BE COMPLETED) +text=html_text.TO BE COMPLETED + +######################## +# Task 4: delete numbers +######################## + +# YOU MAY NEED MULTIPLE COMMANDS TO DELETE ALL NUMBERS +# Remember that you can have different formats, e.g., 1,234.56 or 0.12 or 1,234,567 +text=re.sub(TO BE COMPLETED,'',text) + +######################## +# Task 5: delete symbols +######################## +text=re.sub(TO BE COMPLETED,'',text) + + +# Open the output file for the pure text +output_file=open(directory+'Exercise_4_Application_Regular_Expressions_clean.txt','w',encoding="utf-8") +output_file.write(text) + +# close all files +input_file.close() +output_file.close() + +print("DONE") + diff --git a/lectures/programming/templates/Problem_5_Clean_SEC_Filing_form.py b/lectures/programming/templates/Problem_5_Clean_SEC_Filing_form.py new file mode 100644 index 0000000..95aff0a --- /dev/null +++ b/lectures/programming/templates/Problem_5_Clean_SEC_Filing_form.py @@ -0,0 +1,164 @@ +# -*- coding: utf-8 -*- +""" +Created on Tue Apr 12 15:50:22 2016 + +@author: Alexander Hillert, Goethe University Frankfurt +""" +import re +from bs4 import BeautifulSoup + +# Please adjust the directory to your machine. +directory="C:/Lehre/Textual Analysis/Programming/Files/" +# It is important to use a single forward slash / but not a single backslash \. +# For MAC users: your directory will usually start with "/Users/". For example: +#directory="/Users/FirstnameLastname/Textual Analysis/Programming/Files/" + +# Open the 10-K +input_file=open(directory+'0000950130-98-001359.txt','r',encoding='ascii',errors='ignore') +input_text=input_file.read() + +################################ +# Remove tables +# Same approach as in Problem 4 +################################ +# Sometimes it is helpful to print the text parts that are deleted. In this +# example, we will print the first two tables that we delete. +i=1 +table_match=re.search(ENTER THE REGEX, input_text) +while table_match: + # Search for the beginning of the table + table_start_match=re.search(REGEX FOR BEGINNING OF TABLE, input_text) + start_table= + # search for the end of the table + table_end_match=REGEX FOR END OF TABLE + end_table= + # The if condition and the printing are just for illustrative purposes. + # The commands display the first two tables that are removed from the text. + if i<=2: + print("This is the "+str(i)+". Table in the 10-K.\n"+input_text[start_table:end_table]+"\n") + i=i+1 + # remove the table from the original text + input_text=TO BE COMPLETED + # check whether there are further tables + # same command as in line 24 + table_match=re.search(XXXXXXX, input_text) + +################################ +# Remove exhibits +# Same approach as in Problem 4 +################################ +# Exhibits have the following structure +# +# EX... +# ... +# +# Sometimes it is helpful to print the text parts that are deleted. In this +# example, we will print the first exhibit that we delete. +i=1 +exhibit_match=re.search(ENTER THE REGEX, input_text) +while exhibit_match: + # Search for the beginning of the exhibit + exhibit_start_match=re.search(REGEX FOR BEGINNING OF EXHIBIT, input_text) + start_exhibit= + # Search for the end of the exhibit + # CAUTION: search only in the text after the beginning of the exhibt, as + # the end-term also appears earlier (e.g. end of main document) + exhibit_end_match=re.search(REGEX FOR END OF EXHIBIT, input_text[START OF EHIBIT UNTIL END OF TEXT]) + end_exhibit= + if i<=1: + print("This is the "+str(i)+". Exhibit in the 10-K.\n"+input_text[start_exhibit:end_exhibit]+"\n") + i=i+1 + # remove exhibit from the original text + input_text= + # check whether there are further exhibits + # same command as in line 55 + exhibit_match=re.search(XXXXXXX, input_text) + +################## +# Remove html code +################## +# you can use BeautifulSoup for simplicity +html_text=BeautifulSoup(input_text, 'html.parser') +text=html_text.get_text() + +############################ +# Remove the Document Header +############################ +# There are different possibilities how one can define the start of the main part of the text +# In general, you should delete all text that is uninformative for your analysis. +header_match=re.search(END OF DOCUMENT HEADER, text) +if header_match: + # Drop the document header and keep only the rest of the text after the header. + text=text[XXXXXXXXXXXXXXX] + + +################################################# +# Delete the text in "PART IV" +# This procedure is optional. Look at "Part IV" and decide whether you favor +# the approach. I think that the part should be dropped, as it is just a list +# of exhibits, some mandatory text required by the SEC [indicated by the +# capital letters in the "SIGNATURES" section]. +################################################# +''' +# Alternative 1: go over all matches but keep only the last one +for match in re.finditer('\s{2,}PART IV\s{0,}\n', text): + pass +# match now contains the last match. +# Delete the text after the last match +text=text[:match.start()] + +# Alternative 2: save the positions of all matches (more general approach) +list_start_matches=[] +list_end_matches=[] +for match in re.finditer('\s{2,}PART IV\s{0,}\n', text): + list_start_matches.append(match.start()) + list_end_matches.append(match.end()) +# Position of last match +print(list_start_matches[len(list_start_matches)-1]) +print(list_end_matches[len(list_start_matches)-1]) + +# Delete the text after the last match +text=text[:list_start_matches[len(list_start_matches)-1]] +''' + +# Delete item numbers +# This is optional. It removes "Item 1.", "ITEM 1.", "Item 10.", "Item 7A." +text=re.sub(TO BE COMPLETED,'',text) + +# Delete numbers +# You can use the code from Problem 4. +text=re.sub(TO BE COMPLETED,'',text) + + +# Hyphens can be used to indicate that the word is continued in the next +# line. For example, "Micro-\nsoft" (\n is the line feed). +# Delete hyphens that are followed by a line feed. +text=re.sub(TO BE COMPLETED,'',text) + +# Delete symbols +# You can use the code from Problem 4. +text=re.sub(TO BE COMPLETED,'',text) + +# Delete dots and commas that are not part of sentences, i.e. commas and dots +# that are preceded by whitespace or line break and that are followed by +# whitespace or line break. +text=re.sub('\n(\.|,)\n','\n',text) + +# Drop single-character words +# One can argue whether one should implement this procedure. Loughran and +# McDonald argue in one of their papers in favor of it. +# To make sure that there is just one letter, we require that there is a word +# boundary (\W) before and after. We use a positive backward looking and a +# positive forward looking condition for this to assure that the word boundary +# get not deleted as well. +text=re.sub(TO BE COMPLETED,' ',text) + + +# Open the output file for the pure text +output_file=open(directory+'0000950130-98-001359_clean.txt','w',encoding='ascii',errors='ignore') +output_file.write(text) + +input_file.close() +output_file.close() +print("COMPLETED.") + diff --git a/lectures/programming/templates/Problem_7_Tone_Analysis_form.py b/lectures/programming/templates/Problem_7_Tone_Analysis_form.py new file mode 100644 index 0000000..3758f2e --- /dev/null +++ b/lectures/programming/templates/Problem_7_Tone_Analysis_form.py @@ -0,0 +1,117 @@ +# -*- coding: utf-8 -*- +""" +Created on Wed Apr 13 22:43:32 2016 + +@author: Alexander Hillert, Goethe University Frankfurt +""" + +import re + +# Please adjust the directory to your machine. +directory="C:/Lehre/Textual Analysis/Programming/Files/" + +# Open the dictionary +# The dictionary has been obtained from Bill McDonald's webpage +# http://www3.nd.edu/~mcdonald/Word_Lists.html +# --> LoughranMcDonald_MasterDictionary_2014.xlsx +# --> select negative words and copy them to a txt file +file_word_list=open(directory+'LMD_Neg.txt','r',encoding="utf-8") +word_list=file_word_list.read() +# LOOK AT THE FILE. ARE THE WORDS IN UPPER OR IN LOWER CASE? +# MAKE SURE THAT YOU USE A CONSISTENT FORMAT FOR THE TEXT AND THE DICTIONARY. +# THE COMMANDS ARE .lower() AND .upper(). + +# CREATE A LIST OF NEGATIVE WORDS -> SPLIT THE TEXT +negative_words=word_list.XXXX + + +# Open the csv file containing the list of the 200 10-Ks +input_file=open(directory+'10-K_Sample_2011Q1_Input.csv','r',encoding="utf-8") +input_text=input_file.read() + +# Split the input file in separate lines +input_text_line=input_text.split("\n") + +# In general, there can be empty lines in the input file. The following command +# deletes these lines. +while input_text_line.count("")>0: + input_text_line.remove("") + +# Create output file +output_file=open(directory+'10-K_Sample_2011Q1_Output_Negative_Tone.csv','w',encoding="utf-8") +# Write variable names to the first line of the output file +output_file.write('CIK;Filename;Number_Words;Number_Negative_Words;\ +Percentage_Negative_Words\n') + +# Loop over all lines of the csv file +for i in range(1,len(input_text_line)): + # If the execution of your scripts takes some time, printing the loop iterator + # gives you an impression of the overall progress made. + print(str(i)) + + # split the line into the two variables + variables=input_text_line[i].split(";") + # We need the CIK (1st column) and the filename (2nd column) + cik=variables[0] + filename=variables[1] + + # modify file name to open the edited files + filename=filename.replace('.txt','') + # Open the ith 10-Ks in the list + input_file_10_k=open(directory+'10-K_Sample_clean/'+cik+'_'+filename+'_clean.txt','r',\ + encoding='ascii',errors='ignore') + input_text_10_k=input_file_10_k.read() + + # CONVERT THE TEXT TO UPPER OR LOWER CASE (see comment above) + # It is important that the formatting (lower case vs. upper case) of the word list + # and the document is identical. Remember that you have typically lower and upper case + # letters in documents -> modify text + text=input_text_10_k.XXXXXX + + # Split the text in words to determine the total number of words + # LOOK AT THE REGEX INTRODUCTION FOR A SUITABLE SPLIT VARIABLE. + list_of_words=re.split(XXXXX, text) + + # ARE THERE EMPTY ELEMENTS IN THE LIST OF WORDS? + # Make sure that empty list elements do not bias the word count -> delete them! + # You can use an approach similar to the one in lines 37 and 38. + COMMANDS TO BE ADDED + + # Determine the total number of words + # COUNT THE NUMBER OF ELEMENTS IN list_of_words + word_count=XXXX + + # Reset the number of negative words to zero + negative_count=0 + # For each negative word, count the number of occurrences + for j in range(len(negative_words)): + + HERE YOU NEED TO COUNT HOW OFTEN THE jth NEGATIVE WORD IS FOUND IN THE TEXT. + COMPARE THE TWO CASES BELOW -> EXECUTE THE COMMANDS (see lines below) IN + THE COMMAND LINE AND COMPARE THE RESULTS. + WHICH ALTERNATIVE IS THE RIGHT APPROACH? + + ALTERNATIVE 1: + list_of_words=["abandon","abandoned","abandonment"] + list_of_words.count("abandon") + ALTERNATIVE 2: + text_of_words="abandon abandoned abandonment" + text_of_words.count("abandon") + + ADD THE CORRECT COUNT OF NEGATIVE WORD j TO YOUR OVERALL COUNT. + negative_count=negative_count+XXXXX + + # Get the percentage of negative words + percentage_negative=negative_count/word_count + + # Write cik, file name, total number of words, number of negative words, + # and the percentage of negative words to output file. + output_file.write(cik+';'+filename+'_clean.txt;'+str(word_count)+';'\ + +str(negative_count)+';'+str(percentage_negative)+'\n') + + # Close filings + input_file_10_k.close() + +print("Finished") +output_file.close() +input_file.close() diff --git a/lectures/programming/templates/Problem_8_Tone_Analysis_Positive_Words_form.py b/lectures/programming/templates/Problem_8_Tone_Analysis_Positive_Words_form.py new file mode 100644 index 0000000..3373913 --- /dev/null +++ b/lectures/programming/templates/Problem_8_Tone_Analysis_Positive_Words_form.py @@ -0,0 +1,131 @@ +# -*- coding: utf-8 -*- +""" +Created on Wed Apr 13 22:43:32 2016 + +@author: Alexander Hillert +""" + +import re + +# Please adjust the directory to your machine. +directory="C:/Lehre/Textual Analysis/Programming/Files/" + +# Open the dictionary +# The dictionary is obtained from Bill McDonald's webpage +# http://www3.nd.edu/~mcdonald/Word_Lists.html +# --> LoughranMcDonald_MasterDictionary_2014.xlsx +# --> select positive words and copy them to a txt file +file_word_list=open(directory+'LMD_Pos.txt','r',encoding="utf-8") +word_list=file_word_list.read() + +# LIKE IN PROBLEM 7, YOU HAVE TO APPLY A CONSISTENT FORMAT TO BOTH THE LMD-WORDS +# AND THE TEXT OF THE 10-Ks. +positive_words=word_list.split() + +# Open the csv file containing the list of the 200 10-Ks +input_file=open(directory+'10-K_Sample_2011Q1_Input.csv','r',encoding="utf-8") +input_text=input_file.read() + +# Split the Input File in separate lines +input_text_line=input_text.split("\n") + +# In general, there can be empty lines in the iput file. The following command +# deletes these lines. +while input_text_line.count("")>0: + input_text_line.remove("") + +# Create output file +output_file=open(directory+'10-K_Sample_2011Q1_Output_Positive_Tone.csv','w',encoding="utf-8") +# Write variable names to the first line of the output file +output_file.write('CIK;Filename;Number_Words;Number_Pos_Words;Number_Pos_Words_adj;'\ ++'Percent_Pos_Words;Percent_Pos_Words_adj\n') + + +# Iterate the list of the 200 10-K filings +for i in range(1,len(input_text_line)): + # If the execution of your scripts takes some time, printing the iterator + # gives you an impression of the overall progress made. + print(str(i)) + + # split the line into the two variables + variables=input_text_line[i].split(";") + # We need the CIK (1st column) and the filename (2nd column) + cik=variables[0] + filename=variables[1] + + # modify file name to open the edited files + filename=filename.replace('.txt','') + + # Open the ith 10-K in the list + input_file_10_k=open(directory+'/10-K_Sample_clean/'+cik+"_"+filename+'_clean.txt','r',\ + encoding='ascii',errors='ignore') + input_text_10_k=input_file_10_k.read() + + # It is important that the formatting (lower case vs. upper case) of the word list + # and the document are identical. Remember that you have typically lower and upper case + # letters in documents -> modify text + text=XXXX # CONSISTENT FORMAT + + # Split the text in single words to determine the total number of words + list_of_words=re.split(XXXX, text) # USE THE SAME COMMAND AS IN PROBLEM 7 + + # ARE THERE EMPTY ELEMENTS IN THE LIST OF WORDS? + # Make sure that empty list elements do not bias the word count -> delete them! + # You can use an approach similar to the one in lines 34 and 35. + COMMANDS TO BE ADDED + + # Determine total number of words + word_count=XXXX # SAME COMMAND AS IN PROBLEM 7 + + # Reset the number of positive words and positive words adj. for negations to zero. + positive_count=0 + positive_count_adj=0 + # For each positive word, count the number of occurrences + for j in range(len(positive_words)): + # standard count operation without controlling for negations + positive_words_found=list_of_words.count(positive_words[j]) + + # Loughran and McDonald (2011, JF, p.44): "We account for simple negation + # only for Fin-Pos words. Simple negation is taken to be observations + # of one of six words (no, not, none, neither, never, nobody) occurring + # within three words preceding a positive word. + + # When we have identified positive words we need to search for negations + while positive_words_found>0: + # identify the position of the matched positive word in the list of all words + position_of_word=list_of_words.XXXXX # THE COMMAND .index() IS HELPFUL HERE + + # identify the three words before the positive word and add them to a list + list_negation=[3_WORDS_BEFORE_MATCH,2_WORDS_BEFORE_MATCH,1_WORD_BEFORE_MATCH] + # REPLACE THE THREE PLACEHOLDERS BY THE CORRESPONDING ELEMENTS OF list_of_words + + # check whether one of the three words in list_negation is a negation + negation_found=list_negation.count('no')+list_negation.count('not')+XXXX TO BE COMPLETED + + if negation_found==0: + # no negation + positive_count_adj=positive_count_adj+1 + positive_count=positive_count+1 + else: + # negation + positive_count=positive_count+1 + + # delete the matched positive words in the original document + list_of_words[position_of_word]=XXX + # THIS OPERATION IS IMPORTANT BECAUSE OTHERWISE WE WILL GET AN ENDLESS LOOP + + # check whether there are further matches of the jth positive word + positive_words_found=list_of_words.count(positive_words[j]) + + # Write cik, file name, total number of words, and number of positive + # and adjusted positive words to the output file + output_file.write(cik+';'+filename+'_clean.txt;'+str(word_count)+';'+\ + str(positive_count)+';'+str(positive_count_adj)+';'+str(positive_count/word_count)+\ + ';'+str(positive_count_adj/word_count)+'\n') + + # Close filings + input_file_10_k.close() + +print("Finished") +output_file.close() +input_file.close() \ No newline at end of file diff --git a/lectures/programming/templates/Problem_9_Words_per_Sentence_form.py b/lectures/programming/templates/Problem_9_Words_per_Sentence_form.py new file mode 100644 index 0000000..f21169c --- /dev/null +++ b/lectures/programming/templates/Problem_9_Words_per_Sentence_form.py @@ -0,0 +1,70 @@ +# -*- coding: utf-8 -*- +""" +Created on Wed Apr 13 22:43:32 2016 + +@author: Alexander Hillert, Goethe University Frankfurt +""" + +# We split the text into words and sentences using regular expression +import re + +directory="C:/Lehre/Textual Analysis/Programming/Files/" + +# Open the csv file containing the list of the 200 10-Ks +input_file=open(directory+'10-K_Sample_2011Q1_Input.csv','r',encoding="utf-8") +input_text=input_file.read() + +# Create output file +output_file=open(directory+'10-K_Sample_2011Q1_Output_WPS.csv','w',encoding="utf-8") +# Write variable names to the first line of the output file +output_file.write('CIK;Filename;Number_Words;Number_of_Sentences;WPS\n') + +# Split the Input File in separate lines +input_text_line=input_text.split("\n") + +# In general, there can be empty lines in the input file. The following command +# deletes these lines. +while input_text_line.count("")>0: + input_text_line.remove("") + +# Loop over all lines +for i in range(1,len(input_text_line)): + print(str(i)) + # split the line into the two variables + variables=input_text_line[i].split(";") + # We need the CIK and the filename + cik=variables[0] + filename=variables[1] + filename=filename.replace('.txt','') + + # Open the ith 10-K in the list + input_file_10_k=open(directory+'10-K_Sample_clean/'+cik+"_"+filename+'_clean.txt','r',\ + encoding='ascii',errors='ignore') + text=input_file_10_k.read() + + # Determine number of sentences and number of words + # DETERMINE THE NUMBER OF WORDS; YOU KNOW THE COMMAND FROM PROBLEMS 7 AND 8. + list_of_words=re.split(XXX, text) + # Determine total number of words + word_count=XXX + # Split the text by symbols that indicate the end of a sentence + # to determine the total number of sentences + list_of_sentences=re.split(XXX, text) + # Determine total number of sentences + sentence_count=XXX + + # Ratio of # of words over # of sentences + wps=word_count/sentence_count + + # Write cik, file name, total number of words, total number of sentences, + # and WPS to the output file + output_file.write(cik+';'+filename+'_clean.txt;'+str(word_count)+';'+\ + str(sentence_count)+';'+str(wps)+'\n') + + # Close filing + input_file_10_k.close() + + +print("Finished") +output_file.close() +input_file.close() \ No newline at end of file