diff --git a/gsoc_application_projects/2020/influenza/web/Dockerfile b/gsoc_application_projects/2020/influenza/dash/Dockerfile similarity index 87% rename from gsoc_application_projects/2020/influenza/web/Dockerfile rename to gsoc_application_projects/2020/influenza/dash/Dockerfile index c6f2e33..8aafafc 100644 --- a/gsoc_application_projects/2020/influenza/web/Dockerfile +++ b/gsoc_application_projects/2020/influenza/dash/Dockerfile @@ -29,9 +29,6 @@ COPY . / RUN pip --no-cache-dir install -r requirements.txt -ENV FLASK_APP=influenza_estimator -ENV FLASK_ENV=development +EXPOSE 8050 -EXPOSE 5000 - -CMD ["flask", "run", "-h", "0.0.0.0", "-p", "5000"] +CMD ["python", "app.py", "-ip", "0.0.0.0", "-p", "8050"] \ No newline at end of file diff --git a/gsoc_application_projects/2020/influenza/web/README.md b/gsoc_application_projects/2020/influenza/dash/README.md similarity index 63% rename from gsoc_application_projects/2020/influenza/web/README.md rename to gsoc_application_projects/2020/influenza/dash/README.md index 7292c58..b464202 100644 --- a/gsoc_application_projects/2020/influenza/web/README.md +++ b/gsoc_application_projects/2020/influenza/dash/README.md @@ -11,8 +11,8 @@ You will find instructions to install docker engine on your system [here.](https ### Pulling and running the docker image ```commandline -docker pull tejsukhatme/influenza_estimator:random_forest -docker run -it -p 5000:5000 tejsukhatme/influenza_estimator:random_forest +docker pull tejsukhatme/influenza_estimator:latest +docker run -it -p 5000:5000 tejsukhatme/influenza_estimator:latest ``` @@ -21,7 +21,7 @@ docker run -it -p 5000:5000 tejsukhatme/influenza_estimator:random_forest cd into the folder of choice and enter: ```commandline git pull https://github.com/Hephaestus12/applications.git -cd applications/gsoc_application_projects/2020/influenza/web/ +cd applications/gsoc_application_projects/2020/influenza/dash/ ``` ### Prepare the Environment @@ -40,9 +40,7 @@ pip install -r requirements.txt ### Running the application ```commandline -export FLASK_APP=influenza_estimator -export FLASK_ENV=development -flask run +python app.py ``` Your flask application should be successfully running once this is done. @@ -58,36 +56,18 @@ Send a GET request to the following Endpoint: ``` -#### GET older influenza ESTIMATE numbers as a JSON file for all countries. +#### GET older influenza PREDICTED ESTIMATE numbers as a JSON file for all the countries. Send a GET request to the following Endpoint: ``` /api/v1.0/all/weekly/estimate/// ``` -#### GET older influenza INCIDENCE numbers as a JSON file for all countries. +#### GET older influenza INCIDENCE numbers as a JSON file for all the countries. Send a GET request to the following Endpoint: ``` /api/v1.0/all/weekly/incidence/// ``` -#### GET the Live influenza ESTIMATE number as a JSON file for one country. -Send a GET request to the following Endpoint: -``` -/api/v1.0/specific/current/ -``` - - -#### GET the older influenza ESTIMATE number as a JSON file for one country.. -Send a GET request to the following Endpoint: -``` -/api/v1.0/specific/weekly/estimate/// -``` - - -#### GET the older influenza INCIDENCE number as a JSON file for one country. -Send a GET request to the following Endpoint: -``` -/api/v1.0/specific/weekly/incidence/// -``` +This frontend is inspired from one of Plotly Dash's sample projects -----> https://github.com/plotly/dash-sample-apps/tree/master/apps/dash-oil-and-gas \ No newline at end of file diff --git a/gsoc_application_projects/2020/influenza/dash/app.py b/gsoc_application_projects/2020/influenza/dash/app.py new file mode 100644 index 0000000..7cde21e --- /dev/null +++ b/gsoc_application_projects/2020/influenza/dash/app.py @@ -0,0 +1,484 @@ +# -*- coding: utf-8 -*- +"""Module starts and runs the web-application. + +Author: Tej Sukhatme + +""" + +# This frontend is inspired from one of Plotly Dash's sample projects - --- -> https: // github.com/plotly/dash-sample-apps/tree/master/apps/dash-oil-and-gas +# Import required libraries +import dash +import pandas as pd +from dash.dependencies import Input, Output, State, ClientsideFunction +import dash_core_components as dcc +import dash_html_components as html +from datetime import datetime +import util +import json +import argparse +import plotly.express as px + +import random + +# Multi-dropdown options +from config import COUNTRIES + +parser = argparse.ArgumentParser(description='Run the Influenza estimator at the correct port') +parser.add_argument('-ip', '--ipAddress', default='0.0.0.0') +parser.add_argument('-p', '--port', default='8050') +args = parser.parse_args() + + + + + +app = dash.Dash( + __name__, meta_tags=[{"name": "viewport", "content": "width=device-width"}] +) +server = app.server + +country_options = [ + {"label": "Austria", "value": "austria"}, + {"label": "Belgium", "value": "belgium"}, + {"label": "Germany", "value": "germany"}, + {"label": "Italy", "value": "italy"}, + {"label": "Netherlands", "value": "netherlands"}, +] + +df = {} +for country in COUNTRIES: + df[country] = pd.read_csv('data/final/'+country+'.csv') + df[country] = df[country].reset_index().set_index('week') + +year_disable = [True for i in range(14)] +country_years = { + 'austria': [2007, 2008, 2009, 2010, 2011, 2018, 2019, 2020], + 'belgium': [2007, 2008, 2020], + 'germany': [2020], + 'italy': [2020], + 'netherlands': [2007, 2008, 2020], + } +data = util.DataGateway() + +app.layout = html.Div( + [ + dcc.Store(id="aggregate_data"), + # empty Div to trigger javascript file for graph resizing + html.Div(id="output-clientside"), + html.Div( + [ + html.Div( + [ + html.Img( + src=app.get_asset_url("shogun-logo.png"), + id="dart-image", + style={ + "height": "auto", + "width": "100px", + "margin-bottom": "25px", + }, + ), + ], + className="one-third column", + ), + html.Div( + [ + html.Div( + [ + html.H1( + "Influenza Estimator", + style={"margin-bottom": "0px"}, + ), + html.H3( + "Shogun ML", style={"margin-top": "0px"} + ), + ] + ) + ], + className="one-half column", + id="title", + ), + html.Div( + [ + html.A( + html.Button("Source Code", id="learn-more-button"), + href="https://github.com/shogun-toolbox/applications/tree/master/gsoc_application_projects/2020/influenza", + ) + ], + className="one-third column", + id="button", + ), + ], + id="header", + className="row flex-display", + style={"margin-bottom": "25px"}, + ), + html.H3( + "Total Number of Cases:", + className="control_label", + ), + html.Div( + [ + html.Div( + [html.H6(id="world_text"), html.P("World")], + id="world", + className="mini_container", + ), + html.Div( + [html.H6(id="austria_text"), html.P("Austria")], + id="austria", + className="mini_container", + ), + html.Div( + [html.H6(id="belgium_text"), html.P("Belgium")], + id="belgium", + className="mini_container", + ), + html.Div( + [html.H6(id="germany_text"), + html.P("Germany")], + id="germany", + className="mini_container", + ), + html.Div( + [html.H6(id="italy_text"), + html.P("Italy")], + id="italy", + className="mini_container", + ), + html.Div( + [html.H6(id="netherlands_text"), + html.P("Netherlands")], + id="netherlands", + className="mini_container", + ), + ], + id="info-container", + className="row container-display", + ), + html.Div( + [dcc.Graph(id="main_graph")], + className="pretty_container", + ), + html.Div( + [ + html.Div( + [ + html.P("Filter by Model:", className="control_label"), + dcc.RadioItems( + id="model_selector", + options=[ + {"label": "Linear Ridge Regression ", "value": "lrr"}, + {"label": "Random Forest Regression ", "value": "rf"}, + {"label": "Poisson Regression ", "value": "p", "disabled":True}, + ], + value="rf", + className="dcc_control", + ), + html.P("Filter by Country", className="control_label"), + dcc.Dropdown( + id="country_names", + options=country_options, + multi=True, + value=COUNTRIES, + className="dcc_control", + ), + html.P( + "Select years in histogram:\n(You can only select the years for which data is available)", + className="control_label", + ), + dcc.Checklist( + id="year_selector", + options=[ + {'label': str(2007+i)+'\t', 'value': str(2007+i), 'disabled':year_disable[i]} for i in range(14) + ], + value = ["2015", "2016"], + labelStyle={"display": "inline-block"}, + className="dcc_control", + ), + ], + className="pretty_container four columns", + id="cross-filter-options", + ), + html.Div( + [ + html.Div( + [dcc.Graph(id="count_graph")], + id="countGraphContainer", + className="pretty_container", + ), + ], + id="right-column", + className="eight columns", + ), + ], + className="row flex-display", + ), + html.Div( + [ + html.Div( + [dcc.Graph(id="correlation_graph")], + className="pretty_container four columns", + ), + html.Div( + [dcc.Graph(id="correspondence_graph")], + className="pretty_container eight columns", + ), + ], + className="row flex-display", + ), + ] +) + + +# Create callbacks +# callback functions: Python functions that are automatically called by Dash +# whenever an input component's property changes. +app.clientside_callback( + ClientsideFunction(namespace="clientside", function_name="resize"), + Output("output-clientside", "children"), + [Input("count_graph", "figure")], +) + +# Nothing -> main text +# Controls the tiles displaying the live influenza cases. +@app.callback( + [ + Output("world_text", "children"), + Output("austria_text", "children"), + Output("belgium_text", "children"), + Output("germany_text", "children"), + Output("italy_text", "children"), + Output("netherlands_text", "children"), + ], + [Input("model_selector", "value")], +) +def update_text(years): + + estimates = data.get_incidence() + estimates = util.calculate_count(estimates) + + return estimates['total_count'], estimates['austria_count'], estimates['belgium_count'], estimates['germany_count'], estimates['italy_count'], estimates['netherlands_count'] + +# Nothing -> main graph +# Controls What is displayed on the main map +@app.callback( + Output("main_graph", "figure"), + [Input("model_selector", "value")], +) +def make_main_figure(years): + + estimates = data.get_incidence() + cases = [] + for key in estimates: + cases.append(estimates[key]) + + dff = {'iso_alpha': ['AUT', 'BEL', 'DEU', 'ITA', 'NLD'], + 'cases': cases} + + fig = px.choropleth(dff, locations="iso_alpha", + color="cases", + center={'lat': 52.5200, 'lon': 13.4050}, + scope='world', + height=1000, + title='World View', + # column to add to hover information + color_continuous_scale=px.colors.sequential.Plasma) + + return fig + + +#countries -> years +# Controls the list of years available +@app.callback( + Output("year_selector", "options"), + [ + Input("country_names", "value"), + ], +) +def enable_years(countries): + + year_disable = [False for i in range(14)] + for country in countries: + for year in country_years[country]: + year_disable[year-2007] = True + + return [{'label': str(2007+i)+'\t', 'value': str(2007+i), 'disabled': year_disable[i]} for i in range(14)] + + + +#selectors -> histogram +# Controls the histogram/bar chart +@app.callback( + Output("count_graph", "figure"), + [ + Input("model_selector", "value"), + Input("country_names", "value"), + Input("year_selector", "value"), + ], +) +def make_histogram(model, countries, years): + + cases = {} + for year in years: + for country in countries: + for index, row in df[country].iterrows(): + if(index[:4] == year): + if(row['date'] in cases): + cases[row['date']] += row['estimate_'+model] + else: + cases[row['date']] = row['estimate_'+model] + + weeks = [] + estimates = [] + for key in cases: + weeks.append(datetime.strptime(key, '%Y-%m-%d')) + estimates.append(cases[key]) + + estimates = [x for _, x in sorted(zip(weeks, estimates))] + weeks.sort() + + dff = {'week': weeks, 'cases': estimates} + + fig = px.bar(dff, x='week', y='cases', + hover_data=['cases'], color='cases', + labels={'cases': 'number of Influenza cases', 'week': 'Date'}, + title='Cases over the years',) + + return fig + + +#selectors -> scatterplot +# Controls the Scatterplot +@app.callback( + Output("correlation_graph", "figure"), + [ + Input("model_selector", "value"), + Input("country_names", "value"), + Input("year_selector", "value"), + ], +) +def make_scatter(model, countries, years): + + real = {} + cases = {} + for year in years: + for country in countries: + for index, row in df[country].iterrows(): + if(index[:4] == year): + if(row['date'] in cases): + cases[row['date']] += row['estimate_'+model] + real[row['date']] += row['incidence'] + else: + cases[row['date']] = row['estimate_'+model] + real[row['date']] = row['incidence'] + weeks = [] + incidence = [] + estimates = [] + for key in cases: + weeks.append(datetime.strptime(key, '%Y-%m-%d')) + estimates.append(cases[key]) + incidence.append(real[key]) + + estimates = [x for _, x in sorted(zip(weeks, estimates))] + incidence = [x for _, x in sorted(zip(weeks, incidence))] + weeks.sort() + + dff = {'week': weeks, 'cases': estimates, 'real':incidence} + + fig = px.scatter(dff, x='real', y='cases', color='real', + labels={'cases': 'Estimate', 'real':'Influenza cases'}, + opacity=0.7, + trendline='ols', + title='Correlation Graph') + + return fig + + +#selectors -> lineplot +# Controls the Line plot +@app.callback( + Output("correspondence_graph", "figure"), + [ + Input("model_selector", "value"), + Input("country_names", "value"), + Input("year_selector", "value"), + ], +) +def make_line(model, countries, years): + + real = {} + cases = {} + for year in years: + for country in countries: + for index, row in df[country].iterrows(): + if(index[:4] == year): + if(row['date'] in cases): + cases[row['date']] += row['estimate_'+model] + real[row['date']] += row['incidence'] + else: + cases[row['date']] = row['estimate_'+model] + real[row['date']] = row['incidence'] + weeks = [] + incidence = [] + estimates = [] + for key in cases: + weeks.append(datetime.strptime(key, '%Y-%m-%d')) + estimates.append(cases[key]) + incidence.append(real[key]) + + estimates = [x for _, x in sorted(zip(weeks, estimates))] + incidence = [x for _, x in sorted(zip(weeks, incidence))] + weeks.sort() + + weeks.extend(weeks) + category = ['Estimate' for i in range(len(estimates))] + estimates.extend(incidence) + category.extend(['Real' for i in range(len(incidence))]) + + dff = {'week': weeks, 'cases': estimates, 'category': category} + + fig = px.line(dff, x='week', y='cases', color='category', + title='How does the model compare to the actual values?', + labels={'cases': 'number of Influenza cases', 'week': 'Date'}) + + return fig + + + +## REST API +server = app.server + +# Returns the Live influenza PREDICTED ESTIMATE numbers as a JSON file for all the countries. +@server.route('/api/v1.0/all/current/', methods=['GET']) +def get_all_current(): + ans = data.get_incidence() + return json.dumps(ans) + + +# Returns older influenza PREDICTED ESTIMATE numbers as a JSON file for all the countries. +@server.route('/api/v1.0/all/weekly/estimate///', methods=['GET']) +def get_all_weekly_estimate(year, week): + ans = {} + week = str(year) + '-' + str(week) + for country in COUNTRIES: + incidence = df[country].at[str(week), 'estimate_rf'] + ans[country] = incidence + return json.dumps(ans) + + +# Returns older influenza INCIDENCE numbers as a JSON file for all the countries. +@server.route('/api/v1.0/all/weekly/incidence///', methods=['GET']) +def get_all_weekly_incidence(year, week): + ans = {} + week = str(year) + '-' + str(week) + for country in COUNTRIES: + incidence = df[country].at[str(week), 'incidence'] + ans[country] = incidence + return json.dumps(ans) + + +# Main +if __name__ == "__main__": + app.run_server(host=args.ipAddress, debug=False, + port=int(args.port), threaded=True) diff --git a/gsoc_application_projects/2020/influenza/dash/assets/resizing_script.js b/gsoc_application_projects/2020/influenza/dash/assets/resizing_script.js new file mode 100644 index 0000000..04c2b72 --- /dev/null +++ b/gsoc_application_projects/2020/influenza/dash/assets/resizing_script.js @@ -0,0 +1,13 @@ +if (!window.dash_clientside) { + window.dash_clientside = {}; +} +window.dash_clientside.clientside = { + resize: function(value) { + console.log("resizing..."); // for testing + setTimeout(function() { + window.dispatchEvent(new Event("resize")); + console.log("fired resize"); + }, 500); + return null; + } +}; diff --git a/gsoc_application_projects/2020/influenza/dash/assets/s1.css b/gsoc_application_projects/2020/influenza/dash/assets/s1.css new file mode 100644 index 0000000..ab195e2 --- /dev/null +++ b/gsoc_application_projects/2020/influenza/dash/assets/s1.css @@ -0,0 +1,631 @@ +/* Table of contents +–––––––––––––––––––––––––––––––––––––––––––––––– +- Plotly.js +- Grid +- Base Styles +- Typography +- Links +- Buttons +- Forms +- Lists +- Code +- Tables +- Spacing +- Utilities +- Clearing +- Media Queries + +*/ + +/* PLotly.js +–––––––––––––––––––––––––––––––––––––––––––––––– */ +/* plotly.js's modebar's z-index is 1001 by default + * https://github.com/plotly/plotly.js/blob/7e4d8ab164258f6bd48be56589dacd9bdd7fded2/src/css/_modebar.scss#L5 + * In case a dropdown is above the graph, the dropdown's options + * will be rendered below the modebar + * Increase the select option's z-index + + */ + +/* This was actually not quite right - + dropdowns were overlapping each other (edited October 26) + +.Select { + z-index: 1002; +}*/ + +/* Grid +–––––––––––––––––––––––––––––––––––––––––––––––––– */ +.container { + position: relative; + width: 100%; + max-width: 960px; + margin: 0 auto; + padding: 0 20px; + box-sizing: border-box; +} +.column, +.columns { + width: 100%; + float: left; + box-sizing: border-box; +} + +/* For devices larger than 400px */ +@media (min-width: 400px) { + .container { + width: 85%; + padding: 0; + } +} + +/* For devices larger than 550px */ +@media (min-width: 550px) { + .container { + width: 80%; + } + .column, + .columns { + margin-left: 4%; + } + + .one.column, + .one.columns { + width: 4.66666666667%; + } + .two.columns { + width: 13.3333333333%; + } + .three.columns { + width: 22%; + } + .four.columns { + width: 30.6666666667%; + } + .five.columns { + width: 39.3333333333%; + } + .six.columns { + width: 48%; + } + .seven.columns { + width: 56.6666666667%; + } + .eight.columns { + width: 65.3333333333%; + } + .nine.columns { + width: 74%; + } + .ten.columns { + width: 82.6666666667%; + } + .eleven.columns { + width: 91.3333333333%; + } + .twelve.columns { + width: 100%; + margin-left: 0; + } + + .one-third.column { + width: 30.6666666667%; + } + .two-thirds.column { + width: 65.3333333333%; + } + + .one-half.column { + width: 48%; + } + + /* Offsets */ + .offset-by-one.column, + .offset-by-one.columns { + margin-left: 8.66666666667%; + } + .offset-by-two.column, + .offset-by-two.columns { + margin-left: 17.3333333333%; + } + .offset-by-three.column, + .offset-by-three.columns { + margin-left: 26%; + } + .offset-by-four.column, + .offset-by-four.columns { + margin-left: 34.6666666667%; + } + .offset-by-five.column, + .offset-by-five.columns { + margin-left: 43.3333333333%; + } + .offset-by-six.column, + .offset-by-six.columns { + margin-left: 52%; + } + .offset-by-seven.column, + .offset-by-seven.columns { + margin-left: 60.6666666667%; + } + .offset-by-eight.column, + .offset-by-eight.columns { + margin-left: 69.3333333333%; + } + .offset-by-nine.column, + .offset-by-nine.columns { + margin-left: 78%; + } + .offset-by-ten.column, + .offset-by-ten.columns { + margin-left: 86.6666666667%; + } + .offset-by-eleven.column, + .offset-by-eleven.columns { + margin-left: 95.3333333333%; + } + + .offset-by-one-third.column, + .offset-by-one-third.columns { + margin-left: 34.6666666667%; + } + .offset-by-two-thirds.column, + .offset-by-two-thirds.columns { + margin-left: 69.3333333333%; + } + + .offset-by-one-half.column, + .offset-by-one-half.columns { + margin-left: 52%; + } +} + +/* Base Styles +–––––––––––––––––––––––––––––––––––––––––––––––––– */ +/* NOTE +html is set to 62.5% so that all the REM measurements throughout Skeleton +are based on 10px sizing. So basically 1.5rem = 15px :) */ +html { + font-size: 62.5%; +} +body { + font-size: 1.5em; /* currently ems cause chrome bug misinterpreting rems on body element */ + line-height: 1.6; + font-weight: 400; + font-family: "Open Sans", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, + sans-serif; + color: rgb(50, 50, 50); +} + +/* Typography +–––––––––––––––––––––––––––––––––––––––––––––––––– */ +h1, +h2, +h3, +h4, +h5, +h6 { + margin-top: 0; + margin-bottom: 0; + font-weight: 300; +} +h1 { + font-size: 4.5rem; + line-height: 1.2; + letter-spacing: -0.1rem; + margin-bottom: 2rem; +} +h2 { + font-size: 3.6rem; + line-height: 1.25; + letter-spacing: -0.1rem; + margin-bottom: 1.8rem; + margin-top: 1.8rem; +} +h3 { + font-size: 3rem; + line-height: 1.3; + letter-spacing: -0.1rem; + margin-bottom: 1.5rem; + margin-top: 1.5rem; +} +h4 { + font-size: 2.6rem; + line-height: 1.35; + letter-spacing: -0.08rem; + margin-bottom: 1.2rem; + margin-top: 1.2rem; +} +h5 { + font-size: 2.2rem; + line-height: 1.5; + letter-spacing: -0.05rem; + margin-bottom: 0.6rem; + margin-top: 0.6rem; +} +h6 { + font-size: 2rem; + line-height: 1.6; + letter-spacing: 0; + margin-bottom: 0.75rem; + margin-top: 0.75rem; +} + +p { + margin-top: 0; +} + +/* Blockquotes +–––––––––––––––––––––––––––––––––––––––––––––––––– */ +blockquote { + border-left: 4px lightgrey solid; + padding-left: 1rem; + margin-top: 2rem; + margin-bottom: 2rem; + margin-left: 0rem; +} + +/* Links +–––––––––––––––––––––––––––––––––––––––––––––––––– */ +a { + color: #1eaedb; + text-decoration: underline; + cursor: pointer; +} +a:hover { + color: #0fa0ce; +} + +/* Buttons +–––––––––––––––––––––––––––––––––––––––––––––––––– */ +.button, +button, +input[type="submit"], +input[type="reset"], +input[type="button"] { + display: inline-block; + height: 38px; + padding: 0 30px; + color: #555; + text-align: center; + font-size: 11px; + font-weight: 600; + line-height: 38px; + letter-spacing: 0.1rem; + text-transform: uppercase; + text-decoration: none; + white-space: nowrap; + background-color: transparent; + border-radius: 4px; + border: 1px solid #bbb; + cursor: pointer; + box-sizing: border-box; +} +.button:hover, +button:hover, +input[type="submit"]:hover, +input[type="reset"]:hover, +input[type="button"]:hover, +.button:focus, +button:focus, +input[type="submit"]:focus, +input[type="reset"]:focus, +input[type="button"]:focus { + color: #333; + border-color: #888; + outline: 0; +} +.button.button-primary, +button.button-primary, +input[type="submit"].button-primary, +input[type="reset"].button-primary, +input[type="button"].button-primary { + color: #fff; + background-color: #33c3f0; + border-color: #33c3f0; +} +.button.button-primary:hover, +button.button-primary:hover, +input[type="submit"].button-primary:hover, +input[type="reset"].button-primary:hover, +input[type="button"].button-primary:hover, +.button.button-primary:focus, +button.button-primary:focus, +input[type="submit"].button-primary:focus, +input[type="reset"].button-primary:focus, +input[type="button"].button-primary:focus { + color: #fff; + background-color: #1eaedb; + border-color: #1eaedb; +} + +/* Forms +–––––––––––––––––––––––––––––––––––––––––––––––––– */ +input[type="email"], +input[type="number"], +input[type="search"], +input[type="text"], +input[type="tel"], +input[type="url"], +input[type="password"], +textarea, +select { + height: 38px; + padding: 6px 10px; /* The 6px vertically centers text on FF, ignored by Webkit */ + background-color: #fff; + border: 1px solid #d1d1d1; + border-radius: 4px; + box-shadow: none; + box-sizing: border-box; + font-family: inherit; + font-size: inherit; /*https://stackoverflow.com/questions/6080413/why-doesnt-input-inherit-the-font-from-body*/ +} +/* Removes awkward default styles on some inputs for iOS */ +input[type="email"], +input[type="number"], +input[type="search"], +input[type="text"], +input[type="tel"], +input[type="url"], +input[type="password"], +textarea { + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; +} +textarea { + min-height: 65px; + padding-top: 6px; + padding-bottom: 6px; +} +input[type="email"]:focus, +input[type="number"]:focus, +input[type="search"]:focus, +input[type="text"]:focus, +input[type="tel"]:focus, +input[type="url"]:focus, +input[type="password"]:focus, +textarea:focus, +select:focus { + border: 1px solid #33c3f0; + outline: 0; +} +label, +legend { + display: block; + margin-bottom: 0px; +} +fieldset { + padding: 0; + border-width: 0; +} +input[type="checkbox"], +input[type="radio"] { + display: inline; +} +label > .label-body { + display: inline-block; + margin-left: 0.5rem; + font-weight: normal; +} + +/* Lists +–––––––––––––––––––––––––––––––––––––––––––––––––– */ +ul { + list-style: circle inside; +} +ol { + list-style: decimal inside; +} +ol, +ul { + padding-left: 0; + margin-top: 0; +} +ul ul, +ul ol, +ol ol, +ol ul { + margin: 1.5rem 0 1.5rem 3rem; + font-size: 90%; +} +li { + margin-bottom: 1rem; +} + +/* Tables +–––––––––––––––––––––––––––––––––––––––––––––––––– */ +table { + border-collapse: collapse; +} +th, +td { + padding: 12px 15px; + text-align: left; + border-bottom: 1px solid #e1e1e1; +} +th:first-child, +td:first-child { + padding-left: 0; +} +th:last-child, +td:last-child { + padding-right: 0; +} + +/* Spacing +–––––––––––––––––––––––––––––––––––––––––––––––––– */ +button, +.button { + margin-bottom: 0rem; +} +input, +textarea, +select, +fieldset { + margin-bottom: 0rem; +} +pre, +dl, +figure, +table, +form { + margin-bottom: 0rem; +} +p, +ul, +ol { + margin-bottom: 0.75rem; +} + +/* Utilities +–––––––––––––––––––––––––––––––––––––––––––––––––– */ +.u-full-width { + width: 100%; + box-sizing: border-box; +} +.u-max-full-width { + max-width: 100%; + box-sizing: border-box; +} +.u-pull-right { + float: right; +} +.u-pull-left { + float: left; +} + +/* Misc +–––––––––––––––––––––––––––––––––––––––––––––––––– */ +hr { + margin-top: 3rem; + margin-bottom: 3.5rem; + border-width: 0; + border-top: 1px solid #e1e1e1; +} + +/* Clearing +–––––––––––––––––––––––––––––––––––––––––––––––––– */ + +/* Self Clearing Goodness */ +.container:after, +.row:after, +.u-cf { + content: ""; + display: table; + clear: both; +} + +/* Media Queries +–––––––––––––––––––––––––––––––––––––––––––––––––– */ +/* +Note: The best way to structure the use of media queries is to create the queries +near the relevant code. For example, if you wanted to change the styles for buttons +on small devices, paste the mobile query code up in the buttons section and style it +there. +*/ + +/* Larger than mobile, screen sizes larger than 400px */ +@media (min-width: 400px) { +} + +/* Larger than phablet (also point when grid becomes active), screen larger than 550px */ +@media (min-width: 550px) { + .one.column, + .one.columns { + width: 8%; + } + .two.columns { + width: 16.25%; + } + .three.columns { + width: 22%; + } + .four.columns { + width: calc(100% / 3); + } + .five.columns { + width: calc(100% * 5 / 12); + } + .six.columns { + width: 49.75%; + } + .seven.columns { + width: calc(100% * 7 / 12); + } +} + +/* Larger than tablet, for screens smaller than 768px */ +@media (max-width: 550px) { + .flex-display { + display: block !important; + } + .pretty_container { + margin: 0 !important; + margin-bottom: 25px !important; + } + #individual_graph, + #count_graph, + #aggregate_graph { + position: static !important; + } + .container-display { + display: flex; + } + #wells, + #gas, + #oil { + margin-right: 10px; + } + + #wells { + margin-left: 0px; + } + #water { + margin-right: 0px; + } + .mini_container { + margin-bottom: 25px !important; + border-radius: 5px; + background-color: #f9f9f9; + padding: 15px; + position: relative; + box-shadow: 2px 2px 2px lightgrey; + } + #plotly-image { + margin-bottom: 0px !important; + height: 45px !important; + } + #learn-more-button { + margin-top: 0px !important; + padding: 0 10px !important; + font-size: 12px !important; + } + #button { + display: flex; + justify-content: center; + } + #title { + margin-bottom: 10px; + } + h3 { + font-size: 2.5rem; + } + h5 { + font-size: 2rem; + } + h6 { + font-size: 1.25rem; + } + p { + font-size: 11px; + } +} + +/* Larger than desktop */ +@media (min-width: 1000px) { +} + +/* Larger than Desktop HD */ +@media (min-width: 1200px) { +} diff --git a/gsoc_application_projects/2020/influenza/dash/assets/shogun-logo.png b/gsoc_application_projects/2020/influenza/dash/assets/shogun-logo.png new file mode 100644 index 0000000..2397013 Binary files /dev/null and b/gsoc_application_projects/2020/influenza/dash/assets/shogun-logo.png differ diff --git a/gsoc_application_projects/2020/influenza/dash/assets/styles.css b/gsoc_application_projects/2020/influenza/dash/assets/styles.css new file mode 100644 index 0000000..b454247 --- /dev/null +++ b/gsoc_application_projects/2020/influenza/dash/assets/styles.css @@ -0,0 +1,151 @@ +.js-plotly-plot .plotly .modebar { + padding-top: 5%; + margin-right: 3.5%; +} + +body { + background-color: #f2f2f2; + margin: 5%; +} + +.two.columns { + width: 16.25%; +} + +.column, +.columns { + margin-left: 0.5%; +} + +.pretty_container { + border-radius: 5px; + background-color: #f9f9f9; + margin: 10px; + padding: 15px; + position: relative; + box-shadow: 2px 2px 2px lightgrey; +} + +.bare_container { + margin: 0 0 0 0; + padding: 0 0 0 0; +} + +.dcc_control { + margin: 0; + padding: 5px; + width: calc(100%-40px); +} + +.control_label { + margin: 0; + padding: 10px; + padding-bottom: 0px; + margin-bottom: 0px; + width: calc(100%-40px); +} + +.rc-slider { + margin-left: 0px; + padding-left: 0px; +} + +.flex-display { + display: flex; +} + +.container-display { + display: flex; +} + +#individual_graph, +#aggregate_graph { + width: calc(100% - 30px); + position: absolute; +} + +#count_graph { + position: absolute; + height: calc(100% - 30px); + width: calc(100% - 30px); +} + +#countGraphContainer { + flex: 5; + position: relative; +} + +#header { + align-items: center; +} + +#learn-more-button { + text-align: center; + height: 100%; + padding: 0 20px; + text-transform: none; + font-size: 15px; + float: right; + margin-right: 10px; + margin-top: 30px; +} +#title { + text-align: center; +} + +.mini_container { + border-radius: 5px; + background-color: #f9f9f9; + margin: 10px; + padding: 15px; + position: relative; + box-shadow: 2px 2px 2px lightgrey; +} + +#right-column { + display: flex; + flex-direction: column; +} + +#world { + flex: 1; +} + +#austria { + flex: 1; +} + +#aggregate_data { + align-items: center; +} + +#belgium { + flex: 1; +} + +#germany { + flex: 1; +} + +#italy { + flex: 1; +} + +#netherlands { + flex: 1; +} + +#tripleContainer { + display: flex; + flex: 3; +} + +#mainContainer { + display: flex; + flex-direction: column; +} + +#pie_graph > div > div > svg:nth-child(3) > g.infolayer > g.legend { + pointer-events: all; + transform: translate(30px, 349px); +} diff --git a/gsoc_application_projects/2020/influenza/dash/calculate.ipynb b/gsoc_application_projects/2020/influenza/dash/calculate.ipynb new file mode 100644 index 0000000..db4d201 --- /dev/null +++ b/gsoc_application_projects/2020/influenza/dash/calculate.ipynb @@ -0,0 +1,210 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [], + "source": [ + "import numpy as np\n", + "import shogun as sg" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [], + "source": [ + "from pathlib import Path\n", + "\n", + "COUNTRIES = ['austria', 'belgium', 'germany', 'italy', 'netherlands']\n", + "LANGUAGE = {'austria' : 'german',\n", + " 'belgium' : 'dutch',\n", + " 'germany' : 'german',\n", + " 'italy' : 'italian',\n", + " 'netherlands': 'dutch'}\n", + "\n", + "PREFIX = {'german': 'de', 'dutch': 'nl', 'italian': 'it'}\n", + "\n", + "POPULATION = {'austria' : 9003354,\n", + " 'belgium' : 11586640,\n", + " 'germany' : 83768122,\n", + " 'italy' : 60467045,\n", + " 'netherlands': 17132636}\n", + "\n", + "processed_data_path = Path.cwd() / 'data' / 'processed'\n", + "# keywords_path = Path.cwd() / 'revised_keywords'\n", + "# models_path = Path.cwd() / 'influenza_estimator' / 'models'\n", + "\n", + "years = [2007 + i for i in range(13)]\n", + "\n", + "LOG_FILENAME = str(\n", + " (Path.cwd() / 'influenza_estimator' / 'information.log').absolute())" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "\n", + "\n", + "def load_features(path):\n", + " if path.exists() and path.is_file():\n", + " df = pd.read_csv(path)\n", + " features = df.drop(columns=['incidence'])\n", + " return features.values\n", + "\n", + "\n", + "def load_labels(path):\n", + " if path.exists() and path.is_file():\n", + " df = pd.read_csv(path)\n", + " labels = pd.Series(df['incidence'])\n", + " return labels.values\n", + "\n", + "\n", + "def load(path, is_labels=False):\n", + " if path.exists() and path.is_file():\n", + " df = pd.read_csv(path)\n", + " if is_labels:\n", + " df = pd.Series(df['incidence'])\n", + " return df.values" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": "For austria\n(156, 305)\n(156,)\n[nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan\n nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan\n nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan\n nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan\n nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan\n nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan\n nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan\n nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan\n nan nan nan nan nan nan nan nan nan nan nan nan]\nFor belgium\n(260, 296)\n(260,)\n[nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan\n nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan\n nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan\n nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan\n nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan\n nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan\n nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan\n nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan\n nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan\n nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan\n nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan\n nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan\n nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan\n nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan\n nan nan nan nan nan nan nan nan]\nFor germany\n(312, 304)\n(312,)\n[nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan\n nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan\n nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan\n nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan\n nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan\n nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan\n nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan\n nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan\n nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan\n nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan\n nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan\n nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan\n nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan\n nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan\n nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan\n nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan\n nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan\n nan nan nan nan nan nan]\nFor italy\n(312, 384)\n(312,)\n[nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan\n nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan\n nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan\n nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan\n nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan\n nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan\n nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan\n nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan\n nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan\n nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan\n nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan\n nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan\n nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan\n nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan\n nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan\n nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan\n nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan\n nan nan nan nan nan nan]\nFor netherlands\n(260, 296)\n(260,)\n[nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan\n nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan\n nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan\n nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan\n nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan\n nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan\n nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan\n nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan\n nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan\n nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan\n nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan\n nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan\n nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan\n nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan nan\n nan nan nan nan nan nan nan nan]\n" + } + ], + "source": [ + "\n", + "alpha = {\n", + " 'austria':19.5,\n", + " 'belgium':84,\n", + " 'germany':37.5,\n", + " 'italy':57,\n", + " 'netherlands':84\n", + "}\n", + "\n", + "main_data_path = Path.cwd() / 'data'\n", + "df = {}\n", + "\n", + "for country in COUNTRIES:\n", + " print('For '+country)\n", + " main_file_path = main_data_path / (country + '.csv')\n", + " df[country] = pd.read_csv(main_file_path)\n", + " print(df[country].shape)\n", + "\n", + "\n", + " x_train_file_path = processed_data_path / (country + '_features.csv')\n", + " y_train_file_path = processed_data_path / (country + '_labels.csv')\n", + " features_train = sg.create_features(load(x_train_file_path).T)\n", + " labels_train = sg.create_labels(load(y_train_file_path, is_labels=True))\n", + "\n", + " lrr = sg.create_machine(\"LinearRidgeRegression\", tau=alpha[country], labels=labels_train, use_bias=False)\n", + " lrr.train(features_train)\n", + " labels_train_predict = lrr.apply(features_train)\n", + " y_train_predicted = labels_train_predict.get(\"labels\").reshape(labels_train_predict.get(\"labels\").shape[0])\n", + " print(y_train_predicted.shape)\n", + " df[country]['estimate_lrr'] = y_train_predicted\n", + "\n", + " mean_rule = sg.create_combination_rule(\"MeanRule\")\n", + " rand_forest = sg.create_machine(\"RandomForest\",\n", + " labels=labels_train,\n", + " num_bags=5, seed=1,\n", + " combination_rule=mean_rule)\n", + "\n", + " rand_forest.train(features_train)\n", + " labels_train_predict = rand_forest.apply_regression(features_train)\n", + " y_train_predicted = labels_train_predict.get(\"labels\").reshape(labels_train_predict.get(\"labels\").shape[0])\n", + " df[country]['estimate_rf'] = y_train_predicted\n", + "\n", + " glm = sg.create_machine(\"GLM\", labels=labels_train, alpha=0.17, learning_rate=0.002, max_iterations=1000, tolerance=0.000001, eta=0.2)\n", + " glm.put(\"lambda\", 0.001)\n", + " glm.train(features_train)\n", + " labels_train_predict = glm.apply(features_train)\n", + " y_train_predicted = labels_train_predict.get(\"labels\").reshape(labels_train_predict.get(\"labels\").shape[0])\n", + " print(y_train_predicted)\n", + " df[country]['estimate_p'] = y_train_predicted\n", + "\n", + "# random_forest[country] = rand_forest\n", + "" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": " Unnamed: 0 incidence Acrocianosi Acroosteolisi Adiadococinesia \\\n0 0 0.19 0.0 0.0 0.0 \n1 1 0.32 0.0 0.0 0.0 \n2 2 0.26 0.0 0.0 0.0 \n3 3 0.41 0.0 0.0 0.0 \n4 4 0.51 0.0 0.0 0.0 \n\n Alfuy_virus Alitosi Allucinazione_uditiva Anatossina \\\n0 0.0 0.0 0.0 0.0 \n1 0.0 0.0 0.0 0.0 \n2 0.0 0.0 0.0 0.0 \n3 0.0 0.0 0.0 0.0 \n4 0.0 0.0 0.0 0.0 \n\n Anemia_infettiva_equina ... Xantoma Xerosi Yaounde_virus \\\n0 0.0 ... 0.0 0.0 0.0 \n1 0.0 ... 0.0 0.0 0.0 \n2 0.0 ... 0.0 0.0 0.0 \n3 0.0 ... 0.0 0.0 0.0 \n4 0.0 ... 0.0 0.0 0.0 \n\n Yokose_virus date estimate week estimate_lrr estimate_rf \\\n0 0.0 2007-10-21 NaN 2007-42 0.002335 0.424473 \n1 0.0 2007-10-28 NaN 2007-43 0.004615 0.544473 \n2 0.0 2007-11-04 NaN 2007-44 0.005049 0.438473 \n3 0.0 2007-11-11 NaN 2007-45 0.005587 0.544473 \n4 0.0 2007-11-18 NaN 2007-46 0.008879 0.544473 \n\n estimate_p \n0 NaN \n1 NaN \n2 NaN \n3 NaN \n4 NaN \n\n[5 rows x 387 columns]", + "text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
Unnamed: 0incidenceAcrocianosiAcroosteolisiAdiadococinesiaAlfuy_virusAlitosiAllucinazione_uditivaAnatossinaAnemia_infettiva_equina...XantomaXerosiYaounde_virusYokose_virusdateestimateweekestimate_lrrestimate_rfestimate_p
000.190.00.00.00.00.00.00.00.0...0.00.00.00.02007-10-21NaN2007-420.0023350.424473NaN
110.320.00.00.00.00.00.00.00.0...0.00.00.00.02007-10-28NaN2007-430.0046150.544473NaN
220.260.00.00.00.00.00.00.00.0...0.00.00.00.02007-11-04NaN2007-440.0050490.438473NaN
330.410.00.00.00.00.00.00.00.0...0.00.00.00.02007-11-11NaN2007-450.0055870.544473NaN
440.510.00.00.00.00.00.00.00.0...0.00.00.00.02007-11-18NaN2007-460.0088790.544473NaN
\n

5 rows × 387 columns

\n
" + }, + "metadata": {}, + "execution_count": 9 + } + ], + "source": [ + "df['italy'].head()" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [], + "source": [ + "final_data_path = Path.cwd() / 'data' / 'final'\n", + "\n", + "for country in COUNTRIES:\n", + " final_data_file = final_data_path / (country + '.csv')\n", + " df[country].to_csv(final_data_file);" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "file_extension": ".py", + "kernelspec": { + "display_name": "Python 3.5.5 64-bit", + "language": "python", + "name": "python35564bite6ddbd5bbab04a30ad6923401d29ed67" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.5.5-final" + }, + "mimetype": "text/x-python", + "name": "python", + "npconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": 3 + }, + "nbformat": 4, + "nbformat_minor": 2 +} \ No newline at end of file diff --git a/gsoc_application_projects/2020/influenza/dash/config.py b/gsoc_application_projects/2020/influenza/dash/config.py new file mode 100644 index 0000000..8b6eebf --- /dev/null +++ b/gsoc_application_projects/2020/influenza/dash/config.py @@ -0,0 +1,55 @@ +from os import path + +from pathlib import Path + + +# class Config(object): +# DEBUG = True +# PORT = 5000 +# HOST = '0.0.0.0' +# # URL_PREFIX = '/api' +# PROJECT_ROOT = path.abspath(path.dirname(__file__)) +# TEMPLATE_FOLDER = path.join(PROJECT_ROOT, 'templates') +# # MYSQL_DATABASE_HOST = '127.0.0.1' +# # MYSQL_DATABASE_DB = 'default_db' +# # MYSQL_DATABASE_USER = 'default_user' +# # MYSQL_DATABASE_PASSWORD = 'password' + + +# class Development(Config): +# DEBUG = True +# SECRET_KEY = 'development' + + +# class Production(Config): +# pass + + +# class Testing(Config): +# TESTING = True +# SECRET_KEY = 'testing' + + +COUNTRIES = ['austria', 'belgium', 'germany', 'italy', 'netherlands'] +LANGUAGE = {'austria' : 'german', + 'belgium' : 'dutch', + 'germany' : 'german', + 'italy' : 'italian', + 'netherlands': 'dutch'} + +PREFIX = {'german': 'de', 'dutch': 'nl', 'italian': 'it'} + +POPULATION = {'austria' : 9003354, + 'belgium' : 11586640, + 'germany' : 83768122, + 'italy' : 60467045, + 'netherlands': 17132636} + +processed_data_path = Path.cwd() / 'data' / 'processed' +keywords_path = Path.cwd() / 'revised_keywords' +# models_path = Path.cwd() / 'models' + +years = [2007 + i for i in range(13)] + +LOG_FILENAME = str( + (Path.cwd() / 'information.log').absolute()) diff --git a/gsoc_application_projects/2020/influenza/web/influenza_estimator/data/austria.csv b/gsoc_application_projects/2020/influenza/dash/data/austria.csv similarity index 100% rename from gsoc_application_projects/2020/influenza/web/influenza_estimator/data/austria.csv rename to gsoc_application_projects/2020/influenza/dash/data/austria.csv diff --git a/gsoc_application_projects/2020/influenza/web/influenza_estimator/data/belgium.csv b/gsoc_application_projects/2020/influenza/dash/data/belgium.csv similarity index 100% rename from gsoc_application_projects/2020/influenza/web/influenza_estimator/data/belgium.csv rename to gsoc_application_projects/2020/influenza/dash/data/belgium.csv diff --git a/gsoc_application_projects/2020/influenza/dash/data/current.csv b/gsoc_application_projects/2020/influenza/dash/data/current.csv new file mode 100644 index 0000000..6ead5be --- /dev/null +++ b/gsoc_application_projects/2020/influenza/dash/data/current.csv @@ -0,0 +1,6 @@ +country,level_0,index,Unnamed: 0,last_checked,estimate +austria,0,0,0,2020-08-31,844.5686933370202 +belgium,1,1,1,2020-08-31,503.62144715826 +germany,2,2,2,2020-08-31,20.208 +italy,3,3,3,2020-08-31,10.430000000000001 +netherlands,4,4,4,2020-08-31,73.89386277972 diff --git a/gsoc_application_projects/2020/influenza/dash/data/final/austria.csv b/gsoc_application_projects/2020/influenza/dash/data/final/austria.csv new file mode 100644 index 0000000..f3374c7 --- /dev/null +++ b/gsoc_application_projects/2020/influenza/dash/data/final/austria.csv @@ -0,0 +1,157 @@ +,Unnamed: 0,Acetaldehydsyndrom,Achsensymptom,Adeno-assoziierte_Viren,Adenovirusimpfstoff,Adipsie,Adynamie,Aggravation,Akantholyse,Akroosteolyse,Akrozyanose,Akute_Bronchitis,Akute_Mittelohrentzündung,Akute_eitrige_Thyreoiditis,Alkalose,Alkoholintoleranz,Allgemeininfektion,Alterssyndrom,Amnioninfektionssyndrom,Anorexie,Anthraximpfstoff,Anthroponose,Anti-NMDA-Rezeptor-Enzephalitis,Anämie,Arjenyattah-Epidemie,Asthenie,Attische_Seuche,Azidose,B-Symptomatik,Bagatellisierung,Bazex-Syndrom,Bendopnoe,Bilirubinurie,Biologische_Schutzstufe,Biologische_Sicherheitsstufe,Blutvergiftung,Bradykardie,Bürstenschädel,Cafeteria-roenbergensis-Virus,Cholera-Aufstand_in_Königsberg,Choleraepidemie_in_Haiti_ab_2010,Choleraepidemie_von_1892,Choleraimpfstoff,Chronische_Schleimhauteiterung,Chronisches_Schmerzsyndrom,Couperose,Cyprianische_Pest,Cytomegalievirusimpfstoff,DTP-Impfstoff,Dakryozystitis,Dehnungsstreifen,Dengue-Virus-Impfstoff,Diphtherieepidemie_in_Nome,Diphtherieimpfstoff,Dissimulation,Druckpuls,Dyschylie,Ebola-Impfstoff,Ebolafieber-Epidemie_2014,Ebolafieber-Epidemie_in_der_Demokratischen_Republik_Kongo_2014,Elektrolytstörung,Emerging_Infectious_Disease,Endokarditis,Englischer_Schweiß,Enzephalitis,Enzootie,Epstein-Barr-Virus-Impfstoff,Erkältung,Erythrodiapedese,Exsikkose,FSME-Impfstoff,Facies_leonina,Fieber,Fieber_unklarer_Genese,Fieberdelirium,Fischwirbel,Fleckfieberimpfstoff,Furunkel,Gebrechlichkeit,Gelbfieberimpfstoff,Geonose,Gliederschmerz,Glucosurie,Gordon-Syndrom,Grey-Turner-Zeichen,Große_Pest_von_London,HIV-Impfstoff,HPV-Impfstoff,HUS-Epidemie_2011,Haar-Heterochromie,Haffkrankheit,Hakenwurmimpfstoff,Hamman-Zeichen,Harnwegsinfekt,Hepatitis-A-Impfstoff,Hepatitis-B-Impfstoff,Hepatosplenomegalie,Herdenzephalitis,Hexavalenter_Impfstoff,Hexenschuss,Hiatus_leucaemicus,Hordeolum,Horner-Syndrom,Hospitalfieber,Hypalbuminämie,Hyperhydratation,Hyperkaliämie,Hypernatriämie,Hyperorexie,Hyperviskositätssyndrom,Hypochromie,Hypokaliämie,Hypokalzämie,Hyponatriämie,Hämatozele,Hämaturie,Hämoglobinurie,Hämolyse,Impfstoff,Infektion,Infektionskrankheit,Influenzaimpfstoff,Initialsymptom,Intelligenzminderung,Intercostalneuralgie,International_Society_of_Chemotherapy,Ischämie,Isomorpher_Reizeffekt,Isosthenurie,Italienisches_Fieber,Japanische-Enzephalitis-Impfstoff,Jarisch-Herxheimer-Reaktion,Juckreiz,Kachexie,Kahnbauch,Kalzinose,Kardiomegalie,Kehr-Zeichen,Keratolyse,Ketonurie,Kolpitis,Konjugierter_Impfstoff,Konjunktivitis,Kontaktblutung,Konvergenzexzess,Koordinationsstörungen,Kopfschmerz,Koprophagie,Krampfanfall,Krebsimpfstoff,Krepitation,Lackzunge,Lasègue-Zeichen,Lebendimpfstoff,Legionellose-Ausbruch_in_Jülich_2014,Legionellose-Ausbruch_in_Warstein_2013,Leitsymptom,Liebermeister-Regel,Lipomastie,Liste_von_Epidemien_und_Pandemien,Lokalinfektion,Lungenentzündung,Lymphopenie,MMR-Impfstoff,Madonnenfinger,Malariaimpfstoff,Marfan-Zeichen,Markerimpfstoff,Marschhämoglobinurie,Masernimpfstoff,Maskengesicht,Megalokornea,Metabolische_Alkalose,Metabolische_Azidose,Mikroalbuminurie,Milzbrand-Unfall_in_Swerdlowsk,Mittelmeerkrankheit,Modified-Vaccinia-Ankara-Virus,Mumpsimpfstoff,Muskelhypotonie,Muskelkrampf-Muskelschmerz-und-Faszikulationen-Syndrom,Muskelschmerz,Myalgie,Myoglobinurie,Nachtschweiß,Nageldystrophie,Nagelhypoplasie,Nervosität,Neugeborenensepsis,Nikolski-Phänomen,Nonnensausen,Nykturie,Ohrspeicheldrüsenerkrankung,Organomegalie,Osler-Knötchen,Osmotische_Diurese,Osteosklerose,Oststaaten-Polio-Epidemie_von_1916,Otter-Valley-Polio-Epidemie,Palmarerythem,Panzytopenie,Paraneoplastisches_Syndrom,Parotitis,Pel-Ebstein-Fieber,Peptidimpfstoff,Perifokalödem,Pertussisimpfstoff,Pestimpfstoff,Picardsches_Schweißfieber,Plazentitis,Pleuraerguss,Pneumococcusimpfstoff,Pneumonie,Pockenepidemie_an_der_Pazifikküste_Nordamerikas_1862,Pockenepidemie_an_der_Pazifikküste_Nordamerikas_ab_1775,Pockenepidemie_in_Australien_1789,Pockenepidemie_in_Boston_1721,Pockenimpfstoff,Polioimpfstoff,Polydipsie,Polyurie,Portosystemischer_Shunt,Postenzephalitisches_Syndrom,Potato-Spindle-Tuber-Viroid,Proteinurie,Protothekose,Präödem,Pseudoparese,Pulsdefizit,Pyogen,Pyämie,Rachitischer_Rosenkranz,Rhinosinusitis,Rieder-Formen,Risus_sardonicus,Roseole,Rotavirusimpfstoff,Rötelnimpfstoff,Rückenschmerzen,Rückenschonhaltung,SARS-assoziiertes_Coronavirus,Saegesser-Zeichen,Scheidenausfluss,Schistosomiasisimpfstoff,Schlafstörung,Schmerz,Schmetterlingserythem,Schonhaltung,Schwangerschaftsassoziierte_Osteoporose,Schüttelfrost,Seitenstiche,Septikämie,Sicca-Syndrom,Simulant,Spermatitis,Sphärozytose,Sporotrichose,Stieda-Pellegrini-Köhler-Schatten,Symptomatologie,Säbelscheidentibia,Tachykardie,Talimogen_laherparepvec,Tanganjika-Lachepidemie,Tetanie,Tetanusimpfstoff,Tollwutimpfstoff,Totimpfstoff,Toxoidimpfstoff,Trachom,Tropenkrankheit,Trypanosomiasisimpfstoff,Tränendrüsenentzündung,Tumoranämie,Tumorkachexie,Typhusepidemie_in_Gelsenkirchen_1901,Typhusepidemie_von_Lebach,Typhusimpfstoff,Ulnardeviation,Untereinheitenimpfstoff,Untergewicht,Unwohlsein_und_Ermüdung,Vaginalstein,Varicellaimpfstoff,Vasovagale_Synkope,Vergessen,Verspannung,Virophagen,Virusinfektion,Viszeromegalie,Vollmondgesicht,Wachstumsschmerzen,Wehau-Krankheit,Winterbottom-Zeichen,Zahnschmerzen,Zervizitis,Zikavirus-Epidemie_2015/2016,Zohlen-Zeichen,Zwerchfellhochstand,Zyanose,incidence,Ödem,Übelkeit,date,estimate,week,estimate_lrr,estimate_rf,estimate_p +0,0,216.0,0.0,114.0,0.0,150.0,317.0,421.0,150.0,0.0,319.0,10320.0,43.0,49.0,851.0,695.0,41.0,97.0,205.0,3274.0,0.0,38.0,230.0,91.0,73.0,565.0,72.0,2497.0,783.0,26.0,0.0,0.0,0.0,860.0,106.0,1871.0,2648.0,2.0,81.0,0.0,60.0,244.0,0.0,79.0,786.0,1563.0,0.0,0.0,540.0,265.0,1176.0,0.0,118.0,0.0,204.0,143.0,36.0,0.0,0.0,0.0,4.0,0.0,2801.0,3.0,3109.0,232.0,0.0,117.0,24.0,2417.0,0.0,227.0,15575.0,252.0,0.0,89.0,0.0,5405.0,166.0,1.0,20.0,587.0,197.0,36.0,169.0,4.0,329.0,2238.0,324.0,37.0,0.0,0.0,12.0,4334.0,0.0,0.0,274.0,185.0,658.0,6464.0,167.0,6768.0,2258.0,65.0,3.0,63.0,20.0,9.0,15.0,1.0,77.0,35.0,15.0,14.0,0.0,31.0,5.0,23.0,1081.0,3160.0,2840.0,0.0,30.0,888.0,1821.0,0.0,43.0,105.0,113.0,0.0,0.0,601.0,2072.0,1637.0,0.0,176.0,260.0,64.0,122.0,262.0,2158.0,81.0,8049.0,207.0,4.0,1.0,3706.0,1386.0,803.0,0.0,454.0,329.0,7.0,487.0,0.0,0.0,319.0,21.0,106.0,0.0,60.0,143.0,454.0,2348.0,121.0,0.0,62.0,19.0,0.0,0.0,69.0,0.0,672.0,1607.0,409.0,101.0,14.0,0.0,0.0,814.0,0.0,68.0,1584.0,96.0,10.0,0.0,0.0,4.0,514.0,2.0,182.0,1058.0,16.0,32.0,1.0,118.0,128.0,34.0,8.0,382.0,607.0,978.0,740.0,76.0,0.0,0.0,0.0,0.0,0.0,64.0,3545.0,0.0,1492.0,2.0,1.0,34.0,0.0,0.0,716.0,739.0,1179.0,196.0,0.0,13.0,1327.0,663.0,0.0,64.0,259.0,84.0,0.0,56.0,287.0,18.0,244.0,113.0,0.0,0.0,43.0,3.0,2.0,52.0,0.0,0.0,48.0,3085.0,0.0,78.0,0.0,12.0,925.0,13.0,116.0,244.0,33.0,3.0,132.0,1.0,29.0,0.0,6236.0,0.0,4938.0,695.0,0.0,0.0,149.0,223.0,423.0,385.0,0.0,5.0,3.0,665.0,0.0,22.0,0.0,111.0,0.0,798.0,5.0,110.0,0.0,151.0,727.0,777.0,26.0,3673.0,13.0,398.0,611.0,8.0,28.0,1836.0,0.0,0.0,294.0,416.0,2733.0,696.3089079519,58.0,11.0,2012-10-21,,2012-42,696.3184969957256,899.6109218819402, +1,1,146.0,0.0,111.0,0.0,89.0,356.0,516.0,143.0,2.0,288.0,10066.0,41.0,73.0,810.0,651.0,44.0,107.0,256.0,3541.0,0.0,45.0,287.0,86.0,62.0,555.0,62.0,2469.0,787.0,27.0,0.0,0.0,2.0,917.0,87.0,1971.0,2662.0,1.0,102.0,0.0,74.0,219.0,0.0,74.0,756.0,1654.0,2.0,0.0,652.0,261.0,1160.0,0.0,97.0,0.0,245.0,100.0,37.0,0.0,0.0,0.0,3.0,0.0,2889.0,1.0,3107.0,285.0,0.0,113.0,26.0,2623.0,0.0,342.0,15575.0,236.0,0.0,92.0,0.0,5789.0,188.0,0.0,23.0,494.0,184.0,44.0,194.0,3.0,396.0,2270.0,350.0,53.0,2.0,0.0,17.0,4361.0,0.0,0.0,265.0,123.0,649.0,6824.0,136.0,6371.0,2405.0,59.0,4.0,59.0,22.0,9.0,14.0,1.0,86.0,22.0,11.0,22.0,0.0,27.0,2.0,25.0,1688.0,3091.0,2835.0,0.0,24.0,902.0,1873.0,0.0,34.0,127.0,146.0,0.0,0.0,574.0,2116.0,1730.0,0.0,218.0,267.0,50.0,137.0,247.0,2193.0,45.0,7780.0,194.0,10.0,1.0,3631.0,1383.0,881.0,0.0,458.0,361.0,19.0,578.0,0.0,0.0,373.0,16.0,152.0,0.0,80.0,150.0,477.0,2557.0,144.0,0.0,58.0,33.0,2.0,0.0,79.0,0.0,670.0,1668.0,455.0,114.0,11.0,0.0,0.0,805.0,0.0,79.0,1777.0,78.0,22.0,2.0,0.0,3.0,493.0,5.0,137.0,1024.0,12.0,37.0,3.0,144.0,124.0,37.0,9.0,327.0,671.0,1001.0,758.0,75.0,0.0,1.0,0.0,0.0,0.0,63.0,3520.0,0.0,1667.0,2.0,2.0,42.0,0.0,0.0,674.0,792.0,1235.0,208.0,0.0,20.0,1389.0,320.0,1.0,59.0,298.0,72.0,2.0,69.0,277.0,9.0,385.0,136.0,0.0,0.0,40.0,4.0,0.0,50.0,1.0,0.0,42.0,3184.0,0.0,90.0,0.0,11.0,855.0,10.0,106.0,277.0,29.0,1.0,137.0,1.0,35.0,1.0,6087.0,0.0,230.0,757.0,0.0,1.0,158.0,255.0,433.0,439.0,0.0,1.0,2.0,619.0,0.0,19.0,0.0,83.0,0.0,769.0,6.0,129.0,0.0,266.0,747.0,709.0,16.0,2840.0,15.0,469.0,565.0,15.0,30.0,1878.0,0.0,0.0,316.0,402.0,2736.0,624.2448650826,59.0,9.0,2012-10-28,,2012-43,624.3844601278197,682.98603854716, +2,2,100.0,0.0,124.0,0.0,86.0,328.0,448.0,145.0,0.0,299.0,9222.0,46.0,51.0,760.0,695.0,61.0,93.0,172.0,3282.0,0.0,35.0,274.0,98.0,39.0,734.0,61.0,2316.0,699.0,14.0,0.0,0.0,0.0,891.0,92.0,1836.0,2437.0,1.0,67.0,1.0,118.0,232.0,0.0,85.0,671.0,1557.0,0.0,0.0,503.0,229.0,1130.0,0.0,130.0,0.0,211.0,140.0,42.0,0.0,0.0,0.0,5.0,0.0,2730.0,5.0,2832.0,339.0,0.0,122.0,19.0,2430.0,0.0,210.0,15575.0,216.0,1.0,86.0,0.0,5325.0,145.0,0.0,18.0,484.0,154.0,48.0,200.0,2.0,364.0,1895.0,285.0,49.0,1.0,0.0,18.0,4160.0,0.0,2.0,304.0,143.0,472.0,6857.0,157.0,6176.0,2401.0,38.0,1.0,50.0,33.0,15.0,12.0,2.0,80.0,23.0,10.0,15.0,0.0,25.0,4.0,33.0,997.0,2931.0,2622.0,0.0,19.0,805.0,1810.0,0.0,40.0,111.0,117.0,0.0,0.0,603.0,2065.0,1599.0,0.0,174.0,298.0,55.0,119.0,218.0,2088.0,84.0,7965.0,190.0,9.0,0.0,3472.0,1375.0,808.0,0.0,433.0,381.0,11.0,474.0,0.0,0.0,300.0,23.0,106.0,0.0,68.0,141.0,411.0,2145.0,128.0,0.0,54.0,25.0,0.0,0.0,63.0,0.0,685.0,1545.0,341.0,94.0,6.0,0.0,0.0,739.0,0.0,57.0,1727.0,74.0,12.0,0.0,0.0,4.0,492.0,2.0,115.0,915.0,10.0,25.0,1.0,139.0,137.0,28.0,8.0,354.0,732.0,1082.0,764.0,73.0,0.0,1.0,0.0,0.0,0.0,65.0,3291.0,0.0,1543.0,1.0,1.0,24.0,0.0,0.0,537.0,706.0,1150.0,182.0,0.0,23.0,1260.0,176.0,0.0,31.0,278.0,101.0,1.0,87.0,323.0,7.0,299.0,140.0,0.0,0.0,47.0,3.0,1.0,51.0,1.0,0.0,27.0,2974.0,0.0,64.0,0.0,13.0,814.0,3.0,102.0,227.0,26.0,2.0,117.0,0.0,27.0,0.0,5659.0,0.0,193.0,711.0,0.0,0.0,108.0,225.0,473.0,390.0,0.0,4.0,3.0,570.0,0.0,19.0,0.0,108.0,0.0,741.0,6.0,88.0,0.0,164.0,772.0,802.0,11.0,2673.0,12.0,464.0,554.0,11.0,30.0,1858.0,0.0,0.0,333.0,373.0,2661.0,512.0468157089,53.0,17.0,2012-11-04,,2012-44,511.8311411123009,544.84621552592, +3,3,117.0,0.0,135.0,0.0,81.0,383.0,474.0,180.0,0.0,330.0,10078.0,66.0,52.0,804.0,774.0,40.0,115.0,215.0,3379.0,0.0,37.0,236.0,127.0,35.0,857.0,72.0,2564.0,820.0,14.0,0.0,0.0,0.0,873.0,95.0,2147.0,2902.0,1.0,90.0,1.0,107.0,192.0,0.0,102.0,870.0,1624.0,0.0,0.0,633.0,249.0,1265.0,0.0,150.0,0.0,219.0,149.0,45.0,0.0,0.0,0.0,6.0,0.0,3227.0,7.0,3093.0,274.0,0.0,112.0,28.0,2691.0,0.0,184.0,15575.0,259.0,0.0,81.0,0.0,6007.0,163.0,0.0,17.0,352.0,204.0,51.0,207.0,8.0,438.0,2235.0,292.0,46.0,0.0,0.0,12.0,4665.0,0.0,2.0,318.0,137.0,574.0,7181.0,194.0,6628.0,2442.0,50.0,2.0,49.0,37.0,6.0,8.0,5.0,99.0,44.0,14.0,17.0,0.0,28.0,1.0,25.0,1118.0,3469.0,3374.0,0.0,29.0,971.0,2137.0,0.0,40.0,110.0,173.0,0.0,0.0,621.0,2169.0,1911.0,0.0,196.0,327.0,70.0,141.0,257.0,2356.0,70.0,8510.0,207.0,6.0,3.0,3851.0,1397.0,958.0,0.0,435.0,412.0,18.0,530.0,0.0,0.0,339.0,24.0,116.0,0.0,63.0,162.0,492.0,2444.0,135.0,0.0,67.0,25.0,0.0,0.0,73.0,0.0,799.0,1831.0,452.0,83.0,12.0,0.0,0.0,854.0,0.0,68.0,1825.0,111.0,12.0,0.0,0.0,4.0,528.0,3.0,177.0,1035.0,11.0,44.0,1.0,141.0,149.0,20.0,9.0,369.0,955.0,1295.0,939.0,68.0,0.0,1.0,0.0,0.0,0.0,75.0,3212.0,0.0,1650.0,1.0,1.0,42.0,0.0,0.0,583.0,823.0,1365.0,281.0,0.0,20.0,1511.0,152.0,0.0,46.0,351.0,82.0,2.0,85.0,350.0,10.0,256.0,139.0,0.0,0.0,45.0,2.0,0.0,66.0,2.0,0.0,55.0,3584.0,0.0,72.0,0.0,15.0,903.0,2.0,106.0,250.0,32.0,2.0,162.0,1.0,25.0,1.0,6227.0,0.0,176.0,793.0,0.0,0.0,147.0,287.0,504.0,411.0,0.0,0.0,2.0,639.0,0.0,7.0,0.0,95.0,0.0,766.0,17.0,145.0,0.0,188.0,774.0,763.0,8.0,3181.0,19.0,500.0,691.0,5.0,23.0,1899.0,1.0,0.0,395.0,514.0,2958.0,761.567676125,57.0,14.0,2012-11-11,,2012-45,761.699381142832,891.99201628952, +4,4,112.0,0.0,130.0,0.0,67.0,390.0,523.0,136.0,0.0,382.0,10411.0,61.0,76.0,792.0,743.0,43.0,99.0,245.0,3524.0,0.0,42.0,277.0,128.0,56.0,705.0,63.0,2719.0,762.0,14.0,0.0,0.0,0.0,1083.0,94.0,2621.0,3042.0,1.0,109.0,1.0,123.0,252.0,0.0,95.0,806.0,1723.0,0.0,0.0,621.0,346.0,1321.0,0.0,974.0,0.0,228.0,174.0,47.0,0.0,0.0,0.0,6.0,0.0,3285.0,5.0,3318.0,316.0,0.0,108.0,21.0,2723.0,0.0,169.0,15575.0,240.0,0.0,100.0,0.0,5867.0,142.0,2.0,19.0,408.0,261.0,26.0,201.0,3.0,431.0,2545.0,304.0,48.0,3.0,0.0,16.0,4984.0,0.0,0.0,286.0,206.0,657.0,6954.0,176.0,7096.0,2716.0,70.0,2.0,39.0,59.0,5.0,8.0,3.0,69.0,34.0,13.0,25.0,0.0,19.0,2.0,35.0,1110.0,3546.0,3421.0,0.0,18.0,965.0,2215.0,2.0,42.0,110.0,163.0,0.0,0.0,684.0,2322.0,1864.0,0.0,209.0,280.0,60.0,135.0,286.0,2248.0,61.0,8998.0,143.0,2.0,1.0,4164.0,1384.0,960.0,0.0,397.0,397.0,26.0,592.0,0.0,0.0,390.0,18.0,112.0,0.0,79.0,164.0,501.0,2507.0,117.0,0.0,42.0,20.0,2.0,0.0,80.0,0.0,729.0,1927.0,499.0,104.0,8.0,0.0,0.0,891.0,0.0,86.0,1714.0,122.0,25.0,1.0,0.0,13.0,521.0,3.0,154.0,1056.0,11.0,38.0,2.0,177.0,103.0,31.0,9.0,363.0,796.0,1219.0,840.0,68.0,0.0,0.0,0.0,0.0,0.0,74.0,3586.0,0.0,1750.0,2.0,1.0,16.0,0.0,0.0,613.0,803.0,1338.0,199.0,1.0,12.0,1667.0,155.0,0.0,54.0,315.0,61.0,1.0,56.0,294.0,8.0,263.0,122.0,0.0,0.0,57.0,2.0,0.0,27.0,2.0,0.0,59.0,3755.0,0.0,97.0,0.0,19.0,812.0,7.0,125.0,228.0,25.0,1.0,136.0,1.0,24.0,1.0,6577.0,0.0,234.0,819.0,0.0,0.0,166.0,290.0,472.0,512.0,0.0,2.0,2.0,616.0,0.0,24.0,0.0,118.0,0.0,825.0,17.0,109.0,0.0,183.0,840.0,749.0,11.0,3282.0,14.0,470.0,697.0,9.0,21.0,1712.0,2.0,0.0,396.0,512.0,2997.0,845.8866895361,65.0,15.0,2012-11-18,,2012-46,845.7414958531767,780.22622507812, +5,5,131.0,0.0,186.0,0.0,73.0,379.0,473.0,136.0,0.0,365.0,10453.0,11.0,63.0,892.0,781.0,43.0,103.0,231.0,3995.0,0.0,34.0,223.0,19.0,59.0,652.0,65.0,2606.0,840.0,20.0,0.0,0.0,0.0,1036.0,93.0,2077.0,2939.0,1.0,98.0,0.0,78.0,262.0,0.0,89.0,811.0,1646.0,0.0,0.0,558.0,237.0,1415.0,0.0,246.0,0.0,227.0,195.0,39.0,0.0,0.0,0.0,1.0,0.0,3138.0,1.0,3588.0,228.0,0.0,23.0,14.0,2681.0,0.0,208.0,15575.0,257.0,1.0,89.0,0.0,8677.0,154.0,0.0,17.0,384.0,199.0,37.0,178.0,2.0,432.0,2351.0,297.0,34.0,0.0,0.0,7.0,4823.0,0.0,0.0,274.0,136.0,699.0,5506.0,224.0,6908.0,2639.0,51.0,0.0,53.0,8.0,1.0,8.0,0.0,111.0,6.0,1.0,13.0,0.0,8.0,1.0,6.0,1216.0,3586.0,3427.0,0.0,28.0,973.0,2142.0,0.0,7.0,102.0,147.0,0.0,0.0,696.0,2299.0,1907.0,0.0,230.0,249.0,57.0,127.0,270.0,2178.0,64.0,9631.0,214.0,9.0,0.0,3998.0,2096.0,924.0,0.0,460.0,393.0,2.0,592.0,0.0,0.0,345.0,15.0,136.0,0.0,58.0,29.0,465.0,2576.0,107.0,0.0,64.0,22.0,0.0,0.0,79.0,0.0,762.0,1736.0,486.0,126.0,12.0,0.0,0.0,783.0,0.0,62.0,1730.0,109.0,3.0,0.0,0.0,3.0,486.0,0.0,179.0,1145.0,3.0,24.0,0.0,220.0,135.0,32.0,10.0,385.0,690.0,1267.0,841.0,60.0,0.0,0.0,0.0,1.0,0.0,71.0,3384.0,0.0,1619.0,0.0,0.0,24.0,0.0,1.0,550.0,846.0,1266.0,189.0,2.0,17.0,1627.0,111.0,0.0,50.0,264.0,87.0,0.0,70.0,313.0,11.0,251.0,106.0,0.0,0.0,4.0,2.0,2.0,30.0,0.0,0.0,15.0,3630.0,0.0,78.0,0.0,3.0,933.0,1.0,110.0,253.0,18.0,0.0,176.0,0.0,14.0,0.0,6328.0,0.0,176.0,783.0,1.0,0.0,153.0,314.0,565.0,444.0,0.0,0.0,0.0,623.0,0.0,23.0,0.0,96.0,0.0,797.0,2.0,112.0,0.0,189.0,766.0,712.0,14.0,3369.0,18.0,476.0,723.0,8.0,30.0,1495.0,0.0,0.0,320.0,515.0,3011.0,851.4242410733998,11.0,3.0,2012-11-25,,2012-47,851.1070423298215,948.96720372338, +6,6,84.0,0.0,126.0,0.0,90.0,419.0,495.0,164.0,0.0,338.0,10284.0,0.0,52.0,823.0,787.0,75.0,94.0,205.0,3409.0,0.0,56.0,230.0,0.0,65.0,607.0,77.0,2500.0,817.0,17.0,0.0,0.0,0.0,925.0,105.0,1926.0,2730.0,0.0,110.0,0.0,78.0,233.0,0.0,79.0,758.0,1725.0,0.0,0.0,555.0,208.0,1347.0,0.0,210.0,0.0,234.0,192.0,33.0,0.0,0.0,0.0,0.0,0.0,2978.0,0.0,2916.0,195.0,0.0,0.0,24.0,2653.0,0.0,302.0,15575.0,226.0,0.0,90.0,0.0,5960.0,170.0,0.0,13.0,347.0,250.0,38.0,189.0,0.0,641.0,2204.0,328.0,31.0,0.0,0.0,15.0,4526.0,0.0,0.0,308.0,140.0,682.0,6452.0,168.0,6040.0,2513.0,73.0,0.0,56.0,0.0,0.0,8.0,0.0,81.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1094.0,3338.0,3550.0,0.0,25.0,963.0,2024.0,0.0,0.0,129.0,150.0,0.0,0.0,634.0,2101.0,1997.0,0.0,195.0,272.0,47.0,123.0,293.0,2214.0,57.0,9742.0,250.0,4.0,0.0,3775.0,1346.0,840.0,0.0,438.0,334.0,0.0,518.0,0.0,0.0,347.0,14.0,108.0,0.0,86.0,0.0,485.0,2415.0,117.0,0.0,51.0,22.0,0.0,0.0,64.0,0.0,802.0,1655.0,593.0,103.0,8.0,0.0,0.0,727.0,0.0,93.0,1675.0,106.0,0.0,0.0,0.0,0.0,528.0,0.0,148.0,1010.0,0.0,33.0,0.0,194.0,123.0,27.0,10.0,349.0,702.0,1246.0,870.0,58.0,0.0,0.0,0.0,0.0,0.0,69.0,3214.0,0.0,1586.0,0.0,0.0,34.0,0.0,0.0,488.0,761.0,1255.0,208.0,4.0,16.0,1691.0,108.0,0.0,39.0,302.0,98.0,0.0,63.0,310.0,16.0,285.0,109.0,0.0,0.0,0.0,0.0,1.0,36.0,0.0,0.0,0.0,3315.0,0.0,94.0,0.0,0.0,963.0,0.0,106.0,211.0,31.0,0.0,131.0,0.0,18.0,0.0,5965.0,0.0,282.0,811.0,0.0,0.0,168.0,297.0,506.0,423.0,0.0,0.0,0.0,526.0,0.0,10.0,0.0,112.0,0.0,816.0,0.0,124.0,0.0,203.0,741.0,856.0,14.0,3256.0,26.0,443.0,715.0,8.0,23.0,1630.0,1.0,0.0,366.0,400.0,3549.0,741.8976962124001,0.0,0.0,2012-12-02,,2012-48,742.0771098726977,744.9343750939802, +7,7,85.0,0.0,139.0,0.0,82.0,466.0,467.0,155.0,0.0,357.0,10514.0,0.0,49.0,762.0,710.0,43.0,106.0,222.0,3480.0,0.0,68.0,193.0,0.0,55.0,509.0,125.0,2200.0,742.0,26.0,0.0,0.0,1.0,893.0,81.0,1798.0,2565.0,0.0,90.0,0.0,73.0,257.0,0.0,85.0,731.0,1611.0,0.0,0.0,481.0,251.0,1079.0,0.0,158.0,0.0,250.0,162.0,50.0,0.0,0.0,0.0,0.0,0.0,3095.0,0.0,2927.0,283.0,0.0,0.0,24.0,2679.0,0.0,183.0,15575.0,252.0,0.0,81.0,0.0,5305.0,177.0,0.0,12.0,417.0,217.0,37.0,190.0,0.0,432.0,1858.0,321.0,43.0,0.0,0.0,15.0,4262.0,0.0,0.0,287.0,118.0,680.0,6490.0,154.0,5956.0,2486.0,69.0,0.0,58.0,0.0,0.0,12.0,0.0,87.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,975.0,3192.0,2962.0,0.0,27.0,950.0,1829.0,0.0,0.0,104.0,140.0,0.0,0.0,688.0,1808.0,1832.0,0.0,184.0,262.0,59.0,107.0,237.0,2122.0,36.0,9904.0,215.0,5.0,0.0,3626.0,1347.0,821.0,0.0,434.0,328.0,0.0,465.0,0.0,0.0,336.0,24.0,114.0,0.0,71.0,0.0,451.0,2150.0,131.0,0.0,82.0,32.0,0.0,0.0,96.0,0.0,742.0,1619.0,451.0,129.0,9.0,0.0,0.0,660.0,0.0,99.0,1680.0,103.0,0.0,2.0,0.0,0.0,478.0,0.0,135.0,959.0,0.0,41.0,0.0,199.0,166.0,32.0,8.0,287.0,686.0,1188.0,763.0,67.0,0.0,0.0,0.0,0.0,0.0,69.0,3316.0,0.0,1427.0,0.0,0.0,43.0,0.0,0.0,484.0,783.0,1128.0,249.0,1.0,17.0,1601.0,89.0,0.0,51.0,242.0,85.0,0.0,68.0,325.0,10.0,280.0,128.0,0.0,0.0,0.0,0.0,4.0,44.0,2.0,0.0,0.0,3178.0,0.0,78.0,0.0,0.0,730.0,0.0,111.0,241.0,21.0,0.0,151.0,0.0,8.0,0.0,5656.0,0.0,237.0,696.0,0.0,0.0,184.0,216.0,518.0,472.0,0.0,0.0,0.0,552.0,0.0,28.0,0.0,81.0,0.0,764.0,0.0,109.0,0.0,169.0,681.0,757.0,14.0,3168.0,27.0,441.0,649.0,8.0,28.0,1596.0,0.0,0.0,305.0,459.0,2592.0,757.0810906203,0.0,0.0,2012-12-09,,2012-49,757.1304668218827,947.5221044873001, +8,8,110.0,0.0,140.0,0.0,89.0,426.0,483.0,139.0,6.0,348.0,11607.0,0.0,39.0,752.0,678.0,60.0,87.0,177.0,3594.0,0.0,41.0,238.0,0.0,45.0,493.0,93.0,2267.0,639.0,23.0,0.0,0.0,0.0,872.0,91.0,1640.0,2446.0,0.0,84.0,0.0,90.0,227.0,0.0,86.0,789.0,1605.0,0.0,0.0,443.0,267.0,1058.0,0.0,136.0,0.0,241.0,164.0,31.0,0.0,0.0,0.0,0.0,0.0,2888.0,0.0,2748.0,911.0,0.0,0.0,32.0,2644.0,0.0,287.0,15575.0,240.0,0.0,81.0,0.0,5904.0,136.0,0.0,26.0,519.0,201.0,27.0,160.0,0.0,412.0,1877.0,353.0,52.0,0.0,0.0,9.0,4099.0,0.0,0.0,277.0,121.0,732.0,6329.0,216.0,6093.0,2356.0,57.0,0.0,62.0,0.0,0.0,14.0,0.0,73.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1008.0,3313.0,3277.0,0.0,25.0,904.0,1884.0,0.0,0.0,121.0,150.0,0.0,0.0,545.0,2084.0,1800.0,0.0,198.0,244.0,64.0,129.0,233.0,2046.0,41.0,9854.0,223.0,5.0,0.0,3366.0,1322.0,827.0,0.0,479.0,306.0,0.0,450.0,0.0,0.0,319.0,11.0,133.0,0.0,75.0,0.0,435.0,2173.0,130.0,0.0,60.0,22.0,0.0,0.0,57.0,0.0,681.0,1540.0,472.0,78.0,10.0,0.0,0.0,707.0,0.0,92.0,1652.0,108.0,0.0,0.0,0.0,0.0,419.0,0.0,116.0,907.0,0.0,30.0,0.0,232.0,127.0,26.0,9.0,298.0,723.0,1027.0,761.0,58.0,0.0,0.0,0.0,0.0,0.0,73.0,3211.0,0.0,1378.0,0.0,0.0,39.0,0.0,0.0,455.0,758.0,1165.0,215.0,0.0,18.0,1524.0,109.0,0.0,39.0,222.0,83.0,0.0,47.0,309.0,13.0,262.0,116.0,0.0,0.0,0.0,0.0,0.0,41.0,0.0,0.0,0.0,2960.0,0.0,59.0,0.0,0.0,683.0,0.0,100.0,227.0,22.0,0.0,132.0,0.0,18.0,0.0,5785.0,0.0,211.0,711.0,0.0,0.0,162.0,233.0,508.0,500.0,0.0,0.0,0.0,510.0,0.0,15.0,0.0,92.0,0.0,783.0,0.0,131.0,0.0,175.0,653.0,778.0,13.0,3299.0,16.0,451.0,675.0,8.0,42.0,1496.0,0.0,0.0,299.0,410.0,2443.0,739.1149380006,0.0,0.0,2012-12-16,,2012-50,739.1713779292891,992.8238825247001, +9,9,76.0,0.0,129.0,0.0,91.0,357.0,385.0,105.0,0.0,294.0,11630.0,0.0,48.0,550.0,708.0,38.0,92.0,155.0,2904.0,0.0,32.0,223.0,0.0,33.0,445.0,58.0,1886.0,594.0,18.0,0.0,0.0,0.0,678.0,92.0,1685.0,2114.0,0.0,84.0,0.0,79.0,172.0,0.0,85.0,705.0,1553.0,0.0,0.0,428.0,213.0,1016.0,0.0,141.0,0.0,187.0,139.0,39.0,0.0,0.0,0.0,0.0,0.0,2380.0,0.0,2609.0,243.0,0.0,0.0,16.0,2255.0,0.0,173.0,15575.0,206.0,0.0,89.0,0.0,5097.0,139.0,1.0,10.0,465.0,169.0,29.0,139.0,0.0,347.0,1647.0,280.0,35.0,0.0,0.0,13.0,4076.0,0.0,0.0,244.0,136.0,595.0,4763.0,138.0,5700.0,2042.0,68.0,0.0,53.0,0.0,0.0,12.0,0.0,64.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,738.0,2461.0,2379.0,0.0,23.0,678.0,1698.0,0.0,0.0,66.0,108.0,0.0,0.0,534.0,1777.0,1458.0,0.0,140.0,262.0,37.0,102.0,206.0,1832.0,30.0,9662.0,179.0,8.0,0.0,3643.0,1803.0,753.0,0.0,354.0,266.0,0.0,340.0,0.0,0.0,276.0,14.0,108.0,0.0,64.0,0.0,419.0,1897.0,107.0,0.0,64.0,29.0,0.0,0.0,55.0,0.0,565.0,1163.0,399.0,204.0,12.0,0.0,0.0,584.0,0.0,81.0,1396.0,73.0,0.0,0.0,0.0,0.0,437.0,0.0,108.0,685.0,0.0,21.0,0.0,120.0,106.0,25.0,7.0,278.0,637.0,893.0,690.0,52.0,0.0,0.0,0.0,0.0,0.0,58.0,3212.0,0.0,1150.0,0.0,0.0,33.0,0.0,0.0,522.0,600.0,890.0,152.0,0.0,11.0,1407.0,74.0,0.0,45.0,173.0,64.0,0.0,64.0,314.0,10.0,192.0,95.0,0.0,0.0,0.0,0.0,0.0,22.0,0.0,0.0,0.0,2378.0,0.0,59.0,0.0,0.0,604.0,0.0,91.0,179.0,38.0,0.0,131.0,0.0,13.0,0.0,4788.0,0.0,133.0,610.0,0.0,0.0,122.0,164.0,413.0,444.0,0.0,0.0,0.0,452.0,0.0,22.0,0.0,77.0,0.0,626.0,0.0,131.0,0.0,156.0,531.0,741.0,9.0,2773.0,14.0,353.0,717.0,15.0,19.0,1483.0,1.0,0.0,224.0,377.0,2301.0,513.4003606026,0.0,0.0,2012-12-23,,2012-51,513.5426250293776,514.24820120008, +10,10,87.0,0.0,98.0,0.0,66.0,292.0,250.0,85.0,0.0,229.0,12794.0,3.0,50.0,491.0,906.0,25.0,56.0,140.0,3829.0,0.0,53.0,192.0,2.0,44.0,420.0,59.0,1770.0,533.0,8.0,0.0,0.0,0.0,448.0,64.0,1906.0,1795.0,0.0,90.0,0.0,44.0,176.0,0.0,102.0,404.0,1423.0,2.0,0.0,274.0,200.0,1190.0,0.0,159.0,0.0,118.0,114.0,42.0,0.0,0.0,0.0,0.0,0.0,2103.0,1.0,2343.0,334.0,0.0,4.0,20.0,2058.0,0.0,172.0,15575.0,171.0,1.0,65.0,0.0,5313.0,126.0,0.0,14.0,586.0,124.0,25.0,87.0,0.0,327.0,992.0,319.0,26.0,1.0,0.0,7.0,3711.0,0.0,0.0,183.0,91.0,403.0,4584.0,101.0,6154.0,1529.0,62.0,0.0,49.0,1.0,0.0,16.0,0.0,53.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,585.0,1957.0,1869.0,0.0,25.0,532.0,1670.0,0.0,1.0,78.0,100.0,0.0,0.0,501.0,1971.0,1153.0,0.0,109.0,153.0,45.0,107.0,155.0,1797.0,29.0,8922.0,235.0,4.0,0.0,3376.0,1426.0,810.0,0.0,286.0,314.0,0.0,243.0,0.0,0.0,259.0,16.0,100.0,0.0,44.0,5.0,269.0,1270.0,103.0,0.0,46.0,20.0,0.0,0.0,49.0,0.0,556.0,980.0,211.0,129.0,8.0,0.0,0.0,466.0,3.0,85.0,1346.0,58.0,0.0,0.0,0.0,0.0,413.0,0.0,101.0,632.0,0.0,15.0,0.0,114.0,80.0,23.0,9.0,285.0,426.0,829.0,607.0,45.0,0.0,0.0,0.0,0.0,0.0,43.0,2628.0,0.0,1306.0,0.0,0.0,25.0,0.0,0.0,381.0,563.0,805.0,153.0,0.0,17.0,883.0,85.0,2.0,43.0,157.0,54.0,0.0,61.0,267.0,10.0,151.0,129.0,0.0,0.0,1.0,0.0,0.0,35.0,0.0,0.0,1.0,2322.0,0.0,66.0,0.0,0.0,845.0,0.0,58.0,131.0,34.0,0.0,101.0,0.0,15.0,0.0,4548.0,0.0,175.0,563.0,0.0,0.0,111.0,147.0,426.0,396.0,0.0,0.0,0.0,431.0,0.0,21.0,0.0,63.0,0.0,673.0,0.0,94.0,0.0,189.0,549.0,663.0,15.0,2450.0,12.0,261.0,786.0,7.0,32.0,1498.0,0.0,0.0,122.0,316.0,2107.0,336.7394333488,1.0,0.0,2012-12-30,,2012-52,336.83859098713265,439.26010268824007, +11,11,114.0,0.0,111.0,0.0,87.0,346.0,363.66666666666674,139.0,0.0,322.0,14812.0,0.0,60.0,734.0,1002.0,36.0,109.0,188.0,4309.0,0.0,45.0,233.0,1.0,55.0,506.0,86.0,2423.0,927.0,20.0,0.0,0.0,0.0,886.0,134.0,1665.0,2496.0,0.0,79.0,0.0,83.0,192.0,0.0,89.0,699.0,1756.0,0.0,0.0,478.0,260.0,1534.0,0.0,599.0,0.0,208.0,148.0,40.0,0.0,0.0,0.0,0.0,0.0,2882.0,0.0,2979.0,410.0,0.0,3.0,24.0,2603.0,0.0,460.0,15575.0,263.0,0.0,80.0,0.0,5784.0,144.0,0.0,16.0,538.0,152.0,38.0,192.0,2.0,445.0,1784.0,384.0,53.0,0.0,0.0,16.0,4453.0,0.0,0.0,176.0,127.0,531.0,5293.0,206.0,6313.0,2235.0,54.0,1.0,64.0,0.0,0.0,11.0,0.0,53.0,1.0,1.0,0.0,0.0,1.0,0.0,3.0,844.0,2635.0,2441.0,0.0,16.0,816.0,2081.0,0.0,2.0,91.0,140.0,0.0,0.0,637.0,2140.0,1682.0,0.0,185.0,262.0,54.0,115.0,196.0,1960.0,58.0,9071.0,251.0,3.0,1.0,3557.0,1662.0,832.0,0.0,411.0,336.0,0.0,435.0,0.0,42.0,311.0,13.0,145.0,0.0,61.0,1.0,372.0,1703.0,135.0,0.0,69.0,29.0,0.0,0.0,87.0,0.0,678.0,1425.0,383.0,162.0,14.0,0.0,0.0,655.0,0.0,87.0,1668.0,90.0,1.0,1.0,0.0,2.0,470.0,0.0,146.0,897.0,1.0,29.0,0.0,160.0,110.0,20.0,10.0,330.0,676.0,958.0,666.0,91.0,0.0,0.0,0.0,0.0,0.0,57.0,3411.0,0.0,1549.0,1.0,0.0,43.0,0.0,0.0,561.0,769.0,1136.0,215.0,0.0,12.0,1374.0,105.0,0.0,54.0,252.0,87.0,0.0,96.0,299.4,10.0,252.0,124.0,0.0,0.0,2.0,0.0,1.0,27.0,0.0,0.0,2.0,2922.0,236.0,72.0,0.0,2.0,994.0,0.0,107.0,170.0,32.0,0.0,144.0,0.0,16.0,0.0,5682.0,0.0,143.0,670.0,0.0,1.0,150.0,220.0,655.0,417.0,0.0,0.0,0.0,478.0,1.0,32.0,0.0,94.0,0.0,906.0,1.0,151.0,0.0,182.0,616.0,1024.0,15.0,3036.0,25.0,329.0,736.0,7.0,32.0,1365.0,1.0,0.0,294.0,448.0,2666.0,517.63956359,3.0,3.0,2013-01-13,,2013-2,517.5194262227492,666.8255941964, +12,12,99.0,0.0,177.0,0.0,112.0,470.0,477.33333333333337,202.0,0.0,422.0,14956.0,0.0,48.0,969.0,712.0,77.0,101.0,279.0,9253.0,0.0,42.0,230.0,0.0,46.0,711.0,85.0,3183.0,900.0,25.0,0.0,0.0,2.0,975.0,121.0,1659.0,3025.0,0.0,151.0,0.0,73.0,340.0,0.0,130.0,955.0,2068.0,0.0,0.0,731.0,345.0,1775.0,0.0,185.0,0.0,367.0,199.0,57.0,0.0,0.0,0.0,0.0,0.0,3992.0,0.0,3518.0,471.0,0.0,0.0,33.0,3299.0,0.0,255.0,15575.0,249.0,0.0,102.0,0.0,6173.0,170.0,0.0,18.0,523.0,269.0,31.0,252.0,0.0,506.0,2306.0,415.0,46.0,0.0,0.0,18.0,5127.0,0.0,0.0,277.0,168.0,962.0,5616.0,311.0,8343.0,3100.0,55.0,0.0,61.0,0.0,0.0,18.0,0.0,106.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1126.0,3334.0,3819.0,0.0,34.0,1196.0,2536.0,0.0,0.0,152.0,228.0,0.0,0.0,720.0,2300.0,2177.0,0.0,199.0,311.0,72.0,133.0,330.0,2392.0,65.0,10605.0,218.0,10.0,0.0,4157.0,1812.0,968.0,0.0,506.0,431.0,0.0,603.0,0.0,0.0,419.0,17.0,155.0,0.0,76.0,0.0,551.0,2591.0,167.0,0.0,99.0,21.0,0.0,0.0,68.0,0.0,798.0,1867.0,600.0,105.0,11.0,0.0,0.0,885.0,0.0,97.0,1982.0,110.0,0.0,0.0,0.0,0.0,550.0,0.0,173.0,1129.0,0.0,41.0,0.0,248.0,158.0,40.0,34.0,464.0,912.0,1355.0,725.0,86.0,0.0,0.0,0.0,1.0,0.0,72.0,4224.0,0.0,1668.0,0.0,0.0,43.0,0.0,0.0,678.0,987.0,1515.0,239.0,0.0,18.0,1903.0,92.0,0.0,62.0,286.0,138.0,0.0,119.0,331.8,8.0,285.0,212.0,0.0,0.0,0.0,0.0,0.0,30.0,0.0,0.0,0.0,3705.0,0.0,84.0,0.0,0.0,1008.0,0.0,147.0,254.0,34.0,0.0,176.0,0.0,22.0,0.0,6522.0,0.0,136.0,862.0,2.0,0.0,190.0,313.0,736.0,547.0,0.0,0.0,0.0,644.0,0.0,32.0,0.0,130.0,0.0,957.0,0.0,147.0,0.0,206.0,767.0,1005.0,19.0,4027.0,26.0,351.0,871.0,4.0,30.0,1549.0,0.0,0.0,404.0,440.0,3164.0,925.5717891838001,0.0,0.0,2013-01-20,,2013-3,925.5596301302276,925.5717891838002, +13,13,87.0,0.0,164.0,0.0,90.0,511.0,591.0,235.0,0.0,463.0,14478.0,0.0,49.0,914.0,654.0,58.0,124.0,268.0,5189.0,0.0,55.0,277.0,0.0,49.0,694.0,59.0,2962.0,939.0,24.0,0.0,0.0,0.0,1195.0,107.0,1631.0,3161.0,0.0,144.0,0.0,78.0,270.0,0.0,108.0,900.0,6648.0,0.0,0.0,732.0,373.0,1642.0,0.0,238.0,0.0,282.0,184.0,52.0,0.0,0.0,0.0,0.0,0.0,3708.0,0.0,3343.0,310.0,0.0,0.0,27.0,3237.0,0.0,251.0,18083.0,285.0,0.0,104.0,0.0,6007.0,200.0,0.0,15.0,494.0,246.0,51.0,254.0,0.0,508.0,2441.0,374.0,79.0,0.0,0.0,15.0,5097.0,0.0,0.0,300.0,193.0,945.0,6149.0,280.0,7377.0,3112.0,75.0,0.0,71.0,0.0,0.0,17.0,0.0,87.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1239.0,3447.0,3642.0,0.0,22.0,1118.0,2451.0,0.0,0.0,163.0,212.0,0.0,0.0,867.0,2276.0,2232.0,0.0,179.0,311.0,56.0,137.0,293.0,2306.0,58.0,10695.0,230.0,6.0,0.0,4216.0,2003.0,957.0,0.0,604.0,521.0,0.0,662.0,0.0,0.0,371.0,20.0,144.0,0.0,56.0,0.0,506.0,3074.0,170.0,0.0,84.0,30.0,0.0,0.0,71.0,0.0,846.0,1910.0,596.0,118.0,12.0,0.0,0.0,950.0,0.0,75.0,1857.0,116.0,0.0,0.0,0.0,0.0,671.0,0.0,146.0,1084.0,0.0,43.0,0.0,252.0,147.0,35.0,10.0,472.0,844.0,1348.0,784.0,85.0,0.0,0.0,0.0,0.0,0.0,72.0,4100.0,0.0,1651.0,0.0,0.0,28.0,0.0,1.0,719.0,1048.0,1502.0,243.0,0.0,12.0,1824.0,85.0,0.0,54.0,304.0,85.0,0.0,85.0,364.2,3.0,337.0,225.0,0.0,0.0,0.0,0.0,0.0,35.0,1.0,0.0,0.0,4002.0,0.0,81.0,0.0,0.0,907.0,0.0,118.0,236.0,40.0,0.0,142.0,0.0,22.0,0.0,6497.0,0.0,154.0,848.0,0.0,0.0,166.0,329.0,743.0,586.0,0.0,0.0,0.0,612.0,0.0,21.0,0.0,124.0,0.0,960.0,0.0,110.0,0.0,175.0,785.0,1035.0,19.0,4059.0,24.0,372.0,789.0,10.0,27.0,1562.0,0.0,0.0,412.0,504.0,3348.0,1115.3181983809,0.0,0.0,2013-01-27,,2013-4,1115.1142670986246,1219.53483395082, +14,14,97.0,0.0,182.0,0.0,90.0,457.0,651.0,306.0,0.0,559.0,18702.0,0.0,53.0,966.0,649.0,49.0,132.0,276.0,4813.0,0.0,65.0,249.0,0.0,57.0,670.0,45.0,3018.0,971.0,18.0,0.0,0.0,1.0,1350.0,134.0,1689.0,3481.0,0.0,118.0,0.0,56.0,317.0,1.0,107.0,1024.0,6855.0,0.0,0.0,793.0,338.0,1729.0,0.0,149.0,0.0,290.0,200.0,58.0,0.0,0.0,0.0,0.0,0.0,3623.0,0.0,3505.0,269.0,0.0,0.0,33.0,3194.0,0.0,244.0,24172.0,359.0,0.0,116.0,0.0,6167.0,181.0,0.0,17.0,638.0,236.0,46.0,219.0,0.0,477.0,2508.0,350.0,44.0,0.0,0.0,9.0,5232.0,0.0,1.0,306.0,154.0,883.0,6962.0,319.0,7560.0,3144.0,49.0,0.0,71.0,0.0,0.0,10.0,0.0,118.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1254.0,3537.0,3470.0,0.0,80.0,1137.0,2506.0,0.0,0.0,164.0,197.0,0.0,0.0,852.0,2327.0,2355.0,0.0,229.0,295.0,54.0,145.0,308.0,2389.0,93.0,10463.0,226.0,8.0,0.0,4244.0,1959.0,965.0,0.0,599.0,394.0,0.0,737.0,0.0,0.0,387.0,16.0,148.0,0.0,66.0,0.0,581.0,2881.0,171.0,0.0,116.0,28.0,0.0,0.0,71.0,0.0,853.0,1874.0,628.0,131.0,15.0,0.0,0.0,836.0,0.0,80.0,1906.0,121.0,0.0,1.0,0.0,0.0,632.0,0.0,154.0,1123.0,0.0,28.0,0.0,199.0,194.0,34.0,10.0,395.0,752.0,1496.0,843.0,92.0,0.0,0.0,0.0,0.0,0.0,65.0,4254.0,0.0,1896.0,0.0,0.0,66.0,0.0,0.0,699.0,978.0,1392.0,260.0,1.0,14.0,1886.0,110.0,0.0,59.0,279.0,91.0,0.0,92.0,396.6,14.0,292.0,244.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,4925.0,0.0,89.0,0.0,0.0,866.0,0.0,129.0,273.0,29.0,0.0,164.0,0.0,20.0,0.0,6737.0,0.0,171.0,862.0,0.0,0.0,175.0,346.0,784.0,504.0,0.0,0.0,0.0,651.0,0.0,17.0,0.0,137.0,0.0,1013.0,0.0,115.0,0.0,184.0,853.0,1015.0,18.0,4342.0,30.0,319.0,811.0,9.0,35.0,1486.0,2.0,0.0,370.0,532.0,3600.0,1284.0009677531,0.0,0.0,2013-02-03,,2013-5,1284.3027022543602,1250.26441387866, +15,15,85.0,0.0,161.0,0.0,84.0,499.0,582.0,334.0,0.0,511.0,21655.0,0.0,51.0,888.0,685.0,69.0,119.0,332.0,4442.0,0.0,45.0,245.0,0.0,46.0,668.0,72.0,2946.0,819.0,21.0,0.0,0.0,0.0,1288.0,158.0,1532.0,2995.0,0.0,145.0,0.0,67.0,277.0,0.0,122.0,1053.0,6664.0,2.0,0.0,832.0,374.0,1961.0,0.0,208.0,0.0,274.0,171.0,78.0,0.0,0.0,0.0,0.0,0.0,3802.0,0.0,4635.0,278.0,0.0,0.0,24.0,3062.0,0.0,188.0,28422.0,348.0,0.0,120.0,0.0,5974.0,195.0,1.0,12.0,790.0,209.0,27.0,259.0,0.0,464.0,2409.0,497.0,60.0,0.0,0.0,12.0,4774.0,0.0,0.0,274.0,167.0,919.0,6950.0,382.0,7569.0,3201.0,69.0,0.0,91.0,0.0,0.0,14.0,0.0,105.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1649.0,3412.0,3321.0,0.0,37.0,1172.0,2177.0,0.0,0.0,202.0,232.0,0.0,0.0,1017.0,2224.0,2139.0,0.0,228.0,298.0,97.0,135.0,320.0,2020.0,120.0,10105.0,231.0,7.0,0.0,4064.0,1729.0,924.0,0.0,608.0,467.0,0.0,683.0,0.0,0.0,399.0,27.0,141.0,0.0,90.0,0.0,583.0,2812.0,164.0,0.0,176.0,37.0,0.0,0.0,93.0,0.0,839.0,1727.0,572.0,112.0,10.0,0.0,0.0,901.0,0.0,106.0,1816.0,91.0,0.0,0.0,0.0,0.0,716.0,0.0,150.0,1169.0,0.0,28.0,0.0,220.0,166.0,24.0,10.0,400.0,851.0,1304.0,902.0,91.0,0.0,0.0,0.0,0.0,0.0,65.0,4101.0,0.0,1792.0,0.0,0.0,59.0,0.0,0.0,682.0,981.0,1471.0,228.0,0.0,14.0,1954.0,90.0,0.0,68.0,333.0,101.0,0.0,106.0,429.0,13.0,333.0,199.0,0.0,0.0,0.0,0.0,2.0,39.0,0.0,0.0,0.0,3749.0,0.0,102.0,0.0,0.0,954.0,0.0,116.0,270.0,32.0,0.0,166.0,0.0,19.0,0.0,6285.0,0.0,1126.0,829.0,0.0,0.0,210.0,305.0,741.0,455.0,0.0,0.0,0.0,645.0,0.0,27.0,0.0,124.0,0.0,991.0,0.0,125.0,0.0,433.0,834.0,953.0,33.0,5090.0,27.0,304.0,903.0,9.0,42.0,1505.0,1.0,0.0,492.0,568.0,2888.0,1461.3138921595996,0.0,0.0,2013-02-10,,2013-6,1461.338244922642,1431.37547286846, +16,16,83.0,0.0,129.0,0.0,89.0,446.0,595.0,229.0,0.0,413.0,13366.0,0.0,49.0,813.0,733.0,45.0,85.0,296.0,4041.0,0.0,49.0,259.0,0.0,53.0,612.0,51.0,2520.0,738.0,21.0,0.0,0.0,0.0,957.0,101.0,1231.0,3059.0,0.0,238.0,0.0,68.0,268.0,0.0,97.0,963.0,2864.0,0.0,0.0,662.0,346.0,1549.0,0.0,99.0,0.0,240.0,173.0,39.0,0.0,0.0,0.0,0.0,0.0,4269.0,0.0,3353.0,259.0,0.0,0.0,21.0,2467.0,0.0,225.0,26391.0,318.0,0.0,136.0,0.0,5894.0,221.0,0.0,27.0,502.0,203.0,37.0,193.0,0.0,403.0,1982.0,453.0,54.0,0.0,0.0,9.0,3944.0,0.0,0.0,312.0,161.0,852.0,6732.0,320.0,7103.0,2633.0,41.0,0.0,70.0,0.0,0.0,8.0,0.0,124.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1197.0,3179.0,3394.0,0.0,36.0,1052.0,2201.0,0.0,0.0,148.0,202.0,0.0,0.0,680.0,2045.0,1806.0,0.0,227.0,218.0,154.0,157.0,241.0,1703.0,95.0,10446.0,243.0,3.0,0.0,3481.0,1398.0,923.0,0.0,474.0,413.0,0.0,651.0,0.0,0.0,332.0,11.0,121.0,0.0,69.0,0.0,494.0,2240.0,133.0,0.0,119.0,37.0,0.0,0.0,82.0,0.0,698.0,1484.0,482.0,107.0,11.0,0.0,0.0,802.0,0.0,68.0,1690.0,132.0,0.0,2.0,0.0,0.0,636.0,0.0,155.0,972.0,0.0,25.0,0.0,177.0,175.0,20.0,9.0,438.0,773.0,1256.0,961.0,73.0,0.0,0.0,0.0,0.0,0.0,73.0,3657.0,0.0,1627.0,0.0,0.0,29.0,0.0,0.0,625.0,898.0,1288.0,188.0,0.0,20.0,1626.0,91.0,0.0,50.0,262.0,72.0,0.0,110.0,431.0,12.0,296.0,172.0,0.0,0.0,0.0,0.0,0.0,43.0,0.0,0.0,0.0,3537.0,0.0,72.0,0.0,0.0,687.0,0.0,131.0,189.0,28.0,0.0,146.0,0.0,31.0,0.0,5407.0,0.0,135.0,716.0,0.0,0.0,181.0,265.0,726.0,450.0,0.0,0.0,0.0,670.0,0.0,15.0,0.0,117.0,0.0,846.0,0.0,134.0,0.0,184.0,682.0,1015.0,25.0,3818.0,21.0,284.0,924.0,7.0,36.0,1285.0,0.0,0.0,426.0,513.0,2693.0,1826.1477854276002,0.0,0.0,2013-02-17,,2013-7,1826.1523349214276,1792.4417262386005, +17,17,68.0,0.0,144.0,0.0,88.0,466.0,530.0,172.0,0.0,468.0,12568.0,0.0,43.0,793.0,675.0,48.0,105.0,272.0,3908.0,0.0,33.0,184.0,0.0,44.0,582.0,46.0,2503.0,707.0,12.0,0.0,0.0,0.0,980.0,111.0,1189.0,2928.0,0.0,104.0,0.0,64.0,232.0,0.0,82.0,881.0,2728.0,0.0,0.0,563.0,327.0,1665.0,0.0,174.0,0.0,222.0,176.0,37.0,0.0,0.0,0.0,0.0,0.0,3403.0,0.0,3326.0,305.0,0.0,0.0,23.0,2424.0,0.0,202.0,31602.0,347.0,1.0,90.0,0.0,5956.0,147.0,0.0,11.0,587.0,204.0,23.0,196.0,0.0,382.0,2072.0,734.0,44.0,0.0,0.0,9.0,3811.0,0.0,0.0,294.0,156.0,779.0,6528.0,304.0,6947.0,2587.0,57.0,0.0,52.0,0.0,0.0,7.0,0.0,53.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1162.0,3091.0,3409.0,0.0,26.0,984.0,2050.0,0.0,0.0,98.0,173.0,0.0,0.0,656.0,2116.0,1757.0,0.0,201.0,268.0,105.0,163.0,251.0,1605.0,54.0,9643.0,225.0,4.0,0.0,3372.0,1411.0,962.0,0.0,409.0,387.0,0.0,571.0,0.0,0.0,352.0,9.0,101.0,0.0,81.0,0.0,440.0,1974.0,119.0,0.0,78.0,33.0,0.0,0.0,68.0,0.0,692.0,1514.0,434.0,109.0,15.0,0.0,0.0,794.0,0.0,74.0,1663.0,110.0,0.0,0.0,0.0,0.0,439.0,0.0,125.0,1007.0,0.0,42.0,0.0,158.0,125.0,29.0,12.0,450.0,690.0,1245.0,879.0,78.0,0.0,0.0,0.0,1.0,0.0,63.0,3850.0,0.0,1581.0,0.0,0.0,38.0,0.0,0.0,555.0,960.0,1335.0,214.0,0.0,14.0,1519.0,86.0,0.0,49.0,236.0,71.0,0.0,83.0,491.0,10.0,276.0,146.0,0.0,0.0,0.0,0.0,0.0,52.0,0.0,0.0,0.0,3554.0,0.0,71.0,0.0,0.0,718.0,0.0,106.0,215.0,26.0,0.0,134.0,0.0,21.0,0.0,5397.0,0.0,129.0,744.0,0.0,1.0,145.0,219.0,545.0,489.0,0.0,0.0,0.0,540.0,0.0,21.0,0.0,116.0,0.0,878.0,0.0,204.0,0.0,174.0,720.0,1058.0,16.0,3501.0,25.0,301.0,940.0,6.0,31.0,1266.0,0.0,0.0,399.0,514.0,2824.0,1657.6174894826001,0.0,0.0,2013-02-24,,2013-8,1657.5992772330774,1473.9169791862003, +18,18,98.0,0.0,130.0,0.0,72.0,480.0,535.0,159.0,0.0,456.0,11892.0,0.0,36.0,815.0,572.0,33.0,97.0,170.0,4309.0,0.0,51.0,247.0,0.0,41.0,561.0,51.0,2538.0,689.0,13.0,0.0,0.0,0.0,946.0,103.0,1230.0,2735.0,0.0,111.0,0.0,73.0,240.0,0.0,83.0,918.0,5093.0,0.0,0.0,656.0,320.0,1517.0,0.0,213.0,0.0,275.0,114.0,43.0,0.0,0.0,0.0,0.0,0.0,2797.0,0.0,3312.0,245.0,0.0,0.0,16.0,2675.0,0.0,374.0,24984.0,271.0,0.0,66.0,0.0,5583.0,187.0,0.0,15.0,574.0,167.0,33.0,127.0,0.0,373.0,4467.0,625.0,47.0,0.0,0.0,17.0,4021.0,0.0,0.0,236.0,144.0,689.0,5487.0,116.0,5908.0,2515.0,56.0,0.0,52.0,0.0,0.0,8.0,0.0,72.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1207.0,3460.0,3669.0,0.0,32.0,1356.0,2134.0,0.0,0.0,86.0,116.0,0.0,0.0,610.0,2222.0,1836.0,0.0,194.0,235.0,54.0,116.0,238.0,1941.0,55.0,8460.0,222.0,7.0,0.0,3719.0,1446.0,865.0,0.0,473.0,382.0,0.0,466.0,0.0,0.0,365.0,19.0,141.0,0.0,52.0,0.0,477.0,2037.0,143.0,0.0,86.0,24.0,0.0,0.0,61.0,0.0,718.0,1510.0,481.0,94.0,14.0,0.0,0.0,826.0,0.0,87.0,1677.0,115.0,0.0,0.0,0.0,0.0,433.0,0.0,158.0,994.0,0.0,31.0,0.0,124.0,117.0,26.0,11.0,440.0,590.0,1138.0,907.0,78.0,0.0,0.0,0.0,0.0,0.0,67.0,3596.0,0.0,1553.0,0.0,0.0,38.0,0.0,0.0,579.0,742.0,1241.0,200.0,0.0,16.0,1583.0,93.0,0.0,42.0,243.0,54.0,0.0,64.0,519.0,7.0,321.0,126.0,0.0,0.0,0.0,0.0,1.0,38.0,1.0,0.0,0.0,3643.0,0.0,82.0,0.0,0.0,758.0,0.0,106.0,203.0,17.0,0.0,149.0,0.0,30.0,0.0,5507.0,0.0,96.0,809.0,1.0,0.0,167.0,242.0,473.0,464.0,0.0,0.0,0.0,655.0,0.0,16.0,0.0,107.0,0.0,850.0,0.0,143.0,0.0,195.0,703.0,970.0,25.0,3715.0,13.0,333.0,826.0,8.0,29.0,1273.0,0.0,0.0,348.0,567.0,2929.0,1575.7176535848,0.0,0.0,2013-03-03,,2013-9,1575.7564781757646,1167.0515662208, +19,19,82.0,0.0,122.0,0.0,91.0,427.0,528.0,178.0,0.0,415.0,11743.0,0.0,32.0,787.0,531.0,29.0,74.0,170.0,3571.0,0.0,33.0,256.0,0.0,33.0,561.0,45.0,2344.0,644.0,19.0,0.0,0.0,0.0,1054.0,103.0,1302.0,2452.0,0.0,131.0,0.0,72.0,242.0,0.0,82.0,987.0,6069.0,0.0,0.0,694.0,244.0,1317.0,0.0,138.0,0.0,240.0,106.0,30.0,0.0,0.0,0.0,0.0,0.0,2707.0,0.0,2819.0,289.0,0.0,0.0,22.0,2652.0,0.0,198.0,17060.0,304.0,0.0,96.0,0.0,5317.0,190.0,0.0,10.0,488.0,180.0,24.0,150.0,0.0,390.0,3228.0,455.0,34.0,0.0,0.0,7.0,4139.0,0.0,0.0,260.0,148.0,632.0,5210.0,103.0,5581.0,2346.0,56.0,0.0,59.0,0.0,0.0,8.0,0.0,57.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1070.0,3434.0,3605.0,0.0,32.0,1097.0,2160.0,0.0,0.0,105.0,120.0,0.0,0.0,598.0,2083.0,1689.0,0.0,168.0,278.0,54.0,124.0,209.0,1787.0,60.0,8266.0,154.0,6.0,0.0,3685.0,1270.0,771.0,0.0,410.0,500.0,0.0,404.0,0.0,0.0,326.0,22.0,113.0,0.0,50.0,0.0,470.0,2224.0,166.0,2.0,161.0,29.0,0.0,0.0,132.0,0.0,639.0,1410.0,497.0,87.0,6.0,0.0,0.0,778.0,0.0,78.0,1638.0,103.0,0.0,0.0,0.0,0.0,480.0,0.0,108.0,932.0,0.0,22.0,0.0,121.0,133.0,24.0,7.0,513.0,633.0,1106.0,782.0,69.0,0.0,0.0,0.0,0.0,0.0,47.0,3659.0,0.0,1538.0,0.0,0.0,39.0,0.0,0.0,522.0,715.0,1104.0,176.0,0.0,12.0,1393.0,70.0,0.0,30.0,228.0,71.0,0.0,67.0,464.0,9.0,250.0,118.0,0.0,0.0,0.0,0.0,1.0,41.0,0.0,0.0,0.0,3953.0,1.0,91.0,0.0,0.0,740.0,0.0,84.0,208.0,34.0,0.0,139.0,0.0,15.0,0.0,4987.0,0.0,105.0,718.0,1.0,0.0,159.0,279.0,453.0,567.0,0.0,0.0,0.0,618.0,0.0,18.0,0.0,82.0,0.0,833.0,0.0,212.0,0.0,146.0,666.0,928.0,18.0,3504.0,7.0,297.0,776.0,8.0,28.0,1211.0,0.0,0.0,312.0,512.0,2570.0,1637.8411419942001,0.0,0.0,2013-03-10,,2013-10,1637.8042330174285,1327.4705684606802, +20,20,69.0,0.0,120.0,0.0,81.0,435.0,507.0,101.0,0.0,433.0,9323.0,0.0,29.0,705.0,482.0,28.0,98.0,166.0,3807.0,0.0,33.0,212.0,0.0,44.0,546.0,59.0,2314.0,658.0,17.0,0.0,0.0,0.0,1032.0,100.0,1441.0,2394.0,0.0,113.0,0.0,68.0,243.0,0.0,91.0,1063.0,3192.0,0.0,0.0,721.0,270.0,1319.0,0.0,150.0,0.0,200.0,91.0,35.0,0.0,0.0,0.0,0.0,0.0,6892.0,0.0,2651.0,206.0,0.0,0.0,18.0,2667.0,0.0,365.0,14661.0,271.0,0.0,87.0,0.0,5519.0,176.0,1.0,21.0,403.0,151.0,28.0,111.0,0.0,604.0,2250.0,372.0,52.0,1.0,0.0,10.0,3714.0,0.0,0.0,279.0,114.0,657.0,5249.0,109.0,5377.0,2446.0,47.0,0.0,52.0,0.0,0.0,7.0,0.0,61.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1021.0,3286.0,3259.0,0.0,16.0,1069.0,2049.0,0.0,0.0,75.0,95.0,0.0,0.0,665.0,2115.0,1758.0,0.0,170.0,249.0,52.0,127.0,234.0,1734.0,49.0,8258.0,171.0,5.0,0.0,3410.0,1277.0,770.0,0.0,380.0,489.0,0.0,429.0,0.0,0.0,333.0,9.0,104.0,0.0,65.0,0.0,434.0,2242.0,115.0,1.0,89.0,21.0,0.0,0.0,68.0,0.0,659.0,1482.0,418.0,75.0,12.0,0.0,0.0,724.0,0.0,74.0,1666.0,104.0,0.0,0.0,0.0,0.0,386.0,0.0,110.0,911.0,0.0,24.0,0.0,128.0,82.0,23.0,4.0,609.0,623.0,1022.0,788.0,57.0,0.0,0.0,0.0,0.0,0.0,47.0,3490.0,0.0,1365.0,0.0,0.0,32.0,0.0,1.0,452.0,707.0,1071.0,204.0,0.0,10.0,1381.0,86.0,0.0,52.0,196.0,60.0,0.0,80.0,426.0,9.0,268.0,139.0,0.0,0.0,0.0,0.0,0.0,34.0,0.0,0.0,0.0,4046.0,0.0,75.0,0.0,0.0,793.0,0.0,96.0,168.0,19.0,0.0,173.0,0.0,15.0,0.0,5164.0,0.0,127.0,744.0,1.0,0.0,146.0,263.0,463.0,459.0,0.0,0.0,0.0,541.0,0.0,19.0,0.0,76.0,0.0,807.0,0.0,106.0,0.0,134.0,679.0,834.0,14.0,3227.0,16.0,299.0,690.0,11.0,20.0,1159.0,0.0,0.0,299.0,473.0,3218.0,1330.4088310381,0.0,0.0,2013-03-17,,2013-11,1330.2318626404394,1278.4295136170401, +21,21,84.0,0.0,105.0,0.0,80.0,432.0,501.0,132.0,0.0,375.0,8490.0,0.0,60.0,762.0,525.0,27.0,95.0,205.0,3521.0,0.0,43.0,206.0,0.0,37.0,608.0,49.0,2446.0,722.0,15.0,0.0,0.0,0.0,1029.0,119.0,1279.0,2617.0,0.0,132.0,0.0,61.0,237.0,0.0,105.0,973.0,3446.0,0.0,0.0,706.0,292.0,1370.0,0.0,120.0,0.0,281.0,130.0,33.0,0.0,0.0,0.0,0.0,0.0,2791.0,0.0,2874.0,234.0,0.0,0.0,21.0,2631.0,0.0,186.0,11820.0,251.0,0.0,66.0,0.0,5310.0,147.0,0.0,12.0,380.0,165.0,18.0,123.0,0.0,399.0,1713.0,324.0,45.0,0.0,0.0,7.0,4135.0,0.0,1.0,240.0,112.0,672.0,5343.0,133.0,5926.0,2355.0,53.0,0.0,53.0,0.0,0.0,5.0,0.0,75.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,977.0,2700.0,3003.0,0.0,18.0,1072.0,2032.0,0.0,0.0,68.0,124.0,0.0,0.0,681.0,2126.0,1680.0,0.0,172.0,243.0,60.0,119.0,206.0,1632.0,62.0,8769.0,156.0,5.0,0.0,3290.0,1333.0,930.0,0.0,377.0,368.0,0.0,465.0,0.0,0.0,371.0,11.0,139.0,0.0,54.0,0.0,488.0,2287.0,161.0,0.0,85.0,24.0,0.0,0.0,56.0,0.0,668.0,1505.0,581.0,122.0,13.0,0.0,0.0,732.0,0.0,94.0,1608.0,96.0,0.0,0.0,0.0,0.0,444.0,0.0,144.0,930.0,0.0,34.0,0.0,142.0,101.0,26.0,4.0,500.0,584.0,1079.0,740.0,63.0,0.0,0.0,0.0,0.0,0.0,45.0,3583.0,0.0,1452.0,0.0,0.0,32.0,0.0,0.0,527.0,753.0,1184.0,192.0,0.0,17.0,1466.0,76.0,0.0,50.0,212.0,64.0,0.0,62.0,394.0,7.0,245.0,149.0,0.0,0.0,0.0,0.0,2.0,34.0,1.0,0.0,0.0,3554.0,0.0,81.0,0.0,0.0,772.0,0.0,149.0,205.0,22.0,0.0,190.0,0.0,15.0,0.0,5112.0,0.0,132.0,714.0,0.0,0.0,168.0,267.0,492.0,615.0,0.0,0.0,0.0,532.0,0.0,20.0,0.0,96.0,0.0,779.0,0.0,102.0,0.0,193.0,624.0,910.0,15.0,2888.0,16.0,267.0,710.0,8.0,36.0,1229.0,2.0,0.0,273.0,485.0,2651.0,1263.569716622,0.0,0.0,2013-03-24,,2013-12,1263.690145930008,1227.4539529512, +22,22,69.0,0.0,107.0,0.0,68.0,471.0,493.0,122.0,0.0,415.0,7050.0,0.0,60.0,723.0,469.0,30.0,98.0,197.0,5896.0,0.0,24.0,199.0,0.0,57.0,549.0,40.0,2533.0,620.0,16.0,0.0,0.0,1.0,909.0,75.0,1332.0,2454.0,0.0,84.0,0.0,52.0,217.0,0.0,84.0,950.0,2877.0,0.0,0.0,670.0,256.0,1421.0,0.0,82.0,0.0,273.0,266.0,29.0,0.0,0.0,0.0,0.0,0.0,2552.0,0.0,2654.0,210.0,0.0,0.0,14.0,2722.0,0.0,182.0,11102.0,261.0,1.0,86.0,0.0,4847.0,156.0,0.0,12.0,360.0,181.0,23.0,145.0,0.0,317.0,2062.0,299.0,59.0,1.0,0.0,13.0,4058.0,0.0,0.0,249.0,137.0,672.0,5625.0,128.0,5583.0,2216.0,59.0,0.0,46.0,0.0,0.0,8.0,0.0,57.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,792.0,2372.0,2694.0,0.0,20.0,1035.0,1969.0,0.0,0.0,73.0,130.0,0.0,0.0,598.0,2262.0,1715.0,0.0,153.0,250.0,70.0,116.0,215.0,1732.0,51.0,8639.0,117.0,8.0,0.0,3314.0,1378.0,821.0,0.0,345.0,382.0,0.0,429.0,0.0,0.0,338.0,14.0,118.0,0.0,55.0,0.0,409.0,2268.0,131.0,0.0,69.0,23.0,0.0,0.0,70.0,0.0,687.0,1385.0,522.0,98.0,11.0,0.0,0.0,750.0,0.0,95.0,1559.0,80.0,0.0,0.0,0.0,0.0,461.0,0.0,104.0,961.0,0.0,28.0,0.0,123.0,117.0,19.0,5.0,414.0,631.0,1015.0,682.0,60.0,0.0,0.0,0.0,0.0,0.0,36.0,3669.0,0.0,1243.0,0.0,0.0,35.0,0.0,0.0,886.0,697.0,1099.0,191.0,0.0,11.0,1435.0,55.0,0.0,63.0,284.0,52.0,0.0,59.0,376.0,8.0,226.0,117.0,0.0,0.0,0.0,0.0,1.0,27.0,0.0,0.0,0.0,3286.0,0.0,66.0,0.0,0.0,742.0,0.0,110.0,230.0,16.0,0.0,154.0,0.0,20.0,0.0,5247.0,0.0,121.0,677.0,0.0,0.0,136.0,229.0,496.0,547.0,0.0,0.0,0.0,504.0,0.0,15.0,0.0,73.0,0.0,756.0,0.0,94.0,0.0,189.0,620.0,852.0,25.0,2679.0,21.0,278.0,606.0,7.0,28.0,1175.0,1.0,0.0,362.0,431.0,2727.0,1082.9908982680001,0.0,0.0,2013-03-31,,2013-13,1083.1415827101127,1246.39382450842, +23,23,80.0,0.0,69.0,0.0,81.0,342.0,379.0,105.0,0.0,346.0,5991.0,0.0,37.0,557.0,514.0,23.0,76.0,125.0,2493.0,0.0,32.0,145.0,0.0,117.0,512.0,38.0,1963.0,555.0,15.0,0.0,0.0,0.0,821.0,98.0,1193.0,2026.0,0.0,65.0,0.0,40.0,200.0,0.0,78.0,763.0,2560.0,0.0,0.0,462.0,264.0,1422.0,0.0,99.0,0.0,178.0,74.0,30.0,0.0,0.0,0.0,0.0,0.0,2141.0,0.0,2178.0,188.0,0.0,0.0,12.0,2339.0,0.0,318.0,8717.0,212.0,0.0,59.0,0.0,4349.0,131.0,0.0,9.0,314.0,127.0,39.0,133.0,0.0,291.0,1359.0,253.0,33.0,0.0,0.0,9.0,3336.0,0.0,0.0,206.0,122.0,533.0,5064.0,171.0,5088.0,1815.0,58.0,0.0,41.0,0.0,0.0,13.0,0.0,77.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,663.0,1815.0,2072.0,0.0,19.0,785.0,1707.0,0.0,0.0,81.0,95.0,0.0,0.0,536.0,2300.0,1468.0,0.0,130.0,206.0,46.0,115.0,176.0,1417.0,44.0,7787.0,233.0,4.0,0.0,2669.0,1267.0,697.0,0.0,349.0,356.0,0.0,374.0,0.0,0.0,296.0,14.0,123.0,0.0,31.0,0.0,351.0,1869.0,118.0,0.0,88.0,26.0,0.0,0.0,49.0,0.0,562.0,1129.0,386.0,104.0,10.0,0.0,0.0,543.0,0.0,71.0,1232.0,69.0,0.0,0.0,0.0,0.0,441.0,0.0,112.0,718.0,0.0,32.0,0.0,111.0,84.0,28.0,6.0,310.0,500.0,807.0,564.0,72.0,0.0,0.0,0.0,0.0,0.0,45.0,2840.0,0.0,1087.0,0.0,0.0,16.0,0.0,0.0,275.0,617.0,894.0,167.0,0.0,7.0,1189.0,58.0,0.0,32.0,140.0,35.0,0.0,67.0,360.0,6.0,184.0,120.0,0.0,0.0,0.0,0.0,2.0,39.0,0.0,0.0,0.0,2705.0,1.0,67.0,0.0,0.0,638.0,0.0,94.0,151.0,24.0,0.0,99.0,0.0,21.0,0.0,4243.0,0.0,221.0,627.0,0.0,0.0,101.0,199.0,412.0,381.0,0.0,0.0,0.0,490.0,0.0,12.0,0.0,64.0,0.0,626.0,0.0,103.0,0.0,147.0,544.0,828.0,11.0,1367.0,18.0,271.0,513.0,10.0,21.0,1151.0,0.0,0.0,276.0,384.0,2250.0,1046.1211374453,0.0,0.0,2013-04-07,,2013-14,1045.968932903912,1042.0311724966, +24,24,67.0,0.0,107.0,0.0,68.0,344.0,443.0,105.0,0.0,404.0,7907.0,0.0,57.0,751.0,595.0,49.0,77.0,199.0,1072.0,0.0,30.0,216.0,0.0,41.0,589.0,48.0,2334.0,619.0,12.0,0.0,0.0,0.0,931.0,109.0,1147.0,2453.0,0.0,100.0,0.0,49.0,260.0,0.0,81.0,902.0,3910.0,0.0,0.0,620.0,243.0,1500.0,0.0,103.0,0.0,218.0,72.0,40.0,0.0,0.0,0.0,0.0,0.0,2582.0,0.0,2764.0,360.0,0.0,0.0,21.0,2544.0,0.0,184.0,4777.0,190.0,0.0,86.0,0.0,4859.0,139.0,0.0,8.0,308.0,163.0,45.0,191.0,0.0,323.0,1709.0,252.0,215.0,0.0,0.0,11.0,3695.0,0.0,0.0,234.0,116.0,642.0,6648.0,182.0,5646.0,2021.0,54.0,0.0,72.0,0.0,0.0,2.0,0.0,61.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,830.0,2398.0,2565.0,0.0,14.0,827.0,1917.0,0.0,0.0,79.0,134.0,0.0,0.0,592.0,2603.0,1604.0,0.0,170.0,251.0,69.0,117.0,193.0,1635.0,70.0,8210.0,202.0,4.0,0.0,3135.0,1417.0,921.0,0.0,427.0,408.0,0.0,424.0,0.0,0.0,324.0,17.0,125.0,0.0,61.0,0.0,427.0,2120.0,115.0,0.0,84.0,17.0,0.0,0.0,60.0,0.0,612.0,1270.0,411.0,91.0,9.0,0.0,0.0,637.0,0.0,85.0,1474.0,79.0,0.0,0.0,0.0,0.0,483.0,0.0,103.0,896.0,0.0,37.0,0.0,138.0,90.0,38.0,11.0,399.0,506.0,877.0,698.0,75.0,0.0,0.0,0.0,1.0,0.0,38.0,3128.0,0.0,1359.0,0.0,0.0,25.0,0.0,0.0,102.0,688.0,1020.0,159.0,0.0,11.0,1302.0,79.0,0.0,47.0,201.0,47.0,0.0,91.0,327.0,6.0,230.0,139.0,0.0,0.0,0.0,0.0,0.0,43.0,0.0,0.0,0.0,3057.0,0.0,67.0,0.0,0.0,850.0,0.0,73.0,172.0,33.0,0.0,134.0,0.0,22.0,0.0,5101.0,0.0,157.0,574.0,0.0,0.0,129.0,263.0,504.0,466.0,0.0,0.0,0.0,509.0,0.0,14.0,0.0,113.0,0.0,728.0,0.0,87.0,0.0,160.0,690.0,938.0,12.0,508.0,26.0,316.0,636.0,16.0,27.0,1333.0,0.0,0.0,329.0,399.0,2814.0,491.781722551,0.0,0.0,2013-04-14,,2013-15,491.77442417229713,491.78172255100003, +25,25,66.0,0.0,109.0,0.0,62.0,366.0,495.0,131.0,0.0,449.0,8122.0,0.0,46.0,720.0,568.0,44.0,77.0,225.0,1092.0,0.0,32.0,249.0,0.0,30.0,565.0,49.0,2371.0,663.0,15.0,0.0,0.0,0.0,1055.0,71.0,1270.0,2538.0,0.0,89.0,0.0,52.0,242.0,0.0,65.0,991.0,3598.0,0.0,0.0,728.0,280.0,1511.0,0.0,132.0,0.0,222.0,121.0,40.0,0.0,0.0,0.0,0.0,0.0,2781.0,0.0,2479.0,276.0,0.0,0.0,29.0,2561.0,0.0,175.0,2630.0,255.0,0.0,94.0,0.0,4881.0,165.0,0.0,12.0,216.0,194.0,39.0,168.0,0.0,343.0,1901.0,275.0,61.0,0.0,0.0,6.0,3780.0,0.0,0.0,218.0,114.0,752.0,5564.0,205.0,5699.0,2399.0,57.0,0.0,51.0,0.0,0.0,4.0,0.0,56.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,823.0,2509.0,2956.0,0.0,15.0,961.0,1962.0,0.0,0.0,130.0,155.0,0.0,0.0,671.0,2820.0,1784.0,0.0,196.0,287.0,55.0,121.0,256.0,1634.0,85.0,7706.0,246.0,3.0,0.0,3145.0,1338.0,712.0,0.0,380.0,381.0,0.0,519.0,0.0,0.0,330.0,10.0,133.0,0.0,53.0,0.0,490.0,2379.0,126.0,0.0,113.0,21.0,0.0,0.0,55.0,0.0,687.0,1439.0,613.0,98.0,15.0,0.0,0.0,644.0,0.0,84.0,1425.0,97.0,0.0,0.0,0.0,0.0,459.0,0.0,96.0,908.0,0.0,34.0,0.0,222.0,127.0,35.0,11.0,400.0,583.0,1045.0,810.0,159.0,0.0,0.0,0.0,0.0,0.0,59.0,3167.0,0.0,1230.0,0.0,0.0,30.0,0.0,0.0,163.0,827.0,1247.0,192.0,0.0,14.0,1429.0,85.0,0.0,53.0,219.0,58.0,0.0,96.0,340.0,10.0,219.0,144.0,0.0,0.0,0.0,0.0,0.0,45.0,0.0,0.0,0.0,3096.0,0.0,86.0,0.0,0.0,918.0,0.0,117.0,181.0,19.0,0.0,112.0,0.0,10.0,0.0,5332.0,0.0,107.0,829.0,1.0,0.0,136.0,255.0,463.0,475.0,0.0,0.0,0.0,564.0,0.0,16.0,0.0,83.0,0.0,664.0,0.0,102.0,0.0,170.0,670.0,981.0,15.0,522.0,22.0,265.0,647.0,9.0,24.0,1172.0,0.0,0.0,344.0,430.0,2679.0,503.54772259099997,0.0,0.0,2013-04-21,,2013-16,503.4159275505863,1023.8033011035001, +26,26,129.0,3.0,115.0,0.0,71.0,251.0,353.0,65.0,0.0,237.0,5752.0,0.0,43.0,512.0,472.0,27.0,57.0,157.0,2291.0,0.0,37.0,358.0,0.0,34.0,380.0,41.0,1730.0,581.0,11.0,0.0,0.0,0.0,958.0,66.0,646.0,2124.0,0.0,62.0,0.0,51.0,147.0,0.0,51.0,818.0,1384.0,0.0,0.0,813.0,216.0,1102.0,0.0,69.0,0.0,195.0,80.0,48.0,0.0,0.0,0.0,0.0,0.0,1831.0,0.0,3323.0,176.0,0.0,0.0,18.0,1970.0,0.0,121.0,5617.0,191.0,0.0,58.0,0.0,3645.0,242.0,0.0,7.0,179.0,102.0,26.0,128.0,0.0,263.0,1732.0,195.0,20.0,0.0,0.0,8.0,3227.0,0.0,0.0,186.0,111.0,449.0,5009.0,103.0,3488.0,1713.0,94.0,0.0,25.0,0.0,0.0,2.0,0.0,39.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,719.0,1901.0,2059.0,0.0,13.0,709.0,1321.0,0.0,0.0,68.0,74.0,0.0,0.0,490.0,1361.0,1508.0,0.0,156.0,222.0,62.0,100.0,166.0,1065.0,102.0,4960.0,176.0,3.0,0.0,2225.0,1015.0,594.0,0.0,309.0,314.0,0.0,443.0,0.0,414.0,270.0,11.0,82.0,0.0,52.0,0.0,328.0,2580.0,80.0,0.0,60.0,42.0,0.0,1.0,48.0,0.0,473.0,960.0,356.0,84.0,7.0,0.0,0.0,812.0,0.0,94.0,1220.0,63.0,0.0,0.0,0.0,0.0,428.0,0.0,89.0,763.0,0.0,22.0,0.0,63.0,105.0,18.0,9.0,235.0,572.0,807.0,556.0,41.0,0.0,0.0,0.0,0.0,0.0,25.0,2494.0,0.0,975.0,0.0,0.0,35.0,0.0,0.0,418.0,523.0,842.0,153.0,0.0,13.0,1037.0,62.0,0.0,35.0,204.0,49.0,0.0,57.0,338.0,9.0,193.0,106.0,0.0,0.0,0.0,0.0,0.0,158.0,0.0,0.0,0.0,2201.0,359.0,53.0,0.0,0.0,645.0,0.0,62.0,141.0,16.0,0.0,96.0,0.0,32.0,0.0,4413.0,0.0,87.0,462.0,0.0,0.0,105.0,152.0,292.0,361.0,0.0,0.0,0.0,471.0,6.0,18.0,0.0,84.0,0.0,558.0,0.0,69.0,0.0,125.0,411.0,625.0,12.0,1839.0,12.0,211.0,565.0,5.0,17.0,737.0,0.0,0.0,208.0,278.0,1991.0,754.630103346,0.0,0.0,2013-10-27,,2013-43,754.4227315680728,763.84737735284, +27,27,114.0,2.0,93.0,0.0,65.0,289.0,360.0,93.0,0.0,227.0,5053.0,0.0,30.0,541.0,540.0,38.0,52.0,189.0,2698.0,0.0,28.0,309.0,0.0,40.0,438.0,54.0,1992.0,646.0,12.0,0.0,0.0,0.0,846.0,74.0,777.0,2189.0,0.0,67.0,0.0,48.0,164.0,0.0,88.0,812.0,1442.0,0.0,0.0,743.0,207.0,1050.0,0.0,62.0,0.0,175.0,88.0,21.0,0.0,0.0,0.0,0.0,0.0,2032.0,0.0,3218.0,227.0,0.0,0.0,19.0,1963.0,0.0,109.0,5534.0,178.0,0.0,62.0,0.0,3705.0,269.0,0.0,12.0,170.0,93.0,27.0,172.0,0.0,317.0,1816.0,268.0,19.0,0.0,0.0,10.0,3522.0,0.0,0.0,231.0,84.0,370.0,4556.0,135.0,3482.0,1761.0,44.0,0.0,41.0,0.0,0.0,2.0,0.0,61.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,754.0,2101.0,2250.0,0.0,9.0,805.0,1432.0,0.0,0.0,64.0,98.0,0.0,0.0,534.0,1466.0,1354.0,0.0,122.0,208.0,67.0,63.0,165.0,1115.0,140.0,4893.0,193.0,5.0,0.0,2436.0,1159.0,565.0,0.0,343.0,305.0,0.0,470.0,0.0,399.0,254.0,12.0,76.0,0.0,59.0,0.0,377.0,2194.0,79.0,0.0,48.0,21.0,0.0,0.0,45.0,0.0,549.0,1119.0,370.0,82.0,13.0,0.0,0.0,724.0,0.0,77.0,1266.0,74.0,0.0,0.0,0.0,0.0,448.0,0.0,105.0,854.0,0.0,19.0,0.0,88.0,100.0,17.0,8.0,238.0,676.0,901.0,537.0,52.0,0.0,0.0,0.0,0.0,0.0,19.0,2594.0,0.0,1094.0,0.0,0.0,40.0,0.0,0.0,497.0,528.0,902.0,170.0,0.0,11.0,1168.0,80.0,0.0,47.0,190.0,92.0,0.0,62.0,293.0,7.0,166.0,118.0,0.0,0.0,0.0,0.0,0.0,81.0,1.0,0.0,0.0,2427.0,396.0,50.0,0.0,0.0,575.0,0.0,50.0,142.0,30.0,0.0,99.0,0.0,24.0,0.0,4717.0,0.0,68.0,527.0,1.0,0.0,111.0,202.0,337.0,338.0,0.0,0.0,0.0,432.0,11.0,16.0,0.0,72.0,0.0,517.0,0.0,63.0,0.0,120.0,357.0,718.0,11.0,1834.0,19.0,210.0,454.0,1.0,24.0,747.0,3.0,0.0,240.0,329.0,1935.0,786.5368633503999,0.0,0.0,2013-11-03,,2013-44,786.7771354681709,786.5368633503999, +28,28,99.0,3.0,73.0,0.0,69.0,213.0,350.0,77.0,0.0,209.0,3970.0,0.0,26.0,490.0,552.0,26.0,35.0,187.0,2678.0,0.0,26.0,310.0,0.0,35.0,412.0,51.0,1697.0,577.0,8.0,0.0,0.0,0.0,798.0,92.0,891.0,2077.0,0.0,76.0,0.0,74.0,183.0,0.0,71.0,847.0,1448.0,0.0,0.0,776.0,213.0,1100.0,0.0,61.0,0.0,185.0,113.0,19.0,0.0,0.0,0.0,0.0,0.0,2066.0,0.0,3025.0,178.0,0.0,0.0,22.0,1977.0,0.0,112.0,5053.0,169.0,0.0,65.0,0.0,3719.0,207.0,0.0,9.0,146.0,83.0,44.0,169.0,0.0,409.0,1663.0,219.0,24.0,0.0,0.0,9.0,3209.0,0.0,1.0,172.0,97.0,424.0,4730.0,128.0,3225.0,1799.0,50.0,0.0,38.0,0.0,0.0,7.0,0.0,53.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,823.0,2075.0,2205.0,0.0,11.0,709.0,1391.0,0.0,0.0,74.0,75.0,0.0,0.0,467.0,1387.0,1273.0,0.0,120.0,193.0,42.0,100.0,170.0,1083.0,116.0,5123.0,189.0,5.0,0.0,2332.0,981.0,566.0,0.0,287.0,293.0,0.0,455.0,0.0,358.0,257.0,10.0,71.0,0.0,44.0,0.0,304.0,1774.0,92.0,0.0,50.0,16.0,0.0,0.0,43.0,0.0,505.0,1047.0,306.0,90.0,6.0,0.0,0.0,648.0,0.0,80.0,1148.0,66.0,0.0,1.0,0.0,0.0,432.0,0.0,86.0,809.0,0.0,24.0,0.0,106.0,89.0,20.0,19.0,274.0,536.0,803.0,571.0,40.0,0.0,0.0,0.0,0.0,0.0,22.0,2348.0,0.0,928.0,0.0,0.0,37.0,0.0,0.0,1243.0,566.0,935.0,147.0,0.0,16.0,956.0,67.0,0.0,41.0,187.0,52.0,0.0,51.0,282.0,7.0,169.0,104.0,0.0,0.0,0.0,0.0,0.0,40.0,1.0,0.0,0.0,2306.0,357.0,60.0,0.0,0.0,548.0,0.0,83.0,126.0,21.0,0.0,86.0,0.0,18.0,0.0,4080.0,0.0,67.0,534.0,0.0,0.0,152.0,221.0,389.0,322.0,0.0,0.0,0.0,400.0,7.0,11.0,0.0,97.0,0.0,548.0,0.0,63.0,0.0,116.0,362.0,646.0,9.0,1578.0,9.0,172.0,440.0,8.0,24.0,735.0,0.0,0.0,242.0,288.0,1848.0,666.1751540365,0.0,0.0,2013-11-10,,2013-45,666.14395210682,666.1751540365, +29,29,81.0,4.0,87.0,0.0,53.0,255.0,382.0,68.0,0.0,266.0,5382.0,0.0,29.0,526.0,497.0,36.0,68.0,191.0,2651.0,0.0,29.0,284.0,2.0,36.0,413.0,48.0,1874.0,583.0,16.0,0.0,0.0,0.0,826.0,105.0,896.0,2396.0,0.0,72.0,0.0,68.0,215.0,0.0,57.0,930.0,1419.0,0.0,0.0,916.0,254.0,1078.0,0.0,71.0,0.0,173.0,99.0,31.0,0.0,0.0,0.0,0.0,0.0,2247.0,0.0,3237.0,210.0,0.0,0.0,25.0,2082.0,0.0,111.0,5936.0,205.0,1.0,76.0,0.0,4218.0,211.0,0.0,14.0,167.0,98.0,24.0,137.0,0.0,320.0,2229.0,267.0,34.0,0.0,0.0,11.0,3306.0,0.0,0.0,210.0,96.0,473.0,5119.0,82.0,4044.0,1930.0,50.0,0.0,45.0,1.0,0.0,6.0,0.0,63.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,821.0,2374.0,2618.0,0.0,10.0,903.0,1522.0,0.0,1.0,82.0,92.0,0.0,0.0,563.0,1402.0,1523.0,0.0,137.0,196.0,53.0,89.0,177.0,1266.0,126.0,5692.0,222.0,3.0,0.0,2704.0,880.0,679.0,0.0,273.0,255.0,0.0,463.0,0.0,385.0,261.0,12.0,97.0,0.0,56.0,1.0,350.0,1992.0,94.0,0.0,35.0,22.0,0.0,0.0,43.0,0.0,481.0,1052.0,432.0,128.0,5.0,0.0,0.0,709.0,1.0,79.0,1322.0,90.0,0.0,0.0,0.0,0.0,487.0,0.0,85.0,810.0,0.0,22.0,0.0,103.0,135.0,18.0,11.0,265.0,568.0,823.0,582.0,43.0,0.0,0.0,0.0,0.0,0.0,44.0,2782.0,0.0,1139.0,0.0,0.0,28.0,0.0,1.0,1045.0,635.0,899.0,163.0,0.0,9.0,1209.0,68.0,0.0,43.0,175.0,55.0,0.0,62.0,258.0,2.0,189.0,51.0,0.0,0.0,0.0,0.0,0.0,45.0,0.0,0.0,2.0,2659.0,362.0,74.0,0.0,1.0,653.0,0.0,98.0,122.0,18.0,0.0,106.0,0.0,29.0,0.0,5062.0,0.0,94.0,586.0,0.0,0.0,151.0,243.0,606.0,353.0,0.0,0.0,0.0,448.0,15.0,9.0,0.0,86.0,0.0,588.0,0.0,83.0,0.0,118.0,460.0,725.0,13.0,1981.0,8.0,209.0,516.0,7.0,19.0,781.0,0.0,0.0,300.0,345.0,2167.0,816.0630719934,0.0,0.0,2013-11-17,,2013-46,815.9953315289763,830.2588371028401, +30,30,58.0,5.0,83.0,0.0,66.0,273.0,335.0,79.0,0.0,245.0,7039.0,3.0,41.0,510.0,470.0,54.0,54.0,143.0,2721.0,0.0,35.0,1708.0,7.0,27.0,431.0,40.0,2065.0,518.0,14.0,0.0,0.0,2.0,894.0,70.0,878.0,2736.0,1.0,75.0,0.0,109.0,305.0,0.0,69.0,1030.0,1380.0,1.0,0.0,869.0,267.0,1294.0,0.0,83.0,0.0,159.0,98.0,28.0,0.0,0.0,0.0,2.0,0.0,2420.0,0.0,3980.0,158.0,0.0,5.0,25.0,2276.0,0.0,122.0,8247.0,177.0,0.0,70.0,0.0,4425.0,218.0,0.0,16.0,142.0,118.0,23.0,113.0,2.0,328.0,2597.0,256.0,17.0,0.0,0.0,11.0,3137.0,0.0,0.0,133.0,112.0,517.0,6098.0,123.0,4665.0,1834.0,38.0,0.0,46.0,4.0,0.0,7.0,0.0,36.0,2.0,0.0,0.0,0.0,4.0,1.0,1.0,828.0,2650.0,2644.0,0.0,18.0,878.0,1844.0,0.0,3.0,56.0,103.0,0.0,0.0,553.0,1388.0,1554.0,0.0,126.0,231.0,55.0,104.0,180.0,1211.0,118.0,6188.0,171.0,6.0,0.0,3000.0,954.0,754.0,0.0,279.0,303.0,0.0,418.0,0.0,350.0,298.0,11.0,90.0,0.0,59.0,0.0,341.0,2505.0,108.0,0.0,39.0,15.0,0.0,0.0,37.0,1.0,505.0,1081.0,408.0,244.0,9.0,0.0,0.0,728.0,0.0,97.0,1296.0,83.0,3.0,0.0,0.0,3.0,424.0,0.0,108.0,749.0,1.0,20.0,1.0,84.0,99.0,19.0,6.0,214.0,512.0,760.0,603.0,53.0,0.0,0.0,0.0,1.0,0.0,21.0,3013.0,0.0,956.0,2.0,1.0,21.0,0.0,0.0,858.0,672.0,874.0,142.0,0.0,10.0,1217.0,88.0,0.0,36.0,159.0,51.0,0.0,50.0,283.0,8.0,185.0,73.0,0.0,0.0,2.0,0.0,1.0,34.0,0.0,0.0,7.0,2934.0,436.0,86.0,0.0,1.0,812.0,1.0,80.0,128.0,12.0,0.0,93.0,1.0,30.0,0.0,5909.0,0.0,109.0,618.0,0.0,0.0,112.0,194.0,446.0,370.0,0.0,0.0,0.0,491.0,12.0,25.0,0.0,75.0,0.0,668.0,0.0,75.0,0.0,114.0,377.0,696.0,14.0,2491.0,8.0,170.0,423.0,9.0,19.0,755.0,1.0,0.0,276.0,266.0,2377.0,887.0418975406,6.0,3.0,2013-11-24,,2013-47,886.9041582252867,887.0418975406, +31,31,67.0,5.0,139.0,0.0,49.0,284.0,378.0,67.0,0.0,253.0,7142.0,4.0,36.0,531.0,495.0,41.0,83.0,159.0,3184.0,0.0,37.0,606.0,8.0,36.0,544.0,64.0,1997.0,438.0,20.0,0.0,0.0,0.0,777.0,95.0,699.0,2733.0,0.0,69.0,1.0,65.0,237.0,0.0,68.0,1007.0,1304.0,0.0,0.0,898.0,189.0,1263.0,0.0,92.0,1.0,212.0,127.0,17.0,0.0,0.0,0.0,2.0,0.0,2578.0,1.0,3208.0,195.0,0.0,6.0,25.0,2291.0,0.0,109.0,7372.0,163.0,0.0,68.0,0.0,4545.0,194.0,0.0,13.0,158.0,112.0,22.0,136.0,2.0,329.0,2378.0,209.0,31.0,1.0,0.0,4.0,3419.0,0.0,0.0,215.0,133.0,536.0,6109.0,128.0,3870.0,1829.0,50.0,0.0,43.0,2.0,0.0,5.0,0.0,54.0,0.0,1.0,0.0,0.0,2.0,0.0,0.0,917.0,2618.0,2785.0,0.0,19.0,953.0,1731.0,0.0,1.0,55.0,91.0,0.0,0.0,500.0,1563.0,1700.0,0.0,132.0,249.0,47.0,84.0,201.0,1236.0,134.0,6547.0,158.0,5.0,0.0,2542.0,1006.0,748.0,0.0,216.0,315.0,1.0,475.0,0.0,348.0,292.0,11.0,82.0,0.0,38.0,2.0,316.0,2404.0,98.0,0.0,35.0,16.0,0.0,0.0,50.0,0.0,458.0,1072.0,390.0,118.0,2.0,0.0,0.0,740.0,0.0,62.0,1380.0,93.0,0.0,0.0,0.0,3.0,359.0,0.0,95.0,791.0,1.0,16.0,0.0,106.0,132.0,31.0,16.0,247.0,527.0,783.0,560.0,36.0,0.0,0.0,0.0,0.0,0.0,25.0,3053.0,0.0,1026.0,1.0,1.0,26.0,0.0,0.0,1708.0,629.0,867.0,133.0,0.0,11.0,1238.0,113.0,0.0,38.0,164.0,37.0,0.0,48.0,255.0,5.0,189.0,65.0,0.0,0.0,3.0,0.0,0.0,31.0,3.0,0.0,9.0,2904.0,467.0,58.0,0.0,1.0,701.0,0.0,62.0,132.0,22.0,0.0,105.0,0.0,31.0,0.0,5323.0,0.0,69.0,643.0,1.0,0.0,102.0,175.0,374.0,399.0,0.0,0.0,0.0,523.0,6.0,10.0,0.0,44.0,0.0,666.0,0.0,59.0,0.0,146.0,413.0,742.0,7.0,2579.0,16.0,224.0,490.0,11.0,17.0,820.0,0.0,0.0,230.0,286.0,2456.0,833.1871601473,2.0,0.0,2013-12-01,,2013-48,833.1726517031889,777.06171359646, +32,32,59.0,1.0,105.0,0.0,66.0,281.0,354.0,88.0,0.0,270.0,5432.0,4.0,35.0,546.0,508.0,42.0,64.0,161.0,2741.0,0.0,50.0,379.0,12.0,35.0,444.0,50.0,1943.0,500.0,16.0,0.0,0.0,0.0,716.0,84.0,537.0,2136.0,0.0,75.0,0.0,60.0,233.0,0.0,90.0,970.0,1302.0,0.0,0.0,776.0,203.0,1151.0,0.0,67.0,0.0,177.0,166.0,28.0,0.0,0.0,0.0,1.0,0.0,2278.0,0.0,2786.0,162.0,0.0,1.0,18.0,2069.0,0.0,144.0,5607.0,167.0,0.0,67.0,0.0,3752.0,261.0,0.0,10.0,108.0,140.0,29.0,120.0,0.0,470.0,2444.0,321.0,28.0,1.0,0.0,9.0,3179.0,0.0,0.0,178.0,92.0,531.0,4590.0,160.0,3179.0,1835.0,46.0,0.0,45.0,3.0,0.0,7.0,1.0,70.0,1.0,1.0,0.0,0.0,2.0,2.0,1.0,905.0,2169.0,2152.0,0.0,18.0,845.0,1596.0,0.0,1.0,78.0,93.0,0.0,0.0,492.0,1542.0,1449.0,0.0,120.0,222.0,46.0,66.0,186.0,1218.0,122.0,5422.0,138.0,4.0,0.0,2202.0,934.0,635.0,0.0,229.0,287.0,0.0,475.0,0.0,342.0,269.0,9.0,83.0,0.0,47.0,10.0,295.0,1777.0,85.0,0.0,44.0,11.0,0.0,0.0,37.0,0.0,452.0,979.0,387.0,82.0,11.0,0.0,0.0,772.0,0.0,67.0,1153.0,68.0,1.0,0.0,0.0,1.0,417.0,0.0,102.0,734.0,1.0,19.0,1.0,109.0,91.0,23.0,17.0,249.0,568.0,755.0,592.0,38.0,0.0,0.0,0.0,0.0,0.0,19.0,2495.0,0.0,1034.0,2.0,0.0,15.0,0.0,0.0,792.0,613.0,878.0,155.0,0.0,7.0,1255.0,81.0,0.0,38.0,169.0,49.0,0.0,65.0,265.0,1.0,191.0,66.0,0.0,0.0,2.0,0.0,0.0,26.0,0.0,0.0,4.0,2382.0,460.0,61.0,0.0,1.0,528.0,1.0,77.0,142.0,26.0,0.0,107.0,0.0,20.0,0.0,4557.0,0.0,64.0,545.0,0.0,0.0,133.0,190.0,424.0,422.0,0.0,0.0,0.0,467.0,5.0,14.0,0.0,60.0,0.0,539.0,1.0,77.0,0.0,104.0,384.0,709.0,13.0,2100.0,16.0,190.0,425.0,5.0,19.0,796.0,0.0,0.0,230.0,336.0,2047.0,817.8389756183,3.0,2.0,2013-12-08,,2013-49,817.8692331148422,854.03787632432, +33,33,72.0,2.0,142.0,0.0,71.0,275.0,409.0,90.0,0.0,295.0,5482.0,6.0,37.0,585.0,487.0,31.0,56.0,193.0,2943.0,0.0,36.0,414.0,14.0,32.0,436.0,47.0,1879.0,442.0,17.0,0.0,0.0,0.0,720.0,65.0,604.0,2179.0,0.0,73.0,0.0,94.0,225.0,0.0,75.0,961.0,1267.0,0.0,0.0,688.0,229.0,891.0,0.0,138.0,0.0,183.0,161.0,39.0,0.0,0.0,0.0,2.0,0.0,2033.0,2.0,5142.0,190.0,0.0,2.0,19.0,1913.0,0.0,123.0,5576.0,187.0,0.0,66.0,0.0,3961.0,243.0,1.0,14.0,137.0,133.0,35.0,118.0,0.0,456.0,1776.0,257.0,23.0,0.0,0.0,10.0,2975.0,0.0,1.0,164.0,77.0,490.0,4265.0,162.0,3092.0,1879.0,39.0,0.0,48.0,1.0,0.0,8.0,0.0,76.0,3.0,1.0,0.0,1.0,2.0,1.0,3.0,851.0,2101.0,2162.0,0.0,19.0,838.0,1359.0,0.0,1.0,88.0,103.0,0.0,0.0,464.0,1433.0,1378.0,0.0,114.0,196.0,54.0,104.0,175.0,1149.0,123.0,4795.0,144.0,4.0,0.0,2056.0,1029.0,610.0,0.0,221.0,310.0,0.0,427.0,0.0,272.0,275.0,6.0,84.0,0.0,39.0,5.0,353.0,1687.0,87.0,0.0,40.0,31.0,0.0,0.0,58.0,0.0,515.0,1024.0,492.0,99.0,7.0,0.0,0.0,690.0,0.0,66.0,1149.0,86.0,0.0,3.0,0.0,2.0,461.0,0.0,64.0,630.0,1.0,27.0,1.0,134.0,82.0,23.0,15.0,248.0,521.0,780.0,613.0,54.0,0.0,0.0,0.0,0.0,0.0,25.0,2575.0,0.0,1007.0,2.0,0.0,23.0,0.0,0.0,627.0,578.0,844.0,170.0,0.0,11.0,1298.0,92.0,0.0,39.0,121.0,38.0,1.0,45.0,269.0,5.0,186.0,83.0,0.0,0.0,3.0,0.0,0.0,28.0,1.0,0.0,3.0,2272.0,412.0,50.0,0.0,0.0,526.0,2.0,76.0,166.0,14.0,0.0,88.0,0.0,21.0,0.0,4268.0,0.0,81.0,545.0,0.0,0.0,108.0,174.0,364.0,387.0,0.0,0.0,0.0,479.0,10.0,13.0,0.0,102.0,0.0,526.0,0.0,57.0,0.0,130.0,401.0,695.0,14.0,1973.0,11.0,205.0,408.0,3.0,18.0,754.0,0.0,0.0,231.0,277.0,1877.0,998.8334791484,4.0,0.0,2013-12-15,,2013-50,999.029999048304,959.42441127512, +34,34,51.0,4.0,107.0,0.0,51.0,259.0,374.0,70.0,0.0,259.0,5890.0,3.0,34.0,485.0,530.0,36.0,71.0,230.0,2537.0,0.0,35.0,427.0,11.0,44.0,448.0,44.0,1542.0,491.0,11.0,0.0,0.0,0.0,756.0,99.0,964.0,2177.0,1.0,81.0,3.0,86.0,329.0,0.0,77.0,842.0,1171.0,0.0,0.0,707.0,224.0,857.0,0.0,98.0,0.0,166.0,104.0,35.0,0.0,0.0,0.0,1.0,0.0,2315.0,0.0,3463.0,281.0,0.0,4.0,16.0,1945.0,0.0,123.0,5941.0,173.0,0.0,68.0,0.0,3457.0,214.0,1.0,7.0,144.0,155.0,33.0,107.0,2.0,337.0,1661.0,239.0,39.0,1.0,0.0,5.0,3198.0,0.0,0.0,170.0,109.0,430.0,4682.0,144.0,4007.0,1776.0,92.0,2.0,43.0,4.0,1.0,2.0,0.0,69.0,4.0,1.0,3.0,0.0,0.0,0.0,0.0,1055.0,25983.0,2087.0,0.0,16.0,882.0,1460.0,0.0,1.0,68.0,97.0,0.0,0.0,533.0,1272.0,1380.0,0.0,114.0,203.0,34.0,91.0,196.0,1112.0,127.0,5107.0,165.0,3.0,1.0,2228.0,1003.0,601.0,0.0,266.0,360.0,0.0,428.0,0.0,279.0,256.0,8.0,95.0,0.0,41.0,7.0,330.0,1603.0,112.0,0.0,55.0,28.0,0.0,0.0,43.0,0.0,425.0,895.0,472.0,98.0,8.0,0.0,0.0,707.0,0.0,72.0,1204.0,89.0,0.0,3.0,0.0,4.0,397.0,0.0,91.0,700.0,1.0,33.0,0.0,161.0,102.0,24.0,6.0,294.0,540.0,781.0,576.0,35.0,0.0,1.0,0.0,0.0,0.0,24.0,2470.0,0.0,1052.0,1.0,2.0,28.0,0.0,0.0,621.0,559.0,811.0,142.0,1.0,9.0,1271.0,102.0,0.0,40.0,164.0,42.0,0.0,58.0,238.0,4.0,184.0,57.0,0.0,0.0,3.0,0.0,0.0,34.0,2.0,0.0,1.0,2124.0,412.0,59.0,0.0,2.0,499.0,0.0,70.0,141.0,23.0,1.0,110.0,0.0,10.0,0.0,4618.0,0.0,88.0,518.0,0.0,0.0,113.0,178.0,452.0,372.0,0.0,2.0,0.0,483.0,16.0,11.0,0.0,97.0,0.0,519.0,0.0,75.0,0.0,133.0,412.0,721.0,13.0,1928.0,23.0,193.0,474.0,6.0,25.0,752.0,0.0,0.0,179.0,331.0,2046.0,832.6298825877002,9.0,1.0,2013-12-22,,2013-51,832.636169082245,909.5992455471002, +35,35,74.0,1.0,111.0,0.0,65.0,231.0,315.0,76.0,0.0,260.0,5280.0,7.0,31.0,501.0,600.0,36.0,44.0,352.0,2142.0,0.0,21.0,346.0,6.0,34.0,357.0,37.0,1448.0,499.0,11.0,0.0,0.0,0.0,622.0,79.0,945.0,1972.0,0.0,78.0,1.0,41.0,151.0,0.0,54.0,756.0,906.0,0.0,0.0,648.0,213.0,819.0,0.0,1029.0,0.0,167.0,92.0,24.0,0.0,0.0,0.0,0.0,0.0,1864.0,0.0,2874.0,236.0,0.0,6.0,26.0,1629.0,0.0,120.0,5210.0,188.0,0.0,52.0,0.0,3228.0,212.0,0.0,17.0,116.0,138.0,28.0,88.0,0.0,264.0,1445.0,223.0,38.0,0.0,0.0,9.0,2802.0,0.0,0.0,124.0,96.0,326.0,4071.0,149.0,3235.0,1669.0,55.0,1.0,44.0,2.0,3.0,3.0,1.0,47.0,1.0,4.0,4.0,0.0,3.0,0.0,3.0,689.0,1842.0,1676.0,0.0,15.0,693.0,1400.0,0.0,3.0,62.0,108.0,0.0,0.0,422.0,1091.0,1174.0,0.0,84.0,221.0,41.0,91.0,142.0,1018.0,62.0,5032.0,171.0,1.0,1.0,1635.0,934.0,526.0,0.0,205.0,243.0,3.0,379.0,0.0,261.0,219.0,14.0,82.0,0.0,38.0,13.0,309.0,1471.0,85.0,0.0,42.0,23.0,1.0,0.0,53.0,0.0,469.0,833.0,370.0,89.0,17.0,0.0,0.0,668.0,0.0,61.0,1082.0,84.0,3.0,1.0,0.0,0.0,382.0,0.0,91.0,569.0,1.0,26.0,0.0,108.0,86.0,12.0,4.0,272.0,496.0,666.0,493.0,41.0,0.0,0.0,0.0,0.0,0.0,23.0,2372.0,0.0,1027.0,1.0,0.0,26.0,0.0,0.0,464.0,459.0,774.0,144.0,0.0,9.0,1221.0,154.0,1.0,31.0,96.0,55.0,0.0,41.0,278.0,7.0,162.0,57.0,0.0,0.0,1.0,0.0,1.0,27.0,1.0,0.0,3.0,1724.0,460.0,48.0,0.0,0.0,417.0,1.0,60.0,105.0,31.0,0.0,96.0,0.0,21.0,0.0,3946.0,0.0,214.0,506.0,0.0,0.0,86.0,137.0,516.0,324.0,0.0,0.0,0.0,473.0,9.0,20.0,0.0,52.0,0.0,446.0,0.0,75.0,0.0,135.0,315.0,583.0,9.0,1581.0,6.0,203.0,430.0,4.0,20.0,745.0,1.0,0.0,133.0,310.0,1650.0,612.3214062565,4.0,4.0,2013-12-29,,2013-52,612.4306645029292,675.1713342734602, +36,36,48.0,0.0,66.0,0.0,33.0,184.0,140.0,67.0,0.0,167.0,4230.0,7.0,36.0,326.0,563.0,29.0,40.0,106.0,1526.0,0.0,43.0,202.0,9.0,32.0,277.0,56.0,1104.0,280.0,15.0,0.0,0.0,0.0,304.0,108.0,947.0,1319.0,0.0,62.0,0.0,48.0,163.0,0.0,42.0,445.0,744.0,0.0,0.0,267.0,136.0,761.0,0.0,1380.0,0.0,90.0,40.0,26.0,0.0,0.0,0.0,1.0,0.0,1302.0,0.0,2195.0,265.0,0.0,4.0,14.0,1236.0,0.0,100.0,4271.0,139.0,0.0,37.0,0.0,2748.0,114.0,1.0,6.0,100.0,52.0,20.0,71.0,1.0,173.0,811.0,191.0,31.0,0.0,0.0,13.0,2184.0,0.0,0.0,91.0,72.0,177.0,4060.0,79.0,2646.0,1056.0,38.0,0.0,31.0,4.0,2.0,6.0,0.0,31.0,3.0,0.0,3.0,0.0,2.0,1.0,2.0,376.0,1222.0,1043.0,0.0,13.0,453.0,1026.0,0.0,5.0,33.0,62.0,0.0,0.0,361.0,956.0,791.0,0.0,57.0,226.0,31.0,58.0,138.0,704.0,56.0,3713.0,133.0,5.0,5.0,1325.0,911.0,435.0,0.0,148.0,221.0,0.0,197.0,0.0,216.0,173.0,7.0,71.0,0.0,36.0,11.0,191.0,803.0,64.0,0.0,33.0,27.0,0.0,0.0,30.0,0.0,325.0,590.0,192.0,89.0,6.0,0.0,0.0,385.0,0.0,40.0,722.0,63.0,3.0,0.0,0.0,4.0,278.0,0.0,46.0,415.0,1.0,14.0,0.0,46.0,61.0,18.0,3.0,152.0,300.0,489.0,368.0,27.0,0.0,0.0,0.0,1.0,0.0,11.0,1720.0,0.0,905.0,1.0,1.0,20.0,0.0,0.0,242.0,343.0,566.0,119.0,0.0,13.0,660.0,91.0,0.0,18.0,82.0,42.0,1.0,27.0,241.0,5.0,143.0,58.0,0.0,0.0,2.0,0.0,0.0,22.0,0.0,0.0,5.0,1366.0,1511.0,63.0,0.0,1.0,437.0,0.0,47.0,77.0,25.0,0.0,84.0,0.0,18.0,0.0,3196.0,0.0,86.0,360.0,0.0,1.0,72.0,103.0,390.0,209.0,0.0,0.0,0.0,419.0,7.0,19.0,0.0,34.0,0.0,362.0,2.0,50.0,0.0,104.0,250.0,449.0,12.0,1029.0,14.0,147.0,407.0,12.0,16.0,603.0,0.0,0.0,80.0,231.0,1349.0,0.0,3.0,3.0,2014-01-05,,2014-1,-0.1234240982225856,411.0631053931201, +37,37,86.0,2.0,75.0,0.0,63.0,207.0,245.3333333333333,83.0,0.0,211.0,5027.0,1.0,23.0,414.0,778.0,29.0,53.0,128.0,2034.0,0.0,28.0,988.0,9.0,47.0,328.0,100.0,1357.0,345.0,12.0,0.0,5.0,1.0,540.0,109.0,820.0,1711.0,0.0,57.0,1.0,45.0,174.0,0.0,59.0,532.0,977.0,12.0,0.0,343.0,177.0,775.0,0.0,191.0,0.0,122.0,76.0,27.0,0.0,2513.0,0.0,1.0,8.0,1521.0,0.0,2575.0,521.0,0.0,12.0,13.0,1377.0,0.0,146.0,5016.5,136.0,0.0,45.0,0.0,2861.0,176.0,0.0,13.0,110.0,124.0,21.0,108.0,0.0,247.0,1099.0,218.0,54.0,1.0,0.0,10.0,2222.0,0.0,0.0,125.0,84.0,186.0,3680.0,109.0,2487.0,1540.0,51.0,0.0,29.0,3.0,1.0,6.0,1.0,49.0,4.0,0.0,1.0,0.0,1.0,0.0,4.0,569.0,1455.0,1315.0,1.0,15.0,592.0,1297.0,3.0,5.0,52.0,81.0,5.0,0.0,449.0,1027.0,1054.0,5.0,74.0,178.0,21.0,101.0,133.0,800.0,87.0,3306.0,149.0,4.0,5.0,1491.0,971.0,448.0,16.0,190.0,310.0,2.0,231.0,1.0,124.0,188.0,5.0,88.0,217.0,41.0,9.0,293.0,861.0,112.0,0.0,56.0,22.0,0.0,0.0,51.0,0.0,396.0,751.0,267.0,59.0,6.0,0.0,0.0,508.0,0.0,46.0,905.0,71.0,2.0,0.0,0.0,3.0,342.0,0.0,81.0,519.0,0.0,20.0,0.0,78.0,85.0,24.0,9.0,203.0,394.0,701.0,425.33333333333326,43.0,0.0,0.0,2.0,0.0,0.0,18.0,2106.0,0.0,1030.0,1.0,1.0,34.0,0.0,0.0,369.0,416.0,623.0,133.0,0.0,17.0,895.0,53.0,0.0,38.0,94.0,42.0,2.0,60.0,267.2,9.0,173.0,64.0,0.0,0.0,6.0,0.0,18.0,20.0,97.0,0.0,5.0,1682.0,458.0,47.0,0.0,2.0,447.0,2.0,59.0,85.0,24.0,0.0,88.0,1.0,21.0,0.0,3967.0,0.0,79.0,477.0,0.0,1.0,68.0,151.0,419.0,295.0,0.0,0.0,0.0,399.0,21.0,19.0,0.0,58.0,0.0,418.0,1.0,66.0,0.0,109.0,310.0,505.0,19.0,1262.0,22.0,150.0,398.0,6.0,18.0,585.0,0.0,0.0,91.0,248.0,1507.0,147.1670345843,13.0,3.0,2014-01-12,,2014-2,147.1347490091066,477.74330766658005, +38,38,75.0,2.0,123.0,0.0,57.0,373.0,350.66666666666663,121.0,0.0,301.0,6349.0,7.0,42.0,726.0,579.0,40.0,66.0,186.0,3153.0,0.0,40.0,320.0,6.0,40.0,473.0,70.0,2199.0,622.0,18.0,0.0,0.0,0.0,752.0,128.0,789.0,2597.0,0.0,84.0,0.0,96.0,222.0,0.0,90.0,869.0,1302.0,0.0,0.0,753.0,264.0,1023.0,0.0,503.0,0.0,224.0,147.0,25.0,0.0,0.0,0.0,2.0,29.0,2391.0,0.0,3406.0,297.0,0.0,11.0,24.0,2188.0,0.0,183.0,5762.0,214.0,0.0,83.0,0.0,3881.0,259.0,2.0,12.0,125.0,154.0,33.0,175.0,5.0,363.0,2093.0,346.0,48.0,1.0,0.0,7.0,3350.0,0.0,0.0,173.0,161.0,383.0,4533.0,195.0,3638.0,2160.0,70.0,2.0,46.0,3.0,3.0,5.0,0.0,99.0,3.0,0.0,4.0,1.0,1.0,1.0,2.0,917.0,2277.0,2029.0,0.0,17.0,955.0,1646.0,0.0,4.0,82.0,148.0,0.0,0.0,578.0,1286.0,1624.0,0.0,112.0,258.0,48.0,95.0,244.0,1221.0,157.0,4300.0,205.0,1.0,2.0,2270.0,1034.0,659.0,0.0,277.0,319.0,5.0,502.0,0.0,276.0,267.0,10.0,91.0,0.0,44.0,11.0,388.0,1771.0,115.0,0.0,86.0,23.0,0.0,0.0,50.0,0.0,640.0,1210.0,621.0,125.0,8.0,0.0,0.0,859.0,0.0,66.0,1296.0,97.0,1.0,0.0,0.0,3.0,489.0,0.0,96.0,870.0,1.0,38.0,0.0,117.0,141.0,20.0,14.0,308.0,533.0,1074.0,482.66666666666674,51.0,0.0,0.0,0.0,0.0,0.0,31.0,3157.0,0.0,1262.0,2.0,2.0,37.0,0.0,0.0,664.0,656.0,1017.0,196.0,0.0,12.0,1461.0,92.0,0.0,47.0,185.0,80.0,0.0,81.0,293.4,6.0,226.0,81.0,0.0,0.0,8.0,0.0,0.0,25.0,1.0,0.0,7.0,2507.0,658.0,62.0,0.0,9.0,643.0,0.0,83.0,143.0,20.0,0.0,133.0,0.0,20.0,0.0,5017.0,0.0,87.0,631.0,0.0,0.0,132.0,218.0,673.0,400.0,0.0,0.0,0.0,545.0,15.0,17.0,0.0,112.0,0.0,564.0,0.0,71.0,0.0,134.0,432.0,797.0,10.0,1945.0,16.0,220.0,527.0,8.0,23.0,680.0,1.0,0.0,188.0,362.0,2263.0,683.2447645676,11.0,4.0,2014-01-19,,2014-3,683.0599391873657,683.2447645676001, +39,39,69.0,8.0,153.0,0.0,76.0,410.0,456.0,153.0,0.0,355.0,6747.0,1.0,47.0,841.0,714.0,42.0,98.0,223.0,3255.0,0.0,41.0,384.0,12.0,39.0,593.0,58.0,2443.0,682.0,18.0,0.0,0.0,0.0,959.0,133.0,907.0,3032.0,0.0,78.0,3.0,94.0,265.0,0.0,77.0,1070.0,2010.0,0.0,0.0,943.0,278.0,1169.0,0.0,188.0,0.0,234.0,140.0,45.0,0.0,0.0,0.0,2.0,22.0,2919.0,1.0,3222.0,302.0,0.0,6.0,28.0,2415.0,0.0,183.0,6214.0,189.0,1.0,96.0,0.0,4173.0,258.0,2.0,23.0,111.0,178.0,45.0,192.0,8.0,356.0,2434.0,373.0,48.0,1.0,0.0,15.0,3585.0,0.0,0.0,179.0,150.0,582.0,5159.0,277.0,3975.0,2595.0,81.0,0.0,57.0,4.0,2.0,12.0,0.0,105.0,1.0,2.0,4.0,0.0,4.0,1.0,1.0,1055.0,2659.0,2475.0,0.0,18.0,1187.0,1842.0,0.0,3.0,123.0,153.0,0.0,0.0,752.0,1571.0,1836.0,1.0,144.0,317.0,66.0,109.0,233.0,1290.0,216.0,4879.0,207.0,6.0,3.0,2414.0,1461.0,714.0,0.0,300.0,426.0,3.0,593.0,0.0,322.0,331.0,15.0,104.0,0.0,50.0,19.0,403.0,2387.0,127.0,0.0,84.0,33.0,0.0,0.0,50.0,0.0,690.0,1429.0,657.0,113.0,14.0,0.0,0.0,999.0,0.0,66.0,1500.0,118.0,4.0,0.0,0.0,1.0,587.0,2.0,116.0,877.0,1.0,37.0,0.0,176.0,122.0,23.0,11.0,334.0,701.0,1013.0,540.0,72.0,0.0,0.0,0.0,0.0,0.0,30.0,3610.0,0.0,1380.0,6.0,3.0,41.0,0.0,0.0,776.0,863.0,1210.0,256.0,0.0,19.0,1967.0,93.0,0.0,45.0,185.0,76.0,0.0,87.0,319.6,8.0,255.0,113.0,0.0,0.0,11.0,0.0,0.0,33.0,1.0,0.0,6.0,2933.0,635.0,64.0,0.0,7.0,663.0,0.0,129.0,180.0,27.0,0.0,133.0,0.0,34.0,0.0,5563.0,0.0,99.0,742.0,0.0,0.0,158.0,243.0,743.0,422.0,0.0,0.0,1.0,616.0,12.0,18.0,0.0,110.0,0.0,688.0,1.0,65.0,0.0,146.0,488.0,813.0,17.0,2179.0,22.0,261.0,584.0,9.0,26.0,726.0,0.0,0.0,246.0,450.0,2551.0,755.7436517533,15.0,6.0,2014-01-26,,2014-4,755.8466483714692,811.9959032057601, +40,40,89.0,1.0,139.0,0.0,78.0,355.0,533.0,173.0,0.0,368.0,6802.0,13.0,32.0,807.0,550.0,39.0,107.0,216.0,3516.0,0.0,32.0,324.0,13.0,37.0,526.0,54.0,2285.0,674.0,19.0,0.0,0.0,0.0,878.0,125.0,1160.0,3077.0,0.0,99.0,3.0,85.0,229.0,0.0,92.0,1145.0,1901.0,0.0,0.0,914.0,329.0,1171.0,0.0,180.0,0.0,252.0,199.0,46.0,0.0,0.0,0.0,1.0,20.0,3114.0,3.0,3204.0,272.0,0.0,22.0,23.0,2295.0,0.0,216.0,6712.0,218.0,1.0,65.0,0.0,4109.0,239.0,0.0,12.0,111.0,158.0,40.0,175.0,5.0,384.0,2380.0,345.0,66.0,2.0,0.0,7.0,3743.0,0.0,0.0,212.0,162.0,531.0,5253.0,292.0,4175.0,2542.0,64.0,1.0,45.0,5.0,1.0,6.0,1.0,101.0,6.0,0.0,3.0,0.0,1.0,0.0,4.0,1103.0,2706.0,2615.0,0.0,19.0,1149.0,1784.0,0.0,5.0,101.0,183.0,0.0,0.0,777.0,1528.0,1820.0,0.0,183.0,297.0,70.0,126.0,256.0,1385.0,263.0,5106.0,215.0,9.0,1.0,2633.0,1296.0,723.0,0.0,336.0,406.0,1.0,623.0,0.0,281.0,323.0,20.0,103.0,0.0,52.0,20.0,393.0,2326.0,156.0,0.0,106.0,38.0,1.0,0.0,54.0,0.0,666.0,1457.0,552.0,138.0,11.0,0.0,0.0,979.0,0.0,63.0,1432.0,101.0,0.0,0.0,0.0,2.0,596.0,0.0,95.0,890.0,2.0,34.0,0.0,128.0,133.0,22.0,8.0,267.0,704.0,1028.0,597.3333333333334,59.0,0.0,0.0,0.0,0.0,2.0,38.0,3509.0,0.0,1411.0,2.0,4.0,89.0,0.0,0.0,715.0,726.0,1215.0,209.0,0.0,15.0,1975.0,93.0,0.0,56.0,207.0,62.0,2.0,86.0,345.8,5.0,262.0,106.0,0.0,0.0,16.0,0.0,0.0,38.0,2.0,0.0,9.0,2782.0,576.0,68.0,0.0,8.0,643.0,3.0,110.0,173.0,25.0,0.0,109.0,0.0,40.0,0.0,5595.0,0.0,220.0,825.0,1.0,0.0,114.0,265.0,813.0,388.0,0.0,0.0,1.0,578.0,12.0,19.0,0.0,110.0,0.0,701.0,1.0,98.0,0.0,159.0,422.0,793.0,11.0,2197.0,13.0,277.0,566.0,10.0,43.0,792.0,0.0,0.0,242.0,380.0,2605.0,917.0439720666001,7.0,2.0,2014-02-02,,2014-5,917.1094369568145,930.01019013474, +41,41,90.0,5.0,149.0,0.0,92.0,372.0,481.0,236.0,0.0,436.0,7432.0,4.0,41.0,724.0,677.0,39.0,95.0,324.0,2993.0,0.0,63.0,381.0,26.0,61.0,576.0,109.0,2310.0,589.0,16.0,0.0,0.0,1.0,949.0,122.0,1547.0,2871.0,1.0,149.0,1.0,59.0,223.0,0.0,119.0,1187.0,1736.0,0.0,0.0,934.0,329.0,1174.0,0.0,192.0,0.0,244.0,135.0,31.0,0.0,0.0,0.0,1.0,28.0,2624.0,1.0,3006.0,388.0,0.0,15.0,35.0,2298.0,0.0,320.0,7067.0,246.0,0.0,117.0,0.0,4136.0,292.0,2.0,10.0,155.0,178.0,48.0,242.0,5.0,369.0,2344.0,276.0,56.0,1.0,0.0,9.0,3723.0,0.0,1.0,210.0,159.0,500.0,5137.0,306.0,4094.0,2566.0,123.0,5.0,54.0,2.0,2.0,9.0,0.0,78.0,3.0,3.0,3.0,0.0,6.0,1.0,4.0,1096.0,2617.0,2306.0,0.0,17.0,1212.0,1756.0,0.0,2.0,153.0,229.0,0.0,0.0,766.0,1580.0,1911.0,0.0,172.0,316.0,71.0,153.0,255.0,1282.0,357.0,5151.0,168.0,3.0,2.0,2294.0,1129.0,654.0,0.0,340.0,420.0,7.0,637.0,0.0,232.0,348.0,31.0,105.0,0.0,59.0,20.0,419.0,2538.0,124.0,0.0,198.0,47.0,0.0,0.0,47.0,0.0,673.0,1382.0,597.0,108.0,12.0,0.0,0.0,940.0,0.0,80.0,1454.0,117.0,4.0,0.0,0.0,3.0,631.0,0.0,137.0,1274.0,2.0,33.0,1.0,141.0,137.0,37.0,20.0,310.0,668.0,1057.0,654.6666666666667,57.0,0.0,1.0,0.0,0.0,0.0,36.0,3442.0,0.0,1340.0,3.0,4.0,50.0,0.0,0.0,739.0,810.0,1228.0,174.0,0.0,17.0,1828.0,153.0,0.0,57.0,191.0,74.0,0.0,76.0,372.0,10.0,264.0,104.0,0.0,0.0,10.0,0.0,0.0,42.0,0.0,0.0,11.0,3013.0,600.0,75.0,0.0,5.0,600.0,1.0,104.0,168.0,40.0,0.0,150.0,1.0,29.0,0.0,5402.0,0.0,977.0,843.0,0.0,0.0,171.0,261.0,663.0,502.0,0.0,0.0,0.0,658.0,23.0,25.0,0.0,120.0,0.0,738.0,2.0,116.0,0.0,161.0,468.0,774.0,26.0,2184.0,17.0,244.0,578.0,10.0,39.0,742.0,2.0,0.0,273.0,377.0,2714.0,1012.9801789160001,8.0,10.0,2014-02-09,,2014-6,1012.998227477301,874.3029412870801, +42,42,88.0,8.0,171.0,0.0,77.0,372.0,495.0,187.0,0.0,400.0,7845.0,6.0,57.0,696.0,633.0,61.0,85.0,265.0,3207.0,0.0,50.0,346.0,19.0,50.0,576.0,84.0,2153.0,621.0,24.0,0.0,0.0,0.0,966.0,117.0,1151.0,2946.0,0.0,126.0,2.0,67.0,336.0,0.0,133.0,1158.0,1731.0,0.0,0.0,977.0,316.0,1272.0,0.0,162.0,0.0,268.0,136.0,37.0,0.0,0.0,0.0,0.0,13.0,2748.0,0.0,2856.0,285.0,0.0,16.0,28.0,2439.0,0.0,210.0,7313.0,296.0,1.0,98.0,0.0,4082.0,310.0,2.0,23.0,157.0,153.0,40.0,232.0,13.0,411.0,2374.0,302.0,56.0,0.0,0.0,14.0,3659.0,0.0,0.0,180.0,162.0,509.0,4782.0,284.0,4057.0,3159.0,60.0,4.0,56.0,2.0,5.0,9.0,0.0,130.0,3.0,1.0,2.0,0.0,3.0,2.0,7.0,1101.0,2526.0,2507.0,0.0,20.0,1283.0,1816.0,0.0,1.0,147.0,201.0,0.0,0.0,725.0,1539.0,1778.0,0.0,166.0,272.0,115.0,143.0,300.0,1307.0,358.0,5121.0,215.0,11.0,2.0,2304.0,1077.0,686.0,0.0,343.0,361.0,0.0,699.0,0.0,244.0,355.0,25.0,126.0,0.0,61.0,43.0,417.0,3007.0,117.0,0.0,128.0,53.0,0.0,0.0,68.0,0.0,2217.0,1334.0,642.0,124.0,11.0,0.0,0.0,948.0,0.0,74.0,1363.0,122.0,1.0,1.0,0.0,3.0,667.0,0.0,137.0,1003.0,0.0,37.0,0.0,140.0,145.0,34.0,13.0,379.0,641.0,951.0,712.0,69.0,0.0,0.0,0.0,1.0,0.0,53.0,3430.0,0.0,1465.0,0.0,0.0,50.0,0.0,0.0,809.0,804.0,1070.0,182.0,0.0,25.0,1873.0,123.0,0.0,58.0,188.0,57.0,0.0,73.0,385.0,23.0,261.0,101.0,0.0,0.0,9.0,1.0,0.0,36.0,0.0,0.0,10.0,2807.0,644.0,62.0,0.0,1.0,643.0,0.0,100.0,265.0,38.0,1.0,125.0,0.0,40.0,0.0,5599.0,0.0,122.0,769.0,0.0,0.0,179.0,304.0,712.0,440.0,0.0,0.0,1.0,564.0,15.0,30.0,0.0,83.0,0.0,606.0,0.0,112.0,0.0,139.0,425.0,853.0,19.0,2182.0,19.0,247.0,600.0,6.0,53.0,865.0,4.0,0.0,216.0,396.0,2672.0,1014.7657531749,10.0,7.0,2014-02-16,,2014-7,1014.7517939038098,962.96133289058, +43,43,72.0,11.0,153.0,0.0,70.0,350.0,497.0,139.0,0.0,394.0,8452.0,5.0,36.0,696.0,601.0,33.0,75.0,246.0,3082.0,0.0,46.0,327.0,25.0,32.0,516.0,63.0,2277.0,554.0,20.0,0.0,0.0,0.0,936.0,136.0,986.0,2744.0,0.0,81.0,2.0,76.0,285.0,0.0,109.0,1150.0,1500.0,0.0,0.0,959.0,365.0,1261.0,0.0,188.0,0.0,234.0,108.0,22.0,0.0,0.0,0.0,1.0,15.0,2731.0,1.0,3066.0,229.0,0.0,8.0,23.0,2269.0,0.0,148.0,7607.0,283.0,1.0,118.0,0.0,3928.0,290.0,0.0,19.0,154.0,182.0,39.0,253.0,3.0,347.0,2118.0,325.0,70.0,1.0,0.0,21.0,3658.0,0.0,0.0,186.0,159.0,503.0,4471.0,337.0,3854.0,2570.0,47.0,0.0,41.0,1.0,1.0,13.0,0.0,64.0,0.0,2.0,1.0,0.0,2.0,1.0,3.0,947.0,2438.0,2613.0,1.0,30.0,1129.0,1765.0,0.0,1.0,106.0,180.0,0.0,0.0,638.0,1482.0,1730.0,0.0,161.0,218.0,67.0,143.0,251.0,1274.0,222.0,5773.0,196.0,14.0,1.0,2296.0,1114.0,642.0,0.0,328.0,330.0,0.0,606.0,0.0,287.0,308.0,18.0,118.0,0.0,63.0,35.0,417.0,2557.0,128.0,0.0,105.0,34.0,0.0,0.0,75.0,0.0,666.0,1214.0,596.0,95.0,8.0,0.0,0.0,878.0,0.0,87.0,1403.0,121.0,0.0,1.0,0.0,0.0,626.0,0.0,126.0,806.0,1.0,31.0,0.0,159.0,124.0,24.0,18.0,308.0,630.0,1121.0,651.0,60.0,0.0,0.0,1.0,0.0,0.0,43.0,3283.0,0.0,1443.0,1.0,1.0,45.0,0.0,0.0,760.0,689.0,1031.0,186.0,0.0,17.0,1803.0,126.0,0.0,84.0,198.0,65.0,1.0,70.0,373.0,12.0,253.0,117.0,0.0,0.0,2.0,0.0,2.0,45.0,3.0,0.0,17.0,2661.0,545.0,84.0,0.0,3.0,582.0,0.0,125.0,173.0,44.0,1.0,163.0,0.0,36.0,0.0,5166.0,0.0,91.0,822.0,0.0,0.0,144.0,255.0,612.0,439.0,0.0,0.0,0.0,580.0,19.0,25.0,0.0,111.0,0.0,631.0,6.0,87.0,0.0,120.0,418.0,771.0,9.0,2506.0,19.0,238.0,584.0,14.0,37.0,998.0,2.0,0.0,260.0,403.0,2563.0,1087.6464634335,11.0,6.0,2014-02-23,,2014-8,1087.6784839984603,1071.20527655836, +44,44,69.0,12.0,124.0,0.0,84.0,311.0,436.0,105.0,0.0,390.0,8301.0,11.0,40.0,659.0,612.0,43.0,69.0,207.0,3074.0,0.0,47.0,282.0,10.0,53.0,577.0,60.0,2155.0,546.0,23.0,0.0,0.0,0.0,938.0,94.0,871.0,2693.0,1.0,85.0,1.0,49.0,227.0,0.0,93.0,1111.0,1659.0,0.0,0.0,927.0,266.0,1299.0,0.0,152.0,0.0,224.0,105.0,31.0,0.0,0.0,0.0,4.0,20.0,2280.0,4.0,2748.0,251.0,0.0,18.0,34.0,2227.0,0.0,153.0,7674.0,261.0,0.0,98.0,0.0,3822.0,238.0,2.0,25.0,154.0,146.0,48.0,203.0,2.0,365.0,2006.0,338.0,52.0,0.0,0.0,14.0,3398.0,0.0,0.0,185.0,137.0,413.0,4887.0,128.0,3837.0,2210.0,58.0,4.0,44.0,5.0,1.0,6.0,2.0,86.0,4.0,3.0,5.0,1.0,3.0,2.0,3.0,842.0,2409.0,2504.0,1.0,18.0,1104.0,1768.0,0.0,2.0,92.0,144.0,0.0,0.0,648.0,1374.0,1648.0,0.0,131.0,278.0,46.0,102.0,214.0,1298.0,140.0,6146.0,172.0,7.0,3.0,2180.0,959.0,658.0,0.0,332.0,380.0,2.0,500.0,0.0,230.0,292.0,14.0,125.0,0.0,44.0,28.0,429.0,2197.0,98.0,0.0,92.0,46.0,0.0,0.0,52.0,0.0,588.0,1197.0,515.0,102.0,13.0,0.0,0.0,856.0,0.0,96.0,1412.0,92.0,2.0,0.0,0.0,4.0,562.0,1.0,109.0,819.0,4.0,45.0,1.0,107.0,118.0,20.0,13.0,325.0,578.0,981.0,643.0,42.0,0.0,1.0,2.0,0.0,2.0,38.0,3142.0,0.0,1255.0,3.0,2.0,55.0,0.0,0.0,671.0,678.0,1033.0,174.0,0.0,26.0,1609.0,95.0,1.0,68.0,166.0,46.0,2.0,59.0,343.0,9.0,221.0,78.0,0.0,0.0,20.0,1.0,0.0,24.0,0.0,0.0,11.0,2635.0,523.0,55.0,0.0,5.0,658.0,3.0,88.0,142.0,46.0,0.0,133.0,3.0,30.0,0.0,5229.0,0.0,99.0,732.0,0.0,0.0,114.0,251.0,507.0,427.0,0.0,2.0,2.0,498.0,14.0,20.0,0.0,98.0,0.0,646.0,2.0,94.0,0.0,183.0,422.0,927.0,15.0,2459.0,17.0,249.0,581.0,12.0,32.0,809.0,2.0,0.0,230.0,370.0,2445.0,831.3323970462,10.0,4.0,2014-03-02,,2014-9,831.3972748208448,872.4668994400799, +45,45,76.0,4.0,111.0,0.0,57.0,301.0,453.0,76.0,0.0,345.0,7928.0,16.0,37.0,576.0,606.0,36.0,102.0,194.0,2706.0,0.0,30.0,318.0,27.0,43.0,582.0,75.0,1926.0,511.0,19.0,0.0,0.0,0.0,877.0,95.0,1135.0,2524.0,0.0,96.0,0.0,65.0,243.0,0.0,99.0,1079.0,1470.0,0.0,0.0,815.0,253.0,1355.0,0.0,139.0,0.0,207.0,105.0,34.0,0.0,0.0,0.0,2.0,22.0,2319.0,1.0,2610.0,222.0,0.0,3.0,30.0,2058.0,0.0,129.0,7091.0,213.0,0.0,63.0,0.0,3871.0,261.0,0.0,20.0,133.0,125.0,27.0,120.0,3.0,367.0,1937.0,249.0,66.0,0.0,0.0,11.0,3326.0,0.0,0.0,162.0,146.0,448.0,4862.0,104.0,3659.0,2113.0,68.0,1.0,52.0,0.0,0.0,7.0,0.0,58.0,4.0,4.0,3.0,0.0,3.0,1.0,5.0,826.0,2283.0,2314.0,0.0,18.0,1088.0,1616.0,0.0,3.0,80.0,94.0,0.0,0.0,562.0,1358.0,1632.0,0.0,154.0,268.0,49.0,93.0,202.0,1149.0,124.0,5064.0,174.0,7.0,2.0,2196.0,949.0,650.0,0.0,270.0,351.0,1.0,495.0,0.0,274.0,262.0,15.0,122.0,0.0,38.0,12.0,409.0,2119.0,89.0,0.0,76.0,38.0,0.0,0.0,57.0,0.0,601.0,1132.0,445.0,86.0,16.0,0.0,0.0,881.0,0.0,83.0,1253.0,70.0,0.0,0.0,0.0,4.0,482.0,0.0,112.0,807.0,3.0,34.0,0.0,113.0,115.0,21.0,16.0,272.0,530.0,848.0,605.0,45.0,0.0,1.0,2.0,0.0,1.0,32.0,3079.0,0.0,1157.0,1.0,1.0,23.0,0.0,0.0,610.0,641.0,901.0,165.0,0.0,32.0,1556.0,83.0,0.0,62.0,167.0,42.0,2.0,53.0,358.0,14.0,210.0,81.0,0.0,0.0,1.0,0.0,2.0,24.0,0.0,0.0,13.0,2327.0,512.0,66.0,0.0,2.0,656.0,1.0,97.0,208.0,26.0,0.0,156.0,0.0,21.0,1.0,4899.0,0.0,67.0,702.0,0.0,0.0,146.0,248.0,523.0,375.0,0.0,0.0,0.0,548.0,12.0,24.0,0.0,60.0,0.0,553.0,1.0,76.0,0.0,156.0,378.0,800.0,9.0,2175.0,12.0,254.0,525.0,9.0,22.0,753.0,1.0,0.0,220.0,368.0,2389.0,1005.4405290578,18.0,4.0,2014-03-09,,2014-10,1005.3747444522733,981.76080275436, +46,46,87.0,8.0,107.0,0.0,71.0,327.0,437.0,124.0,0.0,305.0,7986.0,5.0,45.0,633.0,607.0,42.0,73.0,158.0,2840.0,0.0,61.0,296.0,26.0,27.0,603.0,79.0,2209.0,451.0,18.0,0.0,0.0,0.0,940.0,115.0,1248.0,2455.0,0.0,267.0,0.0,49.0,215.0,0.0,74.0,1036.0,2545.0,0.0,0.0,815.0,245.0,1349.0,0.0,331.0,0.0,247.0,94.0,17.0,0.0,0.0,0.0,0.0,9.0,2127.0,2.0,2539.0,234.0,0.0,18.0,22.0,2030.0,0.0,205.0,7007.0,211.0,1.0,77.0,0.0,3959.0,217.0,1.0,15.0,163.0,127.0,43.0,126.0,1.0,479.0,1703.0,303.0,33.0,0.0,0.0,15.0,3147.0,0.0,0.0,180.0,131.0,409.0,4896.0,138.0,3542.0,2001.0,56.0,1.0,37.0,2.0,0.0,9.0,1.0,69.0,4.0,1.0,5.0,0.0,3.0,1.0,3.0,752.0,2211.0,2166.0,0.0,23.0,975.0,1594.0,0.0,7.0,83.0,119.0,0.0,0.0,522.0,1342.0,1542.0,0.0,122.0,264.0,53.0,105.0,217.0,1159.0,101.0,4969.0,186.0,6.0,6.0,2120.0,1053.0,606.0,0.0,240.0,340.0,1.0,463.0,0.0,251.0,287.0,16.0,107.0,0.0,55.0,15.0,357.0,2030.0,82.0,0.0,64.0,34.0,0.0,0.0,56.0,1.0,605.0,1146.0,535.0,99.0,12.0,0.0,0.0,834.0,0.0,74.0,1279.0,79.0,5.0,0.0,0.0,9.0,438.0,0.0,115.0,867.0,4.0,23.0,0.0,132.0,108.0,20.0,10.0,275.0,538.0,859.0,568.0,57.0,0.0,0.0,0.0,0.0,2.0,31.0,3048.0,0.0,1160.0,3.0,4.0,50.0,0.0,0.0,525.0,608.0,1004.0,209.0,0.0,18.0,1441.0,85.0,0.0,65.0,169.0,44.0,2.0,55.0,362.0,9.0,249.0,77.0,0.0,0.0,12.0,0.0,1.0,28.0,1.0,0.0,14.0,2466.0,555.0,71.0,0.0,5.0,659.0,2.0,83.0,144.0,27.0,0.0,122.0,1.0,31.0,0.0,4519.0,0.0,82.0,736.0,0.0,1.0,150.0,185.0,463.0,467.0,0.0,1.0,2.0,588.0,12.0,21.0,0.0,61.0,0.0,588.0,2.0,78.0,0.0,134.0,352.0,666.0,22.0,2106.0,22.0,223.0,469.0,6.0,26.0,829.0,0.0,0.0,204.0,339.0,2375.0,1037.0049090155999,6.0,3.0,2014-03-16,,2014-11,1036.843124562265,981.9174624374799, +47,47,94.0,7.0,100.0,0.0,79.0,308.0,409.0,82.0,0.0,357.0,7271.0,16.0,45.0,646.0,571.0,41.0,86.0,167.0,3171.0,0.0,44.0,287.0,17.0,41.0,534.0,73.0,2099.0,503.0,19.0,0.0,0.0,0.0,929.0,115.0,1282.0,2544.0,0.0,120.0,1.0,124.0,235.0,0.0,84.0,1041.0,1921.0,0.0,0.0,957.0,243.0,1320.0,0.0,301.0,0.0,224.0,260.0,18.0,0.0,0.0,0.0,2.0,13.0,2269.0,0.0,2684.0,256.0,0.0,16.0,44.0,2105.0,0.0,265.0,7149.0,210.0,0.0,77.0,0.0,4338.0,230.0,1.0,31.0,187.0,143.0,38.0,149.0,2.0,298.0,2127.0,321.0,41.0,1.0,0.0,15.0,3088.0,0.0,0.0,164.0,148.0,415.0,4769.0,144.0,3552.0,1921.0,42.0,1.0,30.0,1.0,2.0,8.0,1.0,73.0,2.0,0.0,3.0,0.0,0.0,0.0,1.0,864.0,2382.0,2415.0,0.0,23.0,1089.0,1584.0,0.0,3.0,75.0,102.0,0.0,0.0,565.0,1364.0,1598.0,0.0,155.0,252.0,51.0,111.0,225.0,1214.0,124.0,5488.0,179.0,2.0,2.0,2114.0,909.0,627.0,0.0,249.0,386.0,0.0,514.0,0.0,211.0,332.0,11.0,132.0,0.0,53.0,21.0,384.0,2012.0,98.0,0.0,75.0,61.0,1.0,0.0,51.0,1.0,629.0,1152.0,537.0,97.0,10.0,0.0,0.0,857.0,0.0,75.0,1378.0,85.0,3.0,0.0,0.0,5.0,453.0,0.0,102.0,721.0,2.0,32.0,0.0,107.0,132.0,27.0,10.0,304.0,561.0,1026.0,614.0,50.0,0.0,0.0,0.0,0.0,0.0,53.0,3085.0,0.0,1172.0,2.0,4.0,55.0,0.0,0.0,570.0,774.0,984.0,171.0,0.0,23.0,1480.0,75.0,0.0,64.0,176.0,66.0,2.0,60.0,370.0,13.0,208.0,73.0,0.0,0.0,10.0,0.0,0.0,22.0,1.0,0.0,7.0,2620.0,569.0,68.0,0.0,1.0,739.0,0.0,91.0,325.0,32.0,0.0,140.0,0.0,26.0,0.0,4479.0,0.0,72.0,748.0,0.0,2.0,153.0,252.0,535.0,483.0,0.0,1.0,0.0,527.0,20.0,21.0,0.0,81.0,0.0,644.0,1.0,92.0,0.0,111.0,426.0,774.0,17.0,2284.0,17.0,230.0,543.0,8.0,33.0,870.0,1.0,0.0,214.0,354.0,2309.0,1137.3513583489,17.0,1.0,2014-03-23,,2014-12,1137.1115799797462,1087.2894661872401, +48,48,99.0,5.0,106.0,0.0,72.0,292.0,455.0,88.0,0.0,378.0,6624.0,1.0,37.0,658.0,599.0,42.0,78.0,179.0,3528.0,0.0,33.0,280.0,12.0,48.0,529.0,56.0,2059.0,562.0,14.0,0.0,0.0,0.0,1360.0,185.0,1022.0,2514.0,0.0,120.0,1.0,98.0,225.0,0.0,78.0,1157.0,1686.0,0.0,0.0,1016.0,239.0,1299.0,0.0,111.0,0.0,453.0,122.0,32.0,0.0,0.0,0.0,2.0,11.0,2467.0,0.0,2872.0,245.0,0.0,6.0,23.0,2074.0,0.0,136.0,6997.0,241.0,0.0,84.0,0.0,3680.0,251.0,2.0,28.0,133.0,149.0,41.0,153.0,5.0,360.0,2041.0,293.0,45.0,1.0,0.0,12.0,3189.0,0.0,0.0,146.0,141.0,454.0,4874.0,152.0,3691.0,2029.0,75.0,1.0,43.0,2.0,1.0,11.0,0.0,72.0,5.0,4.0,3.0,1.0,2.0,2.0,1.0,827.0,2225.0,2225.0,1.0,23.0,1194.0,1600.0,0.0,3.0,106.0,101.0,0.0,0.0,612.0,1335.0,1622.0,0.0,146.0,241.0,58.0,121.0,225.0,1263.0,151.0,5420.0,183.0,20.0,4.0,2041.0,1170.0,630.0,0.0,271.0,362.0,2.0,427.0,0.0,223.0,281.0,18.0,115.0,0.0,53.0,17.0,400.0,2074.0,103.0,0.0,77.0,42.0,0.0,0.0,72.0,0.0,648.0,1079.0,528.0,167.0,23.0,0.0,0.0,943.0,0.0,76.0,1377.0,81.0,1.0,0.0,0.0,6.0,562.0,1.0,108.0,826.0,1.0,34.0,0.0,131.0,147.0,25.0,18.0,245.0,560.0,1036.0,600.0,67.0,0.0,0.0,1.0,0.0,0.0,34.0,3016.0,0.0,1131.0,3.0,0.0,42.0,0.0,0.0,573.0,716.0,949.0,168.0,0.0,13.0,1404.0,67.0,0.0,66.0,164.0,48.0,2.0,54.0,364.0,8.0,195.0,69.0,0.0,0.0,8.0,0.0,1.0,24.0,2.0,0.0,4.0,2531.0,598.0,75.0,0.0,4.0,716.0,2.0,91.0,191.0,26.0,0.0,135.0,1.0,35.0,0.0,4871.0,0.0,79.0,767.0,1.0,0.0,112.0,242.0,476.0,469.0,0.0,0.0,2.0,629.0,12.0,16.0,0.0,105.0,0.0,647.0,2.0,71.0,0.0,137.0,387.0,784.0,14.0,2416.0,19.0,259.0,563.0,15.0,28.0,894.0,5.0,0.0,239.0,420.0,2398.0,955.5488358028,9.0,3.0,2014-03-30,,2014-13,955.4688693769604,967.3922192772202, +49,49,93.0,11.0,109.0,0.0,93.0,310.0,401.0,79.0,0.0,337.0,6232.0,15.0,46.0,619.0,521.0,41.0,64.0,197.0,2639.0,0.0,40.0,295.0,15.0,39.0,512.0,88.0,1983.0,515.0,24.0,0.0,0.0,1.0,3338.0,249.0,818.0,2470.0,0.0,196.0,0.0,91.0,208.0,0.0,79.0,1060.0,1552.0,0.0,0.0,934.0,241.0,1263.0,0.0,133.0,0.0,232.0,95.0,23.0,0.0,0.0,0.0,1.0,25.0,2354.0,0.0,2719.0,221.0,0.0,14.0,37.0,1991.0,0.0,170.0,6425.0,233.0,2.0,85.0,0.0,4253.0,224.0,3.0,17.0,153.0,148.0,57.0,143.0,1.0,353.0,1902.0,379.0,43.0,0.0,0.0,16.0,3204.0,0.0,0.0,190.0,164.0,413.0,4729.0,196.0,4364.0,1938.0,53.0,0.0,40.0,1.0,0.0,7.0,0.0,109.0,3.0,2.0,3.0,0.0,3.0,0.0,4.0,838.0,2409.0,2530.0,1.0,22.0,1094.0,1711.0,33.0,2.0,107.0,127.0,0.0,0.0,637.0,1334.0,1636.0,0.0,138.0,250.0,76.0,123.0,283.0,1123.0,158.0,5275.0,189.0,12.0,1.0,2177.0,953.0,603.0,0.0,257.0,352.0,1.0,530.0,0.0,242.0,270.0,14.0,153.0,0.0,67.0,24.0,373.0,2095.0,130.0,0.0,63.0,26.0,0.0,0.0,67.0,1.0,544.0,1145.0,568.0,231.0,15.0,0.0,0.0,862.0,0.0,81.0,1313.0,77.0,0.0,0.0,0.0,3.0,573.0,0.0,89.0,741.0,3.0,41.0,0.0,173.0,141.0,27.0,15.0,257.0,535.0,966.0,601.0,59.0,0.0,2.0,1.0,0.0,0.0,47.0,2945.0,0.0,1131.0,1.0,0.0,42.0,0.0,0.0,611.0,765.0,959.0,157.0,0.0,22.0,1371.0,130.0,0.0,62.0,177.0,55.0,4.0,72.0,324.0,10.0,216.0,83.0,0.0,0.0,8.0,0.0,2.0,28.0,3.0,0.0,4.0,2405.0,577.0,92.0,0.0,4.0,663.0,1.0,107.0,152.0,31.0,0.0,122.0,0.0,24.0,0.0,4448.0,0.0,57.0,740.0,0.0,1.0,145.0,247.0,482.0,629.0,0.0,1.0,0.0,559.0,20.0,16.0,0.0,78.0,0.0,576.0,0.0,80.0,0.0,176.0,382.0,769.0,11.0,2137.0,18.0,239.0,532.0,10.0,53.0,743.0,2.0,0.0,235.0,353.0,2457.0,873.7747067331,8.0,2.0,2014-04-06,,2014-14,873.8614216978549,1107.20814374964, +50,50,92.0,6.0,105.0,0.0,93.0,311.0,404.0,90.0,0.0,365.0,6415.0,6.0,46.0,577.0,503.0,53.0,73.0,231.0,3168.0,0.0,59.0,235.0,30.0,37.0,561.0,75.0,1817.0,517.0,21.0,0.0,0.0,0.0,1812.0,111.0,1295.0,2398.0,1.0,115.0,1.0,67.0,176.0,0.0,82.0,1071.0,1643.0,0.0,0.0,940.0,274.0,1325.0,0.0,98.0,0.0,197.0,108.0,26.0,0.0,0.0,0.0,3.0,25.0,2678.0,0.0,2823.0,221.0,0.0,7.0,28.0,2001.0,0.0,153.0,6169.0,235.0,1.0,83.0,0.0,3572.0,205.0,4.0,35.0,142.0,101.0,47.0,140.0,6.0,329.0,2022.0,283.0,70.0,1.0,0.0,13.0,3080.0,0.0,0.0,167.0,145.0,412.0,4622.0,233.0,3551.0,1976.0,49.0,0.0,42.0,3.0,0.0,14.0,0.0,121.0,3.0,6.0,5.0,1.0,4.0,0.0,4.0,825.0,2207.0,2323.0,2.0,13.0,1101.0,1656.0,25.0,6.0,80.0,136.0,0.0,0.0,581.0,1310.0,1524.0,0.0,140.0,202.0,58.0,119.0,260.0,1077.0,146.0,6091.0,181.0,4.0,5.0,2003.0,879.0,615.0,0.0,261.0,331.0,1.0,479.0,0.0,237.0,272.0,17.0,142.0,0.0,50.0,19.0,420.0,2151.0,93.0,0.0,90.0,26.0,0.0,0.0,75.0,0.0,536.0,1029.0,479.0,141.0,10.0,0.0,0.0,873.0,0.0,60.0,1253.0,127.0,5.0,2.0,0.0,3.0,587.0,0.0,105.0,764.0,1.0,42.0,0.0,105.0,100.0,19.0,12.0,283.0,573.0,1033.0,597.0,65.0,0.0,0.0,3.0,0.0,0.0,64.0,2873.0,0.0,1083.0,5.0,3.0,44.0,0.0,0.0,1133.0,657.0,888.0,154.0,0.0,29.0,1324.0,74.0,0.0,56.0,162.0,49.0,0.0,57.0,371.0,8.0,430.0,80.0,0.0,0.0,8.0,0.0,0.0,48.0,2.0,0.0,10.0,2388.0,551.0,84.0,0.0,5.0,722.0,1.0,104.0,135.0,28.0,0.0,93.0,0.0,20.0,0.0,4308.0,0.0,77.0,735.0,0.0,0.0,143.0,213.0,513.0,528.0,0.0,1.0,0.0,491.0,8.0,23.0,0.0,99.0,0.0,583.0,1.0,94.0,0.0,134.0,332.0,702.0,22.0,2100.0,21.0,244.0,476.0,6.0,137.0,742.0,0.0,0.0,215.0,359.0,2340.0,434.39628788629994,13.0,2.0,2014-04-13,,2014-15,434.1753696842966,735.9445390024999, +51,51,88.0,10.0,116.0,0.0,65.0,271.0,373.0,96.0,0.0,296.0,5838.0,1.0,37.0,575.0,573.0,36.0,67.0,165.0,2725.0,0.0,32.0,214.0,10.0,45.0,519.0,60.0,1716.0,521.0,13.0,0.0,2.0,0.0,1344.0,122.0,1218.0,2262.0,0.0,118.0,0.0,53.0,234.0,0.0,105.0,1092.0,1352.0,0.0,0.0,895.0,211.0,1316.0,0.0,83.0,0.0,204.0,104.0,30.0,0.0,0.0,0.0,2.0,20.0,2098.0,2.0,2601.0,192.0,0.0,6.0,61.0,1994.0,0.0,118.0,5381.0,199.0,0.0,64.0,0.0,3487.0,228.0,0.0,19.0,116.0,136.0,36.0,112.0,5.0,332.0,2132.0,225.0,41.0,1.0,0.0,9.0,2920.0,0.0,0.0,170.0,122.0,448.0,4628.0,92.0,3623.0,1955.0,43.0,2.0,53.0,2.0,1.0,12.0,1.0,62.0,6.0,3.0,4.0,1.0,2.0,1.0,1.0,675.0,2087.0,1957.0,1.0,17.0,1158.0,1665.0,8.0,7.0,69.0,85.0,0.0,0.0,549.0,1189.0,1504.0,0.0,125.0,270.0,31.0,113.0,230.0,1109.0,113.0,5849.0,158.0,4.0,3.0,2106.0,1010.0,585.0,0.0,270.0,286.0,0.0,410.0,0.0,203.0,250.0,12.0,124.0,0.0,58.0,22.0,410.0,2176.0,88.0,0.0,59.0,27.0,1.0,0.0,57.0,0.0,551.0,1037.0,488.0,128.0,10.0,0.0,0.0,867.0,0.0,55.0,1257.0,72.0,4.0,1.0,0.0,5.0,522.0,1.0,124.0,777.0,1.0,44.0,1.0,114.0,104.0,22.0,6.0,261.0,533.0,881.0,565.0,46.0,0.0,1.0,1.0,1.0,1.0,41.0,2819.0,0.0,1143.0,1.0,2.0,26.0,0.0,0.0,670.0,623.0,911.0,155.0,0.0,38.0,1239.0,101.0,1.0,51.0,162.0,38.0,2.0,46.0,350.0,13.0,206.0,62.0,0.0,0.0,7.0,1.0,0.0,22.0,0.0,0.0,2.0,2268.0,504.0,104.0,0.0,2.0,704.0,1.0,100.0,172.0,18.0,1.0,113.0,1.0,31.0,1.0,4204.0,0.0,101.0,676.0,0.0,0.0,99.0,160.0,413.0,475.0,0.0,1.0,2.0,518.0,10.0,15.0,0.0,68.0,0.0,606.0,1.0,89.0,0.0,106.0,297.0,674.0,20.0,1882.0,10.0,237.0,433.0,11.0,37.0,661.0,4.0,0.0,231.0,351.0,2185.0,0.0,4.0,2.0,2014-04-20,,2014-16,0.7522871006517562,152.54976027894, +52,52,105.0,2.0,100.0,0.0,48.0,228.0,386.0,92.0,0.0,194.0,4993.0,8.0,33.0,551.0,546.0,35.0,57.0,151.0,2485.0,0.0,23.0,371.0,9.0,62.0,394.0,586.0,1561.0,480.0,12.0,0.0,17.0,0.0,5130.0,509.0,863.0,1843.0,0.0,65.0,2.0,82.0,317.0,1.0,56.0,862.0,736.0,108.0,0.0,655.0,200.0,748.0,0.0,142.0,0.0,149.0,87.0,30.0,0.0,93292.0,0.0,0.0,21.0,1667.0,1.0,3379.0,276.0,0.0,5.0,21.0,1665.0,0.0,119.0,4796.0,205.0,0.0,81.0,0.0,3060.0,215.0,0.0,24.0,74.0,116.0,21.0,118.0,0.0,351.0,1480.0,537.0,25.0,0.0,0.0,13.0,2383.0,0.0,0.0,128.0,123.0,327.0,2832.0,69.0,2432.0,1478.0,46.0,0.0,51.0,1.0,2.0,3.0,0.0,50.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,914.0,2319.0,2298.0,2.0,11.0,867.0,1291.0,3.0,0.0,67.0,80.0,93.0,0.0,546.0,953.0,1263.0,31.0,133.0,229.0,29.0,109.0,189.0,879.0,122.0,2975.0,94.0,7.0,2.0,1482.0,778.0,461.0,0.0,246.0,269.0,3.0,405.0,0.0,308.0,189.0,4.0,90.0,8360.0,53.0,3.0,371.0,1516.0,83.0,0.0,56.0,10.0,0.0,0.0,42.0,0.0,462.0,852.0,384.0,234.0,7.0,0.0,0.0,692.0,0.0,55.0,1169.0,53.0,1.0,3.0,0.0,1.0,452.0,0.0,68.0,750.0,0.0,24.0,0.0,84.0,96.0,51.0,42.0,203.0,518.0,715.0,551.0,34.0,0.0,0.0,1.0,0.0,0.0,21.0,2279.0,0.0,859.0,0.0,1.0,39.0,0.0,0.0,584.0,486.0,793.0,130.0,0.0,22.0,945.0,107.0,0.0,48.0,133.0,46.0,0.0,51.0,269.0,6.0,174.0,74.0,0.0,0.0,1.0,0.0,343.0,28.0,1.0,0.0,3.0,2025.0,239.0,66.0,0.0,0.0,539.0,1.0,70.0,134.0,21.0,0.0,118.0,0.0,29.0,0.0,4038.0,0.0,331.0,604.0,0.0,0.0,206.0,186.0,510.0,601.0,0.0,0.0,0.0,387.0,120.0,162.0,0.0,74.0,0.0,395.0,3.0,60.0,0.0,94.0,276.0,589.0,19.0,2172.0,9.0,261.0,377.0,4.0,19.0,476.0,3.0,0.0,153.0,277.0,1756.0,768.8097133758,3.0,4.0,2014-10-26,,2014-43,768.824384740712,748.2828015079401, +53,53,102.0,3.0,133.0,0.0,57.0,206.0,395.0,86.0,0.0,225.0,4698.0,4.0,33.0,598.0,461.0,44.0,67.0,153.0,2163.0,0.0,33.0,312.0,8.0,69.0,410.0,358.0,1542.0,421.0,14.0,0.0,13.0,0.0,2657.0,340.0,731.0,1966.0,0.0,63.0,0.0,62.0,300.0,0.0,60.0,827.0,681.0,67.0,0.0,607.0,183.0,666.0,0.0,135.0,0.0,191.0,102.0,41.0,0.0,63596.0,0.0,2.0,12.0,1686.0,1.0,2180.0,202.0,0.0,7.0,21.0,1643.0,0.0,117.0,4011.0,174.0,0.0,40.0,0.0,2672.0,236.0,3.0,15.0,76.0,127.0,29.0,126.0,2.0,365.0,1543.0,390.0,25.0,1.0,0.0,9.0,2297.0,0.0,0.0,133.0,99.0,333.0,2703.0,77.0,2344.0,1574.0,52.0,2.0,40.0,3.0,1.0,2.0,1.0,100.0,0.0,2.0,0.0,0.0,2.0,0.0,1.0,959.0,2006.0,2124.0,2.0,16.0,910.0,1173.0,3.0,0.0,75.0,69.0,88.0,0.0,516.0,944.0,1243.0,23.0,119.0,191.0,32.0,92.0,159.0,838.0,155.0,2824.0,65.0,1.0,1.0,1567.0,838.0,419.0,0.0,232.0,272.0,1.0,425.0,0.0,259.0,234.0,15.0,77.0,4063.0,70.0,3.0,401.0,1511.0,72.0,0.0,47.0,18.0,0.0,0.0,34.0,0.0,433.0,747.0,383.0,215.0,4.0,0.0,0.0,666.0,0.0,55.0,1133.0,89.0,5.0,0.0,0.0,2.0,438.0,0.0,89.0,749.0,0.0,23.0,0.0,83.0,149.0,38.0,26.0,197.0,569.0,654.0,578.0,47.0,0.0,0.0,0.0,0.0,0.0,23.0,2096.0,0.0,866.0,0.0,1.0,44.0,0.0,0.0,513.0,496.0,860.0,123.0,0.0,19.0,1028.0,105.0,0.0,35.0,156.0,46.0,0.0,51.0,277.0,9.0,179.0,89.0,0.0,0.0,3.0,1.0,207.0,43.0,0.0,0.0,6.0,1968.0,222.0,54.0,0.0,2.0,405.0,1.0,68.0,127.0,12.0,0.0,102.0,0.0,24.0,0.0,3773.0,0.0,92.0,592.0,0.0,0.0,110.0,209.0,402.0,516.0,0.0,0.0,0.0,422.0,86.0,56.0,0.0,63.0,0.0,473.0,3.0,67.0,0.0,95.0,318.0,485.0,15.0,1673.0,8.0,185.0,297.0,6.0,24.0,467.0,0.0,0.0,181.0,190.0,1638.0,696.0794349473,4.0,1.0,2014-11-02,,2014-44,696.1249561241052,716.7733801322601, +54,54,101.0,2.0,108.0,0.0,72.0,201.0,332.0,93.0,0.0,223.0,4686.0,13.0,32.0,513.0,458.0,33.0,57.0,174.0,1911.0,0.0,44.0,328.0,3.0,48.0,395.0,195.0,1471.0,394.0,9.0,0.0,24.0,0.0,1737.0,276.0,643.0,1916.0,0.0,46.0,0.0,73.0,273.0,0.0,69.0,839.0,732.0,45.0,0.0,550.0,182.0,675.0,0.0,108.0,0.0,149.0,106.0,32.0,0.0,30090.0,0.0,3.0,16.0,1626.0,2.0,2103.0,272.0,0.0,4.0,15.0,1624.0,0.0,104.0,3878.0,172.0,0.0,58.0,0.0,2707.0,236.0,3.0,17.0,74.0,120.0,22.0,127.0,3.0,261.0,1948.0,300.0,37.0,0.0,0.0,8.0,2181.0,0.0,0.0,148.0,106.0,330.0,2805.0,54.0,2326.0,1422.0,60.0,0.0,43.0,0.0,2.0,3.0,0.0,87.0,1.0,0.0,0.0,0.0,1.0,1.0,2.0,907.0,1851.0,1908.0,1.0,10.0,918.0,1159.0,4.0,3.0,68.0,52.0,35.0,0.0,506.0,891.0,1300.0,26.0,85.0,276.0,36.0,95.0,161.0,804.0,156.0,2667.0,113.0,1.0,1.0,1398.0,814.0,436.0,0.0,168.0,255.0,0.0,432.0,0.0,189.0,195.0,11.0,86.0,1840.0,48.0,6.0,407.0,1302.0,90.0,0.0,50.0,27.0,1.0,0.0,41.0,0.0,453.0,801.0,354.0,104.0,4.0,0.0,0.0,641.0,0.0,29.0,977.0,60.0,1.0,1.0,0.0,2.0,397.0,1.0,74.0,688.0,1.0,25.0,0.0,71.0,187.0,34.0,26.0,181.0,520.0,686.0,549.0,32.0,0.0,0.0,2.0,0.0,1.0,21.0,1986.0,0.0,754.0,0.0,0.0,43.0,0.0,2.0,1767.0,456.0,821.0,166.0,0.0,11.0,1000.0,85.0,0.0,28.0,172.0,48.0,0.0,46.0,290.0,9.0,200.0,81.0,0.0,0.0,2.0,0.0,115.0,33.0,2.0,0.0,2.0,2559.0,231.0,64.0,0.0,1.0,373.0,0.0,73.0,118.0,19.0,0.0,87.0,0.0,21.0,0.0,3929.0,0.0,82.0,582.0,0.0,0.0,139.0,183.0,899.0,345.0,0.0,0.0,0.0,385.0,39.0,26.0,0.0,82.0,0.0,561.0,1.0,71.0,0.0,75.0,318.0,589.0,11.0,1612.0,13.0,173.0,255.0,7.0,17.0,409.0,1.0,0.0,187.0,202.0,1556.0,762.6243664351,2.0,0.0,2014-11-09,,2014-45,762.451740627266,775.16608296712, +55,55,88.0,1.0,90.0,0.0,49.0,221.0,411.0,87.0,0.0,267.0,4824.0,4.0,34.0,559.0,498.0,41.0,66.0,139.0,2127.0,0.0,30.0,324.0,9.0,47.0,383.0,241.0,1602.0,409.0,13.0,0.0,10.0,0.0,1401.0,361.0,671.0,1919.0,1.0,35.0,0.0,60.0,300.0,0.0,69.0,842.0,733.0,31.0,0.0,618.0,214.0,653.0,0.0,115.0,0.0,173.0,96.0,35.0,0.0,23797.0,0.0,3.0,12.0,1684.0,0.0,3045.0,197.0,0.0,11.0,16.0,1586.0,0.0,92.0,3781.0,157.0,1.0,69.0,0.0,2768.0,260.0,1.0,7.0,89.0,103.0,27.0,151.0,1.0,295.0,1425.0,339.0,42.0,0.0,0.0,13.0,2279.0,0.0,0.0,152.0,115.0,362.0,2812.0,72.0,2333.0,1600.0,28.0,0.0,39.0,0.0,1.0,5.0,0.0,115.0,0.0,1.0,3.0,0.0,3.0,1.0,1.0,1122.0,1929.0,2002.0,2.0,11.0,1040.0,1206.0,6.0,2.0,69.0,54.0,34.0,0.0,541.0,942.0,1186.0,36.0,138.0,261.0,38.0,97.0,179.0,787.0,120.0,2741.0,135.0,4.0,3.0,1421.0,787.0,419.0,0.0,214.0,264.0,0.0,467.0,2.0,184.0,258.0,14.0,100.0,1126.0,42.0,20.0,340.0,1923.0,71.0,0.0,47.0,27.0,0.0,0.0,48.0,0.0,485.0,796.0,346.0,74.0,12.0,0.0,0.0,689.0,0.0,61.0,1022.0,81.0,1.0,0.0,0.0,2.0,453.0,0.0,68.0,759.0,1.0,34.0,0.0,77.0,224.0,20.0,12.0,180.0,519.0,713.0,614.0,37.0,0.0,0.0,2.0,0.0,0.0,23.0,2159.0,0.0,862.0,0.0,0.0,34.0,0.0,0.0,2157.0,554.0,870.0,148.0,0.0,10.0,958.0,86.0,1.0,39.0,149.0,56.0,2.0,41.0,275.0,6.0,181.0,64.0,0.0,0.0,1.0,0.0,70.0,36.0,1.0,0.0,4.0,2024.0,239.0,50.0,0.0,3.0,410.0,0.0,74.0,131.0,13.0,0.0,97.0,0.0,31.0,0.0,4182.0,0.0,75.0,514.0,1.0,0.0,109.0,209.0,542.0,447.0,0.0,0.0,0.0,442.0,32.0,38.0,0.0,67.0,0.0,456.0,2.0,78.0,0.0,210.0,320.0,562.0,13.0,1661.0,10.0,180.0,272.0,8.0,24.0,453.0,0.0,0.0,171.0,184.0,1784.0,883.4044516202997,2.0,2.0,2014-11-16,,2014-46,883.4639299620999,847.3724087709998, +56,56,96.0,2.0,110.0,0.0,53.0,217.0,423.0,74.0,0.0,242.0,4660.0,3.0,21.0,546.0,426.0,52.0,59.0,188.0,2131.0,0.0,40.0,344.0,5.0,56.0,437.0,133.0,1616.0,462.0,11.0,0.0,12.0,0.0,1375.0,290.0,661.0,1915.0,0.0,28.0,0.0,67.0,284.0,0.0,71.0,954.0,709.0,27.0,0.0,609.0,179.0,628.0,0.0,109.0,0.0,187.0,100.0,32.0,0.0,20248.0,0.0,1.0,11.0,1811.0,2.0,2409.0,166.0,0.0,5.0,15.0,1611.0,0.0,103.0,8596.0,176.0,0.0,69.0,0.0,2517.0,294.0,3.0,12.0,86.0,123.0,31.0,138.0,0.0,322.0,1361.0,315.0,36.0,1.0,0.0,13.0,2123.0,0.0,0.0,139.0,117.0,330.0,2692.0,89.0,2270.0,1505.0,43.0,0.0,35.0,2.0,1.0,4.0,0.0,113.0,2.0,2.0,2.0,0.0,3.0,0.0,1.0,833.0,1816.0,1868.0,1.0,10.0,992.0,1286.0,8.0,2.0,76.0,54.0,29.0,0.0,546.0,986.0,1267.0,29.0,116.0,211.0,40.0,105.0,226.0,772.0,144.0,2674.0,82.0,6.0,2.0,1322.0,801.0,450.0,0.0,195.0,251.0,0.0,406.0,0.0,246.0,225.0,8.0,81.0,864.0,36.0,10.0,470.0,1668.0,83.0,0.0,54.0,25.0,0.0,0.0,39.0,0.0,442.0,851.0,393.0,89.0,8.0,0.0,0.0,680.0,0.0,55.0,1051.0,54.0,3.0,1.0,0.0,3.0,361.0,0.0,77.0,740.0,0.0,30.0,0.0,72.0,210.0,23.0,11.0,197.0,558.0,820.0,564.0,43.0,0.0,0.0,1.0,0.0,0.0,22.0,2075.0,0.0,868.0,4.0,2.0,36.0,0.0,0.0,472.0,519.0,834.0,164.0,0.0,12.0,931.0,90.0,0.0,38.0,138.0,34.0,0.0,41.0,270.0,3.0,163.0,67.0,0.0,0.0,2.0,0.0,64.0,31.0,0.0,0.0,5.0,1915.0,218.0,59.0,0.0,1.0,377.0,0.0,72.0,167.0,19.0,0.0,84.0,0.0,23.0,0.0,4160.0,0.0,80.0,610.0,0.0,1.0,109.0,189.0,488.0,323.0,0.0,0.0,1.0,450.0,39.0,20.0,0.0,56.0,0.0,425.0,3.0,65.0,0.0,86.0,364.0,590.0,9.0,1614.0,10.0,206.0,294.0,6.0,17.0,443.0,0.0,0.0,183.0,220.0,1638.0,744.3052775966,10.0,2.0,2014-11-23,,2014-47,744.2982537781459,802.8452038804, +57,57,81.0,3.0,136.0,0.0,55.0,227.0,377.0,84.0,0.0,256.0,4572.0,4.0,23.0,560.0,438.0,38.0,59.0,188.0,2093.0,0.0,36.0,269.0,4.0,56.0,371.0,98.0,1608.0,454.0,16.0,0.0,12.0,0.0,1247.0,310.0,542.0,1865.0,0.0,34.0,0.0,69.0,297.0,0.0,54.0,948.0,692.0,23.0,0.0,612.0,222.0,742.0,0.0,100.0,0.0,208.0,104.0,35.0,0.0,24910.0,0.0,0.0,7.0,1732.0,1.0,1986.0,433.0,0.0,6.0,21.0,1620.0,0.0,85.0,3585.0,147.0,0.0,65.0,0.0,2559.0,214.0,0.0,12.0,94.0,146.0,34.0,126.0,3.0,254.0,1207.0,315.0,25.0,0.0,0.0,11.0,2166.0,0.0,0.0,161.0,128.0,292.0,5695.0,64.0,2177.0,1494.0,49.0,0.0,38.0,3.0,2.0,5.0,0.0,108.0,1.0,1.0,0.0,0.0,3.0,1.0,5.0,757.0,1765.0,1997.0,0.0,9.0,1033.0,1234.0,2.0,0.0,53.0,50.0,23.0,0.0,539.0,906.0,1262.0,27.0,135.0,209.0,61.0,110.0,229.0,813.0,151.0,2658.0,81.0,5.0,0.0,1330.0,802.0,467.0,0.0,195.0,281.0,0.0,427.0,0.0,134.0,191.0,4.0,78.0,721.0,49.0,9.0,394.0,1377.0,65.0,0.0,33.0,20.0,0.0,0.0,40.0,0.0,443.0,841.0,406.0,73.0,4.0,0.0,0.0,679.0,0.0,50.0,1057.0,49.0,2.0,0.0,0.0,1.0,451.0,0.0,100.0,727.0,0.0,25.0,0.0,87.0,215.0,27.0,11.0,186.0,640.0,702.0,568.0,35.0,0.0,1.0,1.0,0.0,0.0,19.0,2129.0,0.0,856.0,0.0,1.0,34.0,0.0,0.0,431.0,543.0,855.0,117.0,0.0,13.0,1021.0,76.0,0.0,41.0,154.0,40.0,0.0,51.0,313.0,8.0,202.0,76.0,0.0,0.0,0.0,0.0,57.0,34.0,164.0,0.0,4.0,2154.0,221.0,52.0,0.0,0.0,390.0,0.0,84.0,135.0,11.0,0.0,92.0,0.0,21.0,0.0,4248.0,0.0,73.0,583.0,0.0,4.0,107.0,211.0,479.0,329.0,0.0,0.0,0.0,409.0,26.0,19.0,0.0,83.0,0.0,445.0,0.0,47.0,0.0,123.0,396.0,481.0,16.0,1554.0,12.0,168.0,288.0,3.0,19.0,407.0,0.0,0.0,185.0,227.0,1548.0,855.4695211564,6.0,3.0,2014-11-30,,2014-48,855.5927462004604,903.3191575224799, +58,58,82.0,5.0,92.0,0.0,42.0,231.0,382.0,81.0,0.0,250.0,5450.0,3.0,36.0,470.0,467.0,45.0,62.0,154.0,2107.0,0.0,36.0,249.0,5.0,65.0,350.0,126.0,1406.0,390.0,9.0,0.0,12.0,0.0,1294.0,319.0,610.0,1754.0,0.0,34.0,0.0,58.0,334.0,0.0,62.0,947.0,691.0,23.0,0.0,508.0,199.0,675.0,0.0,97.0,0.0,221.0,101.0,26.0,0.0,15505.0,0.0,2.0,15.0,1738.0,1.0,1944.0,283.0,0.0,4.0,23.0,1540.0,0.0,129.0,3688.0,122.0,1.0,62.0,0.0,2815.0,235.0,0.0,10.0,75.0,162.0,25.0,118.0,3.0,335.0,1135.0,341.0,24.0,0.0,0.0,9.0,2216.0,0.0,0.0,155.0,101.0,272.0,2423.0,82.0,2221.0,1365.0,34.0,1.0,40.0,1.0,5.0,4.0,0.0,70.0,2.0,3.0,0.0,0.0,3.0,2.0,4.0,795.0,1739.0,1896.0,1.0,12.0,1009.0,1117.0,3.0,4.0,61.0,68.0,21.0,0.0,519.0,773.0,1158.0,28.0,107.0,234.0,40.0,92.0,162.0,724.0,122.0,2565.0,93.0,1.0,0.0,1402.0,832.0,435.0,0.0,186.0,262.0,0.0,483.0,0.0,143.0,186.0,5.0,74.0,609.0,53.0,7.0,341.0,1137.0,76.0,0.0,37.0,36.0,0.0,0.0,50.0,0.0,467.0,1526.0,412.0,87.0,3.0,0.0,0.0,602.0,0.0,49.0,979.0,69.0,2.0,0.0,0.0,2.0,425.0,0.0,58.0,649.0,1.0,32.0,0.0,83.0,189.0,18.0,6.0,185.0,460.0,668.0,518.0,30.0,0.0,0.0,2.0,0.0,0.0,22.0,2031.0,0.0,776.0,1.0,5.0,16.0,0.0,1.0,427.0,464.0,800.0,137.0,0.0,16.0,1050.0,73.0,0.0,23.0,126.0,32.0,1.0,57.0,247.0,5.0,188.0,65.0,0.0,0.0,3.0,0.0,86.0,21.0,368.0,0.0,3.0,1796.0,244.0,52.0,0.0,0.0,366.0,0.0,60.0,124.0,21.0,1.0,92.0,0.0,24.0,0.0,4220.0,0.0,114.0,591.0,0.0,1.0,115.0,200.0,375.0,326.0,0.0,0.0,0.0,381.0,26.0,15.0,0.0,66.0,0.0,387.0,1.0,54.0,0.0,106.0,409.0,476.0,11.0,1494.0,8.0,186.0,226.0,1.0,20.0,436.0,2.0,0.0,166.0,176.0,1408.0,897.3517181002002,5.0,3.0,2014-12-07,,2014-49,897.2656618812875,903.08517972954, +59,59,84.0,3.0,141.0,0.0,55.0,222.0,332.0,104.0,0.0,319.0,4643.0,0.0,36.0,413.0,466.0,41.0,61.0,195.0,2057.0,0.0,25.0,252.0,7.0,55.0,362.0,149.0,1342.0,374.0,6.0,0.0,8.0,0.0,1117.0,339.0,586.0,1794.0,0.0,33.0,0.0,57.0,325.0,0.0,66.0,894.0,713.0,27.0,0.0,494.0,197.0,742.0,0.0,136.0,0.0,187.0,138.0,34.0,0.0,14935.0,0.0,1.0,20.0,1789.0,0.0,1797.0,207.0,0.0,5.0,18.0,1518.0,0.0,101.0,3717.0,147.0,1.0,79.0,0.0,2501.0,259.0,3.0,8.0,77.0,141.0,25.0,99.0,2.0,376.0,1068.0,243.0,24.0,0.0,0.0,12.0,2197.0,0.0,0.0,150.0,107.0,275.0,2380.0,97.0,2041.0,1373.0,49.0,2.0,51.0,3.0,0.0,4.0,0.0,83.0,1.0,0.0,2.0,0.0,1.0,0.0,4.0,640.0,1766.0,2167.0,0.0,16.0,896.0,1183.0,2.0,2.0,75.0,67.0,33.0,0.0,438.0,858.0,1143.0,28.0,129.0,222.0,42.0,88.0,171.0,845.0,113.0,2620.0,99.0,3.0,1.0,1382.0,748.0,474.0,0.0,207.0,237.0,0.0,394.0,0.0,119.0,202.0,6.0,91.0,735.0,46.0,5.0,424.0,1224.0,73.0,0.0,39.0,29.0,0.0,0.0,46.0,0.0,440.0,802.0,466.0,83.0,9.0,0.0,0.0,742.0,0.0,55.0,1068.0,67.0,0.0,0.0,0.0,0.0,452.0,1.0,73.0,593.0,0.0,39.0,0.0,65.0,179.0,33.0,15.0,183.0,508.0,674.0,540.0,51.0,0.0,0.0,2.0,0.0,0.0,31.0,2022.0,0.0,834.0,0.0,0.0,24.0,0.0,0.0,364.0,551.0,726.0,114.0,0.0,16.0,1075.0,72.0,0.0,46.0,86.0,44.0,0.0,65.0,293.0,4.0,160.0,66.0,0.0,0.0,4.0,0.0,86.0,20.0,382.0,0.0,2.0,1849.0,238.0,49.0,0.0,1.0,345.0,0.0,66.0,138.0,18.0,0.0,91.0,0.0,22.0,0.0,3898.0,0.0,114.0,602.0,1.0,0.0,101.0,155.0,347.0,303.0,0.0,0.0,0.0,388.0,44.0,26.0,0.0,59.0,0.0,445.0,0.0,67.0,0.0,97.0,513.0,458.0,14.0,1509.0,17.0,177.0,229.0,7.0,18.0,525.0,1.0,0.0,170.0,195.0,1420.0,982.7826433121,9.0,1.0,2014-12-14,,2014-50,982.6100718755006,962.9070049737401, +60,60,82.0,2.0,117.0,0.0,67.0,211.0,431.0,99.0,0.0,239.0,5235.0,5.0,30.0,453.0,476.0,48.0,62.0,215.0,1976.0,0.0,30.0,271.0,10.0,75.0,323.0,138.0,1321.0,379.0,14.0,0.0,17.0,0.0,1070.0,349.0,611.0,1680.0,0.0,40.0,0.0,72.0,304.0,0.0,65.0,778.0,687.0,20.0,0.0,494.0,199.0,660.0,0.0,100.0,0.0,210.0,114.0,22.0,0.0,19061.0,0.0,1.0,16.0,1879.0,3.0,1849.0,193.0,0.0,9.0,20.0,1573.0,0.0,123.0,3939.0,146.0,0.0,69.0,0.0,2642.0,261.0,2.0,6.0,70.0,131.0,20.0,100.0,0.0,279.0,1157.0,265.0,27.0,1.0,0.0,12.0,2060.0,0.0,0.0,145.0,101.0,300.0,2312.0,62.0,1894.0,1531.0,72.0,0.0,24.0,2.0,1.0,3.0,0.0,79.0,2.0,3.0,2.0,0.0,0.0,0.0,1.0,724.0,1690.0,2204.0,1.0,19.0,939.0,1182.0,3.0,6.0,101.0,83.0,20.0,0.0,427.0,894.0,1095.0,25.0,104.0,196.0,38.0,108.0,174.0,775.0,113.0,2791.0,80.0,7.0,2.0,1353.0,854.0,465.0,52.0,179.0,270.0,0.0,383.0,0.0,110.0,191.0,7.0,78.0,702.0,45.0,11.0,434.0,1247.0,89.0,0.0,50.0,17.0,0.0,0.0,44.0,0.0,356.0,787.0,406.0,76.0,13.0,0.0,0.0,740.0,0.0,47.0,1047.0,61.0,1.0,0.0,0.0,3.0,398.0,0.0,82.0,608.0,0.0,25.0,0.0,78.0,191.0,21.0,13.0,185.0,500.0,637.0,529.0,35.0,0.0,0.0,0.0,1.0,0.0,32.0,2115.0,0.0,767.0,0.0,0.0,31.0,0.0,0.0,395.0,482.0,668.0,130.0,0.0,18.0,1105.0,76.0,0.0,34.0,109.0,43.0,0.0,53.0,273.0,6.0,177.0,57.0,0.0,0.0,6.0,0.0,63.0,24.0,358.0,0.0,2.0,1834.0,205.0,46.0,0.0,2.0,345.0,1.0,51.0,129.0,18.0,0.0,95.0,0.0,16.0,0.0,3970.0,0.0,102.0,564.0,0.0,0.0,102.0,169.0,391.0,463.0,0.0,0.0,0.0,414.0,29.0,14.0,0.0,70.0,0.0,437.0,1.0,53.0,0.0,81.0,613.0,468.0,18.0,1605.0,23.0,174.0,261.0,7.0,25.0,514.0,2.0,0.0,167.0,197.0,1431.0,993.0166906047,11.0,5.0,2014-12-21,,2014-51,993.3465878842437,929.3855573333, +61,61,76.0,7.0,97.0,0.0,60.0,201.0,356.0,122.0,0.0,219.0,4207.0,1.0,23.0,377.0,534.0,32.0,56.0,202.0,1922.0,0.0,36.0,247.0,9.0,59.0,306.0,79.0,1186.0,377.0,9.0,0.0,7.0,0.0,988.0,241.0,615.0,1533.0,0.0,34.0,0.0,44.0,298.0,0.0,46.0,726.0,711.0,15.0,0.0,469.0,178.0,610.0,0.0,118.0,0.0,179.0,69.0,21.0,0.0,11437.0,0.0,2.0,17.0,1534.0,1.0,1749.0,145.0,0.0,5.0,15.0,1406.0,0.0,72.0,3702.0,127.0,0.0,43.0,0.0,2445.0,216.0,2.0,10.0,80.0,103.0,27.0,87.0,0.0,224.0,889.0,254.0,30.0,0.0,0.0,12.0,1849.0,0.0,0.0,141.0,93.0,233.0,2142.0,69.0,1738.0,1367.0,51.0,0.0,41.0,1.0,1.0,7.0,1.0,67.0,0.0,2.0,2.0,0.0,1.0,0.0,1.0,546.0,1333.0,1672.0,0.0,12.0,886.0,1185.0,5.0,0.0,64.0,59.0,17.0,0.0,456.0,715.0,976.0,24.0,91.0,182.0,26.0,75.0,155.0,690.0,94.0,2522.0,71.0,5.0,2.0,1255.0,704.0,447.0,44.0,169.0,200.0,0.0,323.0,0.0,85.0,142.0,11.0,76.0,486.0,25.0,6.0,357.0,1114.0,73.0,0.0,34.0,19.0,0.0,0.0,38.0,0.0,368.0,661.0,396.0,62.0,10.0,0.0,0.0,588.0,0.0,37.0,872.0,52.0,0.0,0.0,0.0,1.0,335.0,0.0,62.0,522.0,1.0,29.0,0.0,74.0,144.0,15.0,16.0,123.0,351.0,615.0,536.0,34.0,0.0,0.0,0.0,0.0,0.0,21.0,2040.0,0.0,734.0,0.0,0.0,44.0,0.0,0.0,292.0,414.0,618.0,142.0,0.0,10.0,856.0,52.0,0.0,39.0,100.0,42.0,0.0,37.0,298.0,6.0,99.0,68.0,0.0,0.0,4.0,0.0,47.0,27.0,325.0,0.0,3.0,1387.0,212.0,57.0,0.0,0.0,346.0,0.0,58.0,109.0,20.0,0.0,83.0,0.0,21.0,0.0,3737.0,0.0,90.0,470.0,0.0,0.0,66.0,143.0,375.0,321.0,0.0,1.0,0.0,383.0,24.0,22.0,0.0,54.0,0.0,399.0,0.0,59.0,0.0,94.0,311.0,416.0,11.0,1352.0,11.0,169.0,234.0,12.0,16.0,398.0,1.0,0.0,128.0,176.0,1294.0,1176.9948621160001,8.0,4.0,2014-12-28,,2014-52,1176.1323132344148,1060.0589416690002, +62,62,94.0,7.0,59.0,0.0,57.0,145.0,155.0,55.0,0.0,145.0,2806.0,5.0,34.0,256.0,431.0,24.0,50.0,102.0,1445.0,0.0,39.0,212.0,12.0,37.0,211.0,67.0,874.0,201.0,8.0,0.0,10.0,0.0,634.0,116.0,527.0,1070.0,0.0,23.0,0.0,37.0,187.0,0.0,35.0,363.0,490.0,12.0,0.0,208.0,124.0,521.0,0.0,115.0,0.0,97.0,62.0,21.0,0.0,4203.0,0.0,0.0,12.0,887.0,3.0,1180.0,117.0,0.0,5.0,24.0,941.0,0.0,153.0,2639.0,120.0,1.0,41.0,0.0,1819.0,124.0,2.0,13.0,61.0,55.0,22.0,76.0,0.0,147.0,635.0,190.0,21.0,0.0,0.0,16.0,1311.0,0.0,0.0,96.0,54.0,100.0,1599.0,38.0,1324.0,908.0,36.0,0.0,19.0,0.0,0.0,4.0,0.0,48.0,1.0,1.0,3.0,0.0,0.0,0.0,1.0,336.0,810.0,890.0,0.0,10.0,454.0,801.0,6.0,2.0,36.0,44.0,20.0,0.0,315.0,630.0,618.0,16.0,64.0,133.0,26.0,58.0,124.0,445.0,70.0,1758.0,64.0,7.0,1.0,819.0,602.0,286.0,28.0,121.0,165.0,0.0,143.0,1.0,63.0,113.0,5.0,65.0,383.0,31.0,4.0,174.0,580.0,48.0,0.0,27.0,13.0,0.0,0.0,33.0,0.0,270.0,415.0,168.0,71.0,4.0,0.0,0.0,302.0,0.0,33.0,535.0,30.0,0.0,0.0,0.0,1.0,233.0,1.0,63.0,368.0,0.0,19.0,0.0,59.0,77.0,18.0,11.0,108.0,222.0,401.0,379.0,26.0,0.0,0.0,0.0,0.0,0.0,23.0,1283.0,0.0,477.0,0.0,0.0,34.0,0.0,0.0,181.0,244.0,423.0,82.0,2.0,11.0,410.0,55.0,0.0,31.0,74.0,29.0,1.0,42.0,204.0,8.0,100.0,29.0,0.0,0.0,6.0,0.0,39.0,20.0,269.0,0.0,3.0,990.0,124.0,33.0,0.0,2.0,261.0,0.0,49.0,76.0,19.0,1.0,80.0,0.0,13.0,0.0,2552.0,0.0,47.0,377.0,0.0,2.0,31.0,89.0,250.0,178.0,0.0,0.0,0.0,265.0,21.0,12.0,0.0,36.0,0.0,274.0,0.0,40.0,0.0,67.0,218.0,299.0,16.0,751.0,12.0,116.0,181.0,7.0,20.0,370.0,1.0,0.0,76.0,110.0,974.0,0.0,3.0,5.0,2015-01-04,,2015-1,0.578319247265199,0.0, +63,63,63.0,1.0,31.0,0.0,26.0,79.0,249.66666666666669,33.0,0.0,118.0,2078.0,2.0,13.0,209.0,297.0,23.0,34.0,78.0,943.0,0.0,15.0,222.0,6.0,22.0,154.0,47.0,681.0,136.0,4.0,0.0,7.0,0.0,302.0,76.0,332.0,768.0,0.0,31.0,0.0,32.0,135.0,0.0,34.0,277.0,366.0,26.0,0.0,156.0,92.0,346.0,0.0,75.0,0.0,74.0,58.0,6.0,0.0,3090.0,0.0,2.0,50.0,694.0,0.0,884.0,170.0,0.0,3.0,9.0,719.0,0.0,55.0,3611.5,81.0,0.0,23.0,0.0,1810.0,77.0,1.0,4.0,40.0,44.0,26.0,62.0,0.0,124.0,359.0,144.0,23.0,0.0,0.0,4.0,872.0,0.0,0.0,59.0,50.0,101.0,1144.0,31.0,903.0,692.0,26.0,0.0,20.0,1.0,0.0,3.0,1.0,32.0,3.0,0.0,4.0,0.0,0.0,0.0,0.0,293.0,678.0,808.0,1.0,5.0,392.0,480.0,2.0,0.0,40.0,37.0,9.0,0.0,225.0,421.0,399.0,12.0,43.0,60.0,13.0,41.0,74.0,282.0,54.0,1113.0,38.0,1.0,3.0,583.0,490.0,210.0,24.0,84.0,143.0,0.0,128.0,0.0,34.0,102.0,4.0,46.0,317.0,23.0,2.0,120.0,381.0,36.0,0.0,13.0,3.0,0.0,0.0,14.0,0.0,243.0,390.0,123.0,22.0,4.0,0.0,0.0,287.0,0.0,31.0,440.0,25.0,2.0,0.0,0.0,0.0,156.0,0.0,35.0,233.0,0.0,10.0,0.0,40.0,60.0,14.0,9.0,86.0,149.0,284.0,426.33333333333326,8.0,0.0,1.0,0.0,0.0,0.0,16.0,816.0,0.0,368.0,1.0,1.0,18.0,0.0,0.0,117.0,229.0,339.0,60.0,0.0,7.0,334.0,17.0,0.0,19.0,51.0,17.0,0.0,23.0,230.2,1.0,84.0,50.0,0.0,0.0,0.0,0.0,25.0,3.0,178.0,0.0,1.0,862.0,128.0,26.0,0.0,0.0,239.0,2.0,25.0,60.0,11.0,0.0,48.0,0.0,12.0,0.0,1876.0,0.0,31.0,329.0,0.0,0.0,40.0,74.0,195.0,112.0,0.0,0.0,0.0,160.0,21.0,10.0,0.0,32.0,0.0,234.0,0.0,38.0,0.0,30.0,193.0,189.0,18.0,520.0,5.0,78.0,121.0,3.0,7.0,218.0,2.0,0.0,45.0,95.0,691.0,0.0,4.0,0.0,2015-01-11,,2015-2,0.3418389444798322,0.0, +64,64,84.0,1.0,102.0,0.0,57.0,206.0,344.33333333333337,172.0,0.0,315.0,5082.0,2.0,40.0,587.0,502.0,48.0,59.0,184.0,2371.0,0.0,37.0,485.0,12.0,68.0,390.0,114.0,1667.0,396.0,16.0,0.0,7.0,0.0,1201.0,308.0,697.0,2003.0,0.0,33.0,2.0,63.0,342.0,0.0,75.0,816.0,859.0,35.0,0.0,569.0,202.0,781.0,0.0,143.0,0.0,157.0,158.0,33.0,115.0,5963.0,0.0,0.0,21.0,1767.0,2.0,2120.0,192.0,0.0,6.0,30.0,1770.0,0.0,121.0,4584.0,187.0,1.0,77.0,0.0,2889.0,264.0,1.0,10.0,84.0,120.0,17.0,126.0,1.0,313.0,1240.0,304.0,22.0,0.0,0.0,10.0,2109.0,0.0,0.0,143.0,111.0,307.0,2641.0,100.0,2043.0,1830.0,58.0,0.0,53.0,3.0,0.0,5.0,0.0,78.0,3.0,0.0,3.0,0.0,2.0,0.0,3.0,751.0,1776.0,2358.0,0.0,12.0,1185.0,1433.0,4.0,0.0,106.0,70.0,19.0,0.0,534.0,930.0,1213.0,28.0,103.0,190.0,25.0,129.0,196.0,770.0,148.0,2795.0,102.0,5.0,0.0,1270.0,871.0,464.0,31.0,208.0,310.0,1.0,406.0,1.0,154.0,214.0,6.0,81.0,635.0,62.0,5.0,342.0,1216.0,102.0,0.0,50.0,26.0,1.0,0.0,57.0,0.0,499.0,856.0,425.0,52.0,6.0,0.0,0.0,680.0,0.0,58.0,1048.0,82.0,4.0,2.0,0.0,2.0,397.0,0.0,104.0,800.0,0.0,29.0,0.0,78.0,208.0,24.0,9.0,209.0,546.0,732.0,473.66666666666674,34.0,0.0,0.0,0.0,1.0,0.0,29.0,2425.0,0.0,922.0,1.0,0.0,36.0,0.0,0.0,440.0,552.0,811.0,135.0,0.0,13.0,1052.0,51.0,0.0,71.0,132.0,45.0,0.0,70.0,256.4,7.0,159.0,76.0,0.0,0.0,2.0,0.0,57.0,18.0,407.0,0.0,3.0,2159.0,289.0,68.0,0.0,3.0,482.0,0.0,83.0,117.0,32.0,1.0,214.0,0.0,24.0,0.0,4524.0,0.0,98.0,616.0,0.0,0.0,97.0,186.0,449.0,349.0,0.0,0.0,0.0,405.0,45.0,28.0,0.0,74.0,0.0,490.0,0.0,56.0,0.0,97.0,347.0,518.0,16.0,1834.0,12.0,200.0,259.0,8.0,19.0,510.0,3.0,0.0,152.0,205.0,1661.0,830.3540537424001,8.0,1.0,2015-01-18,,2015-3,830.355540061551,766.6926061357001, +65,65,111.0,0.0,101.0,0.0,58.0,228.0,439.0,172.0,0.0,314.0,5951.0,3.0,34.0,605.0,502.0,59.0,75.0,220.0,2451.0,0.0,49.0,359.0,6.0,79.0,442.0,96.0,1859.0,471.0,6.0,0.0,17.0,0.0,1220.0,376.0,753.0,2104.0,0.0,29.0,3.0,174.0,360.0,0.0,74.0,936.0,901.0,22.0,0.0,615.0,217.0,718.0,0.0,154.0,0.0,251.0,111.0,26.0,83.0,5893.0,0.0,1.0,14.0,1934.0,0.0,2113.0,211.0,0.0,3.0,23.0,1931.0,0.0,127.0,4699.0,170.0,0.0,73.0,0.0,2749.0,295.0,1.0,12.0,102.0,130.0,32.0,138.0,0.0,306.0,1413.0,344.0,44.0,0.0,0.0,4.0,2777.0,0.0,0.0,169.0,119.0,364.0,2560.0,130.0,2604.0,1862.0,61.0,0.0,36.0,0.0,0.0,5.0,0.0,98.0,1.0,0.0,1.0,0.0,2.0,0.0,0.0,871.0,1903.0,2300.0,0.0,15.0,1198.0,1498.0,5.0,4.0,98.0,81.0,23.0,0.0,553.0,1013.0,1369.0,24.0,165.0,273.0,24.0,109.0,193.0,742.0,190.0,2841.0,96.0,2.0,0.0,1533.0,1059.0,547.0,50.0,259.0,258.0,0.0,496.0,0.0,157.0,230.0,5.0,93.0,463.0,45.0,5.0,422.0,1605.0,102.0,0.0,48.0,29.0,0.0,0.0,63.0,0.0,508.0,1029.0,536.0,60.0,18.0,0.0,0.0,824.0,0.0,46.0,1150.0,71.0,2.0,1.0,0.0,2.0,444.0,0.0,84.0,751.0,0.0,28.0,0.0,92.0,209.0,21.0,14.0,200.0,498.0,865.0,521.0,39.0,0.0,0.0,0.0,1.0,0.0,26.0,2614.0,0.0,967.0,0.0,0.0,41.0,0.0,0.0,476.0,624.0,908.0,165.0,0.0,8.0,1110.0,79.0,0.0,45.0,143.0,74.0,0.0,63.0,282.6,8.0,192.0,67.0,0.0,0.0,4.0,0.0,49.0,18.0,404.0,0.0,4.0,2043.0,271.0,85.0,0.0,1.0,518.0,0.0,93.0,128.0,22.0,0.0,122.0,0.0,30.0,0.0,4934.0,0.0,125.0,593.0,0.0,1.0,95.0,253.0,528.0,374.0,0.0,0.0,0.0,457.0,57.0,35.0,0.0,83.0,0.0,513.0,0.0,57.0,0.0,99.0,461.0,637.0,24.0,1865.0,14.0,181.0,305.0,13.0,23.0,477.0,1.0,0.0,180.0,268.0,1818.0,962.0512820513001,1.0,0.0,2015-01-25,,2015-4,962.3718666499108,1083.1280383219403, +66,66,92.0,2.0,87.0,0.0,77.0,243.0,420.0,155.0,1.0,351.0,5250.0,0.0,41.0,636.0,513.0,34.0,59.0,204.0,2719.0,0.0,52.0,467.0,1.0,51.0,401.0,80.0,1620.0,487.0,18.0,0.0,15.0,0.0,1302.0,415.0,790.0,2156.0,0.0,35.0,0.0,69.0,275.0,0.0,65.0,1574.0,863.0,18.0,0.0,664.0,226.0,777.0,0.0,139.0,0.0,218.0,175.0,31.0,38.0,5068.0,0.0,0.0,15.0,2078.0,1.0,2325.0,155.0,0.0,0.0,17.0,1915.0,0.0,242.0,4905.0,196.0,0.0,94.0,0.0,2877.0,343.0,0.0,5.0,115.0,131.0,33.0,136.0,0.0,279.0,1427.0,309.0,38.0,0.0,0.0,9.0,2313.0,0.0,0.0,193.0,117.0,357.0,2549.0,141.0,2133.0,1864.0,49.0,1.0,40.0,0.0,0.0,4.0,0.0,104.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,821.0,1841.0,2484.0,0.0,10.0,1190.0,1398.0,0.0,0.0,119.0,96.0,22.0,0.0,526.0,1006.0,1469.0,20.0,140.0,230.0,23.0,91.0,227.0,1200.0,251.0,2845.0,86.0,6.0,1.0,1493.0,929.0,501.0,47.0,258.0,339.0,0.0,445.0,0.0,134.0,237.0,4.0,85.0,482.0,44.0,1.0,378.0,2297.0,79.0,0.0,69.0,31.0,0.0,0.0,51.0,0.0,514.0,1045.0,498.0,63.0,68.0,0.0,0.0,774.0,0.0,51.0,1189.0,85.0,0.0,0.0,0.0,1.0,530.0,0.0,78.0,714.0,0.0,28.0,0.0,80.0,210.0,19.0,9.0,236.0,466.0,861.0,568.3333333333334,26.0,0.0,0.0,0.0,1.0,0.0,22.0,2454.0,0.0,889.0,2.0,0.0,61.0,0.0,0.0,477.0,561.0,914.0,130.0,0.0,14.0,1265.0,64.0,0.0,39.0,135.0,39.0,0.0,60.0,308.8,5.0,910.0,100.0,0.0,0.0,0.0,0.0,76.0,23.0,365.0,0.0,1.0,3430.0,267.0,70.0,0.0,0.0,504.0,0.0,77.0,114.0,22.0,0.0,86.0,0.0,29.0,0.0,4711.0,0.0,95.0,758.0,1.0,0.0,119.0,212.0,476.0,373.0,0.0,0.0,0.0,437.0,30.0,17.0,0.0,91.0,0.0,537.0,0.0,51.0,0.0,95.0,359.0,503.0,26.0,1899.0,11.0,206.0,280.0,8.0,32.0,482.0,1.0,0.0,177.0,270.0,1871.0,1178.0892596096,3.0,0.0,2015-02-01,,2015-5,1178.159390017163,1178.0892596096, +67,67,92.0,1.0,109.0,0.0,88.0,233.0,474.0,167.0,0.0,387.0,5256.0,0.0,25.0,570.0,465.0,45.0,53.0,178.0,2390.0,0.0,58.0,330.0,9.0,124.0,441.0,90.0,1644.0,470.0,8.0,0.0,12.0,0.0,1290.0,422.0,676.0,1961.0,0.0,25.0,0.0,48.0,222.0,0.0,57.0,884.0,858.0,24.0,0.0,667.0,222.0,819.0,0.0,128.0,0.0,248.0,122.0,28.0,43.0,3549.0,0.0,1.0,25.0,2040.0,1.0,2297.0,201.0,0.0,2.0,27.0,1807.0,0.0,169.0,6336.0,196.0,0.0,52.0,0.0,2869.0,336.0,2.0,12.0,126.0,134.0,25.0,137.0,0.0,283.0,1429.0,261.0,46.0,1.0,0.0,11.0,2246.0,0.0,0.0,166.0,113.0,388.0,2449.0,115.0,2109.0,1974.0,63.0,0.0,33.0,0.0,0.0,4.0,1.0,86.0,0.0,1.0,1.0,0.0,0.0,2.0,1.0,907.0,2002.0,2180.0,0.0,12.0,1509.0,1424.0,1.0,3.0,91.0,62.0,14.0,0.0,546.0,965.0,1329.0,32.0,134.0,266.0,29.0,94.0,185.0,856.0,226.0,2949.0,66.0,2.0,2.0,1520.0,955.0,520.0,51.0,237.0,296.0,0.0,530.0,0.0,120.0,229.0,8.0,92.0,462.0,57.0,8.0,400.0,1742.0,95.0,0.0,63.0,42.0,0.0,0.0,48.0,0.0,527.0,921.0,506.0,61.0,44.0,0.0,0.0,719.0,0.0,49.0,1177.0,74.0,1.0,0.0,0.0,3.0,534.0,1.0,95.0,699.0,0.0,24.0,0.0,106.0,199.0,35.0,15.0,218.0,595.0,855.0,615.6666666666667,38.0,0.0,0.0,0.0,0.0,0.0,22.0,2591.0,0.0,985.0,0.0,0.0,24.0,0.0,0.0,586.0,561.0,876.0,151.0,0.0,13.0,1365.0,90.0,0.0,46.0,122.0,59.0,0.0,54.0,335.0,7.0,331.0,77.0,0.0,0.0,0.0,0.0,63.0,17.0,355.0,0.0,4.0,2442.0,304.0,59.0,0.0,0.0,452.0,0.0,75.0,138.0,22.0,0.0,95.0,2.0,39.0,0.0,4651.0,0.0,856.0,680.0,0.0,0.0,108.0,244.0,503.0,423.0,0.0,0.0,0.0,485.0,33.0,20.0,0.0,64.0,0.0,522.0,0.0,60.0,0.0,180.0,394.0,515.0,13.0,1865.0,12.0,166.0,311.0,2.0,19.0,583.0,0.0,0.0,171.0,227.0,1718.0,1567.4350634045002,3.0,1.0,2015-02-08,,2015-6,1567.066335259074,1664.5119995184405, +68,68,87.0,3.0,100.0,0.0,60.0,208.0,449.0,189.0,0.0,342.0,5706.0,0.0,39.0,521.0,471.0,54.0,42.0,220.0,2163.0,0.0,46.0,307.0,10.0,89.0,396.0,74.0,1530.0,614.0,11.0,0.0,11.0,1.0,1850.0,519.0,723.0,2009.0,0.0,31.0,1.0,49.0,239.0,0.0,77.0,871.0,928.0,19.0,0.0,660.0,222.0,884.0,0.0,20320.0,0.0,232.0,144.0,37.0,53.0,3557.0,0.0,1.0,22.0,1780.0,0.0,2086.0,161.0,0.0,9.0,19.0,1707.0,0.0,104.0,6802.0,212.0,0.0,75.0,0.0,2596.0,381.0,4.0,15.0,155.0,150.0,38.0,145.0,7.0,226.0,1225.0,249.0,38.0,0.0,0.0,5.0,2052.0,0.0,0.0,181.0,111.0,324.0,2291.0,97.0,1909.0,1794.0,63.0,1.0,31.0,1.0,0.0,4.0,0.0,116.0,0.0,2.0,1.0,0.0,2.0,0.0,1.0,1128.0,1878.0,2170.0,1.0,14.0,1096.0,1301.0,4.0,0.0,121.0,67.0,26.0,0.0,529.0,888.0,1351.0,24.0,127.0,226.0,41.0,88.0,217.0,711.0,199.0,2747.0,82.0,2.0,2.0,1369.0,986.0,545.0,39.0,207.0,275.0,1.0,539.0,0.0,140.0,212.0,5.0,85.0,438.0,46.0,2.0,335.0,3120.0,58.0,0.0,66.0,42.0,0.0,0.0,52.0,0.0,464.0,892.0,461.0,58.0,24.0,0.0,0.0,682.0,0.0,51.0,1044.0,61.0,0.0,0.0,0.0,0.0,427.0,2.0,94.0,743.0,0.0,22.0,0.0,76.0,194.0,22.0,21.0,181.0,535.0,807.0,663.0,63.0,0.0,0.0,0.0,0.0,0.0,37.0,2330.0,0.0,934.0,0.0,0.0,26.0,0.0,0.0,544.0,545.0,863.0,139.0,0.0,7.0,1170.0,53.0,0.0,36.0,135.0,42.0,0.0,64.0,359.0,3.0,183.0,86.0,0.0,0.0,3.0,0.0,44.0,28.0,326.0,0.0,4.0,1941.0,281.0,80.0,0.0,0.0,432.0,1.0,77.0,138.0,27.0,0.0,93.0,0.0,42.0,0.0,4404.0,0.0,109.0,625.0,0.0,2.0,101.0,284.0,508.0,322.0,0.0,0.0,0.0,399.0,39.0,25.0,0.0,69.0,0.0,417.0,1.0,67.0,0.0,143.0,324.0,499.0,21.0,1908.0,8.0,194.0,314.0,5.0,19.0,427.0,0.0,0.0,236.0,243.0,1683.0,1951.3320262946,3.0,4.0,2015-02-15,,2015-7,1951.3668508345993,1487.5181854205603, +69,69,114.0,1.0,132.0,0.0,54.0,188.0,398.0,145.0,0.0,325.0,5768.0,0.0,23.0,479.0,489.0,34.0,59.0,227.0,2003.0,0.0,33.0,275.0,6.0,79.0,398.0,135.0,1436.0,407.0,9.0,0.0,14.0,0.0,1280.0,374.0,601.0,1847.0,0.0,32.0,0.0,46.0,208.0,0.0,87.0,826.0,869.0,19.0,0.0,577.0,191.0,679.0,0.0,848.0,0.0,201.0,70.0,33.0,35.0,2958.0,0.0,1.0,34.0,1688.0,0.0,2135.0,206.0,0.0,7.0,22.0,1719.0,0.0,123.0,7549.0,207.0,0.0,73.0,0.0,2555.0,273.0,0.0,19.0,167.0,131.0,37.0,126.0,0.0,231.0,1202.0,1038.0,30.0,0.0,0.0,11.0,1886.0,0.0,0.0,151.0,133.0,314.0,2156.0,109.0,2000.0,1776.0,40.0,0.0,47.0,0.0,0.0,4.0,0.0,102.0,3.0,2.0,1.0,0.0,1.0,2.0,1.0,920.0,1727.0,2140.0,0.0,17.0,1057.0,1305.0,5.0,1.0,97.0,68.0,23.0,0.0,413.0,960.0,1212.0,34.0,130.0,253.0,27.0,82.0,240.0,643.0,200.0,2680.0,96.0,7.0,2.0,1358.0,972.0,571.0,36.0,239.0,273.0,1.0,527.0,0.0,121.0,189.0,12.0,81.0,471.0,54.0,3.0,378.0,2543.0,95.0,0.0,46.0,24.0,0.0,0.0,49.0,18.0,448.0,812.0,442.0,71.0,17.0,0.0,0.0,632.0,0.0,49.0,998.0,61.0,1.0,2.0,0.0,1.0,455.0,2.0,101.0,694.0,1.0,28.0,2.0,66.0,178.0,18.0,5.0,179.0,400.0,655.0,636.0,37.0,0.0,0.0,1.0,1.0,0.0,27.0,2411.0,0.0,884.0,1.0,0.0,18.0,0.0,0.0,530.0,482.0,756.0,131.0,0.0,25.0,1022.0,65.0,0.0,42.0,120.0,52.0,0.0,57.0,378.0,14.0,276.0,75.0,0.0,0.0,0.0,2.0,75.0,18.0,356.0,0.0,2.0,1897.0,315.0,58.0,0.0,0.0,395.0,0.0,72.0,120.0,53.0,0.0,99.0,0.0,28.0,0.0,3322.0,0.0,104.0,509.0,0.0,4.0,107.0,258.0,427.0,315.0,0.0,2.0,0.0,400.0,27.0,17.0,0.0,64.0,0.0,489.0,1.0,37.0,0.0,75.0,320.0,472.0,23.0,1995.0,9.0,150.0,324.0,9.0,26.0,399.0,3.0,0.0,161.0,246.0,1632.0,2052.8197439742003,6.0,3.0,2015-02-22,,2015-8,2052.6000106445604,1847.39005771972, +70,70,94.0,4.0,124.0,0.0,80.0,196.0,378.0,127.0,1.0,270.0,5817.0,0.0,36.0,469.0,445.0,34.0,57.0,170.0,2073.0,0.0,35.0,278.0,18.0,62.0,344.0,98.0,1581.0,379.0,11.0,0.0,18.0,1.0,1275.0,390.0,630.0,1898.0,0.0,47.0,1.0,40.0,231.0,0.0,84.0,883.0,990.0,19.0,0.0,559.0,187.0,675.0,0.0,136.0,0.0,191.0,89.0,23.0,31.0,3173.0,0.0,1.0,16.0,18185.0,1.0,2306.0,180.0,0.0,7.0,20.0,1762.0,0.0,111.0,7874.0,151.0,2.0,56.0,0.0,2770.0,267.0,1.0,13.0,181.0,155.0,32.0,99.0,0.0,271.0,1253.0,253.0,30.0,0.0,0.0,7.0,2041.0,0.0,0.0,138.0,120.0,327.0,2292.0,63.0,1831.0,1605.0,39.0,0.0,35.0,2.0,5.0,7.0,0.0,70.0,3.0,2.0,1.0,2.0,3.0,2.0,2.0,912.0,1660.0,2159.0,0.0,14.0,1058.0,1258.0,5.0,3.0,76.0,67.0,24.0,0.0,421.0,883.0,1277.0,20.0,117.0,227.0,24.0,93.0,184.0,657.0,161.0,3061.0,67.0,3.0,0.0,1258.0,927.0,493.0,45.0,219.0,216.0,0.0,420.0,0.0,114.0,209.0,10.0,97.0,414.0,51.0,2.0,362.0,2367.0,90.0,0.0,45.0,21.0,0.0,0.0,55.0,11.0,433.0,843.0,362.0,50.0,30.0,145.0,0.0,692.0,0.0,40.0,936.0,67.0,0.0,0.0,0.0,2.0,404.0,0.0,75.0,644.0,1.0,31.0,0.0,64.0,198.0,27.0,21.0,180.0,399.0,690.0,579.0,33.0,1.0,2.0,1.0,0.0,0.0,29.0,2436.0,0.0,859.0,0.0,0.0,36.0,0.0,0.0,456.0,481.0,742.0,127.0,0.0,23.0,951.0,82.0,0.0,50.0,147.0,35.0,0.0,51.0,376.0,5.0,189.0,81.0,0.0,0.0,24.0,0.0,61.0,15.0,310.0,0.0,4.0,1806.0,277.0,53.0,0.0,7.0,482.0,2.0,61.0,106.0,44.0,0.0,103.0,0.0,22.0,0.0,3315.0,0.0,91.0,587.0,0.0,0.0,110.0,215.0,381.0,446.0,0.0,0.0,0.0,432.0,36.0,20.0,0.0,70.0,0.0,454.0,0.0,66.0,0.0,92.0,298.0,518.0,12.0,4240.0,11.0,171.0,296.0,8.0,21.0,401.0,0.0,0.0,209.0,205.0,1542.0,1461.862584917,7.0,2.0,2015-03-01,,2015-9,1461.9171407341464,1300.0769974714403, +71,71,70.0,1.0,83.0,0.0,64.0,213.0,371.0,114.0,0.0,283.0,5608.0,1.0,29.0,412.0,405.0,30.0,82.0,174.0,2285.0,0.0,22.0,293.0,6.0,48.0,364.0,132.0,1533.0,421.0,14.0,0.0,13.0,1.0,1253.0,379.0,769.0,1938.0,0.0,35.0,1.0,53.0,244.0,0.0,63.0,858.0,943.0,47.0,0.0,1354.0,174.0,729.0,0.0,172.0,0.0,185.0,91.0,24.0,42.0,3109.0,0.0,2.0,22.0,1719.0,1.0,3928.0,214.0,0.0,13.0,34.0,1806.0,0.0,131.0,7496.0,167.0,0.0,73.0,0.0,2684.0,271.0,1.0,11.0,191.0,145.0,42.0,90.0,1.0,344.0,1720.0,304.0,20.0,1.0,0.0,14.0,1978.0,0.0,0.0,184.0,118.0,948.0,2234.0,53.0,1976.0,1719.0,53.0,0.0,30.0,1.0,1.0,7.0,1.0,77.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1301.0,1785.0,2850.0,1.0,13.0,1189.0,1301.0,3.0,1.0,58.0,62.0,39.0,0.0,462.0,864.0,1362.0,24.0,138.0,232.0,25.0,98.0,230.0,683.0,136.0,3052.0,56.0,6.0,2.0,1384.0,970.0,638.0,73.0,195.0,291.0,0.0,1214.0,0.0,128.0,225.0,11.0,96.0,667.0,62.0,4.0,325.0,16883.0,69.0,1.0,42.0,31.0,0.0,0.0,44.0,0.0,803.0,797.0,476.0,84.0,30.0,60.0,0.0,666.0,0.0,54.0,1064.0,77.0,1.0,1.0,0.0,1.0,387.0,0.0,94.0,654.0,1.0,32.0,0.0,69.0,184.0,33.0,23.0,202.0,426.0,729.0,720.0,36.0,0.0,1.0,2.0,1.0,1.0,29.0,2535.0,0.0,1235.0,0.0,3.0,36.0,0.0,0.0,1517.0,515.0,806.0,142.0,0.0,19.0,974.0,70.0,0.0,50.0,132.0,36.0,0.0,36.0,401.0,4.0,269.0,60.0,0.0,0.0,12.0,0.0,68.0,14.0,375.0,0.0,3.0,1808.0,262.0,50.0,0.0,0.0,464.0,2.0,64.0,108.0,42.0,0.0,136.0,0.0,26.0,0.0,3528.0,0.0,88.0,617.0,0.0,0.0,205.0,360.0,416.0,390.0,0.0,1.0,0.0,433.0,32.0,19.0,0.0,91.0,0.0,467.0,1.0,44.0,0.0,105.0,298.0,576.0,10.0,1993.0,11.0,193.0,326.0,3.0,19.0,421.0,0.0,0.0,157.0,204.0,1674.0,1699.5777711434,6.0,2.0,2015-03-08,,2015-10,1699.587774391128,1564.79647945508, +72,72,89.0,3.0,86.0,0.0,46.0,232.0,404.0,100.0,0.0,310.0,4696.0,0.0,26.0,483.0,482.0,30.0,72.0,161.0,2102.0,0.0,21.0,417.0,16.0,50.0,347.0,105.0,1481.0,406.0,11.0,0.0,8.0,0.0,1214.0,440.0,621.0,1875.0,0.0,30.0,0.0,61.0,211.0,0.0,70.0,873.0,1038.0,23.0,0.0,858.0,168.0,724.0,0.0,270.0,0.0,231.0,214.0,15.0,20.0,3425.0,0.0,1.0,22.0,1605.0,0.0,2283.0,197.0,0.0,15.0,26.0,1772.0,0.0,153.0,5633.0,144.0,0.0,78.0,0.0,2720.0,267.0,1.0,102.0,162.0,121.0,21.0,79.0,0.0,292.0,1341.0,269.0,25.0,0.0,0.0,5.0,1846.0,0.0,0.0,159.0,88.0,489.0,2214.0,34.0,1954.0,1647.0,31.0,2.0,35.0,3.0,6.0,5.0,0.0,68.0,3.0,11.0,2.0,2.0,10.0,0.0,0.0,990.0,1656.0,2233.0,1.0,11.0,1055.0,1256.0,3.0,1.0,58.0,41.0,17.0,0.0,489.0,846.0,1453.0,20.0,105.0,223.0,22.0,76.0,199.0,644.0,128.0,2908.0,55.0,5.0,3.0,1348.0,796.0,558.0,57.0,251.0,329.0,0.0,708.0,0.0,116.0,207.0,5.0,99.0,555.0,39.0,0.0,330.0,5763.0,83.0,0.0,30.0,32.0,0.0,1.0,44.0,14.0,474.0,784.0,400.0,61.0,61.0,45.0,0.0,711.0,0.0,52.0,1002.0,60.0,2.0,1.0,0.0,0.0,353.0,4.0,114.0,724.0,0.0,22.0,7.0,63.0,189.0,26.0,11.0,207.0,509.0,755.0,606.0,36.0,0.0,0.0,1.0,2.0,0.0,17.0,2478.0,0.0,888.0,0.0,0.0,35.0,0.0,0.0,832.0,419.0,766.0,143.0,0.0,21.0,930.0,83.0,0.0,38.0,133.0,48.0,0.0,39.0,330.0,3.0,223.0,78.0,0.0,0.0,16.0,0.0,84.0,21.0,333.0,0.0,4.0,1898.0,313.0,55.0,0.0,9.0,451.0,3.0,73.0,224.0,32.0,1.0,99.0,0.0,29.0,0.0,3247.0,0.0,57.0,531.0,0.0,0.0,112.0,268.0,414.0,364.0,0.0,1.0,0.0,403.0,31.0,10.0,0.0,51.0,0.0,505.0,1.0,65.0,0.0,149.0,325.0,576.0,12.0,1682.0,12.0,171.0,349.0,3.0,12.0,373.0,1.0,0.0,174.0,234.0,1723.0,1329.1468418314998,9.0,2.0,2015-03-15,,2015-11,1328.969950613206,1284.4557516395398, +73,73,68.0,1.0,97.0,0.0,57.0,233.0,446.0,121.0,1.0,323.0,5159.0,0.0,35.0,491.0,406.0,40.0,50.0,165.0,2055.0,0.0,30.0,329.0,9.0,57.0,421.0,125.0,1484.0,387.0,7.0,0.0,12.0,0.0,1191.0,406.0,653.0,1902.0,0.0,31.0,0.0,52.0,206.0,0.0,63.0,893.0,967.0,22.0,0.0,777.0,161.0,684.0,0.0,237.0,0.0,233.0,90.0,27.0,21.0,2781.0,0.0,0.0,25.0,1717.0,0.0,2179.0,192.0,0.0,6.0,21.0,1748.0,0.0,140.0,5195.0,150.0,0.0,51.0,0.0,2503.0,242.0,1.0,21.0,145.0,114.0,34.0,68.0,0.0,271.0,1272.0,294.0,25.0,1.0,0.0,6.0,1813.0,0.0,0.0,140.0,114.0,406.0,2273.0,52.0,1818.0,1582.0,31.0,0.0,38.0,0.0,0.0,6.0,0.0,74.0,2.0,1.0,1.0,0.0,1.0,0.0,3.0,807.0,1671.0,2103.0,0.0,20.0,1181.0,1391.0,6.0,1.0,60.0,51.0,20.0,0.0,413.0,881.0,1235.0,20.0,109.0,265.0,27.0,85.0,195.0,614.0,116.0,2752.0,60.0,4.0,1.0,1292.0,808.0,461.0,36.0,207.0,354.0,1.0,571.0,0.0,147.0,176.0,8.0,99.0,433.0,49.0,6.0,346.0,4078.0,84.0,0.0,48.0,29.0,0.0,0.0,66.0,0.0,484.0,854.0,462.0,81.0,88.0,38.0,0.0,742.0,0.0,42.0,1050.0,67.0,4.0,1.0,0.0,0.0,389.0,0.0,93.0,650.0,0.0,27.0,0.0,59.0,187.0,16.0,20.0,196.0,515.0,817.0,610.0,37.0,0.0,0.0,1.0,0.0,0.0,21.0,2337.0,0.0,874.0,0.0,1.0,34.0,0.0,0.0,525.0,422.0,754.0,138.0,0.0,16.0,893.0,75.0,0.0,35.0,127.0,40.0,0.0,57.0,346.0,9.0,198.0,74.0,0.0,0.0,7.0,0.0,90.0,18.0,329.0,0.0,4.0,1783.0,300.0,66.0,0.0,1.0,451.0,0.0,58.0,115.0,29.0,0.0,89.0,0.0,26.0,0.0,3245.0,0.0,80.0,562.0,1.0,1.0,109.0,229.0,361.0,379.0,0.0,0.0,0.0,469.0,24.0,18.0,0.0,51.0,0.0,461.0,0.0,63.0,0.0,177.0,338.0,526.0,15.0,1606.0,7.0,178.0,317.0,9.0,26.0,378.0,0.0,0.0,134.0,234.0,1628.0,1136.6912400643,6.0,0.0,2015-03-22,,2015-12,1136.674027759922,1236.0668805991402, +74,74,82.0,2.0,79.0,0.0,64.0,183.0,335.0,131.0,0.0,301.0,3794.0,3.0,29.0,426.0,429.0,35.0,65.0,157.0,2286.0,0.0,47.0,249.0,6.0,42.0,359.0,93.0,1473.0,423.0,6.0,0.0,13.0,0.0,1149.0,421.0,651.0,1838.0,0.0,27.0,0.0,47.0,174.0,0.0,58.0,840.0,973.0,26.0,0.0,683.0,186.0,664.0,0.0,122.0,0.0,173.0,63.0,16.0,27.0,5018.0,0.0,0.0,19.0,1597.0,0.0,1959.0,165.0,0.0,2.0,22.0,1716.0,0.0,87.0,4302.0,108.0,0.0,47.0,0.0,2534.0,232.0,0.0,13.0,104.0,116.0,19.0,92.0,0.0,238.0,1171.0,265.0,31.0,0.0,0.0,8.0,1749.0,0.0,0.0,131.0,98.0,321.0,2120.0,54.0,1858.0,1409.0,53.0,1.0,27.0,1.0,1.0,6.0,1.0,98.0,1.0,1.0,2.0,1.0,1.0,1.0,1.0,764.0,1671.0,1916.0,0.0,15.0,1176.0,1294.0,4.0,1.0,61.0,63.0,25.0,0.0,467.0,880.0,1145.0,18.0,114.0,241.0,35.0,60.0,195.0,625.0,95.0,2760.0,56.0,7.0,2.0,1323.0,836.0,507.0,40.0,197.0,274.0,0.0,437.0,0.0,129.0,196.0,19.0,110.0,478.0,49.0,3.0,312.0,3046.0,87.0,0.0,52.0,36.0,0.0,0.0,60.0,0.0,467.0,824.0,453.0,53.0,70.0,40.0,0.0,657.0,0.0,78.0,1047.0,69.0,0.0,0.0,0.0,0.0,389.0,0.0,74.0,636.0,3.0,18.0,0.0,69.0,186.0,28.0,13.0,175.0,465.0,726.0,567.0,43.0,0.0,0.0,0.0,1.0,0.0,40.0,2181.0,0.0,761.0,0.0,1.0,30.0,0.0,0.0,472.0,448.0,717.0,124.0,0.0,14.0,918.0,104.0,0.0,33.0,122.0,40.0,0.0,56.0,351.0,9.0,178.0,62.0,0.0,0.0,7.0,0.0,52.0,26.0,319.0,0.0,6.0,1761.0,315.0,62.0,0.0,0.0,478.0,2.0,80.0,97.0,24.0,0.0,84.0,0.0,25.0,0.0,3197.0,0.0,56.0,532.0,0.0,0.0,96.0,211.0,349.0,311.0,0.0,0.0,0.0,606.0,31.0,19.0,0.0,34.0,0.0,416.0,0.0,50.0,0.0,97.0,298.0,571.0,15.0,1390.0,13.0,182.0,365.0,6.0,20.0,388.0,0.0,0.0,151.0,201.0,1368.0,1025.6713127018,2.0,0.0,2015-03-29,,2015-13,1025.8284294527543,961.53262502162, +75,75,88.0,4.0,97.0,0.0,47.0,205.0,375.0,89.0,0.0,309.0,3353.0,1.0,22.0,391.0,501.0,33.0,60.0,167.0,1832.0,0.0,30.0,283.0,11.0,59.0,343.0,99.0,1391.0,411.0,10.0,0.0,21.0,0.0,960.0,393.0,581.0,1819.0,0.0,28.0,0.0,55.0,250.0,0.0,52.0,839.0,965.0,24.0,0.0,710.0,157.0,682.0,0.0,90.0,1.0,231.0,74.0,25.0,37.0,9852.0,0.0,1.0,22.0,1528.0,1.0,1985.0,132.0,0.0,5.0,17.0,1662.0,0.0,114.0,3949.0,156.0,1.0,48.0,0.0,2448.0,250.0,2.0,12.0,84.0,137.0,25.0,80.0,0.0,209.0,995.0,245.0,24.0,0.0,0.0,7.0,1796.0,0.0,0.0,122.0,120.0,348.0,2715.0,83.0,1798.0,1321.0,56.0,0.0,23.0,1.0,1.0,5.0,0.0,67.0,3.0,1.0,1.0,0.0,0.0,0.0,0.0,766.0,1473.0,1773.0,0.0,16.0,971.0,1199.0,4.0,2.0,74.0,50.0,22.0,0.0,402.0,841.0,1034.0,23.0,98.0,199.0,32.0,72.0,178.0,625.0,111.0,2683.0,63.0,6.0,0.0,1222.0,914.0,487.0,24.0,200.0,202.0,0.0,483.0,0.0,105.0,164.0,11.0,77.0,715.0,42.0,7.0,286.0,2803.0,60.0,0.0,45.0,31.0,0.0,1.0,45.0,0.0,401.0,796.0,416.0,106.0,69.0,33.0,0.0,626.0,0.0,44.0,1039.0,58.0,0.0,1.0,0.0,0.0,385.0,0.0,74.0,616.0,0.0,17.0,0.0,70.0,162.0,24.0,16.0,197.0,493.0,697.0,584.0,42.0,0.0,0.0,1.0,0.0,0.0,28.0,2058.0,0.0,674.0,0.0,1.0,28.0,0.0,0.0,466.0,400.0,721.0,98.0,0.0,15.0,909.0,68.0,0.0,28.0,97.0,37.0,0.0,48.0,287.0,5.0,179.0,86.0,0.0,0.0,10.0,0.0,48.0,28.0,336.0,0.0,2.0,1764.0,260.0,57.0,0.0,0.0,511.0,1.0,64.0,114.0,20.0,0.0,104.0,0.0,19.0,0.0,3160.0,0.0,79.0,513.0,0.0,0.0,115.0,200.0,413.0,305.0,0.0,1.0,0.0,358.0,61.0,43.0,0.0,44.0,0.0,347.0,0.0,41.0,0.0,272.0,304.0,448.0,9.0,1418.0,7.0,129.0,302.0,12.0,19.0,361.0,2.0,0.0,156.0,203.0,1568.0,1021.2059024724,3.0,0.0,2015-04-05,,2015-14,1021.1294118444287,849.3087727725201, +76,76,84.0,2.0,105.0,0.0,45.0,185.0,263.0,79.0,0.0,260.0,2671.0,3.0,22.0,332.0,413.0,33.0,61.0,117.0,1737.0,0.0,16.0,240.0,7.0,46.0,397.0,60.0,1117.0,356.0,10.0,0.0,18.0,0.0,777.0,287.0,443.0,1457.0,0.0,27.0,0.0,36.0,172.0,0.0,64.0,678.0,875.0,20.0,0.0,489.0,171.0,650.0,0.0,101.0,0.0,160.0,56.0,17.0,41.0,1508.0,0.0,1.0,21.0,1381.0,0.0,1647.0,156.0,0.0,5.0,23.0,1276.0,0.0,93.0,3423.0,130.0,1.0,70.0,0.0,2436.0,165.0,1.0,17.0,72.0,106.0,27.0,65.0,1.0,196.0,793.0,226.0,22.0,0.0,0.0,8.0,1649.0,0.0,0.0,121.0,95.0,280.0,1730.0,51.0,1654.0,1314.0,163.0,2.0,38.0,3.0,0.0,6.0,0.0,104.0,4.0,0.0,0.0,0.0,1.0,0.0,2.0,641.0,1172.0,1238.0,0.0,10.0,914.0,990.0,8.0,1.0,57.0,35.0,14.0,0.0,362.0,817.0,1039.0,19.0,103.0,184.0,32.0,84.0,174.0,568.0,85.0,2505.0,54.0,1.0,0.0,986.0,751.0,650.0,39.0,163.0,201.0,0.0,395.0,0.0,81.0,152.0,14.0,69.0,311.0,36.0,9.0,239.0,1734.0,59.0,1.0,40.0,14.0,0.0,0.0,44.0,0.0,342.0,684.0,328.0,59.0,53.0,25.0,0.0,483.0,0.0,38.0,892.0,60.0,0.0,0.0,0.0,0.0,352.0,0.0,72.0,491.0,0.0,20.0,0.0,50.0,131.0,15.0,11.0,187.0,410.0,616.0,474.0,36.0,0.0,0.0,1.0,1.0,0.0,29.0,1936.0,0.0,655.0,1.0,0.0,19.0,0.0,0.0,367.0,347.0,594.0,96.0,0.0,19.0,778.0,61.0,0.0,33.0,75.0,24.0,0.0,35.0,258.0,10.0,119.0,51.0,0.0,0.0,1.0,0.0,35.0,25.0,284.0,0.0,2.0,1433.0,311.0,51.0,0.0,1.0,401.0,0.0,50.0,95.0,24.0,0.0,72.0,0.0,16.0,0.0,2508.0,0.0,76.0,443.0,0.0,0.0,66.0,133.0,330.0,211.0,0.0,0.0,0.0,344.0,20.0,18.0,0.0,51.0,0.0,322.0,0.0,38.0,0.0,77.0,274.0,465.0,9.0,927.0,11.0,130.0,212.0,5.0,37.0,301.0,1.0,0.0,128.0,181.0,1248.0,405.2863436123,3.0,2.0,2015-04-12,,2015-15,405.2949953169475,405.2863436123, +77,77,71.0,2.0,88.0,0.0,48.0,163.0,300.0,73.0,0.0,263.0,2784.0,0.0,28.0,348.0,417.0,35.0,55.0,138.0,1893.0,0.0,25.0,326.0,4.0,52.0,351.0,77.0,1168.0,349.0,7.0,0.0,16.0,1.0,908.0,346.0,550.0,1563.0,0.0,25.0,0.0,50.0,183.0,0.0,53.0,713.0,954.0,25.0,0.0,492.0,134.0,688.0,0.0,122.0,0.0,135.0,60.0,22.0,37.0,1743.0,0.0,1.0,29.0,1479.0,0.0,1692.0,185.0,0.0,6.0,18.0,1448.0,0.0,83.0,3181.0,123.0,0.0,64.0,0.0,2381.0,185.0,0.0,5.0,87.0,112.0,27.0,110.0,1.0,224.0,978.0,347.0,30.0,1.0,0.0,10.0,1654.0,0.0,0.0,124.0,89.0,231.0,2312.0,48.0,1694.0,1295.0,113.0,5.0,39.0,3.0,1.0,2.0,0.0,103.0,0.0,0.0,2.0,0.0,3.0,2.0,1.0,660.0,1430.0,1447.0,1.0,14.0,867.0,1014.0,3.0,0.0,42.0,49.0,18.0,0.0,423.0,738.0,989.0,17.0,112.0,179.0,49.0,67.0,155.0,658.0,95.0,2492.0,60.0,5.0,1.0,1164.0,860.0,473.0,29.0,165.0,256.0,0.0,380.0,0.0,108.0,174.0,4.0,92.0,364.0,44.0,8.0,279.0,1721.0,61.0,0.0,40.0,26.0,0.0,0.0,24.0,0.0,370.0,751.0,325.0,67.0,57.0,21.0,0.0,573.0,0.0,50.0,867.0,45.0,1.0,1.0,0.0,0.0,292.0,0.0,55.0,563.0,0.0,26.0,0.0,67.0,129.0,27.0,13.0,221.0,366.0,584.0,473.0,28.0,1.0,0.0,1.0,3.0,0.0,21.0,2012.0,0.0,628.0,1.0,0.0,14.0,0.0,0.0,340.0,430.0,691.0,117.0,0.0,21.0,766.0,69.0,0.0,34.0,103.0,38.0,0.0,39.0,255.0,6.0,146.0,93.0,0.0,0.0,7.0,0.0,46.0,25.0,298.0,0.0,4.0,1522.0,372.0,44.0,0.0,1.0,476.0,0.0,57.0,104.0,18.0,0.0,83.0,0.0,20.0,0.0,2770.0,0.0,63.0,486.0,0.0,2.0,109.0,159.0,350.0,231.0,0.0,1.0,0.0,329.0,28.0,11.0,0.0,47.0,0.0,392.0,1.0,39.0,0.0,114.0,287.0,373.0,10.0,1076.0,9.0,159.0,223.0,11.0,31.0,326.0,0.0,0.0,121.0,212.0,1308.0,328.6208194982,5.0,0.0,2015-04-19,,2015-16,328.9162918873235,622.3469463602801, +78,78,108.0,2.0,76.0,12.0,41.0,157.0,473.0,88.0,0.0,199.0,2649.0,0.0,27.0,305.0,324.0,51.0,39.0,189.0,1714.0,33.0,30.0,326.0,0.0,65.0,344.0,78.0,1019.0,335.0,7.0,0.0,12.0,83.0,966.0,443.0,480.0,1338.0,0.0,18.0,0.0,35.0,205.0,34.0,48.0,798.0,671.0,21.0,0.0,475.0,119.0,429.0,0.0,105.0,18.0,195.0,59.0,24.0,42.0,797.0,14.0,0.0,19.0,1239.0,0.0,1603.0,165.0,0.0,0.0,31.0,1177.0,0.0,128.0,2573.0,104.0,0.0,44.0,12.0,2087.0,192.0,42.0,31.0,90.0,106.0,27.0,79.0,0.0,208.0,803.0,236.0,28.0,1.0,11.0,7.0,1423.0,115.0,91.0,117.0,89.0,274.0,1792.0,44.0,1570.0,1387.0,29.0,0.0,27.0,0.0,0.0,6.0,0.0,72.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,588.0,1284.0,1417.0,76.0,11.0,1059.0,834.0,4.0,0.0,56.0,38.0,17.0,15.0,385.0,618.0,1156.0,21.0,99.0,172.0,23.0,65.0,145.0,580.0,159.0,1627.0,59.0,4.0,0.0,917.0,684.0,431.0,54.0,152.0,200.0,0.0,490.0,0.0,89.0,141.0,5.0,70.0,380.0,44.0,0.0,237.0,1035.0,49.0,45.0,40.0,21.0,0.0,65.0,87.0,0.0,421.0,642.0,303.0,61.0,89.0,45.0,23.0,516.0,0.0,42.0,887.0,45.0,0.0,0.0,0.0,0.0,327.0,0.0,77.0,530.0,0.0,16.0,0.0,63.0,156.0,14.0,10.0,140.0,326.0,577.0,448.0,26.0,0.0,0.0,27.0,35.0,0.0,27.0,1699.0,19.0,555.0,0.0,0.0,23.0,0.0,155.0,544.0,304.0,657.0,121.0,0.0,14.0,733.0,50.0,0.0,35.0,111.0,35.0,0.0,32.0,221.0,8.0,174.0,77.0,33.0,0.0,0.0,0.0,38.0,32.0,279.0,11.0,0.0,1267.0,305.0,65.0,0.0,0.0,326.0,0.0,60.0,110.0,10.0,0.0,80.0,0.0,20.0,0.0,2390.0,0.0,152.0,381.0,118.0,138.0,116.0,198.0,306.0,185.0,13.0,0.0,0.0,338.0,24.0,20.0,66.0,38.0,0.0,313.0,0.0,36.0,32.0,93.0,307.0,474.0,10.0,1320.0,5.0,158.0,178.0,7.0,18.0,284.0,0.0,0.0,119.0,189.0,1162.0,769.5944526161,0.0,0.0,2015-10-25,,2015-43,769.7939665531795,769.5944526161002, +79,79,106.0,4.0,86.0,10.0,46.0,162.0,398.0,97.0,0.0,203.0,2624.0,0.0,24.0,370.0,340.0,34.0,67.0,144.0,1569.0,33.0,39.0,357.0,0.0,58.0,313.0,105.0,1044.0,362.0,14.0,0.0,18.0,64.0,952.0,440.0,488.0,1418.0,0.0,21.0,0.0,21.0,195.0,36.0,49.0,757.0,577.0,19.0,0.0,491.0,133.0,459.0,0.0,78.0,22.0,179.0,60.0,17.0,44.0,613.0,9.0,0.0,16.0,1236.0,0.0,1784.0,170.0,0.0,0.0,21.0,1329.0,0.0,83.0,2604.0,111.0,0.0,64.0,13.0,2165.0,229.0,44.0,18.0,81.0,93.0,29.0,88.0,0.0,204.0,826.0,310.0,51.0,0.0,8.0,12.0,1547.0,117.0,124.0,140.0,110.0,300.0,1789.0,66.0,1444.0,1243.0,39.0,0.0,42.0,0.0,0.0,4.0,0.0,80.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,652.0,1480.0,1572.0,75.0,13.0,1008.0,872.0,4.0,0.0,69.0,49.0,26.0,9.0,429.0,661.0,1035.0,19.0,77.0,244.0,25.0,86.0,174.0,551.0,167.0,1729.0,43.0,2.0,0.0,1064.0,919.0,515.0,59.0,157.0,221.0,0.0,429.0,0.0,110.0,214.0,9.0,66.0,518.0,51.0,0.0,263.0,1022.0,46.0,52.0,29.0,22.0,0.0,73.0,96.0,0.0,381.0,672.0,309.0,74.0,88.0,37.0,17.0,547.0,0.0,36.0,885.0,62.0,0.0,0.0,0.0,0.0,324.0,0.0,76.0,507.0,0.0,21.0,0.0,44.0,170.0,23.0,16.0,141.0,368.0,610.0,474.0,28.0,0.0,0.0,32.0,28.0,0.0,10.0,1641.0,15.0,620.0,0.0,0.0,25.0,0.0,231.0,500.0,316.0,626.0,109.0,0.0,16.0,774.0,63.0,0.0,35.0,94.0,36.0,0.0,44.0,230.0,11.0,170.0,39.0,25.0,0.0,0.0,0.0,65.0,33.0,282.0,11.0,0.0,1508.0,256.0,53.0,0.0,0.0,428.0,0.0,48.0,93.0,19.0,0.0,82.0,0.0,11.0,0.0,2632.0,0.0,141.0,476.0,142.0,143.0,142.0,198.0,289.0,290.0,8.0,0.0,0.0,374.0,31.0,21.0,52.0,41.0,0.0,273.0,0.0,40.0,41.0,68.0,263.0,447.0,10.0,1148.0,8.0,154.0,179.0,6.0,14.0,319.0,1.0,0.0,104.0,162.0,1195.0,722.4580440222,0.0,0.0,2015-11-01,,2015-44,722.487610725843,722.4580440222, +80,80,86.0,6.0,79.0,6.0,38.0,143.0,389.0,116.0,0.0,178.0,2477.0,0.0,32.0,289.0,317.0,64.0,62.0,168.0,1617.0,26.0,31.0,309.0,0.0,68.0,312.0,95.0,1026.0,419.0,6.0,0.0,23.0,75.0,923.0,410.0,445.0,1376.0,0.0,25.0,0.0,34.0,326.0,23.0,65.0,841.0,539.0,22.0,0.0,513.0,139.0,421.0,0.0,85.0,20.0,176.0,84.0,25.0,35.0,673.0,10.0,0.0,22.0,1315.0,0.0,1624.0,175.0,0.0,0.0,26.0,1203.0,0.0,119.0,2815.0,82.0,0.0,70.0,13.0,2274.0,212.0,34.0,13.0,79.0,101.0,18.0,88.0,0.0,208.0,803.0,274.0,36.0,0.0,11.0,6.0,1503.0,104.0,125.0,117.0,98.0,239.0,1851.0,56.0,1375.0,1256.0,61.0,0.0,44.0,0.0,0.0,3.0,0.0,85.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,597.0,1439.0,1497.0,50.0,12.0,941.0,843.0,5.0,0.0,59.0,50.0,20.0,11.0,402.0,618.0,1282.0,29.0,96.0,249.0,27.0,72.0,176.0,595.0,137.0,1716.0,42.0,7.0,0.0,976.0,704.0,522.0,33.0,155.0,244.0,0.0,398.0,0.0,88.0,200.0,7.0,73.0,420.0,68.0,0.0,260.0,1063.0,58.0,46.0,37.0,22.0,0.0,58.0,66.0,0.0,390.0,663.0,273.0,88.0,87.0,49.0,19.0,602.0,0.0,47.0,813.0,51.0,0.0,0.0,0.0,0.0,337.0,0.0,61.0,539.0,0.0,20.0,0.0,47.0,154.0,15.0,9.0,143.0,328.0,599.0,462.0,43.0,0.0,0.0,30.0,21.0,0.0,20.0,1815.0,14.0,704.0,0.0,0.0,33.0,0.0,204.0,455.0,351.0,653.0,138.0,0.0,7.0,679.0,67.0,0.0,41.0,136.0,38.0,0.0,37.0,194.0,4.0,154.0,49.0,27.0,0.0,0.0,0.0,38.0,35.0,273.0,8.0,0.0,1532.0,254.0,56.0,0.0,0.0,405.0,0.0,59.0,78.0,21.0,0.0,86.0,0.0,14.0,0.0,2565.0,0.0,121.0,415.0,114.0,95.0,130.0,155.0,277.0,255.0,12.0,0.0,0.0,346.0,25.0,21.0,60.0,56.0,0.0,296.0,0.0,51.0,28.0,77.0,293.0,388.0,44.0,1266.0,14.0,157.0,200.0,10.0,15.0,278.0,0.0,0.0,105.0,164.0,1260.0,657.1248537222,0.0,0.0,2015-11-08,,2015-45,657.1205636755349,686.26921272826, +81,81,87.0,5.0,94.0,3.0,43.0,150.0,397.0,90.0,0.0,176.0,2381.0,0.0,29.0,289.0,387.0,54.0,78.0,142.0,1740.0,22.0,25.0,301.0,0.0,77.0,325.0,87.0,1042.0,455.0,14.0,0.0,14.0,75.0,1048.0,447.0,433.0,1406.0,0.0,19.0,0.0,38.0,252.0,21.0,50.0,830.0,614.0,25.0,0.0,443.0,141.0,433.0,0.0,104.0,17.0,172.0,81.0,17.0,46.0,909.0,21.0,0.0,12.0,1503.0,0.0,1585.0,151.0,0.0,0.0,21.0,1223.0,0.0,94.0,2550.0,120.0,0.0,62.0,10.0,2197.0,212.0,40.0,17.0,86.0,103.0,27.0,88.0,0.0,259.0,943.0,251.0,28.0,0.0,8.0,10.0,1473.0,101.0,126.0,139.0,98.0,258.0,2040.0,60.0,1336.0,1340.0,40.0,0.0,33.0,0.0,0.0,5.0,0.0,84.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,671.0,1489.0,1595.0,40.0,10.0,945.0,925.0,5.0,0.0,82.0,31.0,26.0,11.0,430.0,670.0,1069.0,31.0,126.0,221.0,30.0,64.0,168.0,640.0,183.0,1769.0,30.0,2.0,0.0,1092.0,674.0,537.0,44.0,146.0,197.0,0.0,492.0,0.0,103.0,152.0,3.0,66.0,471.0,49.0,0.0,268.0,1042.0,275.0,46.0,37.0,19.0,0.0,59.0,63.0,0.0,427.0,705.0,337.0,93.0,119.0,28.0,18.0,580.0,0.0,40.0,902.0,48.0,0.0,0.0,0.0,0.0,348.0,0.0,72.0,505.0,0.0,20.0,0.0,56.0,153.0,16.0,12.0,146.0,305.0,598.0,430.0,43.0,0.0,0.0,34.0,25.0,0.0,17.0,18804.0,13.0,594.0,0.0,0.0,26.0,0.0,150.0,448.0,331.0,608.0,110.0,0.0,18.0,808.0,60.0,0.0,32.0,87.0,33.0,0.0,46.0,209.0,4.0,154.0,45.0,26.0,0.0,0.0,0.0,47.0,27.0,289.0,11.0,0.0,1545.0,244.0,69.0,0.0,0.0,387.0,0.0,62.0,108.0,14.0,0.0,71.0,0.0,22.0,0.0,2549.0,0.0,133.0,456.0,136.0,124.0,159.0,172.0,372.0,220.0,15.0,0.0,0.0,350.0,22.0,25.0,51.0,48.0,0.0,353.0,0.0,40.0,44.0,86.0,298.0,400.0,13.0,1357.0,7.0,148.0,194.0,7.0,16.0,266.0,0.0,0.0,126.0,167.0,1090.0,645.7721346896,0.0,0.0,2015-11-15,,2015-46,645.7727917440258,803.6126696759201, +82,82,101.0,0.0,105.0,9.0,45.0,128.0,417.0,88.0,0.0,193.0,2386.0,0.0,23.0,338.0,342.0,62.0,55.0,135.0,2214.0,29.0,35.0,365.0,0.0,70.0,345.0,98.0,1043.0,412.0,8.0,63.0,17.0,93.0,1010.0,526.0,553.0,1379.0,0.0,24.0,0.0,113.0,255.0,33.0,46.0,861.0,602.0,22.0,9.0,522.0,156.0,420.0,0.0,61.0,19.0,168.0,72.0,24.0,42.0,848.0,18.0,0.0,13.0,1466.0,0.0,1557.0,170.0,0.0,0.0,15.0,1247.0,0.0,96.0,2664.0,95.0,0.0,60.0,16.0,2239.0,241.0,46.0,19.0,57.0,119.0,38.0,95.0,0.0,249.0,831.0,241.0,23.0,1.0,6.0,8.0,1561.0,90.0,130.0,150.0,108.0,279.0,1794.0,80.0,1486.0,1379.0,37.0,0.0,25.0,0.0,0.0,2.0,0.0,85.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,703.0,1385.0,1705.0,45.0,8.0,1111.0,987.0,4.0,0.0,69.0,65.0,19.0,6.0,423.0,651.0,1135.0,16.0,113.0,245.0,34.0,78.0,187.0,621.0,127.0,1919.0,36.0,5.0,0.0,1073.0,662.0,488.0,32.0,177.0,237.0,0.0,489.0,0.0,105.0,154.0,7.0,118.0,532.0,38.0,0.0,299.0,1145.0,69.0,21.0,30.0,11.0,0.0,55.0,97.0,0.0,411.0,713.0,357.0,96.0,97.0,42.0,21.0,573.0,0.0,50.0,1045.0,68.0,0.0,0.0,0.0,0.0,372.0,0.0,78.0,618.0,0.0,24.0,0.0,51.0,158.0,14.0,11.0,189.0,338.0,651.0,475.0,31.0,0.0,0.0,25.0,19.0,0.0,9.0,2012.0,8.0,541.0,0.0,0.0,28.0,0.0,201.0,632.0,361.0,658.0,129.0,0.0,13.0,815.0,73.0,0.0,26.0,118.0,27.0,0.0,39.0,211.0,6.0,144.0,69.0,18.0,0.0,0.0,0.0,43.0,28.0,296.0,13.0,0.0,1419.0,228.0,53.0,0.0,0.0,368.0,0.0,45.0,93.0,14.0,0.0,80.0,0.0,21.0,0.0,2583.0,0.0,163.0,427.0,110.0,132.0,125.0,176.0,336.0,217.0,9.0,0.0,0.0,368.0,23.0,20.0,70.0,52.0,0.0,332.0,0.0,42.0,42.0,125.0,302.0,440.0,19.0,1252.0,9.0,170.0,208.0,12.0,10.0,264.0,0.0,0.0,152.0,185.0,1197.0,708.6010417493,0.0,0.0,2015-11-22,,2015-47,708.5505996569161,893.2099712555801, +83,83,84.0,2.0,87.0,8.0,57.0,118.0,348.0,113.0,0.0,193.0,2302.0,0.0,25.0,345.0,337.0,31.0,49.0,136.0,1395.0,32.0,34.0,336.0,0.0,57.0,350.0,102.0,1039.0,377.0,5.0,26.0,18.0,85.0,1078.0,513.0,505.0,1448.0,0.0,19.0,0.0,47.0,212.0,35.0,45.0,880.0,716.0,28.0,3.0,497.0,157.0,420.0,0.0,87.0,20.0,170.0,78.0,23.0,49.0,829.0,19.0,0.0,25.0,1405.0,0.0,1545.0,133.0,0.0,0.0,14.0,1206.0,0.0,86.0,2364.0,118.0,0.0,62.0,12.0,2226.0,255.0,40.0,10.0,73.0,106.0,34.0,57.0,0.0,577.0,793.0,238.0,30.0,0.0,8.0,7.0,1505.0,72.0,124.0,135.0,88.0,249.0,2005.0,62.0,1460.0,1473.0,35.0,0.0,29.0,0.0,0.0,4.0,0.0,88.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,670.0,1411.0,1771.0,48.0,17.0,1065.0,939.0,4.0,0.0,86.0,36.0,13.0,9.0,403.0,630.0,1056.0,27.0,88.0,191.0,27.0,81.0,195.0,630.0,171.0,1705.0,38.0,5.0,0.0,1083.0,612.0,485.0,50.0,189.0,236.0,0.0,430.0,0.0,106.0,176.0,4.0,88.0,417.0,54.0,0.0,251.0,999.0,81.0,27.0,28.0,12.0,0.0,50.0,63.0,0.0,383.0,683.0,310.0,93.0,79.0,32.0,14.0,618.0,0.0,37.0,904.0,56.0,0.0,0.0,0.0,0.0,343.0,0.0,62.0,803.0,0.0,20.0,0.0,62.0,160.0,14.0,10.0,176.0,332.0,699.0,540.0,24.0,0.0,0.0,31.0,24.0,0.0,19.0,1798.0,12.0,598.0,0.0,0.0,19.0,0.0,165.0,465.0,348.0,643.0,125.0,0.0,14.0,912.0,71.0,0.0,30.0,107.0,35.0,0.0,44.0,219.0,4.0,156.0,50.0,35.0,0.0,0.0,0.0,25.0,32.0,265.0,12.0,0.0,1460.0,246.0,50.0,89.0,0.0,362.0,0.0,47.0,77.0,10.0,0.0,78.0,0.0,19.0,0.0,2629.0,0.0,147.0,448.0,111.0,124.0,142.0,201.0,355.0,249.0,8.0,0.0,0.0,316.0,26.0,12.0,70.0,54.0,0.0,406.0,0.0,44.0,32.0,79.0,268.0,429.0,12.0,982.0,3.0,128.0,182.0,3.0,22.0,286.0,0.0,0.0,124.0,155.0,1106.0,711.8408651223,0.0,0.0,2015-11-29,,2015-48,711.9072532690209,788.4162326952, +84,84,72.0,6.0,112.0,7.0,57.0,133.0,395.0,87.0,0.0,276.0,2289.0,0.0,18.0,311.0,421.0,28.0,38.0,130.0,1512.0,38.0,39.0,353.0,0.0,75.0,348.0,85.0,1028.0,364.0,9.0,25.0,11.0,78.0,956.0,464.0,499.0,1369.0,0.0,22.0,0.0,38.0,322.0,45.0,62.0,780.0,717.0,22.0,6.0,478.0,180.0,431.0,0.0,79.0,9.0,169.0,90.0,28.0,45.0,758.0,25.0,0.0,22.0,1427.0,0.0,1613.0,139.0,0.0,0.0,36.0,1301.0,0.0,123.0,2362.0,96.0,0.0,67.0,13.0,6126.0,240.0,49.0,24.0,39.0,106.0,32.0,78.0,0.0,319.0,830.0,247.0,35.0,0.0,7.0,6.0,1394.0,91.0,133.0,146.0,117.0,245.0,2288.0,74.0,1469.0,1390.0,30.0,0.0,38.0,0.0,0.0,4.0,0.0,76.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,619.0,1487.0,1693.0,37.0,7.0,981.0,952.0,2.0,0.0,57.0,39.0,18.0,10.0,454.0,607.0,1089.0,20.0,85.0,243.0,26.0,82.0,216.0,565.0,183.0,2065.0,32.0,4.0,0.0,1005.0,679.0,468.0,44.0,156.0,230.0,0.0,422.0,0.0,114.0,180.0,6.0,71.0,387.0,32.0,0.0,465.0,1026.0,61.0,39.0,27.0,18.0,0.0,60.0,64.0,69.0,357.0,689.0,394.0,91.0,109.0,26.0,26.0,589.0,0.0,27.0,849.0,55.0,0.0,25.0,0.0,0.0,313.0,0.0,77.0,553.0,0.0,21.0,0.0,39.0,136.0,17.0,15.0,161.0,340.0,678.0,488.0,28.0,0.0,0.0,32.0,26.0,0.0,13.0,1721.0,6.0,509.0,0.0,0.0,25.0,0.0,175.0,434.0,327.0,630.0,115.0,0.0,16.0,909.0,59.0,0.0,35.0,118.0,44.0,0.0,48.0,209.0,4.0,148.0,49.0,30.0,0.0,0.0,0.0,47.0,37.0,253.0,23.0,0.0,1536.0,240.0,52.0,39.0,0.0,345.0,0.0,61.0,126.0,23.0,0.0,75.0,0.0,14.0,0.0,2614.0,0.0,181.0,395.0,94.0,155.0,147.0,162.0,406.0,280.0,13.0,0.0,0.0,307.0,22.0,19.0,52.0,49.0,0.0,357.0,0.0,46.0,46.0,115.0,248.0,386.0,11.0,1065.0,11.0,172.0,179.0,6.0,29.0,290.0,1.0,0.0,126.0,175.0,1182.0,693.4229880227,0.0,0.0,2015-12-06,,2015-49,693.5869575094239,693.4229880227, +85,85,70.0,3.0,113.0,10.0,45.0,160.0,396.0,101.0,0.0,234.0,2366.0,0.0,19.0,344.0,369.0,34.0,56.0,130.0,1761.0,21.0,30.0,378.0,0.0,124.0,314.0,62.0,987.0,343.0,5.0,37.0,12.0,73.0,986.0,531.0,494.0,1325.0,0.0,21.0,0.0,31.0,198.0,34.0,61.0,858.0,641.0,15.0,4.0,451.0,177.0,449.0,0.0,108.0,23.0,194.0,78.0,37.0,51.0,799.0,23.0,0.0,16.0,1577.0,0.0,1682.0,140.0,0.0,0.0,24.0,1228.0,0.0,91.0,2551.0,88.0,1.0,66.0,7.0,2827.0,251.0,53.0,19.0,58.0,133.0,30.0,86.0,0.0,487.0,821.0,266.0,41.0,0.0,5.0,6.0,1530.0,93.0,170.0,138.0,115.0,192.0,2305.0,88.0,1433.0,1361.0,44.0,0.0,21.0,0.0,0.0,2.0,0.0,71.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,644.0,1476.0,1793.0,32.0,10.0,998.0,925.0,2.0,0.0,54.0,58.0,15.0,10.0,399.0,610.0,1036.0,18.0,105.0,202.0,27.0,87.0,202.0,618.0,142.0,2047.0,36.0,6.0,0.0,915.0,650.0,571.0,32.0,146.0,195.0,0.0,467.0,0.0,346.0,203.0,4.0,65.0,429.0,32.0,0.0,343.0,974.0,79.0,44.0,25.0,16.0,0.0,84.0,65.0,51.0,412.0,724.0,401.0,67.0,77.0,55.0,16.0,552.0,0.0,28.0,868.0,56.0,0.0,64.0,0.0,0.0,346.0,0.0,85.0,508.0,0.0,29.0,0.0,57.0,154.0,15.0,5.0,164.0,347.0,677.0,522.0,29.0,0.0,0.0,38.0,17.0,0.0,19.0,1754.0,8.0,611.0,0.0,0.0,27.0,0.0,179.0,1171.0,386.0,694.0,122.0,0.0,13.0,866.0,71.0,0.0,55.0,105.0,31.0,0.0,29.0,247.0,5.0,178.0,56.0,36.0,0.0,0.0,0.0,38.0,24.0,216.0,7.0,0.0,1527.0,246.0,45.0,27.0,0.0,329.0,0.0,60.0,111.0,19.0,0.0,75.0,0.0,17.0,0.0,2670.0,0.0,144.0,507.0,116.0,154.0,158.0,164.0,359.0,352.0,4.0,0.0,0.0,333.0,25.0,9.0,62.0,46.0,0.0,349.0,0.0,55.0,39.0,77.0,263.0,408.0,16.0,1213.0,8.0,311.0,159.0,8.0,19.0,336.0,0.0,0.0,150.0,170.0,1174.0,798.2478891098,0.0,0.0,2015-12-13,,2015-50,798.2850356250783,811.33121645882, +86,86,91.0,3.0,83.0,10.0,51.0,164.0,374.0,89.0,0.0,225.0,2410.0,0.0,33.0,331.0,377.0,27.0,52.0,153.0,5127.0,43.0,37.0,373.0,0.0,64.0,335.0,67.0,1059.0,381.0,8.0,39.0,14.0,79.0,1031.0,405.0,487.0,1336.0,0.0,14.0,0.0,40.0,211.0,40.0,44.0,838.0,670.0,30.0,5.0,462.0,167.0,444.0,0.0,118.0,19.0,175.0,68.0,28.0,40.0,799.0,21.0,0.0,25.0,1509.0,0.0,1627.0,153.0,0.0,0.0,40.0,1197.0,0.0,146.0,2823.0,83.0,0.0,78.0,16.0,2285.0,287.0,57.0,14.0,57.0,103.0,26.0,112.0,0.0,297.0,680.0,235.0,23.0,0.0,6.0,8.0,1484.0,103.0,112.0,156.0,81.0,236.0,2160.0,74.0,1514.0,1409.0,39.0,0.0,34.0,0.0,0.0,4.0,0.0,81.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,591.0,1478.0,1675.0,40.0,8.0,1070.0,921.0,4.0,0.0,69.0,56.0,21.0,13.0,448.0,571.0,1012.0,28.0,97.0,206.0,22.0,85.0,179.0,604.0,167.0,2038.0,44.0,4.0,0.0,969.0,705.0,494.0,35.0,147.0,194.0,0.0,388.0,0.0,101.0,149.0,7.0,76.0,439.0,33.0,0.0,278.0,997.0,74.0,40.0,28.0,24.0,0.0,66.0,65.0,57.0,390.0,687.0,376.0,105.0,96.0,30.0,15.0,547.0,0.0,28.0,823.0,60.0,0.0,70.0,0.0,0.0,344.0,0.0,69.0,477.0,0.0,27.0,0.0,60.0,154.0,8.0,8.0,169.0,409.0,665.0,494.0,38.0,0.0,0.0,31.0,21.0,0.0,26.0,1798.0,6.0,622.0,0.0,0.0,22.0,0.0,187.0,406.0,294.0,630.0,129.0,0.0,7.0,823.0,58.0,0.0,43.0,89.0,34.0,0.0,45.0,207.0,2.0,162.0,82.0,27.0,0.0,0.0,0.0,44.0,22.0,297.0,9.0,0.0,1377.0,219.0,55.0,23.0,0.0,343.0,0.0,45.0,85.0,23.0,0.0,83.0,0.0,19.0,0.0,2615.0,0.0,180.0,417.0,755.0,146.0,145.0,166.0,330.0,331.0,24.0,0.0,0.0,324.0,12.0,11.0,64.0,65.0,0.0,371.0,0.0,54.0,36.0,102.0,273.0,351.0,14.0,1126.0,7.0,187.0,200.0,12.0,16.0,342.0,0.0,0.0,117.0,144.0,1141.0,766.548514452,0.0,0.0,2015-12-20,,2015-51,766.4506582534824,766.548514452, +87,87,78.0,6.0,108.0,14.0,68.0,142.0,359.0,80.0,0.0,225.0,2563.0,0.0,29.0,287.0,358.0,32.0,42.0,140.0,1658.0,39.0,33.0,364.0,0.0,40.0,311.0,56.0,926.0,379.0,3.0,23.0,16.0,77.0,815.0,375.0,468.0,1298.0,0.0,17.0,0.0,42.0,209.0,27.0,59.0,759.0,846.0,12.0,5.0,434.0,158.0,401.0,0.0,120.0,17.0,140.0,80.0,21.0,40.0,645.0,12.0,0.0,14.0,1326.0,0.0,1553.0,245.0,0.0,0.0,12.0,1182.0,0.0,187.0,2641.0,98.0,0.0,51.0,12.0,2182.0,208.0,45.0,18.0,69.0,97.0,35.0,84.0,0.0,230.0,756.0,238.0,61.0,0.0,3.0,9.0,1407.0,83.0,145.0,124.0,93.0,230.0,1996.0,57.0,1330.0,1353.0,42.0,0.0,41.0,0.0,0.0,2.0,0.0,76.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,514.0,1300.0,1399.0,28.0,12.0,976.0,884.0,6.0,0.0,60.0,36.0,23.0,14.0,366.0,619.0,925.0,24.0,109.0,224.0,16.0,77.0,171.0,536.0,123.0,1915.0,33.0,1.0,0.0,985.0,630.0,506.0,44.0,127.0,193.0,0.0,362.0,0.0,78.0,198.0,5.0,70.0,347.0,42.0,0.0,292.0,978.0,52.0,29.0,25.0,20.0,0.0,78.0,54.0,52.0,362.0,709.0,338.0,66.0,96.0,37.0,12.0,606.0,0.0,32.0,775.0,47.0,0.0,82.0,0.0,0.0,317.0,0.0,61.0,420.0,0.0,20.0,0.0,52.0,174.0,15.0,5.0,129.0,334.0,617.0,455.0,27.0,0.0,0.0,34.0,28.0,0.0,27.0,1690.0,9.0,565.0,0.0,0.0,21.0,0.0,178.0,373.0,352.0,639.0,96.0,0.0,16.0,842.0,60.0,0.0,34.0,71.0,43.0,0.0,40.0,224.0,4.0,147.0,70.0,28.0,0.0,0.0,0.0,50.0,15.0,293.0,11.0,0.0,1216.0,201.0,30.0,26.0,0.0,403.0,0.0,57.0,92.0,24.0,0.0,80.0,0.0,10.0,0.0,2440.0,0.0,151.0,433.0,124.0,109.0,123.0,141.0,317.0,272.0,21.0,0.0,0.0,307.0,34.0,21.0,63.0,44.0,0.0,366.0,0.0,47.0,45.0,82.0,237.0,341.0,15.0,1061.0,16.0,158.0,205.0,6.0,10.0,321.0,0.0,0.0,103.0,158.0,1033.0,710.8291463103999,0.0,0.0,2015-12-27,,2015-52,710.8712162391623,717.2763452649001, +88,88,71.0,4.0,39.0,8.0,34.0,86.0,214.0,51.0,0.0,113.0,2025.0,0.0,31.0,185.0,328.0,47.0,37.0,92.0,1049.0,13.0,27.0,256.0,0.0,41.0,237.0,47.0,633.0,194.0,4.0,24.0,10.0,42.0,343.0,166.0,391.0,864.0,0.0,24.0,0.0,18.0,168.0,24.0,30.0,432.0,494.0,13.0,7.0,229.0,122.0,288.0,0.0,101.0,14.0,107.0,56.0,19.0,25.0,472.0,11.0,0.0,9.0,841.0,0.0,1149.0,116.0,0.0,0.0,18.0,793.0,0.0,104.0,1823.0,84.0,0.0,64.0,6.0,1767.0,156.0,24.0,20.0,70.0,56.0,24.0,63.0,0.0,110.0,385.0,169.0,41.0,0.0,7.0,8.0,1072.0,60.0,61.0,99.0,75.0,127.0,1553.0,23.0,1051.0,758.0,29.0,0.0,20.0,0.0,0.0,7.0,0.0,50.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,325.0,780.0,866.0,15.0,6.0,511.0,605.0,5.0,0.0,38.0,40.0,18.0,7.0,298.0,501.0,672.0,16.0,70.0,141.0,14.0,89.0,109.0,425.0,69.0,1417.0,32.0,2.0,0.0,676.0,553.0,361.0,27.0,82.0,146.0,0.0,162.0,0.0,78.0,76.0,7.0,58.0,252.0,28.0,0.0,174.0,566.0,50.0,22.0,38.0,13.0,0.0,43.0,47.0,48.0,267.0,434.0,164.0,56.0,68.0,19.0,18.0,333.0,0.0,35.0,552.0,47.0,0.0,56.0,0.0,0.0,213.0,0.0,36.0,316.0,0.0,17.0,0.0,28.0,99.0,14.0,22.0,122.0,215.0,372.0,338.0,21.0,0.0,0.0,31.0,18.0,0.0,11.0,1095.0,7.0,413.0,0.0,0.0,22.0,0.0,198.0,219.0,215.0,380.0,67.0,0.0,19.0,499.0,32.0,0.0,14.0,63.0,23.0,0.0,45.0,154.0,3.0,106.0,30.0,21.0,0.0,0.0,0.0,32.0,15.0,261.0,9.0,0.0,756.0,147.0,30.0,11.0,0.0,268.0,0.0,361.0,57.0,16.0,0.0,56.0,0.0,9.0,0.0,1578.0,0.0,104.0,255.0,72.0,95.0,75.0,121.0,202.0,165.0,12.0,0.0,0.0,225.0,28.0,25.0,31.0,18.0,0.0,238.0,0.0,37.0,22.0,66.0,225.0,312.0,10.0,1013.0,8.0,110.0,152.0,7.0,19.0,242.0,0.0,0.0,73.0,113.0,727.0,0.0,0.0,0.0,2016-01-03,,2015-53,0.0057850590260386525,0.0, +89,89,57.0,2.0,106.0,8.0,67.0,196.0,279.6666666666667,85.0,0.0,282.0,3314.0,0.0,27.0,379.0,351.0,27.0,59.0,130.0,1955.0,41.0,42.0,338.0,0.0,92.0,343.0,81.0,1113.0,368.0,9.0,18.0,19.0,74.0,814.0,348.0,434.0,1510.0,0.0,25.0,0.0,35.0,205.0,45.0,67.0,822.0,873.0,23.0,7.0,496.0,172.0,441.0,0.0,113.0,17.0,201.0,119.0,34.0,45.0,730.0,14.0,0.0,23.0,1508.0,0.0,2256.0,208.0,0.0,0.0,22.0,1467.0,0.0,155.0,2462.5,115.0,0.0,80.0,16.0,2394.0,287.0,72.0,32.0,76.0,120.0,35.0,112.0,0.0,243.0,845.0,269.0,36.0,0.0,5.0,9.0,1545.0,104.0,125.0,116.0,108.0,219.0,2447.0,66.0,1481.0,1401.0,71.0,0.0,38.0,0.0,0.0,4.0,0.0,68.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,690.0,1500.0,1677.0,30.0,18.0,960.0,1012.0,3.0,0.0,74.0,58.0,19.0,8.0,427.0,814.0,1146.0,20.0,113.0,210.0,17.0,66.0,211.0,660.0,141.0,2076.0,25.0,10.0,0.0,1063.0,805.0,633.0,56.0,157.0,244.0,0.0,333.0,0.0,92.0,199.0,7.0,65.0,510.0,40.0,0.0,259.0,960.0,86.0,46.0,41.0,20.0,0.0,67.0,72.0,64.0,410.0,721.0,316.0,94.0,106.0,39.0,17.0,583.0,1.0,56.0,962.0,46.0,0.0,73.0,20.0,0.0,360.0,0.0,69.0,489.0,0.0,31.0,0.0,68.0,153.0,17.0,14.0,171.0,340.0,638.0,361.83333333333326,38.0,0.0,0.0,35.0,23.0,0.0,19.0,1943.0,6.0,714.0,0.0,0.0,25.0,0.0,207.0,400.0,380.0,675.0,118.0,0.0,13.0,843.0,42.0,0.0,29.0,108.0,49.0,0.0,54.0,180.8,5.0,146.0,89.0,28.0,0.0,0.0,0.0,57.0,20.0,357.0,8.0,0.0,1541.0,236.0,50.0,16.0,0.0,409.0,0.0,237.0,85.0,24.0,0.0,82.0,0.0,17.0,0.0,2723.0,0.0,197.0,422.0,130.0,180.0,136.0,211.0,459.0,240.0,10.0,0.0,0.0,386.0,21.0,19.0,64.0,70.0,0.0,393.0,0.0,61.0,65.0,104.0,290.0,403.0,9.0,1217.0,13.0,135.0,186.0,11.0,24.0,300.0,1.0,0.0,107.0,186.0,1215.0,643.2560451449,0.0,0.0,2016-01-10,,2016-1,643.3775084147596,455.05145402599993, +90,90,100.0,3.0,127.0,10.0,84.0,192.0,345.33333333333337,126.0,0.0,254.0,3201.0,0.0,27.0,373.0,368.0,47.0,59.0,143.0,2196.0,31.0,50.0,328.0,0.0,75.0,422.0,114.0,1288.0,426.0,8.0,27.0,16.0,70.0,1202.0,472.0,528.0,1684.0,0.0,26.0,0.0,52.0,248.0,40.0,76.0,926.0,854.0,25.0,11.0,583.0,189.0,520.0,0.0,146.0,24.0,219.0,98.0,31.0,123.0,2621.0,54.0,0.0,27.0,1623.0,0.0,1910.0,334.0,0.0,0.0,22.0,1444.0,0.0,111.0,3102.0,113.0,0.0,85.0,19.0,2530.0,298.0,70.0,208.0,64.0,114.0,28.0,118.0,0.0,264.0,962.0,352.0,64.0,0.0,5.0,6.0,1678.0,158.0,179.0,121.0,102.0,253.0,2259.0,56.0,1476.0,1551.0,34.0,0.0,32.0,0.0,0.0,2.0,0.0,85.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,724.0,1492.0,1885.0,30.0,5.0,1184.0,1023.0,7.0,0.0,80.0,53.0,26.0,15.0,446.0,742.0,1224.0,26.0,101.0,260.0,23.0,80.0,229.0,697.0,212.0,2195.0,43.0,3.0,0.0,1101.0,991.0,563.0,57.0,184.0,238.0,0.0,482.0,0.0,117.0,178.0,4.0,78.0,717.0,49.0,0.0,262.0,1169.0,97.0,59.0,33.0,36.0,0.0,100.0,55.0,70.0,464.0,863.0,389.0,104.0,83.0,52.0,15.0,736.0,0.0,36.0,931.0,48.0,0.0,102.0,26.0,0.0,411.0,0.0,70.0,550.0,0.0,22.0,0.0,74.0,186.0,20.0,8.0,208.0,390.0,820.0,385.66666666666674,26.0,0.0,0.0,39.0,40.0,0.0,18.0,2134.0,17.0,721.0,0.0,0.0,32.0,0.0,204.0,501.0,413.0,690.0,126.0,0.0,20.0,1027.0,62.0,0.0,29.0,106.0,40.0,0.0,61.0,207.6,2.0,170.0,70.0,31.0,0.0,0.0,0.0,77.0,18.0,322.0,7.0,0.0,1602.0,294.0,60.0,20.0,0.0,490.0,0.0,129.0,92.0,39.0,0.0,85.0,0.0,22.0,0.0,3000.0,0.0,212.0,520.0,151.0,197.0,181.0,227.0,393.0,293.0,8.0,0.0,0.0,427.0,17.0,17.0,75.0,51.0,0.0,430.0,0.0,61.0,54.0,88.0,339.0,433.0,20.0,1478.0,3.0,184.0,207.0,3.0,24.0,300.0,0.0,0.0,158.0,270.0,1337.0,782.6015322514,0.0,0.0,2016-01-17,,2016-2,782.6884937119098,824.83321348712, +91,91,99.0,2.0,123.0,18.0,60.0,250.0,411.0,112.0,0.0,339.0,3409.0,0.0,32.0,390.0,395.0,41.0,54.0,159.0,2023.0,39.0,49.0,477.0,0.0,72.0,383.0,145.0,1367.0,406.0,6.0,62.0,20.0,88.0,1116.0,526.0,636.0,1521.0,0.0,44.0,0.0,38.0,375.0,54.0,69.0,946.0,892.0,70.0,4.0,621.0,191.0,452.0,0.0,126.0,23.0,205.0,98.0,33.0,60.0,811.0,18.0,0.0,26.0,1563.0,0.0,2037.0,159.0,0.0,0.0,21.0,1434.0,0.0,115.0,3453.0,99.0,0.0,60.0,24.0,2346.0,305.0,64.0,42.0,70.0,130.0,33.0,91.0,0.0,255.0,1024.0,350.0,27.0,0.0,16.0,14.0,1675.0,120.0,132.0,158.0,116.0,286.0,2248.0,99.0,1526.0,1557.0,46.0,0.0,48.0,0.0,0.0,0.0,0.0,77.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,761.0,1501.0,1833.0,43.0,14.0,1263.0,1098.0,4.0,0.0,108.0,48.0,22.0,19.0,462.0,785.0,1153.0,21.0,126.0,233.0,36.0,92.0,251.0,677.0,232.0,2650.0,51.0,5.0,0.0,1083.0,871.0,464.0,47.0,172.0,285.0,0.0,486.0,0.0,112.0,185.0,12.0,49.0,543.0,41.0,0.0,288.0,1254.0,93.0,44.0,53.0,35.0,0.0,86.0,68.0,66.0,452.0,793.0,474.0,110.0,122.0,56.0,31.0,689.0,1.0,50.0,1057.0,57.0,0.0,96.0,15.0,0.0,399.0,0.0,76.0,574.0,0.0,25.0,0.0,82.0,178.0,21.0,17.0,195.0,365.0,812.0,409.5,38.0,0.0,0.0,58.0,17.0,0.0,27.0,1975.0,15.0,684.0,0.0,0.0,30.0,0.0,237.0,492.0,377.0,734.0,146.0,0.0,23.0,1012.0,85.0,0.0,34.0,91.0,31.0,0.0,74.0,234.4,5.0,222.0,89.0,44.0,0.0,0.0,0.0,49.0,17.0,339.0,13.0,0.0,1657.0,275.0,44.0,29.0,0.0,389.0,0.0,162.0,80.0,24.0,0.0,86.0,0.0,27.0,0.0,3002.0,0.0,210.0,648.0,139.0,187.0,185.0,270.0,378.0,310.0,16.0,0.0,0.0,400.0,41.0,14.0,90.0,66.0,0.0,390.0,0.0,66.0,43.0,70.0,332.0,407.0,14.0,1318.0,10.0,188.0,226.0,11.0,18.0,319.0,0.0,0.0,155.0,204.0,1441.0,1038.4054448226,0.0,0.0,2016-01-24,,2016-3,1038.3798981148268,1046.1873705802798, +92,92,100.0,3.0,120.0,9.0,61.0,287.0,397.0,135.0,0.0,299.0,3369.0,0.0,21.0,359.0,398.0,46.0,67.0,159.0,2086.0,34.0,46.0,415.0,0.0,126.0,376.0,86.0,1263.0,401.0,5.0,54.0,21.0,82.0,1286.0,553.0,534.0,1668.0,0.0,57.0,0.0,35.0,204.0,48.0,69.0,948.0,897.0,12.0,6.0,576.0,217.0,540.0,0.0,107.0,31.0,240.0,127.0,45.0,115.0,757.0,17.0,0.0,35.0,1493.0,0.0,2139.0,146.0,0.0,0.0,25.0,1401.0,0.0,297.0,3407.0,128.0,0.0,66.0,15.0,2290.0,315.0,79.0,34.0,85.0,141.0,28.0,114.0,0.0,245.0,1067.0,329.0,37.0,0.0,7.0,12.0,1680.0,118.0,158.0,161.0,107.0,329.0,2185.0,84.0,1558.0,1579.0,52.0,0.0,33.0,0.0,0.0,4.0,0.0,92.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,716.0,1488.0,1703.0,45.0,11.0,1260.0,1049.0,2.0,0.0,109.0,60.0,25.0,14.0,451.0,741.0,1257.0,38.0,114.0,250.0,24.0,81.0,228.0,744.0,284.0,4461.0,56.0,6.0,0.0,1272.0,724.0,487.0,54.0,167.0,278.0,0.0,535.0,0.0,99.0,195.0,9.0,91.0,559.0,58.0,0.0,279.0,1199.0,88.0,43.0,76.0,25.0,0.0,67.0,77.0,92.0,404.0,850.0,396.0,125.0,127.0,57.0,27.0,766.0,0.0,46.0,1104.0,70.0,0.0,106.0,37.0,0.0,436.0,0.0,79.0,546.0,0.0,30.0,0.0,80.0,174.0,23.0,11.0,169.0,413.0,718.0,433.33333333333326,43.0,0.0,0.0,52.0,34.0,0.0,28.0,1946.0,11.0,732.0,0.0,0.0,28.0,0.0,206.0,538.0,368.0,658.0,113.0,0.0,25.0,1035.0,67.0,0.0,45.0,106.0,31.0,0.0,55.0,261.2,3.0,190.0,61.0,43.0,0.0,0.0,0.0,48.0,15.0,347.0,14.0,0.0,1704.0,297.0,60.0,14.0,0.0,411.0,0.0,171.0,98.0,21.0,0.0,87.0,0.0,28.0,0.0,2902.0,0.0,490.0,582.0,149.0,178.0,246.0,260.0,392.0,280.0,12.0,0.0,0.0,391.0,39.0,30.0,77.0,40.0,0.0,378.0,0.0,47.0,53.0,77.0,284.0,426.0,19.0,1464.0,6.0,161.0,229.0,9.0,22.0,324.0,0.0,0.0,122.0,208.0,1266.0,1193.3628108211,0.0,0.0,2016-01-31,,2016-4,1193.4075923671746,1094.7052738227, +93,93,90.0,3.0,107.0,12.0,58.0,240.0,417.0,132.0,0.0,287.0,3248.0,0.0,32.0,449.0,429.0,32.0,41.0,141.0,1783.0,24.0,38.0,411.0,0.0,88.0,386.0,98.0,1241.0,405.0,6.0,41.0,22.0,96.0,1156.0,513.0,480.0,1503.0,0.0,62.0,0.0,43.0,242.0,49.0,70.0,897.0,961.0,22.0,12.0,648.0,139.0,504.0,0.0,180.0,28.0,217.0,100.0,22.0,77.0,769.0,25.0,0.0,42.0,1635.0,0.0,2292.0,134.0,0.0,0.0,25.0,1449.0,0.0,228.0,3245.0,143.0,0.0,84.0,16.0,2190.0,290.0,74.0,29.0,76.0,98.0,38.0,94.0,0.0,275.0,1031.0,261.0,35.0,0.0,7.0,6.0,1516.0,110.0,136.0,152.0,105.0,244.0,2089.0,126.0,1493.0,1551.0,40.0,0.0,34.0,0.0,0.0,3.0,0.0,92.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,684.0,1601.0,1606.0,59.0,9.0,1156.0,1004.0,5.0,0.0,107.0,52.0,19.0,29.0,429.0,731.0,1193.0,42.0,137.0,220.0,34.0,84.0,192.0,848.0,324.0,4973.0,29.0,2.0,0.0,1274.0,827.0,466.0,47.0,161.0,330.0,0.0,476.0,0.0,95.0,192.0,8.0,79.0,646.0,49.0,0.0,305.0,1065.0,82.0,37.0,72.0,20.0,0.0,56.0,76.0,72.0,416.0,793.0,418.0,95.0,130.0,38.0,34.0,679.0,0.0,41.0,1050.0,79.0,0.0,116.0,47.0,0.0,433.0,0.0,72.0,581.0,0.0,35.0,0.0,72.0,162.0,17.0,10.0,216.0,399.0,779.0,457.1666666666666,33.0,49.0,0.0,39.0,18.0,0.0,26.0,1967.0,21.0,714.0,0.0,0.0,24.0,0.0,226.0,434.0,366.0,739.0,130.0,0.0,10.0,1046.0,120.0,0.0,37.0,108.0,46.0,0.0,72.0,288.0,3.0,170.0,72.0,36.0,0.0,0.0,0.0,62.0,25.0,373.0,12.0,0.0,1476.0,327.0,57.0,19.0,0.0,389.0,0.0,154.0,99.0,25.0,0.0,72.0,0.0,16.0,0.0,2955.0,0.0,289.0,543.0,119.0,163.0,176.0,260.0,346.0,290.0,5.0,0.0,0.0,349.0,20.0,24.0,73.0,53.0,0.0,414.0,0.0,75.0,51.0,55.0,264.0,416.0,29.0,1441.0,14.0,152.0,235.0,9.0,23.0,311.0,0.0,0.0,155.0,206.0,1366.0,1542.5473055218,0.0,0.0,2016-02-07,,2016-5,1542.2904665953624,1519.78461365988, +94,94,81.0,3.0,132.0,13.0,80.0,192.0,385.0,125.0,0.0,280.0,3071.0,0.0,19.0,415.0,408.0,31.0,77.0,175.0,1782.0,34.0,54.0,457.0,0.0,102.0,372.0,95.0,1224.0,406.0,2.0,31.0,19.0,91.0,1323.0,482.0,435.0,1531.0,0.0,54.0,0.0,57.0,235.0,44.0,53.0,877.0,925.0,20.0,4.0,563.0,159.0,596.0,0.0,103.0,22.0,200.0,63.0,26.0,66.0,662.0,23.0,0.0,23.0,1597.0,0.0,3441.0,140.0,0.0,0.0,28.0,1252.0,0.0,141.0,3403.0,121.0,0.0,69.0,18.0,2089.0,278.0,72.0,18.0,82.0,103.0,41.0,102.0,0.0,206.0,935.0,348.0,31.0,0.0,8.0,13.0,1551.0,93.0,149.0,148.0,112.0,229.0,2101.0,95.0,1479.0,1427.0,50.0,0.0,45.0,0.0,0.0,1.0,0.0,153.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,714.0,1496.0,1570.0,41.0,13.0,1212.0,1051.0,5.0,0.0,95.0,52.0,20.0,12.0,451.0,752.0,1196.0,22.0,131.0,261.0,24.0,81.0,221.0,699.0,232.0,2666.0,25.0,0.0,0.0,1142.0,792.0,500.0,48.0,170.0,218.0,0.0,517.0,0.0,136.0,208.0,11.0,71.0,439.0,42.0,0.0,320.0,1027.0,88.0,47.0,49.0,35.0,0.0,61.0,74.0,57.0,454.0,804.0,400.0,88.0,99.0,31.0,18.0,751.0,0.0,48.0,936.0,54.0,0.0,106.0,15.0,0.0,385.0,0.0,78.0,593.0,0.0,31.0,0.0,68.0,145.0,14.0,23.0,168.0,374.0,755.0,481.0,40.0,7.0,0.0,49.0,33.0,0.0,30.0,1970.0,13.0,740.0,0.0,0.0,30.0,0.0,226.0,369.0,303.0,668.0,127.0,0.0,23.0,901.0,197.0,0.0,48.0,108.0,37.0,0.0,57.0,290.0,9.0,149.0,59.0,25.0,0.0,0.0,0.0,56.0,32.0,382.0,14.0,0.0,1542.0,296.0,70.0,22.0,0.0,385.0,0.0,166.0,82.0,22.0,0.0,100.0,0.0,17.0,0.0,2742.0,0.0,262.0,466.0,123.0,158.0,182.0,217.0,396.0,254.0,8.0,0.0,0.0,853.0,21.0,12.0,67.0,60.0,0.0,416.0,0.0,52.0,45.0,67.0,279.0,452.0,25.0,1417.0,1.0,181.0,214.0,4.0,20.0,331.0,0.0,0.0,136.0,231.0,1373.0,1694.8005055064002,0.0,0.0,2016-02-14,,2016-6,1694.6639780841454,1576.6026292247002, +95,95,70.0,1.0,114.0,6.0,71.0,175.0,381.0,99.0,0.0,280.0,2991.0,0.0,24.0,421.0,358.0,50.0,61.0,128.0,1529.0,22.0,38.0,345.0,0.0,85.0,373.0,71.0,1176.0,363.0,8.0,29.0,25.0,84.0,1020.0,524.0,441.0,1544.0,0.0,50.0,0.0,41.0,279.0,48.0,59.0,838.0,886.0,13.0,6.0,539.0,192.0,557.0,0.0,98.0,25.0,229.0,75.0,22.0,87.0,673.0,11.0,0.0,18.0,1429.0,0.0,1974.0,145.0,0.0,0.0,23.0,1322.0,0.0,130.0,3554.0,148.0,0.0,67.0,10.0,2139.0,234.0,55.0,22.0,100.0,132.0,28.0,64.0,0.0,199.0,886.0,329.0,27.0,0.0,3.0,16.0,1529.0,115.0,156.0,138.0,106.0,246.0,2147.0,96.0,1493.0,1444.0,39.0,0.0,50.0,0.0,0.0,5.0,0.0,74.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,652.0,1561.0,1834.0,52.0,21.0,1191.0,1058.0,4.0,0.0,68.0,47.0,14.0,15.0,401.0,780.0,1171.0,36.0,112.0,231.0,33.0,73.0,219.0,651.0,193.0,2368.0,35.0,4.0,0.0,1185.0,794.0,502.0,40.0,177.0,318.0,0.0,450.0,0.0,107.0,201.0,8.0,78.0,558.0,70.0,0.0,266.0,1135.0,67.0,32.0,38.0,32.0,0.0,94.0,63.0,76.0,418.0,785.0,452.0,76.0,109.0,33.0,18.0,730.0,0.0,48.0,959.0,58.0,0.0,99.0,34.0,0.0,361.0,0.0,74.0,557.0,0.0,21.0,0.0,76.0,170.0,23.0,10.0,198.0,380.0,715.0,532.0,36.0,4.0,0.0,20.0,19.0,0.0,17.0,1886.0,9.0,681.0,0.0,0.0,27.0,0.0,214.0,387.0,365.0,711.0,115.0,0.0,27.0,955.0,110.0,0.0,36.0,120.0,33.0,0.0,27.0,312.0,3.0,153.0,48.0,33.0,0.0,0.0,0.0,54.0,35.0,353.0,12.0,0.0,1531.0,321.0,58.0,21.0,0.0,409.0,0.0,146.0,101.0,21.0,0.0,98.0,0.0,13.0,0.0,2682.0,0.0,225.0,467.0,175.0,159.0,157.0,181.0,401.0,254.0,10.0,0.0,0.0,396.0,32.0,18.0,79.0,39.0,0.0,423.0,0.0,52.0,41.0,86.0,311.0,409.0,20.0,1727.0,20.0,179.0,232.0,4.0,25.0,324.0,1.0,0.0,166.0,219.0,1450.0,1347.1917692697,0.0,0.0,2016-02-21,,2016-7,1347.3519764666041,1313.10372697268, +96,96,84.0,3.0,108.0,9.0,60.0,173.0,395.0,124.0,0.0,276.0,2998.0,0.0,30.0,380.0,349.0,34.0,60.0,130.0,1378.0,40.0,35.0,419.0,0.0,88.0,367.0,88.0,1185.0,364.0,3.0,35.0,24.0,69.0,1113.0,475.0,460.0,1486.0,0.0,36.0,0.0,53.0,272.0,37.0,66.0,926.0,934.0,18.0,7.0,512.0,138.0,570.0,0.0,111.0,22.0,214.0,57.0,22.0,51.0,677.0,13.0,0.0,16.0,1325.0,0.0,2024.0,171.0,0.0,0.0,23.0,1340.0,0.0,132.0,3331.0,128.0,0.0,77.0,15.0,2118.0,275.0,56.0,32.0,87.0,118.0,17.0,66.0,0.0,306.0,958.0,255.0,32.0,2.0,4.0,12.0,1623.0,114.0,159.0,164.0,119.0,254.0,2033.0,51.0,1395.0,1297.0,42.0,0.0,27.0,0.0,0.0,5.0,0.0,59.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,668.0,1467.0,1975.0,33.0,14.0,1176.0,1051.0,4.0,0.0,53.0,58.0,19.0,8.0,376.0,651.0,1134.0,26.0,97.0,213.0,22.0,93.0,247.0,699.0,179.0,2271.0,44.0,2.0,0.0,1104.0,832.0,491.0,60.0,207.0,251.0,0.0,389.0,0.0,154.0,194.0,8.0,114.0,516.0,62.0,0.0,269.0,1022.0,74.0,36.0,36.0,31.0,0.0,87.0,55.0,93.0,372.0,708.0,422.0,82.0,110.0,53.0,30.0,658.0,0.0,36.0,982.0,76.0,0.0,126.0,34.0,0.0,381.0,0.0,81.0,548.0,0.0,22.0,0.0,78.0,157.0,11.0,11.0,183.0,352.0,682.0,504.0,42.0,9.0,0.0,31.0,25.0,0.0,30.0,1856.0,11.0,635.0,0.0,0.0,31.0,0.0,236.0,417.0,346.0,699.0,131.0,0.0,12.0,912.0,81.0,0.0,37.0,107.0,33.0,0.0,32.0,259.0,5.0,157.0,71.0,38.0,0.0,0.0,0.0,42.0,32.0,366.0,4.0,0.0,1658.0,261.0,67.0,18.0,0.0,369.0,0.0,127.0,94.0,23.0,0.0,92.0,0.0,15.0,0.0,2633.0,0.0,204.0,463.0,147.0,305.0,164.0,171.0,334.0,230.0,11.0,0.0,0.0,357.0,30.0,18.0,65.0,50.0,0.0,407.0,0.0,70.0,47.0,92.0,357.0,406.0,29.0,1546.0,9.0,182.0,269.0,3.0,25.0,332.0,1.0,0.0,126.0,233.0,1330.0,1522.1309833767002,0.0,0.0,2016-02-28,,2016-8,1521.9345223292587,1522.1309833767002, +97,97,80.0,2.0,100.0,6.0,69.0,152.0,367.0,89.0,0.0,283.0,2791.0,0.0,29.0,423.0,435.0,39.0,59.0,124.0,1259.0,24.0,27.0,321.0,0.0,98.0,352.0,93.0,1199.0,333.0,3.0,30.0,15.0,79.0,1129.0,466.0,599.0,1494.0,0.0,30.0,0.0,47.0,216.0,40.0,54.0,995.0,898.0,17.0,2.0,536.0,170.0,515.0,0.0,235.0,23.0,193.0,130.0,13.0,55.0,589.0,14.0,0.0,25.0,1273.0,0.0,1893.0,154.0,0.0,0.0,27.0,1261.0,0.0,137.0,3661.0,110.0,92.0,59.0,16.0,2101.0,260.0,63.0,31.0,75.0,123.0,17.0,61.0,0.0,253.0,964.0,275.0,23.0,0.0,9.0,9.0,1350.0,136.0,131.0,140.0,89.0,243.0,2111.0,36.0,1408.0,1406.0,48.0,0.0,22.0,0.0,0.0,6.0,0.0,81.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,625.0,1470.0,1805.0,56.0,25.0,1133.0,1095.0,3.0,0.0,51.0,39.0,16.0,13.0,433.0,689.0,1148.0,16.0,113.0,241.0,30.0,72.0,209.0,618.0,101.0,2187.0,36.0,5.0,0.0,1199.0,756.0,478.0,42.0,170.0,256.0,0.0,384.0,0.0,122.0,176.0,6.0,78.0,442.0,59.0,0.0,277.0,1020.0,82.0,25.0,26.0,47.0,0.0,72.0,74.0,55.0,391.0,760.0,365.0,85.0,125.0,30.0,26.0,704.0,0.0,37.0,845.0,47.0,0.0,88.0,27.0,0.0,326.0,0.0,74.0,594.0,0.0,22.0,0.0,59.0,178.0,16.0,11.0,174.0,324.0,670.0,518.0,28.0,5.0,0.0,60.0,29.0,0.0,23.0,1903.0,7.0,611.0,0.0,0.0,25.0,0.0,222.0,358.0,319.0,665.0,118.0,0.0,44.0,816.0,86.0,0.0,33.0,93.0,33.0,0.0,32.0,306.0,1.0,169.0,71.0,17.0,0.0,0.0,0.0,45.0,30.0,346.0,11.0,0.0,1486.0,256.0,64.0,32.0,0.0,386.0,0.0,132.0,126.0,17.0,0.0,75.0,0.0,22.0,0.0,2644.0,0.0,208.0,429.0,112.0,167.0,153.0,159.0,264.0,285.0,10.0,0.0,0.0,343.0,25.0,21.0,57.0,44.0,0.0,360.0,0.0,52.0,51.0,94.0,262.0,379.0,24.0,1397.0,16.0,160.0,232.0,8.0,24.0,279.0,0.0,0.0,136.0,191.0,1309.0,1248.1296994261,0.0,0.0,2016-03-06,,2016-9,1247.8538922952907,1248.1296994261002, +98,98,64.0,2.0,111.0,18.0,68.0,144.0,396.0,87.0,0.0,279.0,2851.0,0.0,25.0,350.0,359.0,47.0,49.0,279.0,1541.0,32.0,36.0,294.0,0.0,75.0,317.0,67.0,1121.0,322.0,4.0,19.0,7.0,90.0,1123.0,468.0,449.0,1377.0,0.0,21.0,0.0,51.0,236.0,41.0,61.0,826.0,977.0,13.0,5.0,450.0,155.0,483.0,0.0,186.0,26.0,211.0,55.0,11.0,68.0,557.0,13.0,0.0,14.0,1288.0,0.0,2142.0,154.0,0.0,0.0,19.0,1280.0,0.0,96.0,3614.0,120.0,9.0,63.0,18.0,2027.0,238.0,52.0,32.0,85.0,110.0,23.0,63.0,0.0,235.0,838.0,237.0,26.0,0.0,11.0,7.0,1397.0,123.0,140.0,145.0,79.0,244.0,2146.0,58.0,1294.0,1267.0,52.0,0.0,27.0,0.0,0.0,2.0,0.0,69.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,637.0,1261.0,1720.0,37.0,14.0,1105.0,1060.0,3.0,0.0,48.0,46.0,16.0,6.0,387.0,629.0,1085.0,21.0,100.0,270.0,24.0,71.0,210.0,567.0,135.0,2153.0,30.0,3.0,0.0,1082.0,794.0,485.0,37.0,159.0,254.0,0.0,377.0,0.0,127.0,210.0,16.0,72.0,412.0,55.0,0.0,280.0,956.0,65.0,40.0,50.0,32.0,0.0,69.0,57.0,69.0,387.0,772.0,398.0,95.0,105.0,69.0,19.0,659.0,0.0,30.0,952.0,68.0,0.0,87.0,22.0,0.0,322.0,0.0,78.0,482.0,0.0,31.0,0.0,68.0,143.0,22.0,14.0,184.0,363.0,651.0,477.0,42.0,6.0,0.0,40.0,27.0,0.0,21.0,1827.0,8.0,669.0,0.0,0.0,29.0,0.0,198.0,329.0,341.0,597.0,124.0,0.0,17.0,861.0,74.0,0.0,30.0,101.0,30.0,0.0,46.0,276.0,3.0,129.0,47.0,33.0,0.0,0.0,0.0,59.0,16.0,355.0,19.0,0.0,1418.0,253.0,36.0,16.0,0.0,354.0,0.0,115.0,92.0,13.0,0.0,75.0,0.0,18.0,0.0,2687.0,0.0,187.0,445.0,113.0,152.0,165.0,183.0,311.0,275.0,11.0,0.0,0.0,351.0,19.0,20.0,56.0,41.0,0.0,364.0,0.0,54.0,54.0,82.0,200.0,383.0,28.0,1422.0,7.0,139.0,233.0,1.0,13.0,249.0,0.0,0.0,141.0,189.0,1223.0,1094.7177029867998,0.0,0.0,2016-03-13,,2016-10,1094.4708629051531,1072.33069105186, +99,99,73.0,2.0,121.0,8.0,66.0,179.0,312.0,94.0,0.0,274.0,2402.0,0.0,34.0,353.0,318.0,20.0,43.0,123.0,1249.0,46.0,24.0,348.0,0.0,87.0,348.0,73.0,1086.0,353.0,5.0,35.0,14.0,94.0,1176.0,564.0,510.0,1371.0,0.0,19.0,0.0,21.0,240.0,30.0,49.0,769.0,970.0,17.0,6.0,472.0,145.0,497.0,0.0,117.0,20.0,181.0,73.0,9.0,48.0,602.0,16.0,0.0,17.0,1399.0,0.0,2325.0,136.0,0.0,0.0,14.0,1234.0,0.0,114.0,3407.0,115.0,5.0,73.0,6.0,2070.0,256.0,38.0,16.0,88.0,106.0,23.0,80.0,0.0,206.0,715.0,236.0,29.0,112.0,7.0,8.0,1412.0,100.0,109.0,114.0,76.0,212.0,2031.0,46.0,1355.0,1320.0,46.0,0.0,29.0,0.0,0.0,0.0,0.0,62.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,655.0,1349.0,1724.0,37.0,12.0,1051.0,1030.0,3.0,0.0,63.0,47.0,17.0,12.0,398.0,683.0,970.0,22.0,98.0,213.0,29.0,88.0,196.0,509.0,125.0,2125.0,29.0,5.0,0.0,989.0,700.0,483.0,52.0,160.0,263.0,0.0,333.0,0.0,97.0,169.0,8.0,79.0,389.0,38.0,0.0,238.0,887.0,91.0,31.0,44.0,27.0,0.0,46.0,97.0,91.0,388.0,664.0,438.0,92.0,94.0,46.0,13.0,606.0,0.0,30.0,849.0,83.0,0.0,150.0,21.0,0.0,362.0,0.0,66.0,546.0,0.0,22.0,0.0,80.0,147.0,12.0,5.0,160.0,366.0,585.0,443.0,34.0,3.0,0.0,30.0,27.0,0.0,21.0,1699.0,16.0,662.0,0.0,0.0,18.0,0.0,186.0,322.0,314.0,658.0,91.0,0.0,13.0,930.0,67.0,0.0,36.0,80.0,34.0,0.0,49.0,271.0,1.0,141.0,55.0,18.0,0.0,0.0,0.0,47.0,17.0,305.0,11.0,0.0,1356.0,249.0,40.0,39.0,0.0,369.0,0.0,100.0,85.0,18.0,0.0,105.0,0.0,18.0,0.0,2539.0,0.0,202.0,414.0,114.0,156.0,134.0,155.0,290.0,206.0,15.0,0.0,0.0,363.0,24.0,9.0,48.0,46.0,0.0,353.0,0.0,59.0,35.0,80.0,235.0,325.0,28.0,1403.0,8.0,146.0,202.0,8.0,17.0,254.0,0.0,0.0,124.0,168.0,1250.0,1176.7515577846,0.0,0.0,2016-03-20,,2016-11,1176.7666141224236,1176.7515577846, +100,100,66.0,3.0,70.0,6.0,53.0,141.0,260.0,75.0,0.0,196.0,2129.0,0.0,26.0,272.0,329.0,26.0,42.0,124.0,1001.0,23.0,24.0,247.0,0.0,73.0,283.0,72.0,883.0,295.0,6.0,31.0,22.0,81.0,815.0,434.0,423.0,1178.0,0.0,25.0,0.0,21.0,182.0,26.0,29.0,693.0,859.0,22.0,7.0,348.0,114.0,448.0,0.0,87.0,17.0,151.0,44.0,14.0,40.0,422.0,12.0,0.0,13.0,1137.0,0.0,1508.0,114.0,0.0,0.0,15.0,1031.0,0.0,123.0,2900.0,104.0,2.0,37.0,16.0,1972.0,182.0,43.0,19.0,60.0,76.0,38.0,46.0,0.0,174.0,591.0,224.0,33.0,39.0,7.0,11.0,1134.0,78.0,106.0,120.0,87.0,180.0,1859.0,34.0,1155.0,1047.0,37.0,0.0,21.0,0.0,0.0,3.0,0.0,64.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,441.0,953.0,1124.0,35.0,12.0,805.0,889.0,4.0,0.0,52.0,31.0,13.0,10.0,324.0,550.0,825.0,17.0,89.0,166.0,21.0,77.0,160.0,417.0,92.0,1630.0,36.0,6.0,0.0,800.0,4135.0,366.0,44.0,165.0,228.0,0.0,260.0,0.0,85.0,113.0,11.0,77.0,355.0,33.0,0.0,228.0,788.0,63.0,27.0,35.0,21.0,0.0,43.0,86.0,43.0,336.0,603.0,255.0,84.0,86.0,35.0,9.0,525.0,0.0,32.0,711.0,52.0,0.0,110.0,28.0,0.0,276.0,0.0,61.0,406.0,0.0,18.0,0.0,60.0,110.0,14.0,9.0,187.0,306.0,520.0,353.0,35.0,11.0,0.0,31.0,17.0,0.0,19.0,1469.0,14.0,474.0,0.0,0.0,29.0,0.0,156.0,204.0,243.0,527.0,100.0,0.0,13.0,661.0,161.0,0.0,25.0,83.0,25.0,0.0,45.0,232.0,6.0,134.0,55.0,30.0,0.0,0.0,0.0,31.0,18.0,279.0,8.0,0.0,1033.0,195.0,46.0,17.0,0.0,351.0,0.0,132.0,82.0,21.0,0.0,89.0,0.0,23.0,0.0,2100.0,0.0,184.0,332.0,79.0,137.0,114.0,105.0,225.0,192.0,12.0,0.0,0.0,246.0,20.0,15.0,37.0,26.0,0.0,310.0,0.0,35.0,42.0,88.0,159.0,298.0,49.0,1076.0,8.0,137.0,178.0,8.0,14.0,281.0,1.0,0.0,104.0,149.0,1017.0,605.4564920442,0.0,0.0,2016-03-27,,2016-12,605.357026691699,435.37689951836, +101,101,60.0,4.0,90.0,8.0,65.0,125.0,249.0,82.0,0.0,231.0,2182.0,0.0,14.0,303.0,320.0,39.0,48.0,125.0,1028.0,25.0,21.0,274.0,0.0,74.0,331.0,64.0,932.0,284.0,9.0,31.0,16.0,68.0,788.0,368.0,465.0,1173.0,0.0,24.0,0.0,39.0,205.0,31.0,46.0,661.0,1005.0,20.0,7.0,420.0,155.0,491.0,0.0,85.0,25.0,163.0,43.0,15.0,56.0,534.0,17.0,0.0,14.0,1271.0,0.0,1499.0,123.0,0.0,0.0,24.0,1158.0,0.0,105.0,2661.0,135.0,6.0,58.0,19.0,1952.0,199.0,37.0,15.0,77.0,72.0,24.0,47.0,0.0,198.0,610.0,212.0,30.0,41.0,8.0,9.0,1272.0,78.0,138.0,105.0,87.0,184.0,1983.0,47.0,1271.0,1124.0,34.0,0.0,32.0,0.0,0.0,3.0,0.0,56.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,492.0,1052.0,1315.0,45.0,13.0,875.0,885.0,5.0,0.0,55.0,37.0,14.0,3.0,318.0,627.0,935.0,18.0,93.0,188.0,18.0,60.0,167.0,448.0,101.0,1717.0,34.0,1.0,0.0,956.0,661.0,472.0,48.0,122.0,421.0,0.0,315.0,0.0,131.0,138.0,11.0,76.0,357.0,35.0,0.0,205.0,1236.0,62.0,34.0,60.0,19.0,0.0,64.0,48.0,60.0,348.0,665.0,312.0,141.0,72.0,48.0,16.0,505.0,0.0,36.0,772.0,52.0,0.0,111.0,13.0,0.0,297.0,0.0,76.0,420.0,0.0,32.0,0.0,68.0,125.0,20.0,5.0,176.0,286.0,525.0,411.0,39.0,5.0,0.0,30.0,38.0,0.0,27.0,1474.0,12.0,459.0,0.0,0.0,21.0,0.0,176.0,264.0,262.0,500.0,129.0,0.0,29.0,663.0,67.0,0.0,31.0,83.0,29.0,0.0,52.0,221.0,8.0,175.0,48.0,32.0,0.0,0.0,0.0,50.0,33.0,286.0,5.0,0.0,1204.0,249.0,44.0,15.0,0.0,372.0,0.0,142.0,75.0,30.0,0.0,71.0,0.0,11.0,0.0,2203.0,0.0,176.0,389.0,110.0,124.0,96.0,132.0,267.0,203.0,13.0,0.0,0.0,362.0,31.0,23.0,59.0,41.0,0.0,324.0,0.0,58.0,33.0,92.0,200.0,334.0,19.0,1091.0,15.0,138.0,206.0,12.0,20.0,242.0,1.0,0.0,109.0,158.0,1086.0,360.5150214592,0.0,0.0,2016-04-03,,2016-13,360.64995840128086,360.5150214592, +102,102,70.0,8.0,92.0,11.0,47.0,144.0,318.0,89.0,0.0,270.0,1924.0,0.0,29.0,338.0,358.0,42.0,49.0,122.0,1283.0,31.0,31.0,307.0,0.0,88.0,352.0,71.0,1434.0,367.0,8.0,27.0,8.0,70.0,1054.0,522.0,516.0,1362.0,0.0,39.0,0.0,42.0,195.0,35.0,47.0,827.0,1062.0,20.0,9.0,552.0,172.0,528.0,0.0,71.0,25.0,210.0,91.0,16.0,63.0,429.0,7.0,0.0,22.0,1391.0,0.0,1585.0,125.0,0.0,0.0,24.0,1253.0,0.0,108.0,2207.0,91.0,2.0,57.0,19.0,1931.0,240.0,53.0,27.0,61.0,115.0,25.0,84.0,0.0,201.0,786.0,218.0,32.0,39.0,9.0,11.0,1343.0,85.0,143.0,145.0,86.0,245.0,2091.0,60.0,1515.0,1268.0,46.0,0.0,40.0,0.0,0.0,3.0,0.0,91.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,617.0,1166.0,1723.0,43.0,14.0,994.0,982.0,3.0,0.0,68.0,43.0,23.0,7.0,380.0,610.0,1053.0,25.0,113.0,207.0,22.0,80.0,224.0,517.0,127.0,1989.0,27.0,4.0,0.0,974.0,663.0,439.0,52.0,170.0,263.0,0.0,350.0,0.0,115.0,139.0,7.0,83.0,413.0,71.0,0.0,254.0,1154.0,57.0,31.0,47.0,22.0,0.0,60.0,67.0,62.0,336.0,775.0,386.0,84.0,99.0,40.0,13.0,683.0,0.0,45.0,859.0,52.0,0.0,107.0,21.0,0.0,318.0,0.0,67.0,486.0,0.0,23.0,0.0,64.0,149.0,20.0,14.0,164.0,287.0,606.0,469.0,45.0,4.0,0.0,41.0,22.0,0.0,29.0,1734.0,12.0,564.0,0.0,0.0,40.0,0.0,197.0,305.0,320.0,639.0,119.0,0.0,21.0,836.0,49.0,0.0,32.0,89.0,24.0,0.0,60.0,214.0,11.0,158.0,58.0,31.0,0.0,0.0,0.0,38.0,30.0,314.0,9.0,0.0,1299.0,263.0,50.0,12.0,0.0,475.0,0.0,142.0,80.0,18.0,0.0,81.0,0.0,12.0,0.0,2556.0,0.0,214.0,358.0,141.0,150.0,126.0,164.0,271.0,263.0,11.0,0.0,0.0,311.0,26.0,17.0,60.0,42.0,0.0,397.0,0.0,63.0,48.0,82.0,187.0,358.0,16.0,1140.0,14.0,166.0,206.0,12.0,34.0,252.0,0.0,0.0,121.0,178.0,1145.0,326.0028732457,0.0,0.0,2016-04-10,,2016-14,325.86790111111804,326.0028732457, +103,103,82.0,4.0,119.0,17.0,58.0,151.0,335.0,87.0,0.0,290.0,1749.0,0.0,23.0,324.0,405.0,31.0,39.0,127.0,1207.0,36.0,38.0,262.0,0.0,100.0,365.0,90.0,1159.0,381.0,8.0,26.0,12.0,84.0,1050.0,535.0,415.0,1385.0,0.0,20.0,0.0,45.0,185.0,53.0,48.0,954.0,985.0,24.0,10.0,506.0,183.0,531.0,0.0,72.0,25.0,168.0,54.0,18.0,54.0,468.0,10.0,0.0,12.0,1300.0,0.0,1710.0,133.0,0.0,0.0,24.0,1233.0,0.0,93.0,2109.0,115.0,2.0,47.0,7.0,1953.0,260.0,54.0,28.0,59.0,94.0,21.0,77.0,0.0,205.0,772.0,315.0,32.0,28.0,11.0,16.0,1659.0,117.0,118.0,130.0,83.0,244.0,2077.0,54.0,1478.0,1367.0,42.0,0.0,31.0,0.0,0.0,7.0,0.0,67.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,601.0,1205.0,1591.0,38.0,16.0,1097.0,1023.0,4.0,0.0,53.0,48.0,13.0,16.0,435.0,691.0,1039.0,24.0,114.0,194.0,29.0,62.0,222.0,566.0,123.0,1952.0,27.0,8.0,0.0,1011.0,714.0,394.0,46.0,161.0,262.0,0.0,411.0,0.0,92.0,137.0,7.0,89.0,428.0,45.0,0.0,200.0,1499.0,56.0,48.0,33.0,23.0,0.0,68.0,75.0,55.0,340.0,696.0,392.0,96.0,79.0,41.0,14.0,599.0,0.0,34.0,842.0,47.0,0.0,139.0,28.0,0.0,366.0,0.0,76.0,479.0,0.0,34.0,0.0,50.0,140.0,24.0,13.0,174.0,346.0,760.0,488.0,40.0,8.0,0.0,32.0,16.0,0.0,13.0,1780.0,4.0,541.0,0.0,0.0,26.0,0.0,175.0,352.0,299.0,604.0,107.0,0.0,21.0,809.0,53.0,0.0,42.0,92.0,36.0,0.0,43.0,217.0,6.0,168.0,61.0,27.0,0.0,0.0,0.0,42.0,23.0,312.0,6.0,0.0,1378.0,288.0,43.0,9.0,0.0,440.0,0.0,133.0,70.0,23.0,0.0,78.0,0.0,28.0,0.0,2974.0,0.0,227.0,413.0,130.0,115.0,158.0,142.0,306.0,221.0,9.0,0.0,0.0,346.0,22.0,21.0,46.0,56.0,0.0,370.0,0.0,61.0,45.0,58.0,190.0,325.0,10.0,1032.0,8.0,173.0,197.0,13.0,20.0,228.0,0.0,0.0,125.0,147.0,1172.0,0.0,0.0,0.0,2016-04-17,,2016-15,0.4986823180377087,249.62593988522, +104,104,166.0,0.0,95.0,16.0,210.0,221.0,405.0,96.0,78.0,336.0,3752.0,2942.0,24.0,417.0,823.0,50.0,51.0,261.0,2923.0,38.0,27.0,506.0,6952.0,102.0,526.0,88.0,1621.0,563.0,25.0,39.0,32.0,105.0,1476.0,641.0,907.0,2198.0,47.0,18.0,7.0,111.0,354.0,76.0,50.0,1109.0,1279.0,9.0,7.0,607.0,219.0,1157.0,8.0,129.0,26.0,179.0,100.0,35.0,35.0,553.0,7.0,358.0,13.0,2022.0,936.0,3108.0,223.0,17.0,6369.0,21.0,1804.0,47.0,244.0,7203.0,137.0,1.0,65.0,18.0,4599.0,298.0,71.0,18.0,157.0,134.0,33.0,140.0,289.0,308.0,1143.0,421.0,44.0,31.0,8.0,5.0,2762.0,147.0,210.0,160.0,145.0,441.0,4850.0,76.0,2685.0,2260.0,55.0,320.0,642.0,2301.0,486.0,3.0,178.0,107.0,2641.0,839.0,2537.0,11.0,1022.0,121.0,1852.0,887.0,2027.0,2500.0,91.0,5.0,1592.0,2096.0,2.0,2120.0,88.0,80.0,12.0,16.0,699.0,870.0,1498.0,27.0,179.0,277.0,38.0,93.0,258.0,980.0,233.0,3444.0,62.0,1.0,114.0,1370.0,1271.0,877.0,44.0,324.0,291.0,1170.0,686.0,24.0,100.0,274.0,11.0,77.0,754.0,72.0,9513.0,349.0,2121.0,91.0,63.0,50.0,14.0,25.0,72.0,93.0,126.0,471.0,991.0,446.0,114.0,228.0,42.0,14.0,1193.0,0.0,26.0,1348.0,86.0,671.0,129.0,33.0,311.0,1020.0,112.0,74.0,793.0,1306.0,22.0,244.0,70.0,243.0,12.0,4.0,204.0,537.0,874.0,951.0,43.0,5.0,71.0,81.0,55.0,65.0,22.0,3052.0,19.0,727.0,51.0,52.0,42.0,43.0,467.0,805.0,389.0,1121.0,190.0,0.0,6.0,1007.0,66.0,4.0,36.0,171.0,50.0,35.0,64.0,537.0,1.0,261.0,92.0,24.0,25.0,1608.0,1.0,51.0,45.0,675.0,43.0,3258.0,2227.0,573.0,88.0,21.0,2275.0,770.0,176.0,673.0,152.0,27.0,5.0,70.0,109.0,31.0,32.0,4306.0,0.0,874.0,681.0,201.0,237.0,216.0,173.0,564.0,318.0,7.0,73.0,236.0,439.0,28.0,13.0,97.0,71.0,7.0,458.0,211.0,68.0,61.0,123.0,375.0,572.0,15.0,2710.0,13.0,248.0,469.0,13.0,26.0,357.0,77.0,105.0,127.0,190.0,2613.0,812.0561056946001,5172.0,747.0,2016-10-23,,2016-42,812.0259927564521,839.7788425715601, +105,105,192.0,0.0,83.0,12.0,194.0,209.0,379.0,103.0,88.0,315.0,3694.0,3193.0,36.0,452.0,803.0,56.0,59.0,220.0,3125.0,40.0,30.0,527.0,7216.0,108.0,472.0,97.0,1652.0,586.0,13.0,45.0,21.0,99.0,1347.0,544.0,807.0,2129.0,55.0,34.0,6.0,135.0,287.0,66.0,73.0,1269.0,1234.0,27.0,9.0,585.0,205.0,1175.0,8.0,80.0,26.0,173.0,87.0,20.0,59.0,601.0,25.0,342.0,8.0,1846.0,925.0,3062.0,196.0,18.0,5756.0,29.0,2066.0,54.0,171.0,7575.0,123.0,2.0,90.0,9.0,4463.0,323.0,58.0,13.0,207.0,152.0,35.0,96.0,304.0,573.0,1199.0,401.0,37.0,16.0,7.0,8.0,2565.0,183.0,220.0,175.0,137.0,364.0,4319.0,77.0,2632.0,2327.0,54.0,343.0,650.0,2340.0,459.0,0.0,166.0,123.0,2607.0,898.0,2462.0,19.0,1134.0,110.0,1738.0,878.0,2124.0,2649.0,65.0,7.0,1675.0,1976.0,0.0,2095.0,87.0,65.0,32.0,14.0,643.0,918.0,1550.0,21.0,105.0,241.0,50.0,104.0,249.0,1012.0,276.0,3327.0,58.0,1.0,107.0,1520.0,1222.0,965.0,60.0,261.0,288.0,1203.0,694.0,17.0,74.0,245.0,11.0,66.0,831.0,71.0,8999.0,338.0,1972.0,94.0,64.0,46.0,12.0,24.0,77.0,88.0,111.0,443.0,1002.0,385.0,98.0,202.0,47.0,21.0,1082.0,0.0,37.0,1295.0,64.0,682.0,180.0,12.0,363.0,999.0,143.0,92.0,713.0,1339.0,20.0,259.0,63.0,257.0,17.0,10.0,187.0,529.0,953.0,833.0,37.0,0.0,65.0,70.0,24.0,59.0,22.0,2925.0,19.0,768.0,44.0,58.0,29.0,7.0,576.0,664.0,368.0,972.0,154.0,0.0,0.0,1095.0,53.0,7.0,42.0,177.0,36.0,69.0,110.0,479.0,2.0,287.0,94.0,39.0,18.0,1464.0,1.0,73.0,61.0,636.0,8.0,3507.0,2186.0,403.0,64.0,20.0,2278.0,709.0,138.0,580.0,150.0,47.0,15.0,91.0,89.0,23.0,31.0,4259.0,0.0,601.0,741.0,180.0,252.0,238.0,199.0,548.0,322.0,4.0,57.0,239.0,421.0,34.0,21.0,57.0,53.0,2.0,420.0,215.0,81.0,57.0,70.0,384.0,555.0,16.0,2510.0,8.0,211.0,459.0,4.0,24.0,340.0,60.0,74.0,135.0,183.0,2280.0,593.1165070172,4917.0,759.0,2016-10-30,,2016-43,592.9669829755899,799.47949178002, +106,106,182.0,2.0,135.0,21.0,175.0,231.0,354.0,110.0,87.0,341.0,3629.0,3054.0,36.0,434.0,919.0,61.0,43.0,230.0,2901.0,70.0,47.0,766.0,7172.0,135.0,474.0,118.0,1603.0,615.0,24.0,36.0,21.0,114.0,1397.0,519.0,705.0,2078.0,67.0,31.0,19.0,95.0,378.0,40.0,62.0,1115.0,1375.0,24.0,4.0,533.0,179.0,2050.0,19.0,116.0,30.0,179.0,97.0,33.0,42.0,660.0,19.0,341.0,29.0,2142.0,1114.0,3223.0,235.0,15.0,5494.0,33.0,1829.0,47.0,192.0,7911.0,139.0,3.0,82.0,17.0,4652.0,270.0,69.0,31.0,179.0,149.0,29.0,130.0,421.0,312.0,1200.0,384.0,38.0,14.0,8.0,9.0,2412.0,132.0,205.0,179.0,112.0,339.0,4231.0,86.0,2731.0,2482.0,67.0,312.0,640.0,2235.0,445.0,2.0,208.0,116.0,2545.0,915.0,2474.0,18.0,1106.0,113.0,1945.0,904.0,2076.0,2760.0,90.0,11.0,1695.0,1865.0,0.0,2273.0,65.0,74.0,23.0,8.0,623.0,988.0,1532.0,22.0,165.0,249.0,42.0,87.0,207.0,959.0,300.0,3738.0,51.0,3.0,118.0,1517.0,1406.0,961.0,47.0,228.0,328.0,1203.0,606.0,22.0,89.0,236.0,5.0,51.0,913.0,97.0,8949.0,295.0,2031.0,107.0,68.0,42.0,13.0,22.0,74.0,68.0,114.0,466.0,1021.0,409.0,161.0,232.0,32.0,22.0,1133.0,0.0,29.0,1262.0,62.0,642.0,127.0,21.0,368.0,979.0,157.0,115.0,728.0,1509.0,25.0,207.0,73.0,314.0,27.0,36.0,230.0,514.0,867.0,699.0,54.0,3.0,71.0,56.0,38.0,76.0,21.0,2965.0,15.0,790.0,33.0,52.0,34.0,7.0,388.0,528.0,364.0,982.0,187.0,0.0,10.0,1134.0,46.0,3.0,30.0,187.0,36.0,70.0,73.0,456.0,3.0,303.0,88.0,47.0,14.0,1409.0,6.0,49.0,46.0,706.0,8.0,3064.0,2170.0,353.0,74.0,22.0,2244.0,702.0,198.0,555.0,109.0,51.0,15.0,116.0,79.0,23.0,50.0,4171.0,0.0,616.0,674.0,166.0,255.0,241.0,207.0,637.0,369.0,8.0,45.0,250.0,478.0,41.0,26.0,82.0,58.0,9.0,408.0,231.0,98.0,53.0,101.0,404.0,560.0,15.0,2442.0,6.0,218.0,446.0,4.0,16.0,330.0,56.0,103.0,132.0,160.0,2142.0,696.6195053462,5132.0,798.0,2016-11-06,,2016-44,696.4224824252947,559.5743106010601, +107,107,148.0,0.0,130.0,8.0,210.0,233.0,427.0,96.0,68.0,458.0,4139.0,3140.0,46.0,470.0,803.0,64.0,35.0,257.0,2872.0,22.0,44.0,585.0,7571.0,93.0,503.0,81.0,1642.0,637.0,32.0,47.0,46.0,103.0,1586.0,638.0,675.0,2146.0,86.0,25.0,9.0,125.0,378.0,83.0,55.0,1340.0,1423.0,24.0,10.0,650.0,181.0,1112.0,30.0,743.0,32.0,205.0,89.0,42.0,56.0,656.0,19.0,371.0,24.0,2148.0,1118.0,3209.0,232.0,23.0,5508.0,33.0,1917.0,44.0,347.0,7914.0,124.0,1.0,68.0,23.0,4596.0,350.0,62.0,33.0,204.0,151.0,28.0,85.0,355.0,482.0,1202.0,454.0,39.0,23.0,14.0,9.0,2542.0,124.0,227.0,204.0,135.0,371.0,4276.0,85.0,2776.0,2602.0,78.0,319.0,588.0,2390.0,505.0,6.0,207.0,118.0,2569.0,932.0,2489.0,12.0,1291.0,150.0,1860.0,933.0,2153.0,3083.0,95.0,12.0,1810.0,2139.0,4.0,2301.0,80.0,84.0,19.0,24.0,627.0,888.0,1528.0,30.0,148.0,259.0,42.0,102.0,245.0,1017.0,339.0,3883.0,62.0,3.0,159.0,1635.0,1112.0,963.0,58.0,250.0,398.0,1295.0,668.0,27.0,117.0,225.0,7.0,65.0,899.0,80.0,9710.0,343.0,1978.0,77.0,50.0,47.0,24.0,35.0,88.0,102.0,104.0,453.0,1033.0,462.0,108.0,239.0,41.0,22.0,1156.0,0.0,20.0,1346.0,76.0,620.0,192.0,28.0,302.0,998.0,182.0,101.0,734.0,1535.0,31.0,262.0,72.0,272.0,17.0,7.0,259.0,552.0,963.0,730.0,42.0,2.0,67.0,76.0,41.0,74.0,34.0,3058.0,26.0,717.0,59.0,75.0,31.0,11.0,387.0,579.0,439.0,1054.0,283.0,0.0,10.0,1169.0,46.0,5.0,44.0,155.0,41.0,79.0,96.0,509.0,1.0,300.0,95.0,43.0,16.0,1391.0,5.0,74.0,40.0,756.0,9.0,3077.0,2343.0,382.0,71.0,26.0,2728.0,681.0,179.0,661.0,175.0,48.0,13.0,100.0,103.0,24.0,30.0,4298.0,0.0,466.0,720.0,170.0,277.0,250.0,244.0,559.0,313.0,9.0,72.0,221.0,470.0,25.0,16.0,81.0,67.0,10.0,451.0,232.0,83.0,58.0,77.0,769.0,584.0,23.0,2916.0,10.0,220.0,553.0,4.0,19.0,361.0,62.0,85.0,158.0,179.0,2349.0,762.7488013947,5269.0,771.0,2016-11-13,,2016-45,762.9188805435369,692.2248622428801, +108,108,134.0,2.0,122.0,7.0,184.0,219.0,412.0,80.0,75.0,415.0,4141.0,3209.0,33.0,458.0,937.0,53.0,45.0,289.0,2641.0,44.0,54.0,540.0,8057.0,109.0,504.0,107.0,1780.0,665.0,25.0,38.0,20.0,116.0,1702.0,739.0,627.0,2103.0,62.0,22.0,9.0,104.0,389.0,37.0,73.0,1323.0,1349.0,33.0,8.0,535.0,202.0,1138.0,24.0,190.0,26.0,208.0,96.0,31.0,62.0,670.0,17.0,347.0,20.0,2298.0,2094.0,3326.0,220.0,22.0,5536.0,25.0,1858.0,51.0,234.0,7003.0,119.0,1.0,92.0,20.0,4526.0,342.0,59.0,20.0,150.0,163.0,34.0,101.0,377.0,386.0,1186.0,413.0,46.0,11.0,7.0,6.0,2390.0,118.0,185.0,173.0,147.0,405.0,4261.0,71.0,2647.0,2593.0,56.0,332.0,643.0,2571.0,493.0,8.0,165.0,109.0,2618.0,1083.0,2632.0,6.0,1286.0,149.0,1886.0,917.0,2232.0,2970.0,75.0,13.0,2072.0,2137.0,3.0,2319.0,89.0,59.0,24.0,13.0,622.0,883.0,1603.0,25.0,130.0,310.0,36.0,118.0,253.0,937.0,283.0,3769.0,83.0,0.0,138.0,1749.0,1250.0,858.0,52.0,265.0,418.0,1203.0,759.0,24.0,103.0,232.0,2.0,79.0,1110.0,81.0,9526.0,334.0,2269.0,100.0,49.0,43.0,30.0,28.0,73.0,95.0,86.0,466.0,984.0,511.0,190.0,209.0,47.0,14.0,1168.0,0.0,21.0,1379.0,107.0,760.0,139.0,28.0,333.0,950.0,183.0,94.0,817.0,1600.0,17.0,264.0,83.0,250.0,18.0,15.0,228.0,599.0,999.0,740.0,43.0,6.0,72.0,76.0,38.0,107.0,23.0,3376.0,16.0,763.0,43.0,52.0,19.0,14.0,513.0,607.0,426.0,1178.0,228.0,0.0,12.0,1115.0,56.0,7.0,41.0,175.0,50.0,71.0,89.0,504.0,2.0,358.0,80.0,41.0,22.0,1287.0,3.0,58.0,49.0,698.0,11.0,3105.0,2367.0,380.0,84.0,24.0,2371.0,730.0,195.0,631.0,134.0,36.0,8.0,115.0,78.0,30.0,30.0,4579.0,0.0,453.0,733.0,181.0,242.0,263.0,256.0,566.0,350.0,11.0,60.0,248.0,562.0,31.0,23.0,62.0,52.0,7.0,528.0,217.0,75.0,68.0,76.0,474.0,617.0,20.0,2866.0,12.0,255.0,574.0,5.0,14.0,338.0,56.0,102.0,168.0,158.0,2462.0,864.8025367541002,5201.0,823.0,2016-11-20,,2016-46,864.7534382138947,854.2532505422001, +109,109,117.0,1.0,126.0,11.0,192.0,227.0,423.0,96.0,81.0,380.0,3815.0,3220.0,28.0,492.0,938.0,42.0,38.0,258.0,2660.0,29.0,54.0,594.0,7982.0,121.0,504.0,90.0,1707.0,740.0,30.0,41.0,29.0,88.0,1526.0,666.0,658.0,2060.0,68.0,28.0,12.0,76.0,429.0,51.0,82.0,1273.0,1341.0,17.0,10.0,680.0,200.0,1286.0,23.0,189.0,19.0,179.0,105.0,38.0,44.0,556.0,16.0,341.0,7.0,2278.0,1155.0,3519.0,185.0,16.0,5026.0,31.0,1813.0,48.0,583.0,7151.0,115.0,0.0,80.0,6.0,4600.0,406.0,65.0,15.0,154.0,158.0,36.0,145.0,361.0,454.0,1206.0,365.0,62.0,17.0,3.0,5.0,2397.0,186.0,213.0,209.0,126.0,440.0,4655.0,82.0,2635.0,2835.0,44.0,305.0,884.0,2478.0,503.0,3.0,199.0,114.0,2689.0,893.0,2347.0,10.0,1171.0,126.0,1947.0,904.0,2133.0,3143.0,49.0,8.0,1767.0,2192.0,1.0,2259.0,67.0,49.0,15.0,25.0,633.0,890.0,1619.0,25.0,153.0,289.0,58.0,96.0,237.0,915.0,254.0,3577.0,69.0,1.0,110.0,1544.0,1122.0,900.0,41.0,242.0,335.0,1250.0,697.0,31.0,118.0,274.0,12.0,49.0,974.0,71.0,9351.0,353.0,2534.0,108.0,53.0,60.0,20.0,16.0,159.0,103.0,102.0,421.0,985.0,498.0,101.0,198.0,38.0,26.0,1173.0,0.0,33.0,1339.0,63.0,876.0,146.0,25.0,327.0,1026.0,168.0,83.0,737.0,1742.0,21.0,242.0,98.0,235.0,23.0,5.0,229.0,480.0,1044.0,811.0,33.0,0.0,47.0,59.0,47.0,102.0,22.0,3144.0,16.0,744.0,37.0,41.0,30.0,7.0,407.0,590.0,388.0,1052.0,168.0,0.0,4.0,1091.0,50.0,6.0,41.0,186.0,44.0,61.0,105.0,512.0,1.0,276.0,88.0,48.0,22.0,1305.0,2.0,69.0,37.0,644.0,6.0,3222.0,2430.0,413.0,71.0,36.0,1921.0,736.0,193.0,660.0,144.0,37.0,12.0,100.0,87.0,27.0,39.0,4597.0,0.0,459.0,710.0,184.0,316.0,246.0,225.0,521.0,320.0,12.0,63.0,230.0,535.0,32.0,25.0,85.0,63.0,11.0,547.0,217.0,68.0,67.0,89.0,422.0,635.0,24.0,3016.0,12.0,289.0,566.0,7.0,18.0,349.0,69.0,101.0,168.0,185.0,2058.0,789.4671715297003,5087.0,796.0,2016-11-27,,2016-47,789.5242378370567,669.7678150506003, +110,110,117.0,0.0,106.0,3.0,212.0,229.0,462.0,118.0,72.0,391.0,3937.0,3157.0,24.0,480.0,986.0,40.0,43.0,223.0,2742.0,31.0,33.0,562.0,8580.0,111.0,451.0,90.0,1676.0,667.0,33.0,60.0,14.0,116.0,1421.0,553.0,652.0,2002.0,67.0,33.0,7.0,102.0,377.0,46.0,57.0,1236.0,1266.0,23.0,7.0,579.0,215.0,1307.0,15.0,595.0,29.0,159.0,125.0,47.0,50.0,613.0,19.0,333.0,14.0,2055.0,941.0,2776.0,174.0,22.0,5295.0,23.0,1755.0,38.0,247.0,7447.0,97.0,0.0,67.0,6.0,4776.0,285.0,72.0,12.0,160.0,147.0,37.0,120.0,408.0,601.0,1164.0,404.0,50.0,26.0,5.0,7.0,2369.0,112.0,229.0,171.0,147.0,406.0,3833.0,88.0,2356.0,2302.0,63.0,305.0,752.0,2424.0,431.0,2.0,295.0,116.0,2574.0,861.0,2223.0,6.0,993.0,93.0,1912.0,877.0,2140.0,3252.0,53.0,7.0,1710.0,2006.0,1.0,2133.0,79.0,77.0,16.0,18.0,691.0,868.0,1463.0,32.0,126.0,268.0,37.0,85.0,235.0,881.0,200.0,3683.0,80.0,0.0,116.0,1369.0,1272.0,863.0,47.0,240.0,333.0,1181.0,596.0,26.0,106.0,275.0,14.0,83.0,890.0,71.0,8768.0,337.0,2171.0,134.0,49.0,39.0,9.0,16.0,114.0,91.0,145.0,443.0,964.0,474.0,112.0,173.0,37.0,22.0,955.0,0.0,23.0,1232.0,67.0,719.0,152.0,32.0,293.0,958.0,131.0,81.0,636.0,1367.0,14.0,220.0,81.0,254.0,17.0,8.0,161.0,497.0,1033.0,735.0,49.0,1.0,52.0,54.0,39.0,65.0,25.0,2852.0,12.0,764.0,30.0,46.0,20.0,9.0,460.0,554.0,405.0,1057.0,158.0,0.0,15.0,1076.0,57.0,0.0,28.0,156.0,33.0,53.0,104.0,565.0,5.0,303.0,69.0,47.0,21.0,1354.0,2.0,61.0,44.0,663.0,16.0,2950.0,2245.0,457.0,63.0,27.0,2121.0,615.0,180.0,619.0,116.0,25.0,15.0,113.0,98.0,23.0,40.0,4051.0,0.0,445.0,667.0,152.0,289.0,220.0,221.0,550.0,441.0,9.0,42.0,231.0,482.0,33.0,32.0,75.0,69.0,4.0,508.0,201.0,110.0,59.0,79.0,393.0,512.0,21.0,2721.0,10.0,219.0,468.0,4.0,35.0,283.0,45.0,85.0,172.0,169.0,1999.0,770.7869196692,4868.0,720.0,2016-12-04,,2016-48,770.6628913798086,770.7869196692, +111,111,142.0,0.0,92.0,7.0,180.0,228.0,359.0,74.0,93.0,396.0,4097.0,3352.0,35.0,485.0,1294.0,60.0,46.0,226.0,2721.0,27.0,45.0,583.0,7462.0,222.0,486.0,108.0,1665.0,618.0,30.0,28.0,15.0,114.0,1349.0,572.0,658.0,1916.0,89.0,38.0,8.0,61.0,340.0,69.0,67.0,1086.0,1274.0,37.0,14.0,541.0,195.0,1189.0,22.0,234.0,23.0,170.0,127.0,44.0,47.0,557.0,11.0,309.0,20.0,1969.0,994.0,3331.0,214.0,15.0,5840.0,24.0,1809.0,32.0,247.0,7621.0,110.0,0.0,80.0,22.0,4556.0,325.0,78.0,23.0,193.0,159.0,23.0,111.0,332.0,410.0,1112.0,481.0,55.0,17.0,10.0,5.0,2382.0,121.0,189.0,164.0,137.0,407.0,3828.0,80.0,2639.0,2114.0,31.0,302.0,711.0,2429.0,533.0,2.0,209.0,105.0,2595.0,891.0,2469.0,13.0,1093.0,146.0,1904.0,819.0,1952.0,3165.0,44.0,5.0,1615.0,2077.0,2.0,1990.0,85.0,67.0,17.0,17.0,558.0,869.0,1476.0,25.0,131.0,265.0,43.0,115.0,262.0,841.0,177.0,3795.0,82.0,0.0,115.0,1497.0,2617.0,823.0,49.0,225.0,362.0,1149.0,607.0,35.0,87.0,231.0,5.0,84.0,848.0,64.0,8346.0,325.0,2036.0,111.0,68.0,50.0,20.0,18.0,72.0,95.0,99.0,409.0,909.0,447.0,113.0,188.0,46.0,25.0,1011.0,0.0,28.0,1302.0,57.0,724.0,135.0,38.0,340.0,838.0,96.0,92.0,597.0,1347.0,33.0,204.0,95.0,258.0,15.0,8.0,206.0,465.0,920.0,686.0,30.0,2.0,55.0,68.0,44.0,87.0,25.0,2916.0,16.0,723.0,63.0,68.0,31.0,6.0,442.0,504.0,383.0,899.0,161.0,0.0,7.0,1063.0,45.0,2.0,26.0,154.0,36.0,60.0,101.0,546.0,0.0,301.0,78.0,60.0,14.0,1299.0,2.0,61.0,36.0,742.0,9.0,2880.0,2027.0,408.0,66.0,17.0,2616.0,610.0,143.0,597.0,147.0,33.0,6.0,83.0,85.0,51.0,38.0,3893.0,0.0,1250.0,629.0,187.0,308.0,195.0,189.0,573.0,352.0,10.0,56.0,216.0,695.0,34.0,26.0,59.0,58.0,10.0,475.0,213.0,76.0,62.0,90.0,312.0,498.0,27.0,2947.0,3.0,237.0,467.0,2.0,19.0,344.0,42.0,78.0,141.0,137.0,1932.0,642.2064021506,4740.0,683.0,2016-12-11,,2016-49,642.3527081760649,617.2930344384799, +112,112,137.0,0.0,121.0,10.0,164.0,209.0,400.0,90.0,86.0,363.0,4745.0,3874.0,37.0,422.0,1024.0,47.0,47.0,251.0,2852.0,34.0,48.0,621.0,7282.0,133.0,478.0,85.0,1559.0,553.0,39.0,45.0,23.0,94.0,1377.0,551.0,597.0,1964.0,82.0,52.0,10.0,57.0,361.0,50.0,69.0,1155.0,1182.0,23.0,12.0,606.0,189.0,1113.0,13.0,188.0,25.0,185.0,118.0,19.0,49.0,539.0,13.0,381.0,16.0,2003.0,943.0,3401.0,182.0,27.0,6251.0,21.0,1893.0,35.0,164.0,8231.0,109.0,0.0,89.0,9.0,4812.0,341.0,70.0,15.0,199.0,141.0,26.0,101.0,349.0,309.0,1134.0,341.0,32.0,22.0,25.0,11.0,2636.0,162.0,178.0,156.0,128.0,483.0,3817.0,71.0,2197.0,2181.0,73.0,314.0,687.0,2396.0,470.0,3.0,180.0,112.0,2327.0,994.0,2383.0,13.0,1047.0,97.0,1779.0,738.0,1953.0,3008.0,38.0,5.0,1675.0,2084.0,1.0,2053.0,86.0,64.0,18.0,7.0,568.0,1636.0,1427.0,27.0,137.0,254.0,37.0,86.0,229.0,991.0,189.0,3866.0,70.0,0.0,93.0,1440.0,1486.0,863.0,43.0,239.0,345.0,1092.0,573.0,20.0,87.0,230.0,4.0,69.0,821.0,71.0,9852.0,365.0,2025.0,103.0,65.0,35.0,13.0,26.0,75.0,83.0,106.0,439.0,982.0,427.0,128.0,183.0,47.0,18.0,1085.0,0.0,19.0,1286.0,57.0,882.0,163.0,100.0,344.0,863.0,93.0,84.0,609.0,1526.0,16.0,177.0,95.0,232.0,17.0,19.0,199.0,479.0,1004.0,705.0,32.0,5.0,48.0,58.0,36.0,81.0,28.0,3127.0,17.0,734.0,32.0,48.0,27.0,7.0,358.0,485.0,375.0,896.0,156.0,0.0,15.0,1122.0,53.0,3.0,37.0,129.0,46.0,75.0,79.0,534.0,0.0,315.0,83.0,50.0,17.0,1230.0,2.0,76.0,34.0,676.0,13.0,3080.0,2134.0,390.0,80.0,20.0,2374.0,667.0,157.0,557.0,154.0,16.0,11.0,84.0,118.0,39.0,26.0,4170.0,0.0,764.0,683.0,156.0,277.0,217.0,182.0,469.0,307.0,11.0,54.0,212.0,595.0,38.0,23.0,105.0,44.0,10.0,452.0,216.0,77.0,71.0,90.0,398.0,493.0,45.0,3291.0,15.0,222.0,507.0,9.0,20.0,377.0,59.0,82.0,129.0,218.0,1872.0,920.1011887439,5161.0,814.0,2016-12-18,,2016-50,920.2174636665259,1033.94182741224, +113,113,112.0,0.0,76.0,10.0,129.0,180.0,369.0,95.0,68.0,320.0,5404.0,3616.0,30.0,276.0,983.0,22.0,35.0,182.0,2060.0,31.0,60.0,590.0,6351.0,96.0,389.0,84.0,1263.0,441.0,18.0,40.0,23.0,82.0,961.0,382.0,655.0,1613.0,55.0,28.0,10.0,36.0,266.0,44.0,56.0,916.0,933.0,22.0,13.0,391.0,155.0,960.0,30.0,173.0,18.0,159.0,65.0,16.0,372.0,570.0,18.0,247.0,17.0,1835.0,845.0,2778.0,193.0,26.0,5941.0,18.0,1542.0,28.0,167.0,7660.0,87.0,2.0,66.0,11.0,4061.0,252.0,86.0,16.0,224.0,113.0,38.0,59.0,258.0,319.0,999.0,263.0,50.0,62.0,30.0,8.0,2052.0,127.0,121.0,137.0,132.0,363.0,3941.0,47.0,1967.0,1690.0,71.0,210.0,601.0,1913.0,426.0,1.0,147.0,86.0,1837.0,675.0,2032.0,12.0,858.0,109.0,1294.0,524.0,1396.0,1948.0,33.0,7.0,1266.0,1718.0,4.0,1719.0,64.0,34.0,16.0,17.0,455.0,849.0,1125.0,24.0,109.0,198.0,15.0,73.0,248.0,789.0,133.0,3414.0,58.0,0.0,79.0,1231.0,1506.0,757.0,32.0,161.0,250.0,845.0,452.0,19.0,68.0,189.0,7.0,69.0,600.0,58.0,10285.0,289.0,1505.0,107.0,51.0,58.0,14.0,22.0,73.0,75.0,76.0,294.0,740.0,300.0,108.0,193.0,38.0,13.0,761.0,0.0,18.0,992.0,50.0,629.0,132.0,27.0,281.0,729.0,91.0,91.0,512.0,1259.0,19.0,129.0,65.0,191.0,15.0,11.0,145.0,405.0,760.0,587.0,37.0,8.0,43.0,43.0,48.0,70.0,18.0,2556.0,18.0,587.0,30.0,47.0,25.0,12.0,330.0,382.0,324.0,714.0,149.0,0.0,10.0,840.0,48.0,7.0,28.0,105.0,29.0,30.0,63.0,505.0,5.0,244.0,38.0,55.0,18.0,1080.0,6.0,33.0,18.0,557.0,19.0,2448.0,1576.0,342.0,49.0,28.0,2347.0,580.0,165.0,344.0,133.0,32.0,1.0,78.0,64.0,99.0,52.0,3337.0,0.0,529.0,466.0,123.0,240.0,164.0,128.0,411.0,258.0,15.0,46.0,160.0,330.0,24.0,18.0,83.0,35.0,7.0,362.0,184.0,81.0,57.0,92.0,268.0,402.0,18.0,2669.0,13.0,198.0,472.0,5.0,20.0,282.0,42.0,87.0,113.0,139.0,1499.0,1075.3223477871002,3850.0,660.0,2016-12-25,,2016-51,1075.2225649357779,1008.52648163096, +114,114,99.0,0.0,46.0,2.0,132.0,127.0,226.0,69.0,48.0,232.0,4794.0,3545.0,21.0,266.0,1022.0,23.0,24.0,150.0,1849.0,32.0,36.0,514.0,4332.0,102.0,336.0,82.0,1006.0,392.0,11.0,16.0,8.0,69.0,553.0,182.0,726.0,1414.0,41.0,21.0,9.0,63.0,193.0,32.0,37.0,604.0,875.0,30.0,1.0,236.0,130.0,1142.0,20.0,132.0,11.0,115.0,46.0,18.0,196.0,341.0,5.0,226.0,12.0,1527.0,930.0,2413.0,206.0,11.0,6099.0,14.0,1387.0,25.0,157.0,7908.0,99.0,0.0,40.0,7.0,3759.0,176.0,54.0,17.0,193.0,101.0,15.0,49.0,579.0,246.0,656.0,265.0,31.0,21.0,2.0,2.0,1781.0,57.0,78.0,105.0,76.0,240.0,3438.0,31.0,1822.0,1430.0,48.0,178.0,707.0,1405.0,330.0,1.0,111.0,88.0,1613.0,577.0,1738.0,11.0,634.0,98.0,985.0,510.0,1138.0,1520.0,37.0,6.0,893.0,1485.0,0.0,1596.0,52.0,38.0,18.0,19.0,446.0,626.0,1004.0,15.0,111.0,220.0,16.0,73.0,146.0,648.0,85.0,2923.0,64.0,0.0,63.0,1133.0,1142.0,623.0,38.0,119.0,246.0,684.0,337.0,11.0,53.0,138.0,5.0,61.0,634.0,38.0,10929.0,196.0,1105.0,107.0,34.0,42.0,10.0,20.0,45.0,79.0,71.0,277.0,607.0,173.0,112.0,113.0,31.0,13.0,599.0,0.0,23.0,853.0,46.0,659.0,87.0,21.0,237.0,596.0,88.0,69.0,372.0,1064.0,23.0,142.0,31.0,160.0,8.0,8.0,154.0,318.0,585.0,497.0,31.0,0.0,34.0,26.0,38.0,68.0,11.0,2193.0,8.0,650.0,38.0,52.0,28.0,3.0,377.0,297.0,276.0,588.0,114.0,0.0,11.0,622.0,23.0,0.0,26.0,90.0,24.0,39.0,69.0,477.0,4.0,194.0,50.0,18.0,16.0,784.0,3.0,44.0,22.0,569.0,6.0,2352.0,1373.0,552.0,42.0,16.0,2175.0,551.0,115.0,271.0,101.0,15.0,10.0,77.0,44.0,25.0,67.0,2977.0,0.0,567.0,430.0,117.0,165.0,124.0,110.0,466.0,242.0,12.0,43.0,118.0,271.0,25.0,12.0,61.0,25.0,7.0,318.0,140.0,87.0,41.0,59.0,214.0,446.0,12.0,2397.0,7.0,159.0,474.0,3.0,17.0,242.0,43.0,96.0,67.0,131.0,1465.0,724.2339832869002,3184.0,760.0,2017-01-01,,2016-52,724.431795152356,660.8007781978201, +115,115,141.0,10.0,134.0,10.0,203.0,252.0,314.0,116.0,103.0,521.0,6274.0,4308.0,37.0,495.0,1037.0,55.0,39.0,246.0,3032.0,36.0,61.0,660.0,7453.0,129.0,524.0,111.0,1930.0,657.0,43.0,36.0,23.0,100.0,1088.0,425.0,666.0,2306.0,65.0,41.0,19.0,65.0,288.0,68.0,66.0,1183.0,1494.0,20.0,15.0,555.0,210.0,1347.0,24.0,255.0,28.0,225.0,106.0,26.0,130.0,675.0,11.0,281.0,20.0,2342.0,1322.0,3518.0,383.0,15.0,8356.0,19.0,2114.0,44.0,222.0,9293.0,123.0,2.0,82.0,17.0,4893.0,305.0,111.0,30.0,249.0,134.0,32.0,101.0,423.0,402.0,1252.0,351.0,57.0,23.0,24.0,7.0,2533.0,160.0,145.0,208.0,145.0,451.0,4367.0,83.0,2212.0,2318.0,58.0,307.0,859.0,2168.0,566.0,2.0,195.0,142.0,2453.0,874.0,2692.0,11.0,1022.0,136.0,1756.0,774.0,1827.0,2905.0,32.0,15.0,1389.0,2320.0,0.0,2253.0,93.0,61.0,23.0,17.0,601.0,939.0,1597.0,24.0,155.0,306.0,35.0,112.0,231.0,965.0,247.0,4034.0,83.0,2.0,126.0,1541.0,1511.0,913.0,63.0,235.0,420.0,1198.0,571.0,20.0,88.0,261.0,6.0,105.0,863.0,49.0,12569.0,298.0,1769.0,127.0,70.0,58.0,22.0,17.0,106.0,94.0,92.0,487.0,1028.0,384.0,149.0,173.0,31.0,22.0,1000.0,0.0,26.0,1329.0,63.0,921.0,152.0,24.0,336.0,825.0,122.0,87.0,552.0,1404.0,24.0,228.0,72.0,262.0,19.0,8.0,234.0,490.0,982.0,568.3333333333334,55.0,4.0,50.0,48.0,60.0,89.0,32.0,3364.0,6.0,878.0,39.0,54.0,25.0,3.0,395.0,545.0,439.0,1025.0,166.0,0.0,10.0,985.0,52.0,4.0,36.0,149.0,38.0,76.0,108.0,505.4,2.0,290.0,86.0,77.0,19.0,1286.0,2.0,73.0,40.0,678.0,8.0,3655.0,2176.0,627.0,65.0,37.0,2883.0,729.0,178.0,516.0,134.0,34.0,12.0,96.0,89.0,102.0,34.0,4584.0,0.0,796.0,746.0,189.0,268.0,200.0,206.0,586.0,415.0,9.0,50.0,201.0,482.0,33.0,20.0,71.0,36.0,2.0,548.0,236.0,88.0,66.0,98.0,348.0,516.0,19.0,3332.0,8.0,248.0,559.0,6.0,29.0,324.0,55.0,99.0,141.0,172.0,2333.0,1405.9918321539,4872.0,798.0,2017-01-08,,2017-1,1405.9923180628746,1496.9338957432, +116,116,151.0,8.0,138.0,12.0,211.0,237.0,402.0,147.0,99.0,544.0,6095.0,4105.0,41.0,537.0,984.0,60.0,51.0,262.0,2832.0,45.0,48.0,921.0,8546.0,132.0,580.0,113.0,2028.0,769.0,60.0,35.0,18.0,138.0,1600.0,578.0,732.0,2431.0,76.0,34.0,11.0,44.0,374.0,81.0,79.0,1283.0,1382.0,24.0,11.0,752.0,242.0,1346.0,27.0,1588.0,26.0,218.0,124.0,29.0,108.0,607.0,16.0,327.0,30.0,2571.0,1150.0,3943.0,283.0,33.0,7560.0,26.0,2182.0,59.0,218.0,10678.0,136.0,2.0,91.0,15.0,4631.0,378.0,106.0,33.0,226.0,172.0,39.0,159.0,364.0,387.0,1263.0,415.0,43.0,36.0,11.0,5.0,2784.0,203.0,242.0,171.0,173.0,575.0,4175.0,117.0,2756.0,2570.0,61.0,414.0,920.0,2634.0,566.0,2.0,209.0,149.0,2701.0,992.0,2760.0,10.0,1259.0,129.0,2068.0,929.0,2306.0,3499.0,53.0,10.0,1890.0,2530.0,0.0,2355.0,100.0,83.0,23.0,18.0,696.0,1050.0,1696.0,30.0,165.0,332.0,44.0,94.0,254.0,1033.0,350.0,4013.0,78.0,5.0,127.0,1635.0,1639.0,915.0,63.0,293.0,381.0,1335.0,744.0,21.0,85.0,285.0,6.0,87.0,879.0,77.0,13699.0,391.0,2392.0,132.0,85.0,72.0,17.0,19.0,123.0,91.0,116.0,488.0,1189.0,570.0,146.0,183.0,54.0,30.0,1196.0,0.0,30.0,1424.0,115.0,860.0,162.0,27.0,340.0,980.0,144.0,97.0,677.0,1587.0,29.0,234.0,106.0,295.0,26.0,8.0,271.0,560.0,1164.0,639.6666666666666,39.0,2.0,48.0,72.0,49.0,87.0,28.0,3746.0,22.0,988.0,55.0,40.0,41.0,5.0,434.0,660.0,542.0,1096.0,180.0,0.0,16.0,1264.0,84.0,3.0,38.0,150.0,51.0,62.0,119.0,533.8,2.0,327.0,101.0,53.0,21.0,1418.0,6.0,78.0,41.0,737.0,15.0,3931.0,2496.0,534.0,74.0,30.0,2703.0,732.0,205.0,504.0,160.0,29.0,15.0,114.0,92.0,60.0,44.0,4861.0,0.0,566.0,798.0,219.0,386.0,267.0,267.0,594.0,454.0,10.0,72.0,216.0,483.0,37.0,20.0,130.0,45.0,5.0,586.0,216.0,101.0,81.0,135.0,400.0,593.0,33.0,3588.0,8.0,264.0,493.0,3.0,31.0,321.0,68.0,150.0,145.0,208.0,2434.0,1795.4268459062,5249.0,976.0,2017-01-15,,2017-2,1795.3756159014224,1219.90435462184, +117,117,146.0,10.0,116.0,7.0,236.0,287.0,490.0,176.0,106.0,546.0,6695.0,3992.0,55.0,496.0,927.0,63.0,50.0,296.0,2770.0,48.0,51.0,671.0,8148.0,132.0,569.0,88.0,1892.0,752.0,70.0,39.0,39.0,112.0,1667.0,648.0,699.0,2656.0,78.0,34.0,14.0,39.0,348.0,84.0,87.0,1449.0,1560.0,35.0,18.0,734.0,256.0,1414.0,27.0,351.0,38.0,240.0,135.0,39.0,92.0,667.0,16.0,321.0,38.0,2397.0,907.0,3618.0,345.0,33.0,7454.0,39.0,2198.0,62.0,225.0,11473.0,150.0,5.0,80.0,13.0,4609.0,409.0,173.0,45.0,247.0,185.0,32.0,107.0,325.0,415.0,1468.0,408.0,76.0,32.0,17.0,11.0,2830.0,196.0,222.0,175.0,151.0,553.0,4055.0,113.0,2526.0,2489.0,63.0,380.0,863.0,2813.0,586.0,4.0,222.0,142.0,2944.0,965.0,2717.0,9.0,1265.0,107.0,2092.0,883.0,2250.0,3228.0,53.0,10.0,1921.0,2317.0,1.0,2307.0,128.0,84.0,24.0,15.0,710.0,1011.0,1726.0,35.0,185.0,298.0,46.0,125.0,299.0,977.0,398.0,3783.0,71.0,1.0,148.0,1556.0,1561.0,1082.0,68.0,274.0,400.0,1367.0,774.0,32.0,116.0,250.0,12.0,76.0,824.0,94.0,12498.0,363.0,2572.0,120.0,80.0,89.0,53.0,24.0,132.0,104.0,117.0,527.0,1182.0,553.0,147.0,212.0,52.0,28.0,1250.0,0.0,28.0,1426.0,109.0,802.0,210.0,63.0,343.0,935.0,203.0,85.0,699.0,1730.0,31.0,208.0,101.0,285.0,18.0,6.0,278.0,547.0,1095.0,711.0,62.0,6.0,74.0,64.0,72.0,68.0,21.0,3407.0,18.0,943.0,30.0,48.0,26.0,3.0,475.0,655.0,417.0,1096.0,176.0,0.0,18.0,1211.0,90.0,4.0,44.0,144.0,47.0,120.0,152.0,562.2,2.0,313.0,163.0,49.0,24.0,1434.0,3.0,75.0,56.0,664.0,19.0,3496.0,2594.0,451.0,71.0,39.0,3000.0,697.0,190.0,509.0,160.0,31.0,20.0,116.0,109.0,43.0,43.0,4911.0,0.0,554.0,760.0,233.0,352.0,285.0,280.0,560.0,417.0,8.0,55.0,250.0,497.0,47.0,27.0,129.0,53.0,8.0,489.0,223.0,94.0,61.0,231.0,421.0,606.0,31.0,3464.0,6.0,267.0,414.0,4.0,31.0,352.0,69.0,74.0,163.0,166.0,2309.0,1471.2671363481,5139.0,831.0,2017-01-22,,2017-3,1471.2023381122003,1266.41937625192, +118,118,174.0,3.0,131.0,13.0,189.0,224.0,477.0,149.0,90.0,671.0,6759.0,4017.0,53.0,506.0,993.0,60.0,40.0,304.0,3816.0,54.0,48.0,711.0,8071.0,140.0,547.0,89.0,1807.0,761.0,45.0,59.0,23.0,103.0,1610.0,693.0,741.0,2562.0,81.0,43.0,7.0,54.0,334.0,73.0,67.0,1336.0,1688.0,18.0,16.0,824.0,218.0,1353.0,18.0,190.0,32.0,234.0,164.0,34.0,83.0,552.0,15.0,338.0,48.0,2439.0,956.0,3680.0,282.0,24.0,8836.0,36.0,1902.0,55.0,373.0,13476.0,141.0,1.0,86.0,11.0,4968.0,395.0,148.0,41.0,276.0,181.0,27.0,137.0,745.0,359.0,1577.0,474.0,59.0,33.0,12.0,4.0,2753.0,211.0,236.0,184.0,163.0,534.0,3902.0,114.0,2333.0,2527.0,67.0,355.0,922.0,2829.0,617.0,1.0,205.0,125.0,2863.0,1089.0,2632.0,9.0,1349.0,127.0,2146.0,944.0,2156.0,3219.0,38.0,7.0,2088.0,2420.0,0.0,2462.0,132.0,67.0,8.0,20.0,742.0,1046.0,1790.0,30.0,164.0,358.0,38.0,122.0,246.0,982.0,368.0,3987.0,61.0,1.0,114.0,1704.0,1314.0,1041.0,60.0,270.0,371.0,1374.0,791.0,27.0,98.0,277.0,4.0,105.0,905.0,102.0,13663.0,433.0,2613.0,135.0,61.0,71.0,36.0,25.0,132.0,99.0,122.0,549.0,1151.0,464.0,136.0,209.0,65.0,21.0,1205.0,0.0,36.0,1385.0,75.0,766.0,155.0,41.0,353.0,854.0,178.0,107.0,672.0,1592.0,23.0,220.0,121.0,334.0,21.0,9.0,273.0,563.0,1249.0,782.3333333333333,49.0,6.0,72.0,74.0,39.0,74.0,43.0,3439.0,16.0,961.0,32.0,53.0,27.0,5.0,505.0,645.0,430.0,1166.0,180.0,0.0,14.0,1279.0,44.0,4.0,38.0,150.0,38.0,81.0,145.0,590.6,3.0,328.0,117.0,49.0,22.0,1478.0,1.0,81.0,55.0,700.0,9.0,3452.0,2313.0,470.0,67.0,21.0,3672.0,691.0,159.0,552.0,176.0,32.0,13.0,95.0,116.0,59.0,30.0,4802.0,0.0,684.0,748.0,233.0,310.0,297.0,238.0,489.0,331.0,12.0,60.0,253.0,442.0,29.0,29.0,123.0,58.0,3.0,518.0,232.0,64.0,98.0,91.0,379.0,534.0,25.0,3717.0,4.0,242.0,390.0,4.0,44.0,358.0,68.0,66.0,153.0,183.0,2298.0,1452.4313741160001,5204.0,779.0,2017-01-29,,2017-4,1452.4142164273276,1452.4313741160004, +119,119,143.0,4.0,143.0,7.0,199.0,199.0,449.0,140.0,95.0,603.0,5897.0,4507.0,32.0,529.0,1076.0,63.0,41.0,267.0,2749.0,44.0,38.0,701.0,8416.0,275.0,564.0,78.0,1895.0,683.0,55.0,47.0,56.0,113.0,1694.0,601.0,785.0,2399.0,56.0,45.0,12.0,41.0,293.0,90.0,75.0,1329.0,1655.0,16.0,10.0,743.0,248.0,1426.0,43.0,227.0,30.0,230.0,157.0,38.0,80.0,511.0,17.0,383.0,25.0,2341.0,758.0,3450.0,228.0,29.0,9517.0,23.0,1982.0,72.0,315.0,14872.0,160.0,12.0,92.0,16.0,5099.0,370.0,132.0,35.0,308.0,226.0,58.0,135.0,354.0,331.0,1341.0,407.0,43.0,28.0,3.0,9.0,2684.0,239.0,234.0,186.0,127.0,494.0,4100.0,154.0,2469.0,2698.0,58.0,353.0,814.0,2628.0,556.0,4.0,201.0,110.0,2833.0,1041.0,2701.0,7.0,1262.0,114.0,2198.0,937.0,2048.0,3391.0,62.0,12.0,1985.0,2434.0,1.0,2341.0,132.0,78.0,38.0,22.0,786.0,997.0,1737.0,29.0,175.0,365.0,32.0,124.0,279.0,1009.0,406.0,4159.0,53.0,2.0,155.0,1772.0,1331.0,1068.0,51.0,277.0,553.0,1317.0,872.0,26.0,117.0,255.0,8.0,97.0,850.0,95.0,13719.0,377.0,2933.0,105.0,68.0,68.0,17.0,20.0,224.0,92.0,114.0,567.0,1146.0,503.0,127.0,171.0,43.0,29.0,1350.0,0.0,28.0,1408.0,47.0,881.0,167.0,21.0,374.0,856.0,192.0,101.0,645.0,1446.0,23.0,225.0,91.0,290.0,13.0,7.0,355.0,625.0,1118.0,853.6666666666665,47.0,1.0,76.0,110.0,50.0,69.0,33.0,3444.0,17.0,901.0,37.0,46.0,26.0,7.0,491.0,795.0,383.0,1070.0,207.0,0.0,20.0,1182.0,48.0,7.0,32.0,136.0,53.0,59.0,122.0,619.0,1.0,325.0,109.0,50.0,26.0,1393.0,3.0,81.0,14.0,679.0,12.0,3381.0,2286.0,541.0,52.0,22.0,3539.0,709.0,176.0,504.0,159.0,26.0,15.0,81.0,85.0,60.0,40.0,5157.0,0.0,1923.0,750.0,213.0,373.0,269.0,316.0,553.0,387.0,16.0,57.0,213.0,484.0,37.0,21.0,117.0,64.0,9.0,558.0,240.0,101.0,128.0,98.0,386.0,533.0,25.0,3854.0,8.0,238.0,417.0,4.0,25.0,336.0,61.0,65.0,172.0,208.0,2337.0,1369.3433979441,5352.0,884.0,2017-02-05,,2017-5,1369.4444945954397,1155.5903623871, +120,120,160.0,1.0,193.0,13.0,205.0,252.0,493.0,131.0,84.0,532.0,5847.0,4555.0,30.0,544.0,860.0,69.0,42.0,298.0,2718.0,48.0,24.0,657.0,8287.0,118.0,567.0,97.0,1890.0,625.0,37.0,50.0,42.0,124.0,1501.0,575.0,704.0,2415.0,74.0,22.0,7.0,50.0,294.0,84.0,83.0,1355.0,1724.0,20.0,17.0,1114.0,223.0,1432.0,21.0,181.0,51.0,235.0,123.0,23.0,63.0,625.0,15.0,372.0,26.0,2483.0,732.0,3632.0,281.0,23.0,10097.0,26.0,2176.0,90.0,268.0,12998.0,191.0,2.0,90.0,13.0,4961.0,393.0,142.0,30.0,285.0,191.0,30.0,166.0,338.0,344.0,2467.0,418.0,47.0,34.0,8.0,6.0,2923.0,209.0,242.0,199.0,156.0,815.0,4185.0,99.0,2488.0,2902.0,60.0,358.0,788.0,2587.0,583.0,4.0,217.0,162.0,2926.0,1036.0,2657.0,23.0,1286.0,180.0,2051.0,963.0,2077.0,3208.0,84.0,9.0,2029.0,2556.0,1.0,2287.0,105.0,66.0,16.0,22.0,836.0,1029.0,1716.0,25.0,173.0,344.0,52.0,129.0,251.0,1118.0,474.0,4208.0,65.0,2.0,128.0,1720.0,1322.0,1086.0,57.0,267.0,481.0,1312.0,910.0,25.0,103.0,269.0,8.0,102.0,923.0,97.0,12963.0,459.0,3075.0,114.0,87.0,54.0,42.0,25.0,193.0,116.0,110.0,612.0,1223.0,526.0,139.0,205.0,49.0,39.0,1200.0,0.0,34.0,1411.0,109.0,885.0,214.0,26.0,373.0,828.0,151.0,118.0,736.0,1492.0,29.0,246.0,97.0,294.0,21.0,8.0,328.0,647.0,1087.0,925.0,61.0,10.0,66.0,238.0,47.0,50.0,26.0,3584.0,17.0,914.0,41.0,59.0,22.0,10.0,524.0,810.0,433.0,1137.0,167.0,0.0,21.0,1248.0,66.0,4.0,38.0,122.0,51.0,60.0,85.0,452.0,1.0,301.0,99.0,75.0,32.0,1577.0,3.0,69.0,48.0,756.0,17.0,3427.0,2341.0,470.0,58.0,21.0,3374.0,727.0,173.0,506.0,177.0,26.0,14.0,111.0,94.0,62.0,52.0,4752.0,0.0,552.0,797.0,225.0,354.0,303.0,316.0,588.0,390.0,6.0,67.0,221.0,519.0,33.0,27.0,115.0,63.0,14.0,639.0,271.0,94.0,137.0,92.0,408.0,545.0,25.0,3780.0,21.0,333.0,385.0,2.0,23.0,374.0,72.0,56.0,173.0,220.0,2160.0,1299.4535243899002,5475.0,943.0,2017-02-12,,2017-6,1299.4205375207237,1230.6027199496402, +121,121,171.0,2.0,112.0,13.0,197.0,214.0,486.0,128.0,119.0,508.0,5473.0,4515.0,42.0,512.0,918.0,51.0,54.0,308.0,2731.0,38.0,41.0,626.0,11357.0,119.0,516.0,108.0,1842.0,542.0,46.0,55.0,26.0,118.0,1673.0,662.0,812.0,2449.0,45.0,41.0,14.0,45.0,322.0,94.0,80.0,1403.0,1808.0,22.0,22.0,1024.0,247.0,1353.0,35.0,129.0,31.0,213.0,91.0,28.0,76.0,585.0,17.0,352.0,33.0,2254.0,1291.0,3622.0,244.0,44.0,9090.0,30.0,2049.0,94.0,212.0,11657.0,163.0,2.0,93.0,11.0,3808.0,401.0,125.0,28.0,347.0,182.0,33.0,133.0,347.0,327.0,1682.0,406.0,36.0,28.0,13.0,21.0,2793.0,212.0,249.0,203.0,111.0,686.0,4242.0,103.0,2320.0,2373.0,59.0,357.0,762.0,2597.0,555.0,5.0,204.0,135.0,2867.0,1049.0,2796.0,8.0,1253.0,133.0,1956.0,1083.0,2239.0,3296.0,71.0,14.0,1994.0,2456.0,2.0,2262.0,116.0,74.0,24.0,23.0,727.0,1033.0,1683.0,25.0,191.0,302.0,47.0,119.0,261.0,1108.0,350.0,4339.0,58.0,6.0,127.0,1591.0,1189.0,1140.0,55.0,254.0,420.0,1300.0,1058.0,19.0,106.0,261.0,8.0,105.0,956.0,79.0,12303.0,393.0,3409.0,116.0,210.0,56.0,33.0,22.0,298.0,86.0,82.0,512.0,1079.0,507.0,126.0,210.0,41.0,33.0,1214.0,0.0,25.0,1334.0,81.0,879.0,193.0,29.0,348.0,929.0,159.0,105.0,729.0,1657.0,24.0,201.0,97.0,258.0,20.0,13.0,267.0,521.0,1016.0,861.0,47.0,3.0,62.0,174.0,53.0,65.0,29.0,3504.0,23.0,915.0,42.0,49.0,26.0,8.0,491.0,791.0,430.0,1011.0,176.0,0.0,11.0,1105.0,61.0,5.0,29.0,138.0,56.0,74.0,116.0,474.0,5.0,1229.0,120.0,53.0,39.0,1423.0,5.0,70.0,35.0,725.0,16.0,3256.0,2110.0,436.0,54.0,21.0,2717.0,853.0,212.0,494.0,195.0,33.0,9.0,91.0,89.0,53.0,32.0,6704.0,0.0,532.0,796.0,219.0,376.0,298.0,262.0,553.0,344.0,11.0,63.0,236.0,452.0,41.0,27.0,119.0,48.0,9.0,543.0,232.0,101.0,131.0,101.0,348.0,519.0,32.0,3505.0,13.0,299.0,410.0,8.0,27.0,296.0,68.0,60.0,167.0,245.0,2098.0,950.6697900794001,5401.0,895.0,2017-02-19,,2017-7,950.6714781070466,1090.1832838036, +122,122,162.0,4.0,111.0,7.0,207.0,208.0,448.0,105.0,80.0,428.0,4917.0,4214.0,36.0,522.0,1080.0,67.0,31.0,308.0,2640.0,38.0,30.0,679.0,7942.0,103.0,509.0,126.0,1795.0,549.0,28.0,39.0,35.0,98.0,1553.0,638.0,830.0,2544.0,47.0,28.0,10.0,46.0,301.0,100.0,70.0,1366.0,1605.0,34.0,20.0,848.0,288.0,1402.0,17.0,179.0,61.0,224.0,102.0,12.0,43.0,558.0,22.0,359.0,40.0,2175.0,1008.0,3701.0,283.0,25.0,7264.0,25.0,2047.0,92.0,240.0,9931.0,157.0,2.0,93.0,21.0,3847.0,345.0,117.0,32.0,242.0,184.0,35.0,124.0,399.0,332.0,1422.0,411.0,40.0,33.0,6.0,11.0,10806.0,191.0,236.0,172.0,125.0,616.0,4010.0,69.0,2268.0,2530.0,59.0,307.0,816.0,2483.0,562.0,4.0,182.0,111.0,2782.0,965.0,2898.0,11.0,1269.0,128.0,2081.0,973.0,2045.0,3164.0,48.0,6.0,2017.0,2488.0,2.0,2301.0,83.0,53.0,26.0,7.0,777.0,1012.0,1669.0,29.0,179.0,326.0,36.0,114.0,244.0,949.0,224.0,4364.0,64.0,1.0,122.0,1594.0,1258.0,1157.0,59.0,259.0,406.0,1227.0,826.0,19.0,85.0,220.0,9.0,90.0,1133.0,84.0,10445.0,403.0,3593.0,112.0,152.0,62.0,34.0,25.0,283.0,112.0,98.0,502.0,1039.0,513.0,120.0,228.0,43.0,28.0,1231.0,0.0,32.0,1344.0,98.0,923.0,166.0,36.0,421.0,953.0,153.0,93.0,761.0,1701.0,27.0,188.0,82.0,286.0,21.0,8.0,299.0,464.0,1001.0,856.0,55.0,3.0,76.0,132.0,38.0,64.0,49.0,3255.0,18.0,911.0,46.0,68.0,24.0,8.0,575.0,731.0,459.0,1104.0,194.0,0.0,16.0,1135.0,48.0,6.0,41.0,141.0,44.0,48.0,102.0,422.0,2.0,306.0,109.0,64.0,29.0,1419.0,5.0,79.0,28.0,803.0,7.0,3772.0,2047.0,443.0,70.0,22.0,2142.0,818.0,187.0,497.0,138.0,25.0,12.0,125.0,84.0,48.0,31.0,4631.0,0.0,477.0,844.0,272.0,411.0,292.0,270.0,660.0,330.0,7.0,75.0,215.0,433.0,35.0,24.0,102.0,47.0,2.0,584.0,287.0,108.0,96.0,101.0,557.0,545.0,19.0,3097.0,11.0,295.0,384.0,7.0,21.0,389.0,68.0,67.0,164.0,246.0,2135.0,617.3280896198,5756.0,928.0,2017-02-26,,2017-8,617.2716908444968,698.58403448846, +123,123,158.0,0.0,121.0,9.0,161.0,232.0,444.0,126.0,102.0,507.0,3839.0,4051.0,37.0,555.0,1029.0,50.0,38.0,250.0,2529.0,36.0,21.0,596.0,7662.0,135.0,576.0,94.0,1809.0,616.0,34.0,35.0,24.0,109.0,1356.0,554.0,717.0,2476.0,59.0,21.0,11.0,73.0,357.0,82.0,69.0,1379.0,1672.0,24.0,15.0,798.0,233.0,1320.0,28.0,211.0,79.0,223.0,99.0,13.0,39.0,549.0,19.0,332.0,19.0,2079.0,888.0,3374.0,281.0,21.0,5701.0,23.0,1985.0,88.0,267.0,8717.0,140.0,1.0,70.0,17.0,3621.0,376.0,118.0,14.0,180.0,148.0,37.0,98.0,407.0,333.0,1227.0,429.0,87.0,35.0,11.0,5.0,3507.0,233.0,210.0,251.0,131.0,602.0,3845.0,65.0,2428.0,2549.0,51.0,341.0,1170.0,2380.0,572.0,4.0,203.0,102.0,2882.0,941.0,2772.0,14.0,1200.0,111.0,1757.0,881.0,2068.0,3011.0,34.0,15.0,1842.0,2371.0,1.0,2335.0,69.0,59.0,17.0,17.0,785.0,966.0,1783.0,25.0,170.0,374.0,44.0,126.0,309.0,865.0,156.0,4204.0,91.0,0.0,135.0,1628.0,1156.0,1135.0,56.0,250.0,370.0,1163.0,768.0,21.0,77.0,255.0,6.0,97.0,928.0,104.0,9208.0,324.0,2808.0,95.0,107.0,46.0,25.0,25.0,197.0,114.0,102.0,480.0,1038.0,507.0,103.0,215.0,49.0,30.0,1397.0,0.0,30.0,1455.0,92.0,968.0,170.0,37.0,398.0,835.0,108.0,112.0,723.0,1597.0,18.0,172.0,101.0,261.0,19.0,9.0,264.0,448.0,868.0,897.0,35.0,5.0,49.0,110.0,48.0,56.0,43.0,3179.0,27.0,732.0,40.0,87.0,28.0,14.0,479.0,650.0,440.0,1033.0,166.0,0.0,9.0,1063.0,67.0,0.0,41.0,144.0,31.0,37.0,98.0,414.0,1.0,261.0,117.0,55.0,27.0,1490.0,3.0,70.0,33.0,796.0,17.0,3306.0,2105.0,407.0,66.0,20.0,1915.0,857.0,133.0,458.0,133.0,33.0,11.0,109.0,86.0,50.0,35.0,4460.0,0.0,542.0,757.0,213.0,405.0,248.0,236.0,536.0,322.0,8.0,65.0,224.0,398.0,32.0,20.0,134.0,73.0,7.0,612.0,311.0,89.0,198.0,84.0,347.0,486.0,17.0,2889.0,15.0,336.0,380.0,3.0,15.0,370.0,66.0,64.0,173.0,249.0,2004.0,627.2697259822,5472.0,975.0,2017-03-05,,2017-9,627.2405560527395,660.4449644925601, +124,124,143.0,6.0,103.0,12.0,183.0,258.0,472.0,89.0,90.0,540.0,3571.0,3608.0,46.0,528.0,759.0,79.0,55.0,250.0,3555.0,56.0,35.0,1002.0,7707.0,153.0,533.0,81.0,1894.0,661.0,61.0,56.0,34.0,135.0,1452.0,638.0,835.0,2656.0,57.0,47.0,17.0,61.0,330.0,59.0,58.0,1480.0,1748.0,21.0,30.0,947.0,213.0,1320.0,46.0,162.0,64.0,217.0,142.0,21.0,50.0,558.0,13.0,352.0,31.0,2026.0,846.0,3448.0,266.0,27.0,5021.0,32.0,2243.0,98.0,228.0,7494.0,121.0,4.0,100.0,24.0,3756.0,323.0,120.0,32.0,197.0,137.0,30.0,98.0,378.0,360.0,1577.0,376.0,51.0,54.0,18.0,14.0,2735.0,188.0,214.0,182.0,169.0,619.0,4173.0,64.0,2418.0,2557.0,50.0,335.0,744.0,2662.0,500.0,2.0,162.0,146.0,3023.0,975.0,2652.0,8.0,1235.0,118.0,1998.0,930.0,2563.0,3709.0,35.0,19.0,2049.0,2317.0,6.0,2334.0,76.0,52.0,16.0,20.0,676.0,1054.0,1681.0,33.0,177.0,321.0,50.0,128.0,381.0,942.0,172.0,4496.0,93.0,2.0,149.0,1607.0,1121.0,1137.0,84.0,292.0,440.0,1201.0,715.0,7.0,105.0,271.0,12.0,95.0,750.0,93.0,8042.0,418.0,3238.0,104.0,126.0,84.0,54.0,25.0,316.0,100.0,114.0,524.0,1056.0,571.0,144.0,257.0,62.0,31.0,1250.0,0.0,29.0,1317.0,103.0,842.0,188.0,46.0,400.0,863.0,110.0,1621.0,745.0,1589.0,27.0,242.0,65.0,253.0,23.0,15.0,358.0,444.0,948.0,882.0,33.0,4.0,63.0,126.0,68.0,64.0,27.0,3392.0,24.0,851.0,37.0,49.0,28.0,25.0,498.0,723.0,492.0,1178.0,165.0,0.0,10.0,1169.0,79.0,3.0,46.0,160.0,49.0,57.0,107.0,414.0,5.0,277.0,109.0,61.0,38.0,1493.0,5.0,72.0,42.0,777.0,21.0,3207.0,2252.0,458.0,71.0,45.0,1776.0,854.0,156.0,494.0,137.0,32.0,6.0,125.0,105.0,60.0,31.0,4436.0,0.0,648.0,705.0,232.0,396.0,282.0,245.0,610.0,689.0,14.0,55.0,234.0,418.0,41.0,25.0,138.0,50.0,6.0,563.0,212.0,165.0,121.0,120.0,331.0,546.0,24.0,2869.0,18.0,388.0,461.0,10.0,19.0,371.0,64.0,44.0,141.0,246.0,2100.0,488.6975242196,5450.0,891.0,2017-03-12,,2017-10,488.8474267976062,663.989261084, +125,125,133.0,1.0,102.0,7.0,209.0,188.0,413.0,110.0,80.0,472.0,2876.0,3265.0,45.0,541.0,945.0,66.0,45.0,228.0,3709.0,29.0,13.0,662.0,7965.0,167.0,500.0,119.0,1975.0,648.0,54.0,26.0,26.0,89.0,1344.0,613.0,1482.0,2651.0,76.0,35.0,8.0,54.0,400.0,64.0,72.0,1404.0,1695.0,24.0,39.0,776.0,234.0,1370.0,32.0,315.0,111.0,188.0,96.0,14.0,48.0,506.0,13.0,383.0,20.0,2066.0,744.0,3379.0,242.0,24.0,3963.0,25.0,2109.0,132.0,181.0,7447.0,103.0,0.0,75.0,14.0,3741.0,312.0,96.0,20.0,169.0,119.0,16.0,98.0,310.0,320.0,1295.0,313.0,38.0,19.0,7.0,12.0,2365.0,172.0,179.0,192.0,134.0,584.0,3942.0,57.0,2130.0,2203.0,67.0,382.0,838.0,2507.0,678.0,4.0,215.0,131.0,2916.0,902.0,2856.0,9.0,1090.0,134.0,2014.0,764.0,2048.0,3049.0,43.0,5.0,2155.0,2258.0,1.0,2448.0,89.0,71.0,31.0,21.0,706.0,917.0,1613.0,23.0,194.0,356.0,53.0,142.0,318.0,935.0,162.0,4466.0,69.0,0.0,126.0,1559.0,1181.0,1171.0,64.0,328.0,369.0,1148.0,789.0,12.0,87.0,258.0,5.0,87.0,749.0,57.0,6854.0,438.0,2756.0,118.0,61.0,62.0,45.0,17.0,171.0,103.0,97.0,484.0,1093.0,516.0,128.0,254.0,57.0,30.0,1604.0,0.0,30.0,1152.0,97.0,726.0,190.0,28.0,349.0,906.0,115.0,27055.0,717.0,1503.0,20.0,246.0,76.0,291.0,8.0,4.0,256.0,501.0,1090.0,1006.0,54.0,4.0,73.0,108.0,42.0,72.0,29.0,3167.0,12.0,695.0,37.0,71.0,21.0,1.0,492.0,587.0,538.0,1106.0,143.0,0.0,7.0,1037.0,59.0,3.0,34.0,132.0,51.0,70.0,107.0,412.0,0.0,264.0,84.0,56.0,19.0,1370.0,2.0,51.0,44.0,842.0,11.0,3990.0,2206.0,486.0,78.0,15.0,1590.0,923.0,162.0,442.0,155.0,37.0,15.0,139.0,112.0,61.0,31.0,4617.0,0.0,714.0,701.0,237.0,396.0,229.0,201.0,486.0,544.0,11.0,74.0,223.0,388.0,32.0,12.0,126.0,42.0,5.0,575.0,246.0,88.0,81.0,90.0,371.0,506.0,14.0,2807.0,13.0,367.0,404.0,6.0,15.0,334.0,55.0,63.0,164.0,227.0,1876.0,496.0385807785,5634.0,826.0,2017-03-19,,2017-11,496.0236360929093,604.7529714398801, +126,126,138.0,2.0,95.0,5.0,191.0,253.0,400.0,121.0,122.0,504.0,3219.0,3091.0,34.0,495.0,957.0,36.0,50.0,233.0,3414.0,55.0,22.0,1095.0,7931.0,127.0,502.0,99.0,1807.0,634.0,45.0,38.0,28.0,106.0,1631.0,802.0,1015.0,2598.0,67.0,30.0,7.0,87.0,578.0,105.0,60.0,1351.0,1435.0,33.0,18.0,990.0,264.0,1472.0,29.0,168.0,740.0,167.0,85.0,29.0,44.0,565.0,10.0,293.0,19.0,1884.0,710.0,3289.0,263.0,19.0,3610.0,18.0,2034.0,116.0,201.0,6937.0,160.0,1.0,87.0,26.0,3753.0,406.0,98.0,18.0,151.0,150.0,27.0,110.0,425.0,327.0,1198.0,440.0,43.0,19.0,6.0,6.0,2290.0,205.0,194.0,172.0,135.0,629.0,4130.0,63.0,2247.0,2372.0,66.0,381.0,1023.0,2554.0,542.0,5.0,166.0,142.0,2801.0,948.0,2683.0,11.0,1146.0,118.0,2037.0,953.0,2171.0,3212.0,26.0,4.0,1921.0,2042.0,4.0,3017.0,80.0,74.0,13.0,20.0,706.0,935.0,1636.0,21.0,164.0,284.0,32.0,103.0,306.0,920.0,177.0,4438.0,79.0,1.0,127.0,1492.0,1181.0,1189.0,66.0,302.0,1008.0,1189.0,721.0,35.0,124.0,258.0,3.0,75.0,931.0,60.0,6728.0,410.0,2745.0,107.0,68.0,65.0,41.0,22.0,160.0,109.0,117.0,511.0,1023.0,531.0,135.0,287.0,43.0,30.0,1689.0,0.0,31.0,1111.0,90.0,893.0,183.0,24.0,343.0,834.0,108.0,2261.0,788.0,1408.0,26.0,231.0,83.0,257.0,14.0,12.0,529.0,457.0,983.0,902.0,31.0,3.0,77.0,91.0,43.0,48.0,17.0,3100.0,15.0,1233.0,32.0,46.0,24.0,7.0,577.0,611.0,489.0,1128.0,164.0,0.0,15.0,1104.0,53.0,4.0,39.0,154.0,37.0,64.0,122.0,334.0,1.0,358.0,82.0,51.0,25.0,1421.0,2.0,51.0,47.0,710.0,11.0,3188.0,2325.0,470.0,73.0,26.0,1634.0,931.0,163.0,532.0,141.0,43.0,9.0,102.0,95.0,47.0,46.0,4600.0,0.0,801.0,665.0,318.0,334.0,206.0,497.0,516.0,487.0,9.0,70.0,246.0,355.0,38.0,15.0,114.0,43.0,8.0,526.0,274.0,93.0,94.0,82.0,361.0,518.0,16.0,2737.0,22.0,268.0,419.0,5.0,35.0,325.0,67.0,40.0,144.0,220.0,2025.0,468.2770829764,5459.0,856.0,2017-03-26,,2017-12,468.31176839020236,890.8111256382401, +127,127,130.0,2.0,112.0,7.0,138.0,198.0,394.0,101.0,80.0,401.0,2838.0,2805.0,44.0,513.0,849.0,35.0,36.0,217.0,3879.0,38.0,17.0,626.0,7325.0,109.0,524.0,96.0,1755.0,611.0,39.0,33.0,26.0,89.0,1457.0,587.0,923.0,2429.0,70.0,33.0,6.0,36.0,369.0,126.0,33.0,1179.0,1343.0,30.0,20.0,884.0,229.0,1427.0,28.0,151.0,738.0,196.0,66.0,21.0,39.0,665.0,25.0,293.0,18.0,1830.0,591.0,3939.0,234.0,30.0,3252.0,16.0,1917.0,142.0,278.0,6068.0,152.0,2.0,76.0,19.0,3464.0,360.0,103.0,9.0,152.0,109.0,25.0,85.0,283.0,319.0,1192.0,390.0,39.0,29.0,11.0,12.0,2278.0,189.0,202.0,167.0,111.0,563.0,4161.0,81.0,2251.0,2040.0,65.0,317.0,793.0,2292.0,548.0,1.0,178.0,106.0,2632.0,823.0,2457.0,7.0,981.0,119.0,1969.0,830.0,1879.0,2930.0,37.0,9.0,1788.0,1978.0,5.0,2260.0,65.0,58.0,27.0,11.0,650.0,928.0,1466.0,28.0,188.0,287.0,27.0,121.0,287.0,945.0,203.0,4045.0,68.0,1.0,137.0,1408.0,1081.0,947.0,55.0,305.0,403.0,1145.0,792.0,17.0,86.0,184.0,2.0,131.0,777.0,60.0,6251.0,363.0,2743.0,87.0,76.0,69.0,15.0,27.0,138.0,86.0,104.0,462.0,980.0,439.0,118.0,233.0,53.0,26.0,1206.0,0.0,28.0,1019.0,87.0,898.0,151.0,27.0,416.0,804.0,93.0,427.0,660.0,1347.0,13.0,213.0,83.0,254.0,17.0,7.0,302.0,458.0,1099.0,895.0,51.0,8.0,65.0,67.0,51.0,48.0,25.0,3013.0,14.0,740.0,47.0,56.0,20.0,3.0,453.0,602.0,401.0,1081.0,168.0,0.0,9.0,1000.0,38.0,4.0,30.0,145.0,26.0,56.0,83.0,287.0,2.0,285.0,90.0,42.0,28.0,1239.0,3.0,68.0,45.0,791.0,8.0,3044.0,2020.0,496.0,59.0,18.0,1346.0,939.0,139.0,526.0,135.0,29.0,4.0,123.0,95.0,48.0,39.0,4170.0,0.0,653.0,550.0,346.0,306.0,222.0,264.0,533.0,368.0,11.0,63.0,210.0,381.0,40.0,16.0,111.0,45.0,6.0,525.0,271.0,94.0,123.0,71.0,354.0,450.0,23.0,2701.0,5.0,273.0,356.0,3.0,20.0,307.0,56.0,44.0,112.0,191.0,1728.0,383.41073550059997,5131.0,790.0,2017-04-02,,2017-13,383.43168597285285,383.41073550059997, +128,128,141.0,0.0,95.0,6.0,128.0,216.0,373.0,99.0,84.0,464.0,2415.0,2613.0,30.0,446.0,878.0,56.0,53.0,206.0,3497.0,34.0,25.0,629.0,6483.0,121.0,491.0,76.0,1641.0,590.0,41.0,35.0,35.0,121.0,1419.0,588.0,812.0,2534.0,64.0,51.0,5.0,42.0,477.0,111.0,53.0,1243.0,1334.0,15.0,12.0,970.0,199.0,1311.0,25.0,123.0,1631.0,152.0,71.0,22.0,55.0,745.0,27.0,294.0,18.0,1873.0,601.0,3902.0,184.0,23.0,2840.0,24.0,1761.0,218.0,178.0,5343.0,111.0,0.0,56.0,15.0,3248.0,400.0,89.0,24.0,120.0,111.0,26.0,82.0,276.0,284.0,1307.0,598.0,35.0,26.0,7.0,27.0,2174.0,186.0,232.0,170.0,92.0,613.0,4283.0,70.0,2248.0,2085.0,47.0,331.0,770.0,2152.0,436.0,2.0,184.0,108.0,2561.0,844.0,2461.0,5.0,1079.0,110.0,1865.0,796.0,1863.0,2495.0,29.0,7.0,1771.0,2013.0,4.0,2105.0,63.0,63.0,20.0,17.0,656.0,849.0,1844.0,20.0,156.0,286.0,36.0,102.0,259.0,976.0,156.0,3917.0,61.0,1.0,106.0,1250.0,1019.0,951.0,54.0,271.0,367.0,1160.0,729.0,14.0,84.0,200.0,6.0,83.0,766.0,57.0,5906.0,352.0,2899.0,91.0,52.0,45.0,11.0,42.0,141.0,95.0,124.0,439.0,949.0,464.0,105.0,255.0,42.0,24.0,1183.0,0.0,25.0,1102.0,46.0,777.0,144.0,17.0,330.0,742.0,105.0,272.0,626.0,1325.0,21.0,189.0,53.0,209.0,31.0,9.0,298.0,466.0,942.0,826.0,35.0,5.0,63.0,98.0,36.0,40.0,25.0,2890.0,13.0,715.0,23.0,35.0,19.0,5.0,547.0,638.0,407.0,967.0,138.0,0.0,11.0,1032.0,35.0,0.0,28.0,127.0,39.0,45.0,73.0,288.0,0.0,277.0,89.0,71.0,29.0,1303.0,4.0,78.0,43.0,724.0,7.0,2696.0,1900.0,478.0,42.0,24.0,1223.0,839.0,144.0,495.0,148.0,36.0,7.0,90.0,72.0,38.0,28.0,4056.0,0.0,496.0,582.0,351.0,348.0,254.0,419.0,398.0,379.0,19.0,53.0,191.0,399.0,32.0,15.0,146.0,52.0,13.0,491.0,209.0,72.0,134.0,71.0,281.0,464.0,39.0,2218.0,11.0,272.0,350.0,3.0,15.0,337.0,43.0,66.0,118.0,179.0,1923.0,152.1573741985,5259.0,751.0,2017-04-09,,2017-14,152.1207446409744,152.15737419850004, +129,129,116.0,1.0,74.0,7.0,166.0,171.0,347.0,74.0,76.0,406.0,1937.0,2458.0,32.0,367.0,978.0,45.0,28.0,181.0,3088.0,24.0,21.0,618.0,7252.0,134.0,415.0,79.0,1855.0,504.0,30.0,39.0,30.0,91.0,1571.0,471.0,717.0,2252.0,57.0,32.0,8.0,31.0,493.0,100.0,47.0,1032.0,1166.0,18.0,9.0,732.0,184.0,1456.0,32.0,93.0,989.0,140.0,59.0,22.0,40.0,458.0,19.0,320.0,16.0,1860.0,660.0,8087.0,257.0,24.0,2514.0,23.0,1583.0,157.0,237.0,4767.0,94.0,4.0,49.0,19.0,3327.0,313.0,116.0,17.0,107.0,90.0,36.0,72.0,762.0,240.0,1042.0,288.0,41.0,20.0,8.0,18.0,2014.0,168.0,166.0,187.0,104.0,476.0,4409.0,56.0,2263.0,1784.0,36.0,277.0,702.0,2496.0,415.0,4.0,153.0,93.0,2209.0,739.0,2419.0,7.0,877.0,81.0,1561.0,688.0,1368.0,1830.0,24.0,8.0,1313.0,1895.0,1.0,1906.0,72.0,48.0,21.0,10.0,610.0,790.0,1332.0,14.0,138.0,306.0,20.0,81.0,268.0,762.0,120.0,3562.0,84.0,0.0,87.0,1184.0,1228.0,976.0,38.0,224.0,296.0,1020.0,593.0,16.0,77.0,176.0,5.0,100.0,716.0,49.0,5578.0,311.0,2242.0,78.0,56.0,31.0,14.0,30.0,102.0,87.0,102.0,420.0,775.0,334.0,155.0,237.0,35.0,18.0,896.0,0.0,24.0,885.0,55.0,675.0,158.0,31.0,242.0,626.0,88.0,187.0,526.0,1237.0,20.0,128.0,68.0,221.0,19.0,13.0,210.0,456.0,816.0,724.0,50.0,5.0,62.0,74.0,50.0,42.0,20.0,2600.0,8.0,653.0,33.0,59.0,17.0,6.0,1112.0,485.0,323.0,866.0,154.0,0.0,10.0,799.0,44.0,1.0,28.0,112.0,51.0,34.0,60.0,260.0,2.0,230.0,72.0,36.0,22.0,1141.0,2.0,67.0,47.0,661.0,7.0,2686.0,1710.0,420.0,48.0,16.0,1306.0,855.0,121.0,400.0,132.0,28.0,11.0,111.0,97.0,34.0,29.0,4954.0,0.0,717.0,523.0,243.0,324.0,158.0,311.0,505.0,281.0,7.0,47.0,175.0,342.0,37.0,13.0,108.0,31.0,3.0,466.0,197.0,80.0,77.0,97.0,233.0,419.0,27.0,1732.0,8.0,340.0,299.0,9.0,24.0,282.0,42.0,37.0,121.0,199.0,1771.0,0.0,4842.0,644.0,2017-04-16,,2017-15,0.02300087020603314,326.6276964963, +130,130,169.0,3.0,115.0,2.0,157.0,191.0,522.0,51.0,85.0,284.0,2699.0,2059.0,56.0,370.0,818.0,64.0,31.0,228.0,4595.0,55.0,19.0,642.0,6483.0,95.0,462.0,107.0,1617.0,586.0,38.0,33.0,29.0,106.0,1543.0,646.0,715.0,1951.0,42.0,38.0,12.0,55.0,274.0,56.0,58.0,1209.0,939.0,32.0,11.0,611.0,204.0,1075.0,26.0,130.0,89.0,255.0,93.0,22.0,57.0,500.0,23.0,233.0,13.0,2274.0,699.0,3930.0,587.0,33.0,4062.0,32.0,1931.0,90.0,246.0,5535.0,146.0,1.0,72.0,21.0,3600.0,335.0,137.0,18.0,147.0,152.0,21.0,93.0,395.0,288.0,1227.0,308.0,47.0,40.0,1.0,5.0,2184.0,153.0,216.0,174.0,116.0,355.0,5198.0,56.0,2741.0,2084.0,65.0,303.0,696.0,2034.0,433.0,1.0,166.0,84.0,2251.0,696.0,2117.0,7.0,800.0,122.0,1919.0,801.0,1812.0,2612.0,119.0,9.0,1674.0,2056.0,0.0,2083.0,76.0,57.0,20.0,21.0,578.0,748.0,1498.0,27.0,156.0,249.0,48.0,100.0,227.0,738.0,214.0,2831.0,65.0,0.0,118.0,1140.0,1106.0,891.0,61.0,250.0,290.0,1106.0,747.0,25.0,107.0,175.0,4.0,70.0,997.0,57.0,6818.0,396.0,2015.0,75.0,49.0,45.0,9.0,22.0,98.0,61.0,122.0,424.0,830.0,415.0,153.0,252.0,41.0,21.0,901.0,213.0,18.0,1105.0,62.0,785.0,143.0,45.0,305.0,695.0,105.0,100.0,695.0,1297.0,23.0,165.0,58.0,207.0,30.0,5.0,246.0,455.0,925.0,953.0,34.0,3.0,63.0,83.0,342.0,45.0,31.0,2762.0,28.0,643.0,38.0,38.0,42.0,5.0,439.0,529.0,382.0,1063.0,128.0,21.0,21.0,931.0,52.0,3.0,26.0,142.0,38.0,37.0,61.0,235.0,2.0,208.0,81.0,39.0,21.0,1168.0,2.0,72.0,47.0,675.0,7.0,3020.0,1701.0,339.0,69.0,18.0,1600.0,725.0,125.0,443.0,140.0,24.0,40.0,111.0,62.0,64.0,82.0,4496.0,50.0,472.0,549.0,209.0,398.0,252.0,205.0,434.0,354.0,8.0,64.0,189.0,308.0,36.0,23.0,118.0,47.0,3.0,432.0,218.0,68.0,67.0,82.0,257.0,493.0,44.0,2498.0,7.0,234.0,315.0,3.0,22.0,283.0,61.0,51.0,173.0,228.0,1777.0,552.5599273931,5083.0,704.0,2017-10-22,,2017-42,552.4496506345868,599.94137622042, +131,131,128.0,0.0,111.0,4.0,210.0,171.0,533.0,64.0,73.0,268.0,2372.0,2070.0,39.0,346.0,793.0,57.0,23.0,185.0,3516.0,83.0,9.0,622.0,6260.0,121.0,443.0,94.0,1460.0,630.0,32.0,41.0,38.0,108.0,1293.0,529.0,865.0,2344.0,52.0,19.0,11.0,125.0,265.0,68.0,34.0,1138.0,1064.0,18.0,12.0,578.0,206.0,1088.0,37.0,146.0,68.0,235.0,75.0,27.0,48.0,493.0,10.0,273.0,11.0,1913.0,1204.0,4107.0,401.0,20.0,3699.0,17.0,1763.0,73.0,359.0,5061.0,143.0,0.0,88.0,13.0,3549.0,302.0,118.0,27.0,116.0,164.0,20.0,95.0,381.0,230.0,1231.0,297.0,23.0,69.0,5.0,15.0,2291.0,179.0,218.0,154.0,116.0,307.0,5134.0,81.0,2201.0,1982.0,49.0,334.0,667.0,1933.0,449.0,3.0,199.0,79.0,2212.0,764.0,2269.0,11.0,871.0,102.0,1855.0,791.0,1800.0,2479.0,88.0,6.0,1689.0,2077.0,3.0,2494.0,73.0,59.0,10.0,12.0,668.0,821.0,1516.0,25.0,134.0,318.0,21.0,111.0,230.0,682.0,230.0,2750.0,60.0,3.0,98.0,1201.0,1265.0,861.0,58.0,261.0,296.0,1151.0,735.0,34.0,113.0,206.0,4.0,70.0,962.0,52.0,6681.0,346.0,2102.0,91.0,66.0,36.0,10.0,25.0,101.0,100.0,83.0,387.0,916.0,393.0,179.0,259.0,30.0,20.0,927.0,218.0,23.0,1050.0,65.0,615.0,119.0,29.0,323.0,678.0,126.0,206.0,649.0,1268.0,21.0,168.0,85.0,223.0,23.0,10.0,251.0,504.0,852.0,869.0,49.0,0.0,56.0,70.0,290.0,93.0,22.0,2682.0,18.0,585.0,28.0,38.0,32.0,5.0,450.0,559.0,341.0,942.0,156.0,22.0,31.0,996.0,50.0,10.0,32.0,138.0,28.0,64.0,86.0,209.0,0.0,223.0,93.0,40.0,16.0,1081.0,1.0,68.0,28.0,718.0,15.0,3459.0,1659.0,360.0,68.0,15.0,1729.0,693.0,124.0,459.0,116.0,17.0,30.0,106.0,56.0,39.0,22.0,4396.0,43.0,504.0,462.0,240.0,291.0,238.0,174.0,402.0,334.0,13.0,45.0,184.0,327.0,33.0,26.0,111.0,41.0,4.0,409.0,208.0,75.0,60.0,103.0,306.0,438.0,29.0,2136.0,8.0,230.0,284.0,5.0,22.0,282.0,34.0,41.0,135.0,175.0,1852.0,508.14027345970004,4949.0,659.0,2017-10-29,,2017-43,508.31371262293897,573.54913880624, +132,132,116.0,1.0,97.0,13.0,217.0,153.0,399.0,90.0,98.0,289.0,2504.0,2065.0,35.0,378.0,912.0,62.0,33.0,178.0,4476.0,39.0,19.0,548.0,6059.0,135.0,436.0,111.0,1412.0,503.0,35.0,20.0,31.0,119.0,1137.0,439.0,675.0,1889.0,62.0,22.0,22.0,78.0,358.0,51.0,52.0,1104.0,893.0,39.0,8.0,505.0,170.0,1125.0,36.0,143.0,77.0,174.0,73.0,29.0,62.0,570.0,20.0,279.0,27.0,1820.0,1037.0,4092.0,324.0,22.0,3716.0,23.0,1665.0,83.0,237.0,5052.0,82.0,3.0,68.0,9.0,3634.0,339.0,118.0,28.0,143.0,123.0,9.0,78.0,414.0,280.0,1268.0,337.0,34.0,32.0,4.0,6.0,2066.0,160.0,219.0,160.0,108.0,379.0,5568.0,64.0,2399.0,2330.0,54.0,260.0,700.0,1724.0,382.0,3.0,177.0,78.0,1966.0,707.0,2175.0,10.0,625.0,84.0,1655.0,759.0,1625.0,2184.0,106.0,10.0,1605.0,2071.0,0.0,1933.0,86.0,58.0,27.0,21.0,764.0,821.0,1293.0,18.0,140.0,259.0,30.0,100.0,202.0,641.0,243.0,2805.0,60.0,4.0,100.0,1157.0,1256.0,747.0,59.0,241.0,313.0,1005.0,681.0,21.0,90.0,167.0,3.0,84.0,1010.0,50.0,6553.0,272.0,1754.0,78.0,61.0,49.0,21.0,28.0,119.0,86.0,74.0,427.0,812.0,333.0,150.0,238.0,37.0,24.0,886.0,233.0,29.0,1037.0,59.0,438.0,123.0,30.0,292.0,679.0,141.0,121.0,595.0,1194.0,17.0,197.0,67.0,267.0,22.0,16.0,231.0,463.0,673.0,774.0,28.0,1.0,46.0,78.0,183.0,66.0,13.0,2498.0,8.0,764.0,27.0,40.0,36.0,5.0,383.0,447.0,356.0,941.0,135.0,22.0,31.0,824.0,78.0,3.0,23.0,158.0,53.0,58.0,73.0,226.0,1.0,260.0,99.0,49.0,17.0,1022.0,1.0,78.0,44.0,640.0,13.0,2855.0,1710.0,480.0,61.0,19.0,1815.0,664.0,137.0,404.0,133.0,23.0,32.0,86.0,73.0,47.0,23.0,4256.0,34.0,415.0,482.0,255.0,345.0,265.0,199.0,494.0,350.0,9.0,46.0,151.0,339.0,30.0,22.0,114.0,59.0,1.0,447.0,182.0,73.0,68.0,103.0,266.0,465.0,22.0,2029.0,7.0,251.0,316.0,6.0,16.0,299.0,75.0,54.0,144.0,152.0,1841.0,430.2752755272,4489.0,676.0,2017-11-05,,2017-44,430.06405979893043,553.83663686904, +133,133,159.0,3.0,147.0,3.0,235.0,206.0,441.0,93.0,75.0,378.0,2769.0,1996.0,31.0,376.0,749.0,84.0,28.0,176.0,3521.0,36.0,17.0,539.0,7148.0,119.0,470.0,90.0,1680.0,525.0,60.0,48.0,34.0,110.0,1572.0,625.0,786.0,2156.0,56.0,30.0,16.0,47.0,339.0,74.0,49.0,1246.0,807.0,27.0,16.0,622.0,176.0,1161.0,33.0,128.0,114.0,245.0,97.0,23.0,87.0,638.0,11.0,277.0,29.0,2069.0,648.0,3742.0,273.0,34.0,3922.0,21.0,1839.0,93.0,189.0,5398.0,125.0,2.0,76.0,8.0,3640.0,400.0,148.0,19.0,150.0,162.0,31.0,93.0,332.0,296.0,1312.0,348.0,52.0,29.0,10.0,6.0,2400.0,231.0,251.0,180.0,132.0,538.0,5168.0,67.0,2378.0,2206.0,47.0,338.0,743.0,2082.0,460.0,1.0,185.0,96.0,2200.0,762.0,2227.0,10.0,835.0,73.0,1970.0,854.0,1935.0,2765.0,124.0,10.0,2077.0,2242.0,3.0,2201.0,93.0,54.0,21.0,28.0,668.0,809.0,1566.0,27.0,126.0,343.0,28.0,95.0,230.0,723.0,345.0,2973.0,48.0,1.0,136.0,1314.0,1115.0,937.0,71.0,328.0,301.0,1189.0,841.0,29.0,119.0,220.0,5.0,68.0,924.0,101.0,7345.0,377.0,2029.0,80.0,66.0,35.0,21.0,16.0,138.0,116.0,76.0,415.0,1035.0,457.0,125.0,240.0,39.0,17.0,1029.0,226.0,24.0,1254.0,67.0,579.0,147.0,26.0,299.0,817.0,188.0,149.0,669.0,1252.0,22.0,156.0,71.0,211.0,11.0,6.0,230.0,475.0,814.0,840.0,35.0,2.0,62.0,93.0,127.0,40.0,22.0,3016.0,25.0,670.0,44.0,51.0,21.0,8.0,556.0,548.0,358.0,1050.0,175.0,17.0,45.0,1045.0,40.0,3.0,40.0,161.0,31.0,53.0,82.0,202.0,1.0,262.0,94.0,65.0,17.0,1356.0,4.0,73.0,52.0,683.0,18.0,3140.0,1925.0,460.0,64.0,31.0,2126.0,587.0,139.0,445.0,119.0,25.0,40.0,76.0,55.0,56.0,29.0,4829.0,71.0,388.0,521.0,300.0,442.0,324.0,228.0,387.0,367.0,13.0,51.0,209.0,375.0,28.0,13.0,142.0,51.0,12.0,512.0,195.0,82.0,92.0,84.0,258.0,544.0,24.0,2535.0,8.0,195.0,290.0,3.0,21.0,339.0,56.0,54.0,173.0,183.0,1883.0,688.8901862339,5052.0,664.0,2017-11-12,,2017-45,689.0982464045842,688.8901862339, +134,134,136.0,0.0,138.0,10.0,221.0,153.0,449.0,76.0,80.0,337.0,2995.0,2110.0,18.0,428.0,784.0,52.0,24.0,189.0,3445.0,46.0,15.0,600.0,6572.0,112.0,468.0,98.0,1729.0,554.0,45.0,29.0,32.0,107.0,1485.0,579.0,776.0,2226.0,44.0,14.0,13.0,55.0,316.0,76.0,53.0,1295.0,729.0,30.0,10.0,589.0,162.0,1172.0,52.0,155.0,105.0,227.0,102.0,22.0,60.0,647.0,15.0,269.0,16.0,2155.0,644.0,3828.0,245.0,26.0,4191.0,35.0,1845.0,100.0,177.0,6222.0,149.0,4.0,74.0,22.0,3737.0,370.0,113.0,25.0,158.0,166.0,28.0,70.0,369.0,338.0,1239.0,343.0,48.0,39.0,9.0,4.0,2271.0,239.0,252.0,293.0,153.0,509.0,9523.0,71.0,2151.0,2254.0,63.0,324.0,728.0,2157.0,476.0,0.0,172.0,90.0,2263.0,828.0,2301.0,10.0,853.0,111.0,2150.0,870.0,1989.0,2730.0,86.0,10.0,1821.0,2264.0,0.0,2412.0,85.0,49.0,24.0,26.0,695.0,821.0,1538.0,18.0,150.0,287.0,27.0,102.0,246.0,697.0,289.0,3139.0,64.0,1.0,112.0,1258.0,1213.0,934.0,63.0,341.0,352.0,1156.0,815.0,27.0,146.0,195.0,11.0,75.0,1015.0,56.0,7568.0,385.0,2164.0,90.0,67.0,45.0,12.0,25.0,129.0,72.0,74.0,380.0,878.0,515.0,130.0,226.0,42.0,17.0,1028.0,194.0,34.0,1204.0,54.0,506.0,121.0,20.0,350.0,667.0,138.0,91.0,638.0,1401.0,23.0,172.0,79.0,203.0,19.0,7.0,230.0,525.0,965.0,685.0,39.0,1.0,55.0,99.0,127.0,45.0,28.0,2881.0,20.0,689.0,30.0,44.0,32.0,8.0,486.0,548.0,393.0,1028.0,161.0,23.0,52.0,1069.0,46.0,6.0,28.0,207.0,52.0,55.0,56.0,268.0,0.0,248.0,99.0,67.0,24.0,1143.0,3.0,79.0,28.0,653.0,11.0,3106.0,1957.0,465.0,74.0,83.0,2189.0,582.0,153.0,475.0,167.0,20.0,58.0,109.0,81.0,61.0,18.0,4927.0,64.0,445.0,511.0,297.0,404.0,279.0,226.0,437.0,436.0,12.0,41.0,185.0,360.0,30.0,19.0,135.0,47.0,10.0,494.0,200.0,73.0,81.0,82.0,336.0,429.0,17.0,2531.0,9.0,215.0,283.0,4.0,24.0,351.0,70.0,58.0,143.0,171.0,1820.0,594.9406249256,4891.0,674.0,2017-11-19,,2017-46,594.7975930860166,730.1978008101801, +135,135,214.0,0.0,115.0,6.0,210.0,157.0,379.0,85.0,79.0,366.0,3022.0,1933.0,31.0,476.0,843.0,69.0,37.0,179.0,3391.0,57.0,10.0,582.0,6303.0,135.0,463.0,100.0,1605.0,547.0,50.0,30.0,32.0,101.0,1657.0,621.0,600.0,2050.0,64.0,21.0,16.0,40.0,301.0,512.0,44.0,1300.0,737.0,31.0,7.0,624.0,194.0,1077.0,37.0,144.0,102.0,239.0,118.0,39.0,55.0,523.0,19.0,272.0,23.0,2254.0,646.0,3328.0,224.0,38.0,3985.0,28.0,1802.0,110.0,184.0,6312.0,135.0,0.0,88.0,15.0,3734.0,368.0,128.0,12.0,136.0,138.0,33.0,99.0,320.0,369.0,1330.0,360.0,31.0,36.0,7.0,89.0,2145.0,201.0,185.0,190.0,82.0,483.0,5452.0,97.0,1983.0,2398.0,59.0,317.0,673.0,2162.0,383.0,3.0,179.0,98.0,2139.0,777.0,2387.0,4.0,842.0,101.0,2009.0,818.0,1865.0,2695.0,123.0,5.0,1892.0,2267.0,7.0,2340.0,96.0,55.0,17.0,33.0,648.0,782.0,1519.0,17.0,122.0,478.0,27.0,103.0,177.0,656.0,280.0,3018.0,41.0,3.0,113.0,1410.0,1125.0,875.0,54.0,260.0,363.0,1091.0,689.0,22.0,139.0,196.0,13.0,80.0,909.0,43.0,7428.0,341.0,2086.0,91.0,71.0,36.0,24.0,20.0,79.0,101.0,78.0,454.0,944.0,440.0,185.0,226.0,42.0,44.0,1049.0,179.0,28.0,1120.0,67.0,570.0,112.0,40.0,322.0,663.0,104.0,105.0,644.0,1390.0,37.0,155.0,77.0,264.0,12.0,9.0,274.0,490.0,875.0,679.0,37.0,3.0,44.0,117.0,90.0,52.0,32.0,2852.0,21.0,716.0,56.0,53.0,20.0,6.0,1346.0,636.0,337.0,985.0,170.0,25.0,50.0,994.0,58.0,9.0,24.0,180.0,30.0,76.0,80.0,262.0,1.0,252.0,102.0,66.0,24.0,1183.0,1.0,116.0,39.0,582.0,20.0,3513.0,1957.0,502.0,56.0,32.0,2065.0,585.0,155.0,473.0,148.0,31.0,49.0,119.0,68.0,58.0,27.0,4873.0,84.0,1029.0,570.0,305.0,386.0,265.0,206.0,372.0,330.0,11.0,47.0,169.0,346.0,40.0,9.0,120.0,75.0,15.0,502.0,187.0,70.0,92.0,80.0,288.0,459.0,21.0,2607.0,7.0,201.0,255.0,3.0,22.0,274.0,69.0,65.0,148.0,192.0,1862.0,613.9787249233,4846.0,1004.0,2017-11-26,,2017-47,613.9677708552113,609.8062813420801, +136,136,152.0,0.0,137.0,8.0,222.0,173.0,337.0,70.0,87.0,348.0,2787.0,2029.0,31.0,388.0,772.0,45.0,33.0,185.0,2931.0,50.0,22.0,782.0,6404.0,110.0,382.0,109.0,1520.0,543.0,33.0,22.0,22.0,95.0,1662.0,582.0,665.0,1909.0,49.0,23.0,5.0,42.0,270.0,70.0,46.0,1032.0,694.0,28.0,9.0,533.0,168.0,1007.0,62.0,105.0,107.0,247.0,140.0,41.0,57.0,595.0,33.0,262.0,42.0,2886.0,617.0,4370.0,288.0,31.0,4029.0,19.0,1668.0,102.0,159.0,5696.0,115.0,0.0,64.0,7.0,3546.0,293.0,129.0,15.0,147.0,122.0,38.0,83.0,328.0,508.0,1259.0,407.0,40.0,39.0,12.0,41.0,1924.0,192.0,161.0,181.0,91.0,443.0,5849.0,107.0,1802.0,1923.0,40.0,267.0,552.0,1966.0,483.0,0.0,128.0,85.0,2065.0,692.0,2075.0,12.0,711.0,84.0,1960.0,902.0,1865.0,3415.0,80.0,4.0,1651.0,2078.0,0.0,2067.0,94.0,48.0,20.0,18.0,660.0,813.0,1431.0,19.0,135.0,279.0,21.0,112.0,228.0,644.0,325.0,3044.0,48.0,0.0,88.0,1154.0,1275.0,832.0,52.0,228.0,375.0,969.0,738.0,24.0,109.0,190.0,10.0,52.0,1113.0,49.0,7284.0,344.0,1875.0,101.0,70.0,41.0,6.0,26.0,105.0,69.0,99.0,406.0,916.0,417.0,190.0,197.0,45.0,21.0,964.0,207.0,14.0,1090.0,60.0,523.0,105.0,23.0,266.0,622.0,109.0,82.0,613.0,1263.0,19.0,132.0,71.0,195.0,18.0,12.0,210.0,479.0,823.0,549.0,39.0,4.0,58.0,122.0,88.0,45.0,19.0,2481.0,14.0,902.0,40.0,51.0,21.0,7.0,541.0,550.0,390.0,858.0,132.0,39.0,45.0,946.0,49.0,1.0,15.0,142.0,40.0,61.0,77.0,256.0,3.0,235.0,104.0,64.0,19.0,962.0,2.0,158.0,29.0,567.0,9.0,2869.0,1738.0,528.0,67.0,15.0,2126.0,494.0,149.0,447.0,123.0,25.0,33.0,99.0,72.0,55.0,20.0,4415.0,68.0,364.0,469.0,313.0,370.0,272.0,240.0,377.0,510.0,11.0,55.0,194.0,312.0,19.0,14.0,122.0,38.0,5.0,499.0,237.0,80.0,111.0,75.0,271.0,428.0,21.0,2442.0,9.0,196.0,280.0,2.0,22.0,282.0,52.0,55.0,146.0,171.0,2097.0,654.4346874182,4295.0,684.0,2017-12-03,,2017-48,654.5982662958008,641.0800564195001, +137,137,108.0,3.0,152.0,14.0,218.0,153.0,324.0,59.0,70.0,361.0,2975.0,2095.0,34.0,397.0,806.0,64.0,38.0,161.0,2852.0,78.0,17.0,562.0,6517.0,182.0,382.0,88.0,1419.0,501.0,36.0,23.0,27.0,78.0,1438.0,533.0,676.0,1791.0,64.0,18.0,30.0,38.0,342.0,86.0,46.0,951.0,558.0,16.0,12.0,524.0,175.0,1134.0,220.0,114.0,93.0,152.0,125.0,33.0,51.0,534.0,14.0,255.0,24.0,1940.0,540.0,3030.0,257.0,25.0,4120.0,17.0,1575.0,100.0,179.0,5830.0,131.0,3.0,65.0,19.0,3168.0,247.0,128.0,19.0,157.0,158.0,32.0,89.0,311.0,375.0,1058.0,368.0,32.0,58.0,8.0,15.0,1940.0,187.0,208.0,171.0,94.0,372.0,4634.0,71.0,1795.0,1883.0,51.0,282.0,633.0,1761.0,478.0,3.0,136.0,87.0,1833.0,666.0,1858.0,14.0,718.0,90.0,1847.0,821.0,1634.0,2809.0,67.0,3.0,1695.0,2004.0,2.0,1856.0,83.0,63.0,17.0,25.0,550.0,792.0,1661.0,34.0,109.0,283.0,33.0,79.0,205.0,681.0,423.0,3306.0,50.0,4.0,79.0,1017.0,1067.0,875.0,60.0,188.0,296.0,974.0,665.0,21.0,101.0,161.0,5.0,51.0,952.0,49.0,7656.0,294.0,1489.0,80.0,66.0,34.0,20.0,20.0,76.0,74.0,79.0,402.0,843.0,381.0,196.0,176.0,54.0,25.0,833.0,192.0,13.0,965.0,56.0,549.0,117.0,35.0,292.0,572.0,91.0,99.0,477.0,1204.0,19.0,165.0,76.0,200.0,8.0,4.0,231.0,432.0,780.0,506.0,26.0,4.0,43.0,108.0,86.0,29.0,18.0,2323.0,18.0,638.0,45.0,43.0,29.0,6.0,535.0,469.0,313.0,722.0,145.0,27.0,37.0,883.0,29.0,4.0,30.0,146.0,20.0,51.0,65.0,243.0,2.0,244.0,108.0,67.0,20.0,898.0,2.0,139.0,36.0,538.0,10.0,2729.0,1594.0,411.0,77.0,15.0,2122.0,505.0,126.0,458.0,119.0,11.0,38.0,101.0,62.0,48.0,18.0,3970.0,67.0,444.0,430.0,260.0,332.0,224.0,212.0,337.0,493.0,13.0,42.0,185.0,346.0,22.0,11.0,150.0,47.0,18.0,426.0,169.0,74.0,104.0,64.0,271.0,426.0,16.0,2324.0,9.0,187.0,240.0,5.0,26.0,272.0,66.0,68.0,130.0,174.0,1584.0,628.1174949196,4034.0,624.0,2017-12-10,,2017-49,628.1423774218024,812.34918449318, +138,138,142.0,2.0,163.0,10.0,163.0,144.0,337.0,72.0,63.0,393.0,3248.0,2238.0,20.0,380.0,981.0,44.0,34.0,166.0,2647.0,33.0,5.0,643.0,6133.0,113.0,411.0,79.0,1411.0,503.0,38.0,39.0,41.0,95.0,1419.0,556.0,639.0,1766.0,59.0,28.0,12.0,27.0,355.0,73.0,32.0,989.0,639.0,24.0,17.0,494.0,151.0,979.0,58.0,142.0,118.0,173.0,87.0,22.0,37.0,514.0,7.0,277.0,31.0,1935.0,539.0,3137.0,275.0,20.0,4118.0,28.0,1601.0,80.0,164.0,6426.0,170.0,2.0,66.0,22.0,3165.0,285.0,134.0,16.0,191.0,164.0,21.0,83.0,367.0,338.0,980.0,266.0,30.0,47.0,16.0,11.0,1844.0,190.0,203.0,139.0,76.0,378.0,4690.0,70.0,1797.0,1875.0,206.0,269.0,606.0,1792.0,529.0,0.0,162.0,85.0,1853.0,664.0,1943.0,16.0,767.0,95.0,1740.0,687.0,1610.0,2641.0,55.0,12.0,1723.0,2075.0,1.0,1954.0,81.0,54.0,15.0,28.0,513.0,705.0,1430.0,33.0,127.0,319.0,19.0,95.0,199.0,591.0,198.0,3565.0,51.0,0.0,79.0,1084.0,978.0,857.0,46.0,174.0,319.0,914.0,589.0,20.0,118.0,166.0,2.0,73.0,816.0,37.0,7662.0,330.0,1672.0,90.0,66.0,28.0,28.0,22.0,92.0,66.0,79.0,410.0,849.0,415.0,125.0,178.0,47.0,33.0,899.0,199.0,12.0,981.0,68.0,537.0,134.0,23.0,267.0,588.0,98.0,121.0,484.0,1295.0,34.0,149.0,74.0,182.0,28.0,9.0,233.0,461.0,745.0,528.0,47.0,1.0,60.0,92.0,104.0,28.0,20.0,2311.0,12.0,610.0,38.0,64.0,20.0,6.0,388.0,445.0,314.0,823.0,160.0,53.0,55.0,889.0,37.0,4.0,25.0,144.0,32.0,66.0,71.0,215.0,0.0,238.0,88.0,45.0,21.0,906.0,2.0,91.0,30.0,588.0,18.0,2855.0,1652.0,483.0,84.0,10.0,2243.0,497.0,152.0,388.0,121.0,20.0,45.0,76.0,66.0,69.0,17.0,3959.0,57.0,477.0,479.0,306.0,304.0,213.0,173.0,304.0,560.0,7.0,45.0,182.0,384.0,33.0,21.0,127.0,46.0,7.0,429.0,239.0,65.0,94.0,77.0,307.0,446.0,13.0,2634.0,10.0,244.0,238.0,5.0,23.0,277.0,52.0,50.0,115.0,185.0,1450.0,806.4025934556,3982.0,599.0,2017-12-17,,2017-50,806.280306079763,800.34428705146, +139,139,112.0,1.0,89.0,9.0,101.0,88.0,250.0,50.0,34.0,239.0,2595.0,1747.0,16.0,211.0,690.0,23.0,69.0,89.0,1868.0,73.0,8.0,340.0,4205.0,94.0,220.0,62.0,987.0,365.0,26.0,21.0,15.0,76.0,1003.0,413.0,496.0,1348.0,30.0,13.0,16.0,54.0,303.0,88.0,31.0,692.0,441.0,15.0,14.0,348.0,127.0,733.0,51.0,146.0,55.0,133.0,45.0,16.0,28.0,411.0,9.0,212.0,16.0,1435.0,395.0,2084.0,227.0,9.0,3198.0,14.0,1288.0,60.0,265.0,5148.0,93.0,0.0,46.0,9.0,2561.0,190.0,89.0,13.0,150.0,85.0,17.0,58.0,232.0,198.0,712.0,190.0,15.0,22.0,5.0,6.0,1545.0,144.0,139.0,142.0,59.0,297.0,3806.0,27.0,1432.0,1354.0,47.0,191.0,473.0,1340.0,372.0,0.0,77.0,47.0,1304.0,516.0,1552.0,11.0,436.0,50.0,1219.0,434.0,1136.0,1581.0,30.0,1.0,1203.0,1515.0,0.0,1265.0,40.0,26.0,5.0,18.0,415.0,492.0,1019.0,26.0,76.0,198.0,15.0,57.0,174.0,473.0,122.0,2772.0,54.0,0.0,59.0,790.0,756.0,620.0,42.0,111.0,242.0,617.0,380.0,15.0,67.0,92.0,2.0,43.0,644.0,38.0,6051.0,255.0,1111.0,56.0,44.0,31.0,12.0,18.0,52.0,52.0,64.0,266.0,547.0,280.0,98.0,144.0,23.0,17.0,591.0,133.0,15.0,721.0,33.0,395.0,108.0,19.0,226.0,421.0,58.0,67.0,373.0,963.0,16.0,95.0,42.0,143.0,21.0,9.0,146.0,370.0,582.0,439.0,21.0,8.0,44.0,43.0,62.0,27.0,15.0,1850.0,5.0,450.0,41.0,41.0,6.0,5.0,293.0,325.0,272.0,475.0,122.0,17.0,74.0,587.0,35.0,2.0,15.0,92.0,22.0,32.0,55.0,201.0,1.0,155.0,57.0,28.0,16.0,740.0,0.0,60.0,6.0,429.0,16.0,2011.0,986.0,290.0,44.0,12.0,1555.0,331.0,72.0,301.0,94.0,13.0,29.0,65.0,49.0,23.0,15.0,2756.0,34.0,290.0,335.0,156.0,249.0,126.0,119.0,266.0,306.0,11.0,44.0,164.0,256.0,24.0,5.0,95.0,29.0,2.0,270.0,156.0,47.0,62.0,51.0,181.0,297.0,4.0,1957.0,7.0,140.0,138.0,0.0,17.0,220.0,46.0,43.0,83.0,121.0,1060.0,849.8422533610001,2770.0,472.0,2017-12-24,,2017-51,849.5840390516162,849.8422533610001, +140,140,195.0,0.0,55.0,3.0,193.0,127.0,194.0,58.0,53.0,249.0,3937.0,2765.0,14.0,291.0,1549.0,35.0,37.0,147.0,2721.0,563.0,12.0,405.0,4565.0,119.0,338.0,97.0,1261.0,481.0,19.0,34.0,18.0,57.0,842.0,211.0,940.0,1590.0,41.0,21.0,12.0,50.0,348.0,68.0,37.0,623.0,745.0,34.0,18.0,270.0,208.0,1228.0,56.0,280.0,57.0,87.0,38.0,25.0,88.0,640.0,25.0,236.0,21.0,1510.0,958.0,3189.0,489.0,20.0,5262.0,17.0,1518.0,65.0,244.0,7924.0,130.0,0.0,55.0,16.0,3809.0,219.0,88.0,18.0,260.0,98.0,20.0,68.0,322.0,275.0,649.0,314.0,47.0,41.0,8.0,9.0,1919.0,90.0,102.0,111.0,117.0,223.0,5699.0,43.0,2066.0,1397.0,74.0,227.0,702.0,1296.0,388.0,0.0,108.0,47.0,1537.0,533.0,1826.0,5.0,405.0,61.0,1144.0,462.0,1150.0,1850.0,38.0,10.0,1242.0,2000.0,2.0,1473.0,44.0,39.0,13.0,12.0,590.0,725.0,1151.0,15.0,101.0,228.0,30.0,72.0,165.0,498.0,105.0,3554.0,63.0,0.0,80.0,1034.0,1248.0,763.0,31.0,141.0,297.0,819.0,341.0,12.0,71.0,143.0,8.0,65.0,844.0,43.0,8691.0,224.0,1170.0,84.0,42.0,43.0,12.0,16.0,87.0,85.0,55.0,316.0,689.0,194.0,243.0,145.0,21.0,12.0,579.0,173.0,24.0,790.0,59.0,605.0,97.0,21.0,264.0,587.0,93.0,1011.0,382.0,1714.0,21.0,126.0,47.0,137.0,8.0,12.0,187.0,351.0,641.0,486.0,50.0,0.0,44.0,43.0,103.0,63.0,23.0,2031.0,3.0,706.0,51.0,47.0,22.0,10.0,516.0,343.0,305.0,582.0,96.0,24.0,113.0,589.0,49.0,3.0,12.0,90.0,31.0,46.0,75.0,285.0,4.0,236.0,103.0,27.0,15.0,834.0,4.0,82.0,23.0,640.0,16.0,7680.0,1362.0,513.0,46.0,23.0,2656.0,649.0,111.0,290.0,107.0,24.0,22.0,86.0,38.0,24.0,19.0,3582.0,27.0,563.0,954.0,224.0,487.0,116.0,102.0,410.0,298.0,13.0,70.0,103.0,345.0,23.0,12.0,87.0,38.0,1.0,364.0,167.0,83.0,62.0,71.0,228.0,515.0,18.0,2179.0,9.0,218.0,338.0,6.0,32.0,262.0,51.0,62.0,65.0,217.0,1428.0,483.3697778801,3547.0,654.0,2017-12-31,,2017-52,483.419251672633,586.68776563828, +141,141,190.0,0.0,124.0,5.0,264.0,160.0,274.0,78.0,72.0,309.0,4261.0,2879.0,25.0,426.0,1515.0,53.0,30.0,180.0,3289.0,69.0,9.0,894.0,6079.0,146.0,373.0,171.0,1788.0,665.0,38.0,21.0,26.0,116.0,1335.0,443.0,836.0,2080.0,434.0,20.0,15.0,54.0,339.0,108.0,48.0,915.0,805.0,58.0,10.0,573.0,174.0,1416.0,52.0,272.0,457.0,183.0,81.0,29.0,69.0,629.0,27.0,352.0,27.0,1972.0,1132.0,3353.0,362.0,39.0,5415.0,11.0,1846.0,134.0,238.0,8191.5,131.0,1.0,62.0,13.0,4076.0,266.0,146.0,16.0,255.0,98.0,28.0,178.0,446.0,307.0,1075.0,403.0,46.0,45.0,12.0,21.0,2221.0,215.0,206.0,184.0,117.0,402.0,6335.0,67.0,2118.0,2070.0,47.0,270.0,812.0,1576.0,480.0,7.0,157.0,64.0,2013.0,766.0,2401.0,15.0,688.0,164.0,1671.0,775.0,1650.0,2364.0,78.0,4.0,1530.0,2440.0,1.0,2012.0,74.0,49.0,35.0,42.0,714.0,801.0,1522.0,19.0,141.0,330.0,33.0,88.0,227.0,599.0,219.0,3945.0,68.0,1.0,108.0,1194.0,1854.0,996.0,53.0,231.0,345.0,1133.0,634.0,35.0,129.0,162.0,3.0,83.0,1406.0,58.0,10623.0,297.0,1605.0,87.0,65.0,37.0,13.0,33.0,154.0,100.0,82.0,442.0,928.0,326.0,243.0,182.0,30.0,33.0,791.0,280.0,28.0,1114.0,61.0,918.0,179.0,29.0,342.0,641.0,116.0,177.0,531.0,1781.0,28.0,152.0,75.0,237.0,29.0,13.0,245.0,454.0,895.0,509.16666666666674,56.0,2.0,53.0,70.0,112.0,71.0,19.0,2726.0,8.0,823.0,56.0,46.0,35.0,7.0,746.0,550.0,386.0,798.0,150.0,24.0,240.0,879.0,46.0,1.0,24.0,137.0,48.0,43.0,82.0,290.8,0.0,348.0,136.0,65.0,12.0,1139.0,1.0,102.0,41.0,794.0,13.0,4379.0,1669.0,597.0,87.0,14.0,2806.0,738.0,172.0,413.0,121.0,12.0,37.0,95.0,43.0,42.0,37.0,4481.0,49.0,608.0,628.0,337.0,419.0,201.0,198.0,491.0,862.0,5.0,56.0,186.0,411.0,44.0,21.0,171.0,40.0,5.0,499.0,202.0,89.0,57.0,99.0,308.0,479.0,24.0,2747.0,6.0,245.0,302.0,4.0,44.0,363.0,60.0,52.0,139.0,348.0,1806.0,944.2482962475999,4525.0,777.0,2018-01-07,,2018-1,944.2559108043088,932.7862267891201, +142,142,165.0,0.0,171.0,6.0,231.0,174.0,354.0,138.0,82.0,436.0,4204.0,2641.0,29.0,472.0,882.0,55.0,29.0,255.0,3651.0,46.0,16.0,488.0,6934.0,123.0,463.0,140.0,1877.0,659.0,44.0,34.0,21.0,112.0,1476.0,642.0,909.0,2195.0,83.0,41.0,13.0,40.0,254.0,146.0,34.0,1186.0,835.0,28.0,12.0,729.0,199.0,1256.0,63.0,193.0,125.0,220.0,116.0,30.0,58.0,588.0,12.0,312.0,25.0,2235.0,809.0,3300.0,270.0,21.0,4826.0,26.0,2001.0,121.0,193.0,8459.0,149.0,0.0,56.0,20.0,3762.0,314.0,197.0,21.0,171.0,182.0,30.0,139.0,367.0,334.0,1328.0,458.0,35.0,30.0,7.0,8.0,2212.0,343.0,263.0,223.0,96.0,509.0,5417.0,106.0,2156.0,2309.0,28.0,287.0,1001.0,1927.0,467.0,1.0,191.0,99.0,2238.0,705.0,2514.0,19.0,787.0,151.0,2172.0,861.0,2156.0,3057.0,122.0,7.0,1939.0,2545.0,3.0,2272.0,105.0,84.0,26.0,29.0,736.0,795.0,1658.0,16.0,407.0,395.0,20.0,108.0,248.0,640.0,342.0,3757.0,75.0,0.0,128.0,1316.0,1741.0,950.0,78.0,248.0,395.0,1198.0,797.0,23.0,119.0,190.0,3.0,59.0,1209.0,71.0,9074.0,340.0,1998.0,183.0,72.0,60.0,27.0,61.0,160.0,104.0,159.0,462.0,1001.0,455.0,136.0,186.0,57.0,32.0,1072.0,214.0,25.0,1247.0,70.0,902.0,157.0,44.0,316.0,647.0,137.0,145.0,627.0,1423.0,21.0,169.0,66.0,264.0,13.0,7.0,281.0,524.0,917.0,532.3333333333334,42.0,4.0,60.0,105.0,125.0,64.0,38.0,3197.0,23.0,857.0,40.0,59.0,26.0,9.0,569.0,625.0,431.0,877.0,169.0,28.0,167.0,1045.0,78.0,2.0,22.0,150.0,48.0,62.0,102.0,296.6,0.0,301.0,134.0,50.0,27.0,1142.0,4.0,110.0,38.0,657.0,13.0,4281.0,2046.0,590.0,71.0,20.0,2544.0,590.0,132.0,461.0,129.0,19.0,38.0,121.0,66.0,51.0,27.0,4910.0,68.0,496.0,605.0,328.0,490.0,280.0,238.0,454.0,504.0,6.0,62.0,188.0,441.0,29.0,17.0,179.0,32.0,8.0,542.0,259.0,81.0,98.0,87.0,358.0,481.0,20.0,3056.0,9.0,280.0,289.0,3.0,30.0,317.0,92.0,36.0,158.0,304.0,1835.0,1014.6843402764999,5037.0,717.0,2018-01-14,,2018-2,1014.6900483611703,978.47416702802, +143,143,166.0,1.0,188.0,18.0,228.0,195.0,434.0,103.0,80.0,418.0,4143.0,2584.0,20.0,547.0,849.0,76.0,29.0,229.0,5677.0,50.0,27.0,649.0,7150.0,111.0,486.0,132.0,1891.0,657.0,75.0,34.0,53.0,113.0,1820.0,730.0,915.0,2376.0,65.0,40.0,13.0,38.0,344.0,116.0,53.0,1267.0,940.0,46.0,18.0,733.0,209.0,1013.0,51.0,207.0,126.0,266.0,103.0,27.0,36.0,598.0,16.0,360.0,43.0,2408.0,947.0,3990.0,317.0,50.0,5466.0,23.0,1960.0,166.0,230.0,10393.0,119.0,1.0,65.0,17.0,3933.0,321.0,278.0,26.0,217.0,169.0,45.0,135.0,371.0,347.0,1484.0,352.0,43.0,32.0,6.0,17.0,2677.0,338.0,271.0,203.0,113.0,631.0,5680.0,105.0,2100.0,2384.0,36.0,323.0,972.0,2117.0,523.0,4.0,156.0,92.0,2254.0,788.0,2247.0,18.0,834.0,122.0,2272.0,904.0,2211.0,2991.0,180.0,11.0,2070.0,2560.0,2.0,2395.0,104.0,77.0,22.0,44.0,848.0,848.0,1786.0,29.0,231.0,358.0,30.0,121.0,253.0,714.0,328.0,3893.0,54.0,4.0,131.0,1396.0,1984.0,1165.0,57.0,279.0,351.0,1273.0,893.0,22.0,99.0,228.0,6.0,78.0,1304.0,39.0,8411.0,324.0,2421.0,99.0,102.0,59.0,55.0,90.0,224.0,123.0,102.0,546.0,1036.0,455.0,167.0,174.0,56.0,22.0,1072.0,215.0,33.0,1315.0,88.0,690.0,166.0,28.0,334.0,794.0,148.0,268.0,650.0,1385.0,21.0,181.0,106.0,270.0,10.0,6.0,263.0,505.0,1018.0,555.5,39.0,4.0,76.0,133.0,119.0,65.0,32.0,3019.0,8.0,783.0,42.0,63.0,24.0,6.0,600.0,709.0,394.0,936.0,156.0,25.0,193.0,1230.0,57.0,4.0,17.0,136.0,34.0,67.0,120.0,302.4,4.0,289.0,171.0,90.0,35.0,1187.0,3.0,109.0,25.0,740.0,7.0,3835.0,2155.0,637.0,80.0,18.0,3062.0,571.0,207.0,539.0,130.0,20.0,43.0,90.0,84.0,66.0,39.0,5167.0,62.0,464.0,589.0,375.0,852.0,308.0,293.0,440.0,450.0,13.0,69.0,218.0,394.0,49.0,27.0,199.0,52.0,16.0,532.0,209.0,71.0,110.0,95.0,326.0,509.0,27.0,3221.0,7.0,248.0,353.0,7.0,32.0,337.0,93.0,59.0,150.0,221.0,2044.0,1152.2383793633,4827.0,796.0,2018-01-21,,2018-3,1152.2814794689455,1045.2563214146, +144,144,150.0,0.0,173.0,7.0,248.0,177.0,425.0,131.0,84.0,448.0,4563.0,2941.0,39.0,471.0,867.0,78.0,37.0,214.0,3577.0,55.0,21.0,662.0,7056.0,140.0,476.0,104.0,1740.0,639.0,74.0,24.0,17.0,123.0,1551.0,708.0,981.0,2270.0,77.0,38.0,24.0,52.0,280.0,90.0,53.0,1317.0,786.0,24.0,12.0,722.0,217.0,1133.0,35.0,265.0,146.0,234.0,126.0,34.0,55.0,582.0,8.0,337.0,47.0,2237.0,681.0,3369.0,228.0,42.0,6223.0,61.0,2028.0,223.0,962.0,12145.0,194.0,1.0,91.0,22.0,4028.0,326.0,216.0,33.0,252.0,167.0,36.0,134.0,309.0,326.0,1455.0,1116.0,49.0,36.0,8.0,13.0,2799.0,286.0,304.0,218.0,103.0,546.0,5224.0,89.0,2186.0,2255.0,42.0,373.0,833.0,1974.0,523.0,2.0,177.0,90.0,2327.0,800.0,2422.0,9.0,884.0,136.0,2344.0,890.0,2335.0,2972.0,97.0,8.0,1961.0,2451.0,2.0,2407.0,122.0,82.0,22.0,38.0,768.0,792.0,1786.0,27.0,244.0,381.0,37.0,104.0,276.0,749.0,363.0,3965.0,36.0,4.0,124.0,1449.0,1427.0,1075.0,54.0,254.0,343.0,1286.0,896.0,24.0,105.0,197.0,7.0,68.0,1108.0,34.0,8640.0,430.0,2211.0,95.0,81.0,66.0,46.0,57.0,147.0,115.0,64.0,478.0,1021.0,446.0,157.0,233.0,59.0,37.0,1441.0,226.0,28.0,1342.0,69.0,668.0,162.0,32.0,305.0,789.0,199.0,139.0,617.0,1470.0,22.0,156.0,85.0,272.0,12.0,12.0,259.0,571.0,968.0,578.6666666666666,44.0,5.0,61.0,165.0,99.0,46.0,27.0,2997.0,17.0,833.0,47.0,69.0,73.0,10.0,543.0,719.0,450.0,807.0,157.0,21.0,150.0,1215.0,54.0,4.0,27.0,153.0,55.0,83.0,117.0,308.2,1.0,293.0,146.0,63.0,31.0,1220.0,2.0,95.0,32.0,679.0,10.0,3641.0,1968.0,653.0,70.0,20.0,3941.0,584.0,183.0,453.0,120.0,15.0,65.0,90.0,66.0,64.0,50.0,5105.0,60.0,543.0,595.0,363.0,520.0,300.0,244.0,948.0,472.0,15.0,63.0,204.0,429.0,46.0,17.0,156.0,70.0,4.0,578.0,299.0,92.0,103.0,110.0,303.0,566.0,16.0,3692.0,3.0,291.0,377.0,8.0,25.0,342.0,73.0,59.0,143.0,212.0,1928.0,1357.8151519827,4760.0,902.0,2018-01-28,,2018-4,1357.878376039299,1232.4081363832001, +145,145,147.0,0.0,192.0,14.0,214.0,201.0,417.0,88.0,74.0,425.0,4581.0,2906.0,34.0,435.0,794.0,56.0,26.0,215.0,3061.0,40.0,14.0,601.0,5611.0,261.0,458.0,90.0,1499.0,608.0,58.0,26.0,28.0,84.0,1667.0,711.0,908.0,2046.0,59.0,41.0,10.0,43.0,244.0,100.0,60.0,1163.0,1520.0,31.0,13.0,656.0,199.0,1148.0,65.0,803.0,112.0,232.0,87.0,19.0,61.0,477.0,12.0,294.0,43.0,1921.0,1047.0,3317.0,375.0,28.0,6252.0,22.0,1706.0,174.0,237.0,11325.0,197.0,4.0,73.0,20.0,3485.0,325.0,182.0,24.0,270.0,188.0,40.0,150.0,320.0,253.0,1420.0,960.0,28.0,15.0,111.0,9.0,2663.0,280.0,236.0,184.0,99.0,481.0,4556.0,81.0,2101.0,2134.0,44.0,359.0,686.0,1748.0,450.0,2.0,129.0,95.0,2101.0,717.0,2166.0,18.0,813.0,84.0,1950.0,816.0,1805.0,2479.0,118.0,14.0,1928.0,2082.0,3.0,2144.0,86.0,58.0,26.0,27.0,624.0,721.0,1605.0,19.0,184.0,316.0,38.0,102.0,224.0,641.0,324.0,3569.0,24.0,1.0,101.0,1297.0,1215.0,829.0,68.0,227.0,326.0,1128.0,802.0,59.0,150.0,171.0,9.0,81.0,993.0,37.0,8178.0,289.0,2045.0,84.0,72.0,53.0,35.0,47.0,176.0,104.0,86.0,426.0,883.0,433.0,109.0,182.0,44.0,18.0,1023.0,234.0,24.0,1191.0,80.0,720.0,134.0,29.0,355.0,786.0,148.0,119.0,553.0,1236.0,21.0,157.0,73.0,195.0,25.0,12.0,245.0,527.0,927.0,601.8333333333334,41.0,9.0,55.0,133.0,68.0,80.0,28.0,2923.0,20.0,715.0,38.0,39.0,17.0,5.0,426.0,562.0,395.0,790.0,152.0,26.0,160.0,925.0,41.0,2.0,30.0,143.0,47.0,73.0,83.0,314.0,2.0,323.0,144.0,68.0,21.0,1091.0,2.0,124.0,29.0,514.0,13.0,3212.0,1727.0,620.0,66.0,26.0,4796.0,542.0,183.0,441.0,163.0,15.0,48.0,76.0,74.0,67.0,36.0,4637.0,91.0,1680.0,535.0,304.0,2235.0,261.0,289.0,374.0,737.0,13.0,48.0,219.0,318.0,39.0,19.0,140.0,57.0,6.0,513.0,258.0,88.0,83.0,78.0,330.0,480.0,26.0,3344.0,11.0,262.0,419.0,6.0,37.0,315.0,103.0,37.0,136.0,225.0,1787.0,1497.1779384098002,4143.0,665.0,2018-02-04,,2018-5,1497.10694054289,1348.70787077886, +146,146,139.0,0.0,144.0,8.0,177.0,165.0,428.0,97.0,68.0,451.0,5130.0,3213.0,27.0,368.0,1005.0,68.0,25.0,208.0,2992.0,46.0,13.0,645.0,5691.0,103.0,447.0,108.0,1621.0,542.0,51.0,37.0,26.0,108.0,1642.0,683.0,891.0,2064.0,46.0,34.0,9.0,45.0,303.0,92.0,43.0,1161.0,878.0,30.0,17.0,688.0,217.0,1289.0,44.0,310.0,122.0,201.0,72.0,12.0,51.0,476.0,15.0,289.0,30.0,2069.0,947.0,3319.0,301.0,34.0,8041.0,14.0,1949.0,150.0,237.0,13252.0,164.0,0.0,78.0,22.0,3661.0,314.0,161.0,27.0,287.0,189.0,22.0,152.0,311.0,268.0,1336.0,357.0,29.0,21.0,13.0,6.0,2849.0,274.0,288.0,230.0,91.0,419.0,5147.0,94.0,2424.0,2191.0,36.0,309.0,706.0,1763.0,544.0,5.0,118.0,113.0,2071.0,739.0,2284.0,16.0,786.0,82.0,2062.0,756.0,1822.0,2574.0,107.0,11.0,1940.0,2245.0,1.0,2209.0,109.0,70.0,15.0,27.0,733.0,794.0,1567.0,15.0,192.0,344.0,51.0,87.0,181.0,680.0,341.0,3784.0,18.0,1.0,91.0,2006.0,1594.0,891.0,60.0,249.0,332.0,1199.0,858.0,30.0,121.0,189.0,5.0,74.0,1039.0,42.0,9010.0,363.0,1819.0,89.0,66.0,54.0,40.0,17.0,129.0,97.0,84.0,407.0,953.0,430.0,123.0,208.0,41.0,12.0,1021.0,250.0,32.0,1246.0,62.0,622.0,153.0,54.0,267.0,708.0,161.0,112.0,640.0,1314.0,18.0,163.0,64.0,198.0,24.0,10.0,232.0,453.0,863.0,625.0,61.0,6.0,62.0,146.0,90.0,50.0,20.0,3016.0,14.0,728.0,32.0,48.0,22.0,4.0,465.0,551.0,369.0,859.0,133.0,25.0,156.0,998.0,54.0,0.0,31.0,132.0,36.0,47.0,81.0,334.0,0.0,257.0,123.0,46.0,27.0,1118.0,2.0,124.0,51.0,593.0,12.0,2788.0,1837.0,662.0,73.0,14.0,6236.0,500.0,198.0,431.0,158.0,15.0,48.0,81.0,72.0,64.0,36.0,4666.0,67.0,420.0,525.0,326.0,1195.0,300.0,288.0,421.0,367.0,8.0,70.0,197.0,368.0,37.0,22.0,164.0,58.0,8.0,494.0,241.0,70.0,90.0,75.0,276.0,445.0,21.0,3694.0,6.0,219.0,418.0,8.0,18.0,334.0,110.0,50.0,150.0,300.0,1783.0,1729.7891687285,4300.0,666.0,2018-02-11,,2018-6,1729.9927385668677,1755.53788443714, +147,147,157.0,1.0,171.0,18.0,155.0,163.0,488.0,108.0,87.0,392.0,6063.0,3572.0,25.0,427.0,845.0,54.0,29.0,188.0,2994.0,63.0,12.0,526.0,5517.0,122.0,435.0,96.0,1614.0,561.0,55.0,33.0,25.0,98.0,1553.0,611.0,881.0,2012.0,41.0,30.0,5.0,39.0,266.0,86.0,57.0,1201.0,1645.0,25.0,11.0,624.0,240.0,1180.0,41.0,277.0,112.0,220.0,71.0,8.0,48.0,538.0,8.0,319.0,19.0,2086.0,757.0,3321.0,250.0,39.0,9488.0,16.0,1889.0,149.0,266.0,17381.0,162.0,1.0,67.0,16.0,3702.0,273.0,186.0,26.0,261.0,174.0,28.0,168.0,305.0,312.0,1270.0,360.0,41.0,19.0,21.0,7.0,2914.0,258.0,224.0,172.0,95.0,392.0,5101.0,89.0,2143.0,2115.0,29.0,293.0,726.0,1698.0,523.0,6.0,143.0,53.0,2182.0,717.0,2205.0,9.0,806.0,88.0,1828.0,757.0,1904.0,2580.0,85.0,10.0,1846.0,2250.0,0.0,2040.0,106.0,54.0,15.0,33.0,710.0,796.0,1756.0,21.0,143.0,357.0,61.0,103.0,226.0,647.0,256.0,3524.0,20.0,3.0,107.0,1369.0,1554.0,992.0,57.0,339.0,371.0,1067.0,731.0,19.0,106.0,195.0,7.0,56.0,1024.0,30.0,10609.0,317.0,1683.0,77.0,78.0,44.0,39.0,19.0,156.0,102.0,76.0,430.0,900.0,455.0,158.0,190.0,40.0,29.0,984.0,235.0,27.0,1203.0,56.0,722.0,149.0,52.0,300.0,724.0,118.0,100.0,563.0,1273.0,18.0,171.0,69.0,201.0,16.0,6.0,245.0,473.0,836.0,550.0,50.0,2.0,41.0,92.0,55.0,62.0,24.0,2974.0,15.0,792.0,52.0,64.0,15.0,8.0,470.0,538.0,380.0,785.0,133.0,39.0,178.0,915.0,41.0,4.0,32.0,132.0,40.0,45.0,78.0,385.0,1.0,239.0,124.0,52.0,35.0,1150.0,1.0,101.0,56.0,604.0,10.0,3105.0,1771.0,571.0,79.0,26.0,7891.0,528.0,177.0,396.0,164.0,17.0,52.0,74.0,42.0,51.0,38.0,4745.0,61.0,439.0,488.0,239.0,535.0,237.0,202.0,370.0,384.0,15.0,57.0,190.0,431.0,31.0,20.0,121.0,45.0,6.0,479.0,235.0,88.0,98.0,112.0,236.0,499.0,38.0,4045.0,4.0,272.0,415.0,8.0,22.0,352.0,83.0,30.0,118.0,239.0,1809.0,1792.895070094,4471.0,680.0,2018-02-18,,2018-7,1792.624810615343,1765.83955397172, +148,148,156.0,0.0,162.0,5.0,166.0,190.0,376.0,86.0,86.0,463.0,6163.0,3724.0,15.0,478.0,1500.0,59.0,29.0,156.0,4163.0,71.0,20.0,502.0,5577.0,162.0,489.0,94.0,1655.0,568.0,44.0,30.0,24.0,80.0,1652.0,629.0,924.0,2055.0,30.0,32.0,8.0,39.0,272.0,85.0,45.0,1192.0,919.0,31.0,8.0,660.0,241.0,1199.0,51.0,249.0,93.0,193.0,85.0,13.0,68.0,543.0,18.0,319.0,24.0,2009.0,947.0,3446.0,236.0,28.0,12149.0,19.0,1934.0,156.0,180.0,16685.0,171.0,1.0,70.0,18.0,3886.0,336.0,180.0,25.0,315.0,194.0,21.0,83.0,360.0,337.0,1204.0,435.0,34.0,28.0,9.0,9.0,2931.0,273.0,245.0,180.0,104.0,397.0,5222.0,57.0,2080.0,2109.0,30.0,293.0,740.0,1736.0,487.0,3.0,109.0,64.0,2109.0,753.0,2235.0,17.0,805.0,89.0,1870.0,856.0,1968.0,2851.0,121.0,7.0,2257.0,2267.0,2.0,2019.0,69.0,67.0,27.0,36.0,736.0,802.0,1710.0,24.0,172.0,356.0,25.0,99.0,233.0,626.0,216.0,3693.0,21.0,0.0,104.0,1251.0,1257.0,966.0,61.0,237.0,421.0,1011.0,720.0,8.0,87.0,214.0,5.0,68.0,1249.0,52.0,10946.0,393.0,1875.0,89.0,83.0,39.0,60.0,24.0,198.0,93.0,78.0,469.0,891.0,437.0,139.0,199.0,52.0,30.0,992.0,235.0,27.0,1251.0,72.0,738.0,135.0,34.0,308.0,646.0,119.0,100.0,561.0,1370.0,27.0,138.0,89.0,226.0,22.0,14.0,254.0,475.0,881.0,612.0,34.0,3.0,50.0,101.0,95.0,65.0,27.0,3127.0,14.0,715.0,34.0,59.0,25.0,3.0,530.0,624.0,374.0,874.0,175.0,40.0,260.0,983.0,55.0,0.0,28.0,127.0,35.0,39.0,79.0,398.0,3.0,261.0,122.0,46.0,25.0,1177.0,1.0,115.0,36.0,602.0,10.0,3093.0,1858.0,584.0,68.0,24.0,8142.0,539.0,214.0,415.0,154.0,20.0,37.0,80.0,68.0,52.0,35.0,4779.0,67.0,455.0,580.0,260.0,434.0,246.0,263.0,403.0,324.0,13.0,53.0,193.0,354.0,47.0,19.0,150.0,48.0,4.0,475.0,236.0,99.0,84.0,114.0,249.0,461.0,30.0,3835.0,10.0,239.0,359.0,3.0,28.0,303.0,88.0,64.0,151.0,208.0,1981.0,1480.5178715232998,4159.0,696.0,2018-02-25,,2018-8,1480.4110386123534,1520.01532590212, +149,149,129.0,0.0,137.0,7.0,161.0,184.0,381.0,109.0,80.0,455.0,5740.0,3550.0,27.0,441.0,952.0,224.0,33.0,187.0,2970.0,45.0,10.0,880.0,5418.0,104.0,513.0,100.0,1631.0,533.0,70.0,28.0,20.0,89.0,1671.0,685.0,902.0,2042.0,47.0,44.0,13.0,40.0,322.0,79.0,32.0,1108.0,802.0,34.0,9.0,684.0,226.0,1466.0,51.0,315.0,92.0,191.0,88.0,12.0,68.0,644.0,13.0,330.0,32.0,2292.0,726.0,3655.0,238.0,30.0,12736.0,10.0,1905.0,187.0,170.0,16435.0,199.0,2.0,72.0,9.0,3812.0,324.0,139.0,19.0,272.0,181.0,21.0,109.0,362.0,304.0,1437.0,395.0,81.0,30.0,8.0,9.0,2764.0,248.0,225.0,178.0,95.0,457.0,4920.0,79.0,1844.0,2017.0,41.0,254.0,696.0,1834.0,485.0,0.0,127.0,62.0,2181.0,794.0,2268.0,17.0,818.0,104.0,1999.0,782.0,2053.0,2876.0,165.0,5.0,2084.0,2170.0,0.0,2353.0,62.0,58.0,19.0,40.0,659.0,880.0,1742.0,16.0,214.0,326.0,28.0,87.0,212.0,611.0,201.0,3629.0,21.0,0.0,100.0,1191.0,1203.0,1015.0,57.0,242.0,420.0,1080.0,733.0,32.0,113.0,187.0,3.0,53.0,1133.0,51.0,11916.0,375.0,1807.0,91.0,59.0,44.0,38.0,31.0,145.0,90.0,75.0,475.0,942.0,430.0,145.0,163.0,54.0,19.0,902.0,228.0,20.0,1178.0,64.0,559.0,166.0,23.0,322.0,629.0,150.0,102.0,539.0,1300.0,21.0,139.0,76.0,205.0,28.0,11.0,294.0,494.0,861.0,649.0,51.0,5.0,47.0,104.0,73.0,63.0,14.0,3153.0,7.0,772.0,50.0,52.0,23.0,11.0,503.0,706.0,353.0,816.0,141.0,36.0,233.0,913.0,51.0,3.0,34.0,134.0,23.0,40.0,86.0,433.0,0.0,262.0,141.0,44.0,25.0,1387.0,2.0,135.0,27.0,605.0,15.0,2758.0,2268.0,697.0,69.0,12.0,8752.0,475.0,171.0,434.0,175.0,28.0,45.0,79.0,58.0,39.0,18.0,4792.0,67.0,446.0,509.0,272.0,384.0,253.0,224.0,417.0,404.0,6.0,53.0,190.0,392.0,41.0,19.0,117.0,49.0,9.0,420.0,245.0,79.0,72.0,91.0,225.0,437.0,21.0,3303.0,16.0,310.0,321.0,5.0,14.0,337.0,81.0,77.0,142.0,188.0,1928.0,1428.7338462122,4242.0,713.0,2018-03-04,,2018-9,1428.9185367018458,1424.90691242852, +150,150,125.0,0.0,105.0,6.0,169.0,152.0,336.0,87.0,86.0,383.0,5065.0,2849.0,32.0,396.0,773.0,42.0,22.0,136.0,2516.0,37.0,10.0,717.0,5055.0,102.0,432.0,113.0,1385.0,459.0,68.0,30.0,29.0,74.0,1585.0,598.0,833.0,12121.0,32.0,47.0,8.0,43.0,248.0,94.0,34.0,985.0,1333.0,32.0,8.0,609.0,178.0,1114.0,60.0,170.0,110.0,185.0,99.0,19.0,49.0,612.0,16.0,288.0,22.0,1917.0,678.0,3275.0,217.0,19.0,9709.0,19.0,1899.0,293.0,143.0,14726.0,173.0,1.0,52.0,12.0,3743.0,266.0,137.0,20.0,233.0,155.0,12.0,85.0,284.0,295.0,1298.0,343.0,37.0,14.0,16.0,7.0,2436.0,205.0,222.0,153.0,70.0,361.0,4525.0,45.0,1709.0,1904.0,28.0,268.0,797.0,1707.0,476.0,1.0,108.0,61.0,2049.0,690.0,2062.0,9.0,716.0,97.0,1916.0,681.0,1707.0,2319.0,93.0,5.0,2400.0,1981.0,2.0,1928.0,79.0,38.0,18.0,31.0,609.0,809.0,1352.0,26.0,143.0,257.0,20.0,82.0,163.0,533.0,123.0,3004.0,18.0,1.0,91.0,1177.0,1156.0,896.0,56.0,188.0,394.0,980.0,608.0,22.0,83.0,181.0,9.0,49.0,1188.0,43.0,10230.0,327.0,1544.0,67.0,104.0,38.0,26.0,13.0,119.0,76.0,82.0,382.0,843.0,378.0,148.0,216.0,31.0,22.0,941.0,197.0,18.0,1108.0,73.0,607.0,137.0,31.0,283.0,562.0,144.0,89.0,499.0,1179.0,21.0,122.0,77.0,192.0,30.0,8.0,264.0,364.0,703.0,503.0,26.0,2.0,44.0,109.0,78.0,63.0,20.0,2912.0,20.0,709.0,43.0,48.0,15.0,10.0,480.0,501.0,324.0,797.0,133.0,24.0,229.0,813.0,44.0,0.0,26.0,151.0,28.0,53.0,77.0,351.0,2.0,246.0,98.0,38.0,27.0,1129.0,9.0,129.0,36.0,568.0,14.0,2767.0,1874.0,539.0,64.0,15.0,6187.0,542.0,115.0,370.0,153.0,8.0,21.0,65.0,54.0,50.0,47.0,4611.0,54.0,453.0,495.0,268.0,384.0,232.0,203.0,431.0,519.0,12.0,35.0,154.0,308.0,37.0,10.0,116.0,45.0,12.0,391.0,245.0,82.0,67.0,69.0,224.0,417.0,19.0,3075.0,10.0,253.0,344.0,8.0,17.0,295.0,99.0,45.0,119.0,196.0,1887.0,1331.1721203526,3845.0,653.0,2018-03-11,,2018-10,1331.0649312732046,1409.8805677483201, +151,151,116.0,0.0,119.0,5.0,148.0,175.0,387.0,104.0,78.0,400.0,4674.0,2842.0,40.0,469.0,797.0,147.0,22.0,215.0,2709.0,175.0,7.0,770.0,6295.0,101.0,461.0,105.0,1785.0,548.0,67.0,38.0,26.0,82.0,1608.0,641.0,1127.0,12395.0,50.0,22.0,14.0,34.0,257.0,78.0,44.0,1125.0,918.0,33.0,10.0,713.0,235.0,1236.0,32.0,236.0,119.0,213.0,91.0,9.0,41.0,592.0,15.0,291.0,29.0,2474.0,750.0,3084.0,209.0,29.0,7214.0,16.0,1850.0,188.0,201.0,12454.0,154.0,0.0,69.0,8.0,4346.0,298.0,136.0,17.0,276.0,198.0,20.0,110.0,348.0,267.0,1384.0,368.0,36.0,32.0,6.0,5.0,2514.0,131.0,227.0,215.0,91.0,350.0,5159.0,62.0,1795.0,2225.0,27.0,294.0,701.0,2005.0,538.0,0.0,127.0,50.0,2286.0,765.0,2358.0,14.0,732.0,82.0,1970.0,726.0,1821.0,2496.0,114.0,8.0,2426.0,2598.0,1.0,2337.0,95.0,58.0,23.0,17.0,660.0,690.0,1652.0,28.0,184.0,295.0,33.0,97.0,249.0,605.0,165.0,3539.0,33.0,0.0,104.0,1179.0,1215.0,915.0,66.0,198.0,355.0,956.0,694.0,11.0,93.0,198.0,5.0,41.0,1260.0,44.0,11094.0,374.0,1986.0,85.0,87.0,26.0,25.0,40.0,117.0,84.0,84.0,389.0,954.0,483.0,234.0,252.0,36.0,14.0,994.0,209.0,14.0,1160.0,74.0,757.0,149.0,34.0,322.0,570.0,107.0,116.0,592.0,1318.0,11.0,202.0,61.0,227.0,23.0,13.0,255.0,522.0,924.0,547.0,51.0,3.0,65.0,132.0,75.0,67.0,34.0,3027.0,9.0,927.0,41.0,46.0,26.0,9.0,430.0,529.0,340.0,883.0,142.0,22.0,249.0,938.0,66.0,3.0,24.0,146.0,19.0,51.0,58.0,383.0,1.0,809.0,107.0,31.0,15.0,1259.0,0.0,142.0,33.0,507.0,5.0,2898.0,1978.0,648.0,73.0,25.0,4935.0,665.0,139.0,449.0,167.0,14.0,40.0,78.0,67.0,55.0,32.0,4922.0,72.0,428.0,534.0,342.0,451.0,239.0,383.0,544.0,560.0,13.0,53.0,193.0,301.0,22.0,19.0,92.0,48.0,7.0,443.0,293.0,92.0,71.0,118.0,234.0,416.0,15.0,2693.0,12.0,220.0,371.0,3.0,25.0,352.0,85.0,51.0,107.0,172.0,1927.0,937.9934930269001,4606.0,721.0,2018-03-18,,2018-11,938.0349637330587,962.6177636503601, +152,152,113.0,1.0,134.0,5.0,186.0,145.0,390.0,103.0,89.0,350.0,3769.0,2636.0,21.0,509.0,816.0,49.0,44.0,184.0,2703.0,41.0,8.0,815.0,6066.0,198.0,463.0,96.0,1644.0,509.0,69.0,43.0,22.0,100.0,1434.0,644.0,888.0,4489.0,47.0,23.0,8.0,37.0,334.0,62.0,46.0,1065.0,1706.0,18.0,17.0,683.0,208.0,1993.0,29.0,149.0,102.0,185.0,80.0,12.0,34.0,546.0,16.0,269.0,23.0,2084.0,685.0,2803.0,188.0,41.0,5664.0,20.0,1751.0,206.0,178.0,9646.0,128.0,2.0,75.0,12.0,4465.0,295.0,105.0,29.0,168.0,157.0,26.0,128.0,309.0,280.0,1498.0,351.0,37.0,27.0,9.0,5.0,2785.0,154.0,237.0,171.0,121.0,361.0,5416.0,85.0,1858.0,2292.0,39.0,279.0,698.0,1814.0,511.0,3.0,121.0,51.0,2179.0,776.0,2376.0,18.0,754.0,84.0,1823.0,670.0,1754.0,2298.0,86.0,7.0,2051.0,2217.0,4.0,2315.0,67.0,50.0,21.0,31.0,676.0,787.0,1746.0,24.0,188.0,294.0,34.0,93.0,203.0,590.0,159.0,3476.0,37.0,0.0,92.0,1079.0,1227.0,919.0,56.0,213.0,360.0,988.0,711.0,14.0,99.0,189.0,4.0,50.0,1048.0,46.0,8900.0,336.0,1959.0,93.0,68.0,36.0,21.0,29.0,115.0,91.0,82.0,435.0,826.0,477.0,161.0,214.0,35.0,18.0,959.0,251.0,19.0,1187.0,81.0,564.0,127.0,27.0,327.0,548.0,111.0,97.0,570.0,1330.0,17.0,187.0,71.0,222.0,21.0,7.0,274.0,514.0,759.0,503.0,41.0,7.0,52.0,87.0,57.0,55.0,35.0,3101.0,3.0,648.0,44.0,41.0,13.0,3.0,409.0,541.0,361.0,807.0,158.0,27.0,260.0,878.0,50.0,9.0,29.0,166.0,26.0,56.0,74.0,408.0,0.0,270.0,108.0,33.0,26.0,1370.0,6.0,88.0,30.0,581.0,7.0,2788.0,1948.0,705.0,75.0,26.0,4391.0,563.0,148.0,433.0,138.0,17.0,30.0,74.0,65.0,56.0,20.0,4749.0,74.0,446.0,568.0,318.0,411.0,231.0,227.0,514.0,554.0,6.0,43.0,206.0,375.0,42.0,22.0,99.0,46.0,7.0,486.0,283.0,108.0,84.0,91.0,245.0,414.0,20.0,2135.0,16.0,222.0,366.0,11.0,21.0,298.0,92.0,48.0,106.0,161.0,1843.0,811.9816270109,4424.0,654.0,2018-03-25,,2018-12,812.2278534756051,995.7826919473399, +153,153,147.0,3.0,73.0,9.0,145.0,110.0,289.0,96.0,77.0,446.0,2941.0,2599.0,19.0,391.0,877.0,33.0,29.0,128.0,2447.0,61.0,10.0,606.0,4869.0,130.0,381.0,99.0,1259.0,521.0,54.0,32.0,14.0,76.0,1205.0,473.0,902.0,2766.0,49.0,29.0,13.0,52.0,310.0,57.0,46.0,838.0,918.0,54.0,7.0,578.0,200.0,1551.0,43.0,111.0,92.0,128.0,69.0,16.0,28.0,490.0,27.0,282.0,26.0,2048.0,692.0,2786.0,206.0,26.0,4089.0,15.0,1607.0,153.0,279.0,7341.0,125.0,2.0,41.0,16.0,4288.0,241.0,97.0,25.0,173.0,124.0,19.0,110.0,332.0,205.0,1054.0,357.0,40.0,24.0,15.0,8.0,2516.0,128.0,199.0,142.0,83.0,293.0,5310.0,47.0,2023.0,1730.0,34.0,293.0,582.0,1620.0,429.0,2.0,123.0,52.0,1926.0,671.0,2039.0,16.0,654.0,81.0,1645.0,616.0,1346.0,1781.0,51.0,5.0,1463.0,1928.0,3.0,17367.0,67.0,34.0,19.0,25.0,580.0,733.0,1228.0,17.0,181.0,275.0,32.0,93.0,151.0,515.0,138.0,3331.0,33.0,2.0,70.0,1054.0,1261.0,807.0,62.0,177.0,319.0,821.0,537.0,16.0,94.0,123.0,6.0,55.0,1258.0,23.0,7814.0,294.0,1552.0,86.0,74.0,31.0,16.0,34.0,136.0,95.0,72.0,378.0,759.0,332.0,186.0,213.0,35.0,23.0,784.0,189.0,25.0,1012.0,55.0,692.0,131.0,40.0,291.0,587.0,94.0,89.0,481.0,1203.0,9.0,211.0,53.0,188.0,15.0,12.0,250.0,415.0,735.0,437.0,39.0,3.0,76.0,86.0,44.0,115.0,35.0,2516.0,14.0,566.0,36.0,54.0,24.0,6.0,469.0,400.0,314.0,694.0,135.0,38.0,303.0,748.0,31.0,9.0,19.0,139.0,18.0,33.0,65.0,287.0,6.0,232.0,88.0,20.0,24.0,1327.0,7.0,105.0,47.0,537.0,12.0,2536.0,1748.0,575.0,61.0,31.0,3111.0,585.0,120.0,362.0,141.0,9.0,36.0,75.0,64.0,37.0,26.0,3982.0,35.0,480.0,464.0,272.0,340.0,211.0,141.0,439.0,405.0,10.0,47.0,152.0,344.0,34.0,13.0,93.0,30.0,5.0,380.0,218.0,76.0,58.0,72.0,206.0,470.0,12.0,1780.0,8.0,235.0,416.0,6.0,13.0,309.0,95.0,34.0,97.0,153.0,1507.0,639.5134013586,3827.0,721.0,2018-04-01,,2018-13,639.5005208244424,777.8451451574001, +154,154,96.0,1.0,103.0,7.0,176.0,144.0,286.0,87.0,83.0,364.0,2769.0,2617.0,24.0,417.0,811.0,35.0,36.0,126.0,2735.0,41.0,9.0,556.0,5051.0,123.0,409.0,83.0,1449.0,521.0,45.0,42.0,41.0,89.0,1188.0,552.0,982.0,2286.0,67.0,43.0,16.0,25.0,307.0,56.0,43.0,929.0,819.0,22.0,14.0,595.0,170.0,1511.0,27.0,143.0,77.0,174.0,80.0,21.0,57.0,578.0,11.0,280.0,21.0,2456.0,698.0,2410.0,241.0,29.0,3314.0,23.0,1609.0,248.0,214.0,6419.0,126.0,3.0,52.0,9.0,4322.0,245.0,108.0,9.0,141.0,165.0,13.0,122.0,338.0,268.0,1219.0,272.0,45.0,19.0,12.0,9.0,2496.0,121.0,210.0,155.0,94.0,337.0,5320.0,50.0,1903.0,1842.0,33.0,249.0,713.0,1740.0,438.0,6.0,105.0,78.0,1898.0,684.0,2052.0,13.0,702.0,93.0,1767.0,553.0,1406.0,1972.0,50.0,11.0,1410.0,1924.0,0.0,2213.0,102.0,50.0,22.0,54.0,619.0,760.0,1389.0,19.0,144.0,273.0,40.0,105.0,161.0,526.0,117.0,2967.0,42.0,2.0,97.0,1097.0,1118.0,817.0,53.0,198.0,333.0,1006.0,568.0,20.0,90.0,189.0,7.0,50.0,1141.0,29.0,7378.0,313.0,1533.0,57.0,64.0,32.0,17.0,22.0,144.0,88.0,73.0,342.0,818.0,340.0,153.0,181.0,51.0,7.0,763.0,198.0,23.0,1066.0,74.0,722.0,166.0,19.0,315.0,479.0,130.0,88.0,414.0,1206.0,20.0,180.0,72.0,171.0,13.0,11.0,265.0,354.0,644.0,469.0,44.0,6.0,53.0,73.0,67.0,84.0,19.0,2529.0,12.0,632.0,57.0,42.0,21.0,7.0,461.0,379.0,321.0,810.0,147.0,19.0,296.0,725.0,69.0,7.0,31.0,126.0,29.0,30.0,55.0,352.0,3.0,277.0,95.0,31.0,14.0,1356.0,4.0,96.0,28.0,538.0,7.0,2971.0,1933.0,698.0,68.0,26.0,2877.0,649.0,148.0,382.0,124.0,14.0,29.0,81.0,40.0,37.0,36.0,4236.0,65.0,440.0,524.0,265.0,376.0,211.0,144.0,403.0,469.0,9.0,47.0,157.0,358.0,30.0,17.0,75.0,40.0,5.0,412.0,224.0,74.0,77.0,57.0,215.0,464.0,16.0,1661.0,12.0,246.0,395.0,8.0,17.0,335.0,88.0,40.0,91.0,133.0,1573.0,221.4233614671,4057.0,620.0,2018-04-08,,2018-14,221.2880945551592,308.02562665732006, +155,155,122.0,0.0,107.0,4.0,167.0,159.0,334.0,74.0,59.0,371.0,2578.0,2424.0,27.0,401.0,765.0,38.0,30.0,144.0,2861.0,36.0,15.0,614.0,5620.0,130.0,420.0,97.0,1526.0,553.0,64.0,29.0,36.0,92.0,1455.0,626.0,1276.0,2352.0,82.0,26.0,19.0,28.0,377.0,50.0,55.0,1026.0,789.0,22.0,20.0,602.0,188.0,1517.0,26.0,97.0,100.0,175.0,87.0,11.0,45.0,528.0,5.0,269.0,21.0,2261.0,686.0,2563.0,200.0,38.0,2557.0,18.0,1699.0,245.0,350.0,5836.0,122.0,0.0,78.0,10.0,4486.0,315.0,150.0,14.0,162.0,174.0,19.0,100.0,784.0,259.0,1317.0,289.0,45.0,16.0,5.0,3.0,2554.0,163.0,263.0,162.0,92.0,346.0,5218.0,88.0,2130.0,2193.0,30.0,286.0,798.0,1771.0,396.0,0.0,114.0,58.0,2236.0,801.0,2308.0,16.0,774.0,70.0,1941.0,724.0,1657.0,2359.0,36.0,6.0,1796.0,1888.0,1.0,2213.0,59.0,44.0,22.0,28.0,659.0,772.0,1478.0,24.0,142.0,242.0,32.0,109.0,203.0,595.0,176.0,3517.0,46.0,0.0,103.0,1188.0,1160.0,901.0,54.0,194.0,361.0,1068.0,716.0,37.0,111.0,159.0,9.0,75.0,970.0,39.0,6859.0,365.0,2022.0,62.0,55.0,30.0,12.0,24.0,135.0,102.0,60.0,406.0,919.0,410.0,134.0,256.0,44.0,13.0,897.0,249.0,17.0,1224.0,55.0,770.0,143.0,32.0,288.0,659.0,124.0,62.0,498.0,1227.0,16.0,179.0,77.0,257.0,20.0,5.0,289.0,528.0,792.0,497.0,33.0,3.0,48.0,90.0,75.0,30.0,39.0,2895.0,6.0,558.0,33.0,42.0,18.0,2.0,468.0,445.0,396.0,820.0,122.0,25.0,196.0,909.0,41.0,10.0,16.0,168.0,29.0,40.0,63.0,300.0,4.0,311.0,124.0,41.0,21.0,1301.0,3.0,105.0,42.0,557.0,10.0,2940.0,2087.0,752.0,62.0,18.0,2366.0,786.0,127.0,423.0,173.0,5.0,36.0,91.0,56.0,55.0,23.0,4733.0,77.0,432.0,519.0,346.0,337.0,225.0,322.0,349.0,382.0,7.0,43.0,182.0,377.0,34.0,18.0,86.0,37.0,7.0,442.0,232.0,77.0,66.0,55.0,206.0,414.0,26.0,1801.0,4.0,240.0,348.0,5.0,17.0,280.0,115.0,34.0,108.0,145.0,1635.0,102.28752092239999,4313.0,619.0,2018-04-15,,2018-15,102.27173211765921,459.38048889126, diff --git a/gsoc_application_projects/2020/influenza/dash/data/final/belgium.csv b/gsoc_application_projects/2020/influenza/dash/data/final/belgium.csv new file mode 100644 index 0000000..f1755c5 --- /dev/null +++ b/gsoc_application_projects/2020/influenza/dash/data/final/belgium.csv @@ -0,0 +1,261 @@ +,Unnamed: 0,Aardbeientong,Abasie,Acholurie,Achylie,Acidose,Acrocyanose,Acrodynie,Acute_buik,Acuut_reuma,Adenovirussen,Aerofagie,Afasie,Afrikaanse-paardenpestvirus,Ageusie,Agrafie,Akabanevirus,Akinesie,Alalie,Albuminurie,Alexie,Amerikaans_vuilbroed,Amnestische_afasie,Anorexie,Anosmie,Anurie,Apraxie,Arbovirussen,Arenavirussen,Artralgie,Asdrukpijn,Astasie,Asthenie,Ataxie,Athetose,Aviair_reovirus,Aviaire_influenza,Aziatische_griep,Azotemie,BCG-vaccin,BMR-vaccin,Bacillendrager,Bacteriofaag,Bewusteloosheid,Bindvliesontsteking,Blaascollaps,Blauwe_plek,Blauwtongvirus,Blefarospasme,Bloedarmoede,Bloedneus,Bloedspuwing,Bloeduitstorting,Blozen,Boviene_virale_diarree,Bradykinesie,Brilhematoom,Bronchospasme,Buikgriep,Buikpijn,Cachexie,Centrum_Infectieziektebestrijding,Cervicogene_hoofdpijn,Chaparevirus,Chikungunya-virus,Cholera-uitbraak_in_Zimbabwe_in_2008-2009,Chronische_pijn,Coccidiose,Coronavirussen,Cyanose,Cyanovirus,Cytokinestorm,Cytomegalie,DIVA-vaccin,DKTP-vaccin,DNA-virus,DTP-vaccin,Decorumverlies,Desoriëntatie,Drive_Against_Malaria,Drukpijn,Dysenterie,Dysosmie,Dyspepsie,ECHO-virus,Ebola-uitbraak_in_Congo_in_2014,Ebola-uitbraak_in_West-Afrika_in_2014,Enterotoxine,Enterovirussen,Epstein-barrvirus,Exantheem,Exophtalmus,Fasciculatie,Felien_immunodeficiëntievirus,Feliene_infectueuze_peritonitis,Fibrose,Filovirussen,Flavivirus,Fructosurie,Frühsommer-Meningoenzephalitis,Geelzucht,Gele-koortsvirus,Gele_koorts,Geleidingsafasie,Gemengde_afasie,Glucosurie,Gordelroos,Griep,Griepprik,Groeipijn,H5N1-chronologie,Halitose,Hematurie,Hemoglobinurie,Hemolyse,Hemolytische_anemie,Hemoptoë,Hepatitis_B,Hepatitisvirus,Hepatosplenomegalie,Hersenvliesontsteking,Hoest,Hondsdolheid,Hongkonggriep,Hoofdpijn,Humaan_papillomavirus,Human_parvovirus_B19,Hyperglykemie,Hyperkaliëmie,Hypernatriëmie,Hyperpyrexie,Hyperventilatie,Hypokaliëmie,Hypokinesie,Hyponatriëmie,Hypotensie,IJshoofdpijn,Imperatieve_hallucinaties,Infectie,Infectieuze_bronchitis,Infectieziekte,Informatiestress,Intentietremor,JC-virus,Japanse_encefalitis,Keelontsteking,Ketoacidose,Klapvoet,Klierkoorts,Knollenmozaïekvirus,Koliekpijn,Koorts,Koortslip,Koortsstuip,Kortademigheid,Koude_rilling,Krim-Congo-hemorragische_koorts,Krokodillentranen,Kussmaul-ademhaling,Lage_rugpijn,Lassakoorts,Latente_infectie,Lijst_van_virussen,Longontsteking,Maskergelaat,Mastoïditis,Mazelen,Mazelenvirus,Merkelcelpolyomavirus,Mexicaanse_griep,Microalbuminurie,Misselijkheid,Mond-en-klauwzeer,Mononegavirales,Motorische_afasie,Mozaïekvirus,Murray_Valley-virus,Mycovirus,Neurogene_pijn,Neusvleugelen,Niezen,Nociceptieve_pijn,Norovirus,Oedeem,Ondergewicht,Opportunistische_infectie,Orale_focale_infectie,Orgaanfalen,Orsayvirus,Orthopneu,Oscillopsie,Paresthesie,Parvovirose,Passieve_immuniteit,Pathogeen,Pathognomonisch,Pest_van_Antoninus,Pest_van_Cyprianus,Pest_van_Justinianus,Pestepidemie_in_Amsterdam,Pestepidemie_in_Londen,Petechiën,Pijn,Pijn_op_de_borst,Pijngrens,Plantenvirus,Platypneu,Pokkenepidemie_van_1972_in_Joegoslavië,Polydipsie,Polyurie,Porte_d'entrée,Postoperatieve_pijn,Postoperatieve_wondinfectie,Postpoliosyndroom,Prodromale_fase,Prodroom,Projectielbraken,Pseudokroep,Pustel,RNA-virus,Rabdomyolyse,Respiratoir_syncytieel_virus,Rhizomanie,Riftdalkoortsvirus,Rigiditeit,Risus_sardonicus,Rodehond,Ross_River-koorts,Rubellavirus,Rugpijn,Ruimteziekte,SARS-virus,Sabinvaccin,Salkvaccin,Satellietvirus,Schildkliervergroting,Schmallenbergvirus,Sensorische_afasie,Septische_shock,Sharka-virus,Spaanse_griep,Spanningshoofdpijn,Spierkater,Spierpijn,Stand_van_Bonnet,Steatorroe,Subacute_scleroserende_panencefalitis,Subklinische_endometritis,Superinfectie,Symptoom,Symptoom_van_Bell,Symptoomloze_drager,Tabaksmozaïekvirus,Tabaksringvlekvirus,Tachycardie,Tachypnoe,Tandvleesontsteking,Third_Cyprinid_Herpesvirus,Tracheïtis,Transcorticale_motorische_afasie,Transcorticale_sensorische_afasie,Triple_gene_block,Usutuvirus,Uveïtis,Vaginale_candidainfectie,Varkensgriep,Venezolaanse_equïene_encefalitis,Verkoudheid,Vermoeidheid,Versterkte_bloedingsneiging,Virale_hemorragische_koorts,Virilisatie,Visuele_agnosie,Voedselinfectie,Waterpokken,Waterwrat,Weduwnaarspijn,Weerpijn,Westnijlvirus,Westnijlziekte,Winderigheid,Wortelprikkeling,Wrat,Zadelneus,Zaïre_ebolavirus,Ziekenhuisinfectie,Ziekte-inzicht,Ziekte_van_Bornholm,Ziektebeeld,Zikakoorts,Zikavirus,Zweetziekte,incidence,date,estimate,week,estimate_lrr,estimate_rf,estimate_p +0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,10.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,39.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,19.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.2381070131,2009-10-25,,2009-43,59.31276995305663,35.10678077858065, +1,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,10.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,39.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,19.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.2381070131,2009-11-01,,2009-44,59.98465416589964,35.10678077858065, +2,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,10.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,39.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,19.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.2381070131,2009-11-08,,2009-45,57.451258177502254,35.10678077858065, +3,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,10.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,39.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,19.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.2381070131,2009-11-15,,2009-46,59.90859212488252,35.10678077858065, +4,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,10.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,39.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,19.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.2381070131,2009-11-22,,2009-47,58.316447734977956,35.10678077858065, +5,5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,10.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,39.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,19.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.2381070131,2009-11-29,,2009-48,58.97969962559521,35.10678077858065, +6,6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,10.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,39.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,19.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.2381070131,2009-12-06,,2009-49,58.96616556088361,35.10678077858065, +7,7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,10.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,39.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,19.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.2381070131,2009-12-13,,2009-50,60.45809020208349,40.151429400440655, +8,8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,10.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,39.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,19.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.2381070131,2009-12-20,,2009-51,59.77162445636762,35.10678077858065, +9,9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,10.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,39.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,19.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.2381070131,2009-12-27,,2009-52,63.335959141056705,35.10678077858065, +10,10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,10.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,39.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,19.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.2381070131,2010-01-03,,2009-53,63.66886929048195,35.10678077858065, +11,11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,10.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,39.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,19.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.2381070131,2010-01-10,,2010-1,68.1945022549317,35.10678077858065, +12,12,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,11.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,39.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.2381070131,2010-01-17,,2010-2,85.20225764545367,139.1155272184, +13,13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,39.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.2381070131,2010-01-24,,2010-3,74.22363770650085,42.93345341147162, +14,14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,39.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,43.1416870223,2010-01-31,,2010-4,91.12008036942281,86.81391988627661, +15,15,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,39.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.7162969715,2010-02-07,,2010-5,104.96251654606776,42.61034755844267, +16,16,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,67.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,44.615941155200005,2010-02-14,,2010-6,153.7390993677114,93.668484655604, +17,17,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,62.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.480306957399996,2010-02-21,,2010-7,156.11129239090184,324.664476297855, +18,18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,67.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,11.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.013270857600002,2010-02-28,,2010-8,158.93991030087173,238.44604574539167, +19,19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,53.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.5568923263,2010-03-07,,2010-9,131.45467391198142,36.25723484936, +20,20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,37.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.0923712918,2010-03-14,,2010-10,94.65001811297293,63.645008342449174, +21,21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,43.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.9415450518,2010-03-21,,2010-11,93.9112111879832,63.30517645475661, +22,22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,33.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.7325287554,2010-03-28,,2010-12,94.75519442930309,121.23813942967602, +23,23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,68.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.0055951267,2010-04-04,,2010-13,144.42159005206773,51.930994585522505, +24,24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,21.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.6013055172,2010-04-11,,2010-14,90.6327085090146,100.206710350639, +25,25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,41.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.8036054397,2010-04-18,,2010-15,55.69318853871372,243.01263567051902, +26,26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,61.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.0965372508,2010-10-24,,2010-42,108.73392383583746,92.23949915290251, +27,27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,8.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40.1209801864,2010-10-31,,2010-43,82.72807883544556,133.0614046546133, +28,28,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,80.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.6428488149,2010-11-07,,2010-44,169.2968252664496,111.24073736923242, +29,29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,45.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.0251515904,2010-11-14,,2010-45,106.12311496184077,58.217447937461856, +30,30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,56.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,44.3045353853,2010-11-21,,2010-46,118.33371711360425,58.852053524701844, +31,31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,71.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,48.8054857366,2010-11-28,,2010-47,164.69919834512902,100.55877123219, +32,32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,52.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,49.8856071422,2010-12-05,,2010-48,119.07469144324239,41.719530566163336, +33,33,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,57.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,103.2793251316,2010-12-12,,2010-49,131.47527120542708,119.5747439493425, +34,34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,103.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,165.859932979,2010-12-19,,2010-50,211.19362079153714,127.65876444729223, +35,35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,58.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,50.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,233.7505011986,2010-12-26,,2010-51,159.48829708866052,203.5756605452086, +36,36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,42.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,94.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,262.8198213217,2011-01-02,,2010-52,96.97953321159989,243.55007468522396, +37,37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,46.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,39.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,491.30855641510004,2011-01-09,,2011-1,122.13038963830614,264.7381851283089, +38,38,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,15.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,50.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,71.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,455.2188136535,2011-01-16,,2011-2,166.35141694766375,400.87552219977334, +39,39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,19.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,54.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,424.3908126385,2011-01-23,,2011-3,147.49149957496024,345.65723906768, +40,40,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,58.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,471.80443822629996,2011-01-30,,2011-4,148.65442715905778,222.39434619289696, +41,41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,25.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,62.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,430.77262936989996,2011-02-06,,2011-5,181.8307671140526,511.91288860674007, +42,42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,54.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,39.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,389.519539572,2011-02-13,,2011-6,143.20300541364153,316.5827308615333, +43,43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,26.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,68.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,327.4187567555,2011-02-20,,2011-7,186.6941003060354,347.828627950735, +44,44,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,74.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,171.4152976138,2011-02-27,,2011-8,138.21216661199057,248.92926508643, +45,45,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,71.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,118.5488974152,2011-03-06,,2011-9,140.08554871834573,175.84089770261335, +46,46,0.0,1.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,19.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,51.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,68.7788231767,2011-03-13,,2011-10,152.70956507999932,54.96644825935241, +47,47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,60.4152755255,2011-03-20,,2011-11,133.13910486563495,241.64134351337466, +48,48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,52.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.152971156999996,2011-03-27,,2011-12,132.37899969874832,137.487529947635, +49,49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,49.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,39.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,33.7915947854,2011-04-03,,2011-13,128.32905559371395,31.805969158647116, +50,50,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,62.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.6178451748,2011-04-10,,2011-14,131.95138567861687,41.309145251437506, +51,51,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,69.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.0444946079,2011-04-17,,2011-15,124.99306743046975,53.01633811954942, +52,52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,33.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,61.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,43.0048337433,2011-10-23,,2011-42,181.17495041987618,90.925372440345, +53,53,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,46.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,49.7521438651,2011-10-30,,2011-43,118.2948354030229,41.18469667106129, +54,54,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,57.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.6976776416,2011-11-06,,2011-44,151.68485903004452,299.82060354851666, +55,55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,43.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,47.8636254855,2011-11-13,,2011-45,78.51566296024109,46.01937120284462, +56,56,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,28.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,60.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,33.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,55.7159969913,2011-11-20,,2011-46,156.02773023495217,271.58813572046, +57,57,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,29.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,75.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,33.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,39.9297978438,2011-11-27,,2011-47,162.0500027640981,69.89849590994446, +58,58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,62.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,25.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,44.0889892158,2011-12-04,,2011-48,160.46632694412892,43.91444203798667, +59,59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,52.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,57.3985883535,2011-12-11,,2011-49,106.57047852979336,47.10352388687129, +60,60,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,0.0,0.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,63.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,44.572797593100006,2011-12-18,,2011-50,108.93363901387437,105.97584979641859, +61,61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,46.8445510418,2011-12-25,,2011-51,39.20860622783706,81.26384087263285, +62,62,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,15.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,42.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,58.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.6051662164,2012-01-01,,2011-52,94.62403594823469,79.697620195828, +63,63,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,49.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,41.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,68.3276800312,2012-01-08,,2012-1,54.45112134393812,50.389598238194, +64,64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,28.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,56.4,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,55.76794663890001,2012-01-15,,2012-2,141.01253264060398,60.661350021871364, +65,65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,63.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,73.3085138496,2012-01-22,,2012-3,170.3642417500061,199.57067094110786, +66,66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,70.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,71.9112996133,2012-01-29,,2012-4,191.74443387902807,192.66522818914058, +67,67,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,35.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,78.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,13.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,134.699679251,2012-02-05,,2012-5,222.2547163601321,125.20701494235693, +68,68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,71.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,251.2451413623,2012-02-12,,2012-6,204.66244102392426,247.72457124330336, +69,69,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,24.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,118.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,39.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,530.5706220533999,2012-02-19,,2012-7,293.5544265227025,363.861364663505, +70,70,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,64.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,2.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,506.0044304535,2012-02-26,,2012-8,144.733151350284,244.33177645991333, +71,71,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,58.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,454.7044421126,2012-03-04,,2012-9,171.83128619214358,458.66853212076006, +72,72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,50.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,318.4388480821,2012-03-11,,2012-10,137.02550280195797,211.812028024774, +73,73,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,71.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,257.4226033654,2012-03-18,,2012-11,183.11697895304476,185.00194025429334, +74,74,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,47.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,116.76620722850001,2012-03-25,,2012-12,141.90009434389452,114.39870381371, +75,75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,66.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,66.2335439411,2012-04-01,,2012-13,199.31759057736048,95.825757829388, +76,76,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,57.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,51.5454428306,2012-04-08,,2012-14,151.77187441524038,42.96557534272742, +77,77,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,61.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.9863588667,2012-04-15,,2012-15,117.05495137004775,35.24278459982556, +78,78,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,32.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,41.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,43.2072094315,2012-10-21,,2012-42,165.3242115590981,91.73379431819694, +79,79,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,2.0,0.0,0.0,37.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,56.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,19.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31.090902024800002,2012-10-28,,2012-43,193.09510410783386,82.75017734792692, +80,80,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,44.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.9608034305,2012-11-04,,2012-44,174.88279335878534,56.38286983112829, +81,81,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,58.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,39.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.7736096537,2012-11-11,,2012-45,174.1701032182162,41.26276091073524, +82,82,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,64.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.1059967737,2012-11-18,,2012-46,199.78879671830444,42.26253351348581, +83,83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,32.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.7142778247,2012-11-25,,2012-47,122.10373225170065,48.02914873335136, +84,84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,33.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,48.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,37.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31.9357634929,2012-12-02,,2012-48,146.83696141566259,77.07329106383588, +85,85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.0,0.0,0.0,0.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,61.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,54.747023130600006,2012-12-09,,2012-49,171.28596461724047,45.84488833087524, +86,86,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,0.0,0.0,13.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,88.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,71.2596513759,2012-12-16,,2012-50,176.3924205041056,75.99848229692057, +87,87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,62.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,97.7227397611,2012-12-23,,2012-51,149.98139708047253,53.875989261457235, +88,88,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,56.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,31.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,126.2738541982,2012-12-30,,2012-52,182.758009373531,112.93663007522187, +89,89,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,59.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,191.00865687299998,2013-01-13,,2013-2,192.58765081344274,125.21326908247494, +90,90,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,42.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,62.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,308.9250728285,2013-01-20,,2013-3,209.81502964461043,223.05431018863803, +91,91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,42.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,65.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,424.89987142160004,2013-01-27,,2013-4,218.14203193726647,423.5412153493801, +92,92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,68.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,33.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,665.3453033306,2013-02-03,,2013-5,221.9285205705349,189.15617921524057, +93,93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,28.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,72.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,28.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,948.9817020397,2013-02-10,,2013-6,218.07819413351694,675.4475927423391, +94,94,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,76.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1018.0787068558,2013-02-17,,2013-7,228.7629829911222,860.75427625143, +95,95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,57.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,41.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,802.8115058545,2013-02-24,,2013-8,231.80009767025766,566.979572570145, +96,96,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,71.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,725.2638726005,2013-03-03,,2013-9,200.7251691408387,527.903480207705, +97,97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,64.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,494.3453421942,2013-03-10,,2013-10,172.0014643670401,400.15543441254664, +98,98,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,29.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,47.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,389.0901570913,2013-03-17,,2013-11,174.0216266529047,231.76911291616, +99,99,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,27.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,60.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,2.0,0.0,28.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,234.1955989476,2013-03-24,,2013-12,146.49953322211363,194.50236462156897, +100,100,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,26.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,81.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,49.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,159.3408728771,2013-03-31,,2013-13,214.55333359128483,201.04328437511998, +101,101,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,83.13826781819999,2013-04-07,,2013-14,103.84483976406376,67.443816630616, +102,102,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,30.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,66.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,64.507250615,2013-04-14,,2013-15,136.99792564881417,67.0741884465945, +103,103,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,46.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,42.3254296472,2013-04-21,,2013-16,141.88150035243646,77.43006261617, +104,104,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,61.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40.8513092444,2013-10-27,,2013-43,143.8645711367746,45.67947472859274, +105,105,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,33.6422546719,2013-11-03,,2013-44,109.80964912096489,57.19465264140387, +106,106,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,54.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.5602824266,2013-11-10,,2013-45,138.38686536032873,35.40230664883, +107,107,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,44.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40.9056147402,2013-11-17,,2013-46,126.94616514305854,41.15477062033962, +108,108,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,53.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.2639636695,2013-11-24,,2013-47,106.70640232862934,35.7565106224105, +109,109,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,50.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,43.3928472808,2013-12-01,,2013-48,130.103264439698,44.57304784483461, +110,110,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,50.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,42.7798853822,2013-12-08,,2013-49,135.53770533285027,255.07015583427557, +111,111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,57.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40.5418296289,2013-12-15,,2013-50,145.27847492651296,90.77513998158251, +112,112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,49.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40.1692025184,2013-12-22,,2013-51,139.34676891360525,119.08779858382712, +113,113,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,52.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.5414142098,2013-12-29,,2013-52,141.41374190728513,261.0333059442755, +114,114,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.0130897967,2014-01-05,,2014-1,116.69226642760191,37.68100037149334, +115,115,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.4318137655,2014-01-12,,2014-2,110.56495274744057,28.201518033537333, +116,116,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,32.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,48.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.6132726326,2014-01-19,,2014-3,154.05366371124026,47.269484634089125, +117,117,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,25.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,57.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.4640693227,2014-01-26,,2014-4,150.79977197332516,192.90610418570554, +118,118,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,29.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,65.6,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,33.6422546719,2014-02-02,,2014-5,167.5640678007339,167.16308155517441, +119,119,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,74.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,33.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,92.6350996852,2014-02-09,,2014-6,187.51214519786723,104.50874068049589, +120,120,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,27.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,58.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,150.5169181016,2014-02-16,,2014-7,167.5294345895525,194.19368121336336, +121,121,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,60.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,211.59799849110001,2014-02-23,,2014-8,226.25687890123285,283.56038051695504, +122,122,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,78.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,33.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,281.2172088143,2014-03-02,,2014-9,198.3655925363384,285.403290636355, +123,123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,52.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,60.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,310.6314229084,2014-03-09,,2014-10,233.12667580047545,243.20684329583557, +124,124,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,72.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,266.9317575155,2014-03-16,,2014-11,184.9076168226602,158.5934740627086, +125,125,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,69.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,164.6490756618,2014-03-23,,2014-12,160.5026897007169,149.188719314, +126,126,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,56.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,121.45648635469999,2014-03-30,,2014-13,148.1108589782122,238.52907216560004, +127,127,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,30.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,56.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,44.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,83.1059811123,2014-04-06,,2014-14,131.8974414783752,67.41354299231837, +128,128,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,27.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,72.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,72.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,67.6979318282,2014-04-13,,2014-15,192.60455645971254,92.72093397770445, +129,129,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,27.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,59.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,91.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,33.0340834013,2014-04-20,,2014-16,126.65759655203229,68.20501467479, +130,130,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,57.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,816.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.0620301722,2014-10-26,,2014-43,44.21796578690043,74.8182951647, +131,131,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,11.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,78.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,262.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.2657418347,2014-11-02,,2014-44,81.83438781394695,134.24635578830055, +132,132,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,64.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,169.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.0739084812,2014-11-09,,2014-45,110.24292640348071,20.0739084812, +133,133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,47.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,106.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.2711913727,2014-11-16,,2014-46,93.55121723185205,49.578686699631795, +134,134,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,21.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,56.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,77.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31.0233131073,2014-11-23,,2014-47,166.9655272627948,93.660635573396, +135,135,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,52.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,80.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.7505571792,2014-11-30,,2014-48,110.07297775336426,43.376466857358004, +136,136,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,76.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,107.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,51.5613127329,2014-12-07,,2014-49,150.01855860004068,105.8530205624968, +137,137,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,67.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,99.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,59.4613501224,2014-12-14,,2014-50,123.00167898058478,49.82772969846857, +138,138,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,68.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,80.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,64.9154320878,2014-12-21,,2014-51,176.43617383009456,60.398138103295565, +139,139,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,11.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,67.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,71.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,73.4522560336,2014-12-28,,2014-52,115.32763577044327,64.57445029619, +140,140,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,44.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,5.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,41.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,48.9002536701,2015-01-04,,2015-1,108.40268655716788,42.32913532316824, +141,141,52.0,8.0,7.0,3.0,102.0,59.0,8.0,33.0,111.0,55.0,22.0,348.0,0.0,9.0,35.0,4.0,30.0,5.0,66.0,30.0,13.0,34.0,45.0,81.0,34.0,153.0,19.0,6.0,29.0,7.0,9.0,42.0,298.0,53.0,4.0,14.0,22.0,19.0,61.0,65.0,7.0,105.0,59.0,137.0,0.0,37.0,3.0,33.0,498.0,50.0,41.0,146.0,32.0,27.0,16.0,0.0,34.0,486.0,180.0,82.0,3.0,85.0,1.0,488.0,4.0,74.0,12.0,37.0,166.0,0.0,15.0,32.0,6.0,83.0,34.0,47.0,81.0,1.0,3.0,3.0,169.0,47.0,238.0,12.0,35.0,414.0,20.0,31.0,193.0,82.0,1.0,104.0,0.0,27.0,0.0,68.0,42.6,3.0,0.0,319.0,0.0,124.0,13.0,17.0,30.0,352.0,543.0,37.0,33.0,0.0,56.0,102.0,23.0,219.0,45.0,0.0,563.5,26.0,20.0,506.0,92.0,314.0,78.0,221.0,337.0,1.0,66.0,0.0,1.0,9.0,262.0,0.0,7.0,0.0,102.0,40.0,6.0,242.0,3.0,158.0,20.0,49.0,39.0,15.0,246.0,9.0,92.0,559.0,0.0,109.0,1031.0,274.0,63.0,64.0,207.0,8.0,35.0,0.0,48.0,29.0,13.0,27.0,921.0,16.0,0.0,221.0,11.0,3.0,145.0,38.0,61.0,104.0,6.0,55.0,0.0,0.0,2.0,11.0,20.0,139.0,76.0,546.0,383.0,11.0,66.0,12.0,100.0,0.0,76.0,17.0,257.0,25.0,69.0,154.0,43.0,20.0,8.0,24.0,23.0,16.0,0.0,176.0,26.0,23.0,24.0,8.0,0.0,85.0,79.0,0.0,35.0,22.0,13.0,23.0,14.0,44.0,154.0,60.0,49.0,68.0,149.0,7.0,3.0,86.0,12.0,203.0,0.0,1.0,43.0,12.0,28.0,3.0,7.0,5.0,69.0,21.0,57.0,67.0,7.0,231.0,170.0,18.0,173.0,13.0,65.0,30.0,5.0,10.0,93.0,11.0,0.0,0.0,5.0,141.0,61.0,48.0,12.0,0.0,14.0,17.0,0.0,0.0,1.0,23.0,27.0,0.0,367.0,61.0,40.0,10.0,0.0,27.0,23.0,382.0,105.0,6.0,31.0,0.0,0.0,151.0,8.0,229.0,14.0,0.0,49.0,14.0,32.0,34.0,0.0,0.0,73.0,56.962974066899996,2015-01-11,,2015-2,55.40325148951115,51.19613427744, +142,142,93.0,16.0,8.0,5.0,292.0,159.0,18.0,134.0,259.0,165.0,34.0,1017.0,6.0,15.0,73.0,6.0,57.0,13.0,179.0,60.0,32.0,95.0,106.0,182.0,68.0,419.0,28.0,12.0,56.0,23.0,11.0,97.0,736.0,121.0,6.0,25.0,64.0,37.0,158.0,290.0,56.0,383.0,150.0,269.0,0.0,78.0,9.0,51.0,1332.0,122.0,114.0,370.0,74.0,61.0,51.0,1.0,119.0,916.0,448.0,201.0,6.0,170.0,3.0,856.0,10.0,161.0,23.0,108.0,384.0,0.0,13.0,119.0,10.0,285.0,66.0,72.0,277.0,2.0,1.0,16.0,313.0,104.0,528.0,23.0,111.0,1255.0,30.0,111.0,466.0,240.0,0.0,272.0,1.0,76.0,1.0,176.0,41.2,7.0,0.0,757.0,3.0,320.0,46.0,39.0,107.0,777.0,1579.0,67.0,181.0,7.0,29.0,305.0,79.0,581.0,184.0,0.0,1127.0,65.0,58.0,1789.0,163.0,732.0,106.0,554.0,957.0,1.0,165.0,0.0,1.0,7.0,723.0,0.0,19.0,0.0,252.0,87.0,21.0,758.0,6.0,413.0,27.0,83.0,76.0,60.0,601.0,28.0,236.0,1550.0,0.0,293.0,2523.0,561.0,160.0,140.0,496.0,19.0,91.0,0.0,97.0,46.0,26.0,113.0,2301.0,33.0,0.0,608.0,31.0,7.0,324.0,124.0,115.0,281.0,31.0,166.0,0.0,0.0,4.0,85.0,78.0,358.0,164.0,1621.0,1064.0,51.0,142.0,15.0,184.0,0.0,206.0,57.0,585.0,41.0,179.0,497.0,75.0,35.0,18.0,50.0,51.0,35.0,2.0,498.0,47.0,78.0,38.0,28.0,0.0,223.0,251.0,0.0,111.0,27.0,43.0,89.0,52.0,107.0,407.0,124.0,107.0,164.0,323.0,24.0,1.0,228.0,32.0,504.0,0.0,0.0,106.0,18.0,35.0,5.0,11.0,11.0,186.0,57.0,123.0,196.0,5.0,456.0,498.0,44.0,469.0,75.0,140.0,71.0,20.0,20.0,240.0,14.0,38.0,1.0,2.0,384.0,116.0,123.0,18.0,0.0,32.0,32.0,1.0,0.0,0.0,89.0,72.0,0.0,897.0,109.0,92.0,28.0,0.0,78.0,52.0,903.0,294.0,13.0,86.0,0.0,0.0,412.0,11.0,493.0,32.0,0.0,111.0,38.0,88.0,119.0,0.0,0.0,98.0,130.6877802156,2015-01-18,,2015-3,129.65226679445186,125.71749992600002, +143,143,106.0,18.0,10.0,6.0,312.0,153.0,11.0,137.0,251.0,191.0,27.0,1109.0,0.0,16.0,71.0,3.0,61.0,9.0,182.0,90.0,15.0,98.0,111.0,188.0,79.0,458.0,42.0,14.0,56.0,33.0,12.0,104.0,727.0,132.0,6.0,19.0,56.0,32.0,169.0,234.0,13.0,242.0,158.0,248.0,0.0,62.0,9.0,44.0,1324.0,106.0,143.0,388.0,78.0,70.0,55.0,2.0,124.0,734.0,353.0,168.0,9.0,179.0,2.0,1222.0,14.0,205.0,25.0,98.0,552.0,0.0,20.0,127.0,13.0,260.0,59.0,69.0,297.0,1.0,2.0,21.0,347.0,111.0,498.0,19.0,97.0,1100.0,34.0,105.0,571.0,249.0,2.0,321.0,0.0,135.0,0.0,140.0,39.8,5.0,0.0,769.0,5.0,372.0,44.0,26.0,96.0,952.0,1831.0,62.0,228.0,6.0,23.0,352.0,70.0,542.0,197.0,0.0,1243.0,65.0,43.0,1600.0,188.0,835.0,118.0,488.0,1055.0,1.0,200.0,0.0,0.0,50.0,694.0,0.0,15.0,1.0,294.0,54.0,24.0,703.0,9.0,536.0,25.0,102.0,80.0,73.0,586.0,24.0,279.0,1620.0,0.0,258.0,2674.0,480.0,189.0,185.0,485.0,31.0,73.0,0.0,133.0,55.0,31.0,97.0,2425.0,30.0,0.0,663.0,28.0,8.0,327.0,179.0,139.0,256.0,24.0,207.0,0.0,0.0,6.0,42.0,81.0,330.0,175.0,1700.0,997.0,43.0,124.0,18.0,92.0,0.0,266.0,42.0,671.0,53.0,212.0,488.0,104.0,34.0,28.0,59.0,57.0,45.0,2.0,562.0,42.0,102.0,50.0,26.0,0.0,291.0,245.0,0.0,110.0,40.0,32.0,59.0,57.0,109.0,479.0,120.0,113.0,225.0,354.0,14.0,1.0,222.0,24.0,577.0,0.0,0.0,112.0,29.0,65.0,2.0,14.0,15.0,187.0,42.0,123.0,200.0,16.0,426.0,521.0,47.0,466.0,38.0,131.0,67.0,15.0,24.0,285.0,8.0,15.0,0.0,2.0,449.0,125.0,117.0,16.0,0.0,51.0,49.0,2.0,0.0,0.0,56.0,82.0,0.0,891.0,162.0,145.0,26.0,2.0,81.0,66.0,1013.0,246.0,13.0,85.0,0.0,0.0,460.0,8.0,596.0,20.0,0.0,123.0,30.0,114.0,102.0,0.0,0.0,124.0,265.98989726450003,2015-01-25,,2015-4,267.4277095111829,449.0223873966401, +144,144,104.0,14.0,7.0,7.0,276.0,166.0,12.0,81.0,235.0,195.0,23.0,963.0,11.0,26.0,87.0,7.0,69.0,8.0,209.0,84.0,24.0,115.0,84.0,190.0,102.0,497.0,25.0,13.0,53.0,26.0,17.0,116.0,804.0,90.0,12.0,24.0,77.0,69.0,199.0,223.0,11.0,219.0,149.0,276.0,0.0,115.0,11.0,29.0,1323.0,102.0,114.0,441.0,92.0,56.0,79.0,1.0,114.0,837.0,283.0,199.0,8.0,149.0,3.0,1300.0,10.0,161.0,23.0,104.0,486.0,0.0,15.0,101.0,14.0,289.0,63.0,73.0,276.0,0.0,5.0,9.0,301.0,126.0,509.0,26.0,73.0,855.0,34.0,93.0,618.0,226.0,0.0,323.0,0.0,95.0,1.0,141.0,38.4,5.0,0.0,798.0,10.0,350.0,20.0,31.0,111.0,888.0,2099.0,91.0,117.0,2.0,19.0,314.0,64.0,521.0,179.0,1.0,1228.0,62.0,44.0,1954.0,213.0,874.0,183.0,522.0,1099.0,2.0,176.0,0.0,0.0,13.0,602.0,0.0,13.0,0.0,275.0,121.0,27.0,706.0,6.0,467.0,37.0,92.0,81.0,36.0,587.0,34.0,243.0,1657.0,0.0,289.0,2629.0,509.0,185.0,147.0,496.0,30.0,74.0,0.0,114.0,46.0,23.0,74.0,2138.0,37.0,0.0,895.0,20.0,6.0,377.0,183.0,145.0,249.0,26.0,193.0,0.0,0.0,5.0,50.0,73.0,342.0,179.0,2875.0,1044.0,36.0,149.0,11.0,70.0,0.0,250.0,61.0,529.0,50.0,189.0,479.0,85.0,52.0,28.0,139.0,123.0,53.0,1.0,548.0,48.0,101.0,42.0,25.0,0.0,242.0,265.0,0.0,92.0,41.0,50.0,60.0,70.0,161.0,604.0,116.0,130.0,225.0,322.0,16.0,4.0,261.0,30.0,649.0,0.0,0.0,90.0,18.0,48.0,1.0,13.0,10.0,185.0,71.0,154.0,170.0,20.0,543.0,564.0,41.0,530.0,39.0,127.0,59.0,21.0,48.0,268.0,11.0,13.0,0.0,4.0,374.0,101.0,105.0,20.0,0.0,28.0,23.0,0.0,1.0,0.0,72.0,84.0,0.0,862.0,126.0,158.0,25.0,1.0,41.0,53.0,1077.0,237.0,18.0,119.0,0.0,0.0,457.0,7.0,514.0,31.0,0.0,95.0,38.0,82.0,92.0,0.0,0.0,143.0,532.9213176789,2015-02-01,,2015-5,533.8282594127959,332.96639246388, +145,145,130.0,20.0,10.0,11.0,276.0,151.0,7.0,95.0,248.0,253.0,20.0,890.0,6.0,28.0,49.0,9.0,44.0,6.0,193.0,58.0,17.0,91.0,74.0,261.0,88.0,350.0,21.0,10.0,52.0,18.0,17.0,111.0,732.0,111.0,3.0,25.0,68.0,45.0,195.0,261.0,12.0,233.0,160.0,261.0,0.0,114.0,12.0,65.0,1258.0,110.0,86.0,402.0,82.0,46.0,82.0,1.0,93.0,863.0,325.0,129.0,6.0,144.0,4.0,616.0,12.0,208.0,22.0,109.0,387.0,0.0,363.0,132.0,12.0,328.0,79.0,60.0,231.0,0.0,3.0,21.0,323.0,92.0,479.0,18.0,57.0,547.0,44.0,84.0,580.0,220.0,0.0,294.0,0.0,71.0,0.0,141.0,37.0,8.0,0.0,703.0,6.0,267.0,21.0,38.0,62.0,834.0,2518.0,69.0,127.0,10.0,18.0,291.0,70.0,441.0,193.0,0.0,1303.0,64.0,39.0,1585.0,163.0,858.0,144.0,430.0,879.0,3.0,182.0,0.0,0.0,8.0,691.0,0.0,16.0,0.0,271.0,82.0,35.0,718.0,14.0,408.0,30.0,93.0,71.0,60.0,539.0,29.0,290.0,1464.0,0.0,327.0,2844.0,503.0,300.0,150.0,423.0,18.0,303.0,0.0,91.0,35.0,22.0,86.0,1977.0,23.0,0.0,812.0,25.0,9.0,341.0,171.0,115.0,329.0,34.0,106.0,0.0,0.0,5.0,69.0,72.0,354.0,151.0,2050.0,874.0,16.0,137.0,10.0,80.0,0.0,254.0,64.0,519.0,45.0,180.0,405.0,95.0,31.0,17.0,51.0,58.0,46.0,0.0,481.0,54.0,104.0,56.0,32.0,0.0,222.0,223.0,0.0,87.0,38.0,49.0,68.0,83.0,142.0,584.0,108.0,121.0,220.0,278.0,19.0,4.0,212.0,29.0,575.0,0.0,0.0,89.0,24.0,47.0,4.0,20.0,28.0,171.0,57.0,94.0,171.0,19.0,474.0,441.0,29.0,371.0,30.0,117.0,58.0,16.0,31.0,247.0,18.0,12.0,0.0,5.0,331.0,103.0,131.0,20.0,0.0,15.0,15.0,3.0,0.0,0.0,53.0,96.0,0.0,865.0,136.0,94.0,32.0,0.0,60.0,41.0,991.0,227.0,7.0,77.0,0.0,0.0,414.0,3.0,499.0,46.0,0.0,99.0,48.0,75.0,90.0,0.0,0.0,122.0,858.5328627301,2015-02-08,,2015-6,858.2667087159821,629.3834638192201, +146,146,103.0,13.0,4.0,4.0,195.0,165.0,11.0,80.0,204.0,156.0,30.0,760.0,1.0,13.0,58.0,1.0,37.0,2.0,234.0,50.0,7.0,75.0,82.0,219.0,60.0,301.0,22.0,7.0,66.0,19.0,7.0,108.0,657.0,75.0,5.0,34.0,93.0,18.0,174.0,319.0,9.0,218.0,128.0,203.0,0.0,73.0,7.0,50.0,1255.0,107.0,109.0,341.0,64.0,79.0,28.0,1.0,84.0,753.0,281.0,143.0,2.0,163.0,1.0,538.0,9.0,198.0,20.0,107.0,362.0,0.0,52.0,87.0,13.0,342.0,38.0,63.0,196.0,2.0,6.0,13.0,279.0,98.0,502.0,14.0,50.0,502.0,17.0,98.0,500.0,181.0,1.0,247.0,0.0,95.0,1.0,106.0,31.0,2.0,1.0,705.0,3.0,281.0,16.0,34.0,101.0,953.0,2541.0,103.0,89.0,3.0,16.0,294.0,58.0,442.0,156.0,0.0,1164.0,62.0,48.0,1593.0,167.0,643.0,181.0,464.0,796.0,4.0,184.0,0.0,1.0,6.0,598.0,0.0,14.0,0.0,225.0,108.0,29.0,755.0,9.0,448.0,31.0,69.0,82.0,95.0,601.0,20.0,216.0,1517.0,0.0,244.0,2607.0,540.0,198.0,160.0,441.0,8.0,69.0,0.0,127.0,28.0,19.0,108.0,2139.0,21.0,0.0,1588.0,38.0,12.0,345.0,142.0,122.0,267.0,18.0,126.0,0.0,0.0,1.0,34.0,57.0,421.0,149.0,1714.0,786.0,36.0,134.0,16.0,63.0,0.0,217.0,28.0,489.0,33.0,192.0,349.0,50.0,28.0,26.0,54.0,46.0,39.0,0.0,492.0,43.0,99.0,39.0,17.0,1.0,195.0,202.0,0.0,53.0,40.0,42.0,48.0,46.0,147.0,437.0,125.0,124.0,166.0,337.0,19.0,2.0,143.0,32.0,608.0,0.0,0.0,89.0,19.0,25.0,3.0,164.0,14.0,165.0,46.0,116.0,144.0,11.0,492.0,405.0,29.0,367.0,20.0,113.0,85.0,11.0,24.0,199.0,12.0,8.0,0.0,6.0,288.0,77.0,111.0,23.0,0.0,16.0,16.0,2.0,0.0,2.0,58.0,112.0,0.0,942.0,117.0,74.0,35.0,2.0,46.0,37.0,1003.0,227.0,9.0,77.0,0.0,0.0,438.0,11.0,467.0,32.0,0.0,94.0,30.0,97.0,112.0,0.0,0.0,132.0,979.3634137810001,2015-02-15,,2015-7,979.8720845768044,813.68163325414, +147,147,125.0,16.0,5.0,5.0,171.0,123.0,16.0,76.0,208.0,171.0,30.0,818.0,4.0,9.0,49.0,3.0,27.0,11.0,189.0,35.0,14.0,71.0,64.0,138.0,83.0,280.0,21.0,3.0,66.0,25.0,10.0,94.0,567.0,80.0,5.0,33.0,46.0,29.0,167.0,319.0,10.0,187.0,132.0,240.0,1.0,74.0,7.0,38.0,1481.0,116.0,87.0,372.0,77.0,38.0,46.0,1.0,124.0,756.0,317.0,157.0,9.0,177.0,6.0,436.0,6.0,170.0,25.0,230.0,327.0,0.0,26.0,104.0,11.0,318.0,26.0,69.0,232.0,4.0,6.0,13.0,307.0,98.0,509.0,18.0,39.0,445.0,11.0,90.0,530.0,212.0,0.0,340.0,0.0,68.0,1.0,113.0,40.0,5.0,2.0,640.0,2.0,329.0,18.0,43.0,155.0,943.0,2145.0,99.0,116.0,6.0,17.0,254.0,40.0,468.0,149.0,0.0,1186.0,58.0,124.0,1640.0,196.0,583.0,86.0,454.0,796.0,1.0,214.0,0.0,1.0,18.0,623.0,0.0,18.0,0.0,227.0,86.0,33.0,777.0,8.0,416.0,25.0,76.0,96.0,88.0,568.0,13.0,222.0,1448.0,0.0,223.0,2633.0,521.0,187.0,145.0,475.0,9.0,65.0,1.0,98.0,34.0,15.0,91.0,2081.0,33.0,0.0,1105.0,24.0,7.0,322.0,152.0,117.0,244.0,11.0,119.0,0.0,0.0,4.0,34.0,77.0,362.0,115.0,1493.0,864.0,40.0,130.0,19.0,65.0,0.0,164.0,20.0,490.0,29.0,239.0,391.0,52.0,64.0,32.0,72.0,75.0,36.0,0.0,387.0,39.0,72.0,35.0,17.0,0.0,236.0,222.0,0.0,98.0,38.0,37.0,44.0,63.0,151.0,499.0,126.0,114.0,181.0,354.0,16.0,1.0,146.0,34.0,630.0,0.0,2.0,122.0,24.0,53.0,2.0,19.0,9.0,189.0,43.0,121.0,180.0,10.0,412.0,401.0,24.0,481.0,26.0,142.0,68.0,12.0,22.0,205.0,10.0,11.0,0.0,4.0,297.0,66.0,118.0,18.0,0.0,25.0,21.0,1.0,0.0,0.0,83.0,90.0,1.0,945.0,144.0,63.0,30.0,0.0,32.0,36.0,939.0,251.0,13.0,60.0,3.0,0.0,428.0,3.0,495.0,19.0,0.0,84.0,23.0,138.0,131.0,0.0,0.0,122.0,887.8844135927002,2015-02-22,,2015-8,888.4532136099724,870.8698320450602, +148,148,135.0,12.0,7.0,5.0,168.0,96.0,7.0,64.0,176.0,169.0,19.0,754.0,9.0,11.0,56.0,6.0,45.0,8.0,143.0,53.0,18.0,67.0,66.0,148.0,66.0,257.0,13.0,6.0,49.0,14.0,12.0,100.0,564.0,96.0,9.0,20.0,48.0,40.0,182.0,307.0,12.0,176.0,102.0,208.0,0.0,61.0,9.0,37.0,1325.0,143.0,93.0,305.0,52.0,58.0,49.0,0.0,101.0,762.0,319.0,161.0,10.0,127.0,4.0,468.0,8.0,175.0,25.0,131.0,316.0,0.0,18.0,95.0,22.0,295.0,46.0,82.0,221.0,0.0,2.0,20.0,335.0,87.0,502.0,19.0,32.0,336.0,15.0,83.0,510.0,167.0,1.0,322.0,0.0,74.0,1.0,58.0,41.0,4.0,0.0,585.0,4.0,272.0,31.0,43.0,149.0,779.0,1794.0,65.0,92.0,5.0,17.0,272.0,65.0,460.0,160.0,1.0,982.0,64.0,57.0,1412.0,181.0,614.0,103.0,420.0,802.0,1.0,172.0,0.0,0.0,18.0,555.0,0.0,16.0,0.0,211.0,76.0,71.0,616.0,14.0,372.0,34.0,78.0,66.0,59.0,599.0,19.0,225.0,1430.0,0.0,257.0,2425.0,402.0,171.0,140.0,425.0,11.0,67.0,0.0,109.0,42.0,30.0,89.0,2028.0,33.0,0.0,743.0,29.0,4.0,381.0,151.0,116.0,479.0,16.0,117.0,0.0,0.0,11.0,32.0,75.0,562.0,135.0,1440.0,725.0,30.0,132.0,16.0,83.0,0.0,159.0,43.0,538.0,31.0,129.0,400.0,55.0,38.0,21.0,59.0,62.0,44.0,0.0,397.0,66.0,51.0,43.0,25.0,0.0,212.0,185.0,0.0,81.0,29.0,37.0,65.0,69.0,131.0,458.0,102.0,104.0,219.0,316.0,10.0,1.0,146.0,30.0,508.0,0.0,0.0,105.0,29.0,43.0,2.0,13.0,11.0,200.0,59.0,91.0,114.0,6.0,418.0,364.0,23.0,377.0,42.0,131.0,55.0,14.0,25.0,188.0,13.0,5.0,0.0,6.0,361.0,65.0,115.0,27.0,0.0,27.0,17.0,3.0,0.0,0.0,53.0,194.0,0.0,908.0,129.0,92.0,31.0,0.0,32.0,24.0,759.0,186.0,15.0,85.0,0.0,0.0,416.0,8.0,450.0,25.0,0.0,91.0,26.0,80.0,90.0,0.0,0.0,132.0,667.3293937888,2015-03-01,,2015-9,664.4673636480602,573.68378570126, +149,149,113.0,19.0,4.0,4.0,208.0,133.0,7.0,167.0,206.0,171.0,24.0,857.0,1.0,27.0,68.0,7.0,45.0,11.0,213.0,57.0,9.0,71.0,97.0,145.0,57.0,347.0,18.0,7.0,86.0,13.0,13.0,97.0,612.0,99.0,7.0,37.0,63.0,35.0,168.0,355.0,7.0,174.0,113.0,254.0,0.0,102.0,6.0,40.0,1266.0,113.0,148.0,378.0,69.0,64.0,34.0,1.0,114.0,731.0,294.0,165.0,6.0,127.0,4.0,415.0,11.0,194.0,23.0,124.0,338.0,0.0,23.0,100.0,6.0,339.0,52.0,80.0,260.0,5.0,2.0,29.0,289.0,75.0,579.0,29.0,36.0,387.0,16.0,101.0,567.0,231.0,1.0,335.0,0.0,123.0,1.0,104.0,29.0,9.0,0.0,671.0,5.0,352.0,24.0,39.0,99.0,889.0,1467.0,110.0,91.0,6.0,30.0,269.0,57.0,508.0,158.0,0.0,1201.0,70.0,45.0,1652.0,184.0,803.0,83.0,471.0,871.0,1.0,177.0,0.0,2.0,13.0,522.0,0.0,13.0,0.0,242.0,86.0,33.0,722.0,5.0,406.0,31.0,110.0,74.0,39.0,615.0,18.0,213.0,1548.0,0.0,257.0,2393.0,512.0,210.0,164.0,430.0,7.0,58.0,0.0,137.0,36.0,48.0,101.0,2011.0,38.0,0.0,1889.0,55.0,8.0,302.0,166.0,129.0,203.0,20.0,117.0,0.0,0.0,2.0,45.0,61.0,349.0,144.0,1211.0,808.0,12.0,129.0,14.0,60.0,0.0,211.0,54.0,531.0,47.0,111.0,431.0,112.0,33.0,10.0,47.0,83.0,63.0,1.0,405.0,60.0,67.0,39.0,20.0,0.0,241.0,167.0,0.0,68.0,33.0,41.0,57.0,66.0,117.0,459.0,119.0,83.0,172.0,343.0,13.0,5.0,136.0,32.0,698.0,0.0,0.0,106.0,30.0,49.0,0.0,14.0,8.0,195.0,37.0,109.0,175.0,9.0,395.0,395.0,26.0,397.0,39.0,126.0,76.0,9.0,33.0,211.0,15.0,16.0,0.0,4.0,368.0,75.0,129.0,29.0,1.0,27.0,12.0,1.0,0.0,0.0,81.0,233.0,0.0,823.0,132.0,88.0,14.0,0.0,31.0,36.0,1023.0,201.0,11.0,68.0,0.0,0.0,435.0,12.0,454.0,20.0,0.0,87.0,53.0,84.0,87.0,0.0,0.0,112.0,406.3883899194,2015-03-08,,2015-10,407.22480900540313,179.94124777098, +150,150,117.0,18.0,7.0,6.0,210.0,130.0,11.0,117.0,219.0,160.0,35.0,808.0,1.0,15.0,67.0,18.0,52.0,13.0,179.0,52.0,12.0,79.0,124.0,168.0,49.0,289.0,24.0,8.0,48.0,28.0,11.0,125.0,618.0,100.0,4.0,20.0,53.0,40.0,165.0,337.0,10.0,162.0,134.0,225.0,0.0,66.0,21.0,35.0,1517.0,135.0,88.0,357.0,59.0,55.0,52.0,3.0,149.0,605.0,373.0,148.0,7.0,119.0,3.0,387.0,17.0,194.0,17.0,133.0,371.0,0.0,22.0,118.0,17.0,370.0,42.0,89.0,223.0,3.0,2.0,21.0,278.0,104.0,587.0,26.0,25.0,374.0,18.0,93.0,630.0,206.0,0.0,284.0,0.0,72.0,2.0,114.0,40.0,2.0,0.0,663.0,3.0,366.0,22.0,34.0,96.0,834.0,1295.0,74.0,113.0,20.0,17.0,346.0,84.0,463.0,174.0,0.0,1389.0,92.0,36.0,1560.0,203.0,824.0,81.0,593.0,1008.0,2.0,207.0,0.0,0.0,13.0,666.0,0.0,14.0,0.0,239.0,74.0,37.0,712.0,14.0,461.0,31.0,75.0,92.0,84.0,621.0,17.0,284.0,1556.0,0.0,242.0,2084.0,529.0,139.0,166.0,371.0,12.0,93.0,0.0,137.0,56.0,21.0,102.0,1782.0,39.0,0.0,1263.0,49.0,12.0,437.0,140.0,241.0,225.0,31.0,117.0,0.0,0.0,7.0,37.0,47.0,340.0,153.0,1269.0,915.0,45.0,127.0,15.0,53.0,0.0,188.0,41.0,545.0,48.0,161.0,470.0,68.0,44.0,17.0,57.0,64.0,60.0,1.0,412.0,71.0,58.0,40.0,32.0,0.0,162.0,210.0,1.0,87.0,39.0,51.0,55.0,65.0,102.0,393.0,106.0,114.0,172.0,264.0,9.0,0.0,177.0,32.0,663.0,0.0,1.0,123.0,19.0,40.0,3.0,18.0,11.0,190.0,56.0,86.0,133.0,7.0,470.0,410.0,32.0,427.0,64.0,114.0,80.0,8.0,56.0,206.0,13.0,9.0,2.0,5.0,373.0,64.0,133.0,17.0,0.0,24.0,14.0,0.0,0.0,0.0,74.0,206.0,0.0,757.0,114.0,97.0,35.0,1.0,27.0,31.0,888.0,260.0,10.0,87.0,0.0,0.0,446.0,8.0,455.0,34.0,0.0,133.0,36.0,86.0,96.0,0.0,0.0,86.0,245.5008018373,2015-03-15,,2015-11,246.60191756274116,262.63076307882005, +151,151,95.0,18.0,6.0,5.0,232.0,106.0,9.0,95.0,257.0,139.0,29.0,802.0,5.0,15.0,67.0,4.0,51.0,9.0,171.0,53.0,10.0,92.0,91.0,178.0,46.0,325.0,26.0,11.0,47.0,38.0,8.0,117.0,584.0,75.0,3.0,28.0,48.0,36.0,181.0,354.0,12.0,214.0,136.0,238.0,0.0,85.0,10.0,34.0,1403.0,104.0,99.0,334.0,79.0,57.0,57.0,0.0,102.0,584.0,371.0,187.0,7.0,128.0,3.0,404.0,7.0,165.0,21.0,115.0,325.0,0.0,15.0,133.0,13.0,349.0,46.0,73.0,258.0,1.0,6.0,15.0,274.0,75.0,572.0,32.0,32.0,305.0,12.0,93.0,541.0,245.0,2.0,261.0,0.0,64.0,1.0,97.0,30.0,5.0,1.0,719.0,8.0,298.0,22.0,41.0,102.0,758.0,1071.0,60.0,102.0,7.0,20.0,279.0,76.0,479.0,199.0,0.0,1226.0,56.0,31.0,1631.0,164.0,823.0,56.0,560.0,915.0,2.0,253.0,0.0,1.0,16.0,672.0,0.0,14.0,0.0,230.0,105.0,44.0,622.0,10.0,445.0,44.0,100.0,72.0,61.0,657.0,24.0,248.0,1651.0,0.0,260.0,1889.0,435.0,144.0,155.0,401.0,17.0,65.0,0.0,141.0,34.0,20.0,118.0,1650.0,30.0,0.0,922.0,36.0,11.0,627.0,191.0,212.0,238.0,20.0,129.0,0.0,0.0,9.0,39.0,52.0,341.0,151.0,1148.0,771.0,28.0,113.0,25.0,50.0,0.0,223.0,31.0,503.0,46.0,182.0,412.0,47.0,30.0,16.0,52.0,68.0,78.0,0.0,376.0,47.0,49.0,63.0,32.0,0.0,193.0,207.0,0.0,91.0,31.0,37.0,59.0,74.0,99.0,419.0,99.0,118.0,196.0,211.0,23.0,5.0,233.0,26.0,540.0,0.0,1.0,130.0,30.0,98.0,6.0,14.0,27.0,191.0,55.0,100.0,140.0,13.0,395.0,399.0,36.0,410.0,67.0,175.0,62.0,15.0,28.0,249.0,9.0,17.0,0.0,5.0,333.0,64.0,134.0,31.0,1.0,21.0,19.0,4.0,0.0,0.0,73.0,147.0,1.0,632.0,144.0,74.0,24.0,1.0,47.0,28.0,863.0,209.0,14.0,91.0,1.0,0.0,376.0,9.0,435.0,26.0,0.0,80.0,39.0,75.0,132.0,0.0,0.0,98.0,199.10135335110002,2015-03-22,,2015-12,197.20325206707548,390.04439811428006, +152,152,131.0,13.0,4.0,4.0,249.0,127.0,20.0,81.0,216.0,143.0,37.0,895.0,4.0,17.0,60.0,5.0,62.0,11.0,208.0,49.0,18.0,82.0,109.0,173.0,53.0,333.0,20.0,9.0,56.0,18.0,13.0,101.0,658.0,75.0,2.0,19.0,31.0,30.0,163.0,252.0,7.0,179.0,100.0,206.0,0.0,89.0,8.0,24.0,1345.0,107.0,93.0,372.0,67.0,44.0,49.0,1.0,115.0,588.0,396.0,175.0,7.0,141.0,2.0,361.0,9.0,173.0,26.0,87.0,435.0,0.0,24.0,131.0,13.0,312.0,39.0,64.0,263.0,1.0,4.0,10.0,278.0,99.0,579.0,25.0,35.0,358.0,27.0,95.0,662.0,199.0,1.0,307.0,0.0,78.0,1.0,99.0,35.0,4.0,0.0,718.0,4.0,326.0,27.0,48.0,112.0,740.0,1028.0,29.0,101.0,6.0,21.0,300.0,63.0,519.0,208.0,0.0,1123.0,53.0,38.0,1933.0,218.0,710.0,51.0,520.0,770.0,1.0,206.0,0.0,2.0,13.0,705.0,0.0,15.0,0.0,232.0,97.0,21.0,599.0,10.0,417.0,23.0,77.0,108.0,50.0,552.0,20.0,252.0,1557.0,0.0,257.0,1854.0,435.0,116.0,163.0,366.0,6.0,83.0,0.0,112.0,33.0,29.0,87.0,1573.0,36.0,0.0,748.0,23.0,7.0,288.0,181.0,251.0,286.0,14.0,131.0,0.0,0.0,7.0,39.0,58.0,332.0,140.0,908.0,856.0,33.0,115.0,16.0,58.0,0.0,179.0,44.0,516.0,41.0,177.0,367.0,57.0,38.0,11.0,63.0,58.0,72.0,0.0,503.0,53.0,83.0,57.0,22.0,0.0,213.0,243.0,0.0,81.0,48.0,46.0,47.0,78.0,111.0,421.0,86.0,85.0,206.0,184.0,22.0,6.0,154.0,15.0,556.0,0.0,0.0,109.0,23.0,63.0,2.0,13.0,5.0,202.0,41.0,102.0,161.0,13.0,341.0,475.0,40.0,376.0,86.0,135.0,60.0,22.0,15.0,211.0,18.0,20.0,2.0,3.0,351.0,69.0,139.0,18.0,1.0,29.0,21.0,3.0,0.0,0.0,84.0,161.0,0.0,596.0,133.0,66.0,21.0,2.0,62.0,27.0,902.0,251.0,15.0,108.0,0.0,0.0,371.0,13.0,526.0,21.0,0.0,92.0,36.0,62.0,85.0,0.0,0.0,100.0,150.9545111467,2015-03-29,,2015-13,152.1897859725268,262.4261060902601, +153,153,107.0,13.0,2.0,3.0,246.0,131.0,13.0,90.0,223.0,141.0,36.0,805.0,6.0,8.0,49.0,7.0,62.0,11.0,181.0,55.0,23.0,74.0,97.0,168.0,35.0,365.0,28.0,4.0,59.0,20.0,4.0,115.0,659.0,85.0,2.0,34.0,35.0,22.0,180.0,394.0,7.0,175.0,133.0,224.0,0.0,73.0,7.0,42.0,1517.0,124.0,84.0,323.0,72.0,33.0,67.0,0.0,150.0,521.0,345.0,179.0,8.0,147.0,8.0,326.0,9.0,204.0,33.0,93.0,365.0,0.0,15.0,113.0,16.0,350.0,42.0,82.0,266.0,1.0,4.0,8.0,317.0,83.0,586.0,35.0,18.0,285.0,24.0,101.0,592.0,222.0,1.0,277.0,0.0,76.0,1.0,72.0,39.0,5.0,0.0,737.0,3.0,317.0,19.0,49.0,79.0,753.0,979.0,43.0,94.0,8.0,15.0,264.0,62.0,455.0,242.0,1.0,1070.0,67.0,38.0,1559.0,125.0,628.0,57.0,535.0,884.0,1.0,171.0,0.0,0.0,10.0,610.0,0.0,9.0,0.0,233.0,78.0,44.0,627.0,14.0,493.0,31.0,90.0,70.0,38.0,538.0,28.0,247.0,1781.0,0.0,267.0,1900.0,417.0,133.0,166.0,375.0,10.0,61.0,0.0,96.0,33.0,18.0,102.0,1646.0,33.0,0.0,713.0,27.0,10.0,264.0,158.0,217.0,208.0,19.0,125.0,1.0,0.0,6.0,33.0,57.0,309.0,132.0,1275.0,842.0,57.0,123.0,15.0,72.0,0.0,197.0,46.0,508.0,49.0,178.0,344.0,82.0,38.0,17.0,63.0,65.0,84.0,3.0,440.0,61.0,57.0,64.0,36.0,0.0,181.0,185.0,0.0,94.0,27.0,34.0,45.0,59.0,99.0,426.0,90.0,83.0,162.0,180.0,19.0,2.0,181.0,27.0,613.0,0.0,5.0,117.0,24.0,30.0,5.0,13.0,13.0,193.0,58.0,90.0,136.0,10.0,329.0,425.0,30.0,389.0,81.0,131.0,73.0,8.0,27.0,213.0,12.0,18.0,0.0,2.0,309.0,57.0,94.0,18.0,0.0,17.0,16.0,1.0,0.0,0.0,64.0,122.0,0.0,650.0,143.0,76.0,15.0,0.0,52.0,40.0,972.0,209.0,9.0,90.0,0.0,0.0,409.0,7.0,457.0,32.0,0.0,70.0,46.0,106.0,102.0,0.0,0.0,116.0,107.55508919200001,2015-04-05,,2015-14,106.58053497832452,196.75192776070003, +154,154,87.0,7.0,9.0,9.0,189.0,113.0,13.0,95.0,238.0,158.0,33.0,700.0,10.0,10.0,51.0,5.0,76.0,8.0,167.0,59.0,9.0,93.0,72.0,184.0,53.0,355.0,24.0,10.0,57.0,22.0,9.0,93.0,586.0,83.0,6.0,20.0,28.0,30.0,135.0,291.0,4.0,183.0,110.0,222.0,0.0,66.0,8.0,39.0,1287.0,97.0,72.0,371.0,62.0,40.0,65.0,2.0,86.0,526.0,360.0,169.0,15.0,133.0,6.0,235.0,10.0,168.0,33.0,108.0,334.0,0.0,27.0,122.0,10.0,208.0,34.0,47.0,226.0,2.0,2.0,16.0,269.0,79.0,496.0,16.0,23.0,216.0,20.0,77.0,544.0,183.0,0.0,257.0,0.0,66.0,0.0,112.0,29.0,7.0,0.0,742.0,3.0,267.0,16.0,35.0,89.0,748.0,672.0,38.0,106.0,11.0,14.0,231.0,56.0,468.0,254.0,1.0,954.0,61.0,35.0,1328.0,141.0,606.0,43.0,444.0,1067.0,2.0,167.0,0.0,1.0,17.0,472.0,0.0,20.0,0.0,153.0,71.0,28.0,523.0,8.0,342.0,21.0,84.0,76.0,30.0,466.0,31.0,246.0,1522.0,0.0,232.0,1628.0,399.0,139.0,134.0,332.0,12.0,56.0,0.0,98.0,33.0,22.0,70.0,1362.0,35.0,0.0,515.0,24.0,7.0,220.0,169.0,195.0,261.0,9.0,111.0,0.0,0.0,7.0,55.0,59.0,256.0,144.0,786.0,658.0,30.0,97.0,14.0,37.0,0.0,184.0,54.0,460.0,35.0,157.0,351.0,48.0,29.0,20.0,48.0,54.0,49.0,0.0,410.0,42.0,44.0,31.0,42.0,0.0,157.0,163.0,0.0,77.0,33.0,33.0,43.0,58.0,79.0,353.0,92.0,71.0,188.0,154.0,13.0,5.0,193.0,25.0,392.0,0.0,0.0,94.0,17.0,30.0,4.0,13.0,9.0,177.0,63.0,94.0,128.0,8.0,263.0,335.0,39.0,334.0,103.0,147.0,51.0,9.0,24.0,202.0,3.0,9.0,1.0,3.0,385.0,70.0,110.0,22.0,0.0,31.0,19.0,1.0,0.0,1.0,67.0,61.0,0.0,566.0,117.0,78.0,35.0,0.0,36.0,39.0,820.0,194.0,34.0,69.0,0.0,0.0,377.0,11.0,449.0,22.0,0.0,89.0,29.0,81.0,86.0,0.0,0.0,165.0,105.8363787676,2015-04-12,,2015-15,107.52832992669028,293.32956717506005, +155,155,101.0,15.0,6.0,2.0,195.0,104.0,12.0,98.0,201.0,149.0,39.0,903.0,4.0,9.0,47.0,4.0,92.0,8.0,184.0,53.0,15.0,81.0,55.0,156.0,51.0,392.0,42.0,7.0,56.0,30.0,10.0,89.0,662.0,88.0,3.0,17.0,44.0,37.0,107.0,254.0,5.0,202.0,105.0,224.0,0.0,80.0,3.0,37.0,1106.0,84.0,88.0,331.0,49.0,41.0,67.0,0.0,105.0,547.0,329.0,189.0,10.0,121.0,1.0,317.0,5.0,140.0,46.0,78.0,334.0,0.0,20.0,73.0,22.0,209.0,44.0,89.0,205.0,2.0,4.0,16.0,299.0,83.0,541.0,17.0,35.0,250.0,31.0,91.0,460.0,194.0,0.0,287.0,0.0,56.0,1.0,92.0,23.0,9.0,0.0,772.0,7.0,316.0,29.0,50.0,84.0,747.0,624.0,41.0,84.0,3.0,13.0,231.0,53.0,407.0,158.0,0.0,812.0,45.0,36.0,1306.0,134.0,565.0,60.0,447.0,657.0,1.0,204.0,1.0,1.0,19.0,493.0,0.0,17.0,0.0,178.0,74.0,33.0,527.0,12.0,389.0,43.0,86.0,57.0,32.0,491.0,22.0,224.0,1360.0,0.0,211.0,1610.0,418.0,180.0,170.0,400.0,15.0,55.0,2.0,87.0,35.0,24.0,73.0,1285.0,37.0,0.0,585.0,23.0,13.0,302.0,159.0,225.0,220.0,18.0,131.0,0.0,0.0,9.0,44.0,51.0,253.0,158.0,656.0,782.0,34.0,105.0,20.0,49.0,0.0,163.0,171.0,522.0,55.0,164.0,329.0,60.0,27.0,28.0,64.0,47.0,40.0,1.0,484.0,50.0,61.0,45.0,25.0,0.0,161.0,151.0,0.0,67.0,31.0,39.0,56.0,84.0,110.0,318.0,87.0,102.0,177.0,121.0,24.0,2.0,216.0,22.0,393.0,0.0,0.0,100.0,22.0,34.0,8.0,15.0,8.0,186.0,59.0,104.0,134.0,6.0,306.0,343.0,29.0,368.0,58.0,220.0,52.0,15.0,31.0,200.0,9.0,15.0,0.0,4.0,331.0,79.0,111.0,21.0,0.0,34.0,23.0,5.0,0.0,1.0,63.0,72.0,0.0,577.0,144.0,92.0,19.0,0.0,29.0,17.0,831.0,167.0,19.0,75.0,0.0,0.0,251.0,11.0,403.0,22.0,0.0,85.0,27.0,85.0,90.0,0.0,0.0,95.0,39.874081846799996,2015-04-19,,2015-16,37.7027267660942,34.83142278344, +156,156,70.0,8.0,9.0,2.0,194.0,62.0,13.0,88.0,171.0,91.0,16.0,633.0,0.0,11.0,32.0,2.0,97.0,6.0,192.0,42.0,12.0,66.0,82.0,130.0,51.0,282.0,17.0,6.0,41.0,14.0,8.0,107.0,586.0,84.0,5.0,18.0,28.0,54.0,131.0,200.0,15.0,156.0,116.0,185.0,0.0,77.0,12.0,28.0,878.0,67.0,57.0,314.0,53.0,36.0,39.0,33.0,72.0,353.0,190.0,151.0,11.0,88.0,2.0,152.0,16.0,121.0,30.0,76.0,347.0,0.0,11.0,94.0,13.0,161.0,32.0,45.0,250.0,0.0,1.0,13.0,281.0,68.0,334.0,20.0,11.0,144.0,21.0,101.0,390.0,182.0,1.0,244.0,0.0,77.0,1.0,58.0,21.0,3.0,0.0,521.0,3.0,255.0,18.0,31.0,76.0,537.0,620.0,282.0,70.0,3.0,15.0,210.0,41.0,394.0,150.0,0.0,561.0,60.0,46.0,824.0,111.0,544.0,36.0,211.0,580.0,0.0,184.0,0.0,0.0,11.0,385.0,0.0,18.0,0.0,137.0,42.0,23.0,505.0,14.0,331.0,39.0,53.0,61.0,42.0,349.0,22.0,206.0,963.0,0.0,162.0,878.0,295.0,87.0,119.0,343.0,13.0,47.0,0.0,68.0,28.0,32.0,70.0,1028.0,27.0,0.0,426.0,18.0,16.0,213.0,129.0,84.0,292.0,10.0,142.0,0.0,0.0,4.0,44.0,42.0,218.0,109.0,271.0,564.0,17.0,123.0,16.0,59.0,0.0,178.0,61.0,476.0,44.0,137.0,432.0,65.0,26.0,19.0,51.0,46.0,44.0,0.0,315.0,24.0,72.0,44.0,21.0,0.0,150.0,150.0,0.0,67.0,45.0,34.0,52.0,42.0,50.0,506.0,69.0,75.0,152.0,144.0,13.0,2.0,165.0,11.0,380.0,0.0,0.0,87.0,25.0,43.0,7.0,13.0,7.0,138.0,23.0,89.0,150.0,12.0,339.0,231.0,28.0,193.0,77.0,105.0,47.0,7.0,12.0,151.0,13.0,17.0,0.0,7.0,371.0,51.0,114.0,17.0,0.0,32.0,21.0,0.0,0.0,0.0,49.0,49.0,0.0,558.0,88.0,112.0,20.0,0.0,43.0,41.0,464.0,98.0,13.0,65.0,0.0,0.0,268.0,7.0,343.0,28.0,0.0,94.0,36.0,63.0,138.0,0.0,0.0,85.0,23.5191952817,2015-10-25,,2015-43,24.269894591892353,39.98263197888, +157,157,73.0,16.0,6.0,4.0,229.0,51.0,19.0,85.0,150.0,90.0,24.0,734.0,0.0,5.0,49.0,6.0,55.0,12.0,164.0,66.0,12.0,97.0,88.0,122.0,52.0,336.0,15.0,4.0,51.0,18.0,12.0,107.0,606.0,109.0,2.0,9.0,34.0,61.0,171.0,173.0,11.0,156.0,98.0,147.0,0.0,51.0,16.0,31.0,904.0,58.0,86.0,301.0,48.0,28.0,62.0,32.0,87.0,296.0,170.0,215.0,4.0,93.0,1.0,144.0,10.0,121.0,58.0,64.0,341.0,0.0,16.0,100.0,10.0,146.0,31.0,46.0,262.0,0.0,1.0,22.0,287.0,68.0,312.0,21.0,7.0,108.0,18.0,135.0,369.0,173.0,0.0,284.0,0.0,66.0,3.0,62.0,27.0,3.0,0.0,610.0,4.0,266.0,12.0,26.0,68.0,605.0,530.0,265.0,78.0,5.0,11.0,179.0,46.0,421.0,184.0,0.0,513.0,40.0,46.0,910.0,85.0,611.0,33.0,211.0,528.0,4.0,163.0,0.0,0.0,15.0,358.0,0.0,17.0,0.0,170.0,49.0,17.0,441.0,11.0,269.0,44.0,61.0,49.0,44.0,328.0,26.0,195.0,915.0,0.0,156.0,764.0,232.0,56.0,97.0,267.0,10.0,46.0,0.0,63.0,19.0,27.0,79.0,925.0,25.0,0.0,364.0,15.0,6.0,185.0,148.0,70.0,244.0,26.0,115.0,0.0,0.0,6.0,49.0,37.0,208.0,248.0,299.0,571.0,20.0,121.0,10.0,60.0,0.0,154.0,29.0,442.0,54.0,102.0,350.0,65.0,34.0,16.0,104.0,46.0,49.0,0.0,338.0,37.0,36.0,64.0,20.0,0.0,124.0,148.0,0.0,88.0,40.0,29.0,45.0,46.0,59.0,428.0,54.0,58.0,162.0,115.0,13.0,2.0,194.0,19.0,298.0,0.0,2.0,76.0,14.0,25.0,4.0,10.0,8.0,128.0,18.0,74.0,153.0,6.0,308.0,203.0,34.0,203.0,76.0,107.0,47.0,15.0,12.0,149.0,6.0,10.0,0.0,2.0,436.0,49.0,76.0,17.0,0.0,25.0,16.0,0.0,0.0,0.0,57.0,36.0,0.0,447.0,71.0,75.0,13.0,1.0,75.0,26.0,455.0,126.0,16.0,84.0,0.0,0.0,255.0,8.0,388.0,17.0,0.0,82.0,35.0,50.0,51.0,0.0,0.0,80.0,15.1253036877,2015-11-01,,2015-44,13.578448761092432,30.89353885022, +158,158,78.0,18.0,4.0,4.0,239.0,62.0,16.0,74.0,145.0,103.0,26.0,632.0,1.0,8.0,45.0,3.0,57.0,2.0,209.0,66.0,10.0,85.0,94.0,114.0,39.0,308.0,18.0,7.0,41.0,21.0,14.0,109.0,660.0,86.0,3.0,27.0,28.0,30.0,151.0,153.0,5.0,175.0,86.0,150.0,0.0,47.0,11.0,34.0,982.0,53.0,74.0,346.0,49.0,21.0,33.0,41.0,85.0,299.0,192.0,139.0,9.0,82.0,1.0,160.0,7.0,143.0,44.0,60.0,415.0,0.0,15.0,110.0,12.0,173.0,34.0,50.0,231.0,0.0,2.0,12.0,267.0,51.0,297.0,22.0,9.0,81.0,25.0,79.0,566.0,167.0,1.0,213.0,0.0,63.0,1.0,38.0,19.0,2.0,0.0,628.0,7.0,267.0,14.0,31.0,44.0,541.0,527.0,352.0,95.0,2.0,17.0,163.0,51.0,428.0,118.0,0.0,538.0,75.0,40.0,896.0,109.0,534.0,34.0,255.0,574.0,1.0,157.0,0.0,0.0,12.0,334.0,0.0,14.0,0.0,133.0,48.0,30.0,510.0,4.0,389.0,39.0,54.0,60.0,37.0,340.0,22.0,181.0,906.0,0.0,142.0,920.0,265.0,77.0,123.0,277.0,13.0,56.0,0.0,60.0,28.0,36.0,73.0,1024.0,22.0,0.0,394.0,27.0,14.0,175.0,130.0,99.0,202.0,6.0,109.0,0.0,0.0,7.0,38.0,39.0,166.0,208.0,305.0,605.0,21.0,125.0,10.0,69.0,0.0,172.0,34.0,414.0,35.0,159.0,420.0,93.0,29.0,12.0,34.0,41.0,54.0,0.0,359.0,36.0,46.0,55.0,17.0,0.0,131.0,125.0,0.0,59.0,26.0,39.0,45.0,38.0,64.0,491.0,78.0,52.0,138.0,150.0,7.0,0.0,161.0,84.0,372.0,0.0,0.0,92.0,18.0,29.0,3.0,14.0,3.0,108.0,27.0,109.0,120.0,10.0,280.0,188.0,34.0,199.0,88.0,96.0,55.0,9.0,28.0,168.0,10.0,15.0,0.0,1.0,408.0,52.0,78.0,12.0,0.0,27.0,26.0,1.0,0.0,0.0,52.0,47.0,0.0,396.0,87.0,91.0,13.0,0.0,71.0,31.0,468.0,104.0,17.0,113.0,0.0,0.0,286.0,7.0,360.0,20.0,0.0,87.0,30.0,67.0,51.0,0.0,0.0,74.0,20.80544198,2015-11-08,,2015-45,20.12595287286331,30.50096544754, +159,159,70.0,12.0,8.0,4.0,201.0,40.0,18.0,84.0,160.0,67.0,20.0,730.0,3.0,10.0,54.0,3.0,63.0,10.0,241.0,68.0,13.0,96.0,75.0,108.0,61.0,436.0,14.0,4.0,34.0,16.0,14.0,88.0,604.0,93.0,0.0,29.0,41.0,39.0,143.0,188.0,9.0,219.0,131.0,155.0,0.0,62.0,16.0,42.0,902.0,51.0,85.0,340.0,46.0,41.0,32.0,23.0,93.0,309.0,161.0,141.0,9.0,108.0,1.0,151.0,8.0,125.0,35.0,66.0,374.0,0.0,21.0,77.0,15.0,157.0,40.0,53.0,255.0,0.0,2.0,14.0,273.0,76.0,304.0,25.0,12.0,114.0,33.0,73.0,452.0,177.0,0.0,208.0,0.0,54.0,1.0,63.0,20.0,8.0,0.0,517.0,5.0,233.0,25.0,32.0,61.0,529.0,538.0,359.0,63.0,2.0,13.0,187.0,51.0,485.0,128.0,0.0,521.0,82.0,43.0,855.0,102.0,598.0,31.0,215.0,553.0,2.0,155.0,0.0,0.0,15.0,395.0,0.0,9.0,0.0,175.0,40.0,25.0,553.0,8.0,342.0,31.0,70.0,58.0,28.0,324.0,18.0,206.0,913.0,0.0,161.0,816.0,271.0,82.0,112.0,324.0,13.0,46.0,0.0,56.0,26.0,26.0,222.0,1080.0,27.0,0.0,387.0,28.0,4.0,191.0,236.0,78.0,222.0,16.0,134.0,0.0,0.0,1.0,56.0,39.0,158.0,156.0,446.0,593.0,31.0,129.0,16.0,62.0,0.0,223.0,31.0,427.0,48.0,168.0,529.0,79.0,18.0,8.0,40.0,45.0,45.0,0.0,420.0,37.0,41.0,43.0,32.0,0.0,185.0,211.0,0.0,53.0,35.0,27.0,74.0,44.0,62.0,451.0,56.0,72.0,141.0,231.0,13.0,2.0,176.0,30.0,330.0,0.0,0.0,84.0,10.0,25.0,6.0,19.0,13.0,192.0,27.0,120.0,107.0,12.0,285.0,205.0,31.0,235.0,65.0,116.0,56.0,17.0,24.0,162.0,11.0,16.0,0.0,4.0,394.0,56.0,90.0,21.0,0.0,21.0,18.0,1.0,0.0,0.0,76.0,39.0,0.0,420.0,105.0,84.0,23.0,1.0,45.0,26.0,498.0,100.0,18.0,83.0,0.0,0.0,258.0,9.0,399.0,26.0,0.0,91.0,32.0,61.0,45.0,0.0,0.0,77.0,24.0669253059,2015-11-15,,2015-46,24.15373673700151,22.74517820746, +160,160,93.0,19.0,7.0,4.0,242.0,47.0,12.0,93.0,145.0,69.0,22.0,652.0,5.0,8.0,44.0,2.0,50.0,3.0,236.0,56.0,16.0,58.0,112.0,127.0,44.0,294.0,13.0,4.0,44.0,21.0,12.0,105.0,698.0,85.0,3.0,16.0,25.0,24.0,112.0,167.0,8.0,185.0,86.0,157.0,0.0,47.0,8.0,31.0,868.0,44.0,107.0,293.0,48.0,25.0,28.0,45.0,78.0,310.0,184.0,128.0,5.0,83.0,2.0,146.0,4.0,122.0,39.0,48.0,345.0,0.0,15.0,105.0,8.0,162.0,43.0,39.0,213.0,0.0,1.0,25.0,305.0,75.0,312.0,19.0,10.0,161.0,17.0,86.0,496.0,215.0,1.0,198.0,0.0,59.0,0.0,38.0,29.0,4.0,0.0,616.0,3.0,277.0,24.0,31.0,80.0,551.0,475.0,183.0,93.0,5.0,15.0,181.0,45.0,605.0,106.0,0.0,665.0,67.0,43.0,855.0,99.0,551.0,29.0,214.0,534.0,1.0,158.0,0.0,0.0,9.0,345.0,0.0,10.0,0.0,165.0,44.0,29.0,547.0,2.0,328.0,30.0,82.0,53.0,34.0,316.0,26.0,163.0,1275.0,0.0,162.0,842.0,229.0,100.0,109.0,290.0,14.0,48.0,0.0,78.0,19.0,16.0,225.0,1000.0,22.0,0.0,380.0,20.0,4.0,201.0,173.0,102.0,270.0,4.0,143.0,0.0,0.0,1.0,40.0,32.0,170.0,126.0,399.0,587.0,23.0,97.0,18.0,49.0,0.0,210.0,29.0,410.0,55.0,126.0,401.0,62.0,20.0,14.0,63.0,53.0,46.0,0.0,321.0,50.0,49.0,28.0,21.0,0.0,152.0,153.0,0.0,30.0,38.0,24.0,49.0,43.0,84.0,387.0,73.0,64.0,159.0,222.0,11.0,1.0,125.0,25.0,415.0,0.0,0.0,95.0,17.0,31.0,2.0,18.0,6.0,134.0,21.0,89.0,90.0,9.0,365.0,187.0,29.0,201.0,26.0,135.0,54.0,12.0,20.0,134.0,7.0,11.0,0.0,2.0,387.0,69.0,96.0,6.0,0.0,16.0,13.0,1.0,0.0,0.0,58.0,35.0,0.0,360.0,91.0,96.0,25.0,0.0,24.0,23.0,477.0,100.0,11.0,68.0,0.0,0.0,258.0,16.0,294.0,19.0,0.0,89.0,41.0,76.0,50.0,0.0,0.0,434.0,20.0324334637,2015-11-22,,2015-47,19.199247511283147,30.78864291188, +161,161,69.0,11.0,7.0,7.0,234.0,65.0,11.0,74.0,157.0,105.0,30.0,726.0,5.0,12.0,67.0,4.0,46.0,7.0,172.0,76.0,12.0,66.0,91.0,106.0,64.0,351.0,20.0,5.0,35.0,12.0,11.0,106.0,528.0,84.0,1.0,26.0,30.0,28.0,123.0,162.0,4.0,163.0,113.0,162.0,0.0,67.0,8.0,26.0,993.0,67.0,83.0,342.0,63.0,30.0,25.0,39.0,81.0,352.0,176.0,122.0,6.0,108.0,0.0,139.0,8.0,108.0,49.0,73.0,350.0,0.0,10.0,94.0,13.0,163.0,43.0,41.0,235.0,0.0,5.0,14.0,300.0,53.0,352.0,19.0,13.0,159.0,27.0,118.0,491.0,196.0,0.0,222.0,0.0,66.0,0.0,36.0,23.0,5.0,0.0,599.0,3.0,237.0,25.0,39.0,62.0,527.0,596.0,158.0,147.0,2.0,16.0,178.0,40.0,479.0,156.0,0.0,623.0,42.0,32.0,906.0,111.0,583.0,32.0,267.0,633.0,2.0,146.0,0.0,0.0,13.0,399.0,0.0,7.0,0.0,187.0,45.0,27.0,445.0,4.0,333.0,42.0,54.0,82.0,33.0,332.0,23.0,151.0,951.0,0.0,176.0,881.0,264.0,93.0,110.0,294.0,7.0,60.0,0.0,67.0,16.0,23.0,79.0,1047.0,33.0,0.0,478.0,37.0,8.0,190.0,146.0,89.0,240.0,9.0,139.0,0.0,0.0,3.0,41.0,41.0,173.0,132.0,360.0,581.0,25.0,101.0,15.0,64.0,0.0,243.0,28.0,444.0,67.0,117.0,343.0,61.0,27.0,10.0,36.0,41.0,85.0,0.0,330.0,33.0,48.0,51.0,31.0,0.0,196.0,136.0,0.0,53.0,39.0,27.0,46.0,45.0,80.0,438.0,76.0,73.0,181.0,310.0,17.0,4.0,129.0,35.0,525.0,0.0,2.0,73.0,15.0,74.0,3.0,10.0,4.0,134.0,15.0,110.0,101.0,5.0,304.0,208.0,32.0,223.0,44.0,135.0,66.0,19.0,21.0,163.0,15.0,10.0,0.0,5.0,360.0,86.0,89.0,15.0,0.0,19.0,17.0,0.0,0.0,0.0,61.0,34.0,0.0,426.0,113.0,60.0,17.0,0.0,55.0,30.0,559.0,114.0,16.0,53.0,0.0,0.0,260.0,12.0,334.0,16.0,0.0,86.0,30.0,57.0,63.0,0.0,0.0,137.0,31.8542947084,2015-11-29,,2015-48,26.955853584721353,33.507631804, +162,162,83.0,10.0,5.0,5.0,221.0,60.0,9.0,105.0,156.0,94.0,23.0,721.0,6.0,7.0,50.0,8.0,43.0,9.0,220.0,61.0,20.0,82.0,76.0,119.0,66.0,306.0,76.0,6.0,32.0,16.0,9.0,94.0,573.0,100.0,3.0,15.0,21.0,30.0,129.0,156.0,5.0,168.0,96.0,180.0,0.0,54.0,6.0,34.0,871.0,92.0,74.0,290.0,58.0,32.0,30.0,19.0,89.0,325.0,160.0,145.0,10.0,113.0,1.0,155.0,7.0,183.0,46.0,62.0,381.0,0.0,11.0,95.0,15.0,202.0,33.0,59.0,219.0,0.0,1.0,22.0,220.0,83.0,378.0,21.0,17.0,145.0,16.0,109.0,492.0,167.0,0.0,224.0,0.0,78.0,0.0,44.0,32.0,4.0,0.0,530.0,17.0,222.0,28.0,28.0,138.0,588.0,601.0,133.0,88.0,7.0,12.0,221.0,58.0,415.0,159.0,0.0,637.0,54.0,41.0,914.0,101.0,450.0,36.0,234.0,579.0,4.0,148.0,0.0,0.0,9.0,407.0,0.0,13.0,0.0,194.0,70.0,28.0,464.0,6.0,373.0,46.0,74.0,70.0,30.0,355.0,21.0,156.0,1617.0,0.0,178.0,876.0,301.0,83.0,126.0,313.0,10.0,46.0,0.0,66.0,18.0,16.0,89.0,1081.0,28.0,0.0,414.0,17.0,9.0,398.0,175.0,100.0,255.0,16.0,127.0,0.0,0.0,4.0,35.0,31.0,225.0,135.0,434.0,606.0,20.0,162.0,10.0,263.0,0.0,184.0,33.0,481.0,32.0,131.0,380.0,69.0,26.0,9.0,31.0,36.0,60.0,0.0,343.0,28.0,47.0,56.0,28.0,0.0,146.0,185.0,0.0,62.0,42.0,19.0,45.0,54.0,106.0,430.0,107.0,62.0,200.0,471.0,11.0,1.0,131.0,22.0,423.0,0.0,1.0,89.0,24.0,36.0,4.0,18.0,8.0,168.0,32.0,106.0,113.0,12.0,326.0,190.0,37.0,196.0,31.0,121.0,49.0,15.0,18.0,178.0,12.0,18.0,0.0,2.0,393.0,73.0,122.0,9.0,0.0,30.0,20.0,2.0,0.0,0.0,78.0,44.0,0.0,520.0,117.0,71.0,21.0,0.0,69.0,28.0,492.0,134.0,14.0,52.0,0.0,0.0,319.0,8.0,289.0,20.0,0.0,81.0,25.0,54.0,70.0,0.0,0.0,97.0,30.110862721799997,2015-12-06,,2015-49,29.808746714941208,74.28955782352, +163,163,83.0,17.0,4.0,3.0,230.0,76.0,19.0,66.0,176.0,82.0,26.0,711.0,6.0,12.0,52.0,6.0,36.0,8.0,254.0,53.0,14.0,58.0,81.0,144.0,72.0,361.0,22.0,11.0,46.0,20.0,13.0,105.0,513.0,95.0,5.0,19.0,20.0,43.0,129.0,174.0,6.0,170.0,126.0,158.0,0.0,48.0,11.0,36.0,1025.0,84.0,83.0,314.0,41.0,41.0,34.0,33.0,93.0,352.0,207.0,157.0,2.0,100.0,4.0,163.0,5.0,152.0,47.0,59.0,348.0,0.0,19.0,99.0,22.0,219.0,49.0,54.0,204.0,0.0,2.0,20.0,268.0,119.0,377.0,17.0,12.0,149.0,18.0,56.0,481.0,215.0,1.0,218.0,0.0,67.0,0.0,47.0,22.0,5.0,0.0,548.0,10.0,271.0,18.0,27.0,83.0,620.0,593.0,92.0,70.0,6.0,18.0,171.0,48.0,436.0,152.0,0.0,718.0,52.0,43.0,896.0,146.0,523.0,38.0,235.0,700.0,1.0,159.0,0.0,0.0,16.0,457.0,0.0,7.0,0.0,176.0,47.0,13.0,522.0,11.0,314.0,51.0,54.0,55.0,41.0,363.0,21.0,186.0,1015.0,0.0,181.0,950.0,289.0,88.0,126.0,352.0,9.0,42.0,0.0,80.0,28.0,31.0,100.0,1242.0,27.0,0.0,414.0,26.0,8.0,232.0,177.0,68.0,272.0,15.0,126.0,0.0,0.0,4.0,58.0,40.0,225.0,140.0,645.0,581.0,28.0,167.0,15.0,189.0,0.0,179.0,33.0,479.0,51.0,162.0,376.0,59.0,24.0,19.0,48.0,41.0,47.0,0.0,380.0,42.0,47.0,35.0,25.0,0.0,197.0,170.0,0.0,44.0,30.0,32.0,52.0,53.0,125.0,475.0,94.0,77.0,182.0,386.0,16.0,2.0,155.0,41.0,407.0,0.0,1.0,98.0,17.0,31.0,2.0,12.0,12.0,166.0,16.0,94.0,157.0,5.0,345.0,192.0,36.0,216.0,47.0,115.0,51.0,20.0,16.0,191.0,13.0,15.0,0.0,5.0,363.0,79.0,102.0,9.0,0.0,24.0,12.0,1.0,0.0,0.0,62.0,55.0,0.0,574.0,102.0,70.0,13.0,2.0,47.0,32.0,630.0,115.0,13.0,91.0,0.0,0.0,307.0,10.0,357.0,31.0,0.0,73.0,41.0,92.0,68.0,0.0,0.0,87.0,28.7865984455,2015-12-13,,2015-50,31.829807665015778,28.7865984455, +164,164,64.0,13.0,4.0,2.0,237.0,80.0,10.0,79.0,171.0,113.0,26.0,869.0,2.0,10.0,35.0,4.0,66.0,5.0,204.0,49.0,11.0,83.0,73.0,102.0,62.0,379.0,29.0,5.0,36.0,17.0,14.0,83.0,601.0,65.0,1.0,24.0,27.0,34.0,126.0,158.0,6.0,180.0,98.0,155.0,0.0,69.0,9.0,63.0,904.0,60.0,49.0,331.0,46.0,28.0,15.0,35.0,83.0,398.0,166.0,135.0,8.0,100.0,0.0,168.0,10.0,139.0,45.0,83.0,301.0,0.0,16.0,76.0,12.0,188.0,44.0,44.0,224.0,0.0,5.0,11.0,267.0,56.0,354.0,26.0,13.0,113.0,24.0,86.0,524.0,161.0,2.0,228.0,0.0,64.0,1.0,60.0,28.0,6.0,0.0,488.0,9.0,294.0,20.0,38.0,88.0,589.0,691.0,74.0,52.0,20.0,12.0,229.0,61.0,443.0,129.0,0.0,639.0,68.0,39.0,933.0,118.0,490.0,28.0,215.0,546.0,4.0,169.0,0.0,0.0,21.0,373.0,0.0,14.0,0.0,185.0,40.0,14.0,509.0,4.0,340.0,39.0,78.0,78.0,38.0,355.0,17.0,187.0,931.0,0.0,197.0,926.0,278.0,112.0,114.0,326.0,8.0,45.0,0.0,55.0,27.0,39.0,71.0,1156.0,30.0,0.0,404.0,22.0,7.0,236.0,174.0,86.0,317.0,16.0,173.0,0.0,0.0,5.0,31.0,37.0,205.0,117.0,614.0,623.0,22.0,107.0,12.0,66.0,0.0,191.0,30.0,490.0,52.0,158.0,367.0,89.0,31.0,17.0,39.0,36.0,38.0,0.0,338.0,43.0,47.0,33.0,33.0,0.0,143.0,148.0,0.0,46.0,29.0,24.0,42.0,60.0,115.0,414.0,92.0,79.0,225.0,353.0,10.0,6.0,164.0,22.0,347.0,0.0,0.0,88.0,20.0,28.0,2.0,8.0,18.0,126.0,28.0,137.0,131.0,9.0,314.0,188.0,29.0,231.0,46.0,142.0,58.0,18.0,30.0,152.0,5.0,13.0,0.0,3.0,369.0,75.0,73.0,14.0,0.0,32.0,24.0,4.0,0.0,0.0,63.0,77.0,0.0,538.0,88.0,74.0,22.0,1.0,54.0,28.0,743.0,103.0,12.0,90.0,0.0,0.0,289.0,4.0,322.0,23.0,0.0,63.0,32.0,46.0,53.0,0.0,0.0,82.0,49.9675211113,2015-12-20,,2015-51,49.282817317211084,84.73986211652, +165,165,80.0,16.0,3.0,8.0,197.0,63.0,16.0,95.0,168.0,77.0,31.0,635.0,3.0,21.0,52.0,5.0,68.0,7.0,192.0,63.0,17.0,70.0,70.0,108.0,47.0,324.0,36.0,6.0,35.0,15.0,12.0,97.0,555.0,71.0,4.0,16.0,34.0,41.0,117.0,150.0,9.0,186.0,82.0,168.0,0.0,54.0,19.0,45.0,759.0,61.0,72.0,282.0,60.0,41.0,33.0,35.0,118.0,371.0,152.0,187.0,2.0,121.0,3.0,137.0,9.0,122.0,49.0,97.0,383.0,0.0,15.0,83.0,13.0,153.0,50.0,34.0,170.0,0.0,1.0,18.0,209.0,45.0,289.0,23.0,11.0,118.0,16.0,115.0,479.0,166.0,1.0,244.0,0.0,58.0,0.0,43.0,32.0,8.0,0.0,522.0,8.0,227.0,26.0,34.0,79.0,554.0,483.0,59.0,45.0,7.0,15.0,155.0,45.0,451.0,129.0,0.0,599.0,39.0,43.0,797.0,117.0,417.0,35.0,235.0,488.0,3.0,164.0,0.0,0.0,17.0,349.0,0.0,9.0,0.0,169.0,58.0,25.0,419.0,12.0,284.0,47.0,73.0,88.0,25.0,374.0,18.0,177.0,891.0,0.0,329.0,859.0,247.0,94.0,107.0,263.0,23.0,48.0,0.0,67.0,31.0,26.0,97.0,1171.0,31.0,0.0,356.0,23.0,12.0,200.0,221.0,93.0,284.0,12.0,140.0,0.0,0.0,3.0,39.0,33.0,201.0,139.0,522.0,623.0,23.0,139.0,16.0,46.0,0.0,185.0,49.0,496.0,42.0,147.0,413.0,92.0,21.0,7.0,50.0,37.0,39.0,0.0,297.0,45.0,44.0,39.0,30.0,0.0,188.0,136.0,0.0,44.0,28.0,28.0,32.0,57.0,86.0,315.0,97.0,72.0,177.0,299.0,23.0,3.0,209.0,38.0,317.0,0.0,0.0,76.0,22.0,30.0,14.0,21.0,8.0,146.0,22.0,95.0,113.0,6.0,303.0,215.0,36.0,187.0,71.0,135.0,35.0,9.0,14.0,178.0,13.0,8.0,0.0,2.0,360.0,81.0,79.0,16.0,0.0,31.0,26.0,0.0,0.0,0.0,62.0,54.0,0.0,479.0,85.0,74.0,21.0,0.0,55.0,24.0,621.0,132.0,17.0,79.0,0.0,0.0,277.0,6.0,289.0,26.0,0.0,57.0,31.0,68.0,42.0,0.0,0.0,79.0,44.9707690001,2015-12-27,,2015-52,45.786180160038384,86.22882656440001, +166,166,49.0,12.0,4.0,8.0,125.0,46.0,7.0,39.0,106.0,59.0,12.0,383.0,3.0,13.0,44.0,4.0,64.0,5.0,110.0,52.0,16.0,30.0,48.0,79.0,26.0,222.0,16.0,7.0,35.0,10.0,11.0,64.0,399.0,88.0,5.0,6.0,15.0,34.0,86.0,89.0,11.0,143.0,46.0,142.0,0.0,48.0,9.0,27.0,578.0,34.0,71.0,215.0,34.0,39.0,18.0,41.0,71.0,248.0,150.0,107.0,4.0,57.0,1.0,89.0,3.0,76.0,27.0,53.0,206.0,0.0,12.0,71.0,10.0,107.0,30.0,39.0,142.0,0.0,5.0,15.0,213.0,38.0,244.0,17.0,8.0,93.0,17.0,66.0,328.0,117.0,0.0,172.0,0.0,55.0,1.0,44.0,27.0,6.0,0.0,411.0,8.0,158.0,14.0,14.0,37.0,445.0,337.0,24.0,39.0,7.0,10.0,130.0,49.0,292.0,112.0,0.0,373.0,29.0,37.0,617.0,91.0,370.0,25.0,210.0,362.0,4.0,81.0,0.0,0.0,7.0,258.0,0.0,10.0,0.0,124.0,34.0,14.0,256.0,4.0,180.0,19.0,43.0,35.0,29.0,255.0,15.0,98.0,671.0,0.0,139.0,696.0,185.0,78.0,73.0,191.0,8.0,38.0,0.0,47.0,23.0,13.0,49.0,766.0,20.0,0.0,226.0,27.0,5.0,221.0,87.0,74.0,152.0,8.0,106.0,0.0,0.0,3.0,24.0,29.0,125.0,94.0,411.0,442.0,17.0,73.0,13.0,32.0,0.0,148.0,41.0,340.0,39.0,60.0,219.0,68.0,26.0,14.0,26.0,33.0,17.0,0.0,214.0,35.0,27.0,21.0,21.0,0.0,121.0,102.0,0.0,20.0,22.0,30.0,34.0,29.0,72.0,198.0,63.0,58.0,92.0,208.0,9.0,7.0,112.0,20.0,215.0,0.0,0.0,48.0,5.0,19.0,10.0,22.0,10.0,107.0,15.0,56.0,84.0,12.0,207.0,127.0,27.0,155.0,29.0,88.0,44.0,11.0,23.0,144.0,16.0,12.0,0.0,2.0,272.0,40.0,67.0,7.0,0.0,20.0,17.0,5.0,0.0,0.0,63.0,66.0,0.0,376.0,75.0,47.0,21.0,0.0,50.0,16.0,502.0,126.0,14.0,41.0,0.0,0.0,174.0,7.0,236.0,20.0,0.0,36.0,24.0,55.0,36.0,0.0,0.0,88.0,40.1209801864,2016-01-03,,2015-53,37.75722424132793,136.66606901592, +167,167,71.0,20.0,11.0,8.0,396.0,93.0,19.0,132.0,209.0,75.0,34.0,838.0,6.0,7.0,57.0,7.0,51.0,5.0,225.0,63.66666666666666,18.0,106.0,87.0,114.0,46.0,504.0,25.0,12.0,48.0,12.0,15.0,105.0,1398.0,124.0,3.0,16.0,41.0,47.0,151.0,184.0,11.0,654.0,133.0,181.0,0.0,56.0,9.0,42.0,971.0,67.0,109.0,322.0,58.0,42.0,46.0,33.0,89.0,403.0,221.0,200.0,6.0,113.0,3.0,191.0,12.0,171.0,56.0,101.0,376.0,0.0,18.0,97.0,11.0,206.0,52.0,63.0,237.0,0.0,2.0,21.0,504.0,57.0,344.0,26.0,15.0,126.0,45.0,113.0,509.0,207.0,2.0,239.0,0.0,63.0,1.0,46.0,231.8,5.0,0.0,551.0,5.0,274.0,20.0,36.0,80.0,702.0,763.0,48.0,118.0,4.0,13.0,175.0,44.0,625.0,160.0,0.0,617.0,48.0,49.0,1125.0,113.0,534.0,41.0,281.0,634.0,6.0,207.0,0.0,0.0,15.0,433.0,0.0,8.0,0.0,164.0,71.0,25.0,571.0,8.0,313.0,34.0,86.0,66.0,33.0,444.0,32.0,172.0,1052.0,0.0,257.0,1120.0,329.0,104.0,113.0,385.0,6.0,78.0,0.0,65.0,312.0,31.0,84.0,1365.0,30.0,0.0,434.0,27.0,15.0,257.0,130.0,96.0,242.0,14.0,174.0,0.0,0.0,5.333333333333334,43.0,52.0,242.0,160.0,563.0,693.0,38.0,130.0,13.0,37.0,0.0,233.0,56.0,577.0,33.0,189.0,468.0,100.0,38.0,14.0,41.0,45.0,34.0,0.0,386.0,44.0,62.0,31.0,34.0,0.0,198.0,163.0,0.0,36.0,21.0,22.0,73.0,47.0,74.0,279.0,71.0,74.0,183.0,265.0,16.0,4.0,165.0,22.0,443.0,0.0,0.0,98.0,27.0,34.0,10.0,18.0,11.0,175.0,44.0,135.0,155.0,9.0,333.0,211.0,37.0,236.0,47.0,119.0,54.0,16.0,16.0,279.0,17.0,11.0,0.0,6.0,449.0,72.0,81.0,21.0,0.0,24.0,26.0,3.0,0.0,0.0,76.0,108.0,0.0,616.0,84.0,73.0,29.0,0.0,88.0,41.0,699.0,157.0,20.0,84.0,0.0,0.0,266.0,7.0,371.0,24.0,0.0,67.0,19.0,70.0,57.0,0.0,0.0,83.0,51.0729972421,2016-01-10,,2016-1,50.100066066256204,45.56223685002001, +168,168,47.0,15.0,7.0,7.0,290.0,79.0,15.0,94.0,173.0,107.0,25.0,894.0,3.0,10.0,75.0,5.0,44.0,4.0,222.0,75.33333333333333,18.0,93.0,106.0,123.0,52.0,413.0,24.0,7.0,41.0,22.0,17.0,100.0,701.0,120.0,2.0,19.0,36.0,24.0,166.0,232.0,6.0,215.0,118.0,177.0,0.0,60.0,16.0,35.0,1015.0,85.0,133.0,285.0,35.0,36.0,32.0,41.0,99.0,362.0,189.0,242.0,7.0,90.0,3.0,208.0,9.0,121.0,30.0,78.0,455.0,0.0,26.0,103.0,10.0,229.0,57.0,52.0,283.0,0.0,1.0,18.0,329.0,73.0,317.0,28.0,14.0,168.0,30.0,95.0,572.0,205.0,0.0,274.0,0.0,80.0,0.0,59.0,436.6,4.0,0.0,656.0,4.0,350.0,31.0,49.0,93.0,639.0,805.0,37.0,152.0,9.0,16.0,344.0,42.0,514.0,170.0,0.0,861.0,35.0,62.0,1104.0,120.0,575.0,49.0,287.0,674.0,0.0,218.0,0.0,0.0,16.0,468.0,0.0,9.0,0.0,169.0,70.0,16.0,566.0,5.0,363.0,41.0,64.0,76.0,39.0,406.0,14.0,186.0,1198.0,0.0,231.0,1142.0,281.0,168.0,94.0,352.0,9.0,45.0,0.0,69.0,87.0,27.0,128.0,1275.0,40.0,0.0,533.0,40.0,15.0,341.0,146.0,75.0,296.0,10.0,168.0,0.0,0.0,7.666666666666668,38.0,48.0,226.0,186.0,669.0,665.0,27.0,124.0,13.0,65.0,0.0,288.0,34.0,548.0,35.0,202.0,457.0,95.0,40.0,16.0,46.0,30.0,41.0,0.0,391.0,26.0,56.0,31.0,40.0,0.0,226.0,180.0,0.0,65.0,34.0,34.0,63.0,54.0,100.0,376.0,68.0,82.0,171.0,241.0,14.0,2.0,166.0,24.0,603.0,0.0,6.0,86.0,24.0,24.0,4.0,16.0,8.0,178.0,28.0,118.0,102.0,14.0,348.0,201.0,58.0,266.0,52.0,149.0,72.0,14.0,39.0,220.0,14.0,12.0,0.0,3.0,448.0,72.0,105.0,11.0,0.0,19.0,29.0,2.0,0.0,0.0,75.0,181.0,0.0,579.0,106.0,118.0,38.0,1.0,56.0,37.0,650.0,154.0,16.0,66.0,0.0,0.0,338.0,2.0,347.0,20.0,0.0,103.0,34.0,56.0,73.0,0.0,1.0,117.0,85.4311953867,2016-01-17,,2016-2,87.22738114323352,72.32713133544, +169,169,57.0,15.0,3.0,6.0,199.0,123.0,9.0,108.0,174.0,93.0,23.0,828.0,8.0,8.0,65.0,5.0,60.0,4.0,186.0,87.0,17.0,96.0,103.0,175.0,71.0,406.0,44.0,4.0,45.0,20.0,12.0,86.0,706.0,80.0,0.0,13.0,47.0,57.0,132.0,234.0,8.0,207.0,133.0,180.0,0.0,57.0,11.0,26.0,1012.0,88.0,121.0,290.0,40.0,36.0,44.0,28.0,104.0,468.0,196.0,269.0,6.0,106.0,3.0,443.0,4.0,111.0,35.0,124.0,433.0,0.0,32.0,89.0,16.0,198.0,51.0,56.0,281.0,0.0,0.0,10.0,461.0,55.0,418.0,41.0,11.0,131.0,41.0,1351.0,594.0,202.0,2.0,256.0,0.0,68.0,0.0,67.0,641.4000000000002,9.0,0.0,675.0,4.0,455.0,37.0,37.0,95.0,639.0,1132.0,95.0,79.0,4.0,19.0,200.0,48.0,483.0,145.0,0.0,1001.0,66.0,51.0,1028.0,124.0,635.0,54.0,234.0,733.0,2.0,206.0,0.0,0.0,19.0,445.0,0.0,6.0,0.0,175.0,48.0,32.0,564.0,5.0,370.0,39.0,70.0,69.0,136.0,395.0,21.0,228.0,1142.0,0.0,205.0,1299.0,308.0,111.0,117.0,356.0,5.0,52.0,0.0,68.0,53.0,15.0,190.0,1379.0,27.0,0.0,541.0,53.0,11.0,851.0,159.0,88.0,271.0,16.0,171.0,0.0,0.0,10.0,41.0,31.0,247.0,229.0,964.0,755.0,31.0,146.0,6.0,41.0,0.0,244.0,72.0,523.0,65.0,164.0,471.0,119.0,40.0,15.0,49.0,131.0,44.0,0.0,511.0,38.0,50.0,56.0,43.0,0.0,230.0,166.0,0.0,42.0,33.0,39.0,57.0,40.0,88.0,378.0,79.0,141.0,194.0,217.0,21.0,3.0,184.0,29.0,601.0,0.0,2.0,66.0,17.0,53.0,16.0,17.0,23.0,150.0,29.0,141.0,138.0,8.0,474.0,225.0,34.0,231.0,36.0,162.0,66.0,16.0,24.0,182.0,13.0,11.0,0.0,3.0,401.0,62.0,116.0,13.0,0.0,37.0,40.0,1.0,0.0,0.0,76.0,151.0,0.0,604.0,61.0,139.0,40.0,0.0,54.0,29.0,803.0,120.0,14.0,103.0,19.0,78.0,280.0,5.0,339.0,23.0,0.0,73.0,33.0,93.0,52.0,11.0,13.0,119.0,127.4872267606,2016-01-24,,2016-3,127.8739624392474,230.70445044232002, +170,170,62.0,12.0,5.0,4.0,236.0,97.0,13.0,104.0,160.0,93.0,19.0,687.0,4.0,13.0,66.0,9.0,37.0,5.0,205.0,60.0,19.0,89.0,68.0,157.0,50.0,352.0,48.0,4.0,40.0,20.0,5.0,94.0,442.0,92.0,5.0,21.0,57.0,45.0,119.0,265.0,13.0,205.0,114.0,232.0,0.0,44.0,15.0,43.0,990.0,91.0,69.0,269.0,42.0,38.0,40.0,46.0,94.0,417.0,247.0,239.0,9.0,100.0,2.0,500.0,9.0,112.0,38.0,114.0,346.0,0.0,26.0,91.0,10.0,284.0,44.0,78.0,230.0,0.0,4.0,20.0,306.0,66.0,349.0,28.0,10.0,147.0,53.0,216.0,486.0,183.0,1.0,264.0,0.0,72.0,2.0,67.0,846.2,6.0,0.0,591.0,7.0,559.0,32.0,28.0,94.0,545.0,1471.0,76.0,70.0,8.0,14.0,174.0,52.0,452.0,152.0,0.0,1037.0,67.0,36.0,1216.0,127.0,572.0,72.0,252.0,645.0,3.0,213.0,0.0,0.0,8.0,429.0,0.0,9.0,0.0,151.0,45.0,31.0,512.0,11.0,332.0,26.0,76.0,56.0,162.0,403.0,19.0,187.0,1098.0,0.0,189.0,1348.0,297.0,146.0,106.0,329.0,14.0,58.0,0.0,86.0,50.0,32.0,104.0,1219.0,27.0,0.0,1506.0,45.0,14.0,684.0,158.0,88.0,332.0,13.0,121.0,0.0,0.0,10.0,38.0,44.0,223.0,144.0,1026.0,654.0,33.0,141.0,16.0,73.0,0.0,258.0,71.0,470.0,68.0,173.0,315.0,83.0,44.0,12.0,57.0,50.0,47.0,0.0,361.0,50.0,45.0,46.0,34.0,0.0,197.0,151.0,0.0,37.0,33.0,36.0,67.0,52.0,98.0,413.0,87.0,94.0,219.0,182.0,11.0,4.0,159.0,26.0,586.0,0.0,2.0,95.0,16.0,68.0,9.0,23.0,21.0,147.0,38.0,105.0,110.0,10.0,489.0,234.0,32.0,325.0,36.0,116.0,57.0,11.0,22.0,178.0,21.0,10.0,0.0,5.0,345.0,80.0,106.0,10.0,0.0,21.0,27.0,2.0,0.0,0.0,59.0,222.0,0.0,614.0,113.0,62.0,27.0,0.0,54.0,24.0,786.0,119.0,7.0,56.0,54.0,241.0,249.0,6.0,359.0,30.0,0.0,85.0,38.0,68.0,40.0,23.0,408.0,94.0,245.1588285796,2016-01-31,,2016-4,246.05633958996395,213.21330194102003, +171,171,80.0,9.0,3.0,7.0,197.0,109.0,13.0,83.0,141.0,103.0,21.0,587.0,3.0,15.0,36.0,8.0,35.0,5.0,221.0,47.0,12.0,86.0,89.0,110.0,50.0,233.0,73.0,8.0,43.0,19.0,9.0,98.0,395.0,72.0,4.0,17.0,52.0,23.0,108.0,208.0,4.0,133.0,80.0,281.0,0.0,55.0,8.0,44.0,965.0,75.0,83.0,254.0,61.0,32.0,27.0,33.0,85.0,402.0,225.0,147.0,8.0,84.0,6.0,489.0,4.0,161.0,40.0,104.0,295.0,0.0,38.0,87.0,12.0,301.0,45.0,74.0,208.0,0.0,1.0,14.0,280.0,73.0,302.0,22.0,14.0,115.0,22.0,161.0,516.0,172.0,3.0,205.0,0.0,110.0,2.0,72.0,1051.0,4.0,0.0,549.0,9.0,597.0,20.0,29.0,90.0,574.0,1351.0,71.0,60.0,5.0,19.0,188.0,50.0,368.0,130.0,0.0,869.0,54.0,79.0,1100.0,129.0,623.0,57.0,265.0,634.0,1.0,158.0,0.0,0.0,10.0,368.0,0.0,7.0,0.0,147.0,54.0,26.0,535.0,10.0,381.0,42.0,61.0,51.0,149.0,389.0,15.0,182.0,1058.0,0.0,182.0,1449.0,251.0,116.0,115.0,283.0,15.0,62.0,1.0,88.0,112.0,28.0,121.0,1347.0,37.0,0.0,538.0,32.0,13.0,934.0,165.0,102.0,278.0,11.0,132.0,0.0,0.0,6.0,38.0,45.0,218.0,154.0,824.0,527.0,26.0,109.0,5.0,43.0,0.0,140.0,18.0,462.0,95.0,163.0,382.0,47.0,37.0,16.0,48.0,36.0,52.0,0.0,345.0,48.0,42.0,37.0,21.0,0.0,153.0,122.0,0.0,22.0,39.0,46.0,42.0,54.0,92.0,396.0,74.0,118.0,178.0,227.0,15.0,1.0,116.0,17.0,486.0,0.0,3.0,73.0,29.0,58.0,4.0,13.0,13.0,131.0,39.0,99.0,81.0,11.0,584.0,254.0,39.0,316.0,28.0,131.0,39.0,18.0,12.0,302.0,8.0,17.0,0.0,3.0,303.0,77.0,84.0,9.0,0.0,22.0,18.0,2.0,0.0,0.0,76.0,154.0,0.0,658.0,80.0,75.0,28.0,1.0,31.0,28.0,733.0,124.0,13.0,78.0,48.0,211.0,316.0,1.0,384.0,18.0,0.0,87.0,21.0,65.0,64.0,18.0,9922.0,84.0,386.38436418199996,2016-02-07,,2016-5,384.23417857432173,333.04505692964, +172,172,70.0,17.0,4.0,4.0,177.0,81.0,13.0,83.0,157.0,82.0,14.0,581.0,1.0,13.0,36.0,8.0,44.0,4.0,226.0,34.0,22.0,76.0,83.0,86.0,26.0,258.0,34.0,3.0,37.0,23.0,14.0,75.0,436.0,63.0,4.0,9.0,67.0,27.0,134.0,237.0,14.0,191.0,88.0,233.0,0.0,51.0,18.0,26.0,874.0,87.0,77.0,254.0,48.0,36.0,21.0,24.0,80.0,332.0,193.0,180.0,7.0,118.0,2.0,314.0,9.0,129.0,54.0,99.0,305.0,0.0,34.0,93.0,12.0,236.0,36.0,70.0,197.0,0.0,3.0,22.0,246.0,87.0,329.0,24.0,7.0,109.0,19.0,64.0,482.0,224.0,4.0,245.0,0.0,111.0,0.0,48.0,470.0,8.0,0.0,496.0,7.0,367.0,13.0,29.0,54.0,551.0,1504.0,95.0,53.0,6.0,21.0,163.0,48.0,362.0,97.0,0.0,758.0,45.0,98.0,965.0,127.0,649.0,76.0,266.0,678.0,7.0,187.0,0.0,0.0,7.0,358.0,0.0,12.0,0.0,166.0,51.0,26.0,425.0,16.0,288.0,60.0,54.0,65.0,69.0,458.0,15.0,177.0,968.0,0.0,149.0,1310.0,268.0,113.0,115.0,407.0,16.0,65.0,0.0,66.0,53.0,14.0,100.0,1426.0,19.0,0.0,424.0,31.0,11.0,692.0,139.0,166.0,276.0,13.0,121.0,0.0,0.0,6.0,37.0,47.0,245.0,141.0,729.0,559.0,20.0,100.0,24.0,71.0,0.0,181.0,23.0,422.0,60.0,116.0,327.0,52.0,36.0,24.0,81.0,57.0,37.0,0.0,303.0,40.0,32.0,42.0,22.0,0.0,136.0,145.0,0.0,25.0,24.0,36.0,32.0,45.0,82.0,312.0,71.0,102.0,194.0,189.0,15.0,2.0,141.0,22.0,414.0,0.0,0.0,92.0,16.0,41.0,8.0,16.0,16.0,220.0,25.0,98.0,106.0,17.0,468.0,215.0,24.0,221.0,43.0,150.0,45.0,12.0,24.0,201.0,17.0,9.0,0.0,0.0,327.0,50.0,76.0,11.0,0.0,14.0,15.0,4.0,0.0,0.0,57.0,122.0,0.0,614.0,97.0,63.0,24.0,1.0,20.0,20.0,710.0,126.0,12.0,83.0,31.0,70.0,297.0,6.0,363.0,26.0,0.0,83.0,29.0,40.0,52.0,20.0,3338.0,130.0,426.9283789067,2016-02-14,,2016-6,429.42138274054173,396.74926302817994, +173,173,39.0,15.0,5.0,5.0,228.0,105.0,26.0,92.0,138.0,95.0,22.0,720.0,3.0,10.0,51.0,4.0,44.0,9.0,222.0,55.0,12.0,80.0,77.0,107.0,66.0,314.0,42.0,6.0,42.0,18.0,10.0,99.0,448.0,65.0,1.0,22.0,40.0,37.0,129.0,235.0,5.0,211.0,90.0,201.0,0.0,65.0,14.0,38.0,850.0,70.0,83.0,276.0,58.0,46.0,27.0,33.0,96.0,394.0,217.0,145.0,9.0,86.0,2.0,275.0,4.0,130.0,57.0,114.0,332.0,95.0,26.0,82.0,12.0,242.0,50.0,66.0,212.0,0.0,3.0,29.0,288.0,79.0,335.0,24.0,8.0,115.0,22.0,83.0,481.0,216.0,2.0,336.0,0.0,65.0,0.0,83.0,419.0,7.0,0.0,581.0,6.0,353.0,19.0,51.0,85.0,607.0,1487.0,75.0,61.0,10.0,14.0,185.0,53.0,460.0,109.0,0.0,959.0,57.0,34.0,1202.0,120.0,560.0,67.0,265.0,707.0,5.0,226.0,0.0,0.0,6.0,388.0,0.0,8.0,0.0,170.0,61.0,59.0,542.0,8.0,351.0,45.0,63.0,71.0,64.0,429.0,28.0,159.0,1070.0,0.0,166.0,1491.0,279.0,146.0,103.0,378.0,8.0,84.0,0.0,82.0,39.0,25.0,126.0,1372.0,32.0,0.0,451.0,28.0,5.0,578.0,153.0,137.0,413.0,34.0,144.0,0.0,0.0,7.0,33.0,48.0,533.0,112.0,670.0,528.0,29.0,130.0,24.0,48.0,0.0,178.0,40.0,479.0,51.0,148.0,350.0,71.0,40.0,12.0,95.0,43.0,65.0,0.0,332.0,35.0,49.0,62.0,29.0,0.0,162.0,183.0,0.0,29.0,44.0,31.0,64.0,43.0,106.0,354.0,78.0,106.0,148.0,196.0,21.0,4.0,140.0,31.0,469.0,0.0,2.0,95.0,22.0,33.0,8.0,10.0,17.0,200.0,32.0,103.0,116.0,11.0,417.0,213.0,45.0,245.0,21.0,118.0,45.0,24.0,28.0,187.0,10.0,15.0,0.0,4.0,336.0,63.0,80.0,26.0,0.0,28.0,19.0,3.0,0.0,0.0,84.0,208.0,0.0,670.0,111.0,77.0,19.0,0.0,62.0,30.0,783.0,110.0,18.0,78.0,20.0,68.0,296.0,2.0,328.0,26.0,0.0,116.0,48.0,75.0,56.0,2.0,2923.0,139.0,553.5392820355,2016-02-21,,2016-7,553.2091787143208,524.10910361228, +174,174,87.0,17.0,4.0,7.0,215.0,81.0,12.0,155.0,141.0,101.0,23.0,718.0,5.0,15.0,60.0,4.0,51.0,10.0,187.0,91.0,14.0,60.0,61.0,117.0,64.0,351.0,50.0,4.0,44.0,11.0,13.0,98.0,411.0,81.0,3.0,12.0,49.0,38.0,125.0,215.0,9.0,147.0,87.0,179.0,0.0,57.0,16.0,42.0,979.0,80.0,107.0,273.0,54.0,46.0,25.0,43.0,104.0,364.0,208.0,145.0,6.0,95.0,1.0,221.0,8.0,124.0,34.0,129.0,351.0,6.0,25.0,101.0,6.0,207.0,33.0,82.0,244.0,0.0,3.0,22.0,298.0,67.0,366.0,39.0,6.0,86.0,19.0,125.0,497.0,228.0,3.0,240.0,0.0,54.0,0.0,41.0,580.0,6.0,0.0,528.0,8.0,365.0,18.0,34.0,89.0,568.0,1400.0,59.0,52.0,2.0,22.0,162.0,53.0,482.0,148.0,0.0,751.0,50.0,42.0,1171.0,117.0,584.0,38.0,284.0,613.0,0.0,202.0,0.0,0.0,11.0,335.0,0.0,12.0,0.0,143.0,59.0,36.0,490.0,10.0,332.0,43.0,77.0,76.0,61.0,439.0,22.0,167.0,1024.0,0.0,206.0,1473.0,212.0,141.0,101.0,379.0,9.0,70.0,0.0,67.0,37.0,17.0,82.0,1469.0,36.0,0.0,557.0,40.0,7.0,447.0,151.0,174.0,215.0,13.0,117.0,0.0,0.0,6.0,31.0,56.0,204.0,169.0,623.0,559.0,26.0,105.0,16.0,37.0,0.0,132.0,35.0,423.0,27.0,100.0,337.0,116.0,41.0,13.0,66.0,26.0,45.0,0.0,336.0,46.0,44.0,51.0,28.0,0.0,185.0,192.0,0.0,25.0,40.0,33.0,66.0,54.0,91.0,383.0,71.0,76.0,144.0,190.0,12.0,2.0,157.0,35.0,412.0,0.0,1.0,82.0,25.0,33.0,13.0,13.0,7.0,162.0,42.0,84.0,96.0,11.0,454.0,249.0,24.0,203.0,39.0,110.0,39.0,7.0,30.0,170.0,17.0,16.0,0.0,1.0,350.0,38.0,88.0,9.0,0.0,25.0,22.0,2.0,0.0,0.0,64.0,128.0,0.0,577.0,109.0,110.0,21.0,2.0,49.0,29.0,708.0,131.0,18.0,92.0,32.0,92.0,290.0,4.0,327.0,28.0,0.0,90.0,31.0,62.0,65.0,1.0,3728.0,76.0,635.4203101317,2016-02-28,,2016-8,636.436035393885,312.80206169272003, +175,175,68.0,14.0,2.0,1.0,189.0,88.0,20.0,107.0,174.0,89.0,29.0,700.0,7.0,11.0,47.0,3.0,44.0,7.0,211.0,56.0,16.0,90.0,73.0,106.0,50.0,318.0,35.0,5.0,43.0,12.0,8.0,101.0,415.0,88.0,1.0,11.0,63.0,27.0,150.0,208.0,5.0,164.0,99.0,204.0,0.0,70.0,10.0,31.0,943.0,85.0,86.0,262.0,60.0,30.0,29.0,26.0,75.0,444.0,212.0,195.0,5.0,83.0,2.0,183.0,9.0,124.0,36.0,100.0,325.0,19.0,25.0,96.0,10.0,213.0,34.0,79.0,197.0,0.0,4.0,18.0,286.0,65.0,408.0,34.0,10.0,91.0,16.0,66.0,505.0,166.0,1.0,197.0,0.0,52.0,0.0,28.0,457.0,11.0,0.0,593.0,6.0,278.0,23.0,39.0,84.0,601.0,1363.0,78.0,61.0,7.0,17.0,147.0,37.0,468.0,135.0,0.0,943.0,55.0,34.0,1112.0,117.0,626.0,62.0,262.0,1027.0,2.0,170.0,0.0,0.0,12.0,440.0,0.0,3.0,0.0,177.0,57.0,22.0,494.0,10.0,347.0,30.0,70.0,87.0,48.0,396.0,18.0,186.0,947.0,0.0,214.0,1451.0,262.0,126.0,118.0,405.0,14.0,43.0,0.0,79.0,32.0,18.0,98.0,1395.0,26.0,0.0,432.0,16.0,6.0,478.0,154.0,117.0,251.0,13.0,138.0,0.0,0.0,4.0,40.0,39.0,254.0,143.0,796.0,541.0,34.0,95.0,5.0,48.0,0.0,168.0,33.0,432.0,40.0,192.0,391.0,68.0,50.0,20.0,63.0,44.0,64.0,0.0,328.0,35.0,67.0,34.0,30.0,0.0,177.0,146.0,0.0,32.0,28.0,26.0,47.0,56.0,83.0,349.0,74.0,83.0,142.0,139.0,12.0,3.0,159.0,33.0,460.0,0.0,2.0,93.0,23.0,16.0,9.0,14.0,13.0,133.0,28.0,107.0,111.0,13.0,410.0,207.0,38.0,225.0,61.0,166.0,50.0,12.0,34.0,178.0,10.0,12.0,0.0,10.0,383.0,56.0,89.0,23.0,0.0,27.0,20.0,2.0,0.0,0.0,63.0,98.0,0.0,563.0,108.0,88.0,22.0,0.0,25.0,20.0,740.0,83.0,3.0,91.0,19.0,50.0,307.0,7.0,294.0,17.0,0.0,91.0,33.0,58.0,48.0,1.0,2799.0,73.0,733.5038050510001,2016-03-06,,2016-9,734.3505645608827,424.59091512598, +176,176,88.0,9.0,8.0,2.0,189.0,74.0,9.0,84.0,133.0,85.0,20.0,663.0,5.0,10.0,64.0,8.0,43.0,5.0,227.0,77.0,9.0,70.0,86.0,145.0,33.0,280.0,53.0,7.0,25.0,15.0,10.0,89.0,406.0,62.0,1.0,10.0,41.0,29.0,151.0,220.0,4.0,167.0,104.0,158.0,0.0,49.0,8.0,24.0,969.0,76.0,89.0,224.0,47.0,35.0,24.0,26.0,118.0,336.0,160.0,164.0,22.0,86.0,1.0,179.0,7.0,118.0,34.0,106.0,316.0,9.0,24.0,78.0,7.0,215.0,39.0,67.0,241.0,0.0,3.0,9.0,255.0,64.0,336.0,34.0,4.0,128.0,11.0,84.0,502.0,177.0,0.0,180.0,0.0,53.0,0.0,46.0,430.0,5.0,0.0,639.0,7.0,313.0,15.0,32.0,70.0,602.0,1153.0,56.0,59.0,3.0,8.0,153.0,42.0,476.0,121.0,0.0,775.0,65.0,33.0,1118.0,87.0,515.0,35.0,249.0,661.0,4.0,189.0,0.0,0.0,8.0,424.0,0.0,6.0,0.0,179.0,51.0,28.0,455.0,12.0,349.0,39.0,51.0,59.0,48.0,406.0,16.0,191.0,1217.0,0.0,209.0,1352.0,243.0,124.0,110.0,397.0,17.0,48.0,0.0,61.0,401.0,21.0,80.0,1289.0,18.0,0.0,577.0,20.0,5.0,493.0,166.0,94.0,237.0,14.0,106.0,0.0,20.0,2.0,18.0,49.0,220.0,137.0,691.0,558.0,19.0,112.0,9.0,45.0,0.0,165.0,23.0,493.0,39.0,150.0,346.0,60.0,42.0,10.0,42.0,47.0,59.0,0.0,391.0,32.0,88.0,45.0,20.0,0.0,170.0,208.0,0.0,39.0,37.0,18.0,44.0,30.0,58.0,338.0,69.0,74.0,149.0,143.0,13.0,3.0,136.0,26.0,423.0,19.0,2.0,59.0,10.0,81.0,5.0,10.0,14.0,114.0,56.0,97.0,107.0,12.0,357.0,231.0,22.0,222.0,50.0,167.0,44.0,14.0,30.0,188.0,6.0,9.0,0.0,8.0,395.0,42.0,67.0,17.0,0.0,24.0,26.0,5.0,0.0,0.0,55.0,60.0,0.0,597.0,96.0,69.0,19.0,0.0,43.0,27.0,742.0,97.0,6.0,88.0,21.0,41.0,245.0,1.0,345.0,18.0,0.0,90.0,38.0,76.0,50.0,0.0,2295.0,52.0,662.8364830187,2016-03-13,,2016-10,663.145813180033,425.74029662322005, +177,177,97.0,12.0,9.0,0.0,177.0,69.0,8.0,84.0,148.0,77.0,27.0,1130.0,4.0,5.0,50.0,7.0,51.0,5.0,232.0,56.0,13.0,52.0,74.0,143.0,44.0,367.0,35.0,7.0,38.0,22.0,6.0,96.0,502.0,63.0,1.0,19.0,38.0,31.0,122.0,221.0,6.0,188.0,84.0,151.0,0.0,56.0,9.0,28.0,939.0,91.0,76.0,239.0,47.0,37.0,19.0,21.0,122.0,336.0,150.0,161.0,8.0,88.0,3.0,151.0,5.0,122.0,37.0,97.0,323.0,7.0,9.0,83.0,9.0,220.0,29.0,67.0,216.0,0.0,1.0,16.0,324.0,67.0,319.0,17.0,7.0,115.0,27.0,61.0,492.0,234.0,0.0,187.0,0.0,54.0,1.0,80.0,520.0,3.0,0.0,692.0,7.0,400.0,13.0,20.0,90.0,569.0,977.0,62.0,60.0,2.0,16.0,199.0,46.0,425.0,140.0,0.0,763.0,50.0,37.0,1267.0,105.0,528.0,32.0,276.0,579.0,2.0,196.0,0.0,0.0,9.0,389.0,0.0,7.0,0.0,165.0,79.0,22.0,556.0,27.0,323.0,44.0,49.0,76.0,41.0,409.0,20.0,175.0,1236.0,0.0,200.0,1202.0,242.0,117.0,115.0,394.0,9.0,62.0,0.0,54.0,77.0,19.0,80.0,1275.0,40.0,0.0,552.0,35.0,19.0,425.0,154.0,85.0,316.0,17.0,120.0,0.0,3.0,9.0,29.0,41.0,217.0,134.0,650.0,621.0,25.0,108.0,13.0,32.0,0.0,213.0,28.0,407.0,31.0,200.0,330.0,52.0,34.0,9.0,56.0,34.0,59.0,0.0,394.0,40.0,56.0,36.0,22.0,0.0,176.0,163.0,0.0,36.0,34.0,36.0,35.0,49.0,74.0,361.0,68.0,72.0,154.0,101.0,12.0,2.0,164.0,29.0,450.0,8.0,3.0,86.0,21.0,35.0,9.0,17.0,11.0,138.0,33.0,95.0,75.0,5.0,356.0,227.0,31.0,236.0,77.0,98.0,55.0,11.0,25.0,192.0,10.0,9.0,0.0,8.0,396.0,52.0,81.0,19.0,0.0,28.0,18.0,1.0,0.0,0.0,63.0,80.0,0.0,539.0,113.0,76.0,17.0,1.0,45.0,23.0,671.0,106.0,14.0,86.0,17.0,34.0,279.0,9.0,292.0,28.0,0.0,56.0,38.0,58.0,57.0,5.0,2082.0,73.0,525.7297042637,2016-03-20,,2016-11,525.4852753592877,426.3410831000601, +178,178,64.0,11.0,5.0,2.0,162.0,58.0,10.0,74.0,141.0,75.0,23.0,715.0,5.0,9.0,41.0,5.0,55.0,5.0,191.0,37.0,12.0,52.0,89.0,100.0,45.0,299.0,31.0,3.0,53.0,10.0,5.0,112.0,383.0,62.0,2.0,14.0,41.0,32.0,193.0,236.0,4.0,127.0,63.0,165.0,0.0,52.0,9.0,34.0,867.0,76.0,93.0,232.0,58.0,40.0,24.0,27.0,103.0,313.0,155.0,142.0,7.0,82.0,17.0,152.0,6.0,116.0,53.0,114.0,265.0,5.0,12.0,82.0,20.0,173.0,43.0,60.0,189.0,0.0,5.0,16.0,250.0,46.0,324.0,25.0,9.0,93.0,26.0,60.0,484.0,191.0,1.0,200.0,0.0,40.0,2.0,46.0,356.0,3.0,0.0,595.0,5.0,257.0,10.0,19.0,72.0,657.0,782.0,43.0,41.0,10.0,14.0,158.0,46.0,418.0,109.0,0.0,730.0,54.0,31.0,852.0,108.0,434.0,42.0,231.0,544.0,1.0,142.0,0.0,0.0,9.0,362.0,0.0,9.0,0.0,153.0,46.0,60.0,390.0,8.0,249.0,35.0,74.0,74.0,35.0,303.0,16.0,127.0,954.0,0.0,160.0,922.0,207.0,74.0,115.0,335.0,12.0,63.0,0.0,76.0,35.0,30.0,76.0,1131.0,28.0,0.0,387.0,22.0,16.0,265.0,122.0,93.0,256.0,12.0,99.0,0.0,3.0,7.0,27.0,41.0,192.0,116.0,625.0,505.0,20.0,75.0,14.0,24.0,0.0,172.0,20.0,445.0,32.0,161.0,333.0,62.0,38.0,13.0,34.0,35.0,30.0,0.0,282.0,32.0,89.0,39.0,18.0,0.0,145.0,164.0,0.0,32.0,60.0,27.0,54.0,42.0,48.0,302.0,65.0,76.0,144.0,95.0,10.0,0.0,161.0,25.0,354.0,9.0,0.0,64.0,13.0,35.0,10.0,18.0,19.0,125.0,37.0,85.0,78.0,7.0,266.0,162.0,31.0,222.0,78.0,153.0,52.0,14.0,22.0,143.0,11.0,17.0,0.0,5.0,359.0,50.0,86.0,15.0,0.0,16.0,20.0,5.0,0.0,0.0,59.0,65.0,0.0,416.0,104.0,61.0,22.0,0.0,42.0,25.0,596.0,87.0,8.0,66.0,15.0,40.0,234.0,3.0,280.0,30.0,0.0,62.0,19.0,60.0,57.0,3.0,1354.0,59.0,370.4734779536,2016-03-27,,2016-12,373.283208266148,277.20875181080004, +179,179,79.0,17.0,6.0,5.0,206.0,99.0,16.0,90.0,133.0,77.0,21.0,633.0,6.0,14.0,37.0,8.0,54.0,5.0,209.0,46.0,12.0,82.0,73.0,126.0,45.0,356.0,38.0,3.0,49.0,25.0,6.0,97.0,406.0,83.0,1.0,15.0,18.0,40.0,137.0,263.0,3.0,112.0,95.0,142.0,0.0,50.0,14.0,25.0,797.0,70.0,73.0,300.0,47.0,43.0,26.0,43.0,76.0,317.0,180.0,158.0,6.0,69.0,3.0,107.0,5.0,108.0,36.0,90.0,327.0,8.0,19.0,63.0,8.0,173.0,25.0,64.0,223.0,0.0,3.0,14.0,312.0,63.0,359.0,31.0,6.0,75.0,50.0,84.0,433.0,186.0,0.0,208.0,0.0,53.0,0.0,47.0,214.0,4.0,0.0,558.0,13.0,231.0,17.0,28.0,77.0,591.0,618.0,38.0,46.0,5.0,13.0,157.0,40.0,434.0,127.0,0.0,589.0,65.0,45.0,993.0,110.0,385.0,28.0,264.0,527.0,3.0,164.0,0.0,0.0,14.0,324.0,0.0,11.0,0.0,165.0,56.0,33.0,384.0,6.0,213.0,48.0,90.0,61.0,45.0,291.0,105.0,170.0,940.0,0.0,187.0,938.0,227.0,91.0,109.0,285.0,13.0,32.0,0.0,66.0,32.0,23.0,55.0,1205.0,31.0,0.0,372.0,25.0,10.0,301.0,141.0,85.0,162.0,16.0,147.0,0.0,2.0,7.0,33.0,42.0,190.0,145.0,495.0,581.0,16.0,116.0,7.0,28.0,0.0,198.0,32.0,457.0,21.0,170.0,305.0,74.0,20.0,17.0,38.0,32.0,30.0,0.0,304.0,46.0,240.0,33.0,32.0,0.0,155.0,161.0,0.0,29.0,30.0,24.0,60.0,56.0,59.0,238.0,74.0,78.0,148.0,108.0,7.0,2.0,175.0,25.0,355.0,5.0,0.0,84.0,15.0,44.0,6.0,15.0,8.0,112.0,46.0,102.0,76.0,7.0,306.0,185.0,32.0,235.0,72.0,137.0,38.0,11.0,22.0,138.0,11.0,19.0,0.0,7.0,375.0,54.0,78.0,16.0,0.0,44.0,32.0,1.0,0.0,0.0,41.0,59.0,0.0,379.0,96.0,69.0,14.0,0.0,40.0,29.0,547.0,111.0,12.0,88.0,18.0,33.0,220.0,5.0,326.0,18.0,0.0,68.0,22.0,43.0,42.0,66.0,1204.0,62.0,166.5221953556,2016-04-03,,2016-13,165.19173271790373,295.06965582588003, +180,180,74.0,23.0,4.0,6.0,198.0,89.0,9.0,90.0,156.0,101.0,21.0,723.0,9.0,15.0,41.0,19.0,65.0,9.0,201.0,45.0,51.0,88.0,78.0,153.0,53.0,354.0,29.0,5.0,45.0,24.0,14.0,102.0,470.0,98.0,14.0,21.0,20.0,59.0,172.0,232.0,11.0,170.0,69.0,151.0,0.0,82.0,14.0,29.0,834.0,49.0,72.0,272.0,65.0,39.0,32.0,29.0,96.0,301.0,156.0,199.0,6.0,90.0,2.0,95.0,14.0,129.0,45.0,111.0,354.0,6.0,20.0,122.0,14.0,176.0,51.0,65.0,257.0,0.0,0.0,18.0,310.0,70.0,449.0,14.0,21.0,72.0,41.0,64.0,484.0,202.0,0.0,259.0,0.0,47.0,0.0,59.0,155.0,4.0,0.0,580.0,14.0,319.0,18.0,45.0,93.0,550.0,582.0,44.0,62.0,4.0,19.0,147.0,52.0,456.0,149.0,0.0,706.0,91.0,57.0,1295.0,108.0,430.0,30.0,244.0,567.0,5.0,176.0,0.0,0.0,25.0,368.0,0.0,9.0,0.0,163.0,47.0,31.0,422.0,22.0,289.0,36.0,130.0,63.0,35.0,341.0,429.0,195.0,1049.0,0.0,188.0,956.0,215.0,97.0,105.0,308.0,9.0,49.0,0.0,80.0,30.0,21.0,86.0,1128.0,25.0,0.0,420.0,28.0,3.0,221.0,155.0,77.0,187.0,12.0,163.0,0.0,8.0,4.0,53.0,57.0,206.0,145.0,612.0,551.0,32.0,100.0,17.0,47.0,0.0,166.0,37.0,542.0,45.0,195.0,390.0,62.0,42.0,21.0,59.0,42.0,38.0,0.0,332.0,31.0,91.0,26.0,31.0,0.0,183.0,205.0,0.0,28.0,43.0,21.0,61.0,57.0,76.0,237.0,69.0,86.0,134.0,110.0,12.0,5.0,219.0,37.0,407.0,5.0,4.0,89.0,13.0,37.0,11.0,20.0,7.0,124.0,22.0,94.0,88.0,14.0,285.0,210.0,33.0,224.0,82.0,190.0,61.0,25.0,30.0,151.0,20.0,24.0,0.0,5.0,362.0,60.0,108.0,15.0,0.0,36.0,21.0,5.0,0.0,0.0,63.0,56.0,0.0,384.0,116.0,91.0,22.0,0.0,54.0,29.0,644.0,129.0,17.0,115.0,20.0,59.0,223.0,14.0,316.0,24.0,0.0,77.0,30.0,73.0,44.0,37.0,1069.0,84.0,78.9809204662,2016-04-10,,2016-14,76.60881115456323,69.18576007700001, +181,181,80.0,15.0,7.0,1.0,152.0,80.0,26.0,78.0,155.0,72.0,22.0,682.0,15.0,15.0,43.0,10.0,76.0,13.0,212.0,41.0,35.0,74.0,77.0,114.0,51.0,304.0,58.0,5.0,74.0,14.0,8.0,106.0,376.0,69.0,10.0,19.0,40.0,42.0,155.0,293.0,13.0,140.0,108.0,139.0,0.0,60.0,23.0,29.0,898.0,91.0,72.0,270.0,76.0,45.0,26.0,31.0,76.0,244.0,166.0,165.0,7.0,98.0,3.0,117.0,13.0,104.0,66.0,98.0,287.0,5.0,15.0,83.0,22.0,191.0,44.0,70.0,224.0,0.0,7.0,24.0,254.0,69.0,382.0,23.0,15.0,110.0,29.0,53.0,507.0,182.0,0.0,210.0,0.0,48.0,1.0,32.0,570.0,6.0,0.0,556.0,12.0,401.0,14.0,40.0,82.0,582.0,414.0,48.0,48.0,17.0,7.0,151.0,45.0,439.0,128.0,0.0,850.0,59.0,57.0,1011.0,104.0,629.0,30.0,226.0,658.0,2.0,163.0,0.0,0.0,20.0,311.0,0.0,15.0,0.0,161.0,72.0,26.0,435.0,9.0,320.0,46.0,60.0,72.0,37.0,348.0,393.0,183.0,1200.0,0.0,217.0,776.0,190.0,112.0,94.0,257.0,12.0,74.0,1.0,69.0,44.0,27.0,85.0,1024.0,45.0,0.0,532.0,28.0,6.0,311.0,165.0,89.0,246.0,11.0,140.0,0.0,6.0,5.0,29.0,30.0,210.0,147.0,508.0,548.0,20.0,102.0,15.0,32.0,0.0,175.0,38.0,492.0,40.0,151.0,312.0,56.0,27.0,16.0,40.0,39.0,43.0,0.0,406.0,31.0,61.0,40.0,34.0,0.0,157.0,176.0,0.0,32.0,40.0,20.0,49.0,53.0,111.0,230.0,69.0,84.0,140.0,105.0,12.0,2.0,164.0,38.0,395.0,9.0,0.0,76.0,34.0,36.0,11.0,21.0,10.0,132.0,36.0,98.0,130.0,14.0,250.0,193.0,34.0,249.0,34.0,184.0,53.0,14.0,41.0,160.0,16.0,22.0,0.0,3.0,365.0,59.0,67.0,23.0,0.0,30.0,20.0,3.0,0.0,0.0,50.0,51.0,0.0,328.0,76.0,61.0,21.0,0.0,48.0,24.0,639.0,123.0,18.0,99.0,32.0,53.0,233.0,12.0,306.0,32.0,0.0,82.0,25.0,61.0,61.0,65.0,2080.0,72.0,22.4126162654,2016-04-17,,2016-15,26.345774577700467,22.412616265400004, +182,182,239.0,5.0,5.0,0.0,256.0,90.0,11.0,113.0,181.0,152.0,14.0,962.0,1.0,7.0,56.0,8.0,89.0,3.0,257.0,37.0,9.0,83.0,98.0,195.0,48.0,493.0,17.0,4.0,44.0,27.0,13.0,155.0,579.0,105.0,0.0,16.0,62.0,39.0,167.0,219.0,4.0,487.0,126.0,197.0,0.0,64.0,4.0,35.0,1414.0,92.0,111.0,448.0,84.0,31.0,41.0,73.0,96.0,1125.0,329.0,184.0,4.0,128.0,0.0,237.0,1.0,170.0,104.0,89.0,401.0,0.0,11.0,142.0,9.0,222.0,27.0,142.0,319.0,108.0,3.0,20.0,498.0,84.0,612.0,22.0,7.0,84.0,29.0,161.0,680.0,240.0,0.0,362.0,46.0,103.0,112.0,50.0,71.0,2.0,36.0,777.0,7.0,461.0,17.0,39.0,65.0,1527.0,1534.0,508.0,125.0,9.0,100.0,167.0,50.0,634.0,117.0,4.0,1001.0,49.0,60.0,2370.0,190.0,870.0,81.0,343.0,954.0,1.0,183.0,326.0,77.0,24.0,574.0,283.0,16.0,153.0,239.0,137.0,21.0,697.0,12.0,409.0,47.0,65.0,100.0,23.0,1046.0,717.0,257.0,2296.0,1.0,429.0,1952.0,579.0,156.0,124.0,590.0,22.0,128.0,0.0,133.0,29.0,34.0,115.0,2283.0,39.0,31.0,856.0,22.0,20.0,327.0,204.0,144.0,540.0,9.0,189.0,17.0,1.0,0.0,64.0,85.0,460.0,155.0,2125.0,903.0,26.0,133.0,24.0,95.0,0.0,250.0,36.0,765.0,87.0,126.0,488.0,53.0,33.0,32.0,59.0,57.0,48.0,813.0,519.0,135.0,67.0,36.0,41.0,43.0,171.0,186.0,33.0,26.0,50.0,34.0,57.0,53.0,200.0,566.0,130.0,67.0,232.0,197.0,5.0,0.0,230.0,28.0,632.0,9.0,16.0,153.0,31.0,39.0,7.0,11.0,10.0,155.0,87.0,116.0,132.0,8.0,692.0,372.0,37.0,368.0,35.0,244.0,97.0,9.0,18.0,221.0,20.0,14.0,25.0,2.0,559.0,55.0,145.0,10.0,74.0,19.0,16.0,0.0,0.0,179.0,93.0,76.0,3.0,1139.0,191.0,89.0,15.0,0.0,63.0,35.0,1046.0,137.0,18.0,84.0,22.0,74.0,685.0,6.0,675.0,36.0,0.0,104.0,37.0,82.0,52.0,73.0,694.0,393.0,33.9331242319,2016-10-23,,2016-42,35.6692987599713,32.14793498278001, +183,183,249.0,16.0,4.0,0.0,304.0,86.0,7.0,120.0,170.0,140.0,20.0,1100.0,0.0,6.0,58.0,2.0,81.0,5.0,291.0,53.0,11.0,110.0,95.0,217.0,60.0,604.0,30.0,2.0,43.0,25.0,18.0,146.0,780.0,121.0,2.0,12.0,62.0,58.0,147.0,339.0,4.0,385.0,123.0,197.0,0.0,76.0,5.0,31.0,1511.0,112.0,146.0,428.0,77.0,21.0,49.0,47.0,98.0,1240.0,294.0,213.0,4.0,111.0,1.0,201.0,9.0,145.0,106.0,85.0,390.0,1.0,18.0,162.0,19.0,308.0,22.0,161.0,355.0,128.0,5.0,18.0,527.0,74.0,663.0,18.0,9.0,90.0,34.0,137.0,723.0,256.0,0.0,426.0,76.0,98.0,114.0,60.0,58.0,1.0,42.0,773.0,6.0,417.0,10.0,41.0,76.0,1506.0,1436.0,698.0,82.0,4.0,79.0,181.0,53.0,677.0,152.0,7.0,1034.0,65.0,70.0,3343.0,176.0,1494.0,86.0,344.0,1120.0,1.0,147.0,437.0,84.0,26.0,680.0,300.0,12.0,166.0,282.0,189.0,25.0,719.0,6.0,420.0,57.0,67.0,97.0,34.0,1094.0,685.0,451.0,2231.0,0.0,390.0,2185.0,604.0,175.0,135.0,605.0,8.0,116.0,0.0,127.0,35.0,45.0,142.0,2449.0,33.0,34.0,1404.0,36.0,20.0,354.0,243.0,119.0,586.0,7.0,169.0,22.0,1.0,1.0,48.0,92.0,493.0,195.0,2043.0,865.0,18.0,104.0,3.0,65.0,0.0,265.0,60.0,899.0,54.0,213.0,462.0,64.0,31.0,5.0,49.0,33.0,45.0,914.0,577.0,105.0,104.0,22.0,41.0,126.0,162.0,216.0,25.0,29.0,54.0,64.0,40.0,76.0,244.0,616.0,120.0,85.0,222.0,251.0,5.0,0.0,232.0,29.0,857.0,8.0,18.0,165.0,23.0,38.0,16.0,16.0,6.0,176.0,72.0,126.0,762.0,8.0,763.0,318.0,37.0,363.0,41.0,180.0,136.0,15.0,18.0,270.0,6.0,14.0,22.0,2.0,666.0,70.0,138.0,6.0,85.0,33.0,20.0,0.0,0.0,155.0,73.0,72.0,8.0,1027.0,150.0,102.0,20.0,0.0,128.0,51.0,1338.0,159.0,19.0,145.0,17.0,71.0,635.0,15.0,663.0,31.0,0.0,93.0,40.0,115.0,53.0,77.0,751.0,414.0,25.0071779863,2016-10-30,,2016-43,25.67122235363513,25.462555610120003, +184,184,240.0,9.0,10.0,3.0,287.0,74.0,15.0,114.0,155.0,151.0,38.0,1008.0,1.0,9.0,43.0,3.0,81.0,3.0,301.0,62.0,13.0,84.0,114.0,214.0,92.0,574.0,37.0,8.0,58.0,37.0,7.0,129.0,641.0,108.0,0.0,14.0,41.0,53.0,184.0,294.0,2.0,401.0,161.0,207.0,26.0,73.0,12.0,26.0,1397.0,99.0,124.0,465.0,53.0,32.0,92.0,48.0,102.0,1126.0,274.0,207.0,9.0,127.0,2.0,199.0,4.0,160.0,68.0,72.0,475.0,0.0,21.0,138.0,22.0,229.0,43.0,122.0,456.0,128.0,2.0,26.0,537.0,70.0,667.0,31.0,6.0,107.0,34.0,151.0,679.0,234.0,0.0,371.0,68.0,109.0,146.0,45.0,91.0,2.0,63.0,1456.0,17.0,432.0,14.0,27.0,91.0,1343.0,1919.0,742.0,65.0,4.0,137.0,179.0,48.0,744.0,119.0,7.0,1167.0,60.0,56.0,2395.0,201.0,1094.0,71.0,417.0,1014.0,0.0,158.0,414.0,82.0,27.0,624.0,300.0,6.0,163.0,275.0,180.0,32.0,705.0,4.0,391.0,64.0,71.0,105.0,67.0,1024.0,833.0,296.0,2299.0,1.0,478.0,1878.0,621.0,145.0,133.0,629.0,16.0,73.0,0.0,109.0,27.0,23.0,130.0,2367.0,37.0,29.0,674.0,26.0,17.0,278.0,224.0,145.0,516.0,10.0,158.0,25.0,6.0,3.0,59.0,107.0,407.0,177.0,2367.0,862.0,39.0,98.0,16.0,86.0,0.0,251.0,73.0,958.0,56.0,255.0,551.0,68.0,25.0,6.0,52.0,33.0,49.0,818.0,722.0,134.0,89.0,33.0,87.0,21.0,226.0,231.0,66.0,31.0,34.0,20.0,58.0,61.0,199.0,690.0,140.0,99.0,217.0,308.0,7.0,0.0,211.0,25.0,667.0,4.0,24.0,156.0,17.0,31.0,20.0,15.0,10.0,190.0,58.0,115.0,190.0,5.0,877.0,356.0,45.0,369.0,43.0,199.0,122.0,8.0,19.0,271.0,11.0,12.0,32.0,0.0,648.0,53.0,128.0,22.0,75.0,31.0,24.0,0.0,0.0,184.0,84.0,77.0,10.0,950.0,172.0,120.0,33.0,0.0,108.0,41.0,1079.0,160.0,24.0,154.0,41.0,93.0,720.0,7.0,716.0,38.0,0.0,94.0,36.0,105.0,36.0,75.0,744.0,505.0,17.6696809064,2016-11-06,,2016-44,18.419172745575906,75.85640089284001, +185,185,169.0,5.0,1.0,15.0,311.0,110.0,10.0,112.0,152.0,148.0,21.0,840.0,2.0,6.0,55.0,2.0,76.0,4.0,319.0,71.0,14.0,83.0,95.0,172.0,67.0,566.0,26.0,4.0,53.0,26.0,6.0,123.0,594.0,70.0,4.0,23.0,63.0,23.0,144.0,223.0,4.0,794.0,157.0,228.0,25.0,95.0,4.0,26.0,1335.0,146.0,154.0,465.0,73.0,24.0,36.0,54.0,113.0,1159.0,328.0,212.0,8.0,137.0,0.0,180.0,5.0,143.0,65.0,69.0,426.0,0.0,23.0,148.0,11.0,236.0,40.0,120.0,355.0,99.0,2.0,30.0,497.0,76.0,619.0,28.0,5.0,118.0,40.0,147.0,669.0,287.0,0.0,368.0,63.0,87.0,99.0,54.0,63.0,0.0,38.0,866.0,5.0,332.0,19.0,35.0,77.0,1393.0,1407.0,549.0,90.0,44.0,94.0,138.0,57.0,639.0,108.0,6.0,965.0,53.0,48.0,2267.0,188.0,852.0,110.0,316.0,968.0,0.0,170.0,369.0,75.0,16.0,635.0,285.0,6.0,140.0,283.0,112.0,22.0,724.0,9.0,428.0,42.0,62.0,95.0,29.0,1160.0,656.0,249.0,2422.0,1.0,373.0,2005.0,650.0,158.0,120.0,601.0,5.0,79.0,0.0,111.0,14.0,36.0,94.0,2348.0,28.0,33.0,747.0,32.0,10.0,372.0,253.0,146.0,523.0,5.0,147.0,27.0,2.0,0.0,47.0,99.0,462.0,123.0,2723.0,793.0,29.0,133.0,11.0,54.0,0.0,247.0,65.0,843.0,80.0,225.0,668.0,44.0,51.0,12.0,47.0,47.0,64.0,829.0,577.0,149.0,91.0,27.0,37.0,16.0,219.0,287.0,62.0,18.0,29.0,25.0,61.0,47.0,242.0,718.0,115.0,84.0,249.0,346.0,9.0,0.0,181.0,22.0,661.0,1.0,10.0,152.0,20.0,41.0,8.0,16.0,4.0,170.0,42.0,95.0,154.0,3.0,811.0,322.0,42.0,327.0,34.0,177.0,86.0,16.0,16.0,243.0,17.0,7.0,32.0,0.0,612.0,83.0,127.0,4.0,68.0,24.0,20.0,0.0,0.0,159.0,81.0,126.0,7.0,988.0,155.0,94.0,17.0,0.0,64.0,67.0,1103.0,176.0,12.0,115.0,34.0,43.0,636.0,20.0,651.0,26.0,0.0,111.0,43.0,81.0,51.0,65.0,651.0,452.0,31.8054256314,2016-11-13,,2016-45,30.923648860616595,175.51955439862002, +186,186,226.0,2.0,3.0,3.0,300.0,90.0,20.0,110.0,188.0,163.0,26.0,1067.0,1.0,12.0,55.0,3.0,70.0,7.0,303.0,68.0,11.0,64.0,147.0,249.0,70.0,536.0,29.0,2.0,46.0,21.0,4.0,145.0,575.0,74.0,3.0,42.0,63.0,32.0,195.0,440.0,5.0,600.0,168.0,231.0,17.0,100.0,9.0,33.0,1345.0,91.0,152.0,404.0,89.0,19.0,49.0,46.0,118.0,1235.0,302.0,186.0,5.0,110.0,1.0,226.0,5.0,150.0,79.0,105.0,477.0,0.0,26.0,130.0,17.0,323.0,35.0,144.0,385.0,143.0,0.0,30.0,476.0,104.0,699.0,36.0,9.0,144.0,17.0,142.0,730.0,286.0,0.0,394.0,45.0,138.0,126.0,39.0,77.0,6.0,24.0,753.0,14.0,425.0,25.0,40.0,102.0,1361.0,1538.0,305.0,114.0,33.0,109.0,166.0,43.0,622.0,128.0,5.0,1067.0,62.0,69.0,2234.0,164.0,795.0,116.0,325.0,1222.0,0.0,180.0,340.0,56.0,33.0,629.0,289.0,16.0,159.0,271.0,124.0,20.0,698.0,5.0,517.0,33.0,73.0,128.0,44.0,1117.0,599.0,282.0,2495.0,1.0,463.0,2169.0,721.0,176.0,140.0,536.0,15.0,78.0,0.0,111.0,13.0,58.0,154.0,2397.0,44.0,37.0,1265.0,39.0,12.0,361.0,248.0,150.0,530.0,8.0,166.0,15.0,1.0,2.0,59.0,91.0,529.0,113.0,3296.0,894.0,25.0,93.0,11.0,73.0,0.0,294.0,39.0,819.0,106.0,215.0,633.0,63.0,134.0,4.0,59.0,39.0,59.0,733.0,512.0,127.0,87.0,32.0,47.0,29.0,187.0,251.0,43.0,21.0,41.0,36.0,60.0,59.0,235.0,901.0,119.0,94.0,207.0,495.0,14.0,0.0,191.0,30.0,921.0,4.0,22.0,151.0,25.0,34.0,12.0,14.0,8.0,181.0,41.0,94.0,140.0,7.0,848.0,284.0,42.0,322.0,33.0,158.0,130.0,13.0,12.0,236.0,13.0,13.0,27.0,2.0,676.0,74.0,148.0,15.0,86.0,11.0,11.0,1.0,0.0,154.0,127.0,84.0,8.0,1044.0,157.0,113.0,29.0,0.0,32.0,44.0,1206.0,186.0,25.0,116.0,37.0,94.0,568.0,11.0,666.0,18.0,0.0,84.0,44.0,92.0,64.0,87.0,943.0,485.0,30.264678369000002,2016-11-20,,2016-46,29.117887582056937,438.96365880264005, +187,187,235.0,8.0,5.0,6.0,247.0,84.0,7.0,134.0,194.0,150.0,31.0,1164.0,5.0,5.0,69.0,3.0,55.0,7.0,320.0,49.0,10.0,95.0,258.0,251.0,96.0,475.0,21.0,7.0,45.0,31.0,9.0,133.0,546.0,100.0,4.0,32.0,51.0,38.0,210.0,439.0,7.0,404.0,175.0,218.0,13.0,104.0,9.0,17.0,1464.0,90.0,149.0,408.0,96.0,28.0,30.0,52.0,123.0,1177.0,300.0,238.0,13.0,118.0,0.0,171.0,7.0,205.0,99.0,113.0,454.0,1.0,26.0,133.0,8.0,305.0,38.0,120.0,322.0,123.0,3.0,24.0,465.0,93.0,631.0,32.0,7.0,143.0,17.0,185.0,814.0,310.0,0.0,394.0,59.0,103.0,115.0,41.0,84.0,6.0,43.0,789.0,11.0,403.0,33.0,63.0,98.0,1417.0,1478.0,208.0,121.0,25.0,124.0,177.0,84.0,726.0,111.0,6.0,1051.0,52.0,58.0,2335.0,164.0,917.0,83.0,328.0,999.0,0.0,161.0,419.0,80.0,30.0,596.0,329.0,13.0,183.0,285.0,118.0,19.0,750.0,5.0,438.0,46.0,54.0,195.0,33.0,1026.0,649.0,270.0,2540.0,2.0,393.0,2071.0,674.0,229.0,120.0,566.0,13.0,60.0,0.0,148.0,25.0,21.0,109.0,2475.0,32.0,42.0,1245.0,50.0,18.0,324.0,236.0,155.0,556.0,11.0,161.0,23.0,3.0,5.0,62.0,108.0,421.0,130.0,3437.0,934.0,69.0,110.0,17.0,183.0,0.0,291.0,47.0,830.0,52.0,176.0,565.0,57.0,82.0,12.0,43.0,38.0,49.0,743.0,453.0,122.0,108.0,46.0,54.0,31.0,203.0,278.0,40.0,23.0,33.0,25.0,48.0,57.0,271.0,900.0,137.0,95.0,191.0,737.0,8.0,0.0,159.0,33.0,1899.0,8.0,48.0,133.0,18.0,50.0,9.0,19.0,7.0,194.0,33.0,104.0,137.0,6.0,715.0,341.0,56.0,344.0,42.0,170.0,142.0,10.0,22.0,229.0,9.0,19.0,14.0,2.0,657.0,84.0,145.0,4.0,85.0,40.0,27.0,1.0,0.0,146.0,106.0,73.0,6.0,1018.0,149.0,112.0,11.0,0.0,59.0,47.0,1314.0,231.0,31.0,83.0,21.0,49.0,596.0,13.0,726.0,31.0,0.0,89.0,43.0,139.0,49.0,83.0,807.0,425.0,42.6048217544,2016-11-27,,2016-47,43.15352669179629,42.60482175440001, +188,188,364.0,6.0,7.0,6.0,226.0,91.0,7.0,93.0,200.0,137.0,38.0,1075.0,2.0,12.0,41.0,3.0,37.0,5.0,241.0,43.0,17.0,77.0,146.0,204.0,80.0,471.0,18.0,3.0,38.0,20.0,2.0,131.0,586.0,164.0,1.0,32.0,29.0,34.0,169.0,239.0,6.0,366.0,238.0,188.0,14.0,94.0,5.0,42.0,1338.0,123.0,135.0,455.0,61.0,40.0,24.0,42.0,99.0,1176.0,245.0,214.0,3.0,111.0,0.0,224.0,3.0,135.0,77.0,102.0,385.0,0.0,13.0,96.0,7.0,237.0,38.0,123.0,349.0,126.0,3.0,13.0,465.0,129.0,687.0,35.0,13.0,131.0,28.0,188.0,801.0,302.0,0.0,391.0,73.0,71.0,180.0,43.0,73.0,1.0,32.0,806.0,5.0,349.0,22.0,49.0,146.0,1275.0,1410.0,157.0,77.0,25.0,90.0,176.0,52.0,571.0,135.0,6.0,941.0,54.0,33.0,2286.0,174.0,778.0,83.0,300.0,929.0,0.0,209.0,389.0,85.0,20.0,620.0,309.0,6.0,195.0,265.0,104.0,14.0,712.0,8.0,405.0,54.0,78.0,90.0,23.0,1027.0,657.0,296.0,2432.0,3.0,406.0,1970.0,696.0,191.0,109.0,648.0,5.0,62.0,0.0,130.0,29.0,19.0,103.0,2602.0,40.0,36.0,859.0,22.0,10.0,280.0,237.0,151.0,516.0,4.0,160.0,13.0,1.0,3.0,53.0,110.0,408.0,146.0,3175.0,892.0,33.0,189.0,8.0,222.0,0.0,249.0,47.0,830.0,120.0,195.0,390.0,55.0,80.0,16.0,71.0,46.0,59.0,898.0,424.0,146.0,93.0,41.0,44.0,15.0,202.0,267.0,37.0,18.0,37.0,28.0,35.0,50.0,308.0,822.0,107.0,97.0,211.0,874.0,8.0,0.0,148.0,36.0,887.0,4.0,28.0,157.0,18.0,61.0,7.0,15.0,3.0,154.0,24.0,121.0,154.0,7.0,679.0,294.0,46.0,383.0,40.0,155.0,84.0,9.0,12.0,244.0,13.0,14.0,22.0,0.0,590.0,65.0,128.0,6.0,74.0,46.0,22.0,0.0,0.0,173.0,95.0,96.0,7.0,1101.0,166.0,116.0,25.0,0.0,76.0,55.0,1102.0,211.0,22.0,98.0,31.0,56.0,602.0,11.0,558.0,30.0,0.0,61.0,30.0,107.0,64.0,117.0,835.0,428.0,30.0051185202,2016-12-04,,2016-48,29.56637228630916,30.0051185202, +189,189,251.0,7.0,5.0,7.0,234.0,61.0,21.0,126.0,202.0,120.0,20.0,927.0,0.0,4.0,49.0,2.0,62.0,12.0,246.0,47.0,9.0,78.0,145.0,186.0,55.0,463.0,22.0,3.0,43.0,38.0,13.0,153.0,954.0,116.0,3.0,33.0,69.0,44.0,145.0,274.0,6.0,452.0,137.0,193.0,15.0,73.0,3.0,34.0,1296.0,110.0,129.0,359.0,78.0,30.0,22.0,43.0,89.0,1201.0,292.0,175.0,5.0,95.0,1.0,142.0,2.0,120.0,88.0,99.0,380.0,0.0,13.0,96.0,20.0,192.0,32.0,99.0,332.0,106.0,1.0,19.0,490.0,59.0,686.0,15.0,6.0,138.0,10.0,215.0,821.0,269.0,0.0,363.0,60.0,98.0,188.0,37.0,41.0,4.0,33.0,737.0,6.0,360.0,19.0,45.0,89.0,1266.0,1507.0,119.0,71.0,17.0,78.0,182.0,61.0,692.0,106.0,6.0,847.0,42.0,34.0,2313.0,238.0,797.0,87.0,310.0,1054.0,0.0,153.0,395.0,70.0,17.0,571.0,312.0,6.0,171.0,218.0,110.0,21.0,708.0,3.0,327.0,57.0,56.0,96.0,35.0,1081.0,623.0,275.0,2461.0,3.0,387.0,2067.0,617.0,224.0,120.0,770.0,12.0,71.0,0.0,105.0,19.0,26.0,143.0,2559.0,38.0,42.0,659.0,19.0,11.0,382.0,215.0,139.0,413.0,6.0,168.0,15.0,1.0,5.0,41.0,122.0,457.0,108.0,3692.0,827.0,26.0,91.0,18.0,94.0,0.0,270.0,41.0,833.0,56.0,218.0,409.0,69.0,39.0,13.0,77.0,57.0,40.0,840.0,430.0,161.0,105.0,34.0,33.0,12.0,175.0,202.0,51.0,38.0,38.0,28.0,32.0,58.0,302.0,843.0,128.0,68.0,217.0,973.0,9.0,2.0,158.0,31.0,686.0,7.0,13.0,143.0,24.0,45.0,10.0,13.0,6.0,181.0,48.0,85.0,140.0,6.0,755.0,286.0,30.0,354.0,36.0,152.0,84.0,21.0,20.0,218.0,12.0,6.0,18.0,0.0,611.0,94.0,133.0,5.0,85.0,18.0,14.0,0.0,0.0,139.0,89.0,460.0,6.0,1083.0,167.0,109.0,19.0,0.0,52.0,48.0,1251.0,206.0,36.0,93.0,23.0,35.0,598.0,7.0,563.0,38.0,0.0,88.0,42.0,98.0,44.0,85.0,800.0,336.0,42.4418806084,2016-12-11,,2016-49,41.93088425498081,141.75288187377998, +190,190,246.0,6.0,4.0,0.0,212.0,81.0,7.0,126.0,182.0,174.0,28.0,1064.0,0.0,7.0,51.0,4.0,70.0,6.0,248.0,70.0,9.0,117.0,140.0,187.0,73.0,565.0,30.0,7.0,30.0,22.0,6.0,155.0,696.0,86.0,3.0,32.0,95.0,37.0,149.0,237.0,9.0,360.0,155.0,233.0,18.0,94.0,12.0,38.0,1270.0,111.0,142.0,418.0,79.0,37.0,29.0,52.0,102.0,1223.0,299.0,199.0,3.0,131.0,1.0,132.0,1.0,124.0,112.0,126.0,356.0,3.0,19.0,88.0,11.0,273.0,34.0,115.0,368.0,98.0,1.0,15.0,491.0,78.0,695.0,30.0,12.0,110.0,15.0,175.0,1008.0,267.0,0.0,383.0,79.0,86.0,187.0,49.0,57.0,7.0,43.0,813.0,15.0,390.0,32.0,49.0,104.0,1382.0,3186.0,161.0,80.0,13.0,98.0,143.0,77.0,750.0,116.0,2.0,900.0,57.0,41.0,2604.0,216.0,1081.0,336.0,285.0,981.0,0.0,169.0,437.0,102.0,18.0,577.0,318.0,6.0,251.0,256.0,114.0,21.0,677.0,11.0,395.0,51.0,75.0,123.0,33.0,1135.0,566.0,291.0,2544.0,0.0,410.0,2554.0,592.0,211.0,113.0,839.0,14.0,66.0,0.0,109.0,29.0,55.0,142.0,2891.0,49.0,38.0,647.0,17.0,11.0,370.0,207.0,136.0,522.0,20.0,196.0,18.0,4.0,2.0,45.0,123.0,497.0,128.0,3801.0,957.0,29.0,119.0,8.0,73.0,11.0,256.0,41.0,939.0,133.0,186.0,539.0,73.0,52.0,23.0,72.0,45.0,38.0,812.0,463.0,94.0,102.0,33.0,45.0,26.0,212.0,220.0,22.0,22.0,45.0,33.0,36.0,64.0,278.0,853.0,117.0,103.0,249.0,1357.0,14.0,2.0,208.0,35.0,618.0,1.0,19.0,140.0,20.0,31.0,9.0,14.0,8.0,207.0,55.0,105.0,120.0,7.0,743.0,270.0,45.0,372.0,68.0,144.0,94.0,10.0,23.0,254.0,8.0,19.0,22.0,0.0,668.0,87.0,139.0,4.0,96.0,32.0,19.0,0.0,0.0,154.0,106.0,145.0,7.0,1254.0,147.0,110.0,28.0,0.0,39.0,50.0,1324.0,192.0,31.0,96.0,28.0,42.0,565.0,13.0,649.0,20.0,0.0,86.0,36.0,102.0,86.0,106.0,880.0,310.0,42.1871274235,2016-12-18,,2016-50,42.80234755889478,48.710649976000006, +191,191,234.0,7.0,5.0,5.0,222.0,66.0,11.0,92.0,170.0,167.0,22.0,835.0,0.0,5.0,40.0,2.0,43.0,3.0,212.0,62.0,13.0,76.0,92.0,193.0,36.0,392.0,26.0,8.0,55.0,23.0,7.0,108.0,588.0,94.0,1.0,31.0,59.0,28.0,124.0,215.0,1.0,407.0,123.0,217.0,10.0,86.0,4.0,26.0,1021.0,97.0,136.0,392.0,52.0,29.0,23.0,34.0,104.0,1166.0,271.0,166.0,3.0,90.0,0.0,149.0,1.0,119.0,91.0,191.0,332.0,7.0,31.0,86.0,7.0,204.0,28.0,82.0,263.0,72.0,0.0,13.0,369.0,57.0,652.0,20.0,7.0,104.0,13.0,116.0,743.0,257.0,0.0,348.0,48.0,74.0,132.0,36.0,63.0,3.0,19.0,610.0,10.0,335.0,15.0,29.0,73.0,1456.0,1877.0,87.0,57.0,15.0,97.0,128.0,63.0,489.0,147.0,2.0,727.0,58.0,44.0,2211.0,207.0,783.0,109.0,276.0,738.0,0.0,133.0,369.0,81.0,21.0,485.0,272.0,11.0,164.0,239.0,884.0,15.0,505.0,2.0,386.0,35.0,58.0,50.0,24.0,1056.0,575.0,251.0,2019.0,0.0,384.0,2316.0,518.0,220.0,112.0,750.0,21.0,56.0,65.0,94.0,25.0,29.0,114.0,3202.0,34.0,42.0,718.0,35.0,8.0,322.0,208.0,130.0,510.0,9.0,114.0,20.0,3.0,2.0,37.0,151.0,460.0,95.0,3023.0,895.0,33.0,148.0,19.0,68.0,5.0,234.0,64.0,771.0,25.0,110.0,451.0,63.0,46.0,26.0,52.0,118.0,34.0,691.0,337.0,116.0,97.0,26.0,22.0,24.0,150.0,176.0,25.0,23.0,26.0,15.0,42.0,53.0,314.0,665.0,103.0,75.0,196.0,4438.0,14.0,0.0,181.0,29.0,617.0,11.0,15.0,112.0,16.0,28.0,4.0,7.0,5.0,155.0,30.0,86.0,118.0,5.0,794.0,237.0,38.0,304.0,62.0,158.0,100.0,5.0,27.0,183.0,19.0,9.0,25.0,1.0,529.0,83.0,134.0,8.0,88.0,16.0,12.0,0.0,0.0,140.0,80.0,65.0,6.0,1216.0,141.0,108.0,44.0,0.0,61.0,40.0,1291.0,134.0,34.0,99.0,29.0,36.0,580.0,3.0,491.0,26.0,0.0,73.0,41.0,70.0,38.0,73.0,968.0,206.0,37.4181478017,2016-12-25,,2016-51,37.2403095689333,37.4181478017, +192,192,201.0,2.0,3.0,4.0,154.0,74.0,6.0,77.0,138.0,120.0,21.0,596.0,2.0,6.0,87.0,1.0,49.0,5.0,142.0,91.0,28.0,58.0,71.0,133.0,45.0,267.0,13.0,5.0,30.0,14.0,6.0,83.0,431.0,95.0,0.0,14.0,90.0,39.0,94.0,127.0,1.0,325.0,103.0,172.0,12.0,67.0,6.0,48.0,849.0,93.0,102.0,373.0,43.0,31.0,24.0,35.0,74.0,1186.0,268.0,129.0,2.0,77.0,1.0,125.0,3.0,72.0,112.0,123.0,252.0,0.0,24.0,54.0,4.0,150.0,26.0,79.0,230.0,66.0,3.0,14.0,459.0,75.0,579.0,28.0,14.0,62.0,13.0,128.0,546.0,170.0,0.0,277.0,74.0,61.0,135.0,42.0,37.0,5.0,28.0,574.0,11.0,267.0,18.0,17.0,53.0,1186.0,1878.0,76.0,52.0,15.0,82.0,83.0,44.0,416.0,132.0,2.0,680.0,36.0,37.0,2271.0,239.0,788.0,142.0,246.0,700.0,0.0,108.0,278.0,58.0,24.0,446.0,224.0,9.0,161.0,158.0,228.0,16.0,447.0,7.0,237.0,29.0,51.0,70.0,24.0,1041.0,352.0,169.0,1652.0,0.0,301.0,2224.0,576.0,181.0,117.0,624.0,8.0,48.0,74.0,66.0,25.0,20.0,191.0,3190.0,28.0,37.0,510.0,17.0,5.0,283.0,141.0,129.0,335.0,13.0,101.0,14.0,4.0,0.0,34.0,116.0,482.0,76.0,2654.0,918.0,24.0,71.0,4.0,118.0,0.0,169.0,36.0,676.0,21.0,48.0,254.0,63.0,55.0,19.0,47.0,76.0,172.0,615.0,243.0,102.0,42.0,25.0,29.0,27.0,168.0,127.0,12.0,6.0,24.0,24.0,17.0,44.0,210.0,502.0,111.0,65.0,133.0,862.0,7.0,0.0,139.0,26.0,480.0,7.0,8.0,96.0,18.0,38.0,5.0,14.0,11.0,130.0,33.0,47.0,98.0,6.0,617.0,173.0,27.0,222.0,21.0,169.0,103.0,3.0,17.0,143.0,11.0,8.0,20.0,2.0,400.0,73.0,112.0,7.0,80.0,22.0,15.0,0.0,0.0,95.0,80.0,65.0,5.0,1117.0,115.0,68.0,20.0,0.0,52.0,50.0,1243.0,143.0,23.0,69.0,18.0,40.0,471.0,4.0,522.0,36.0,0.0,56.0,17.0,83.0,29.0,78.0,977.0,214.0,71.328344247,2017-01-01,,2016-52,71.94040576304353,107.63011275720001, +193,193,226.0,10.0,5.0,4.0,249.0,107.0,14.0,120.0,181.0,172.0,29.0,921.0,0.0,11.0,94.0,5.0,78.0,7.0,216.0,94.0,15.0,97.0,123.0,188.0,68.0,461.0,27.0,5.0,36.0,23.0,13.0,125.0,650.0,179.0,3.0,14.0,73.0,38.0,136.0,184.0,3.0,653.0,146.0,221.0,11.0,90.0,11.0,71.0,1175.0,141.0,123.0,440.0,48.0,34.0,34.0,57.0,116.0,1309.0,333.0,219.0,8.0,114.0,1.0,161.0,3.0,126.0,99.0,198.0,440.0,0.0,21.0,111.0,23.0,197.0,43.0,106.0,369.0,91.0,2.0,21.0,626.0,78.0,742.0,27.0,9.0,81.0,29.0,161.0,826.0,303.0,0.0,413.0,84.0,93.0,156.0,35.0,38.6,5.0,28.0,807.0,12.0,403.0,27.0,44.0,74.0,1315.0,2983.0,87.0,103.0,6.0,111.0,140.0,85.0,726.0,171.0,2.0,913.5,58.0,78.0,2811.0,291.0,1108.0,149.0,323.0,900.0,0.0,153.0,393.0,93.0,31.0,620.0,288.0,7.0,203.0,293.0,190.0,15.0,676.0,6.0,353.0,53.0,65.0,75.0,52.0,1298.0,646.0,317.0,2349.0,0.0,399.0,2987.0,924.0,224.0,145.0,789.0,8.0,73.0,190.0,122.0,27.0,25.0,159.0,3118.0,35.0,26.0,694.0,23.0,11.0,391.0,191.0,142.0,548.0,20.0,139.0,17.0,4.0,0.3333333333333333,55.0,112.0,599.0,149.0,3463.0,941.0,30.0,126.0,13.0,56.0,0.0,315.0,61.0,1030.0,17.0,115.0,408.0,100.0,48.0,13.0,65.0,62.0,86.0,808.0,382.0,114.0,87.0,41.0,37.0,23.0,231.0,221.0,26.0,20.0,33.0,24.0,48.0,66.0,267.0,460.0,147.0,115.0,178.0,707.0,17.0,0.0,228.0,35.0,614.0,20.0,12.0,135.0,18.0,40.0,7.0,14.0,16.0,218.0,54.0,113.0,166.0,5.0,736.0,276.0,57.0,357.0,47.0,182.0,85.0,15.0,18.0,221.0,14.0,14.0,28.0,0.0,699.0,79.0,197.0,10.0,103.0,21.0,27.0,0.0,0.0,141.0,101.0,95.0,10.0,1491.0,141.0,97.0,28.0,0.0,65.0,24.0,1540.0,200.0,29.0,123.0,28.0,39.0,653.0,8.0,719.0,22.0,0.0,88.0,35.0,142.0,50.0,80.0,823.0,175.0,102.5981471982,2017-01-08,,2017-1,102.79527174895065,81.03150627297998, +194,194,206.0,9.0,6.0,6.0,401.0,129.0,10.0,168.0,215.0,206.0,15.0,1154.0,2.0,6.0,92.0,2.0,84.0,4.0,288.0,97.0,13.0,116.0,128.0,183.0,96.0,665.0,23.0,9.0,40.0,35.0,8.0,163.0,879.0,128.0,4.0,24.0,120.0,33.0,138.0,275.0,5.0,466.0,133.0,219.0,10.0,94.0,9.0,62.0,1435.0,110.0,181.0,546.0,72.0,42.0,37.0,57.0,105.0,1124.0,333.0,231.0,6.0,139.0,0.0,168.0,4.0,173.0,90.0,388.0,440.0,0.0,19.0,129.0,6.0,293.0,54.0,137.0,404.0,101.0,0.0,25.0,528.0,82.0,798.0,38.0,7.0,103.0,40.0,149.0,832.0,284.0,0.0,499.0,86.0,69.0,200.0,55.0,40.2,3.0,45.0,816.0,11.0,474.0,32.0,60.0,109.0,1533.0,3225.0,157.0,94.0,12.0,106.0,186.0,66.0,776.0,156.0,7.0,1147.0,66.0,47.0,2536.0,242.0,1098.0,236.0,339.0,1330.0,0.0,194.0,461.0,129.0,27.0,709.0,298.0,13.0,322.0,296.0,151.0,16.0,733.0,9.0,470.0,75.0,73.0,95.0,34.0,1186.0,682.0,340.0,2562.0,9.0,506.0,2920.0,790.0,215.0,160.0,733.0,17.0,68.0,233.0,118.0,35.0,46.0,167.0,2984.0,48.0,84.0,875.0,46.0,7.0,390.0,255.0,138.0,451.0,16.0,318.0,18.0,3.0,0.6666666666666666,76.0,101.0,580.0,180.0,2976.0,1000.0,30.0,189.0,12.0,74.0,7.0,323.0,73.0,1122.0,30.0,174.0,515.0,91.0,57.0,24.0,70.0,54.0,60.0,939.0,463.0,107.0,96.0,83.0,34.0,19.0,248.0,299.0,42.0,39.0,38.0,30.0,68.0,63.0,217.0,529.0,138.0,131.0,241.0,478.0,13.0,0.0,256.0,35.0,792.0,14.0,13.0,138.0,20.0,54.0,12.0,21.0,14.0,221.0,125.0,136.0,157.0,7.0,861.0,296.0,53.0,427.0,48.0,221.0,134.0,9.0,20.0,263.0,14.0,15.0,45.0,0.0,728.0,95.0,181.0,6.0,122.0,32.0,34.0,1.0,0.0,207.0,100.0,84.0,7.0,1254.0,166.0,163.0,27.0,0.0,117.0,44.0,1396.0,210.0,15.0,150.0,18.0,45.0,648.0,6.0,770.0,28.0,0.0,134.0,45.0,105.0,46.0,80.0,1281.0,175.0,200.8474109943,2017-01-15,,2017-2,200.82960776811933,288.81336630008, +195,195,253.0,15.0,3.0,2.0,310.0,127.0,17.0,145.0,206.0,186.0,21.0,1091.0,1.0,10.0,102.0,3.0,73.0,5.0,307.0,100.0,14.0,111.0,147.0,210.0,119.0,611.0,29.0,6.0,58.0,23.0,9.0,117.0,1209.0,102.0,3.0,18.0,92.0,36.0,127.0,228.0,2.0,504.0,177.0,241.0,26.0,99.0,15.0,44.0,1315.0,115.0,207.0,463.0,88.0,61.0,28.0,59.0,126.0,1248.0,280.0,262.0,3.0,119.0,1.0,123.0,4.0,148.0,87.0,247.0,473.0,1.0,21.0,110.0,15.0,276.0,34.0,154.0,464.0,117.0,1.0,23.0,563.0,87.0,730.0,50.0,11.0,117.0,30.0,155.0,864.0,263.0,0.0,410.0,64.0,103.0,212.0,41.0,41.8,4.0,45.0,785.0,12.0,617.0,38.0,33.0,127.0,1533.0,3244.0,127.0,115.0,3.0,107.0,177.0,93.0,699.0,144.0,6.0,1127.0,68.0,42.0,2250.0,242.0,1180.0,145.0,320.0,1026.0,1.0,189.0,592.0,103.0,40.0,735.0,357.0,13.0,290.0,245.0,198.0,15.0,701.0,7.0,440.0,89.0,67.0,88.0,34.0,1112.0,717.0,300.0,2386.0,2.0,497.0,3130.0,766.0,228.0,139.0,853.0,13.0,76.0,253.0,114.0,66.0,34.0,171.0,2771.0,38.0,47.0,740.0,37.0,17.0,369.0,277.0,147.0,445.0,13.0,274.0,19.0,3.0,1.0,63.0,121.0,567.0,151.0,8932.0,957.0,28.0,122.0,9.0,55.0,6.0,314.0,58.0,1049.0,35.0,236.0,568.0,80.0,70.0,31.0,89.0,237.0,63.0,935.0,493.0,107.0,104.0,59.0,36.0,26.0,264.0,271.0,53.0,28.0,29.0,29.0,55.0,87.0,395.0,603.0,143.0,121.0,273.0,393.0,13.0,1.0,237.0,21.0,786.0,23.0,20.0,129.0,23.0,60.0,5.0,7.0,11.0,235.0,84.0,121.0,188.0,8.0,745.0,301.0,66.0,436.0,36.0,220.0,102.0,8.0,20.0,382.0,7.0,13.0,33.0,3.0,741.0,103.0,144.0,9.0,85.0,45.0,36.0,0.0,0.0,238.0,98.0,87.0,8.0,1137.0,149.0,131.0,47.0,0.0,123.0,31.0,1473.0,223.0,32.0,110.0,27.0,42.0,668.0,13.0,684.0,36.0,45.0,121.0,37.0,108.0,53.0,86.0,1104.0,125.0,308.6032808386,2017-01-22,,2017-3,308.8362953544856,442.75530742707997, +196,196,262.0,12.0,4.0,5.0,328.0,139.0,10.0,118.0,208.0,172.0,24.0,943.0,3.0,11.0,91.0,3.0,69.0,8.0,321.0,79.0,15.0,83.0,130.0,190.0,92.0,615.0,18.0,12.0,62.0,28.0,9.0,155.0,926.0,74.0,4.0,24.0,77.0,71.0,174.0,550.0,14.0,544.0,142.0,210.0,8.0,89.0,6.0,39.0,1236.0,130.0,193.0,444.0,94.0,29.0,41.0,54.0,106.0,1133.0,302.0,196.0,6.0,92.0,2.0,124.0,4.0,119.0,84.0,260.0,535.0,2.0,31.0,98.0,18.0,258.0,46.0,111.0,498.0,112.0,7.0,21.0,695.0,76.0,729.0,24.0,18.0,253.0,41.0,149.0,767.0,281.0,0.0,360.0,56.0,74.0,206.0,36.0,43.4,9.0,55.0,1003.0,33.0,1196.0,28.0,40.0,149.0,1338.0,2995.0,138.0,99.0,8.0,1285.0,145.0,84.0,619.0,143.0,7.0,1140.0,96.0,53.0,2363.0,233.0,940.0,190.0,342.0,892.0,1.0,172.0,614.0,130.0,29.0,625.0,352.0,14.0,250.0,258.0,145.0,16.0,641.0,8.0,384.0,46.0,74.0,95.0,39.0,1214.0,769.0,253.0,2337.0,1.0,524.0,3470.0,804.0,265.0,138.0,933.0,9.0,75.0,377.0,86.0,992.0,42.0,155.0,2598.0,48.0,47.0,708.0,48.0,8.0,457.0,265.0,143.0,461.0,14.0,239.0,16.0,3.0,6.0,45.0,90.0,566.0,159.0,3411.0,964.0,41.0,136.0,12.0,42.0,2.0,329.0,67.0,942.0,34.0,235.0,513.0,108.0,35.0,8.0,57.0,47.0,62.0,873.0,504.0,115.0,78.0,34.0,45.0,15.0,265.0,276.0,59.0,30.0,28.0,38.0,43.0,62.0,232.0,659.0,142.0,117.0,254.0,362.0,22.0,2.0,242.0,27.0,811.0,11.0,31.0,142.0,17.0,48.0,14.0,22.0,12.0,207.0,59.0,93.0,151.0,10.0,1128.0,257.0,70.0,419.0,32.0,199.0,70.0,8.0,28.0,253.0,17.0,16.0,42.0,4.0,677.0,104.0,146.0,10.0,106.0,33.0,25.0,3.0,37.0,226.0,104.0,76.0,13.0,1117.0,150.0,120.0,56.0,0.0,88.0,51.0,1557.0,189.0,29.0,137.0,39.0,83.0,623.0,5.0,649.0,82.0,4.0,127.0,53.0,120.0,52.0,81.0,867.0,111.0,563.6108512629,2017-01-29,,2017-4,563.6073650284143,492.7766810103201, +197,197,305.0,5.0,4.0,6.0,406.0,111.0,13.0,150.0,157.0,175.0,31.0,1056.0,1.0,11.0,53.0,6.0,57.0,3.0,358.0,56.0,10.0,53.0,83.0,206.0,72.0,530.0,28.0,15.0,44.0,16.0,9.0,142.0,665.0,70.0,0.0,27.0,112.0,34.0,133.0,272.0,6.0,400.0,214.0,260.0,13.0,78.0,7.0,39.0,1337.0,120.0,174.0,489.0,98.0,31.0,47.0,52.0,107.0,1243.0,324.0,164.0,2.0,127.0,1.0,153.0,2.0,141.0,87.0,196.0,531.0,3.0,18.0,108.0,24.0,261.0,31.0,121.0,353.0,88.0,1.0,18.0,534.0,99.0,732.0,35.0,14.0,260.0,30.0,102.0,815.0,337.0,0.0,467.0,83.0,67.0,188.0,38.0,45.0,3.0,41.0,918.0,12.0,513.0,18.0,32.0,135.0,1417.0,3244.0,89.0,92.0,17.0,192.0,140.0,81.0,671.0,145.0,5.0,1359.0,58.0,46.0,2570.0,201.0,1121.0,160.0,361.0,1064.0,1.0,173.0,491.0,125.0,37.0,673.0,329.0,7.0,287.0,320.0,146.0,20.0,684.0,7.0,439.0,61.0,85.0,93.0,27.0,1327.0,521.0,282.0,2539.0,1.0,481.0,3635.0,725.0,237.0,131.0,900.0,18.0,91.0,371.0,125.0,365.0,41.0,154.0,2827.0,44.0,53.0,846.0,70.0,13.0,412.0,254.0,126.0,560.0,5.0,203.0,17.0,0.0,9.0,61.0,106.0,566.0,133.0,4636.0,986.0,33.0,123.0,15.0,61.0,1.0,225.0,54.0,908.0,20.0,181.0,510.0,59.0,45.0,9.0,56.0,48.0,48.0,904.0,453.0,131.0,123.0,24.0,47.0,15.0,257.0,250.0,46.0,17.0,48.0,30.0,41.0,64.0,296.0,597.0,126.0,110.0,286.0,364.0,17.0,2.0,201.0,38.0,898.0,7.0,20.0,136.0,20.0,34.0,4.0,15.0,6.0,184.0,48.0,96.0,204.0,9.0,773.0,318.0,58.0,394.0,55.0,174.0,75.0,8.0,23.0,268.0,11.0,14.0,21.0,1.0,751.0,80.0,176.0,5.0,100.0,27.0,19.0,3.0,31.0,229.0,76.0,87.0,4.0,1235.0,190.0,110.0,98.0,0.0,41.0,29.0,1493.0,209.0,27.0,97.0,24.0,43.0,700.0,9.0,707.0,40.0,11.0,80.0,35.0,145.0,58.0,81.0,837.0,132.0,663.8996612386003,2017-02-05,,2017-5,663.8516916799299,555.7203490925802, +198,198,316.0,4.0,3.0,4.0,371.0,123.0,12.0,98.0,238.0,148.0,19.0,1023.0,0.0,12.0,44.0,6.0,50.0,7.0,325.0,37.0,28.0,67.0,117.0,225.0,59.0,455.0,29.0,4.0,54.0,35.0,13.0,153.0,694.0,63.0,4.0,24.0,98.0,27.0,151.0,324.0,7.0,507.0,151.0,272.0,20.0,87.0,9.0,23.0,1500.0,126.0,153.0,417.0,98.0,26.0,19.0,58.0,96.0,1255.0,406.0,153.0,1.0,161.0,0.0,108.0,7.0,260.0,108.0,229.0,391.0,2.0,19.0,101.0,7.0,282.0,21.0,157.0,356.0,128.0,1.0,22.0,571.0,106.0,774.0,30.0,25.0,291.0,19.0,128.0,880.0,380.0,0.0,379.0,48.0,125.0,169.0,29.0,51.0,2.0,48.0,1012.0,12.0,515.0,15.0,28.0,83.0,1390.0,2955.0,122.0,90.0,6.0,132.0,162.0,79.0,714.0,143.0,1.0,1165.0,64.0,53.0,2392.0,218.0,959.0,114.0,387.0,964.0,0.0,160.0,463.0,104.0,25.0,671.0,371.0,7.0,247.0,287.0,147.0,19.0,895.0,12.0,519.0,62.0,69.0,197.0,22.0,1231.0,583.0,333.0,2601.0,2.0,470.0,3125.0,645.0,243.0,137.0,865.0,11.0,59.0,376.0,133.0,672.0,21.0,129.0,2582.0,37.0,40.0,999.0,54.0,11.0,428.0,274.0,133.0,598.0,4.0,211.0,30.0,3.0,1.0,47.0,101.0,526.0,123.0,2769.0,906.0,31.0,119.0,4.0,65.0,0.0,183.0,32.0,909.0,49.0,146.0,627.0,49.0,27.0,19.0,64.0,44.0,63.0,944.0,449.0,105.0,91.0,43.0,26.0,22.0,180.0,174.0,45.0,28.0,37.0,55.0,38.0,63.0,247.0,635.0,114.0,75.0,248.0,367.0,4.0,0.0,125.0,59.0,888.0,20.0,14.0,166.0,15.0,31.0,5.0,13.0,8.0,209.0,54.0,100.0,181.0,7.0,739.0,341.0,46.0,391.0,27.0,212.0,82.0,8.0,18.0,253.0,11.0,8.0,24.0,0.0,682.0,78.0,147.0,12.0,108.0,14.0,12.0,0.0,31.0,210.0,96.0,71.0,6.0,1075.0,163.0,104.0,77.0,0.0,34.0,42.0,1646.0,188.0,21.0,107.0,83.0,72.0,659.0,12.0,657.0,33.0,13.0,112.0,41.0,116.0,50.0,61.0,621.0,106.0,577.4627617471,2017-02-12,,2017-6,577.918472529957,568.55447293346, +199,199,295.0,11.0,11.0,3.0,298.0,118.0,9.0,124.0,275.0,159.0,36.0,1060.0,4.0,14.0,40.0,4.0,53.0,6.0,292.0,34.0,18.0,87.0,125.0,183.0,58.0,439.0,19.0,3.0,56.0,55.0,18.0,158.0,683.0,71.0,0.0,23.0,64.0,17.0,146.0,289.0,4.0,771.0,196.0,219.0,23.0,102.0,16.0,29.0,1392.0,109.0,172.0,425.0,106.0,37.0,26.0,73.0,82.0,1291.0,363.0,214.0,4.0,144.0,1.0,150.0,1.0,150.0,86.0,217.0,399.0,1.0,23.0,89.0,20.0,323.0,32.0,122.0,402.0,138.0,1.0,22.0,550.0,80.0,837.0,28.0,7.0,181.0,20.0,132.0,928.0,295.0,0.0,367.0,71.0,101.0,169.0,48.0,69.0,2.0,37.0,875.0,13.0,545.0,7.0,38.0,81.0,1404.0,2616.0,61.0,87.0,6.0,93.0,175.0,79.0,537.0,102.0,4.0,1258.0,64.0,104.0,2466.0,198.0,925.0,107.0,402.0,1095.0,1.0,174.0,500.0,100.0,26.0,644.0,400.0,9.0,342.0,316.0,129.0,20.0,741.0,7.0,479.0,60.0,43.0,96.0,36.0,1433.0,542.0,265.0,2591.0,1.0,504.0,2909.0,762.0,213.0,170.0,888.0,6.0,70.0,363.0,132.0,130.0,39.0,143.0,2528.0,33.0,48.0,909.0,35.0,14.0,433.0,207.0,117.0,530.0,16.0,141.0,26.0,3.0,1.0,53.0,96.0,740.0,140.0,2591.0,919.0,27.0,96.0,13.0,44.0,0.0,205.0,39.0,878.0,33.0,172.0,437.0,80.0,61.0,25.0,69.0,81.0,89.0,929.0,377.0,127.0,86.0,22.0,35.0,17.0,199.0,243.0,23.0,35.0,45.0,25.0,43.0,47.0,183.0,497.0,139.0,104.0,235.0,335.0,10.0,1.0,161.0,30.0,842.0,30.0,27.0,155.0,23.0,32.0,18.0,11.0,8.0,196.0,59.0,97.0,155.0,8.0,664.0,314.0,54.0,339.0,32.0,169.0,87.0,4.0,26.0,223.0,7.0,13.0,45.0,2.0,674.0,76.0,143.0,11.0,74.0,20.0,21.0,0.0,25.0,200.0,90.0,82.0,13.0,1111.0,191.0,86.0,30.0,0.0,27.0,46.0,1600.0,197.0,21.0,102.0,18.0,46.0,592.0,8.0,725.0,19.0,5.0,110.0,41.0,106.0,56.0,40.0,494.0,122.0,331.1506080449,2017-02-19,,2017-7,331.3598181900411,314.02064680338003, +200,200,333.0,7.0,3.0,4.0,300.0,142.0,8.0,153.0,233.0,169.0,43.0,968.0,2.0,4.0,43.0,1.0,49.0,9.0,269.0,35.0,10.0,66.0,104.0,130.0,41.0,455.0,22.0,2.0,67.0,19.0,22.0,145.0,820.0,75.0,0.0,29.0,72.0,16.0,186.0,244.0,8.0,562.0,161.0,241.0,16.0,99.0,15.0,33.0,1381.0,83.0,119.0,443.0,83.0,24.0,38.0,47.0,126.0,1064.0,379.0,164.0,4.0,122.0,2.0,148.0,2.0,122.0,114.0,175.0,388.0,7.0,33.0,66.0,8.0,281.0,51.0,118.0,333.0,115.0,0.0,17.0,532.0,105.0,851.0,29.0,7.0,153.0,21.0,134.0,833.0,261.0,0.0,339.0,100.0,72.0,178.0,25.0,41.0,4.0,40.0,844.0,8.0,466.0,10.0,16.0,71.0,1392.0,2054.0,75.0,91.0,4.0,142.0,193.0,80.0,653.0,104.0,5.0,1002.0,61.0,33.0,2869.0,216.0,1311.0,88.0,345.0,1046.0,0.0,181.0,535.0,104.0,21.0,629.0,354.0,8.0,199.0,340.0,117.0,31.0,707.0,7.0,430.0,52.0,56.0,87.0,29.0,1387.0,454.0,292.0,2603.0,2.0,487.0,2349.0,618.0,213.0,123.0,701.0,15.0,61.0,299.0,111.0,79.0,18.0,129.0,2314.0,34.0,52.0,766.0,32.0,13.0,313.0,202.0,176.0,697.0,3.0,122.0,14.0,0.0,3.0,42.0,112.0,479.0,117.0,1930.0,867.0,32.0,93.0,11.0,51.0,0.0,155.0,27.0,840.0,68.0,151.0,472.0,111.0,49.0,20.0,54.0,42.0,50.0,861.0,394.0,114.0,79.0,28.0,30.0,23.0,166.0,209.0,40.0,19.0,43.0,29.0,24.0,53.0,254.0,530.0,115.0,88.0,210.0,252.0,8.0,0.0,162.0,30.0,789.0,27.0,17.0,149.0,25.0,17.0,9.0,20.0,9.0,236.0,47.0,73.0,235.0,7.0,646.0,327.0,38.0,323.0,42.0,224.0,80.0,6.0,17.0,197.0,7.0,15.0,20.0,0.0,810.0,61.0,134.0,4.0,83.0,14.0,8.0,0.0,11.0,150.0,88.0,68.0,6.0,925.0,162.0,110.0,25.0,0.0,43.0,48.0,1542.0,214.0,24.0,91.0,22.0,48.0,719.0,11.0,643.0,35.0,7.0,90.0,42.0,127.0,54.0,53.0,472.0,117.0,225.44434050509997,2017-02-26,,2017-8,223.80988392338804,229.45563277153997, +201,201,292.0,6.0,4.0,4.0,258.0,131.0,9.0,168.0,254.0,194.0,35.0,806.0,3.0,8.0,45.0,4.0,49.0,8.0,271.0,37.0,19.0,57.0,85.0,185.0,50.0,360.0,31.0,2.0,57.0,28.0,5.0,164.0,1069.0,65.0,1.0,17.0,58.0,24.0,183.0,199.0,4.0,521.0,128.0,231.0,15.0,95.0,11.0,24.0,1324.0,96.0,138.0,476.0,75.0,22.0,26.0,44.0,93.0,997.0,331.0,248.0,4.0,151.0,0.0,145.0,3.0,122.0,84.0,202.0,396.0,4.0,9.0,49.0,8.0,212.0,20.0,90.0,382.0,90.0,0.0,29.0,521.0,69.0,852.0,21.0,7.0,149.0,12.0,185.0,835.0,320.0,0.0,375.0,77.0,100.0,220.0,37.0,44.0,1.0,38.0,946.0,7.0,477.0,9.0,26.0,89.0,1359.0,1458.0,50.0,85.0,5.0,134.0,153.0,86.0,590.0,110.0,7.0,997.0,45.0,38.0,2332.0,170.0,1157.0,80.0,328.0,1035.0,0.0,186.0,498.0,109.0,18.0,660.0,326.0,13.0,218.0,258.0,175.0,18.0,575.0,12.0,300.0,62.0,55.0,68.0,25.0,1499.0,506.0,253.0,2655.0,2.0,499.0,2031.0,704.0,217.0,142.0,624.0,9.0,66.0,352.0,122.0,57.0,21.0,131.0,2232.0,41.0,55.0,1058.0,30.0,15.0,303.0,208.0,187.0,494.0,10.0,104.0,25.0,1.0,0.0,43.0,90.0,385.0,104.0,1534.0,933.0,31.0,104.0,3.0,96.0,1.0,221.0,29.0,923.0,36.0,107.0,387.0,52.0,34.0,16.0,53.0,39.0,61.0,837.0,365.0,110.0,84.0,39.0,42.0,20.0,189.0,272.0,36.0,21.0,40.0,34.0,41.0,54.0,191.0,500.0,131.0,66.0,224.0,214.0,6.0,0.0,178.0,39.0,659.0,15.0,12.0,121.0,19.0,18.0,6.0,12.0,4.0,204.0,80.0,77.0,161.0,12.0,568.0,309.0,44.0,336.0,45.0,200.0,74.0,9.0,39.0,170.0,10.0,11.0,26.0,0.0,749.0,61.0,138.0,5.0,85.0,26.0,15.0,0.0,9.0,217.0,99.0,53.0,8.0,786.0,171.0,96.0,30.0,0.0,44.0,43.0,1681.0,184.0,27.0,53.0,46.0,51.0,633.0,3.0,681.0,39.0,6.0,138.0,36.0,136.0,48.0,114.0,572.0,132.0,106.7637369342,2017-03-05,,2017-9,105.46458496534751,68.81523335126, +202,202,244.0,9.0,4.0,4.0,232.0,95.0,8.0,112.0,192.0,156.0,34.0,857.0,3.0,8.0,33.0,2.0,35.0,7.0,239.0,38.0,11.0,79.0,94.0,132.0,48.0,311.0,18.0,5.0,60.0,18.0,6.0,125.0,932.0,59.0,5.0,13.0,35.0,19.0,157.0,226.0,3.0,310.0,180.0,208.0,14.0,86.0,8.0,17.0,1120.0,86.0,108.0,465.0,79.0,19.0,31.0,30.0,80.0,812.0,325.0,183.0,4.0,94.0,3.0,88.0,3.0,140.0,107.0,142.0,437.0,1.0,24.0,82.0,5.0,230.0,24.0,119.0,345.0,87.0,1.0,20.0,388.0,65.0,638.0,23.0,11.0,115.0,14.0,145.0,777.0,226.0,0.0,301.0,54.0,41.0,204.0,31.0,51.0,2.0,47.0,965.0,36.0,1450.0,28.0,30.0,76.0,1210.0,1020.0,46.0,67.0,8.0,115.0,175.0,68.0,567.0,93.0,5.0,949.0,50.0,24.0,1836.0,161.0,825.0,49.0,287.0,858.0,1.0,181.0,484.0,102.0,17.0,612.0,258.0,15.0,259.0,241.0,133.0,18.0,611.0,9.0,392.0,40.0,55.0,71.0,24.0,1147.0,496.0,239.0,2377.0,1.0,483.0,1717.0,648.0,196.0,123.0,575.0,16.0,45.0,347.0,106.0,49.0,17.0,153.0,1783.0,25.0,39.0,769.0,18.0,12.0,234.0,208.0,136.0,542.0,9.0,116.0,37.0,0.0,2.0,50.0,66.0,379.0,99.0,1727.0,871.0,30.0,104.0,6.0,45.0,1.0,195.0,25.0,861.0,23.0,155.0,363.0,47.0,37.0,11.0,41.0,60.0,51.0,1061.0,373.0,109.0,93.0,43.0,39.0,8.0,145.0,199.0,29.0,17.0,35.0,30.0,46.0,57.0,156.0,393.0,113.0,67.0,159.0,158.0,4.0,1.0,135.0,22.0,688.0,12.0,29.0,142.0,6.0,41.0,7.0,11.0,10.0,205.0,67.0,66.0,114.0,13.0,518.0,281.0,42.0,349.0,45.0,139.0,72.0,8.0,20.0,212.0,8.0,11.0,62.0,5.0,615.0,55.0,120.0,9.0,68.0,22.0,12.0,1.0,10.0,184.0,102.0,47.0,3.0,680.0,139.0,110.0,23.0,48.0,17.0,29.0,1631.0,225.0,40.0,50.0,22.0,51.0,542.0,7.0,549.0,23.0,5.0,119.0,30.0,94.0,44.0,50.0,385.0,101.0,68.03299600310001,2017-03-12,,2017-10,68.73178751011983,56.146771414060005, +203,203,264.0,5.0,10.0,4.0,299.0,119.0,11.0,111.0,260.0,169.0,28.0,962.0,2.0,29.0,53.0,1.0,41.0,3.0,306.0,56.0,17.0,67.0,125.0,219.0,48.0,357.0,24.0,5.0,57.0,15.0,7.0,162.0,706.0,60.0,3.0,15.0,49.0,21.0,148.0,238.0,6.0,532.0,196.0,244.0,9.0,115.0,6.0,51.0,1408.0,324.0,162.0,450.0,77.0,23.0,26.0,44.0,92.0,792.0,341.0,176.0,3.0,110.0,0.0,106.0,1.0,125.0,101.0,143.0,398.0,0.0,11.0,73.0,8.0,257.0,20.0,132.0,403.0,115.0,1.0,17.0,521.0,78.0,626.0,22.0,8.0,146.0,18.0,143.0,779.0,364.0,0.0,387.0,60.0,59.0,200.0,37.0,41.0,2.0,47.0,1026.0,14.0,990.0,8.0,33.0,114.0,1408.0,885.0,36.0,92.0,6.0,102.0,174.0,77.0,692.0,114.0,7.0,965.0,40.0,44.0,2477.0,172.0,1125.0,39.0,260.0,935.0,0.0,147.0,453.0,95.0,20.0,642.0,349.0,15.0,242.0,231.0,122.0,17.0,594.0,5.0,377.0,47.0,49.0,80.0,31.0,1353.0,503.0,279.0,2633.0,2.0,464.0,1797.0,771.0,159.0,121.0,602.0,18.0,79.0,361.0,162.0,41.0,32.0,121.0,1818.0,33.0,46.0,883.0,22.0,28.0,223.0,217.0,148.0,712.0,7.0,136.0,36.0,2.0,3.0,48.0,78.0,372.0,106.0,1299.0,959.0,27.0,111.0,6.0,72.0,1.0,238.0,46.0,894.0,17.0,209.0,526.0,60.0,50.0,12.0,74.0,48.0,56.0,1096.0,704.0,117.0,109.0,50.0,32.0,20.0,186.0,184.0,26.0,30.0,43.0,27.0,40.0,45.0,197.0,471.0,121.0,70.0,201.0,177.0,5.0,0.0,146.0,20.0,745.0,31.0,17.0,169.0,13.0,40.0,6.0,14.0,7.0,195.0,59.0,88.0,137.0,10.0,453.0,286.0,36.0,379.0,64.0,162.0,65.0,8.0,18.0,182.0,9.0,10.0,76.0,0.0,691.0,59.0,164.0,15.0,69.0,17.0,12.0,0.0,4.0,162.0,125.0,66.0,10.0,802.0,173.0,86.0,30.0,46.0,28.0,20.0,1761.0,230.0,24.0,70.0,28.0,56.0,574.0,6.0,633.0,35.0,6.0,126.0,43.0,71.0,40.0,39.0,429.0,95.0,27.2840661054,2017-03-19,,2017-11,27.16135858389316,104.22865187408001, +204,204,262.0,5.0,9.0,5.0,286.0,137.0,13.0,112.0,219.0,134.0,28.0,1071.0,2.0,10.0,65.0,3.0,24.0,7.0,301.0,57.0,16.0,111.0,100.0,261.0,58.0,428.0,39.0,6.0,98.0,20.0,6.0,126.0,547.0,70.0,1.0,27.0,38.0,30.0,184.0,274.0,5.0,13011.0,226.0,235.0,14.0,111.0,5.0,38.0,1366.0,91.0,159.0,491.0,74.0,34.0,22.0,54.0,97.0,767.0,359.0,203.0,2.0,143.0,1.0,138.0,0.0,131.0,111.0,113.0,445.0,4.0,23.0,112.0,7.0,310.0,24.0,109.0,338.0,115.0,1.0,20.0,515.0,102.0,685.0,25.0,9.0,122.0,40.0,200.0,870.0,293.0,0.0,363.0,69.0,72.0,175.0,48.0,59.0,4.0,56.0,1021.0,15.0,549.0,27.0,34.0,94.0,1530.0,850.0,63.0,75.0,5.0,89.0,163.0,68.0,625.0,130.0,7.0,1070.0,77.0,45.0,2623.0,162.0,887.0,45.0,290.0,838.0,2.0,174.0,545.0,82.0,24.0,596.0,394.0,15.0,277.0,232.0,172.0,16.0,584.0,14.0,410.0,40.0,72.0,100.0,22.0,1219.0,483.0,289.0,2724.0,0.0,567.0,1705.0,773.0,170.0,161.0,651.0,9.0,87.0,295.0,136.0,27.0,25.0,321.0,1873.0,50.0,44.0,821.0,23.0,15.0,237.0,210.0,134.0,820.0,18.0,123.0,33.0,3.0,7.0,56.0,64.0,324.0,121.0,1177.0,892.0,27.0,141.0,13.0,55.0,1.0,210.0,42.0,879.0,34.0,203.0,422.0,57.0,48.0,14.0,58.0,154.0,66.0,1069.0,482.0,160.0,102.0,68.0,38.0,30.0,149.0,183.0,38.0,28.0,47.0,32.0,42.0,41.0,154.0,531.0,145.0,94.0,168.0,151.0,7.0,1.0,172.0,30.0,745.0,57.0,13.0,125.0,16.0,26.0,7.0,10.0,11.0,373.0,64.0,95.0,163.0,5.0,645.0,353.0,43.0,354.0,57.0,157.0,70.0,13.0,18.0,187.0,8.0,15.0,34.0,1.0,728.0,59.0,129.0,9.0,72.0,23.0,10.0,1.0,6.0,185.0,108.0,62.0,3.0,796.0,186.0,119.0,24.0,19.0,50.0,28.0,1953.0,264.0,26.0,53.0,26.0,62.0,583.0,8.0,664.0,32.0,4.0,113.0,46.0,103.0,50.0,50.0,458.0,133.0,8.590901281,2017-03-26,,2017-12,9.154451257632445,8.595289991760001, +205,205,257.0,4.0,6.0,6.0,251.0,89.0,8.0,104.0,266.0,152.0,22.0,2047.0,1.0,10.0,48.0,2.0,39.0,3.0,268.0,42.0,13.0,62.0,101.0,224.0,45.0,368.0,29.0,2.0,59.0,17.0,4.0,147.0,612.0,53.0,0.0,18.0,49.0,30.0,181.0,249.0,1.0,1663.0,174.0,239.0,21.0,108.0,4.0,23.0,1298.0,107.0,146.0,517.0,90.0,18.0,27.0,43.0,96.0,695.0,312.0,187.0,0.0,112.0,2.0,130.0,3.0,132.0,124.0,90.0,396.0,3.0,17.0,102.0,12.0,279.0,23.0,132.0,377.0,81.0,0.0,23.0,436.0,76.0,608.0,28.0,20.0,110.0,27.0,154.0,867.0,323.0,0.0,364.0,54.0,56.0,213.0,39.0,50.0,1.0,71.0,970.0,12.0,478.0,22.0,24.0,68.0,1417.0,752.0,30.0,68.0,5.0,118.0,178.0,63.0,630.0,89.0,3.0,1115.0,73.0,60.0,2183.0,156.0,932.0,62.0,295.0,887.0,0.0,140.0,497.0,119.0,18.0,594.0,338.0,9.0,283.0,276.0,183.0,17.0,587.0,9.0,360.0,48.0,123.0,72.0,29.0,1193.0,476.0,281.0,2513.0,2.0,587.0,1550.0,821.0,158.0,144.0,564.0,14.0,52.0,339.0,101.0,34.0,46.0,125.0,1634.0,45.0,56.0,1606.0,55.0,23.0,256.0,218.0,122.0,696.0,7.0,150.0,34.0,1.0,2.0,40.0,93.0,388.0,122.0,909.0,866.0,35.0,114.0,14.0,58.0,0.0,221.0,29.0,961.0,39.0,183.0,381.0,45.0,33.0,6.0,46.0,82.0,61.0,1145.0,423.0,92.0,91.0,55.0,26.0,21.0,149.0,178.0,53.0,18.0,38.0,36.0,32.0,45.0,153.0,501.0,122.0,67.0,162.0,148.0,13.0,0.0,181.0,19.0,766.0,26.0,16.0,138.0,21.0,97.0,4.0,11.0,12.0,177.0,64.0,76.0,165.0,14.0,459.0,300.0,39.0,409.0,107.0,126.0,80.0,9.0,22.0,186.0,11.0,15.0,35.0,0.0,696.0,64.0,114.0,12.0,91.0,18.0,8.0,1.0,16.0,130.0,85.0,43.0,3.0,725.0,142.0,127.0,30.0,23.0,35.0,31.0,1908.0,285.0,22.0,63.0,46.0,74.0,449.0,10.0,621.0,26.0,4.0,98.0,37.0,82.0,45.0,34.0,341.0,79.0,11.3388326672,2017-04-02,,2017-13,10.377776340294986,205.09232148338003, +206,206,255.0,7.0,10.0,1.0,269.0,92.0,7.0,104.0,234.0,169.0,22.0,891.0,0.0,11.0,48.0,4.0,49.0,2.0,284.0,41.0,15.0,74.0,116.0,216.0,42.0,419.0,26.0,4.0,55.0,16.0,22.0,135.0,595.0,78.0,11.0,8.0,25.0,34.0,119.0,210.0,3.0,931.0,135.0,218.0,9.0,146.0,6.0,32.0,1187.0,97.0,157.0,449.0,99.0,21.0,37.0,44.0,82.0,574.0,261.0,226.0,6.0,85.0,1.0,120.0,1.0,122.0,131.0,84.0,423.0,4.0,29.0,88.0,4.0,266.0,25.0,135.0,369.0,94.0,3.0,19.0,410.0,74.0,593.0,45.0,12.0,69.0,29.0,176.0,786.0,259.0,0.0,426.0,55.0,64.0,181.0,26.0,50.0,3.0,71.0,925.0,12.0,434.0,23.0,33.0,83.0,1259.0,612.0,29.0,80.0,4.0,68.0,147.0,63.0,604.0,120.0,8.0,1011.0,47.0,58.0,2525.0,148.0,1116.0,22.0,240.0,1131.0,1.0,125.0,389.0,89.0,22.0,565.0,329.0,15.0,253.0,233.0,173.0,18.0,535.0,9.0,389.0,55.0,58.0,99.0,31.0,1109.0,721.0,241.0,2447.0,3.0,484.0,1473.0,635.0,187.0,94.0,608.0,9.0,54.0,363.0,115.0,50.0,17.0,119.0,1478.0,35.0,42.0,932.0,38.0,10.0,202.0,206.0,129.0,628.0,13.0,155.0,54.0,3.0,0.0,51.0,80.0,359.0,117.0,904.0,821.0,17.0,119.0,10.0,37.0,0.0,197.0,32.0,913.0,34.0,165.0,370.0,64.0,28.0,5.0,43.0,53.0,35.0,1054.0,398.0,97.0,70.0,41.0,27.0,21.0,136.0,193.0,5.0,27.0,36.0,27.0,40.0,40.0,145.0,388.0,106.0,87.0,197.0,167.0,11.0,1.0,202.0,30.0,676.0,20.0,11.0,113.0,31.0,37.0,3.0,12.0,9.0,167.0,57.0,105.0,142.0,8.0,472.0,273.0,45.0,335.0,104.0,150.0,56.0,8.0,21.0,155.0,19.0,8.0,30.0,0.0,713.0,66.0,119.0,11.0,54.0,25.0,19.0,0.0,61.0,155.0,92.0,48.0,9.0,580.0,181.0,89.0,19.0,13.0,28.0,30.0,1783.0,256.0,31.0,57.0,44.0,49.0,579.0,10.0,659.0,20.0,4.0,92.0,83.0,82.0,34.0,38.0,376.0,87.0,8.601873057899999,2017-04-09,,2017-14,6.8100987197449285,12.538886995759999, +207,207,256.0,6.0,6.0,1.0,226.0,128.0,11.0,101.0,241.0,158.0,30.0,813.0,2.0,8.0,42.0,4.0,52.0,4.0,272.0,43.0,17.0,76.0,115.0,194.0,51.0,335.0,26.0,4.0,59.0,21.0,34.0,179.0,590.0,81.0,11.0,10.0,35.0,79.0,145.0,211.0,6.0,833.0,137.0,220.0,13.0,103.0,8.0,33.0,1262.0,85.0,144.0,518.0,115.0,20.0,26.0,63.0,68.0,611.0,293.0,178.0,1.0,126.0,0.0,97.0,0.0,126.0,163.0,94.0,449.0,3.0,22.0,90.0,11.0,327.0,33.0,153.0,379.0,75.0,1.0,20.0,433.0,66.0,584.0,29.0,7.0,95.0,49.0,157.0,1867.0,448.0,0.0,422.0,68.0,89.0,172.0,30.0,32.0,10.0,67.0,917.0,14.0,424.0,15.0,25.0,94.0,1261.0,554.0,45.0,69.0,4.0,86.0,157.0,59.0,561.0,101.0,4.0,1008.0,56.0,50.0,2089.0,146.0,1198.0,46.0,345.0,1004.0,0.0,174.0,455.0,103.0,22.0,535.0,359.0,17.0,286.0,209.0,156.0,27.0,508.0,13.0,345.0,35.0,72.0,105.0,25.0,1176.0,536.0,267.0,3254.0,1.0,488.0,1406.0,724.0,185.0,111.0,617.0,11.0,58.0,356.0,102.0,50.0,16.0,104.0,1526.0,52.0,54.0,788.0,21.0,4.0,261.0,208.0,131.0,720.0,6.0,120.0,39.0,2.0,1.0,55.0,82.0,395.0,103.0,831.0,898.0,18.0,109.0,10.0,62.0,0.0,230.0,33.0,885.0,45.0,134.0,366.0,79.0,44.0,10.0,43.0,54.0,36.0,1063.0,381.0,112.0,83.0,39.0,44.0,20.0,106.0,169.0,24.0,16.0,33.0,44.0,49.0,53.0,185.0,420.0,188.0,95.0,227.0,128.0,4.0,0.0,194.0,18.0,708.0,17.0,22.0,127.0,251.0,33.0,18.0,22.0,4.0,174.0,39.0,88.0,106.0,9.0,552.0,283.0,41.0,345.0,42.0,180.0,63.0,17.0,13.0,237.0,8.0,9.0,32.0,2.0,633.0,68.0,123.0,17.0,58.0,16.0,11.0,1.0,13.0,199.0,86.0,45.0,7.0,672.0,146.0,109.0,40.0,23.0,23.0,32.0,1983.0,261.0,18.0,92.0,46.0,65.0,555.0,10.0,681.0,14.0,6.0,88.0,38.0,109.0,36.0,21.0,392.0,113.0,4.0234567529000005,2017-04-16,,2017-15,5.021893430150158,6.9743089422, +208,208,184.0,6.0,3.0,3.0,238.0,79.0,9.0,119.0,158.0,92.0,19.0,758.0,1.0,10.0,35.0,2.0,53.0,4.0,313.0,47.0,10.0,72.0,92.0,246.0,67.0,300.0,24.0,6.0,52.0,44.0,1.0,131.0,558.0,101.0,1.0,7.0,48.0,37.0,266.0,179.0,10.0,12848.0,160.0,174.0,12.0,84.0,13.0,35.0,1232.0,84.0,123.0,501.0,90.0,27.0,38.0,51.0,64.0,788.0,254.0,280.0,5.0,134.0,2.0,180.0,1.0,122.0,98.0,146.0,358.0,1.0,19.0,88.0,14.0,215.0,29.0,127.0,318.0,95.0,1.0,18.0,708.0,80.0,500.0,19.0,8.0,99.0,24.0,190.0,1362.0,190.0,29.0,349.0,70.0,59.0,285.0,37.0,43.0,0.0,67.0,880.0,10.0,364.0,25.0,20.0,70.0,1480.0,1008.0,504.0,75.0,10.0,73.0,91.0,54.0,555.0,136.0,2.0,1059.0,26.0,70.0,2178.0,105.0,1357.0,81.0,259.0,838.0,1.0,149.0,439.0,95.0,15.0,634.0,334.0,33.0,351.0,223.0,161.0,14.0,594.0,14.0,347.0,35.0,80.0,101.0,41.0,1072.0,413.0,234.0,2132.0,1.0,453.0,1380.0,736.0,428.0,104.0,429.0,10.0,59.0,411.0,108.0,47.0,27.0,376.0,1789.0,33.0,32.0,677.0,15.0,14.0,265.0,170.0,145.0,610.0,8.0,154.0,28.0,2.0,3.0,66.0,96.0,325.0,164.0,658.0,750.0,10.0,108.0,7.0,62.0,2.0,102.0,39.0,904.0,81.0,100.0,373.0,70.0,38.0,14.0,47.0,59.0,39.0,789.0,346.0,155.0,59.0,26.0,32.0,30.0,148.0,173.0,19.0,18.0,50.0,42.0,24.0,68.0,139.0,892.0,77.0,81.0,213.0,161.0,7.0,2.0,161.0,26.0,522.0,14.0,11.0,148.0,15.0,52.0,7.0,17.0,6.0,180.0,31.0,122.0,188.0,6.0,679.0,319.0,57.0,343.0,36.0,123.0,65.0,7.0,19.0,190.0,7.0,8.0,26.0,1.0,647.0,104.0,167.0,5.0,81.0,20.0,9.0,1.0,69.0,175.0,95.0,55.0,10.0,858.0,158.0,67.0,41.0,53.0,49.0,28.0,845.0,172.0,22.0,47.0,62.0,98.0,560.0,7.0,662.0,24.0,6.0,120.0,40.0,194.0,71.0,35.0,239.0,116.0,12.0594810713,2017-10-22,,2017-42,10.238015680264652,71.36824102476001, +209,209,194.0,7.0,2.0,0.0,300.0,87.0,7.0,137.0,154.0,99.0,18.0,831.0,3.0,7.0,49.0,1.0,56.0,3.0,304.0,55.0,8.0,86.0,112.0,187.0,63.0,370.0,20.0,13.0,69.0,32.0,3.0,129.0,603.0,118.0,3.0,11.0,49.0,34.0,198.0,146.0,17.0,24515.0,138.0,216.0,17.0,74.0,9.0,34.0,1285.0,72.0,132.0,497.0,111.0,11.0,39.0,34.0,85.0,906.0,266.0,224.0,5.0,116.0,2.0,114.0,2.0,125.0,120.0,103.0,337.0,5.0,19.0,56.0,15.0,188.0,31.0,123.0,290.0,107.0,1.0,24.0,604.0,86.0,522.0,18.0,3.0,98.0,16.0,234.0,1036.0,213.0,25.0,351.0,87.0,77.0,276.0,38.0,39.0,0.0,53.0,874.0,8.0,351.0,37.0,19.0,76.0,1255.0,907.0,583.0,70.0,4.0,84.0,133.0,53.0,557.0,226.0,3.0,949.0,31.0,56.0,2339.0,114.0,1009.0,72.0,269.0,763.0,2.0,158.0,483.0,99.0,30.0,618.0,362.0,40.0,393.0,215.0,129.0,11.0,623.0,2.0,327.0,44.0,65.0,68.0,17.0,1048.0,389.0,265.0,2060.0,1.0,432.0,1448.0,832.0,284.0,89.0,460.0,12.0,59.0,517.0,144.0,39.0,36.0,517.0,1767.0,36.0,24.0,579.0,20.0,10.0,314.0,170.0,127.0,613.0,9.0,224.0,23.0,0.0,2.0,37.0,93.0,349.0,159.0,1175.0,752.0,25.0,89.0,7.0,55.0,1.0,152.0,70.0,935.0,65.0,141.0,445.0,112.0,23.0,13.0,39.0,68.0,50.0,727.0,349.0,179.0,93.0,47.0,42.0,14.0,124.0,195.0,36.0,32.0,45.0,50.0,35.0,58.0,157.0,783.0,105.0,83.0,182.0,177.0,11.0,2.0,233.0,121.0,467.0,9.0,17.0,150.0,16.0,61.0,10.0,11.0,6.0,156.0,24.0,171.0,159.0,12.0,780.0,322.0,42.0,297.0,49.0,134.0,63.0,4.0,27.0,198.0,15.0,15.0,38.0,2.0,733.0,79.0,194.0,10.0,65.0,50.0,22.0,3.0,45.0,199.0,110.0,49.0,9.0,777.0,215.0,74.0,40.0,45.0,63.0,36.0,858.0,164.0,20.0,62.0,55.0,63.0,619.0,9.0,583.0,21.0,9.0,122.0,32.0,100.0,44.0,25.0,221.0,66.0,21.1187159821,2017-10-29,,2017-43,22.178548349490484,186.87248783922, +210,210,181.0,14.0,2.0,0.0,268.0,89.0,12.0,96.0,152.0,110.0,18.0,916.0,5.0,11.0,46.0,2.0,56.0,2.0,302.0,57.0,13.0,68.0,100.0,161.0,84.0,375.0,43.0,19.0,75.0,36.0,4.0,122.0,502.0,90.0,1.0,10.0,50.0,35.0,140.0,161.0,11.0,11546.0,182.0,201.0,17.0,81.0,10.0,35.0,1306.0,99.0,106.0,490.0,105.0,32.0,34.0,53.0,63.0,870.0,271.0,237.0,5.0,114.0,2.0,173.0,0.0,160.0,124.0,82.0,355.0,7.0,28.0,59.0,13.0,146.0,51.0,114.0,410.0,118.0,7.0,22.0,567.0,82.0,599.0,25.0,12.0,98.0,15.0,166.0,935.0,193.0,43.0,334.0,93.0,55.0,337.0,41.0,41.0,3.0,55.0,877.0,15.0,426.0,21.0,24.0,76.0,1299.0,944.0,835.0,64.0,5.0,92.0,128.0,82.0,613.0,163.0,6.0,1020.0,47.0,55.0,2297.0,142.0,1297.0,63.0,264.0,799.0,2.0,161.0,544.0,90.0,24.0,703.0,456.0,40.0,412.0,251.0,231.0,23.0,723.0,7.0,353.0,52.0,52.0,73.0,26.0,1167.0,465.0,263.0,2144.0,2.0,436.0,1569.0,1056.0,344.0,106.0,561.0,13.0,48.0,450.0,139.0,34.0,34.0,319.0,2073.0,43.0,40.0,563.0,28.0,18.0,289.0,188.0,142.0,707.0,17.0,114.0,23.0,1.0,12.0,63.0,81.0,355.0,172.0,782.0,798.0,21.0,119.0,5.0,78.0,3.0,100.0,48.0,886.0,89.0,188.0,519.0,60.0,30.0,5.0,41.0,53.0,52.0,714.0,387.0,247.0,76.0,37.0,19.0,12.0,128.0,205.0,56.0,17.0,48.0,50.0,40.0,72.0,180.0,746.0,156.0,97.0,241.0,251.0,13.0,3.0,203.0,38.0,527.0,13.0,18.0,136.0,23.0,57.0,16.0,24.0,14.0,179.0,29.0,122.0,152.0,10.0,667.0,308.0,59.0,322.0,36.0,155.0,66.0,10.0,17.0,219.0,24.0,14.0,32.0,3.0,790.0,89.0,163.0,9.0,48.0,15.0,14.0,3.0,65.0,189.0,92.0,50.0,7.0,781.0,148.0,75.0,26.0,33.0,121.0,32.0,824.0,182.0,22.0,70.0,27.0,56.0,609.0,12.0,622.0,28.0,32.0,133.0,33.0,130.0,31.0,36.0,237.0,95.0,9.4257616539,2017-11-05,,2017-44,10.136592731604196,238.84016781952005, +211,211,208.0,11.0,5.0,0.0,358.0,68.0,4.0,127.0,145.0,125.0,23.0,846.0,0.0,6.0,35.0,0.0,65.0,3.0,285.0,59.0,23.0,86.0,95.0,215.0,77.0,371.0,40.0,9.0,68.0,21.0,10.0,111.0,544.0,98.0,4.0,6.0,50.0,23.0,161.0,205.0,18.0,3280.0,178.0,207.0,16.0,90.0,10.0,42.0,1310.0,117.0,81.0,468.0,89.0,34.0,33.0,44.0,80.0,992.0,309.0,194.0,8.0,121.0,0.0,192.0,2.0,94.0,138.0,100.0,379.0,2.0,26.0,69.0,15.0,181.0,41.0,147.0,269.0,136.0,8.0,22.0,436.0,67.0,531.0,23.0,12.0,107.0,23.0,158.0,871.0,202.0,35.0,383.0,67.0,55.0,281.0,39.0,36.0,2.0,37.0,1205.0,8.0,431.0,22.0,31.0,68.0,1230.0,994.0,675.0,88.0,5.0,72.0,163.0,91.0,615.0,166.0,3.0,1986.0,52.0,58.0,2080.0,111.0,1022.0,53.0,272.0,805.0,1.0,154.0,562.0,98.0,19.0,684.0,366.0,34.0,408.0,300.0,138.0,23.0,728.0,11.0,421.0,43.0,93.0,75.0,31.0,1185.0,467.0,267.0,2280.0,1.0,523.0,1541.0,1169.0,390.0,102.0,539.0,9.0,64.0,414.0,138.0,46.0,33.0,190.0,1974.0,28.0,39.0,653.0,25.0,11.0,313.0,230.0,150.0,529.0,5.0,135.0,36.0,5.0,1.0,54.0,81.0,403.0,166.0,896.0,870.0,20.0,128.0,14.0,60.0,1.0,148.0,63.0,926.0,64.0,126.0,433.0,65.0,36.0,20.0,41.0,45.0,52.0,684.0,423.0,175.0,140.0,21.0,28.0,14.0,147.0,298.0,65.0,22.0,51.0,29.0,43.0,77.0,201.0,694.0,139.0,82.0,227.0,269.0,10.0,2.0,211.0,20.0,581.0,19.0,16.0,152.0,25.0,35.0,3.0,3.0,6.0,152.0,31.0,125.0,169.0,3.0,847.0,310.0,31.0,299.0,45.0,139.0,63.0,9.0,16.0,227.0,63.0,16.0,30.0,1.0,797.0,93.0,215.0,19.0,64.0,23.0,17.0,0.0,31.0,187.0,107.0,45.0,6.0,887.0,142.0,84.0,38.0,40.0,78.0,47.0,911.0,188.0,28.0,60.0,49.0,51.0,575.0,2.0,590.0,25.0,5.0,147.0,35.0,127.0,75.0,39.0,291.0,87.0,14.1993013944,2017-11-12,,2017-45,14.417964921761268,14.199301394400003, +212,212,152.0,5.0,4.0,4.0,319.0,63.0,15.0,105.0,164.0,135.0,20.0,988.0,1.0,14.0,47.0,0.0,53.0,5.0,253.0,67.0,18.0,84.0,138.0,174.0,89.0,378.0,36.0,18.0,61.0,18.0,1.0,132.0,520.0,91.0,2.0,15.0,43.0,34.0,147.0,189.0,8.0,2547.0,169.0,233.0,11.0,98.0,7.0,17.0,1314.0,127.0,102.0,528.0,98.0,32.0,24.0,55.0,82.0,1065.0,330.0,158.0,1.0,136.0,0.0,134.0,5.0,114.0,134.0,86.0,385.0,3.0,25.0,66.0,8.0,167.0,51.0,113.0,318.0,96.0,0.0,16.0,450.0,71.0,558.0,37.0,6.0,105.0,14.0,170.0,888.0,210.0,15.0,349.0,45.0,59.0,267.0,34.0,61.0,1.0,22.0,966.0,16.0,408.0,35.0,45.0,98.0,1386.0,990.0,356.0,115.0,2.0,81.0,128.0,57.0,735.0,155.0,6.0,1155.0,39.0,32.0,1980.0,137.0,1078.0,37.0,271.0,833.0,0.0,176.0,536.0,123.0,17.0,650.0,353.0,30.0,357.0,292.0,131.0,30.0,648.0,7.0,387.0,34.0,86.0,200.0,38.0,1183.0,381.0,277.0,2360.0,0.0,476.0,1622.0,1169.0,348.0,99.0,548.0,6.0,58.0,437.0,143.0,44.0,56.0,196.0,2039.0,44.0,48.0,598.0,33.0,3.0,246.0,160.0,156.0,514.0,13.0,161.0,36.0,1.0,5.0,40.0,90.0,377.0,129.0,1131.0,887.0,18.0,85.0,10.0,96.0,0.0,174.0,49.0,865.0,81.0,145.0,466.0,61.0,31.0,14.0,55.0,42.0,65.0,675.0,396.0,201.0,91.0,38.0,49.0,13.0,136.0,186.0,24.0,28.0,42.0,31.0,35.0,78.0,185.0,921.0,122.0,78.0,221.0,424.0,8.0,2.0,165.0,30.0,600.0,20.0,19.0,148.0,25.0,33.0,5.0,4.0,13.0,169.0,34.0,139.0,152.0,14.0,591.0,309.0,41.0,322.0,39.0,122.0,85.0,4.0,11.0,221.0,16.0,13.0,25.0,3.0,794.0,92.0,196.0,11.0,77.0,46.0,27.0,0.0,33.0,166.0,111.0,42.0,5.0,996.0,153.0,61.0,34.0,30.0,58.0,40.0,893.0,188.0,24.0,54.0,47.0,68.0,563.0,7.0,611.0,29.0,6.0,122.0,41.0,107.0,49.0,30.0,364.0,92.0,19.9108751304,2017-11-19,,2017-46,18.831258843664727,42.06625614744, +213,213,160.0,5.0,6.0,2.0,292.0,70.0,6.0,110.0,172.0,126.0,16.0,1109.0,3.0,12.0,33.0,1.0,51.0,4.0,280.0,45.0,14.0,93.0,121.0,230.0,112.0,272.0,31.0,12.0,57.0,26.0,8.0,134.0,558.0,101.0,1.0,12.0,31.0,31.0,155.0,175.0,4.0,1944.0,155.0,205.0,17.0,107.0,12.0,27.0,1230.0,126.0,86.0,479.0,117.0,27.0,27.0,42.0,65.0,1231.0,309.0,194.0,4.0,87.0,1.0,140.0,1.0,141.0,105.0,108.0,339.0,3.0,6.0,72.0,4.0,149.0,52.0,137.0,257.0,118.0,2.0,19.0,408.0,70.0,563.0,46.0,11.0,125.0,16.0,166.0,792.0,203.0,1.0,383.0,68.0,49.0,277.0,45.0,42.0,1.0,31.0,883.0,8.0,384.0,40.0,43.0,97.0,1222.0,967.0,218.0,116.0,5.0,97.0,130.0,55.0,707.0,140.0,8.0,1051.0,33.0,51.0,1982.0,141.0,1007.0,47.0,274.0,771.0,0.0,143.0,524.0,97.0,20.0,653.0,318.0,32.0,312.0,284.0,102.0,10.0,648.0,4.0,336.0,35.0,92.0,81.0,30.0,1257.0,429.0,222.0,2282.0,0.0,528.0,1579.0,1066.0,318.0,92.0,465.0,10.0,70.0,366.0,123.0,40.0,38.0,216.0,2013.0,41.0,32.0,659.0,24.0,9.0,254.0,174.0,137.0,472.0,10.0,174.0,20.0,1.0,1.0,47.0,92.0,465.0,137.0,1315.0,865.0,23.0,68.0,11.0,123.0,0.0,148.0,43.0,875.0,122.0,130.0,431.0,54.0,33.0,11.0,47.0,36.0,66.0,683.0,371.0,173.0,108.0,32.0,27.0,23.0,130.0,240.0,29.0,16.0,38.0,33.0,38.0,65.0,203.0,937.0,119.0,83.0,206.0,1091.0,9.0,1.0,185.0,33.0,626.0,10.0,20.0,149.0,16.0,89.0,10.0,16.0,6.0,165.0,23.0,161.0,503.0,15.0,607.0,320.0,46.0,311.0,48.0,150.0,98.0,10.0,11.0,238.0,17.0,14.0,16.0,1.0,747.0,79.0,163.0,10.0,87.0,44.0,27.0,0.0,23.0,206.0,121.0,41.0,6.0,935.0,144.0,82.0,25.0,73.0,52.0,42.0,1067.0,185.0,25.0,58.0,21.0,55.0,470.0,4.0,523.0,40.0,4.0,102.0,31.0,114.0,51.0,25.0,264.0,80.0,24.686481682600004,2017-11-26,,2017-47,24.67473122615411,26.71085336044, +214,214,172.0,7.0,6.0,3.0,262.0,73.0,9.0,94.0,170.0,140.0,21.0,915.0,1.0,6.0,38.0,0.0,38.0,3.0,271.0,50.0,14.0,77.0,92.0,198.0,60.0,276.0,15.0,5.0,56.0,26.0,6.0,119.0,534.0,89.0,3.0,10.0,30.0,41.0,171.0,163.0,3.0,1518.0,190.0,213.0,23.0,70.0,6.0,26.0,1148.0,117.0,86.0,443.0,94.0,29.0,16.0,23.0,63.0,1226.0,245.0,229.0,5.0,102.0,1.0,127.0,1.0,95.0,88.0,96.0,364.0,1.0,20.0,67.0,7.0,151.0,30.0,111.0,267.0,108.0,1.0,16.0,380.0,86.0,514.0,24.0,9.0,142.0,5.0,147.0,857.0,260.0,0.0,296.0,82.0,46.0,272.0,31.0,40.0,1.0,35.0,814.0,12.0,402.0,21.0,29.0,87.0,1253.0,1110.0,177.0,74.0,4.0,86.0,148.0,61.0,569.0,134.0,4.0,1007.0,26.0,52.0,2008.0,148.0,956.0,46.0,254.0,797.0,0.0,143.0,438.0,103.0,12.0,592.0,303.0,25.0,307.0,222.0,109.0,15.0,599.0,3.0,335.0,56.0,74.0,107.0,27.0,1336.0,391.0,198.0,1936.0,0.0,427.0,1482.0,1080.0,351.0,93.0,505.0,7.0,61.0,362.0,119.0,39.0,15.0,194.0,2103.0,31.0,40.0,550.0,48.0,10.0,273.0,182.0,117.0,465.0,9.0,196.0,68.0,2.0,4.0,42.0,89.0,407.0,113.0,1744.0,769.0,23.0,119.0,11.0,212.0,0.0,108.0,31.0,812.0,86.0,130.0,399.0,54.0,45.0,9.0,35.0,44.0,63.0,653.0,335.0,158.0,76.0,39.0,45.0,18.0,121.0,192.0,24.0,11.0,32.0,34.0,37.0,56.0,207.0,926.0,128.0,78.0,212.0,819.0,11.0,1.0,172.0,34.0,573.0,14.0,26.0,134.0,18.0,55.0,6.0,9.0,4.0,193.0,38.0,164.0,188.0,9.0,531.0,318.0,42.0,302.0,32.0,112.0,112.0,11.0,10.0,197.0,15.0,12.0,36.0,0.0,693.0,81.0,162.0,8.0,66.0,30.0,20.0,0.0,19.0,194.0,94.0,49.0,10.0,983.0,138.0,57.0,33.0,45.0,70.0,21.0,947.0,169.0,23.0,46.0,40.0,37.0,535.0,5.0,527.0,48.0,5.0,108.0,34.0,94.0,47.0,30.0,276.0,66.0,31.23136765,2017-12-03,,2017-48,32.8400340745975,40.168296514400005, +215,215,165.0,4.0,6.0,3.0,230.0,60.0,5.0,112.0,173.0,108.0,14.0,857.0,1.0,5.0,41.0,5.0,36.0,3.0,248.0,46.0,12.0,75.0,98.0,168.0,63.0,286.0,19.0,5.0,55.0,18.0,8.0,118.0,532.0,84.0,2.0,26.0,40.0,31.0,135.0,124.0,4.0,1238.0,127.0,236.0,12.0,54.0,16.0,21.0,1164.0,130.0,76.0,355.0,82.0,25.0,20.0,37.0,46.0,1295.0,221.0,201.0,6.0,100.0,3.0,122.0,4.0,130.0,96.0,110.0,334.0,2.0,12.0,78.0,8.0,137.0,38.0,93.0,187.0,94.0,2.0,25.0,368.0,62.0,520.0,29.0,13.0,93.0,18.0,130.0,715.0,168.0,1.0,316.0,84.0,80.0,297.0,28.0,46.0,5.0,46.0,813.0,12.0,377.0,23.0,36.0,91.0,1242.0,1041.0,135.0,44.0,5.0,57.0,109.0,73.0,460.0,79.0,2.0,941.0,31.0,49.0,2190.0,147.0,840.0,49.0,236.0,854.0,1.0,131.0,415.0,83.0,17.0,560.0,267.0,35.0,331.0,185.0,96.0,13.0,494.0,11.0,325.0,37.0,51.0,111.0,28.0,1257.0,461.0,237.0,1822.0,3.0,408.0,1342.0,1013.0,381.0,98.0,522.0,15.0,58.0,372.0,124.0,73.0,37.0,176.0,2091.0,23.0,26.0,564.0,29.0,6.0,297.0,141.0,117.0,463.0,7.0,119.0,24.0,1.0,3.0,47.0,77.0,394.0,107.0,2082.0,771.0,23.0,64.0,8.0,74.0,2.0,73.0,28.0,677.0,110.0,115.0,422.0,39.0,41.0,12.0,35.0,36.0,40.0,556.0,359.0,150.0,103.0,30.0,18.0,32.0,139.0,189.0,16.0,19.0,30.0,28.0,28.0,63.0,254.0,709.0,122.0,70.0,199.0,843.0,12.0,1.0,186.0,26.0,493.0,10.0,14.0,146.0,23.0,65.0,1.0,7.0,9.0,150.0,31.0,93.0,103.0,5.0,558.0,233.0,40.0,241.0,36.0,126.0,74.0,12.0,7.0,161.0,8.0,13.0,29.0,2.0,601.0,67.0,185.0,7.0,77.0,28.0,19.0,1.0,32.0,200.0,88.0,60.0,8.0,967.0,141.0,81.0,581.0,43.0,43.0,37.0,867.0,142.0,34.0,56.0,40.0,53.0,480.0,12.0,481.0,21.0,3.0,79.0,44.0,110.0,36.0,43.0,263.0,73.0,38.3974132269,2017-12-10,,2017-49,38.56275210132662,37.5045554279, +216,216,167.0,6.0,6.0,5.0,173.0,70.0,10.0,117.0,127.0,118.0,22.0,950.0,1.0,9.0,36.0,4.0,51.0,5.0,212.0,45.0,7.0,81.0,119.0,161.0,58.0,320.0,26.0,15.0,39.0,33.0,6.0,115.0,455.0,66.0,1.0,15.0,44.0,33.0,146.0,176.0,5.0,1108.0,147.0,213.0,7.0,68.0,7.0,23.0,1085.0,161.0,71.0,475.0,77.0,30.0,57.0,43.0,67.0,1356.0,273.0,229.0,7.0,99.0,0.0,90.0,0.0,92.0,107.0,183.0,285.0,2.0,13.0,62.0,6.0,164.0,45.0,96.0,228.0,89.0,0.0,22.0,394.0,47.0,479.0,34.0,6.0,87.0,13.0,130.0,926.0,179.0,0.0,300.0,52.0,53.0,284.0,40.0,53.0,3.0,33.0,761.0,4.0,405.0,14.0,35.0,77.0,1257.0,1093.0,117.0,70.0,4.0,64.0,122.0,54.0,524.0,122.0,4.0,855.0,28.0,48.0,2218.0,147.0,1185.0,56.0,239.0,795.0,0.0,102.0,426.0,133.0,15.0,594.0,307.0,33.0,315.0,246.0,112.0,19.0,436.0,7.0,439.0,30.0,65.0,110.0,32.0,1391.0,379.0,214.0,1750.0,0.0,414.0,1442.0,1130.0,368.0,95.0,527.0,14.0,43.0,341.0,155.0,54.0,31.0,157.0,2185.0,28.0,25.0,623.0,43.0,5.0,257.0,137.0,132.0,557.0,16.0,150.0,39.0,5.0,2.0,46.0,86.0,401.0,112.0,2456.0,702.0,20.0,80.0,7.0,82.0,0.0,85.0,30.0,731.0,132.0,99.0,334.0,34.0,36.0,11.0,49.0,42.0,60.0,629.0,325.0,164.0,90.0,34.0,27.0,19.0,139.0,171.0,31.0,21.0,31.0,61.0,18.0,66.0,245.0,679.0,121.0,86.0,203.0,707.0,18.0,0.0,197.0,26.0,515.0,12.0,17.0,149.0,12.0,65.0,5.0,5.0,8.0,134.0,24.0,101.0,113.0,2.0,470.0,265.0,25.0,319.0,69.0,106.0,90.0,5.0,15.0,190.0,10.0,9.0,35.0,3.0,667.0,86.0,169.0,5.0,82.0,22.0,18.0,0.0,37.0,162.0,69.0,45.0,2.0,1014.0,132.0,69.0,156.0,38.0,34.0,38.0,1136.0,152.0,24.0,39.0,40.0,53.0,527.0,8.0,463.0,21.0,10.0,62.0,25.0,133.0,38.0,42.0,250.0,99.0,46.0930870845,2017-12-17,,2017-50,46.32930923691765,51.417220198120006, +217,217,138.0,8.0,6.0,1.0,143.0,53.0,2.0,69.0,122.0,75.0,8.0,661.0,4.0,5.0,15.0,0.0,38.0,3.0,175.0,25.0,4.0,52.0,63.0,123.0,37.0,200.0,15.0,5.0,33.0,17.0,4.0,90.0,361.0,52.0,6.0,10.0,40.0,13.0,110.0,134.0,1.0,942.0,99.0,190.0,7.0,48.0,7.0,18.0,694.0,74.0,68.0,282.0,59.0,35.0,14.0,29.0,51.0,1093.0,179.0,202.0,1.0,75.0,0.0,82.0,0.0,86.0,63.0,111.0,180.0,0.0,12.0,39.0,5.0,118.0,31.0,74.0,130.0,65.0,1.0,9.0,283.0,56.0,387.0,14.0,7.0,94.0,15.0,97.0,621.0,135.0,2.0,205.0,51.0,34.0,210.0,22.0,27.0,5.0,25.0,577.0,2.0,323.0,14.0,23.0,67.0,1229.0,892.0,64.0,54.0,2.0,43.0,77.0,54.0,441.0,84.0,2.0,642.0,22.0,36.0,1523.0,95.0,645.0,26.0,190.0,489.0,0.0,79.0,276.0,64.0,14.0,414.0,193.0,23.0,231.0,160.0,83.0,25.0,348.0,6.0,218.0,33.0,47.0,53.0,38.0,915.0,294.0,193.0,1310.0,1.0,274.0,1102.0,798.0,333.0,60.0,324.0,5.0,32.0,230.0,75.0,29.0,30.0,108.0,1608.0,28.0,19.0,442.0,11.0,8.0,205.0,107.0,100.0,269.0,3.0,92.0,21.0,1.0,6.0,33.0,72.0,292.0,96.0,2108.0,594.0,11.0,77.0,9.0,48.0,1.0,65.0,19.0,532.0,89.0,63.0,271.0,35.0,30.0,15.0,26.0,49.0,35.0,450.0,279.0,117.0,65.0,34.0,30.0,5.0,86.0,127.0,16.0,13.0,30.0,42.0,13.0,52.0,203.0,553.0,82.0,59.0,169.0,447.0,3.0,0.0,152.0,17.0,336.0,15.0,7.0,114.0,33.0,64.0,3.0,7.0,2.0,100.0,27.0,63.0,97.0,3.0,436.0,192.0,25.0,203.0,60.0,62.0,67.0,3.0,9.0,97.0,8.0,8.0,17.0,0.0,516.0,64.0,130.0,7.0,68.0,7.0,8.0,0.0,78.0,106.0,68.0,35.0,3.0,844.0,98.0,53.0,58.0,25.0,36.0,32.0,842.0,135.0,11.0,28.0,21.0,26.0,370.0,4.0,363.0,22.0,6.0,49.0,10.0,60.0,39.0,17.0,199.0,44.0,55.5911909344,2017-12-24,,2017-51,55.477179850438915,109.34269664089999, +218,218,179.0,8.0,4.0,4.0,190.0,91.0,7.0,90.0,176.0,93.0,16.0,678.0,3.0,4.0,37.0,1.0,48.0,6.0,160.0,46.0,9.0,59.0,87.0,176.0,24.0,232.0,9.0,8.0,35.0,14.0,3.0,89.0,419.0,83.0,1.0,17.0,83.0,28.0,111.0,135.0,5.0,1109.0,158.0,206.0,13.0,80.0,10.0,20.0,935.0,147.0,99.0,364.0,91.0,71.0,18.0,42.0,64.0,1869.0,296.0,171.0,6.0,84.0,0.0,75.0,1.0,77.0,87.0,191.0,267.0,0.0,26.0,70.0,7.0,163.0,26.0,118.0,216.0,60.0,2.0,12.0,531.0,68.0,465.0,18.0,8.0,100.0,19.0,161.0,887.0,192.0,1.0,308.0,92.0,42.0,222.0,22.0,21.0,4.0,21.0,816.0,7.0,428.0,20.0,15.0,58.0,1354.0,2965.0,87.0,71.0,9.0,90.0,97.0,60.0,311.0,109.0,2.0,732.0,27.0,43.0,2166.0,166.0,1163.0,88.0,299.0,656.0,0.0,98.0,257.0,68.0,22.0,652.0,188.0,38.0,220.0,197.0,237.0,5.0,446.0,5.0,202.0,28.0,63.0,45.0,40.0,1379.0,327.0,206.0,2267.0,4.0,424.0,1866.0,1056.0,532.0,103.0,653.0,6.0,48.0,247.0,187.0,23.0,13.0,136.0,2631.0,33.0,46.0,662.0,29.0,5.0,384.0,84.0,145.0,399.0,5.0,64.0,28.0,6.0,4.0,57.0,107.0,538.0,86.0,2675.0,1175.0,24.0,57.0,8.0,213.0,0.0,87.0,32.0,795.0,157.0,82.0,230.0,56.0,38.0,11.0,34.0,65.0,59.0,645.0,298.0,197.0,52.0,17.0,21.0,22.0,134.0,117.0,16.0,3.0,17.0,29.0,27.0,51.0,292.0,659.0,136.0,73.0,170.0,651.0,9.0,0.0,166.0,25.0,520.0,22.0,9.0,171.0,21.0,33.0,7.0,9.0,3.0,148.0,25.0,69.0,136.0,10.0,964.0,236.0,43.0,311.0,28.0,101.0,135.0,4.0,25.0,167.0,25.0,11.0,29.0,1.0,625.0,78.0,239.0,12.0,86.0,17.0,12.0,0.0,22.0,152.0,87.0,72.0,5.0,1420.0,151.0,44.0,77.0,24.0,59.0,41.0,1345.0,228.0,42.0,66.0,8.0,34.0,656.0,4.0,537.0,24.0,6.0,40.0,24.0,78.0,19.0,27.0,380.0,130.0,62.805851411800006,2017-12-31,,2017-52,60.98256601093264,48.19220114496001, +219,219,217.0,6.0,6.0,4.0,257.0,76.0,15.0,106.0,188.0,93.0,28.0,830.0,0.0,8.0,51.0,4.0,10.0,3.0,208.0,56.33333333333334,11.0,96.0,101.0,328.0,57.0,296.0,18.0,6.0,50.0,21.0,8.0,117.0,482.0,125.0,0.0,5.0,84.0,32.0,104.0,156.0,0.0,1906.0,160.0,221.0,26.0,81.0,10.0,29.0,1095.0,133.0,123.0,406.0,87.0,67.0,22.0,50.0,80.0,1766.0,282.0,259.0,2.0,99.0,0.0,102.0,3.0,121.0,126.0,166.0,349.0,2.0,23.0,53.0,21.0,205.0,46.0,115.0,232.0,84.0,2.0,31.0,614.0,73.0,538.0,21.0,5.0,129.0,14.0,139.0,853.0,224.0,0.0,373.0,65.0,51.0,270.0,26.0,26.6,6.0,42.0,1008.0,8.0,501.0,25.0,31.0,66.0,1436.0,2537.0,100.0,87.0,8.0,98.0,127.0,84.0,539.0,148.0,1.0,907.5,32.0,70.0,2335.0,194.0,1279.0,113.0,303.0,789.0,0.0,124.0,394.0,67.0,31.0,671.0,310.0,47.0,307.0,217.0,229.0,9.0,531.0,8.0,228.0,33.0,75.0,81.0,41.0,1502.0,445.0,275.0,2172.0,10.0,477.0,2008.0,1345.0,490.0,121.0,571.0,14.0,62.0,375.0,221.0,32.0,24.0,184.0,3657.0,27.0,56.0,693.0,29.0,5.0,421.0,125.0,159.0,358.0,13.0,112.0,31.0,3.0,4.333333333333333,38.0,125.0,454.0,130.0,2031.0,943.0,26.0,103.0,15.0,146.0,0.0,114.0,57.0,950.0,147.0,115.0,388.0,47.0,29.0,8.0,48.0,46.0,38.0,699.0,360.0,242.0,77.0,27.0,27.0,33.0,164.0,171.0,25.0,17.0,35.0,37.0,31.0,51.0,243.0,551.0,152.0,94.0,206.0,1481.0,17.0,2.0,244.0,33.0,530.0,4.0,24.0,239.0,34.0,46.0,3.0,9.0,12.0,173.0,37.0,143.0,188.0,2.0,855.0,281.0,49.0,315.0,53.0,146.0,126.0,9.0,13.0,192.0,32.0,11.0,38.0,2.0,849.0,79.0,213.0,7.0,132.0,37.0,15.0,0.0,16.0,198.0,99.0,80.0,5.0,1403.0,141.0,70.0,48.0,30.0,58.0,40.0,1475.0,234.0,30.0,71.0,33.0,112.0,738.0,5.0,601.0,23.0,11.0,103.0,26.0,113.0,24.0,29.0,368.0,113.0,98.55699701120001,2018-01-07,,2018-1,99.45679167764365,91.89559760896, +220,220,159.0,9.0,2.0,4.0,338.0,123.0,10.0,154.0,191.0,121.0,19.0,1078.0,1.0,6.0,42.0,0.0,19.0,1.0,268.0,66.66666666666667,9.0,108.0,145.0,251.0,89.0,384.0,20.0,8.0,43.0,20.0,9.0,125.0,523.0,121.0,1.0,17.0,82.0,36.0,147.0,238.0,6.0,1343.0,171.0,219.0,13.0,76.0,8.0,34.0,1321.0,133.0,114.0,428.0,113.0,41.0,29.0,48.0,93.0,1580.0,330.0,309.0,5.0,137.0,0.0,166.0,5.0,136.0,110.0,174.0,410.0,3.0,32.0,74.0,7.0,230.0,49.0,155.0,268.0,121.0,5.0,27.0,490.0,95.0,508.0,19.0,4.0,123.0,20.0,110.0,908.0,188.0,0.0,334.0,79.0,51.0,294.0,28.0,32.2,11.0,29.0,1059.0,9.0,691.0,46.0,63.0,108.0,1448.0,2733.0,115.0,166.0,8.0,93.0,148.0,54.0,563.0,151.0,4.0,1083.0,26.0,53.0,2102.0,182.0,1086.0,161.0,304.0,903.0,0.0,191.0,517.0,115.0,18.0,683.0,339.0,56.0,370.0,249.0,155.0,17.0,590.0,10.0,315.0,45.0,68.0,99.0,37.0,1329.0,500.0,324.0,2440.0,2.0,496.0,1945.0,1234.0,509.0,108.0,583.0,14.0,63.0,409.0,204.0,36.0,34.0,181.0,2858.0,30.0,25.0,790.0,54.0,10.0,487.0,167.0,157.0,401.0,7.0,159.0,38.0,4.0,4.666666666666667,71.0,96.0,415.0,178.0,1776.0,863.0,23.0,108.0,19.0,81.0,2.0,133.0,55.0,919.0,138.0,128.0,438.0,50.0,60.0,9.0,51.0,53.0,48.0,712.0,360.0,191.0,74.0,31.0,22.0,23.0,175.0,238.0,17.0,20.0,46.0,40.0,34.0,59.0,292.0,651.0,147.0,96.0,256.0,531.0,19.0,2.0,321.0,27.0,635.0,7.0,36.0,208.0,28.0,43.0,7.0,14.0,12.0,173.0,32.0,182.0,162.0,7.0,857.0,271.0,70.0,447.0,61.0,172.0,65.0,7.0,24.0,218.0,26.0,14.0,34.0,1.0,879.0,81.0,244.0,10.0,86.0,48.0,31.0,0.0,25.0,203.0,94.0,57.0,3.0,1103.0,153.0,102.0,63.0,45.0,103.0,23.0,1159.0,213.0,16.0,75.0,8.0,79.0,710.0,9.0,636.0,18.0,7.0,121.0,37.0,119.0,37.0,55.0,440.0,86.0,159.63931190620002,2018-01-14,,2018-2,159.22495802555477,213.37753363532002, +221,221,145.0,7.0,5.0,0.0,301.0,78.0,10.0,124.0,198.0,151.0,19.0,1419.0,0.0,9.0,54.0,3.0,14.0,1.0,268.0,77.0,16.0,79.0,126.0,204.0,72.0,368.0,32.0,8.0,62.0,32.0,5.0,109.0,516.0,104.0,6.0,14.0,100.0,26.0,173.0,273.0,4.0,1600.0,202.0,210.0,17.0,95.0,15.0,26.0,1536.0,121.0,103.0,502.0,96.0,24.0,31.0,78.0,100.0,1771.0,274.0,309.0,6.0,111.0,1.0,178.0,2.0,120.0,100.0,169.0,399.0,1.0,31.0,65.0,11.0,238.0,54.0,162.0,319.0,123.0,1.0,26.0,948.0,68.0,595.0,27.0,7.0,219.0,26.0,134.0,1079.0,232.0,1.0,314.0,73.0,62.0,316.0,64.0,37.8,2.0,34.0,1660.0,49.0,2077.0,35.0,29.0,119.0,1589.0,2905.0,161.0,141.0,5.0,86.0,155.0,73.0,638.0,141.0,2.0,1159.0,35.0,75.0,2099.0,187.0,1463.0,125.0,253.0,946.0,0.0,167.0,627.0,124.0,21.0,721.0,393.0,82.0,418.0,249.0,146.0,18.0,639.0,5.0,328.0,38.0,58.0,106.0,50.0,1628.0,482.0,327.0,2556.0,2.0,479.0,2388.0,1290.0,613.0,135.0,701.0,119.0,50.0,450.0,134.0,62.0,31.0,226.0,2979.0,37.0,71.0,851.0,33.0,8.0,501.0,162.0,142.0,426.0,8.0,171.0,33.0,1.0,5.0,53.0,133.0,633.0,145.0,1957.0,877.0,26.0,90.0,10.0,93.0,0.0,130.0,48.0,855.0,452.0,158.0,430.0,68.0,44.0,22.0,87.0,67.0,61.0,848.0,386.0,198.0,82.0,25.0,29.0,24.0,157.0,192.0,22.0,15.0,47.0,40.0,45.0,63.0,238.0,982.0,152.0,107.0,181.0,406.0,15.0,1.0,270.0,28.0,856.0,9.0,58.0,164.0,8.0,54.0,4.0,10.0,4.0,199.0,34.0,161.0,197.0,10.0,1048.0,287.0,68.0,316.0,41.0,135.0,65.0,7.0,13.0,219.0,13.0,26.0,37.0,0.0,860.0,114.0,195.0,7.0,128.0,39.0,31.0,1.0,23.0,259.0,108.0,85.0,11.0,1161.0,133.0,100.0,83.0,142.0,92.0,26.0,1369.0,225.0,20.0,77.0,19.0,56.0,746.0,5.0,659.0,34.0,6.0,107.0,31.0,109.0,50.0,84.0,430.0,127.0,255.5366269165,2018-01-21,,2018-3,254.80506496696216,239.15394012428, +222,222,237.0,12.0,7.0,1.0,281.0,83.0,13.0,111.0,222.0,151.0,34.0,1968.0,1.0,11.0,62.0,4.0,10.0,3.0,289.0,76.0,9.0,91.0,138.0,185.0,74.0,387.0,33.0,12.0,58.0,28.0,4.0,124.0,618.0,78.0,1.0,20.0,103.0,36.0,211.0,226.0,6.0,1462.0,210.0,227.0,11.0,81.0,11.0,24.0,1586.0,124.0,91.0,582.0,79.0,36.0,26.0,46.0,71.0,1783.0,234.0,256.0,2.0,121.0,0.0,129.0,1.0,150.0,111.0,190.0,446.0,7.0,48.0,85.0,15.0,248.0,54.0,168.0,366.0,94.0,6.0,23.0,546.0,67.0,563.0,26.0,11.0,145.0,11.0,185.0,1248.0,207.0,0.0,312.0,52.0,42.0,337.0,37.0,43.4,9.0,38.0,1109.0,14.0,1145.0,20.0,27.0,100.0,1575.0,3333.0,124.0,140.0,6.0,94.0,145.0,57.0,534.0,149.0,4.0,1063.0,34.0,52.0,1945.0,212.0,1145.0,139.0,251.0,891.0,0.0,163.0,697.0,95.0,23.0,756.0,362.0,68.0,353.0,266.0,137.0,18.0,633.0,6.0,392.0,51.0,75.0,90.0,42.0,1926.0,444.0,355.0,2787.0,4.0,450.0,2795.0,1264.0,580.0,119.0,771.0,97.0,60.0,447.0,150.0,71.0,66.0,239.0,3002.0,42.0,31.0,888.0,24.0,10.0,469.0,167.0,152.0,344.0,7.0,146.0,26.0,1.0,3.0,63.0,106.0,445.0,179.0,2029.0,974.0,27.0,96.0,6.0,59.0,0.0,139.0,37.0,944.0,143.0,171.0,486.0,102.0,51.0,14.0,74.0,161.0,61.0,874.0,389.0,194.0,101.0,27.0,20.0,28.0,159.0,231.0,20.0,16.0,42.0,39.0,30.0,75.0,222.0,888.0,140.0,110.0,247.0,330.0,17.0,0.0,301.0,34.0,741.0,10.0,38.0,167.0,19.0,43.0,3.0,9.0,8.0,244.0,68.0,138.0,148.0,5.0,972.0,286.0,76.0,361.0,35.0,136.0,61.0,4.0,27.0,221.0,13.0,23.0,43.0,0.0,866.0,85.0,170.0,8.0,118.0,30.0,17.0,0.0,120.0,196.0,95.0,67.0,9.0,1127.0,187.0,104.0,57.0,47.0,107.0,34.0,1450.0,185.0,15.0,72.0,11.0,61.0,594.0,3.0,653.0,61.0,10.0,97.0,32.0,102.0,41.0,58.0,396.0,120.0,332.1298198719,2018-01-28,,2018-4,332.6318226554904,273.38333854290005, +223,223,194.0,5.0,6.0,2.0,210.0,102.0,10.0,88.0,145.0,166.0,17.0,759.0,6.0,5.0,35.0,5.0,21.0,4.0,185.0,49.0,9.0,53.0,148.0,165.0,41.0,277.0,25.0,9.0,59.0,20.0,6.0,105.0,470.0,76.0,5.0,14.0,104.0,26.0,123.0,211.0,6.0,1330.0,161.0,206.0,8.0,87.0,6.0,31.0,1537.0,135.0,85.0,392.0,80.0,23.0,34.0,35.0,65.0,1567.0,220.0,171.0,4.0,97.0,1.0,108.0,1.0,138.0,72.0,165.0,279.0,5.0,44.0,57.0,9.0,253.0,35.0,134.0,260.0,76.0,2.0,25.0,486.0,51.0,537.0,19.0,11.0,182.0,174.0,154.0,821.0,237.0,0.0,315.0,76.0,63.0,333.0,41.0,49.0,8.0,48.0,959.0,19.0,613.0,22.0,27.0,75.0,1388.0,3539.0,113.0,90.0,7.0,69.0,125.0,56.0,474.0,141.0,5.0,1005.0,36.0,70.0,2059.0,161.0,1133.0,135.0,252.0,831.0,1.0,125.0,512.0,106.0,8.0,672.0,311.0,46.0,366.0,226.0,121.0,7.0,527.0,8.0,328.0,35.0,56.0,84.0,36.0,1751.0,331.0,287.0,2848.0,1.0,287.0,2448.0,964.0,540.0,95.0,570.0,73.0,71.0,348.0,157.0,65.0,39.0,247.0,2741.0,24.0,34.0,786.0,29.0,9.0,585.0,138.0,123.0,322.0,16.0,117.0,19.0,6.0,5.0,49.0,117.0,385.0,106.0,1524.0,827.0,26.0,75.0,11.0,95.0,1.0,81.0,52.0,694.0,130.0,123.0,365.0,80.0,55.0,20.0,65.0,73.0,63.0,589.0,330.0,175.0,87.0,29.0,19.0,18.0,121.0,161.0,36.0,19.0,35.0,38.0,44.0,68.0,223.0,826.0,107.0,115.0,176.0,302.0,15.0,2.0,193.0,28.0,611.0,17.0,29.0,161.0,27.0,50.0,2.0,6.0,9.0,165.0,22.0,98.0,147.0,2.0,1219.0,273.0,74.0,332.0,75.0,82.0,70.0,8.0,22.0,201.0,6.0,17.0,21.0,2.0,702.0,66.0,194.0,10.0,99.0,23.0,13.0,1.0,279.0,182.0,91.0,94.0,8.0,1047.0,147.0,59.0,34.0,48.0,57.0,39.0,1340.0,208.0,20.0,28.0,16.0,54.0,533.0,7.0,568.0,53.0,5.0,77.0,37.0,118.0,52.0,49.0,361.0,100.0,428.3304205518,2018-02-04,,2018-5,428.2040732970613,283.0741321951, +224,224,213.0,5.0,4.0,3.0,134.0,80.0,11.0,59.0,146.0,107.0,13.0,518.0,1.0,11.0,15.0,0.0,13.0,2.0,153.0,16.0,12.0,65.0,100.0,192.0,44.0,148.0,21.0,6.0,36.0,18.0,0.0,82.0,303.0,46.0,2.0,8.0,103.0,12.0,132.0,161.0,4.0,948.0,146.0,178.0,8.0,75.0,11.0,22.0,1024.0,114.0,78.0,326.0,67.0,19.0,17.0,30.0,55.0,1371.0,195.0,121.0,6.0,79.0,1.0,116.0,2.0,93.0,57.0,142.0,239.0,2.0,24.0,39.0,6.0,194.0,26.0,95.0,174.0,79.0,2.0,15.0,434.0,46.0,371.0,6.0,8.0,118.0,49.0,107.0,649.0,180.0,0.0,231.0,42.0,49.0,210.0,67.0,29.0,7.0,31.0,802.0,15.0,474.0,9.0,7.0,43.0,1050.0,3139.0,128.0,64.0,5.0,82.0,81.0,59.0,348.0,102.0,2.0,858.0,26.0,112.0,1974.0,135.0,738.0,95.0,204.0,727.0,2.0,77.0,367.0,75.0,13.0,471.0,211.0,34.0,233.0,165.0,101.0,24.0,506.0,1.0,249.0,33.0,54.0,62.0,35.0,1505.0,475.0,225.0,2107.0,1.0,245.0,2213.0,1015.0,478.0,81.0,556.0,41.0,50.0,269.0,107.0,102.0,36.0,220.0,2130.0,19.0,29.0,628.0,36.0,2.0,545.0,117.0,111.0,278.0,7.0,80.0,27.0,1.0,2.0,25.0,89.0,324.0,87.0,4170.0,573.0,12.0,80.0,5.0,35.0,2.0,61.0,13.0,544.0,97.0,92.0,322.0,32.0,58.0,15.0,52.0,53.0,34.0,553.0,261.0,114.0,54.0,37.0,23.0,20.0,81.0,122.0,48.0,24.0,42.0,64.0,21.0,37.0,288.0,539.0,101.0,118.0,112.0,243.0,7.0,0.0,116.0,30.0,536.0,15.0,17.0,123.0,14.0,54.0,14.0,21.0,5.0,138.0,24.0,63.0,121.0,6.0,903.0,227.0,56.0,243.0,27.0,72.0,24.0,4.0,20.0,158.0,7.0,10.0,43.0,5.0,487.0,43.0,155.0,11.0,99.0,12.0,12.0,2.0,76.0,137.0,68.0,58.0,8.0,1085.0,118.0,53.0,58.0,49.0,19.0,21.0,1153.0,141.0,25.0,27.0,7.0,43.0,425.0,4.0,439.0,21.0,10.0,62.0,25.0,79.0,46.0,44.0,426.0,89.0,580.1170556479,2018-02-11,,2018-6,578.4681341649462,475.77107409426003, +225,225,212.0,10.0,5.0,3.0,156.0,122.0,15.0,121.0,186.0,129.0,22.0,771.0,2.0,8.0,17.0,1.0,9.0,3.0,295.0,27.0,10.0,63.0,91.0,197.0,54.0,210.0,15.0,6.0,60.0,22.0,5.0,119.0,404.0,57.0,4.0,9.0,166.0,21.0,143.0,221.0,5.0,1195.0,170.0,196.0,20.0,65.0,4.0,22.0,1280.0,139.0,92.0,428.0,59.0,28.0,31.0,48.0,81.0,1640.0,229.0,148.0,7.0,82.0,1.0,111.0,1.0,121.0,70.0,109.0,232.0,4.0,24.0,73.0,5.0,313.0,19.0,147.0,228.0,101.0,0.0,21.0,425.0,45.0,465.0,31.0,7.0,161.0,5.0,144.0,809.0,187.0,0.0,330.0,74.0,51.0,250.0,50.0,37.0,15.0,34.0,1015.0,16.0,513.0,8.0,19.0,77.0,1836.0,4218.0,125.0,86.0,7.0,67.0,98.0,57.0,432.0,105.0,3.0,971.0,32.0,62.0,2506.0,160.0,974.0,118.0,259.0,883.0,0.0,129.0,467.0,100.0,35.0,553.0,302.0,42.0,388.0,244.0,195.0,8.0,400.0,4.0,353.0,34.0,58.0,73.0,43.0,2328.0,489.0,274.0,2722.0,0.0,323.0,3245.0,1462.0,665.0,113.0,751.0,28.0,65.0,353.0,150.0,218.0,37.0,180.0,2902.0,36.0,58.0,971.0,41.0,5.0,698.0,126.0,123.0,370.0,12.0,153.0,37.0,1.0,1.0,42.0,122.0,548.0,72.0,2944.0,740.0,15.0,74.0,7.0,83.0,2.0,89.0,18.0,739.0,141.0,96.0,354.0,32.0,52.0,31.0,77.0,62.0,50.0,692.0,290.0,177.0,68.0,26.0,25.0,32.0,97.0,140.0,19.0,13.0,40.0,40.0,19.0,54.0,229.0,726.0,131.0,79.0,198.0,233.0,12.0,1.0,135.0,19.0,644.0,13.0,28.0,158.0,19.0,67.0,7.0,11.0,5.0,141.0,27.0,98.0,172.0,3.0,1005.0,214.0,91.0,336.0,24.0,88.0,62.0,4.0,31.0,500.0,9.0,9.0,32.0,5.0,689.0,47.0,172.0,5.0,124.0,18.0,9.0,1.0,29.0,141.0,96.0,259.0,7.0,1386.0,137.0,81.0,45.0,68.0,44.0,22.0,1374.0,187.0,22.0,29.0,6.0,46.0,529.0,6.0,580.0,31.0,15.0,87.0,33.0,109.0,70.0,61.0,385.0,231.0,575.4739516602,2018-02-18,,2018-7,577.7430199211944,575.4739516602, +226,226,235.0,16.0,8.0,1.0,151.0,102.0,13.0,101.0,203.0,97.0,19.0,1617.0,1.0,8.0,27.0,2.0,9.0,1.0,257.0,39.0,16.0,83.0,145.0,229.0,47.0,251.0,25.0,41.0,70.0,11.0,4.0,109.0,450.0,49.0,1.0,26.0,95.0,23.0,157.0,216.0,2.0,931.0,204.0,225.0,10.0,89.0,4.0,39.0,1308.0,153.0,95.0,367.0,97.0,30.0,30.0,58.0,74.0,1755.0,203.0,173.0,3.0,100.0,6.0,102.0,3.0,128.0,137.0,206.0,293.0,5.0,30.0,66.0,8.0,240.0,34.0,129.0,252.0,110.0,1.0,26.0,580.0,73.0,540.0,23.0,9.0,199.0,5.0,129.0,761.0,196.0,1.0,269.0,82.0,65.0,274.0,56.0,47.0,3.0,73.0,1062.0,13.0,509.0,30.0,25.0,81.0,3470.0,4250.0,87.0,115.0,5.0,102.0,118.0,52.0,521.0,110.0,4.0,1035.0,33.0,38.0,2680.0,187.0,1179.0,122.0,272.0,1109.0,1.0,166.0,477.0,83.0,24.0,618.0,310.0,58.0,373.0,198.0,248.0,17.0,572.0,14.0,380.0,40.0,57.0,116.0,33.0,2280.0,438.0,287.0,3037.0,16.0,399.0,3216.0,1324.0,603.0,116.0,716.0,54.0,59.0,429.0,137.0,2593.0,39.0,220.0,3078.0,24.0,50.0,1162.0,31.0,11.0,618.0,161.0,109.0,428.0,12.0,77.0,27.0,6.0,2.0,71.0,106.0,428.0,104.0,2748.0,711.0,15.0,78.0,12.0,77.0,0.0,73.0,21.0,795.0,105.0,112.0,410.0,27.0,44.0,18.0,34.0,59.0,82.0,657.0,289.0,174.0,84.0,45.0,29.0,28.0,99.0,161.0,22.0,23.0,44.0,34.0,38.0,79.0,186.0,652.0,101.0,109.0,184.0,249.0,15.0,2.0,218.0,33.0,611.0,13.0,15.0,167.0,24.0,68.0,12.0,30.0,11.0,169.0,44.0,115.0,145.0,9.0,1052.0,257.0,70.0,346.0,29.0,127.0,62.0,4.0,23.0,208.0,18.0,11.0,46.0,5.0,747.0,55.0,205.0,7.0,138.0,25.0,11.0,1.0,25.0,176.0,99.0,80.0,7.0,1594.0,138.0,86.0,58.0,70.0,33.0,34.0,1525.0,180.0,16.0,32.0,13.0,47.0,568.0,9.0,560.0,45.0,9.0,76.0,31.0,111.0,60.0,67.0,481.0,168.0,639.631189255,2018-02-25,,2018-8,639.606404136548,509.3376834520001, +227,227,216.0,9.0,4.0,0.0,148.0,103.0,21.0,181.0,164.0,127.0,17.0,840.0,1.0,11.0,18.0,1.0,8.0,5.0,235.0,20.0,15.0,50.0,102.0,206.0,47.0,208.0,18.0,7.0,46.0,35.0,6.0,130.0,456.0,65.0,0.0,21.0,295.0,17.0,112.0,176.0,2.0,860.0,151.0,216.0,8.0,72.0,8.0,24.0,1090.0,175.0,84.0,344.0,72.0,19.0,31.0,37.0,50.0,1691.0,183.0,212.0,2.0,101.0,0.0,176.0,0.0,107.0,99.0,132.0,301.0,2.0,108.0,65.0,8.0,177.0,33.0,145.0,262.0,105.0,4.0,27.0,405.0,52.0,496.0,14.0,8.0,184.0,10.0,111.0,882.0,237.0,0.0,261.0,69.0,89.0,264.0,60.0,35.0,1.0,29.0,928.0,14.0,474.0,14.0,37.0,92.0,1550.0,3879.0,127.0,92.0,9.0,65.0,117.0,57.0,392.0,121.0,2.0,1058.0,27.0,54.0,3131.0,168.0,963.0,303.0,242.0,876.0,1.0,122.0,400.0,108.0,25.0,609.0,358.0,62.0,292.0,204.0,246.0,15.0,530.0,6.0,436.0,32.0,48.0,107.0,27.0,2014.0,420.0,336.0,2619.0,29.0,421.0,2766.0,1321.0,598.0,96.0,582.0,23.0,46.0,315.0,89.0,163.0,33.0,175.0,3578.0,35.0,51.0,833.0,30.0,3.0,952.0,149.0,112.0,331.0,5.0,138.0,19.0,1.0,10.0,46.0,116.0,428.0,123.0,2142.0,720.0,16.0,77.0,8.0,60.0,0.0,62.0,22.0,825.0,94.0,85.0,342.0,46.0,42.0,13.0,61.0,44.0,72.0,706.0,299.0,145.0,71.0,38.0,19.0,15.0,84.0,163.0,27.0,16.0,38.0,34.0,24.0,52.0,205.0,700.0,117.0,86.0,207.0,201.0,11.0,0.0,172.0,25.0,641.0,16.0,12.0,120.0,23.0,64.0,9.0,19.0,0.0,176.0,31.0,76.0,160.0,8.0,4310.0,203.0,89.0,287.0,25.0,116.0,66.0,5.0,13.0,159.0,11.0,6.0,38.0,0.0,648.0,50.0,185.0,9.0,125.0,12.0,15.0,0.0,30.0,162.0,83.0,86.0,4.0,1395.0,146.0,54.0,38.0,52.0,37.0,30.0,1268.0,161.0,17.0,35.0,23.0,69.0,596.0,13.0,492.0,27.0,4.0,71.0,20.0,88.0,46.0,38.0,287.0,139.0,643.5733451692,2018-03-04,,2018-9,641.8728507711403,521.7497275979, +228,228,145.0,10.0,2.0,0.0,152.0,85.0,18.0,86.0,135.0,74.0,13.0,728.0,2.0,4.0,13.0,5.0,5.0,2.0,200.0,25.0,13.0,85.0,64.0,167.0,57.0,172.0,6.0,3.0,34.0,21.0,0.0,104.0,330.0,39.0,2.0,15.0,115.0,13.0,92.0,140.0,3.0,879.0,132.0,186.0,14.0,64.0,5.0,42.0,1075.0,107.0,68.0,309.0,91.0,25.0,16.0,42.0,62.0,1360.0,165.0,161.0,2.0,85.0,1.0,72.0,2.0,99.0,79.0,123.0,243.0,2.0,46.0,202.0,3.0,158.0,13.0,128.0,163.0,66.0,0.0,16.0,345.0,45.0,372.0,12.0,3.0,158.0,8.0,84.0,587.0,142.0,1.0,223.0,52.0,37.0,209.0,43.0,28.0,3.0,36.0,833.0,6.0,388.0,21.0,19.0,51.0,2090.0,2633.0,65.0,92.0,5.0,58.0,78.0,39.0,372.0,77.0,2.0,788.0,19.0,26.0,2587.0,117.0,946.0,116.0,197.0,672.0,2.0,116.0,343.0,79.0,22.0,569.0,255.0,31.0,243.0,195.0,122.0,5.0,444.0,10.0,240.0,25.0,38.0,97.0,11.0,1440.0,333.0,246.0,2013.0,24.0,325.0,2142.0,914.0,556.0,92.0,412.0,25.0,45.0,267.0,92.0,324.0,22.0,129.0,2141.0,29.0,32.0,735.0,41.0,18.0,520.0,114.0,95.0,274.0,12.0,81.0,24.0,0.0,2.0,35.0,82.0,318.0,98.0,1912.0,751.0,17.0,75.0,9.0,55.0,1.0,39.0,17.0,605.0,78.0,108.0,274.0,33.0,28.0,15.0,39.0,35.0,46.0,651.0,262.0,153.0,59.0,17.0,10.0,16.0,67.0,124.0,25.0,10.0,29.0,36.0,21.0,47.0,178.0,488.0,75.0,65.0,171.0,160.0,4.0,1.0,120.0,22.0,496.0,13.0,13.0,104.0,11.0,43.0,6.0,7.0,4.0,152.0,39.0,66.0,184.0,6.0,1650.0,240.0,80.0,245.0,41.0,79.0,54.0,3.0,23.0,135.0,7.0,12.0,25.0,1.0,618.0,44.0,137.0,6.0,98.0,22.0,12.0,1.0,28.0,134.0,74.0,65.0,2.0,839.0,147.0,79.0,30.0,19.0,23.0,23.0,1190.0,163.0,19.0,30.0,5.0,43.0,427.0,3.0,463.0,21.0,16.0,56.0,19.0,100.0,42.0,42.0,271.0,119.0,752.6331722288,2018-03-11,,2018-10,751.5877394996733,576.09169058854, +229,229,241.0,6.0,3.0,1.0,183.0,121.0,10.0,79.0,153.0,136.0,21.0,974.0,2.0,8.0,34.0,3.0,7.0,2.0,272.0,36.0,16.0,72.0,108.0,226.0,65.0,230.0,11.0,8.0,59.0,44.0,3.0,138.0,482.0,57.0,5.0,29.0,118.0,15.0,153.0,220.0,6.0,928.0,210.0,210.0,20.0,115.0,2.0,21.0,1285.0,114.0,94.0,385.0,114.0,39.0,23.0,41.0,70.0,1440.0,203.0,225.0,6.0,81.0,0.0,122.0,5.0,104.0,108.0,165.0,239.0,1.0,49.0,63.0,2.0,266.0,33.0,144.0,261.0,104.0,0.0,13.0,514.0,43.0,508.0,23.0,7.0,161.0,10.0,104.0,756.0,226.0,0.0,279.0,168.0,71.0,295.0,35.0,43.0,2.0,54.0,1026.0,9.0,533.0,22.0,36.0,77.0,1650.0,2432.0,87.0,97.0,5.0,69.0,113.0,60.0,459.0,119.0,6.0,1017.0,25.0,39.0,2455.0,140.0,1007.0,109.0,225.0,883.0,0.0,125.0,468.0,132.0,18.0,661.0,355.0,42.0,332.0,208.0,136.0,16.0,546.0,6.0,352.0,43.0,61.0,98.0,40.0,1429.0,378.0,352.0,2611.0,26.0,482.0,2011.0,967.0,554.0,110.0,398.0,38.0,79.0,345.0,119.0,137.0,27.0,188.0,2483.0,35.0,38.0,985.0,48.0,8.0,683.0,131.0,103.0,359.0,18.0,117.0,25.0,1.0,1.0,53.0,98.0,356.0,117.0,2042.0,803.0,28.0,105.0,10.0,42.0,1.0,68.0,23.0,719.0,137.0,125.0,419.0,47.0,42.0,8.0,42.0,73.0,70.0,724.0,333.0,177.0,81.0,30.0,16.0,28.0,100.0,160.0,41.0,11.0,51.0,38.0,34.0,67.0,202.0,520.0,113.0,96.0,225.0,141.0,2.0,0.0,196.0,35.0,669.0,14.0,10.0,146.0,18.0,141.0,7.0,25.0,4.0,134.0,40.0,86.0,194.0,5.0,1487.0,266.0,104.0,321.0,39.0,124.0,64.0,2.0,32.0,182.0,20.0,13.0,64.0,1.0,811.0,61.0,158.0,9.0,112.0,22.0,14.0,0.0,34.0,171.0,73.0,83.0,3.0,858.0,191.0,95.0,35.0,38.0,41.0,30.0,1213.0,224.0,18.0,40.0,10.0,78.0,610.0,9.0,621.0,30.0,16.0,148.0,32.0,116.0,51.0,44.0,379.0,117.0,565.5162188781,2018-03-18,,2018-11,567.8726724288672,557.87769530124, +230,230,227.0,2.0,8.0,0.0,187.0,155.0,4.0,125.0,214.0,129.0,11.0,825.0,0.0,7.0,25.0,0.0,21.0,4.0,288.0,18.0,14.0,63.0,117.0,200.0,79.0,278.0,32.0,13.0,60.0,29.0,8.0,138.0,476.0,57.0,5.0,23.0,86.0,28.0,145.0,211.0,3.0,968.0,160.0,232.0,8.0,111.0,10.0,28.0,1179.0,139.0,115.0,439.0,113.0,43.0,25.0,37.0,80.0,1488.0,247.0,226.0,3.0,108.0,1.0,129.0,0.0,140.0,171.0,180.0,267.0,4.0,67.0,54.0,7.0,431.0,28.0,123.0,288.0,85.0,0.0,25.0,505.0,65.0,559.0,13.0,8.0,174.0,7.0,119.0,708.0,232.0,0.0,313.0,76.0,52.0,322.0,56.0,43.0,1.0,54.0,1138.0,11.0,703.0,14.0,27.0,98.0,1753.0,1935.0,51.0,126.0,5.0,85.0,139.0,53.0,573.0,119.0,1.0,1030.0,28.0,46.0,3050.0,174.0,1102.0,113.0,292.0,950.0,0.0,157.0,623.0,107.0,15.0,699.0,435.0,48.0,433.0,216.0,174.0,24.0,577.0,15.0,290.0,53.0,72.0,148.0,33.0,1479.0,407.0,338.0,2798.0,27.0,543.0,1771.0,1040.0,508.0,99.0,476.0,33.0,53.0,385.0,149.0,91.0,36.0,200.0,2307.0,21.0,27.0,776.0,28.0,7.0,460.0,161.0,113.0,389.0,10.0,105.0,27.0,1.0,3.0,42.0,92.0,365.0,152.0,2841.0,859.0,23.0,78.0,10.0,71.0,0.0,93.0,17.0,734.0,116.0,134.0,393.0,38.0,39.0,19.0,37.0,49.0,55.0,902.0,339.0,104.0,77.0,35.0,27.0,25.0,137.0,149.0,42.0,17.0,57.0,29.0,33.0,65.0,263.0,516.0,142.0,91.0,250.0,141.0,11.0,1.0,182.0,33.0,621.0,12.0,15.0,143.0,14.0,444.0,6.0,11.0,7.0,136.0,25.0,96.0,197.0,5.0,1213.0,295.0,84.0,324.0,60.0,128.0,58.0,4.0,24.0,328.0,7.0,14.0,42.0,0.0,760.0,78.0,202.0,5.0,78.0,29.0,16.0,0.0,23.0,171.0,72.0,70.0,12.0,928.0,182.0,91.0,64.0,36.0,30.0,42.0,1237.0,182.0,25.0,40.0,13.0,53.0,554.0,7.0,601.0,24.0,6.0,105.0,37.0,90.0,38.0,49.0,406.0,114.0,350.3126336585,2018-03-25,,2018-12,350.3005902961113,311.37789454536, +231,231,276.0,8.0,2.0,2.0,159.0,116.0,12.0,121.0,248.0,105.0,19.0,767.0,2.0,9.0,39.0,4.0,11.0,2.0,269.0,39.0,21.0,65.0,103.0,266.0,56.0,235.0,32.0,6.0,53.0,25.0,5.0,139.0,483.0,63.0,0.0,14.0,70.0,22.0,155.0,247.0,1.0,1359.0,158.0,238.0,5.0,111.0,10.0,26.0,1273.0,86.0,107.0,446.0,135.0,56.0,22.0,59.0,59.0,1548.0,350.0,213.0,1.0,134.0,0.0,133.0,2.0,114.0,146.0,125.0,253.0,1.0,28.0,49.0,6.0,313.0,35.0,152.0,275.0,77.0,2.0,18.0,441.0,66.0,614.0,21.0,2.0,143.0,15.0,121.0,806.0,229.0,0.0,334.0,54.0,71.0,331.0,31.0,56.0,3.0,56.0,1092.0,16.0,543.0,20.0,21.0,73.0,1750.0,1468.0,69.0,82.0,8.0,72.0,85.0,52.0,538.0,144.0,5.0,1099.0,42.0,49.0,2945.0,164.0,1011.0,65.0,351.0,1151.0,1.0,137.0,486.0,115.0,18.0,640.0,366.0,56.0,333.0,213.0,118.0,15.0,532.0,11.0,287.0,26.0,76.0,116.0,22.0,1491.0,415.0,291.0,2883.0,30.0,464.0,1695.0,954.0,455.0,134.0,403.0,25.0,65.0,335.0,187.0,55.0,25.0,188.0,2051.0,26.0,62.0,692.0,30.0,15.0,486.0,120.0,123.0,381.0,7.0,121.0,29.0,0.0,2.0,44.0,80.0,329.0,127.0,2389.0,858.0,45.0,94.0,3.0,51.0,0.0,86.0,21.0,814.0,121.0,110.0,309.0,31.0,26.0,15.0,61.0,64.0,54.0,775.0,409.0,164.0,88.0,33.0,36.0,28.0,111.0,152.0,34.0,10.0,39.0,36.0,27.0,63.0,178.0,520.0,135.0,96.0,253.0,152.0,6.0,2.0,183.0,33.0,626.0,14.0,13.0,168.0,12.0,91.0,2.0,11.0,6.0,174.0,34.0,88.0,164.0,5.0,1040.0,311.0,89.0,356.0,83.0,100.0,70.0,10.0,34.0,206.0,10.0,14.0,37.0,3.0,627.0,61.0,193.0,9.0,94.0,35.0,18.0,1.0,26.0,191.0,99.0,48.0,3.0,944.0,174.0,80.0,68.0,27.0,35.0,26.0,1406.0,218.0,21.0,34.0,19.0,51.0,605.0,6.0,670.0,28.0,8.0,103.0,32.0,71.0,49.0,37.0,335.0,96.0,208.7979360707,2018-04-01,,2018-13,208.2811793109595,208.79793607070002, +232,232,209.0,6.0,6.0,1.0,182.0,165.0,13.0,126.0,189.0,106.0,15.0,795.0,1.0,20.0,38.0,1.0,11.0,4.0,227.0,34.0,17.0,52.0,89.0,208.0,53.0,233.0,22.0,9.0,48.0,26.0,7.0,121.0,479.0,54.0,0.0,13.0,80.0,16.0,120.0,210.0,2.0,1089.0,152.0,198.0,18.0,73.0,6.0,37.0,1265.0,109.0,81.0,420.0,83.0,26.0,19.0,45.0,52.0,1498.0,343.0,224.0,1.0,122.0,0.0,87.0,0.0,128.0,167.0,72.0,293.0,4.0,18.0,93.0,8.0,240.0,33.0,135.0,287.0,98.0,1.0,24.0,921.0,52.0,585.0,23.0,10.0,151.0,11.0,105.0,710.0,241.0,0.0,305.0,64.0,44.0,252.0,24.0,35.0,3.0,74.0,1063.0,5.0,416.0,18.0,28.0,82.0,1508.0,1141.0,55.0,99.0,4.0,85.0,98.0,59.0,467.0,124.0,1.0,923.0,23.0,41.0,2367.0,159.0,1280.0,43.0,380.0,756.0,0.0,141.0,426.0,96.0,22.0,667.0,319.0,51.0,311.0,222.0,173.0,15.0,448.0,9.0,255.0,35.0,80.0,97.0,34.0,1519.0,409.0,275.0,2698.0,28.0,445.0,1397.0,1114.0,414.0,117.0,339.0,37.0,83.0,336.0,169.0,57.0,15.0,140.0,1837.0,30.0,41.0,755.0,33.0,8.0,340.0,139.0,125.0,411.0,10.0,124.0,15.0,1.0,1.0,47.0,69.0,356.0,112.0,1979.0,978.0,28.0,87.0,12.0,57.0,0.0,65.0,33.0,827.0,204.0,120.0,270.0,54.0,31.0,20.0,57.0,44.0,45.0,813.0,395.0,164.0,79.0,31.0,20.0,26.0,112.0,136.0,19.0,14.0,19.0,43.0,31.0,74.0,197.0,601.0,150.0,101.0,211.0,158.0,10.0,0.0,228.0,31.0,536.0,10.0,16.0,179.0,21.0,95.0,6.0,10.0,4.0,149.0,27.0,103.0,194.0,7.0,759.0,303.0,81.0,447.0,65.0,116.0,51.0,7.0,22.0,187.0,10.0,15.0,36.0,2.0,718.0,53.0,205.0,13.0,85.0,17.0,10.0,0.0,28.0,178.0,86.0,43.0,3.0,871.0,207.0,68.0,36.0,37.0,41.0,25.0,1390.0,226.0,29.0,47.0,21.0,77.0,523.0,14.0,595.0,32.0,7.0,68.0,40.0,72.0,40.0,37.0,314.0,101.0,71.16407540979999,2018-04-08,,2018-14,74.04299311389786,161.9088053416, +233,233,230.0,13.0,7.0,1.0,183.0,112.0,10.0,117.0,214.0,114.0,15.0,842.0,0.0,11.0,34.0,3.0,20.0,0.0,271.0,36.0,14.0,86.0,81.0,177.0,45.0,320.0,39.0,9.0,38.0,42.0,6.0,130.0,536.0,61.0,1.0,11.0,49.0,19.0,109.0,249.0,3.0,846.0,150.0,246.0,11.0,96.0,12.0,33.0,1200.0,76.0,74.0,434.0,83.0,39.0,30.0,62.0,54.0,1168.0,267.0,296.0,5.0,101.0,1.0,101.0,1.0,107.0,170.0,84.0,287.0,3.0,17.0,99.0,15.0,260.0,26.0,151.0,297.0,112.0,1.0,16.0,539.0,53.0,511.0,16.0,4.0,113.0,9.0,114.0,717.0,247.0,1.0,358.0,78.0,61.0,312.0,27.0,32.0,0.0,131.0,1053.0,13.0,407.0,25.0,29.0,72.0,1567.0,950.0,48.0,117.0,9.0,74.0,115.0,71.0,457.0,133.0,3.0,996.0,20.0,44.0,2431.0,186.0,1073.0,28.0,351.0,885.0,0.0,165.0,501.0,100.0,16.0,704.0,357.0,74.0,395.0,223.0,184.0,25.0,471.0,11.0,250.0,30.0,86.0,148.0,36.0,1319.0,472.0,285.0,2717.0,28.0,525.0,1209.0,1142.0,311.0,83.0,335.0,37.0,51.0,372.0,128.0,75.0,36.0,122.0,1765.0,34.0,38.0,629.0,30.0,15.0,299.0,133.0,112.0,400.0,11.0,117.0,37.0,2.0,3.0,48.0,66.0,286.0,139.0,1578.0,925.0,27.0,69.0,7.0,56.0,0.0,86.0,37.0,786.0,72.0,150.0,317.0,49.0,23.0,11.0,37.0,28.0,62.0,848.0,335.0,163.0,106.0,47.0,34.0,18.0,97.0,176.0,52.0,19.0,51.0,38.0,32.0,72.0,170.0,556.0,136.0,81.0,221.0,152.0,10.0,2.0,215.0,45.0,563.0,16.0,22.0,136.0,69.0,47.0,2.0,4.0,4.0,184.0,49.0,112.0,212.0,2.0,662.0,288.0,82.0,395.0,46.0,117.0,52.0,6.0,16.0,155.0,9.0,15.0,39.0,0.0,714.0,61.0,176.0,7.0,83.0,32.0,23.0,0.0,34.0,187.0,92.0,45.0,6.0,718.0,182.0,73.0,42.0,43.0,24.0,41.0,1517.0,196.0,21.0,31.0,17.0,89.0,700.0,11.0,710.0,35.0,6.0,106.0,19.0,89.0,48.0,28.0,312.0,95.0,28.286942747199998,2018-04-15,,2018-15,27.30980585824227,138.55775481991998, +234,234,170.0,17.0,9.0,5.0,266.0,59.0,4.0,109.0,143.0,84.0,11.0,727.0,1.0,11.0,37.0,3.0,15.0,1.0,220.0,44.0,11.0,75.0,106.0,204.0,65.0,160.0,38.0,8.0,43.0,28.0,8.0,144.0,483.0,73.0,3.0,6.0,33.0,19.0,87.0,175.0,8.0,464.0,185.0,249.0,10.0,82.0,12.0,15.0,1011.0,94.0,63.0,603.0,81.0,10.0,28.0,77.0,39.0,1097.0,242.0,166.0,4.0,88.0,1.0,115.0,3.0,80.0,123.0,72.0,284.0,2.0,14.0,70.0,7.0,179.0,38.0,99.0,284.0,92.0,2.0,18.0,406.0,45.0,1820.0,30.0,9.0,151.0,18.0,157.0,689.0,207.0,0.0,302.0,84.0,46.0,258.0,33.0,41.0,1.0,53.0,1058.0,7.0,366.0,29.0,18.0,49.0,1216.0,784.0,558.0,121.0,10.0,63.0,125.0,52.0,563.0,117.0,5.0,806.0,22.0,63.0,2123.0,129.0,944.0,36.0,267.0,805.0,1.0,128.0,501.0,106.0,25.0,501.0,265.0,96.0,425.0,266.0,68.0,27.0,643.0,10.0,254.0,32.0,60.0,72.0,19.0,1125.0,406.0,284.0,1640.0,30.0,521.0,1067.0,622.0,229.0,104.0,356.0,13.0,45.0,344.0,300.0,68.0,32.0,128.0,1210.0,33.0,41.0,575.0,25.0,3.0,286.0,125.0,135.0,452.0,8.0,112.0,18.0,4.0,2.0,31.0,62.0,281.0,123.0,718.0,788.0,28.0,96.0,12.0,57.0,2.0,108.0,33.0,1050.0,109.0,121.0,340.0,36.0,92.0,7.0,41.0,48.0,39.0,665.0,304.0,99.0,83.0,20.0,30.0,19.0,118.0,163.0,42.0,11.0,24.0,34.0,31.0,74.0,157.0,662.0,121.0,72.0,177.0,150.0,20.0,2.0,161.0,25.0,426.0,16.0,8.0,159.0,134.0,36.0,10.0,15.0,8.0,141.0,26.0,130.0,155.0,2.0,829.0,289.0,49.0,258.0,32.0,95.0,65.0,8.0,19.0,166.0,19.0,11.0,25.0,3.0,598.0,83.0,167.0,4.0,84.0,22.0,16.0,2.0,46.0,120.0,81.0,61.0,14.0,748.0,148.0,57.0,46.0,41.0,42.0,38.0,829.0,118.0,28.0,59.0,44.0,95.0,497.0,4.0,583.0,26.0,14.0,94.0,23.0,76.0,52.0,26.0,326.0,72.0,16.0,2018-10-21,,2018-42,15.81853667681844,33.29357442832, +235,235,211.0,7.0,8.0,2.0,290.0,76.0,13.0,84.0,145.0,222.0,8.0,673.0,1.0,14.0,38.0,3.0,6.0,5.0,213.0,41.0,10.0,69.0,90.0,222.0,69.0,221.0,37.0,3.0,58.0,26.0,6.0,123.0,496.0,109.0,1.0,10.0,55.0,30.0,214.0,344.0,2.0,460.0,163.0,456.0,12.0,90.0,6.0,21.0,1118.0,90.0,67.0,767.0,85.0,17.0,24.0,73.0,36.0,1236.0,326.0,176.0,2.0,88.0,0.0,102.0,4.0,116.0,117.0,63.0,333.0,2.0,29.0,83.0,11.0,222.0,28.0,119.0,371.0,96.0,4.0,24.0,508.0,60.0,590.0,20.0,23.0,204.0,12.0,175.0,721.0,220.0,0.0,247.0,82.0,55.0,372.0,33.0,35.0,3.0,37.0,1212.0,6.0,445.0,17.0,18.0,59.0,1301.0,898.0,694.0,105.0,4.0,96.0,119.0,69.0,686.0,132.0,4.0,862.0,27.0,39.0,2322.0,177.0,941.0,51.0,265.0,885.0,0.0,118.0,529.0,136.0,19.0,529.0,326.0,108.0,422.0,254.0,82.0,17.0,682.0,6.0,285.0,48.0,64.0,81.0,27.0,1219.0,440.0,321.0,1680.0,28.0,607.0,1082.0,991.0,292.0,99.0,485.0,18.0,71.0,548.0,335.0,56.0,43.0,157.0,1377.0,39.0,34.0,1044.0,28.0,5.0,349.0,186.0,133.0,517.0,12.0,99.0,24.0,3.0,1.0,45.0,85.0,304.0,148.0,838.0,914.0,28.0,99.0,14.0,73.0,0.0,137.0,42.0,1174.0,94.0,91.0,428.0,106.0,148.0,15.0,49.0,49.0,49.0,622.0,379.0,125.0,58.0,28.0,26.0,25.0,122.0,232.0,46.0,18.0,30.0,38.0,27.0,79.0,152.0,681.0,145.0,67.0,172.0,184.0,17.0,3.0,219.0,34.0,660.0,27.0,22.0,132.0,84.0,33.0,15.0,22.0,8.0,150.0,16.0,113.0,145.0,4.0,973.0,341.0,67.0,205.0,55.0,111.0,71.0,7.0,25.0,218.0,10.0,14.0,14.0,1.0,673.0,81.0,167.0,5.0,82.0,15.0,10.0,0.0,95.0,114.0,84.0,46.0,18.0,964.0,137.0,50.0,48.0,47.0,73.0,42.0,995.0,144.0,19.0,74.0,73.0,180.0,601.0,12.0,582.0,21.0,22.0,77.0,23.0,90.0,49.0,32.0,329.0,109.0,30.93,2018-10-28,,2018-43,32.33043542028281,26.464374611580002, +236,236,218.0,5.0,11.0,0.0,330.0,105.0,10.0,97.0,179.0,91.0,16.0,767.0,4.0,10.0,58.0,1.0,14.0,1.0,231.0,57.0,9.0,83.0,107.0,193.0,62.0,240.0,30.0,6.0,72.0,27.0,14.0,133.0,442.0,79.0,1.0,10.0,36.0,35.0,139.0,222.0,8.0,625.0,190.0,314.0,7.0,88.0,16.0,19.0,1151.0,120.0,77.0,855.0,84.0,20.0,27.0,70.0,65.0,1495.0,536.0,168.0,4.0,144.0,1.0,151.0,7.0,105.0,116.0,75.0,446.0,3.0,33.0,83.0,15.0,194.0,34.0,106.0,366.0,83.0,1.0,20.0,487.0,63.0,610.0,19.0,13.0,146.0,21.0,100.0,641.0,256.0,0.0,229.0,74.0,64.0,416.0,61.0,61.0,2.0,29.0,1214.0,5.0,338.0,17.0,25.0,95.0,1324.0,1109.0,855.0,81.0,9.0,93.0,117.0,70.0,667.0,129.0,4.0,880.0,21.0,46.0,2155.0,170.0,1025.0,55.0,265.0,825.0,1.0,145.0,617.0,146.0,9.0,511.0,443.0,121.0,449.0,251.0,71.0,23.0,886.0,13.0,451.0,53.0,42.0,63.0,8.0,1359.0,431.0,328.0,1584.0,30.0,602.0,1290.0,1168.0,326.0,109.0,628.0,31.0,62.0,474.0,326.0,107.0,51.0,181.0,1469.0,36.0,31.0,807.0,26.0,5.0,325.0,173.0,164.0,504.0,27.0,116.0,26.0,2.0,1.0,38.0,73.0,360.0,196.0,1108.0,1032.0,41.0,114.0,12.0,64.0,2.0,164.0,48.0,1266.0,180.0,207.0,483.0,49.0,57.0,17.0,63.0,56.0,45.0,725.0,422.0,109.0,76.0,36.0,40.0,22.0,119.0,175.0,51.0,8.0,28.0,40.0,43.0,75.0,226.0,647.0,151.0,92.0,199.0,239.0,9.0,6.0,214.0,28.0,599.0,11.0,19.0,141.0,51.0,52.0,19.0,23.0,7.0,168.0,15.0,137.0,128.0,3.0,1147.0,307.0,47.0,186.0,37.0,117.0,92.0,14.0,17.0,211.0,19.0,8.0,35.0,5.0,685.0,81.0,209.0,9.0,114.0,25.0,20.0,4.0,59.0,125.0,104.0,41.0,11.0,1065.0,133.0,58.0,20.0,31.0,82.0,28.0,924.0,151.0,21.0,90.0,44.0,94.0,651.0,11.0,593.0,32.0,20.0,127.0,31.0,90.0,64.0,34.0,469.0,80.0,17.67,2018-11-04,,2018-44,15.136566507358111,231.17304650932007, +237,237,217.0,10.0,12.0,2.0,397.0,91.0,10.0,135.0,195.0,85.0,13.0,723.0,0.0,12.0,48.0,1.0,5.0,2.0,203.0,41.0,9.0,72.0,98.0,174.0,71.0,190.0,22.0,0.0,107.0,20.0,9.0,159.0,408.0,64.0,1.0,9.0,132.0,26.0,113.0,207.0,3.0,842.0,204.0,287.0,21.0,120.0,10.0,23.0,1152.0,116.0,83.0,1073.0,79.0,18.0,38.0,67.0,78.0,1582.0,645.0,213.0,2.0,119.0,1.0,91.0,3.0,109.0,121.0,81.0,523.0,3.0,59.0,101.0,10.0,202.0,36.0,90.0,396.0,119.0,4.0,22.0,545.0,62.0,653.0,22.0,25.0,194.0,19.0,145.0,592.0,256.0,0.0,264.0,74.0,48.0,357.0,69.0,36.0,1.0,30.0,1252.0,12.0,475.0,19.0,26.0,64.0,1372.0,1142.0,629.0,153.0,1.0,103.0,111.0,65.0,698.0,114.0,7.0,786.0,25.0,61.0,2314.0,138.0,951.0,120.0,277.0,794.0,0.0,139.0,626.0,148.0,26.0,635.0,417.0,107.0,455.0,261.0,65.0,20.0,883.0,11.0,424.0,34.0,61.0,118.0,37.0,1455.0,399.0,298.0,1814.0,26.0,676.0,1420.0,919.0,295.0,116.0,651.0,12.0,63.0,519.0,351.0,57.0,39.0,187.0,1631.0,51.0,50.0,812.0,26.0,10.0,566.0,165.0,191.0,593.0,12.0,110.0,30.0,1.0,1.0,50.0,51.0,392.0,192.0,1036.0,1075.0,40.0,133.0,10.0,50.0,1.0,140.0,50.0,1397.0,124.0,171.0,528.0,45.0,35.0,7.0,45.0,52.0,55.0,844.0,433.0,129.0,90.0,36.0,106.0,22.0,124.0,200.0,43.0,11.0,33.0,34.0,31.0,100.0,192.0,774.0,151.0,88.0,244.0,306.0,10.0,2.0,207.0,29.0,532.0,20.0,22.0,153.0,40.0,73.0,12.0,10.0,7.0,158.0,7.0,105.0,135.0,3.0,4271.0,339.0,60.0,214.0,26.0,125.0,74.0,8.0,20.0,192.0,36.0,12.0,29.0,0.0,722.0,99.0,229.0,7.0,134.0,18.0,23.0,0.0,36.0,208.0,85.0,57.0,6.0,1103.0,175.0,53.0,40.0,56.0,31.0,39.0,1050.0,165.0,31.0,57.0,59.0,100.0,630.0,9.0,635.0,31.0,17.0,108.0,24.0,96.0,67.0,31.0,313.0,95.0,42.11,2018-11-11,,2018-45,43.151994555104466,37.67017502608001, +238,238,249.0,6.0,8.0,3.0,330.0,122.0,14.0,100.0,154.0,75.0,13.0,665.0,2.0,6.0,28.0,0.0,13.0,4.0,163.0,35.0,10.0,58.0,127.0,168.0,74.0,199.0,23.0,2.0,79.0,22.0,6.0,157.0,424.0,97.0,6.0,8.0,67.0,23.0,102.0,219.0,7.0,751.0,224.0,242.0,9.0,88.0,19.0,19.0,1137.0,112.0,96.0,912.0,165.0,23.0,32.0,68.0,71.0,1465.0,638.0,170.0,3.0,109.0,0.0,102.0,1.0,110.0,107.0,101.0,489.0,2.0,41.0,120.0,3.0,194.0,32.0,102.0,380.0,119.0,3.0,23.0,529.0,69.0,675.0,21.0,13.0,138.0,15.0,114.0,584.0,265.0,0.0,239.0,70.0,54.0,298.0,40.0,49.0,4.0,46.0,1205.0,11.0,360.0,23.0,20.0,89.0,1361.0,1020.0,364.0,122.0,4.0,79.0,111.0,75.0,678.0,162.0,3.0,803.0,34.0,51.0,3545.0,153.0,1244.0,63.0,298.0,781.0,0.0,138.0,568.0,152.0,24.0,586.0,345.0,101.0,495.0,274.0,96.0,21.0,838.0,5.0,321.0,38.0,54.0,114.0,34.0,1473.0,384.0,298.0,1784.0,25.0,772.0,1341.0,912.0,246.0,125.0,728.0,11.0,71.0,462.0,350.0,62.0,46.0,178.0,1996.0,28.0,47.0,650.0,22.0,14.0,402.0,137.0,149.0,635.0,9.0,81.0,29.0,3.0,3.0,44.0,92.0,356.0,155.0,1027.0,1044.0,32.0,126.0,4.0,65.0,0.0,169.0,38.0,1403.0,98.0,186.0,487.0,96.0,33.0,4.0,115.0,30.0,43.0,876.0,344.0,128.0,90.0,25.0,26.0,23.0,124.0,170.0,37.0,13.0,25.0,38.0,33.0,67.0,200.0,823.0,187.0,67.0,205.0,406.0,8.0,2.0,149.0,109.0,591.0,39.0,28.0,169.0,32.0,54.0,11.0,19.0,4.0,148.0,19.0,92.0,131.0,20.0,2381.0,328.0,61.0,245.0,42.0,137.0,71.0,5.0,11.0,231.0,24.0,4.0,25.0,3.0,655.0,86.0,193.0,6.0,132.0,30.0,10.0,0.0,32.0,142.0,88.0,42.0,11.0,1204.0,158.0,49.0,30.0,51.0,55.0,39.0,1046.0,153.0,27.0,63.0,46.0,88.0,627.0,18.0,580.0,40.0,6.0,95.0,29.0,107.0,51.0,31.0,307.0,79.0,23.69,2018-11-18,,2018-46,24.60626185057572,24.40881322108, +239,239,167.0,9.0,10.0,2.0,275.0,102.0,12.0,119.0,168.0,171.0,17.0,760.0,0.0,9.0,39.0,1.0,18.0,2.0,205.0,67.0,9.0,87.0,92.0,235.0,69.0,195.0,32.0,4.0,82.0,24.0,7.0,134.0,471.0,81.0,1.0,15.0,46.0,25.0,122.0,235.0,0.0,899.0,193.0,299.0,13.0,112.0,11.0,18.0,1149.0,141.0,110.0,731.0,101.0,28.0,33.0,94.0,81.0,1651.0,510.0,170.0,1.0,98.0,1.0,252.0,8.0,84.0,127.0,120.0,491.0,0.0,27.0,101.0,8.0,285.0,29.0,118.0,385.0,119.0,3.0,29.0,478.0,66.0,572.0,15.0,13.0,144.0,15.0,148.0,740.0,341.0,0.0,219.0,101.0,62.0,319.0,46.0,37.0,0.0,37.0,1044.0,15.0,589.0,29.0,32.0,125.0,1457.0,1180.0,317.0,115.0,2.0,97.0,119.0,87.0,884.0,171.0,4.0,953.0,31.0,58.0,2860.0,195.0,1250.0,52.0,248.0,974.0,0.0,139.0,676.0,195.0,25.0,637.0,368.0,108.0,443.0,229.0,98.0,26.0,781.0,9.0,286.0,34.0,48.0,158.0,27.0,1560.0,395.0,302.0,1859.0,32.0,665.0,1572.0,1060.0,325.0,88.0,594.0,12.0,72.0,445.0,311.0,104.0,44.0,233.0,1732.0,33.0,41.0,934.0,35.0,4.0,337.0,137.0,147.0,552.0,7.0,130.0,19.0,1.0,3.0,53.0,85.0,430.0,163.0,1286.0,947.0,55.0,94.0,8.0,80.0,0.0,145.0,71.0,1215.0,162.0,151.0,454.0,63.0,50.0,22.0,92.0,66.0,53.0,683.0,393.0,123.0,86.0,38.0,46.0,20.0,143.0,147.0,33.0,17.0,37.0,38.0,42.0,83.0,217.0,891.0,200.0,74.0,186.0,622.0,9.0,2.0,207.0,29.0,794.0,21.0,27.0,187.0,32.0,72.0,10.0,12.0,5.0,143.0,7.0,125.0,143.0,12.0,1189.0,284.0,68.0,200.0,40.0,112.0,94.0,10.0,15.0,224.0,22.0,7.0,23.0,1.0,691.0,90.0,178.0,4.0,139.0,23.0,16.0,0.0,54.0,126.0,90.0,51.0,5.0,1426.0,175.0,57.0,29.0,70.0,54.0,46.0,1305.0,173.0,21.0,39.0,22.0,93.0,700.0,12.0,645.0,24.0,10.0,99.0,33.0,96.0,69.0,46.0,311.0,67.0,23.99,2018-11-25,,2018-47,24.80390280514439,23.99, +240,240,129.0,16.0,6.0,1.0,242.0,116.0,14.0,123.0,164.0,141.0,14.0,707.0,2.0,10.0,51.0,2.0,12.0,6.0,202.0,66.0,11.0,94.0,125.0,305.0,83.0,256.0,27.0,3.0,46.0,26.0,12.0,138.0,518.0,94.0,2.0,7.0,40.0,34.0,152.0,235.0,4.0,858.0,183.0,284.0,11.0,73.0,10.0,30.0,1111.0,117.0,70.0,467.0,102.0,22.0,24.0,108.0,63.0,1832.0,286.0,215.0,3.0,96.0,0.0,117.0,0.0,95.0,107.0,144.0,397.0,5.0,16.0,84.0,10.0,177.0,41.0,132.0,390.0,86.0,3.0,27.0,405.0,83.0,610.0,24.0,27.0,189.0,10.0,192.0,774.0,296.0,0.0,272.0,117.0,68.0,328.0,50.0,37.0,1.0,20.0,897.0,16.0,450.0,30.0,30.0,78.0,1519.0,1157.0,287.0,107.0,4.0,118.0,150.0,107.0,784.0,202.0,5.0,921.0,28.0,66.0,2396.0,170.0,1293.0,46.0,270.0,1044.0,0.0,131.0,595.0,137.0,27.0,572.0,397.0,101.0,475.0,246.0,70.0,22.0,734.0,12.0,316.0,27.0,39.0,92.0,30.0,1440.0,452.0,296.0,1838.0,31.0,572.0,1325.0,1073.0,303.0,102.0,308.0,11.0,65.0,479.0,425.0,43.0,21.0,206.0,1766.0,36.0,57.0,901.0,24.0,5.0,320.0,172.0,180.0,613.0,16.0,134.0,25.0,2.0,1.0,45.0,95.0,406.0,146.0,1523.0,823.0,40.0,147.0,16.0,141.0,0.0,161.0,53.0,1021.0,133.0,131.0,415.0,80.0,31.0,12.0,51.0,43.0,53.0,651.0,420.0,152.0,105.0,32.0,50.0,15.0,141.0,213.0,40.0,16.0,23.0,38.0,23.0,79.0,211.0,895.0,168.0,84.0,189.0,838.0,5.0,3.0,177.0,20.0,648.0,21.0,35.0,185.0,29.0,82.0,8.0,21.0,4.0,130.0,42.0,149.0,139.0,7.0,979.0,310.0,63.0,230.0,35.0,109.0,111.0,8.0,17.0,201.0,21.0,16.0,37.0,0.0,687.0,85.0,190.0,15.0,101.0,24.0,19.0,0.0,26.0,155.0,98.0,50.0,3.0,1282.0,156.0,63.0,25.0,52.0,47.0,44.0,1208.0,128.0,20.0,67.0,27.0,128.0,633.0,7.0,583.0,28.0,10.0,102.0,48.0,118.0,71.0,31.0,384.0,57.0,44.24,2018-12-02,,2018-48,43.728531400467546,39.37417502608001, +241,241,136.0,8.0,6.0,3.0,236.0,102.0,12.0,138.0,164.0,104.0,20.0,701.0,1.0,13.0,37.0,1.0,18.0,2.0,208.0,38.0,8.0,101.0,115.0,307.0,69.0,226.0,22.0,0.0,63.0,20.0,10.0,133.0,400.0,93.0,2.0,18.0,27.0,25.0,111.0,199.0,4.0,656.0,161.0,281.0,18.0,90.0,8.0,15.0,1008.0,102.0,105.0,447.0,119.0,27.0,25.0,104.0,65.0,1734.0,335.0,231.0,0.0,110.0,0.0,116.0,1.0,105.0,100.0,175.0,431.0,0.0,9.0,88.0,8.0,210.0,56.0,110.0,390.0,100.0,2.0,12.0,382.0,151.0,570.0,11.0,9.0,207.0,9.0,117.0,659.0,308.0,0.0,242.0,110.0,63.0,347.0,37.0,30.0,3.0,30.0,940.0,13.0,512.0,24.0,21.0,80.0,1533.0,974.0,163.0,99.0,2.0,117.0,122.0,84.0,775.0,140.0,8.0,888.0,29.0,52.0,2145.0,175.0,1024.0,39.0,296.0,1095.0,0.0,148.0,589.0,538.0,23.0,623.0,343.0,83.0,469.0,267.0,77.0,18.0,686.0,11.0,303.0,49.0,78.0,106.0,37.0,1441.0,423.0,277.0,1927.0,32.0,538.0,1327.0,853.0,279.0,86.0,296.0,17.0,54.0,461.0,378.0,54.0,20.0,201.0,1872.0,25.0,45.0,808.0,38.0,6.0,314.0,191.0,202.0,535.0,15.0,134.0,16.0,1.0,5.0,30.0,99.0,435.0,133.0,1471.0,884.0,45.0,109.0,10.0,72.0,0.0,160.0,30.0,996.0,125.0,131.0,401.0,60.0,58.0,15.0,65.0,41.0,50.0,659.0,400.0,158.0,104.0,22.0,29.0,20.0,105.0,185.0,34.0,24.0,21.0,39.0,51.0,91.0,240.0,756.0,168.0,104.0,173.0,1122.0,18.0,4.0,215.0,26.0,568.0,13.0,28.0,168.0,24.0,78.0,4.0,20.0,5.0,130.0,34.0,124.0,104.0,18.0,883.0,264.0,63.0,233.0,43.0,107.0,91.0,3.0,22.0,199.0,31.0,16.0,38.0,0.0,674.0,106.0,233.0,5.0,99.0,16.0,14.0,1.0,34.0,114.0,105.0,60.0,11.0,1319.0,164.0,68.0,38.0,67.0,89.0,38.0,1172.0,147.0,32.0,63.0,95.0,194.0,610.0,8.0,579.0,18.0,6.0,88.0,33.0,107.0,64.0,56.0,419.0,86.0,49.93,2018-12-09,,2018-49,50.27412321662814,62.56079844360001, +242,242,109.0,7.0,8.0,5.0,200.0,106.0,9.0,85.0,137.0,108.0,20.0,585.0,1.0,9.0,36.0,2.0,10.0,3.0,209.0,43.0,15.0,57.0,122.0,508.0,88.0,166.0,21.0,4.0,47.0,25.0,9.0,145.0,411.0,71.0,3.0,9.0,32.0,27.0,113.0,184.0,4.0,597.0,124.0,272.0,11.0,75.0,13.0,22.0,899.0,125.0,85.0,370.0,84.0,29.0,41.0,84.0,61.0,1490.0,280.0,218.0,4.0,118.0,1.0,102.0,1.0,85.0,110.0,182.0,352.0,4.0,22.0,62.0,1.0,225.0,42.0,71.0,339.0,124.0,1.0,15.0,295.0,42.0,510.0,17.0,16.0,243.0,23.0,178.0,626.0,255.0,0.0,208.0,70.0,73.0,313.0,30.0,37.0,2.0,39.0,837.0,8.0,411.0,18.0,21.0,87.0,1463.0,1047.0,106.0,103.0,12.0,87.0,107.0,57.0,583.0,128.0,6.0,773.0,27.0,34.0,1839.0,169.0,871.0,41.0,240.0,982.0,1.0,92.0,558.0,221.0,16.0,545.0,383.0,93.0,570.0,207.0,74.0,14.0,559.0,6.0,260.0,37.0,41.0,103.0,30.0,1342.0,369.0,237.0,1736.0,28.0,507.0,1153.0,956.0,288.0,63.0,328.0,11.0,58.0,395.0,341.0,64.0,41.0,211.0,1890.0,31.0,37.0,637.0,22.0,10.0,274.0,159.0,149.0,521.0,7.0,141.0,26.0,4.0,5.0,45.0,94.0,397.0,109.0,1572.0,768.0,47.0,111.0,6.0,71.0,0.0,140.0,40.0,821.0,111.0,136.0,439.0,70.0,41.0,16.0,43.0,55.0,35.0,551.0,356.0,147.0,105.0,36.0,38.0,25.0,115.0,120.0,20.0,16.0,46.0,40.0,40.0,76.0,152.0,624.0,154.0,110.0,182.0,857.0,10.0,2.0,202.0,30.0,559.0,18.0,27.0,151.0,38.0,50.0,13.0,10.0,5.0,126.0,18.0,130.0,154.0,4.0,651.0,259.0,59.0,211.0,37.0,116.0,109.0,6.0,18.0,279.0,20.0,13.0,32.0,0.0,630.0,81.0,202.0,9.0,90.0,16.0,9.0,2.0,40.0,129.0,76.0,46.0,5.0,1125.0,140.0,76.0,86.0,82.0,73.0,24.0,1115.0,118.0,42.0,66.0,58.0,75.0,524.0,9.0,483.0,30.0,35.0,92.0,28.0,115.0,58.0,16.0,314.0,81.0,41.59,2018-12-16,,2018-50,39.47267024627945,38.273435597260004, +243,243,146.0,4.0,12.0,3.0,185.0,93.0,7.0,107.0,138.0,110.0,13.0,585.0,1.0,10.0,42.0,1.0,16.0,2.0,176.0,48.0,2.0,70.0,86.0,444.0,64.0,158.0,26.0,6.0,41.0,14.0,4.0,113.0,396.0,91.0,1.0,9.0,42.0,31.0,105.0,150.0,1.0,484.0,122.0,272.0,13.0,64.0,10.0,17.0,778.0,89.0,70.0,447.0,94.0,9.0,26.0,79.0,61.0,1378.0,222.0,186.0,1.0,84.0,1.0,92.0,0.0,103.0,96.0,121.0,284.0,0.0,24.0,52.0,2.0,156.0,38.0,87.0,288.0,99.0,1.0,14.0,309.0,50.0,489.0,19.0,12.0,141.0,21.0,107.0,670.0,236.0,0.0,182.0,94.0,59.0,311.0,24.0,28.0,1.0,27.0,782.0,6.0,464.0,16.0,29.0,62.0,1394.0,943.0,89.0,74.0,3.0,69.0,108.0,66.0,605.0,119.0,2.0,708.0,20.0,45.0,2236.0,151.0,1208.0,40.0,205.0,810.0,0.0,134.0,513.0,136.0,12.0,503.0,283.0,106.0,399.0,200.0,83.0,19.0,464.0,8.0,225.0,22.0,63.0,69.0,25.0,1332.0,368.0,212.0,1492.0,27.0,561.0,1067.0,1071.0,358.0,86.0,251.0,20.0,55.0,356.0,317.0,74.0,47.0,152.0,1609.0,41.0,49.0,558.0,24.0,3.0,310.0,137.0,145.0,562.0,6.0,100.0,14.0,2.0,1.0,36.0,78.0,374.0,106.0,1375.0,698.0,33.0,114.0,15.0,70.0,1.0,91.0,44.0,880.0,123.0,102.0,373.0,71.0,38.0,8.0,57.0,42.0,50.0,522.0,308.0,118.0,102.0,26.0,30.0,19.0,130.0,102.0,25.0,10.0,17.0,36.0,31.0,71.0,195.0,659.0,161.0,89.0,174.0,612.0,12.0,2.0,192.0,46.0,543.0,8.0,34.0,117.0,27.0,84.0,15.0,22.0,13.0,120.0,21.0,94.0,98.0,21.0,1271.0,222.0,67.0,133.0,55.0,91.0,62.0,8.0,18.0,142.0,30.0,7.0,26.0,1.0,583.0,103.0,192.0,14.0,77.0,17.0,13.0,0.0,25.0,122.0,80.0,86.0,3.0,1029.0,111.0,55.0,84.0,79.0,79.0,43.0,1148.0,114.0,34.0,44.0,13.0,46.0,510.0,5.0,483.0,36.0,11.0,80.0,17.0,89.0,43.0,16.0,323.0,66.0,37.89,2018-12-23,,2018-51,39.86478936412368,99.4352037848, +244,244,113.0,4.0,4.0,3.0,208.0,118.0,12.0,72.0,121.0,124.0,21.0,485.0,2.0,15.0,26.0,1.0,12.0,3.0,106.0,37.0,5.0,61.0,78.0,1470.0,50.0,149.0,17.0,7.0,30.0,21.0,3.0,98.0,351.0,72.0,0.0,10.0,64.0,30.0,92.0,164.0,3.0,601.0,129.0,313.0,14.0,99.0,20.0,20.0,659.0,100.0,87.0,378.0,75.0,11.0,27.0,53.0,44.0,1664.0,219.0,159.0,1.0,70.0,1.0,70.0,3.0,72.0,83.0,146.0,290.0,1.0,34.0,62.0,6.0,144.0,35.0,85.0,297.0,64.0,3.0,21.0,451.0,45.0,468.0,15.0,9.0,121.0,31.0,121.0,503.0,229.0,0.0,182.0,84.0,75.0,278.0,38.0,19.0,3.0,15.0,823.0,5.0,381.0,17.0,19.0,57.0,1536.0,1305.0,91.0,81.0,4.0,142.0,103.0,62.0,450.0,99.0,3.0,530.0,21.0,41.0,2092.0,138.0,992.0,77.0,220.0,667.0,0.0,103.0,338.0,105.0,17.0,413.0,268.0,70.0,367.0,143.0,151.0,8.0,432.0,2.0,163.0,26.0,52.0,45.0,25.0,1425.0,325.0,208.0,1509.0,25.0,469.0,1069.0,897.0,426.0,51.0,297.0,15.0,66.0,269.0,358.0,45.0,18.0,151.0,1622.0,27.0,36.0,636.0,18.0,2.0,1007.0,82.0,172.0,445.0,6.0,76.0,12.0,1.0,2.0,32.0,85.0,420.0,124.0,1486.0,789.0,43.0,88.0,10.0,106.0,1.0,84.0,44.0,803.0,113.0,67.0,246.0,67.0,29.0,15.0,63.0,51.0,45.0,557.0,294.0,131.0,52.0,15.0,37.0,19.0,84.0,114.0,10.0,6.0,17.0,42.0,21.0,70.0,138.0,542.0,144.0,76.0,201.0,676.0,8.0,1.0,189.0,28.0,515.0,15.0,21.0,128.0,39.0,128.0,5.0,4.0,5.0,103.0,12.0,87.0,179.0,4.0,1089.0,227.0,56.0,130.0,21.0,94.0,114.0,5.0,18.0,123.0,26.0,9.0,36.0,1.0,444.0,83.0,186.0,58.0,72.0,7.0,3.0,0.0,25.0,116.0,81.0,110.0,5.0,1206.0,107.0,57.0,90.0,63.0,92.0,46.0,1239.0,162.0,26.0,54.0,10.0,53.0,704.0,3.0,552.0,49.0,11.0,74.0,25.0,58.0,24.0,33.0,354.0,99.0,22.12,2018-12-30,,2018-52,23.159837849791458,44.440617416900004, +245,245,107.0,3.0,2.0,2.0,195.0,101.0,12.0,97.0,137.0,103.0,20.0,574.0,2.0,6.0,71.0,3.0,14.0,5.0,88.0,55.33333333333333,11.0,59.0,84.0,1250.0,47.0,153.0,16.0,6.0,43.0,29.0,6.0,82.0,389.0,86.0,1.0,11.0,57.0,23.0,102.0,136.0,5.0,717.0,108.0,225.0,11.0,70.0,10.0,25.0,661.0,91.0,92.0,369.0,64.0,18.0,32.0,63.0,54.0,1390.0,212.0,172.0,1.0,64.0,2.0,90.0,1.0,95.0,83.0,141.0,320.0,2.0,20.0,50.0,3.0,139.0,40.0,85.0,296.0,84.0,2.0,20.0,568.0,56.0,470.0,21.0,9.0,99.0,17.0,73.0,527.0,206.0,0.0,171.0,63.0,73.0,276.0,29.0,23.6,1.0,23.0,778.0,11.0,301.0,38.0,20.0,76.0,1381.0,1291.0,134.0,77.0,9.0,121.0,93.0,58.0,602.0,109.0,3.0,724.5,16.0,59.0,1776.0,144.0,1134.0,65.0,196.0,683.0,1.0,104.0,367.0,111.0,21.0,452.0,280.0,96.0,342.0,140.0,104.0,9.0,482.0,6.0,172.0,26.0,49.0,61.0,19.0,1342.0,326.0,223.0,1416.0,25.0,480.0,1108.0,846.0,231.0,97.0,298.0,14.0,63.0,330.0,377.0,44.0,41.0,126.0,1606.0,28.0,29.0,552.0,28.0,4.0,601.0,93.0,146.0,352.0,7.0,107.0,18.0,1.0,2.0,35.0,69.0,343.0,163.0,1267.0,665.0,24.0,61.0,17.0,56.0,1.0,87.0,46.0,782.0,229.0,74.0,308.0,66.0,38.0,10.0,51.0,34.0,26.0,588.0,306.0,127.0,53.0,19.0,19.0,19.0,131.0,97.0,25.0,6.0,21.0,25.0,45.0,62.0,131.0,362.0,142.0,91.0,146.0,384.0,13.0,2.0,209.0,41.0,487.0,13.0,33.0,126.0,36.0,75.0,6.0,11.0,6.0,108.0,34.0,83.0,131.0,9.0,896.0,228.0,64.0,143.0,12.0,120.0,62.0,5.0,11.0,174.0,23.0,17.0,53.0,0.0,497.0,94.0,158.0,12.0,72.0,12.0,13.0,0.0,29.0,114.0,58.0,167.0,3.0,1046.0,123.0,79.0,98.0,53.0,89.0,45.0,1183.0,137.0,26.0,51.0,11.0,42.0,623.0,5.0,509.0,17.0,5.0,87.0,27.0,62.0,36.0,27.0,416.0,113.0,51.79,2019-01-13,,2019-2,51.19872943494465,49.75, +246,246,96.0,6.0,4.0,3.0,402.0,136.0,9.0,138.0,154.0,106.0,17.0,750.0,0.0,15.0,63.0,8.0,14.0,5.0,201.0,73.66666666666666,10.0,78.0,123.0,974.0,108.0,252.0,18.0,10.0,47.0,19.0,9.0,141.0,530.0,132.0,1.0,11.0,59.0,22.0,194.0,220.0,8.0,744.0,157.0,294.0,21.0,75.0,12.0,32.0,1035.0,162.0,76.0,461.0,127.0,10.0,28.0,84.0,77.0,1318.0,251.0,259.0,9.0,112.0,1.0,102.0,0.0,111.0,117.0,175.0,473.0,2.0,19.0,93.0,7.0,208.0,61.0,90.0,451.0,101.0,2.0,21.0,703.0,59.0,567.0,22.0,14.0,137.0,20.0,111.0,720.0,328.0,0.0,259.0,88.0,73.0,399.0,39.0,28.2,0.0,54.0,1228.0,10.0,502.0,37.0,27.0,100.0,1683.0,1530.0,121.0,125.0,4.0,93.0,140.0,78.0,829.0,193.0,4.0,919.0,25.0,42.0,1962.0,181.0,1044.0,91.0,234.0,1015.0,0.0,146.0,647.0,137.0,21.0,631.0,421.0,119.0,504.0,257.0,83.0,20.0,753.0,3.0,339.0,36.0,70.0,86.0,53.0,1384.0,516.0,314.0,2232.0,27.0,611.0,1480.0,974.0,410.0,123.0,322.0,26.0,79.0,600.0,368.0,56.0,33.0,173.0,2140.0,34.0,32.0,782.0,51.0,12.0,577.0,166.0,133.0,459.0,10.0,154.0,22.0,10.0,2.0,46.0,83.0,416.0,274.0,1414.0,919.0,46.0,121.0,8.0,77.0,0.0,154.0,61.0,1174.0,117.0,165.0,469.0,79.0,56.0,11.0,51.0,46.0,62.0,707.0,452.0,128.0,119.0,33.0,45.0,24.0,137.0,163.0,36.0,11.0,16.0,33.0,41.0,91.0,169.0,496.0,175.0,109.0,203.0,1110.0,16.0,4.0,261.0,23.0,688.0,11.0,43.0,137.0,22.0,89.0,12.0,3.0,12.0,132.0,25.0,171.0,183.0,10.0,869.0,297.0,106.0,206.0,42.0,129.0,95.0,4.0,19.0,237.0,36.0,26.0,54.0,2.0,700.0,103.0,198.0,15.0,74.0,17.0,19.0,1.0,40.0,125.0,98.0,151.0,7.0,1094.0,141.0,77.0,69.0,74.0,114.0,44.0,1259.0,151.0,20.0,96.0,426.0,398.0,636.0,3.0,555.0,35.0,8.0,136.0,42.0,101.0,60.0,40.0,486.0,146.0,65.25,2019-01-20,,2019-3,65.2524801002437,84.12786238124, +247,247,128.0,8.0,5.0,2.0,313.0,128.0,24.0,117.0,170.0,96.0,19.0,785.0,0.0,6.0,84.0,0.0,16.0,2.0,207.0,92.0,31.0,81.0,110.0,713.0,111.0,254.0,29.0,5.0,66.0,42.0,9.0,128.0,1137.0,110.0,3.0,9.0,73.0,43.0,169.0,194.0,0.0,637.0,204.0,307.0,20.0,104.0,8.0,22.0,1168.0,122.0,94.0,574.0,148.0,35.0,31.0,127.0,75.0,1376.0,249.0,245.0,3.0,138.0,0.0,136.0,0.0,88.0,102.0,160.0,444.0,1.0,26.0,74.0,3.0,260.0,44.0,127.0,399.0,110.0,5.0,17.0,596.0,103.0,645.0,23.0,11.0,170.0,26.0,107.0,815.0,292.0,0.0,295.0,94.0,68.0,415.0,39.0,32.8,8.0,33.0,1301.0,17.0,474.0,32.0,25.0,137.0,1509.0,1415.0,96.0,133.0,5.0,105.0,164.0,127.0,743.0,187.0,5.0,1074.0,15.0,62.0,1903.0,179.0,1170.0,64.0,242.0,1066.0,0.0,169.0,756.0,189.0,33.0,777.0,470.0,117.0,579.0,262.0,122.0,24.0,725.0,8.0,321.0,49.0,62.0,108.0,33.0,1341.0,539.0,395.0,2066.0,20.0,603.0,1521.0,1011.0,451.0,189.0,507.0,22.0,102.0,575.0,381.0,133.0,52.0,185.0,2148.0,24.0,40.0,727.0,34.0,5.0,440.0,160.0,146.0,491.0,4.0,177.0,20.0,3.0,2.0,51.0,83.0,388.0,213.0,1269.0,1042.0,24.0,120.0,12.0,63.0,0.0,145.0,62.0,1081.0,160.0,191.0,496.0,129.0,58.0,10.0,66.0,54.0,62.0,662.0,449.0,144.0,91.0,34.0,42.0,30.0,176.0,160.0,30.0,17.0,28.0,26.0,48.0,87.0,173.0,600.0,151.0,105.0,231.0,548.0,10.0,5.0,245.0,49.0,761.0,60.0,32.0,139.0,26.0,97.0,8.0,26.0,5.0,161.0,37.0,181.0,258.0,10.0,814.0,314.0,107.0,242.0,33.0,107.0,78.0,4.0,24.0,241.0,26.0,9.0,49.0,1.0,767.0,111.0,192.0,11.0,110.0,16.0,31.0,1.0,30.0,159.0,110.0,132.0,2.0,1071.0,144.0,80.0,69.0,179.0,126.0,42.0,1247.0,155.0,29.0,76.0,42.0,97.0,651.0,10.0,646.0,40.0,10.0,119.0,41.0,99.0,66.0,45.0,398.0,98.0,97.03,2019-01-27,,2019-4,95.63253021602304,113.156, +248,248,139.0,38.0,6.0,1.0,316.0,157.0,9.0,135.0,181.0,111.0,14.0,719.0,0.0,21.0,72.0,1.0,14.0,4.0,206.0,66.0,25.0,80.0,122.0,596.0,85.0,198.0,15.0,5.0,67.0,40.0,11.0,132.0,650.0,137.0,0.0,10.0,90.0,41.0,135.0,217.0,5.0,631.0,181.0,257.0,18.0,106.0,10.0,37.0,964.0,170.0,105.0,553.0,135.0,21.0,58.0,173.0,40.0,1487.0,216.0,207.0,4.0,81.0,0.0,100.0,4.0,96.0,106.0,182.0,447.0,1.0,16.0,84.0,10.0,251.0,35.0,85.0,440.0,116.0,0.0,19.0,490.0,80.0,664.0,34.0,15.0,146.0,31.0,109.0,875.0,297.0,0.0,292.0,98.0,54.0,329.0,54.0,37.4,1.0,28.0,925.0,5.0,478.0,61.0,28.0,102.0,1631.0,1584.0,149.0,104.0,5.0,206.0,137.0,88.0,747.0,152.0,2.0,860.0,30.0,53.0,2016.0,187.0,1136.0,56.0,235.0,986.0,0.0,166.0,845.0,149.0,27.0,643.0,399.0,132.0,441.0,231.0,117.0,26.0,675.0,6.0,292.0,50.0,71.0,174.0,34.0,1459.0,625.0,260.0,2064.0,5.0,589.0,1642.0,1055.0,416.0,123.0,405.0,12.0,90.0,673.0,358.0,95.0,52.0,234.0,2162.0,32.0,37.0,994.0,51.0,6.0,416.0,189.0,134.0,481.0,11.0,187.0,29.0,0.0,0.0,51.0,98.0,412.0,229.0,1219.0,995.0,30.0,118.0,10.0,68.0,0.0,146.0,38.0,1193.0,209.0,162.0,513.0,78.0,38.0,15.0,70.0,287.0,53.0,581.0,420.0,128.0,86.0,39.0,42.0,52.0,139.0,148.0,25.0,19.0,25.0,38.0,43.0,86.0,138.0,657.0,188.0,110.0,233.0,429.0,17.0,4.0,277.0,36.0,783.0,23.0,45.0,115.0,30.0,133.0,12.0,17.0,7.0,161.0,25.0,156.0,216.0,5.0,877.0,263.0,80.0,212.0,38.0,93.0,66.0,11.0,28.0,248.0,29.0,16.0,39.0,0.0,732.0,102.0,290.0,5.0,90.0,23.0,20.0,0.0,108.0,162.0,83.0,129.0,3.0,1186.0,152.0,75.0,57.0,59.0,81.0,36.0,1445.0,178.0,26.0,73.0,26.0,71.0,726.0,9.0,608.0,85.0,12.0,108.0,31.0,122.0,56.0,47.0,405.0,108.0,209.44,2019-02-03,,2019-5,210.0499380078054,142.69617502608, +249,249,145.0,21.0,8.0,1.0,287.0,140.0,8.0,106.0,167.0,98.0,22.0,648.0,2.0,6.0,47.0,5.0,8.0,1.0,201.0,39.0,9.0,59.0,120.0,532.0,70.0,186.0,24.0,4.0,47.0,21.0,3.0,145.0,533.0,87.0,1.0,19.0,102.0,33.0,143.0,230.0,5.0,1639.0,166.0,261.0,16.0,101.0,10.0,23.0,930.0,166.0,84.0,452.0,96.0,21.0,56.0,106.0,77.0,1552.0,212.0,202.0,5.0,104.0,0.0,133.0,2.0,132.0,118.0,196.0,396.0,0.0,39.0,53.0,21.0,233.0,31.0,101.0,382.0,97.0,0.0,22.0,622.0,100.0,559.0,17.0,9.0,159.0,17.0,101.0,797.0,286.0,0.0,240.0,111.0,73.0,398.0,41.0,42.0,0.0,22.0,963.0,14.0,493.0,37.0,25.0,106.0,1654.0,2106.0,128.0,89.0,6.0,180.0,134.0,68.0,652.0,152.0,1.0,910.0,23.0,48.0,1932.0,197.0,1187.0,119.0,272.0,1000.0,0.0,169.0,797.0,195.0,26.0,640.0,850.0,147.0,441.0,221.0,97.0,16.0,651.0,10.0,320.0,43.0,48.0,100.0,31.0,1507.0,524.0,348.0,2117.0,3.0,570.0,1766.0,933.0,508.0,120.0,365.0,24.0,110.0,606.0,370.0,124.0,25.0,288.0,2222.0,35.0,40.0,1200.0,29.0,12.0,1842.0,206.0,140.0,551.0,8.0,126.0,21.0,1.0,3.0,55.0,75.0,428.0,222.0,1765.0,920.0,47.0,109.0,13.0,73.0,0.0,129.0,47.0,1015.0,151.0,138.0,412.0,48.0,50.0,11.0,110.0,83.0,51.0,623.0,363.0,141.0,79.0,31.0,30.0,24.0,132.0,148.0,30.0,10.0,53.0,24.0,46.0,94.0,167.0,684.0,165.0,116.0,189.0,363.0,8.0,0.0,250.0,32.0,863.0,29.0,38.0,146.0,16.0,110.0,8.0,17.0,8.0,123.0,17.0,161.0,124.0,12.0,1833.0,288.0,83.0,215.0,53.0,92.0,74.0,5.0,27.0,214.0,36.0,16.0,26.0,1.0,742.0,78.0,249.0,4.0,101.0,22.0,15.0,0.0,115.0,168.0,67.0,893.0,5.0,1152.0,163.0,43.0,41.0,100.0,76.0,40.0,1514.0,166.0,18.0,53.0,78.0,113.0,735.0,10.0,552.0,73.0,10.0,124.0,25.0,87.0,42.0,32.0,305.0,96.0,369.78,2019-02-10,,2019-6,370.35744590537615,242.59748264537998, +250,250,214.0,15.0,3.0,2.0,219.0,108.0,8.0,112.0,142.0,110.0,16.0,724.0,0.0,10.0,24.0,0.0,9.0,1.0,217.0,30.0,12.0,48.0,124.0,515.0,58.0,167.0,16.0,2.0,65.0,31.0,3.0,142.0,448.0,74.0,2.0,21.0,128.0,15.0,185.0,264.0,6.0,11101.0,157.0,270.0,17.0,86.0,3.0,26.0,969.0,163.0,85.0,519.0,111.0,11.0,27.0,100.0,68.0,1627.0,229.0,189.0,0.0,100.0,0.0,155.0,3.0,118.0,100.0,152.0,325.0,1.0,28.0,71.0,23.0,256.0,38.0,100.0,355.0,112.0,2.0,15.0,432.0,74.0,474.0,35.0,5.0,118.0,6.0,109.0,969.0,257.0,0.0,192.0,98.0,47.0,430.0,48.0,45.0,2.0,33.0,868.0,16.0,999.0,7.0,17.0,62.0,1577.0,2398.0,96.0,90.0,11.0,102.0,132.0,65.0,661.0,124.0,3.0,837.0,26.0,176.0,3017.0,222.0,1173.0,80.0,279.0,1133.0,0.0,145.0,595.0,160.0,14.0,622.0,374.0,112.0,456.0,193.0,93.0,19.0,883.0,4.0,285.0,44.0,42.0,110.0,39.0,1518.0,533.0,321.0,2189.0,4.0,542.0,1848.0,1035.0,536.0,92.0,381.0,15.0,110.0,526.0,334.0,106.0,33.0,317.0,2410.0,36.0,37.0,1553.0,41.0,6.0,1495.0,175.0,151.0,555.0,9.0,105.0,14.0,1.0,5.0,53.0,81.0,473.0,173.0,1794.0,822.0,29.0,89.0,11.0,77.0,0.0,92.0,36.0,999.0,132.0,158.0,464.0,47.0,62.0,21.0,84.0,70.0,67.0,630.0,345.0,137.0,93.0,34.0,39.0,31.0,120.0,160.0,45.0,12.0,23.0,52.0,36.0,58.0,141.0,646.0,145.0,98.0,167.0,280.0,11.0,4.0,189.0,26.0,917.0,23.0,68.0,143.0,22.0,92.0,12.0,7.0,3.0,155.0,17.0,93.0,268.0,4.0,1250.0,283.0,64.0,213.0,30.0,82.0,82.0,5.0,38.0,190.0,28.0,11.0,35.0,1.0,620.0,58.0,204.0,18.0,108.0,13.0,10.0,0.0,27.0,144.0,97.0,578.0,4.0,1317.0,164.0,58.0,61.0,98.0,34.0,39.0,1587.0,134.0,24.0,70.0,45.0,54.0,667.0,5.0,509.0,27.0,13.0,106.0,33.0,99.0,57.0,41.0,348.0,89.0,677.45,2019-02-17,,2019-7,675.8669899826855,644.27808411036, +251,251,253.0,11.0,4.0,1.0,183.0,118.0,15.0,155.0,166.0,100.0,17.0,609.0,1.0,10.0,33.0,2.0,21.0,0.0,228.0,25.0,12.0,41.0,108.0,349.0,83.0,129.0,17.0,6.0,67.0,38.0,5.0,143.0,446.0,42.0,2.0,11.0,83.0,28.0,123.0,372.0,2.0,1782.0,144.0,259.0,15.0,68.0,3.0,13.0,839.0,142.0,75.0,379.0,99.0,17.0,35.0,119.0,67.0,1487.0,207.0,193.0,1.0,82.0,0.0,102.0,0.0,121.0,103.0,175.0,296.0,2.0,23.0,70.0,3.0,306.0,24.0,119.0,384.0,131.0,0.0,15.0,376.0,73.0,518.0,19.0,10.0,128.0,15.0,118.0,758.0,258.0,0.0,187.0,93.0,49.0,339.0,41.0,40.0,2.0,43.0,985.0,9.0,513.0,18.0,26.0,102.0,1401.0,1983.0,122.0,67.0,4.0,81.0,133.0,63.0,553.0,105.0,3.0,763.0,21.0,52.0,2824.0,199.0,1169.0,59.0,382.0,1049.0,0.0,127.0,554.0,137.0,20.0,464.0,346.0,97.0,425.0,202.0,93.0,22.0,652.0,6.0,325.0,20.0,38.0,76.0,24.0,1442.0,451.0,277.0,1928.0,3.0,524.0,1682.0,826.0,429.0,98.0,310.0,8.0,87.0,430.0,345.0,81.0,54.0,202.0,2038.0,27.0,46.0,1934.0,73.0,10.0,1053.0,161.0,137.0,373.0,7.0,114.0,15.0,1.0,0.0,70.0,89.0,498.0,157.0,1115.0,770.0,21.0,109.0,8.0,57.0,0.0,76.0,32.0,965.0,192.0,162.0,421.0,47.0,62.0,28.0,51.0,62.0,46.0,728.0,324.0,110.0,81.0,45.0,31.0,32.0,111.0,128.0,58.0,18.0,44.0,27.0,43.0,53.0,117.0,535.0,162.0,77.0,147.0,257.0,13.0,6.0,188.0,45.0,753.0,21.0,29.0,119.0,23.0,121.0,12.0,15.0,5.0,115.0,14.0,106.0,128.0,4.0,812.0,229.0,85.0,211.0,26.0,136.0,73.0,9.0,31.0,222.0,20.0,11.0,31.0,0.0,618.0,61.0,200.0,7.0,99.0,10.0,11.0,0.0,26.0,122.0,76.0,225.0,3.0,1103.0,182.0,54.0,30.0,73.0,28.0,31.0,1562.0,142.0,21.0,42.0,45.0,51.0,529.0,5.0,522.0,26.0,9.0,118.0,31.0,105.0,54.0,33.0,265.0,58.0,760.71,2019-02-24,,2019-8,761.1219862599314,590.5413253833001, +252,252,222.0,4.0,5.0,0.0,219.0,130.0,13.0,153.0,181.0,98.0,17.0,598.0,2.0,16.0,32.0,1.0,7.0,3.0,164.0,30.0,12.0,49.0,117.0,293.0,41.0,154.0,25.0,5.0,71.0,25.0,5.0,138.0,412.0,71.0,0.0,9.0,100.0,27.0,144.0,366.0,2.0,1016.0,147.0,271.0,21.0,78.0,8.0,22.0,990.0,132.0,52.0,475.0,121.0,12.0,26.0,115.0,71.0,1594.0,185.0,198.0,5.0,121.0,1.0,141.0,1.0,108.0,120.0,149.0,290.0,1.0,23.0,63.0,7.0,277.0,38.0,118.0,384.0,126.0,0.0,20.0,454.0,49.0,535.0,20.0,7.0,121.0,11.0,87.0,852.0,299.0,0.0,209.0,196.0,49.0,379.0,23.0,43.0,1.0,48.0,901.0,9.0,468.0,23.0,23.0,70.0,1513.0,1876.0,166.0,70.0,3.0,89.0,114.0,58.0,663.0,127.0,2.0,797.0,14.0,48.0,2575.0,190.0,1298.0,114.0,248.0,918.0,0.0,156.0,622.0,125.0,12.0,478.0,375.0,105.0,403.0,218.0,96.0,21.0,648.0,8.0,250.0,48.0,59.0,53.0,18.0,1421.0,423.0,331.0,2210.0,4.0,568.0,1686.0,881.0,272.0,100.0,350.0,10.0,65.0,416.0,349.0,71.0,52.0,181.0,2265.0,44.0,61.0,2850.0,55.0,7.0,850.0,158.0,127.0,466.0,10.0,122.0,19.0,5.0,1.0,64.0,74.0,501.0,144.0,1333.0,861.0,15.0,92.0,14.0,59.0,1.0,108.0,26.0,1058.0,262.0,117.0,421.0,51.0,31.0,14.0,40.0,57.0,34.0,754.0,280.0,104.0,85.0,22.0,31.0,20.0,90.0,116.0,27.0,24.0,25.0,46.0,51.0,72.0,154.0,595.0,140.0,103.0,176.0,249.0,6.0,3.0,169.0,48.0,795.0,14.0,36.0,126.0,21.0,101.0,14.0,9.0,3.0,137.0,15.0,106.0,162.0,7.0,930.0,254.0,63.0,202.0,28.0,97.0,83.0,8.0,28.0,209.0,23.0,23.0,28.0,3.0,636.0,70.0,186.0,23.0,120.0,19.0,13.0,0.0,25.0,125.0,83.0,182.0,3.0,1083.0,175.0,69.0,43.0,83.0,31.0,29.0,1703.0,175.0,36.0,58.0,23.0,66.0,544.0,4.0,560.0,40.0,6.0,111.0,18.0,99.0,39.0,42.0,331.0,96.0,682.32,2019-03-03,,2019-9,680.6992959120225,467.00895494364005, +253,253,123.0,3.0,4.0,0.0,159.0,100.0,6.0,85.0,115.0,68.0,21.0,483.0,1.0,7.0,26.0,0.0,11.0,3.0,125.0,21.0,13.0,38.0,82.0,246.0,40.0,131.0,21.0,5.0,63.0,27.0,2.0,113.0,307.0,33.0,1.0,13.0,63.0,12.0,113.0,207.0,3.0,750.0,125.0,260.0,2.0,78.0,7.0,16.0,688.0,107.0,65.0,388.0,81.0,8.0,26.0,68.0,61.0,1157.0,173.0,157.0,5.0,81.0,0.0,147.0,2.0,61.0,85.0,124.0,264.0,0.0,11.0,64.0,6.0,196.0,22.0,88.0,232.0,90.0,1.0,19.0,316.0,43.0,447.0,16.0,8.0,106.0,12.0,75.0,677.0,228.0,0.0,182.0,90.0,52.0,284.0,35.0,30.0,1.0,42.0,772.0,8.0,320.0,9.0,26.0,58.0,1171.0,1260.0,40.0,76.0,4.0,68.0,104.0,48.0,502.0,113.0,6.0,657.0,14.0,32.0,1790.0,149.0,847.0,48.0,246.0,725.0,0.0,80.0,432.0,81.0,12.0,465.0,283.0,67.0,302.0,150.0,66.0,15.0,510.0,7.0,238.0,34.0,34.0,65.0,19.0,1104.0,319.0,261.0,1651.0,5.0,405.0,1219.0,733.0,277.0,100.0,232.0,8.0,53.0,410.0,279.0,53.0,23.0,139.0,1744.0,28.0,47.0,1153.0,36.0,3.0,581.0,114.0,106.0,270.0,6.0,81.0,11.0,2.0,2.0,25.0,67.0,492.0,142.0,969.0,671.0,18.0,73.0,8.0,46.0,0.0,67.0,25.0,752.0,249.0,89.0,298.0,48.0,28.0,12.0,25.0,43.0,44.0,524.0,260.0,95.0,56.0,22.0,34.0,14.0,113.0,106.0,19.0,20.0,29.0,25.0,30.0,55.0,118.0,382.0,127.0,70.0,128.0,178.0,8.0,3.0,123.0,19.0,567.0,19.0,26.0,105.0,17.0,76.0,5.0,10.0,2.0,122.0,12.0,93.0,89.0,4.0,611.0,212.0,53.0,208.0,44.0,74.0,75.0,2.0,19.0,150.0,17.0,16.0,28.0,0.0,462.0,42.0,160.0,7.0,79.0,13.0,7.0,0.0,20.0,99.0,70.0,88.0,2.0,742.0,110.0,80.0,31.0,56.0,34.0,19.0,1317.0,109.0,20.0,56.0,29.0,70.0,416.0,9.0,481.0,26.0,6.0,61.0,27.0,78.0,37.0,30.0,221.0,56.0,415.04,2019-03-10,,2019-10,417.2331451699529,415.0400000000001, +254,254,125.0,4.0,5.0,1.0,136.0,98.0,4.0,65.0,96.0,81.0,21.0,436.0,2.0,25.0,23.0,3.0,21.0,0.0,115.0,30.0,13.0,50.0,77.0,182.0,46.0,83.0,21.0,3.0,54.0,25.0,5.0,116.0,317.0,80.0,0.0,7.0,58.0,26.0,85.0,253.0,2.0,464.0,127.0,240.0,8.0,71.0,6.0,23.0,687.0,102.0,55.0,337.0,53.0,14.0,15.0,87.0,21.0,1019.0,141.0,161.0,3.0,75.0,0.0,187.0,0.0,66.0,96.0,111.0,260.0,2.0,8.0,57.0,5.0,176.0,30.0,108.0,194.0,67.0,3.0,31.0,323.0,46.0,375.0,27.0,5.0,98.0,34.0,81.0,646.0,253.0,0.0,164.0,61.0,35.0,278.0,24.0,20.0,1.0,37.0,747.0,6.0,535.0,15.0,14.0,73.0,1106.0,946.0,61.0,60.0,4.0,67.0,94.0,42.0,480.0,99.0,0.0,641.0,22.0,27.0,1583.0,136.0,717.0,49.0,193.0,759.0,0.0,95.0,410.0,86.0,11.0,413.0,223.0,84.0,287.0,148.0,63.0,9.0,461.0,4.0,159.0,38.0,24.0,97.0,28.0,1152.0,287.0,247.0,1278.0,1.0,409.0,1048.0,600.0,219.0,87.0,259.0,18.0,48.0,328.0,310.0,45.0,39.0,104.0,1532.0,37.0,38.0,1145.0,20.0,7.0,376.0,113.0,95.0,219.0,21.0,59.0,16.0,0.0,1.0,30.0,58.0,307.0,142.0,792.0,641.0,25.0,85.0,13.0,61.0,0.0,80.0,9.0,746.0,89.0,114.0,256.0,52.0,28.0,5.0,24.0,35.0,43.0,511.0,249.0,122.0,34.0,19.0,21.0,27.0,92.0,127.0,30.0,8.0,23.0,40.0,26.0,51.0,72.0,348.0,104.0,70.0,156.0,132.0,5.0,1.0,131.0,34.0,527.0,17.0,24.0,139.0,13.0,60.0,11.0,12.0,4.0,109.0,19.0,60.0,112.0,4.0,523.0,225.0,61.0,132.0,31.0,66.0,46.0,8.0,37.0,156.0,6.0,7.0,24.0,0.0,435.0,39.0,139.0,3.0,63.0,19.0,19.0,0.0,11.0,72.0,43.0,65.0,2.0,649.0,102.0,54.0,31.0,38.0,17.0,29.0,1092.0,99.0,97.0,35.0,21.0,119.0,433.0,5.0,460.0,19.0,5.0,87.0,25.0,59.0,36.0,36.0,322.0,51.0,301.96,2019-03-17,,2019-11,299.0290211769202,263.79969701406, +255,255,155.0,6.0,5.0,2.0,247.0,87.0,11.0,100.0,163.0,106.0,15.0,1060.0,0.0,21.0,36.0,1.0,4.0,4.0,183.0,37.0,21.0,59.0,105.0,259.0,77.0,140.0,19.0,3.0,77.0,44.0,5.0,129.0,409.0,78.0,0.0,15.0,60.0,42.0,135.0,343.0,7.0,617.0,162.0,244.0,16.0,103.0,6.0,31.0,982.0,116.0,79.0,450.0,88.0,21.0,28.0,98.0,57.0,1283.0,225.0,207.0,1.0,101.0,0.0,133.0,0.0,90.0,138.0,153.0,305.0,1.0,15.0,90.0,9.0,247.0,30.0,126.0,204.0,89.0,0.0,13.0,349.0,37.0,448.0,29.0,7.0,138.0,15.0,106.0,877.0,270.0,0.0,216.0,87.0,33.0,339.0,30.0,30.0,0.0,40.0,880.0,8.0,342.0,29.0,17.0,69.0,1295.0,1104.0,52.0,66.0,4.0,62.0,119.0,66.0,714.0,118.0,3.0,766.0,18.0,34.0,1731.0,141.0,841.0,47.0,219.0,888.0,0.0,135.0,510.0,129.0,26.0,545.0,336.0,95.0,390.0,219.0,66.0,16.0,666.0,4.0,290.0,63.0,47.0,104.0,22.0,1334.0,370.0,276.0,1850.0,4.0,536.0,1387.0,695.0,248.0,76.0,282.0,25.0,80.0,458.0,296.0,36.0,26.0,154.0,1915.0,41.0,46.0,1167.0,33.0,5.0,488.0,167.0,102.0,326.0,6.0,98.0,23.0,2.0,1.0,44.0,60.0,358.0,131.0,1136.0,803.0,29.0,84.0,11.0,53.0,0.0,110.0,30.0,848.0,153.0,144.0,403.0,59.0,32.0,16.0,55.0,60.0,76.0,732.0,341.0,135.0,81.0,23.0,40.0,25.0,97.0,125.0,41.0,15.0,23.0,29.0,21.0,51.0,115.0,426.0,134.0,78.0,201.0,162.0,9.0,2.0,168.0,31.0,673.0,7.0,17.0,125.0,30.0,264.0,7.0,19.0,7.0,103.0,14.0,92.0,144.0,6.0,667.0,256.0,71.0,207.0,40.0,122.0,70.0,8.0,28.0,184.0,20.0,22.0,51.0,1.0,528.0,53.0,167.0,6.0,77.0,14.0,12.0,0.0,17.0,111.0,66.0,47.0,10.0,733.0,108.0,73.0,41.0,50.0,17.0,17.0,1254.0,129.0,28.0,53.0,27.0,59.0,576.0,2.0,492.0,17.0,5.0,124.0,28.0,77.0,56.0,33.0,277.0,64.0,174.79,2019-03-24,,2019-12,175.02587301662788,150.16758721413999, +256,256,112.0,3.0,4.0,2.0,209.0,89.0,4.0,73.0,115.0,79.0,15.0,526.0,0.0,16.0,21.0,3.0,7.0,1.0,125.0,25.0,8.0,36.0,86.0,259.0,47.0,102.0,20.0,2.0,69.0,14.0,1.0,107.0,311.0,37.0,0.0,6.0,40.0,7.0,103.0,161.0,4.0,404.0,122.0,230.0,11.0,73.0,6.0,27.0,794.0,90.0,53.0,443.0,79.0,10.0,20.0,81.0,45.0,884.0,215.0,122.0,0.0,81.0,0.0,81.0,1.0,88.0,129.0,79.0,253.0,3.0,24.0,72.0,4.0,187.0,22.0,105.0,193.0,60.0,0.0,6.0,414.0,38.0,341.0,22.0,7.0,87.0,9.0,83.0,643.0,194.0,0.0,156.0,87.0,46.0,255.0,25.0,21.0,0.0,36.0,869.0,3.0,335.0,12.0,20.0,84.0,1296.0,646.0,48.0,62.0,4.0,80.0,88.0,61.0,468.0,156.0,3.0,628.0,14.0,39.0,1563.0,128.0,697.0,38.0,181.0,744.0,0.0,92.0,535.0,137.0,15.0,485.0,290.0,61.0,406.0,155.0,114.0,13.0,530.0,5.0,172.0,34.0,44.0,67.0,12.0,1073.0,253.0,217.0,1715.0,1.0,462.0,938.0,694.0,172.0,120.0,272.0,9.0,95.0,327.0,308.0,50.0,35.0,100.0,1346.0,21.0,40.0,827.0,16.0,6.0,330.0,105.0,90.0,268.0,6.0,69.0,22.0,0.0,2.0,47.0,46.0,332.0,97.0,875.0,683.0,23.0,62.0,6.0,31.0,0.0,64.0,15.0,829.0,120.0,115.0,289.0,49.0,38.0,17.0,57.0,28.0,39.0,642.0,233.0,118.0,59.0,22.0,23.0,11.0,99.0,105.0,22.0,16.0,25.0,20.0,26.0,50.0,98.0,473.0,116.0,38.0,209.0,113.0,5.0,2.0,125.0,25.0,475.0,13.0,11.0,104.0,24.0,72.0,2.0,3.0,8.0,87.0,21.0,71.0,208.0,3.0,573.0,254.0,54.0,198.0,59.0,89.0,40.0,3.0,14.0,173.0,15.0,6.0,29.0,1.0,396.0,44.0,165.0,7.0,88.0,15.0,10.0,0.0,15.0,93.0,66.0,67.0,5.0,561.0,137.0,44.0,29.0,48.0,22.0,26.0,1526.0,119.0,29.0,33.0,16.0,49.0,407.0,8.0,503.0,27.0,7.0,82.0,20.0,64.0,36.0,23.0,188.0,50.0,80.08,2019-03-31,,2019-13,80.80931671237704,159.1460048696, +257,257,174.0,12.0,6.0,0.0,256.0,100.0,10.0,111.0,208.0,89.0,24.0,715.0,2.0,10.0,27.0,1.0,10.0,2.0,157.0,38.0,12.0,63.0,109.0,279.0,57.0,150.0,42.0,5.0,96.0,21.0,5.0,156.0,413.0,68.0,1.0,13.0,80.0,21.0,172.0,338.0,3.0,637.0,148.0,476.0,11.0,107.0,15.0,35.0,1074.0,130.0,92.0,590.0,117.0,8.0,41.0,89.0,64.0,1210.0,261.0,177.0,2.0,122.0,1.0,147.0,14.0,92.0,126.0,103.0,310.0,1.0,25.0,80.0,6.0,237.0,34.0,105.0,292.0,115.0,3.0,17.0,528.0,42.0,457.0,18.0,9.0,177.0,23.0,72.0,956.0,259.0,0.0,238.0,88.0,54.0,302.0,61.0,40.0,1.0,54.0,1068.0,14.0,394.0,14.0,30.0,87.0,1503.0,741.0,36.0,78.0,2.0,88.0,135.0,55.0,749.0,167.0,3.0,857.0,24.0,50.0,2071.0,173.0,854.0,57.0,242.0,853.0,1.0,117.0,641.0,176.0,9.0,602.0,393.0,90.0,519.0,230.0,134.0,16.0,744.0,10.0,306.0,48.0,56.0,102.0,22.0,1629.0,381.0,252.0,2248.0,4.0,558.0,1222.0,822.0,213.0,157.0,284.0,16.0,97.0,397.0,393.0,49.0,38.0,135.0,1633.0,30.0,50.0,2090.0,57.0,10.0,483.0,127.0,114.0,297.0,5.0,89.0,34.0,2.0,1.0,57.0,77.0,363.0,180.0,977.0,978.0,18.0,114.0,9.0,48.0,0.0,102.0,23.0,1079.0,201.0,173.0,447.0,44.0,46.0,16.0,55.0,36.0,72.0,858.0,387.0,116.0,101.0,24.0,39.0,25.0,132.0,130.0,47.0,16.0,23.0,30.0,50.0,65.0,134.0,648.0,136.0,93.0,271.0,128.0,7.0,2.0,148.0,29.0,772.0,5.0,31.0,127.0,25.0,177.0,5.0,7.0,7.0,131.0,31.0,86.0,200.0,3.0,566.0,298.0,84.0,224.0,51.0,109.0,79.0,6.0,21.0,206.0,14.0,6.0,28.0,1.0,511.0,66.0,188.0,11.0,88.0,21.0,16.0,0.0,27.0,108.0,77.0,61.0,4.0,765.0,200.0,77.0,42.0,59.0,30.0,26.0,1765.0,166.0,28.0,62.0,72.0,105.0,522.0,7.0,706.0,35.0,8.0,150.0,48.0,104.0,46.0,48.0,293.0,74.0,52.41,2019-04-07,,2019-14,52.260042911632354,78.00358721414, +258,258,152.0,6.0,2.0,1.0,224.0,113.0,8.0,112.0,181.0,127.0,17.0,633.0,0.0,10.0,29.0,0.0,7.0,2.0,167.0,42.0,14.0,81.0,95.0,367.0,55.0,141.0,21.0,2.0,97.0,35.0,8.0,157.0,424.0,73.0,0.0,12.0,40.0,16.0,137.0,625.0,1.0,527.0,178.0,311.0,13.0,117.0,29.0,16.0,1067.0,129.0,65.0,522.0,144.0,38.0,19.0,124.0,64.0,1153.0,299.0,180.0,0.0,99.0,0.0,108.0,1.0,94.0,186.0,100.0,301.0,0.0,18.0,84.0,6.0,307.0,38.0,115.0,426.0,132.0,0.0,12.0,459.0,60.0,508.0,32.0,7.0,105.0,16.0,149.0,882.0,285.0,0.0,211.0,126.0,44.0,405.0,28.0,55.0,5.0,92.0,991.0,7.0,363.0,21.0,17.0,83.0,1502.0,762.0,59.0,55.0,6.0,68.0,132.0,63.0,656.0,189.0,2.0,756.0,31.0,61.0,1865.0,167.0,793.0,34.0,250.0,1051.0,0.0,127.0,565.0,152.0,24.0,564.0,379.0,96.0,554.0,225.0,135.0,37.0,747.0,10.0,281.0,43.0,56.0,86.0,25.0,1485.0,382.0,290.0,1907.0,5.0,564.0,1296.0,796.0,249.0,163.0,320.0,11.0,64.0,403.0,371.0,44.0,39.0,145.0,1677.0,33.0,52.0,6697.0,127.0,7.0,337.0,144.0,110.0,363.0,9.0,93.0,27.0,1.0,0.0,58.0,60.0,385.0,210.0,1042.0,881.0,34.0,76.0,15.0,46.0,1.0,117.0,32.0,1048.0,137.0,152.0,348.0,53.0,53.0,11.0,54.0,42.0,27.0,935.0,389.0,102.0,83.0,35.0,46.0,19.0,129.0,141.0,55.0,13.0,33.0,19.0,44.0,46.0,111.0,572.0,173.0,86.0,191.0,109.0,4.0,1.0,205.0,39.0,818.0,11.0,36.0,127.0,18.0,79.0,13.0,14.0,7.0,130.0,49.0,75.0,138.0,5.0,553.0,277.0,104.0,215.0,56.0,129.0,145.0,3.0,20.0,194.0,25.0,9.0,39.0,1.0,578.0,55.0,182.0,15.0,107.0,23.0,9.0,0.0,24.0,137.0,55.0,37.0,7.0,796.0,154.0,66.0,28.0,55.0,38.0,41.0,1789.0,170.0,24.0,77.0,33.0,85.0,488.0,3.0,742.0,22.0,4.0,108.0,63.0,83.0,49.0,38.0,242.0,61.0,40.62,2019-04-14,,2019-15,42.507320905690904,69.15664795168, +259,259,197.0,7.0,5.0,0.0,294.0,120.0,18.0,125.0,211.0,119.0,35.0,671.0,4.0,7.0,51.0,1.0,13.0,1.0,190.0,60.0,18.0,65.0,94.0,330.0,72.0,151.0,47.0,9.0,75.0,40.0,3.0,153.0,486.0,122.0,1.0,9.0,46.0,29.0,140.0,1070.0,1.0,580.0,204.0,376.0,15.0,125.0,18.0,80.0,1041.0,148.0,74.0,621.0,209.0,23.0,37.0,107.0,56.0,1197.0,295.0,240.0,4.0,118.0,1.0,250.0,3.0,107.0,257.0,78.0,331.0,0.0,18.0,107.0,19.0,475.0,38.0,145.0,292.0,121.0,1.0,15.0,510.0,47.0,552.0,21.0,10.0,118.0,28.0,100.0,918.0,366.0,0.0,241.0,124.0,54.0,381.0,32.0,45.0,5.0,76.0,1263.0,10.0,413.0,26.0,44.0,103.0,1764.0,646.0,56.0,78.0,11.0,95.0,144.0,61.0,735.0,183.0,2.0,842.0,20.0,61.0,2196.0,161.0,922.0,43.0,234.0,979.0,0.0,171.0,676.0,164.0,12.0,583.0,417.0,152.0,613.0,243.0,203.0,21.0,758.0,15.0,260.0,68.0,80.0,111.0,31.0,1575.0,361.0,315.0,2116.0,1.0,656.0,1391.0,1048.0,333.0,184.0,321.0,16.0,104.0,417.0,455.0,38.0,42.0,136.0,1840.0,29.0,43.0,9765.0,204.0,13.0,423.0,135.0,125.0,484.0,13.0,113.0,37.0,2.0,5.0,58.0,57.0,470.0,205.0,3000.0,1062.0,33.0,112.0,13.0,61.0,0.0,119.0,53.0,1252.0,139.0,157.0,398.0,76.0,74.0,16.0,44.0,43.0,58.0,1095.0,408.0,128.0,124.0,37.0,44.0,41.0,148.0,150.0,43.0,17.0,31.0,36.0,55.0,79.0,168.0,658.0,151.0,104.0,269.0,138.0,10.0,9.0,216.0,42.0,1027.0,8.0,34.0,141.0,158.0,97.0,5.0,21.0,3.0,143.0,49.0,111.0,380.0,5.0,901.0,293.0,84.0,236.0,65.0,115.0,214.0,5.0,22.0,222.0,23.0,7.0,56.0,2.0,506.0,57.0,182.0,9.0,109.0,35.0,8.0,0.0,30.0,142.0,105.0,55.0,8.0,728.0,184.0,86.0,33.0,91.0,27.0,23.0,2176.0,191.0,38.0,66.0,51.0,83.0,787.0,3.0,832.0,23.0,1.0,116.0,28.0,75.0,69.0,47.0,238.0,59.0,16.89,2019-04-21,,2019-16,15.817896874091275,71.29958721414, diff --git a/gsoc_application_projects/2020/influenza/dash/data/final/germany.csv b/gsoc_application_projects/2020/influenza/dash/data/final/germany.csv new file mode 100644 index 0000000..95c24a0 --- /dev/null +++ b/gsoc_application_projects/2020/influenza/dash/data/final/germany.csv @@ -0,0 +1,313 @@ +,Unnamed: 0,incidence,Acetaldehydsyndrom,Achsensymptom,Adeno-assoziierte_Viren,Adenovirusimpfstoff,Adipsie,Adynamie,Aggravation,Akantholyse,Akroosteolyse,Akrozyanose,Akute_Bronchitis,Akute_Mittelohrentzündung,Akute_eitrige_Thyreoiditis,Alkalose,Alkoholintoleranz,Allgemeininfektion,Alterssyndrom,Amnioninfektionssyndrom,Anorexie,Anthraximpfstoff,Anthroponose,Anti-NMDA-Rezeptor-Enzephalitis,Anämie,Arjenyattah-Epidemie,Asthenie,Attische_Seuche,Azidose,B-Symptomatik,Bagatellisierung,Bazex-Syndrom,Bendopnoe,Bilirubinurie,Biologische_Schutzstufe,Biologische_Sicherheitsstufe,Blutvergiftung,Bradykardie,Bürstenschädel,Cafeteria-roenbergensis-Virus,Cholera-Aufstand_in_Königsberg,Choleraepidemie_in_Haiti_ab_2010,Choleraepidemie_von_1892,Choleraimpfstoff,Chronische_Schleimhauteiterung,Chronisches_Schmerzsyndrom,Couperose,Cyprianische_Pest,Cytomegalievirusimpfstoff,DTP-Impfstoff,Dakryozystitis,Dehnungsstreifen,Dengue-Virus-Impfstoff,Diphtherieepidemie_in_Nome,Diphtherieimpfstoff,Dissimulation,Druckpuls,Dyschylie,Ebola-Impfstoff,Ebolafieber-Epidemie_2014,Ebolafieber-Epidemie_in_der_Demokratischen_Republik_Kongo_2014,Elektrolytstörung,Emerging_Infectious_Disease,Endokarditis,Englischer_Schweiß,Enzephalitis,Enzootie,Epstein-Barr-Virus-Impfstoff,Erkältung,Erythrodiapedese,Exsikkose,FSME-Impfstoff,Facies_leonina,Fieber_unklarer_Genese,Fieberdelirium,Fischwirbel,Fleckfieberimpfstoff,Furunkel,Gebrechlichkeit,Gelbfieberimpfstoff,Geonose,Gliederschmerz,Glucosurie,Gordon-Syndrom,Grey-Turner-Zeichen,Große_Pest_von_London,HIV-Impfstoff,HPV-Impfstoff,HUS-Epidemie_2011,Haar-Heterochromie,Haffkrankheit,Hakenwurmimpfstoff,Hamman-Zeichen,Harnwegsinfekt,Hepatitis-A-Impfstoff,Hepatitis-B-Impfstoff,Hepatosplenomegalie,Herdenzephalitis,Hexavalenter_Impfstoff,Hexenschuss,Hiatus_leucaemicus,Hordeolum,Horner-Syndrom,Hospitalfieber,Hypalbuminämie,Hyperhydratation,Hyperkaliämie,Hypernatriämie,Hyperorexie,Hyperviskositätssyndrom,Hypochromie,Hypokaliämie,Hypokalzämie,Hyponatriämie,Hämatozele,Hämaturie,Hämoglobinurie,Hämolyse,Impfstoff,Infektion,Infektionskrankheit,Influenzaimpfstoff,Initialsymptom,Intelligenzminderung,Intercostalneuralgie,International_Society_of_Chemotherapy,Ischämie,Isomorpher_Reizeffekt,Isosthenurie,Italienisches_Fieber,Japanische-Enzephalitis-Impfstoff,Jarisch-Herxheimer-Reaktion,Juckreiz,Kachexie,Kahnbauch,Kalzinose,Kardiomegalie,Kehr-Zeichen,Keratolyse,Ketonurie,Kolpitis,Konjugierter_Impfstoff,Konjunktivitis,Kontaktblutung,Konvergenzexzess,Koordinationsstörungen,Kopfschmerz,Koprophagie,Krampfanfall,Krebsimpfstoff,Krepitation,Lackzunge,Lasègue-Zeichen,Lebendimpfstoff,Legionellose-Ausbruch_in_Jülich_2014,Legionellose-Ausbruch_in_Warstein_2013,Leitsymptom,Liebermeister-Regel,Lipomastie,Liste_von_Epidemien_und_Pandemien,Lokalinfektion,Lungenentzündung,Lymphopenie,MMR-Impfstoff,Madonnenfinger,Malariaimpfstoff,Marfan-Zeichen,Markerimpfstoff,Marschhämoglobinurie,Masernimpfstoff,Maskengesicht,Megalokornea,Metabolische_Alkalose,Metabolische_Azidose,Mikroalbuminurie,Milzbrand-Unfall_in_Swerdlowsk,Mittelmeerkrankheit,Modified-Vaccinia-Ankara-Virus,Mumpsimpfstoff,Muskelhypotonie,Muskelkrampf-Muskelschmerz-und-Faszikulationen-Syndrom,Muskelschmerz,Myalgie,Myoglobinurie,Nachtschweiß,Nageldystrophie,Nagelhypoplasie,Nervosität,Neugeborenensepsis,Nikolski-Phänomen,Nonnensausen,Nykturie,Ohrspeicheldrüsenerkrankung,Organomegalie,Osler-Knötchen,Osmotische_Diurese,Osteosklerose,Oststaaten-Polio-Epidemie_von_1916,Otter-Valley-Polio-Epidemie,Palmarerythem,Panzytopenie,Paraneoplastisches_Syndrom,Parotitis,Pel-Ebstein-Fieber,Peptidimpfstoff,Perifokalödem,Pertussisimpfstoff,Pestimpfstoff,Picardsches_Schweißfieber,Plazentitis,Pleuraerguss,Pneumococcusimpfstoff,Pneumonie,Pockenepidemie_an_der_Pazifikküste_Nordamerikas_1862,Pockenepidemie_an_der_Pazifikküste_Nordamerikas_ab_1775,Pockenepidemie_in_Australien_1789,Pockenepidemie_in_Boston_1721,Pockenimpfstoff,Polioimpfstoff,Polydipsie,Polyurie,Portosystemischer_Shunt,Postenzephalitisches_Syndrom,Potato-Spindle-Tuber-Viroid,Proteinurie,Protothekose,Präödem,Pseudoparese,Pulsdefizit,Pyogen,Pyämie,Rachitischer_Rosenkranz,Rhinosinusitis,Rieder-Formen,Risus_sardonicus,Roseole,Rotavirusimpfstoff,Rötelnimpfstoff,Rückenschmerzen,Rückenschonhaltung,SARS-assoziiertes_Coronavirus,Saegesser-Zeichen,Scheidenausfluss,Schistosomiasisimpfstoff,Schlafstörung,Schmerz,Schmetterlingserythem,Schonhaltung,Schwangerschaftsassoziierte_Osteoporose,Schüttelfrost,Seitenstiche,Septikämie,Sicca-Syndrom,Simulant,Spermatitis,Sphärozytose,Sporotrichose,Stieda-Pellegrini-Köhler-Schatten,Symptomatologie,Säbelscheidentibia,Tachykardie,Talimogen_laherparepvec,Tanganjika-Lachepidemie,Tetanie,Tetanusimpfstoff,Tollwutimpfstoff,Totimpfstoff,Toxoidimpfstoff,Trachom,Tropenkrankheit,Trypanosomiasisimpfstoff,Tränendrüsenentzündung,Tumoranämie,Tumorkachexie,Typhusepidemie_in_Gelsenkirchen_1901,Typhusepidemie_von_Lebach,Typhusimpfstoff,Ulnardeviation,Untereinheitenimpfstoff,Untergewicht,Unwohlsein_und_Ermüdung,Vaginalstein,Varicellaimpfstoff,Vasovagale_Synkope,Vergessen,Verspannung,Virophagen,Virusinfektion,Viszeromegalie,Vollmondgesicht,Wachstumsschmerzen,Wehau-Krankheit,Winterbottom-Zeichen,Zahnschmerzen,Zervizitis,Zikavirus-Epidemie_2015/2016,Zohlen-Zeichen,Zwerchfellhochstand,Zyanose,Ödem,Übelkeit,date,estimate,week,estimate_lrr,estimate_rf,estimate_p +0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2007-10-21,,2007-42,0.011348392956318103,0.006350000000000001, +1,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2007-10-28,,2007-43,-0.05578824179621702,0.0035000000000000005, +2,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2007-11-04,,2007-44,0.0013731292618358421,0.006350000000000001, +3,3,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2007-11-11,,2007-45,0.015821411598651292,0.006350000000000001, +4,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2007-11-18,,2007-46,0.015183893587354946,0.0035000000000000005, +5,5,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2007-11-25,,2007-47,-0.02164307978639332,0.006350000000000001, +6,6,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2007-12-02,,2007-48,0.02668853473009929,0.006350000000000001, +7,7,0.0,0.0,0.0,4.0,0.0,0.0,0.0,3.0,0.0,0.0,5.0,160.0,0.0,0.0,20.0,3.0,0.0,3.0,21.0,88.0,0.0,1.0,0.0,1.0,0.0,11.0,2.0,92.0,12.0,0.0,0.0,0.0,0.0,0.0,13.0,6.0,90.0,0.0,0.0,0.0,0.0,6.0,0.0,7.0,0.0,15.0,0.0,0.0,1.0,3.0,43.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,51.0,0.0,74.0,9.0,0.0,0.0,0.0,66.0,0.0,2.0,0.0,0.0,0.0,0.0,112.0,0.0,0.0,0.0,5.0,12.0,0.0,0.0,0.0,0.0,36.0,0.0,0.0,0.0,0.0,0.0,56.0,0.0,0.0,2.0,5.0,6.0,37.0,0.0,71.0,43.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,119.0,137.0,0.0,1.0,13.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,9.0,62.0,28.0,0.0,2.0,2.0,0.0,20.0,13.0,56.0,0.0,69.0,6.0,0.0,0.0,74.0,62.0,9.0,0.0,8.0,0.0,0.0,5.0,0.0,0.0,11.0,0.0,0.0,0.0,1.0,0.0,12.0,11.0,2.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,10.0,21.0,1.0,0.0,0.0,0.0,0.0,31.0,0.0,1.0,46.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,15.0,0.0,0.0,0.0,3.0,4.0,0.0,0.0,5.0,13.0,13.0,13.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,45.0,0.0,80.0,0.0,0.0,0.0,0.0,0.0,0.0,19.0,33.0,4.0,0.0,0.0,21.0,0.0,0.0,0.0,5.0,2.0,0.0,3.0,0.0,0.0,10.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,204.0,0.0,1.0,0.0,1.0,23.0,0.0,2.0,15.0,2.0,0.0,0.0,0.0,1.0,0.0,138.0,0.0,0.0,5.0,0.0,0.0,3.0,6.0,10.0,22.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,43.0,0.0,0.0,0.0,18.0,22.0,22.0,0.0,63.0,0.0,17.0,0.0,0.0,0.0,29.0,0.0,0.0,0.0,11.0,44.0,0.0,0.0,2007-12-09,,2007-49,0.280676783948136,0.0028333333333333335, +8,8,0.04,0.0,0.0,102.0,0.0,30.0,2.0,185.0,64.0,0.0,141.0,4169.0,0.0,0.0,527.0,71.0,0.0,89.0,57.0,2247.0,0.0,29.0,0.0,18.0,0.0,215.0,68.0,1518.0,241.0,29.0,0.0,0.0,0.0,0.0,176.0,320.0,1333.0,0.0,0.0,0.0,0.0,86.0,0.0,126.0,0.0,402.0,1.0,0.0,58.0,93.0,759.0,0.0,0.0,0.0,76.0,156.0,0.0,0.0,0.0,0.0,2.0,0.0,1702.0,0.0,1659.0,473.0,0.0,18.0,0.0,1652.0,0.0,33.0,1.0,0.0,0.0,0.0,2642.0,0.0,0.0,11.0,160.0,110.0,0.0,0.0,0.0,44.0,1074.0,0.0,0.0,0.0,0.0,0.0,1249.0,0.0,0.0,178.0,68.0,95.0,598.0,0.0,1847.0,4066.0,0.0,0.0,1.0,3.0,0.0,4.0,0.0,22.0,4.0,2.0,5.0,0.0,3.0,1.0,4.0,648.0,2806.0,3163.0,0.0,27.0,320.0,77.0,0.0,7.0,0.0,1.0,0.0,0.0,229.0,1554.0,842.0,0.0,66.0,123.0,0.0,315.0,143.0,1108.0,1.0,2080.0,131.0,1.0,1.0,1886.0,1305.0,217.0,0.0,191.0,0.0,1.0,120.0,0.0,0.0,342.0,0.0,0.0,0.0,50.0,13.0,240.0,463.0,79.0,0.0,0.0,0.0,0.0,0.0,44.0,0.0,250.0,642.0,104.0,0.0,3.0,0.0,0.0,325.0,0.0,28.0,985.0,73.0,0.0,0.0,0.0,5.0,0.0,1.0,68.0,400.0,0.0,0.0,0.0,82.0,73.0,0.0,0.0,76.0,282.0,390.0,343.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1382.0,0.0,1553.0,0.0,0.0,0.0,0.0,0.0,0.0,333.0,567.0,73.0,0.0,0.0,661.0,0.0,0.0,0.0,204.0,58.0,0.0,38.0,3.0,0.0,118.0,0.0,0.0,0.0,4.0,1.0,0.0,0.0,1.0,0.0,21.0,3354.0,0.0,35.0,0.0,4.0,582.0,3.0,54.0,188.0,33.0,1.0,0.0,0.0,57.0,0.0,3121.0,0.0,0.0,289.0,0.0,0.0,66.0,104.0,317.0,340.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,2.0,0.0,841.0,0.0,0.0,0.0,632.0,578.0,451.0,0.0,1689.0,7.0,342.0,1.0,0.0,0.0,801.0,1.0,0.0,0.0,176.0,1065.0,0.0,0.0,2007-12-16,,2007-50,0.20416763812987604,0.18, +9,9,0.05,0.0,0.0,89.0,0.0,25.0,0.0,180.0,34.0,0.0,135.0,3959.0,3.0,0.0,350.0,62.0,0.0,86.0,58.0,1753.0,0.0,17.0,0.0,16.0,0.0,140.0,51.0,1093.0,189.0,23.0,0.0,0.0,0.0,11.0,125.0,290.0,977.0,0.0,0.0,0.0,0.0,70.0,0.0,97.0,0.0,328.0,0.0,0.0,38.0,93.0,609.0,0.0,0.0,0.0,43.0,100.0,0.0,0.0,0.0,0.0,1.0,0.0,1298.0,0.0,1073.0,176.0,0.0,16.0,0.0,1337.0,0.0,47.0,0.0,0.0,0.0,0.0,2748.0,0.0,0.0,6.0,116.0,85.0,0.0,0.0,0.0,22.0,666.0,0.0,0.0,0.0,0.0,0.0,1108.0,0.0,0.0,129.0,50.0,91.0,615.0,0.0,1629.0,757.0,0.0,0.0,0.0,3.0,0.0,2.0,0.0,10.0,4.0,0.0,2.0,0.0,1.0,2.0,6.0,481.0,2159.0,2545.0,0.0,19.0,301.0,73.0,0.0,7.0,0.0,0.0,0.0,0.0,206.0,1389.0,674.0,0.0,48.0,103.0,0.0,292.0,113.0,921.0,0.0,1835.0,103.0,4.0,2.0,1583.0,1059.0,173.0,0.0,122.0,0.0,2.0,95.0,0.0,0.0,287.0,0.0,2.0,0.0,40.0,21.0,191.0,334.0,55.0,0.0,0.0,0.0,0.0,0.0,40.0,0.0,162.0,517.0,96.0,0.0,2.0,0.0,0.0,250.0,0.0,36.0,800.0,51.0,0.0,1.0,0.0,2.0,0.0,0.0,52.0,290.0,3.0,0.0,0.0,66.0,116.0,0.0,0.0,49.0,211.0,358.0,241.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1186.0,0.0,1356.0,0.0,0.0,0.0,0.0,0.0,0.0,230.0,491.0,48.0,0.0,0.0,471.0,0.0,0.0,0.0,126.0,68.0,0.0,20.0,1.0,0.0,90.0,0.0,0.0,0.0,5.0,2.0,1.0,0.0,2.0,0.0,18.0,2589.0,0.0,21.0,0.0,7.0,592.0,0.0,30.0,139.0,31.0,0.0,0.0,0.0,51.0,0.0,2579.0,0.0,0.0,201.0,0.0,0.0,36.0,79.0,265.0,354.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,634.0,0.0,0.0,0.0,486.0,613.0,397.0,0.0,1306.0,9.0,286.0,2.0,0.0,0.0,987.0,1.0,0.0,0.0,119.0,914.0,0.0,0.0,2007-12-23,,2007-51,-0.6655156826489188,0.04200000000000001, +10,10,0.04,1.0,0.0,60.0,0.0,27.0,10.0,91.0,38.0,0.0,61.0,3027.0,0.0,0.0,268.0,58.0,0.0,48.0,56.0,1637.0,0.0,17.0,0.0,22.0,0.0,99.0,59.0,837.0,131.0,11.0,0.0,0.0,0.0,18.0,125.0,285.0,832.0,0.0,0.0,0.0,0.0,65.0,0.0,67.0,0.0,282.0,1.0,0.0,28.0,91.0,752.0,0.0,0.0,0.0,44.0,78.0,0.0,0.0,0.0,0.0,3.0,0.0,895.0,0.0,927.0,154.0,0.0,18.0,0.0,1205.0,0.0,67.0,0.0,0.0,1.0,0.0,2446.0,0.0,0.0,12.0,53.0,61.0,0.0,0.0,0.0,27.0,390.0,0.0,0.0,0.0,0.0,0.0,965.0,0.0,0.0,96.0,44.0,45.0,512.0,0.0,1699.0,502.0,0.0,1.0,1.0,2.0,0.0,6.0,0.0,8.0,1.0,0.0,6.0,0.0,2.0,0.0,9.0,322.0,1503.0,1437.0,0.0,21.0,179.0,47.0,0.0,11.0,0.0,0.0,0.0,0.0,145.0,1454.0,440.0,0.0,39.0,53.0,0.0,229.0,69.0,739.0,0.0,1588.0,106.0,3.0,0.0,1383.0,1159.0,142.0,0.0,98.0,1.0,0.0,82.0,0.0,0.0,205.0,0.0,0.0,0.0,30.0,25.0,93.0,228.0,41.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,151.0,303.0,31.0,0.0,1.0,0.0,0.0,188.0,0.0,42.0,634.0,38.0,0.0,0.0,0.0,2.0,0.0,0.0,43.0,236.0,0.0,0.0,0.0,37.0,38.0,0.0,0.0,45.0,136.0,242.0,234.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,968.0,0.0,1083.0,1.0,0.0,0.0,0.0,0.0,1.0,233.0,425.0,39.0,0.0,0.0,320.0,0.0,0.0,0.0,129.0,58.0,0.0,18.0,0.0,37.0,96.0,1.0,0.0,0.0,3.0,0.0,1.0,1.0,0.0,0.0,15.0,2032.0,0.0,21.0,0.0,2.0,532.0,3.0,20.0,65.0,22.0,2.0,0.0,0.0,32.0,1.0,2084.0,0.0,0.0,154.0,0.0,0.0,40.0,54.0,184.0,229.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,568.0,0.0,0.0,0.0,343.0,437.0,324.0,0.0,905.0,5.0,264.0,1.0,0.0,0.0,850.0,1.0,0.0,0.0,106.0,713.0,0.0,0.0,2007-12-30,,2007-52,0.22480275454530205,0.17600000000000002, +11,11,0.04,0.0,0.0,143.0,0.0,143.0,103.0,143.0,126.0,0.0,306.0,7486.0,2.0,139.0,652.0,123.0,80.0,117.0,118.0,2628.0,0.0,48.0,0.0,24.0,0.0,262.0,63.0,1874.0,367.0,23.0,0.0,0.0,0.0,164.0,167.0,499.0,1565.0,0.0,0.0,0.0,0.0,133.0,0.0,114.0,45.0,544.0,0.0,0.0,234.0,144.0,1386.0,0.0,67.0,0.0,101.0,138.0,1.0,0.0,0.0,0.0,2.0,0.0,1862.0,0.0,2039.0,291.0,0.0,20.0,0.0,2036.0,0.0,132.0,0.0,0.0,13.0,0.0,4199.0,0.0,0.0,70.0,167.0,124.0,23.0,100.0,0.0,147.0,980.0,0.0,96.0,0.0,0.0,0.0,1822.0,0.0,0.0,171.0,163.0,138.0,1548.0,0.0,2238.0,1016.0,0.0,2.0,12.0,4.0,1.0,10.0,0.0,50.0,5.0,2.0,5.0,0.0,4.0,1.0,9.0,669.0,2893.0,2862.0,0.0,60.0,389.0,153.0,0.0,7.0,140.0,149.0,0.0,0.0,328.0,2670.0,974.0,1.0,215.0,182.0,0.0,613.0,215.0,1305.0,0.0,2551.0,237.0,2.0,3.0,2478.0,1553.0,292.0,0.0,222.0,118.0,4.0,188.0,0.0,0.0,380.0,0.0,143.0,0.0,144.0,22.0,225.0,459.0,179.0,0.0,0.0,0.0,0.0,0.0,81.0,0.0,427.0,734.0,172.0,0.0,3.0,0.0,0.0,317.0,0.0,82.0,1318.0,83.0,0.0,0.0,0.0,5.0,0.0,0.0,95.0,447.0,2.0,0.0,0.0,93.0,344.0,0.0,0.0,137.0,311.0,584.0,263.1666666666667,0.0,0.0,0.0,0.0,0.0,0.0,135.0,1667.0,0.0,1782.0,1.0,0.0,0.0,0.0,0.0,37.0,532.0,918.0,114.0,0.0,0.0,695.0,0.0,0.0,33.0,210.0,122.0,0.0,53.0,0.2,104.0,144.0,0.0,0.0,0.0,3.0,0.0,0.0,73.0,1.0,0.0,22.0,3701.0,0.0,67.0,0.0,6.0,1203.0,0.0,53.0,158.0,85.0,1.0,81.0,0.0,128.0,0.0,3943.0,0.0,0.0,471.0,0.0,1.0,77.0,198.0,386.0,394.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1063.0,0.0,0.0,0.0,631.0,959.0,653.0,0.0,1898.0,113.0,514.0,136.0,0.0,0.0,1164.0,0.0,0.0,112.0,325.0,1672.0,0.0,0.0,2008-01-13,,2008-2,0.2426808366142712,0.04000000000000001, +12,12,0.19,0.0,0.0,118.0,0.0,40.0,2.0,195.0,108.0,0.0,148.0,5316.0,1.0,0.0,683.0,67.0,0.0,123.0,101.0,2858.0,0.0,29.0,0.0,22.0,0.0,191.0,70.0,2063.0,295.0,29.0,0.0,0.0,0.0,71.0,178.0,410.0,1614.0,0.0,0.0,0.0,0.0,127.0,0.0,128.0,0.0,489.0,0.0,0.0,88.0,125.0,1127.0,0.0,0.0,0.0,69.0,153.0,0.0,0.0,0.0,0.0,2.0,0.0,2122.0,0.0,1521.0,319.0,0.0,18.0,0.0,1791.0,0.0,50.0,0.0,0.0,0.0,0.0,3813.0,0.0,0.0,16.0,188.0,161.0,0.0,0.0,0.0,40.0,1090.0,0.0,0.0,0.0,0.0,0.0,1526.0,0.0,0.0,252.0,70.0,126.0,769.0,0.0,2106.0,1250.0,0.0,0.0,18.0,0.0,0.0,11.0,0.0,18.0,4.0,4.0,1.0,0.0,3.0,2.0,8.0,918.0,3264.0,4124.0,0.0,21.0,381.0,103.0,0.0,5.0,0.0,1.0,0.0,0.0,238.0,2153.0,964.0,0.0,90.0,117.0,0.0,391.0,187.0,1180.0,0.0,2456.0,116.0,5.0,1.0,2067.0,1505.0,260.0,0.0,240.0,2.0,0.0,158.0,0.0,0.0,417.0,0.0,1.0,0.0,54.0,16.0,246.0,583.0,77.0,0.0,0.0,0.0,0.0,0.0,44.0,0.0,334.0,860.0,100.0,0.0,0.0,0.0,0.0,425.0,0.0,50.0,1165.0,68.0,0.0,0.0,0.0,6.0,0.0,0.0,99.0,471.0,0.0,0.0,0.0,87.0,72.0,0.0,0.0,77.0,380.0,496.0,292.3333333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1772.0,0.0,1871.0,0.0,0.0,0.0,0.0,0.0,0.0,481.0,773.0,86.0,0.0,0.0,661.0,0.0,0.0,0.0,253.0,82.0,0.0,39.0,0.4,18.0,139.0,0.0,0.0,0.0,3.0,1.0,0.0,0.0,1.0,0.0,15.0,3626.0,1.0,23.0,0.0,3.0,892.0,4.0,36.0,173.0,38.0,0.0,0.0,0.0,73.0,0.0,3889.0,0.0,0.0,308.0,0.0,0.0,82.0,90.0,423.0,468.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1121.0,0.0,0.0,0.0,594.0,721.0,588.0,0.0,2019.0,12.0,397.0,1.0,0.0,0.0,956.0,1.0,0.0,93.0,210.0,1355.0,0.0,0.0,2008-01-20,,2008-3,0.4508859036885413,0.19, +13,13,0.59,0.0,0.0,136.0,0.0,31.0,6.0,247.0,105.0,1.0,181.0,5316.0,6.0,0.0,680.0,81.0,0.0,117.0,119.0,2873.0,0.0,31.0,0.0,25.0,0.0,291.0,47.0,2007.0,340.0,23.0,0.0,0.0,1.0,62.0,165.0,376.0,1801.0,0.0,0.0,0.0,0.0,125.0,0.0,147.0,0.0,541.0,1.0,0.0,88.0,133.0,1137.0,0.0,0.0,0.0,96.0,164.0,0.0,0.0,0.0,0.0,3.0,0.0,2316.0,0.0,2000.0,273.0,0.0,22.0,0.0,1826.0,0.0,67.0,0.0,0.0,1.0,0.0,3774.0,0.0,0.0,13.0,153.0,137.0,0.0,0.0,0.0,32.0,1884.0,0.0,0.0,0.0,0.0,0.0,1706.0,0.0,0.0,214.0,47.0,131.0,808.0,2.0,2310.0,1316.0,0.0,1.0,25.0,2.0,1.0,5.0,0.0,23.0,5.0,0.0,4.0,0.0,1.0,1.0,10.0,918.0,3859.0,4088.0,0.0,23.0,384.0,74.0,0.0,11.0,0.0,0.0,0.0,0.0,305.0,1980.0,1001.0,0.0,76.0,111.0,0.0,365.0,186.0,1303.0,0.0,2490.0,143.0,2.0,2.0,2127.0,1273.0,252.0,0.0,261.0,2.0,1.0,238.0,0.0,0.0,387.0,0.0,1.0,0.0,71.0,15.0,279.0,688.0,76.0,0.0,0.0,0.0,0.0,1.0,49.0,1.0,364.0,892.0,162.0,0.0,0.0,0.0,0.0,357.0,0.0,36.0,1234.0,62.0,0.0,3.0,0.0,3.0,1.0,0.0,104.0,535.0,2.0,0.0,0.0,110.0,110.0,0.0,0.0,76.0,325.0,578.0,321.5,0.0,0.0,0.0,0.0,0.0,0.0,2.0,1748.0,0.0,2170.0,1.0,0.0,0.0,0.0,0.0,0.0,524.0,837.0,94.0,0.0,0.0,707.0,0.0,0.0,0.0,217.0,78.0,0.0,31.0,0.6000000000000001,9.0,131.0,1.0,0.0,0.0,3.0,0.0,0.0,0.0,2.0,0.0,23.0,3799.0,1.0,48.0,0.0,5.0,846.0,1.0,73.0,195.0,38.0,1.0,0.0,0.0,84.0,0.0,3919.0,0.0,0.0,347.0,0.0,0.0,105.0,169.0,423.0,425.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1056.0,0.0,0.0,0.0,570.0,808.0,621.0,0.0,1958.0,19.0,385.0,2.0,0.0,0.0,862.0,2.0,0.0,51.0,213.0,1465.0,0.0,0.0,2008-01-27,,2008-4,0.6651292530853397,0.59, +14,14,1.3,1.0,0.0,137.0,0.0,51.0,2.0,299.0,125.0,1.0,168.0,4956.0,2.0,0.0,713.0,80.0,0.0,111.0,100.0,2643.0,0.0,25.0,0.0,20.0,0.0,265.0,72.0,2043.0,372.0,28.0,0.0,0.0,0.0,90.0,170.0,390.0,1807.0,0.0,0.0,0.0,0.0,127.0,0.0,137.0,0.0,588.0,0.0,0.0,70.0,155.0,1143.0,0.0,0.0,0.0,96.0,172.0,1.0,0.0,0.0,0.0,2.0,0.0,2248.0,0.0,1948.0,232.0,0.0,15.0,0.0,1757.0,0.0,58.0,0.0,1.0,0.0,0.0,3728.0,1.0,0.0,12.0,200.0,116.0,0.0,0.0,0.0,28.0,1831.0,0.0,0.0,0.0,0.0,0.0,1627.0,0.0,0.0,201.0,87.0,130.0,769.0,0.0,2329.0,1349.0,0.0,1.0,33.0,2.0,0.0,8.0,0.0,26.0,3.0,0.0,1.0,0.0,3.0,1.0,8.0,917.0,3575.0,3745.0,0.0,32.0,471.0,96.0,0.0,6.0,0.0,0.0,0.0,0.0,320.0,1983.0,1046.0,0.0,95.0,154.0,0.0,353.0,159.0,1213.0,0.0,2391.0,154.0,0.0,2.0,2345.0,1218.0,254.0,0.0,320.0,1.0,0.0,243.0,0.0,0.0,378.0,0.0,0.0,0.0,62.0,20.0,261.0,760.0,90.0,0.0,0.0,0.0,0.0,1.0,49.0,0.0,378.0,902.0,125.0,0.0,2.0,0.0,0.0,403.0,0.0,68.0,1115.0,52.0,0.0,1.0,0.0,6.0,0.0,0.0,100.0,544.0,3.0,0.0,1.0,75.0,97.0,0.0,0.0,93.0,396.0,501.0,350.66666666666674,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1683.0,0.0,2173.0,1.0,3.0,0.0,0.0,0.0,0.0,508.0,837.0,92.0,0.0,0.0,696.0,0.0,0.0,0.0,245.0,103.0,0.0,29.0,0.8,11.0,180.0,1.0,0.0,0.0,3.0,0.0,0.0,0.0,7.0,0.0,26.0,3970.0,0.0,36.0,0.0,6.0,833.0,2.0,65.0,210.0,27.0,2.0,3.0,0.0,82.0,0.0,3945.0,0.0,0.0,323.0,0.0,0.0,122.0,142.0,341.0,504.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1003.0,0.0,0.0,0.0,627.0,761.0,589.0,0.0,2000.0,13.0,390.0,0.0,0.0,0.0,1063.0,0.0,0.0,87.0,244.0,1367.0,0.0,0.0,2008-02-03,,2008-5,1.0957886256104246,1.1580000000000001, +15,15,1.81,0.0,0.0,113.0,0.0,28.0,4.0,248.0,113.0,0.0,161.0,5498.0,0.0,0.0,717.0,87.0,11.0,126.0,94.0,2469.0,0.0,44.0,0.0,17.0,0.0,296.0,35.0,1913.0,438.0,31.0,0.0,0.0,1.0,61.0,141.0,456.0,1690.0,0.0,0.0,0.0,0.0,99.0,0.0,151.0,2.0,638.0,0.0,0.0,64.0,125.0,1159.0,0.0,0.0,0.0,73.0,157.0,0.0,0.0,0.0,0.0,3.0,0.0,2282.0,0.0,1657.0,213.0,0.0,12.0,0.0,1715.0,0.0,63.0,0.0,0.0,2.0,0.0,3731.0,0.0,0.0,13.0,154.0,133.0,0.0,0.0,0.0,32.0,2284.0,0.0,0.0,0.0,0.0,0.0,1724.0,0.0,0.0,174.0,78.0,151.0,735.0,1.0,2252.0,1311.0,0.0,0.0,42.0,0.0,0.0,8.0,0.0,24.0,1.0,2.0,3.0,0.0,5.0,0.0,2.0,858.0,3305.0,3315.0,0.0,18.0,405.0,112.0,0.0,1.0,0.0,0.0,0.0,0.0,313.0,2035.0,1053.0,0.0,96.0,104.0,0.0,332.0,162.0,1265.0,1.0,2582.0,130.0,2.0,0.0,2211.0,1424.0,246.0,0.0,273.0,0.0,1.0,197.0,0.0,0.0,476.0,0.0,0.0,0.0,79.0,11.0,278.0,599.0,79.0,0.0,0.0,0.0,0.0,0.0,65.0,0.0,328.0,888.0,119.0,0.0,1.0,0.0,0.0,384.0,0.0,37.0,1101.0,61.0,0.0,0.0,0.0,0.0,1.0,0.0,82.0,536.0,2.0,0.0,2.0,86.0,78.0,0.0,0.0,80.0,315.0,621.0,379.83333333333337,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1735.0,0.0,1884.0,0.0,0.0,0.0,0.0,0.0,0.0,482.0,772.0,105.0,0.0,0.0,740.0,0.0,0.0,0.0,204.0,89.0,0.0,41.0,1.0,12.0,158.0,0.0,0.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,14.0,3788.0,0.0,49.0,0.0,3.0,950.0,0.0,63.0,223.0,49.0,2.0,0.0,0.0,68.0,0.0,3857.0,0.0,0.0,379.0,0.0,0.0,81.0,119.0,451.0,384.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,2.0,0.0,1139.0,0.0,0.0,0.0,651.0,854.0,549.0,0.0,1833.0,12.0,419.0,3.0,0.0,0.0,1097.0,2.0,0.0,76.0,175.0,1354.0,0.0,0.0,2008-02-10,,2008-6,2.5264995295131456,3.4480000000000004, +16,16,1.77,0.0,0.0,113.0,0.0,110.0,1.0,259.0,131.0,0.0,142.0,4305.0,6.0,0.0,636.0,89.0,27.0,94.0,93.0,2486.0,0.0,38.0,0.0,34.0,0.0,219.0,54.0,1845.0,366.0,24.0,0.0,0.0,0.0,60.0,152.0,397.0,1577.0,0.0,0.0,0.0,0.0,125.0,0.0,125.0,1.0,619.0,0.0,0.0,75.0,99.0,1211.0,0.0,0.0,0.0,67.0,129.0,0.0,0.0,0.0,0.0,0.0,0.0,2163.0,0.0,1921.0,222.0,0.0,14.0,0.0,1695.0,0.0,47.0,0.0,0.0,1.0,0.0,3785.0,1.0,0.0,14.0,193.0,97.0,0.0,0.0,0.0,33.0,1912.0,0.0,0.0,0.0,0.0,0.0,1531.0,0.0,0.0,153.0,64.0,127.0,796.0,1.0,2259.0,1372.0,0.0,0.0,23.0,1.0,1.0,4.0,0.0,40.0,0.0,2.0,1.0,0.0,1.0,0.0,3.0,902.0,3518.0,3357.0,0.0,21.0,403.0,103.0,0.0,2.0,0.0,0.0,0.0,0.0,305.0,2002.0,992.0,0.0,104.0,101.0,0.0,348.0,166.0,1244.0,13.0,2591.0,135.0,4.0,1.0,2213.0,1359.0,227.0,0.0,274.0,1.0,0.0,211.0,0.0,0.0,382.0,0.0,1.0,0.0,59.0,17.0,264.0,572.0,71.0,0.0,0.0,0.0,0.0,0.0,58.0,0.0,339.0,753.0,126.0,0.0,1.0,0.0,0.0,352.0,0.0,51.0,1025.0,65.0,0.0,0.0,0.0,2.0,1.0,0.0,90.0,511.0,0.0,0.0,0.0,85.0,97.0,0.0,0.0,79.0,314.0,664.0,409.0,1.0,0.0,0.0,0.0,0.0,0.0,62.0,1653.0,0.0,1974.0,0.0,0.0,0.0,0.0,1.0,0.0,448.0,740.0,87.0,0.0,0.0,750.0,0.0,0.0,0.0,197.0,90.0,0.0,40.0,2.0,13.0,171.0,0.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,14.0,3725.0,0.0,36.0,0.0,6.0,815.0,0.0,65.0,205.0,26.0,1.0,0.0,0.0,70.0,0.0,3357.0,0.0,0.0,394.0,0.0,0.0,97.0,124.0,365.0,455.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1027.0,0.0,0.0,0.0,623.0,746.0,520.0,0.0,1920.0,11.0,391.0,2.0,0.0,0.0,1026.0,0.0,0.0,67.0,239.0,1351.0,0.0,0.0,2008-02-17,,2008-7,1.464657010495749,1.438, +17,17,2.04,1.0,0.0,129.0,0.0,35.0,2.0,268.0,108.0,1.0,168.0,5429.0,3.0,0.0,616.0,74.0,14.0,137.0,74.0,2710.0,0.0,28.0,0.0,17.0,0.0,441.0,48.0,1780.0,329.0,15.0,0.0,0.0,0.0,91.0,174.0,389.0,1700.0,0.0,0.0,0.0,0.0,147.0,0.0,138.0,0.0,607.0,1.0,0.0,58.0,129.0,1095.0,0.0,0.0,0.0,75.0,132.0,1.0,0.0,0.0,0.0,5.0,0.0,2083.0,0.0,1714.0,284.0,0.0,13.0,0.0,1487.0,0.0,54.0,0.0,0.0,0.0,0.0,4682.0,1.0,0.0,11.0,215.0,134.0,0.0,0.0,0.0,46.0,1591.0,0.0,49.0,1.0,0.0,0.0,1451.0,0.0,0.0,171.0,53.0,126.0,852.0,0.0,2248.0,1158.0,0.0,2.0,14.0,3.0,2.0,4.0,0.0,30.0,4.0,2.0,0.0,0.0,1.0,0.0,8.0,877.0,3386.0,3870.0,0.0,51.0,480.0,84.0,0.0,4.0,94.0,55.0,0.0,0.0,262.0,1909.0,1014.0,0.0,110.0,106.0,1.0,332.0,136.0,1111.0,0.0,2621.0,142.0,2.0,1.0,2091.0,1377.0,214.0,0.0,236.0,1.0,0.0,272.0,0.0,0.0,383.0,0.0,1.0,0.0,63.0,11.0,235.0,549.0,81.0,0.0,0.0,0.0,0.0,0.0,55.0,0.0,350.0,740.0,129.0,0.0,1.0,0.0,0.0,384.0,0.0,57.0,1050.0,81.0,0.0,0.0,0.0,1.0,0.0,0.0,89.0,485.0,0.0,0.0,1.0,71.0,86.0,0.0,0.0,74.0,318.0,506.0,403.0,0.0,0.0,0.0,0.0,0.0,0.0,46.0,1656.0,0.0,1823.0,0.0,1.0,0.0,0.0,0.0,0.0,441.0,749.0,82.0,0.0,0.0,656.0,0.0,0.0,0.0,186.0,92.0,0.0,35.0,1.0,10.0,138.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,2.0,0.0,7.0,3683.0,1.0,38.0,0.0,5.0,819.0,0.0,56.0,168.0,35.0,1.0,0.0,0.0,73.0,0.0,3094.0,0.0,0.0,290.0,0.0,0.0,113.0,117.0,333.0,509.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1067.0,0.0,0.0,0.0,560.0,873.0,493.0,0.0,1929.0,16.0,369.0,2.0,0.0,0.0,617.0,1.0,0.0,78.0,183.0,1383.0,0.0,0.0,2008-02-24,,2008-8,1.8336173902232353,1.75, +18,18,2.11,0.0,0.0,130.0,0.0,45.0,3.0,280.0,63.0,0.0,180.0,6147.0,2.0,0.0,640.0,83.0,14.0,126.0,93.0,2747.0,0.0,31.0,0.0,18.0,0.0,287.0,46.0,1928.0,340.0,23.0,0.0,0.0,0.0,90.0,132.0,415.0,1866.0,0.0,0.0,0.0,0.0,175.0,0.0,147.0,0.0,700.0,0.0,0.0,83.0,135.0,1094.0,0.0,80.0,0.0,77.0,136.0,0.0,0.0,0.0,0.0,4.0,0.0,1956.0,0.0,1800.0,258.0,0.0,12.0,0.0,1897.0,0.0,46.0,0.0,0.0,0.0,0.0,4855.0,0.0,0.0,11.0,288.0,121.0,0.0,0.0,0.0,46.0,2179.0,0.0,17.0,0.0,0.0,0.0,1476.0,0.0,0.0,148.0,85.0,119.0,745.0,0.0,2120.0,1127.0,0.0,0.0,9.0,2.0,0.0,7.0,0.0,27.0,1.0,2.0,3.0,0.0,1.0,0.0,5.0,855.0,3464.0,4281.0,0.0,24.0,469.0,102.0,0.0,9.0,40.0,36.0,0.0,0.0,298.0,2134.0,1192.0,0.0,130.0,108.0,0.0,381.0,160.0,1220.0,0.0,2683.0,149.0,1.0,2.0,2215.0,1510.0,236.0,0.0,245.0,0.0,1.0,238.0,0.0,0.0,391.0,0.0,0.0,0.0,57.0,11.0,265.0,627.0,79.0,0.0,0.0,0.0,0.0,0.0,94.0,1.0,366.0,750.0,134.0,0.0,0.0,0.0,0.0,413.0,0.0,72.0,1191.0,81.0,0.0,0.0,0.0,1.0,0.0,0.0,85.0,538.0,2.0,0.0,1.0,55.0,88.0,0.0,0.0,87.0,321.0,561.0,404.0,0.0,0.0,0.0,0.0,0.0,0.0,42.0,1777.0,0.0,1961.0,2.0,0.0,0.0,0.0,0.0,0.0,443.0,773.0,85.0,0.0,0.0,639.0,0.0,0.0,0.0,234.0,56.0,0.0,33.0,2.0,12.0,122.0,0.0,0.0,0.0,3.0,1.0,0.0,1.0,0.0,0.0,11.0,3987.0,0.0,31.0,0.0,7.0,924.0,2.0,49.0,208.0,35.0,1.0,0.0,0.0,60.0,0.0,4052.0,0.0,0.0,318.0,0.0,0.0,92.0,148.0,340.0,527.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,1.0,0.0,1047.0,0.0,0.0,0.0,618.0,724.0,588.0,0.0,2213.0,11.0,452.0,6.0,0.0,0.0,904.0,0.0,0.0,85.0,188.0,1558.0,0.0,0.0,2008-03-02,,2008-9,2.3665854346840014,3.2419999999999995, +19,19,2.31,0.0,0.0,139.0,0.0,60.0,4.0,270.0,101.0,0.0,200.0,5369.0,0.0,0.0,699.0,107.0,30.0,115.0,88.0,2532.0,0.0,53.0,0.0,14.0,0.0,279.0,72.0,1928.0,370.0,34.0,0.0,0.0,0.0,80.0,118.0,390.0,1729.0,0.0,0.0,0.0,0.0,145.0,0.0,116.0,0.0,713.0,0.0,0.0,92.0,138.0,1317.0,0.0,136.0,0.0,76.0,169.0,0.0,0.0,0.0,0.0,2.0,0.0,1983.0,0.0,1812.0,277.0,0.0,17.0,0.0,1901.0,0.0,68.0,0.0,0.0,0.0,0.0,4836.0,0.0,0.0,20.0,208.0,125.0,0.0,64.0,0.0,48.0,1996.0,0.0,23.0,0.0,0.0,0.0,1575.0,0.0,0.0,211.0,81.0,116.0,793.0,1.0,2336.0,1138.0,0.0,1.0,14.0,0.0,0.0,11.0,0.0,34.0,4.0,0.0,2.0,0.0,1.0,0.0,1.0,725.0,3618.0,4519.0,0.0,28.0,437.0,122.0,0.0,4.0,43.0,60.0,0.0,0.0,234.0,2020.0,1155.0,0.0,112.0,127.0,0.0,383.0,197.0,1348.0,0.0,2752.0,147.0,7.0,13.0,2383.0,1361.0,272.0,0.0,259.0,2.0,0.0,176.0,0.0,0.0,421.0,0.0,0.0,0.0,61.0,6.0,247.0,626.0,83.0,0.0,0.0,0.0,0.0,0.0,116.0,0.0,314.0,881.0,119.0,0.0,2.0,0.0,0.0,378.0,0.0,67.0,1187.0,61.0,0.0,1.0,0.0,2.0,0.0,0.0,119.0,451.0,0.0,0.0,1.0,62.0,104.0,0.0,0.0,146.0,333.0,459.0,380.0,0.0,0.0,0.0,0.0,0.0,0.0,43.0,1731.0,0.0,2052.0,0.0,0.0,0.0,0.0,0.0,0.0,551.0,815.0,80.0,0.0,0.0,627.0,0.0,0.0,2.0,220.0,70.0,0.0,35.0,2.0,19.0,113.0,2.0,0.0,0.0,2.0,0.0,0.0,0.0,3.0,0.0,15.0,3972.0,0.0,43.0,0.0,7.0,950.0,0.0,48.0,231.0,39.0,1.0,0.0,0.0,56.0,0.0,3824.0,0.0,0.0,341.0,0.0,0.0,80.0,114.0,330.0,588.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1051.0,0.0,0.0,0.0,588.0,742.0,611.0,0.0,2353.0,12.0,641.0,0.0,0.0,0.0,967.0,1.0,0.0,55.0,190.0,1692.0,0.0,0.0,2008-03-09,,2008-10,1.5771637958005895,1.6100000000000003, +20,20,1.56,1.0,0.0,106.0,0.0,26.0,52.0,220.0,61.0,1.0,179.0,3605.0,0.0,0.0,498.0,63.0,12.0,89.0,69.0,2011.0,0.0,27.0,0.0,18.0,0.0,226.0,57.0,1578.0,278.0,12.0,0.0,0.0,1.0,66.0,106.0,394.0,1400.0,0.0,0.0,0.0,0.0,109.0,0.0,107.0,0.0,589.0,0.0,0.0,65.0,109.0,934.0,0.0,51.0,0.0,59.0,119.0,0.0,0.0,0.0,0.0,4.0,0.0,1460.0,0.0,1382.0,236.0,0.0,11.0,0.0,1470.0,0.0,46.0,0.0,0.0,0.0,0.0,3856.0,1.0,0.0,9.0,126.0,95.0,0.0,43.0,0.0,34.0,1248.0,0.0,92.0,0.0,0.0,0.0,1234.0,0.0,0.0,189.0,52.0,84.0,574.0,0.0,2055.0,913.0,0.0,1.0,16.0,2.0,1.0,7.0,0.0,22.0,3.0,0.0,2.0,0.0,2.0,3.0,8.0,703.0,2741.0,3210.0,0.0,23.0,413.0,72.0,0.0,4.0,38.0,36.0,0.0,0.0,227.0,1738.0,836.0,1.0,69.0,92.0,0.0,300.0,125.0,1030.0,0.0,2397.0,117.0,3.0,1.0,1879.0,1071.0,238.0,0.0,179.0,1.0,3.0,161.0,0.0,0.0,312.0,0.0,1.0,0.0,38.0,10.0,247.0,629.0,45.0,0.0,0.0,0.0,0.0,1.0,62.0,0.0,291.0,667.0,109.0,0.0,0.0,0.0,0.0,394.0,0.0,48.0,829.0,51.0,0.0,0.0,0.0,1.0,0.0,0.0,83.0,364.0,1.0,0.0,0.0,59.0,52.0,0.0,0.0,102.0,254.0,407.0,325.0,0.0,0.0,0.0,0.0,0.0,0.0,46.0,1241.0,0.0,1458.0,0.0,1.0,0.0,0.0,0.0,0.0,374.0,676.0,63.0,0.0,0.0,556.0,0.0,0.0,0.0,164.0,42.0,0.0,30.0,1.0,13.0,123.0,1.0,0.0,0.0,4.0,0.0,1.0,0.0,0.0,0.0,17.0,3388.0,2.0,35.0,0.0,2.0,747.0,3.0,53.0,157.0,27.0,0.0,0.0,0.0,62.0,0.0,3273.0,0.0,0.0,257.0,0.0,0.0,63.0,89.0,314.0,433.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,793.0,0.0,0.0,0.0,545.0,682.0,428.0,0.0,1797.0,14.0,346.0,0.0,0.0,0.0,888.0,0.0,0.0,53.0,188.0,1169.0,0.0,0.0,2008-03-16,,2008-11,1.4398049892572544,1.1660000000000001, +21,21,1.26,0.0,0.0,110.0,0.0,36.0,68.0,245.0,75.0,0.0,248.0,3397.0,4.0,0.0,625.0,100.0,15.0,146.0,110.0,2438.0,0.0,29.0,0.0,22.0,0.0,260.0,63.0,1904.0,367.0,23.0,0.0,0.0,2.0,136.0,127.0,422.0,1706.0,0.0,0.0,0.0,0.0,111.0,0.0,115.0,0.0,797.0,0.0,0.0,87.0,130.0,1283.0,0.0,77.0,0.0,85.0,154.0,0.0,0.0,0.0,0.0,1.0,0.0,2088.0,0.0,1753.0,222.0,0.0,13.0,0.0,1675.0,0.0,49.0,0.0,1.0,0.0,0.0,5340.0,0.0,0.0,19.0,121.0,137.0,0.0,65.0,0.0,57.0,1303.0,0.0,33.0,0.0,0.0,0.0,1498.0,0.0,0.0,180.0,86.0,108.0,693.0,0.0,2415.0,1201.0,0.0,0.0,21.0,1.0,3.0,7.0,0.0,24.0,6.0,0.0,8.0,0.0,4.0,3.0,5.0,742.0,3105.0,3350.0,0.0,23.0,488.0,96.0,0.0,4.0,36.0,28.0,0.0,0.0,280.0,2051.0,941.0,0.0,99.0,125.0,0.0,413.0,147.0,1374.0,0.0,2887.0,113.0,9.0,0.0,2268.0,1311.0,261.0,0.0,236.0,0.0,0.0,172.0,0.0,0.0,373.0,0.0,0.0,0.0,64.0,27.0,273.0,693.0,81.0,0.0,0.0,0.0,0.0,0.0,60.0,0.0,333.0,835.0,188.0,0.0,2.0,0.0,0.0,361.0,1.0,73.0,1103.0,58.0,0.0,3.0,0.0,7.0,1.0,0.0,84.0,472.0,2.0,0.0,0.0,74.0,78.0,0.0,0.0,205.0,356.0,469.0,370.0,1.0,0.0,1.0,0.0,0.0,0.0,43.0,1573.0,0.0,1785.0,1.0,0.0,0.0,0.0,0.0,0.0,526.0,762.0,95.0,0.0,0.0,763.0,0.0,0.0,0.0,190.0,73.0,0.0,49.0,3.0,23.0,145.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,4.0,0.0,17.0,3940.0,0.0,42.0,0.0,3.0,932.0,1.0,57.0,197.0,34.0,0.0,177.0,0.0,65.0,0.0,3734.0,0.0,0.0,368.0,0.0,0.0,101.0,112.0,350.0,392.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,961.0,0.0,0.0,0.0,627.0,746.0,553.0,0.0,1951.0,18.0,413.0,4.0,0.0,0.0,1069.0,4.0,0.0,55.0,266.0,1496.0,0.0,0.0,2008-03-23,,2008-12,1.8308033275810551,0.876, +22,22,0.7,0.0,0.0,118.0,0.0,27.0,81.0,150.0,59.0,1.0,209.0,3780.0,0.0,0.0,545.0,76.0,11.0,92.0,103.0,1972.0,0.0,22.0,0.0,20.0,0.0,215.0,51.0,1512.0,266.0,19.0,0.0,0.0,0.0,65.0,102.0,369.0,1381.0,0.0,0.0,0.0,0.0,107.0,0.0,79.0,0.0,731.0,0.0,0.0,67.0,114.0,1067.0,0.0,46.0,0.0,67.0,106.0,0.0,0.0,0.0,0.0,3.0,0.0,1597.0,0.0,1408.0,244.0,0.0,10.0,0.0,1508.0,0.0,42.0,0.0,0.0,0.0,0.0,4866.0,0.0,0.0,6.0,104.0,91.0,0.0,52.0,0.0,30.0,966.0,0.0,32.0,0.0,0.0,0.0,1372.0,0.0,0.0,161.0,63.0,92.0,634.0,0.0,2332.0,1027.0,0.0,0.0,16.0,0.0,0.0,2.0,0.0,12.0,4.0,0.0,5.0,0.0,7.0,0.0,5.0,518.0,2358.0,2287.0,0.0,16.0,332.0,89.0,0.0,5.0,43.0,26.0,0.0,0.0,287.0,1955.0,826.0,0.0,63.0,120.0,1.0,396.0,138.0,1125.0,1.0,2419.0,122.0,1.0,1.0,1402.0,1087.0,245.0,0.0,206.0,2.0,0.0,110.0,0.0,0.0,287.0,0.0,0.0,0.0,52.0,10.0,199.0,872.0,85.0,0.0,0.0,0.0,1.0,1.0,57.0,0.0,283.0,671.0,144.0,0.0,0.0,0.0,0.0,302.0,0.0,43.0,890.0,67.0,0.0,0.0,0.0,0.0,0.0,0.0,87.0,419.0,2.0,0.0,0.0,50.0,63.0,0.0,0.0,175.0,287.0,424.0,322.0,0.0,0.0,0.0,0.0,0.0,0.0,49.0,1313.0,0.0,1416.0,0.0,0.0,0.0,0.0,0.0,0.0,322.0,603.0,73.0,0.0,0.0,664.0,0.0,0.0,0.0,166.0,61.0,0.0,30.0,0.0,12.0,103.0,1.0,0.0,0.0,2.0,1.0,0.0,1.0,4.0,0.0,12.0,3298.0,1.0,28.0,0.0,2.0,838.0,1.0,87.0,161.0,42.0,0.0,107.0,0.0,53.0,0.0,3077.0,0.0,0.0,356.0,0.0,0.0,62.0,80.0,298.0,319.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,835.0,0.0,0.0,0.0,570.0,586.0,508.0,0.0,1428.0,10.0,337.0,1.0,0.0,0.0,946.0,1.0,0.0,44.0,194.0,1223.0,0.0,0.0,2008-03-30,,2008-13,0.1670454725961994,0.8879999999999999, +23,23,0.39,1.0,0.0,102.0,0.0,28.0,78.0,195.0,74.0,0.0,260.0,3463.0,3.0,0.0,583.0,79.0,11.0,82.0,116.0,2625.0,0.0,42.0,0.0,30.0,0.0,239.0,80.0,1696.0,281.0,23.0,0.0,0.0,0.0,90.0,108.0,441.0,1548.0,0.0,0.0,0.0,0.0,156.0,0.0,137.0,0.0,784.0,0.0,0.0,83.0,146.0,1287.0,0.0,44.0,0.0,55.0,129.0,0.0,0.0,0.0,0.0,3.0,0.0,1587.0,0.0,1658.0,235.0,0.0,18.0,0.0,1594.0,0.0,64.0,0.0,0.0,0.0,0.0,4902.0,0.0,0.0,14.0,108.0,107.0,89.0,45.0,0.0,50.0,1003.0,0.0,25.0,0.0,0.0,0.0,1527.0,0.0,0.0,160.0,43.0,100.0,734.0,0.0,2453.0,1036.0,0.0,0.0,13.0,2.0,2.0,5.0,0.0,22.0,3.0,3.0,2.0,0.0,3.0,0.0,4.0,672.0,2599.0,2695.0,0.0,24.0,347.0,86.0,0.0,4.0,37.0,39.0,0.0,0.0,277.0,2193.0,829.0,0.0,96.0,90.0,0.0,456.0,148.0,1189.0,0.0,2753.0,123.0,2.0,2.0,2106.0,1152.0,255.0,0.0,154.0,0.0,0.0,164.0,0.0,0.0,331.0,0.0,0.0,0.0,51.0,36.0,224.0,603.0,99.0,0.0,0.0,0.0,0.0,0.0,38.0,1.0,336.0,705.0,149.0,0.0,0.0,0.0,0.0,292.0,0.0,49.0,1036.0,41.0,0.0,2.0,0.0,3.0,0.0,0.0,90.0,406.0,1.0,0.0,0.0,51.0,63.0,0.0,0.0,168.0,291.0,498.0,326.0,0.0,0.0,0.0,0.0,0.0,0.0,42.0,1380.0,0.0,1492.0,1.0,1.0,0.0,0.0,0.0,0.0,422.0,708.0,86.0,0.0,0.0,644.0,0.0,0.0,0.0,222.0,55.0,0.0,49.0,0.0,9.0,134.0,0.0,0.0,0.0,6.0,0.0,0.0,0.0,0.0,0.0,12.0,3449.0,0.0,29.0,0.0,2.0,942.0,2.0,63.0,145.0,28.0,1.0,92.0,0.0,74.0,0.0,3425.0,0.0,0.0,401.0,0.0,0.0,78.0,127.0,303.0,447.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,967.0,0.0,0.0,0.0,606.0,662.0,495.0,0.0,1640.0,13.0,384.0,1.0,0.0,0.0,1082.0,1.0,0.0,61.0,174.0,1307.0,0.0,0.0,2008-04-06,,2008-14,0.47802751445065006,0.296, +24,24,0.35,0.0,0.0,115.0,0.0,29.0,68.0,208.0,57.0,0.0,281.0,4260.0,0.0,0.0,618.0,76.0,12.0,96.0,97.0,2573.0,0.0,53.0,0.0,24.0,0.0,293.0,51.0,1876.0,304.0,29.0,0.0,0.0,0.0,90.0,83.0,519.0,1685.0,0.0,0.0,0.0,0.0,144.0,0.0,129.0,0.0,760.0,0.0,0.0,115.0,147.0,1138.0,0.0,78.0,0.0,68.0,136.0,0.0,0.0,0.0,0.0,2.0,0.0,1949.0,0.0,1855.0,284.0,0.0,11.0,0.0,1672.0,0.0,71.0,0.0,0.0,0.0,0.0,4888.0,0.0,0.0,7.0,62.0,101.0,51.0,76.0,0.0,35.0,1072.0,0.0,30.0,0.0,0.0,0.0,1523.0,0.0,0.0,195.0,75.0,159.0,754.0,0.0,2396.0,1130.0,0.0,1.0,20.0,2.0,1.0,5.0,0.0,14.0,2.0,1.0,4.0,0.0,4.0,0.0,2.0,850.0,3405.0,4234.0,0.0,26.0,350.0,98.0,0.0,6.0,23.0,24.0,0.0,0.0,367.0,2406.0,944.0,0.0,103.0,110.0,0.0,421.0,162.0,1224.0,0.0,2730.0,125.0,3.0,0.0,2343.0,1124.0,299.0,0.0,198.0,0.0,1.0,256.0,0.0,0.0,328.0,0.0,2.0,0.0,47.0,18.0,289.0,2150.0,104.0,0.0,0.0,0.0,0.0,0.0,66.0,0.0,280.0,838.0,171.0,0.0,0.0,0.0,0.0,354.0,0.0,55.0,1020.0,47.0,0.0,0.0,0.0,1.0,0.0,0.0,74.0,490.0,0.0,0.0,0.0,72.0,99.0,0.0,0.0,199.0,338.0,466.0,349.0,0.0,0.0,0.0,0.0,0.0,0.0,52.0,1681.0,0.0,1860.0,0.0,2.0,0.0,0.0,0.0,0.0,519.0,787.0,103.0,0.0,0.0,652.0,0.0,0.0,0.0,172.0,88.0,0.0,35.0,1.0,10.0,140.0,0.0,0.0,0.0,7.0,1.0,0.0,0.0,2.0,0.0,16.0,3689.0,0.0,58.0,0.0,3.0,1064.0,0.0,84.0,158.0,45.0,0.0,99.0,0.0,64.0,0.0,3841.0,0.0,0.0,424.0,0.0,0.0,63.0,119.0,306.0,584.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,922.0,0.0,0.0,0.0,630.0,711.0,560.0,0.0,2014.0,13.0,370.0,0.0,0.0,0.0,1017.0,0.0,0.0,81.0,185.0,1466.0,0.0,0.0,2008-04-13,,2008-15,0.6957445458977229,1.4780000000000002, +25,25,0.2,1.0,0.0,154.0,0.0,42.0,82.0,251.0,67.0,0.0,282.0,3608.0,3.0,0.0,612.0,115.0,8.0,133.0,102.0,2483.0,0.0,28.0,0.0,15.0,0.0,264.0,56.0,1874.0,352.0,26.0,0.0,0.0,0.0,73.0,120.0,446.0,1742.0,0.0,0.0,0.0,0.0,160.0,0.0,136.0,0.0,731.0,0.0,0.0,105.0,146.0,1273.0,0.0,45.0,0.0,65.0,122.0,0.0,0.0,0.0,0.0,1.0,0.0,2063.0,0.0,1983.0,325.0,0.0,7.0,0.0,1548.0,0.0,88.0,0.0,0.0,0.0,0.0,5104.0,0.0,0.0,19.0,72.0,161.0,19.0,83.0,0.0,53.0,1121.0,0.0,24.0,0.0,0.0,0.0,1660.0,0.0,0.0,188.0,63.0,145.0,761.0,0.0,2523.0,1183.0,0.0,1.0,12.0,1.0,0.0,7.0,0.0,25.0,4.0,0.0,2.0,0.0,1.0,2.0,4.0,745.0,3589.0,3955.0,0.0,34.0,395.0,73.0,0.0,7.0,48.0,39.0,0.0,0.0,289.0,2846.0,1019.0,0.0,104.0,113.0,0.0,422.0,144.0,1271.0,0.0,2469.0,139.0,3.0,1.0,2162.0,1147.0,340.0,0.0,215.0,0.0,2.0,236.0,0.0,0.0,418.0,0.0,4.0,0.0,55.0,15.0,310.0,1721.0,157.0,0.0,0.0,0.0,0.0,0.0,48.0,1.0,306.0,870.0,181.0,0.0,0.0,0.0,0.0,347.0,0.0,53.0,1249.0,46.0,0.0,1.0,0.0,4.0,0.0,0.0,95.0,477.0,0.0,0.0,1.0,92.0,83.0,0.0,0.0,136.0,356.0,524.0,349.0,0.0,0.0,0.0,0.0,0.0,0.0,31.0,1510.0,0.0,1981.0,0.0,1.0,0.0,0.0,0.0,0.0,514.0,909.0,97.0,0.0,0.0,774.0,0.0,0.0,0.0,218.0,76.0,0.0,23.0,0.0,15.0,133.0,1.0,0.0,0.0,5.0,0.0,1.0,0.0,0.0,0.0,9.0,3828.0,0.0,54.0,0.0,5.0,1052.0,0.0,107.0,214.0,31.0,0.0,104.0,0.0,74.0,0.0,4067.0,0.0,0.0,415.0,0.0,0.0,80.0,148.0,309.0,651.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,974.0,0.0,0.0,0.0,558.0,728.0,560.0,0.0,2092.0,16.0,406.0,1.0,0.0,0.0,1024.0,0.0,0.0,119.0,224.0,1399.0,0.0,0.0,2008-04-20,,2008-16,-0.06790237020698164,0.5320000000000001, +26,26,0.0,0.0,0.0,138.0,0.0,38.0,138.0,270.0,92.0,0.0,183.0,4858.0,2.0,25.0,620.0,125.0,15.0,132.0,127.0,2148.0,0.0,34.0,0.0,21.0,0.0,329.0,65.0,1692.0,416.0,24.0,0.0,0.0,0.0,206.0,2082.0,552.0,1914.0,0.0,0.0,0.0,0.0,116.0,0.0,99.0,0.0,564.0,0.0,0.0,83.0,154.0,1395.0,0.0,68.0,0.0,128.0,110.0,1.0,0.0,0.0,0.0,3.0,0.0,1803.0,0.0,1601.0,329.0,0.0,9.0,0.0,1673.0,0.0,224.0,0.0,0.0,0.0,0.0,4934.0,0.0,0.0,9.0,50.0,95.0,21.0,96.0,0.0,70.0,1018.0,0.0,21.0,0.0,0.0,0.0,1781.0,0.0,0.0,184.0,56.0,99.0,2506.0,0.0,2146.0,1201.0,0.0,1.0,17.0,1.0,3.0,8.0,0.0,38.0,5.0,3.0,1.0,0.0,5.0,1.0,8.0,722.0,3008.0,2746.0,0.0,42.0,436.0,78.0,0.0,14.0,52.0,33.0,0.0,0.0,370.0,2448.0,1050.0,0.0,105.0,128.0,0.0,288.0,150.0,1263.0,0.0,2525.0,152.0,9.0,2.0,2356.0,1140.0,419.0,0.0,275.0,233.0,2.0,203.0,0.0,0.0,342.0,0.0,137.0,0.0,64.0,35.0,309.0,546.0,62.0,0.0,0.0,0.0,0.0,1.0,48.0,0.0,344.0,828.0,206.0,0.0,8.0,0.0,0.0,314.0,0.0,67.0,1523.0,54.0,0.0,3.0,0.0,5.0,0.0,0.0,122.0,487.0,0.0,0.0,1.0,45.0,83.0,0.0,0.0,134.0,328.0,534.0,415.0,1.0,0.0,2.0,0.0,0.0,0.0,26.0,1487.0,0.0,1687.0,0.0,2.0,0.0,0.0,0.0,69.0,451.0,769.0,81.0,0.0,0.0,827.0,0.0,0.0,0.0,210.0,86.0,0.0,56.0,0.0,14.0,162.0,2.0,0.0,0.0,4.0,0.0,1.0,49.0,0.0,0.0,12.0,3433.0,0.0,50.0,0.0,5.0,1007.0,0.0,60.0,217.0,20.0,0.0,85.0,0.0,74.0,0.0,4155.0,0.0,0.0,751.0,0.0,0.0,101.0,110.0,312.0,645.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,745.0,2.0,0.0,0.0,742.0,882.0,655.0,0.0,1784.0,30.0,422.0,73.0,0.0,0.0,854.0,3.0,0.0,157.0,194.0,1849.0,0.0,0.0,2008-10-26,,2008-43,0.2202757592094704,0.022000000000000002, +27,27,0.0,3.0,0.0,134.0,0.0,42.0,141.0,233.0,67.0,4.0,161.0,3895.0,5.0,30.0,570.0,105.0,19.0,89.0,91.0,1766.0,0.0,24.0,0.0,19.0,0.0,244.0,57.0,1543.0,301.0,32.0,0.0,0.0,0.0,136.0,197.0,440.0,1752.0,0.0,0.0,0.0,0.0,128.0,0.0,123.0,0.0,475.0,0.0,0.0,65.0,105.0,1001.0,0.0,62.0,0.0,129.0,99.0,0.0,0.0,0.0,0.0,3.0,0.0,1580.0,0.0,1496.0,217.0,0.0,4.0,0.0,1444.0,0.0,201.0,0.0,0.0,1.0,0.0,4093.0,1.0,0.0,11.0,71.0,87.0,15.0,51.0,0.0,58.0,883.0,0.0,27.0,0.0,0.0,0.0,1568.0,0.0,2.0,157.0,55.0,74.0,2224.0,0.0,1751.0,1023.0,0.0,4.0,21.0,2.0,3.0,10.0,1.0,31.0,7.0,2.0,8.0,0.0,3.0,1.0,11.0,668.0,2732.0,2242.0,0.0,35.0,387.0,83.0,0.0,10.0,44.0,42.0,0.0,0.0,349.0,2109.0,869.0,0.0,81.0,98.0,0.0,290.0,163.0,1091.0,1.0,1947.0,133.0,4.0,2.0,2058.0,1022.0,394.0,0.0,210.0,227.0,2.0,154.0,0.0,0.0,294.0,0.0,110.0,0.0,65.0,15.0,288.0,485.0,84.0,0.0,0.0,0.0,0.0,0.0,33.0,0.0,300.0,725.0,195.0,0.0,9.0,0.0,0.0,245.0,0.0,55.0,1280.0,48.0,0.0,1.0,0.0,3.0,0.0,0.0,130.0,485.0,2.0,0.0,1.0,67.0,71.0,0.0,0.0,140.0,434.0,494.0,331.0,0.0,0.0,1.0,0.0,0.0,0.0,26.0,1221.0,0.0,1443.0,0.0,2.0,0.0,0.0,0.0,65.0,473.0,730.0,81.0,0.0,0.0,757.0,0.0,0.0,0.0,250.0,96.0,0.0,37.0,0.0,15.0,128.0,1.0,0.0,0.0,5.0,0.0,1.0,52.0,3.0,0.0,12.0,3212.0,2.0,44.0,0.0,1.0,800.0,0.0,55.0,182.0,24.0,0.0,83.0,0.0,66.0,1.0,3743.0,0.0,0.0,675.0,0.0,0.0,93.0,83.0,261.0,538.0,0.0,0.0,4.0,1.0,0.0,0.0,0.0,0.0,0.0,624.0,2.0,0.0,0.0,514.0,762.0,524.0,0.0,1567.0,17.0,398.0,83.0,0.0,0.0,727.0,0.0,0.0,153.0,152.0,1296.0,0.0,0.0,2008-11-02,,2008-44,-0.2826690794865412,0.7140000000000001, +28,28,0.0,0.0,0.0,172.0,0.0,59.0,154.0,275.0,68.0,3.0,176.0,4478.0,2.0,23.0,675.0,123.0,32.0,121.0,129.0,2151.0,0.0,25.0,0.0,16.0,0.0,351.0,48.0,1692.0,368.0,34.0,0.0,0.0,0.0,242.0,426.0,535.0,2105.0,0.0,0.0,0.0,0.0,116.0,0.0,130.0,0.0,585.0,1.0,0.0,79.0,141.0,1071.0,0.0,92.0,0.0,128.0,121.0,0.0,0.0,0.0,0.0,1.0,0.0,2038.0,0.0,1701.0,268.0,0.0,5.0,0.0,1764.0,0.0,254.0,0.0,0.0,56.0,0.0,4761.0,0.0,0.0,8.0,71.0,76.0,28.0,66.0,0.0,88.0,980.0,0.0,40.0,0.0,0.0,0.0,1959.0,0.0,0.0,176.0,72.0,84.0,2743.0,0.0,1833.0,1342.0,0.0,1.0,16.0,2.0,0.0,7.0,0.0,32.0,2.0,1.0,2.0,0.0,0.0,1.0,9.0,821.0,3417.0,2918.0,0.0,44.0,426.0,90.0,0.0,10.0,52.0,77.0,0.0,0.0,368.0,2414.0,1212.0,0.0,118.0,145.0,0.0,310.0,192.0,1324.0,0.0,2416.0,156.0,3.0,1.0,2438.0,1086.0,436.0,0.0,247.0,276.0,0.0,206.0,0.0,0.0,342.0,0.0,160.0,0.0,92.0,9.0,323.0,630.0,113.0,0.0,0.0,0.0,0.0,0.0,50.0,0.0,366.0,871.0,204.0,0.0,12.0,0.0,0.0,292.0,0.0,138.0,1379.0,62.0,0.0,0.0,0.0,6.0,0.0,0.0,122.0,625.0,0.0,0.0,0.0,55.0,129.0,0.0,0.0,138.0,430.0,631.0,420.0,0.0,0.0,0.0,0.0,0.0,0.0,37.0,1461.0,0.0,1726.0,0.0,0.0,0.0,0.0,0.0,52.0,559.0,848.0,87.0,0.0,0.0,831.0,0.0,0.0,41.0,219.0,87.0,0.0,68.0,0.0,12.0,161.0,1.0,0.0,0.0,3.0,0.0,0.0,85.0,0.0,0.0,6.0,3867.0,0.0,37.0,0.0,5.0,852.0,1.0,79.0,253.0,23.0,0.0,92.0,0.0,66.0,0.0,4326.0,0.0,0.0,721.0,0.0,0.0,89.0,118.0,292.0,586.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,750.0,2.0,0.0,0.0,770.0,809.0,651.0,0.0,1854.0,18.0,417.0,100.0,0.0,0.0,909.0,0.0,0.0,257.0,231.0,1817.0,0.0,0.0,2008-11-09,,2008-45,0.5113634632973811,0.454, +29,29,0.0,0.0,0.0,201.0,0.0,69.0,206.0,315.0,97.0,0.0,202.0,4624.0,2.0,70.0,690.0,132.0,69.0,123.0,145.0,2186.0,0.0,24.0,0.0,18.0,0.0,327.0,107.0,1824.0,483.0,34.0,0.0,0.0,0.0,166.0,161.0,525.0,1947.0,0.0,0.0,0.0,0.0,153.0,0.0,152.0,0.0,630.0,1.0,0.0,152.0,124.0,1126.0,0.0,155.0,0.0,162.0,132.0,0.0,0.0,0.0,0.0,1.0,0.0,2184.0,0.0,1894.0,292.0,0.0,6.0,0.0,1745.0,0.0,219.0,0.0,0.0,38.0,0.0,5052.0,1.0,0.0,28.0,85.0,107.0,40.0,111.0,0.0,91.0,938.0,0.0,68.0,0.0,0.0,0.0,1938.0,0.0,0.0,250.0,104.0,100.0,2865.0,0.0,1988.0,1446.0,0.0,1.0,30.0,0.0,1.0,9.0,0.0,44.0,4.0,3.0,2.0,0.0,2.0,1.0,4.0,818.0,3520.0,3566.0,0.0,58.0,532.0,113.0,0.0,6.0,93.0,103.0,0.0,0.0,380.0,2614.0,1186.0,0.0,204.0,156.0,0.0,393.0,213.0,1298.0,0.0,2384.0,185.0,3.0,1.0,2617.0,1161.0,268.0,0.0,277.0,229.0,2.0,191.0,0.0,0.0,339.0,0.0,185.0,0.0,117.0,12.0,386.0,631.0,120.0,0.0,0.0,0.0,1.0,0.0,51.0,1.0,368.0,789.0,272.0,0.0,9.0,0.0,0.0,374.0,0.0,77.0,1505.0,87.0,0.0,0.0,0.0,8.0,0.0,0.0,114.0,597.0,0.0,0.0,0.0,94.0,231.0,0.0,0.0,163.0,457.0,587.0,443.0,1.0,0.0,1.0,0.0,0.0,0.0,85.0,1522.0,0.0,1846.0,0.0,0.0,0.0,0.0,0.0,61.0,532.0,920.0,117.0,0.0,0.0,823.0,0.0,0.0,28.0,241.0,77.0,0.0,62.0,0.0,46.0,178.0,2.0,0.0,0.0,9.0,0.0,1.0,73.0,0.0,0.0,11.0,3810.0,1.0,73.0,0.0,3.0,978.0,1.0,117.0,212.0,33.0,0.0,123.0,0.0,80.0,0.0,4577.0,0.0,0.0,750.0,0.0,0.0,83.0,134.0,368.0,489.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,768.0,1.0,0.0,0.0,1140.0,939.0,678.0,0.0,1944.0,43.0,449.0,153.0,0.0,0.0,848.0,0.0,0.0,158.0,276.0,1596.0,0.0,0.0,2008-11-16,,2008-46,-0.24436212008551683,0.002, +30,30,0.0,0.0,0.0,207.0,0.0,70.0,183.0,362.0,96.0,0.0,264.0,4927.0,0.0,45.0,677.0,122.0,40.0,128.0,150.0,2271.0,0.0,26.0,0.0,25.0,0.0,339.0,74.0,1811.0,410.0,31.0,0.0,0.0,0.0,199.0,172.0,553.0,2125.0,0.0,0.0,0.0,0.0,154.0,0.0,146.0,29.0,670.0,0.0,0.0,118.0,132.0,1087.0,0.0,94.0,0.0,126.0,112.0,1.0,0.0,0.0,0.0,1.0,0.0,2358.0,0.0,1777.0,276.0,0.0,9.0,0.0,1914.0,0.0,166.0,0.0,0.0,32.0,0.0,5264.0,0.0,0.0,16.0,98.0,114.0,33.0,89.0,0.0,145.0,943.0,0.0,41.0,0.0,0.0,0.0,2009.0,0.0,0.0,207.0,110.0,92.0,2819.0,0.0,1815.0,1386.0,0.0,0.0,27.0,2.0,1.0,9.0,0.0,38.0,7.0,2.0,1.0,0.0,6.0,0.0,10.0,806.0,3711.0,3759.0,0.0,41.0,487.0,100.0,0.0,11.0,75.0,76.0,0.0,0.0,340.0,2685.0,1189.0,0.0,123.0,128.0,1.0,362.0,239.0,1306.0,0.0,2697.0,191.0,5.0,5.0,2717.0,1112.0,494.0,0.0,279.0,248.0,1.0,214.0,0.0,0.0,362.0,0.0,116.0,0.0,77.0,12.0,377.0,656.0,118.0,0.0,0.0,0.0,0.0,0.0,40.0,0.0,387.0,853.0,267.0,0.0,5.0,0.0,0.0,280.0,0.0,60.0,1523.0,85.0,0.0,0.0,0.0,4.0,0.0,0.0,134.0,673.0,0.0,0.0,1.0,81.0,188.0,0.0,0.0,193.0,466.0,670.0,403.0,0.0,0.0,1.0,0.0,0.0,0.0,48.0,1599.0,0.0,1922.0,1.0,0.0,0.0,0.0,0.0,78.0,628.0,1053.0,100.0,0.0,0.0,920.0,0.0,0.0,57.0,241.0,82.0,3.0,93.0,0.0,21.0,155.0,1.0,0.0,0.0,10.0,1.0,0.0,85.0,1.0,0.0,18.0,3883.0,0.0,55.0,0.0,7.0,870.0,2.0,85.0,227.0,29.0,1.0,118.0,0.0,65.0,0.0,4721.0,0.0,0.0,732.0,0.0,0.0,103.0,155.0,350.0,509.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,883.0,0.0,0.0,0.0,1183.0,890.0,673.0,0.0,2193.0,27.0,440.0,134.0,0.0,0.0,920.0,1.0,0.0,149.0,230.0,1667.0,0.0,0.0,2008-11-23,,2008-47,0.05191347548119429,0.45999999999999996, +31,31,0.02,1.0,0.0,197.0,0.0,76.0,188.0,330.0,113.0,0.0,231.0,5023.0,4.0,45.0,722.0,102.0,42.0,119.0,121.0,2444.0,0.0,40.0,0.0,19.0,0.0,345.0,65.0,1937.0,401.0,50.0,0.0,0.0,0.0,185.0,137.0,518.0,2129.0,0.0,0.0,0.0,0.0,333.0,0.0,156.0,174.0,696.0,0.0,0.0,87.0,130.0,966.0,0.0,138.0,0.0,127.0,100.0,0.0,0.0,0.0,0.0,4.0,0.0,2403.0,0.0,1775.0,275.0,0.0,10.0,0.0,1923.0,0.0,223.0,0.0,0.0,35.0,0.0,4973.0,0.0,0.0,23.0,86.0,100.0,41.0,82.0,0.0,99.0,948.0,0.0,35.0,0.0,0.0,0.0,1943.0,0.0,1.0,244.0,92.0,81.0,2354.0,0.0,1966.0,1329.0,0.0,1.0,15.0,5.0,2.0,9.0,1.0,26.0,9.0,6.0,3.0,0.0,3.0,2.0,9.0,842.0,3713.0,3841.0,0.0,38.0,489.0,104.0,0.0,8.0,56.0,65.0,0.0,0.0,361.0,2609.0,1164.0,0.0,117.0,125.0,0.0,284.0,203.0,1294.0,0.0,2718.0,173.0,5.0,5.0,2445.0,1197.0,361.0,0.0,281.0,248.0,2.0,214.0,0.0,0.0,348.0,0.0,115.0,0.0,80.0,21.0,370.0,697.0,115.0,0.0,0.0,0.0,1.0,1.0,44.0,0.0,382.0,855.0,232.0,0.0,4.0,0.0,0.0,282.0,0.0,115.0,1384.0,72.0,0.0,1.0,0.0,7.0,0.0,1.0,112.0,583.0,4.0,0.0,2.0,90.0,174.0,0.0,0.0,163.0,367.0,632.0,448.0,0.0,0.0,1.0,0.0,0.0,0.0,46.0,1580.0,0.0,1797.0,1.0,1.0,0.0,0.0,0.0,62.0,556.0,941.0,112.0,0.0,1.0,939.0,0.0,0.0,62.0,243.0,108.0,1.0,73.0,0.0,24.0,156.0,0.0,0.0,0.0,10.0,1.0,2.0,57.0,0.0,0.0,17.0,3892.0,0.0,56.0,0.0,5.0,945.0,1.0,77.0,223.0,28.0,0.0,93.0,0.0,79.0,3.0,4675.0,0.0,0.0,683.0,0.0,0.0,83.0,161.0,352.0,655.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,848.0,3.0,0.0,0.0,761.0,915.0,689.0,0.0,2000.0,26.0,442.0,116.0,0.0,0.0,889.0,1.0,0.0,167.0,241.0,1706.0,0.0,0.0,2008-11-30,,2008-48,-0.1545227754082772,0.020000000000000004, +32,32,0.01,0.0,0.0,199.0,0.0,49.0,173.0,285.0,100.0,0.0,243.0,5034.0,3.0,60.0,665.0,107.0,48.0,97.0,116.0,2237.0,0.0,33.0,0.0,31.0,0.0,359.0,62.0,1739.0,372.0,50.0,0.0,0.0,0.0,220.0,183.0,522.0,2033.0,0.0,0.0,0.0,0.0,192.0,0.0,116.0,158.0,597.0,1.0,0.0,109.0,155.0,695.0,0.0,161.0,0.0,147.0,139.0,1.0,0.0,0.0,0.0,1.0,0.0,2369.0,0.0,1791.0,275.0,0.0,4.0,0.0,1811.0,0.0,307.0,0.0,0.0,37.0,0.0,4809.0,0.0,0.0,32.0,83.0,88.0,44.0,85.0,0.0,112.0,1202.0,0.0,54.0,0.0,0.0,0.0,1787.0,0.0,0.0,222.0,76.0,91.0,1264.0,0.0,1637.0,1320.0,0.0,3.0,15.0,5.0,0.0,9.0,0.0,38.0,5.0,2.0,1.0,0.0,5.0,2.0,7.0,867.0,3452.0,3484.0,0.0,53.0,404.0,111.0,0.0,12.0,88.0,78.0,0.0,0.0,376.0,2703.0,1104.0,0.0,119.0,100.0,0.0,278.0,198.0,1329.0,0.0,2671.0,144.0,6.0,6.0,2284.0,1099.0,321.0,0.0,245.0,265.0,0.0,202.0,0.0,0.0,347.0,0.0,111.0,0.0,74.0,10.0,286.0,619.0,128.0,0.0,0.0,0.0,1.0,0.0,46.0,0.0,375.0,884.0,221.0,0.0,12.0,0.0,0.0,289.0,0.0,117.0,1478.0,61.0,0.0,1.0,0.0,6.0,0.0,1.0,112.0,597.0,3.0,0.0,1.0,93.0,174.0,0.0,0.0,232.0,373.0,683.0,503.0,0.0,0.0,1.0,0.0,0.0,0.0,71.0,1533.0,0.0,1799.0,1.0,0.0,0.0,0.0,0.0,85.0,537.0,884.0,100.0,0.0,0.0,912.0,0.0,0.0,69.0,217.0,114.0,0.0,51.0,0.0,26.0,149.0,1.0,0.0,0.0,5.0,0.0,0.0,77.0,1.0,0.0,16.0,3796.0,0.0,54.0,0.0,5.0,740.0,2.0,76.0,209.0,35.0,0.0,105.0,0.0,77.0,0.0,4631.0,0.0,0.0,603.0,0.0,0.0,100.0,157.0,446.0,540.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,844.0,2.0,0.0,0.0,713.0,976.0,662.0,0.0,1902.0,37.0,431.0,149.0,0.0,0.0,792.0,0.0,0.0,139.0,239.0,1743.0,0.0,0.0,2008-12-07,,2008-49,-0.3112960045039497,0.012000000000000002, +33,33,0.11,1.0,0.0,191.0,0.0,51.0,166.0,250.0,102.0,0.0,224.0,5060.0,3.0,40.0,588.0,107.0,46.0,116.0,94.0,2181.0,0.0,40.0,0.0,18.0,0.0,301.0,55.0,1616.0,427.0,55.0,0.0,0.0,0.0,206.0,179.0,498.0,1809.0,0.0,0.0,0.0,0.0,513.0,0.0,124.0,143.0,534.0,1.0,0.0,123.0,152.0,696.0,0.0,160.0,0.0,132.0,147.0,0.0,0.0,0.0,0.0,0.0,0.0,2175.0,0.0,1814.0,295.0,0.0,6.0,0.0,2078.0,0.0,246.0,0.0,0.0,19.0,0.0,5018.0,0.0,0.0,42.0,105.0,146.0,26.0,103.0,0.0,143.0,949.0,0.0,45.0,0.0,0.0,0.0,1742.0,0.0,0.0,184.0,76.0,98.0,2452.0,0.0,1675.0,1602.0,0.0,1.0,32.0,3.0,0.0,6.0,0.0,28.0,4.0,3.0,5.0,0.0,3.0,1.0,6.0,828.0,3626.0,3996.0,0.0,46.0,467.0,105.0,0.0,4.0,90.0,72.0,0.0,0.0,381.0,2513.0,1148.0,0.0,127.0,130.0,0.0,302.0,242.0,1310.0,0.0,2444.0,142.0,8.0,1.0,2266.0,1207.0,313.0,0.0,276.0,232.0,1.0,244.0,0.0,0.0,316.0,0.0,127.0,0.0,70.0,7.0,278.0,595.0,123.0,0.0,0.0,0.0,0.0,0.0,38.0,0.0,385.0,834.0,262.0,0.0,12.0,0.0,0.0,293.0,0.0,80.0,1324.0,65.0,0.0,3.0,0.0,5.0,0.0,0.0,107.0,576.0,3.0,0.0,0.0,171.0,192.0,0.0,0.0,173.0,404.0,577.0,565.0,0.0,0.0,0.0,0.0,0.0,0.0,64.0,1598.0,0.0,1703.0,1.0,1.0,0.0,0.0,0.0,88.0,483.0,878.0,107.0,0.0,0.0,943.0,0.0,0.0,55.0,191.0,90.0,0.0,55.0,0.0,37.0,169.0,0.0,0.0,0.0,7.0,0.0,0.0,48.0,0.0,0.0,6.0,3480.0,0.0,46.0,0.0,6.0,789.0,0.0,62.0,225.0,39.0,1.0,111.0,0.0,68.0,0.0,5117.0,0.0,0.0,663.0,0.0,0.0,118.0,160.0,375.0,463.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,810.0,1.0,0.0,0.0,679.0,928.0,638.0,0.0,2136.0,36.0,374.0,112.0,0.0,0.0,785.0,2.0,0.0,142.0,199.0,1738.0,0.0,0.0,2008-12-14,,2008-50,0.34676574997022014,0.092, +34,34,0.16,0.0,0.0,257.0,0.0,232.0,232.0,354.0,145.0,0.0,398.0,5631.0,4.0,163.0,643.0,127.0,134.0,116.0,203.0,2365.0,0.0,30.0,0.0,22.0,0.0,350.0,105.0,1694.0,433.0,43.0,0.0,0.0,0.0,252.0,278.0,550.0,1914.0,0.0,0.0,0.0,0.0,396.0,0.0,129.0,134.0,469.0,0.0,0.0,284.0,125.0,660.0,0.0,144.0,0.0,171.0,143.0,1.0,0.0,0.0,0.0,2.0,0.0,2198.0,0.0,2401.0,299.0,0.0,2.0,0.0,2070.0,0.0,234.0,0.0,0.0,31.0,0.0,4966.0,0.0,0.0,51.0,99.0,103.0,52.0,204.0,0.0,114.0,1079.0,0.0,146.0,0.0,0.0,0.0,1915.0,0.0,0.0,190.0,170.0,121.0,2502.0,0.0,1741.0,1471.0,0.0,3.0,24.0,5.0,1.0,12.0,0.0,66.0,10.0,2.0,4.0,0.0,4.0,0.0,6.0,864.0,3660.0,4086.0,0.0,84.0,610.0,126.0,0.0,9.0,187.0,214.0,0.0,0.0,370.0,2486.0,1056.0,0.0,237.0,161.0,0.0,586.0,214.0,1322.0,0.0,2264.0,236.0,6.0,2.0,2304.0,1174.0,416.0,0.0,259.0,289.0,1.0,236.0,0.0,0.0,386.0,0.0,208.0,0.0,190.0,10.0,291.0,627.0,196.0,0.0,0.0,0.0,0.0,0.0,44.0,0.0,454.0,835.0,501.0,0.0,14.0,0.0,0.0,293.0,0.0,55.0,1536.0,78.0,0.0,0.0,0.0,4.0,0.0,0.0,112.0,564.0,2.0,0.0,0.0,172.0,449.0,0.0,0.0,240.0,411.0,703.0,618.0,1.0,0.0,0.0,0.0,1.0,0.0,212.0,1698.0,0.0,1829.0,2.0,2.0,0.0,0.0,0.0,91.0,631.0,1033.0,128.0,0.0,0.0,1017.0,0.0,0.0,64.0,207.0,96.0,0.0,50.0,0.0,95.0,188.0,1.0,0.0,0.0,3.0,0.0,1.0,113.0,1.0,0.0,6.0,3532.0,0.0,64.0,0.0,7.0,847.0,3.0,56.0,212.0,57.0,1.0,162.0,0.0,157.0,0.0,5473.0,0.0,0.0,606.0,0.0,0.0,97.0,253.0,438.0,479.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,808.0,2.0,0.0,0.0,702.0,1114.0,607.0,0.0,2035.0,124.0,553.0,220.0,0.0,0.0,839.0,1.0,0.0,111.0,307.0,1730.0,0.0,0.0,2008-12-21,,2008-51,-0.16818646862218856,0.136, +35,35,0.32,0.0,0.0,289.0,0.0,312.0,240.0,385.0,118.0,0.0,493.0,5729.0,2.0,280.0,582.0,114.0,207.0,110.0,188.0,1908.0,0.0,26.0,0.0,19.0,0.0,357.0,146.0,1361.0,449.0,29.0,0.0,0.0,0.0,303.0,169.0,525.0,1813.0,0.0,0.0,0.0,0.0,279.0,0.0,117.0,119.0,440.0,1.0,0.0,456.0,148.0,640.0,0.0,158.0,0.0,224.0,93.0,0.0,0.0,0.0,0.0,1.0,0.0,2063.0,0.0,2566.0,294.0,0.0,12.0,0.0,1798.0,0.0,222.0,0.0,1.0,44.0,0.0,4461.0,0.0,0.0,78.0,138.0,112.0,84.0,256.0,0.0,132.0,698.0,0.0,249.0,0.0,0.0,0.0,1850.0,0.0,0.0,192.0,272.0,184.0,2348.0,0.0,1750.0,1109.0,0.0,0.0,12.0,6.0,0.0,11.0,0.0,90.0,7.0,2.0,7.0,0.0,4.0,0.0,14.0,628.0,2935.0,2837.0,0.0,121.0,491.0,129.0,0.0,10.0,297.0,318.0,0.0,0.0,404.0,2187.0,1036.0,0.0,340.0,180.0,0.0,808.0,165.0,1191.0,2.0,2352.0,339.0,2.0,5.0,2472.0,1172.0,279.0,0.0,214.0,309.0,0.0,261.0,0.0,0.0,326.0,0.0,329.0,0.0,329.0,21.0,287.0,566.0,270.0,0.0,0.0,0.0,1.0,0.0,68.0,1.0,539.0,695.0,367.0,0.0,10.0,0.0,0.0,324.0,0.0,106.0,1569.0,201.0,0.0,0.0,0.0,5.0,0.0,0.0,132.0,522.0,0.0,0.0,0.0,120.0,809.0,0.0,0.0,219.0,362.0,644.0,468.0,0.0,0.0,0.0,0.0,0.0,0.0,312.0,1626.0,0.0,1566.0,1.0,1.0,0.0,0.0,0.0,88.0,581.0,1074.0,193.0,0.0,0.0,811.0,0.0,0.0,73.0,203.0,109.0,0.0,57.0,0.0,184.0,146.0,0.0,0.0,0.0,3.0,1.0,0.0,189.0,0.0,0.0,6.0,3066.0,1.0,87.0,0.0,4.0,732.0,3.0,71.0,290.0,99.0,1.0,180.0,0.0,226.0,0.0,4091.0,0.0,0.0,521.0,0.0,0.0,55.0,342.0,406.0,567.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,730.0,3.0,0.0,0.0,668.0,1147.0,605.0,0.0,2043.0,271.0,570.0,278.0,0.0,0.0,834.0,1.0,0.0,139.0,406.0,1525.0,0.0,0.0,2008-12-28,,2008-52,0.4485825365525429,2.7960000000000003, +36,36,0.27,1.0,0.0,133.0,0.0,182.0,164.0,178.0,87.0,1.0,238.0,6511.0,3.0,126.0,397.0,93.0,115.0,67.0,106.0,1431.0,0.0,29.0,0.0,23.0,0.0,283.0,72.0,1014.0,243.0,24.0,0.0,0.0,0.0,213.0,149.0,450.0,1244.0,0.0,0.0,0.0,0.0,166.0,0.0,101.0,70.0,343.0,0.0,0.0,259.0,105.0,691.0,0.0,95.0,0.0,97.0,60.0,0.0,0.0,0.0,0.0,0.0,0.0,1225.0,0.0,1564.0,190.0,0.0,3.0,0.0,1306.0,0.0,254.0,0.0,0.0,23.0,0.0,4026.0,2.0,0.0,46.0,117.0,46.0,25.0,128.0,0.0,72.0,507.0,0.0,129.0,0.0,0.0,0.0,1278.0,0.0,1.0,120.0,152.0,105.0,1995.0,0.0,1433.0,570.0,0.0,1.0,14.0,2.0,0.0,12.0,0.0,53.0,4.0,3.0,3.0,0.0,4.0,0.0,16.0,333.0,1730.0,1374.0,0.0,74.0,267.0,102.0,0.0,10.0,144.0,176.0,0.0,0.0,231.0,1885.0,575.0,0.0,192.0,97.0,0.0,436.0,101.0,879.0,0.0,1651.0,227.0,3.0,3.0,1702.0,904.0,210.0,0.0,156.0,214.0,1.0,104.0,0.0,0.0,192.0,0.0,178.0,0.0,181.0,12.0,140.0,348.0,145.0,0.0,0.0,0.0,0.0,1.0,41.0,0.0,304.0,401.0,173.0,0.0,5.0,0.0,0.0,151.0,0.0,77.0,985.0,72.0,0.0,0.0,0.0,3.0,0.0,0.0,75.0,266.0,2.0,0.0,0.0,51.0,377.0,0.0,0.0,147.0,252.0,341.0,267.0,0.0,0.0,0.0,0.0,0.0,0.0,157.0,1070.0,0.0,1085.0,1.0,0.0,0.0,0.0,0.0,55.0,408.0,663.0,101.0,0.0,0.0,429.0,0.0,0.0,54.0,136.0,80.0,1.0,48.0,0.0,80.0,100.0,1.0,0.0,0.0,8.0,0.0,1.0,82.0,1.0,0.0,14.0,2029.0,0.0,79.0,0.0,2.0,695.0,3.0,37.0,124.0,72.0,0.0,123.0,0.0,111.0,0.0,2484.0,0.0,0.0,374.0,0.0,1.0,37.0,157.0,291.0,288.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,610.0,3.0,0.0,0.0,510.0,778.0,554.0,0.0,1431.0,144.0,421.0,173.0,0.0,0.0,708.0,0.0,0.0,58.0,255.0,1154.0,0.0,0.0,2009-01-04,,2009-1,0.4010524853743841,0.24000000000000005, +37,37,0.26,0.0,0.0,143.0,0.0,286.0,148.0,245.33333333333331,102.0,0.0,314.0,4920.0,3.0,207.0,344.0,96.0,161.0,85.0,135.0,1151.0,0.0,23.0,0.0,10.0,0.0,215.0,102.0,804.0,229.0,16.0,0.0,0.0,0.0,272.0,122.0,298.0,871.0,0.0,0.0,0.0,0.0,102.0,0.0,61.0,50.0,295.0,1.0,0.0,404.0,71.0,510.0,0.0,143.0,0.0,128.0,48.0,1.0,0.0,0.0,0.0,0.0,0.0,1018.0,0.0,1726.0,189.0,0.0,3.0,0.0,964.0,0.0,110.0,0.0,1.0,29.0,0.0,2838.0,1.0,0.0,67.0,82.0,54.0,66.0,175.0,0.0,87.0,397.0,0.0,245.0,0.0,0.0,0.0,994.0,0.0,2.0,91.0,200.0,131.0,1392.0,0.0,1055.0,568.0,0.0,1.0,8.0,1.0,0.0,4.0,0.0,76.0,4.0,2.0,3.0,0.0,1.0,0.0,5.0,299.0,1297.0,1361.0,0.0,80.0,318.0,75.0,0.0,11.0,230.0,287.0,0.0,0.0,199.0,1457.0,517.0,0.0,293.0,134.0,0.0,603.0,107.0,648.0,0.0,1215.0,285.0,2.0,2.0,1348.0,648.0,177.0,0.0,145.0,415.0,2.0,123.0,0.0,0.0,191.0,0.0,232.0,0.0,229.0,8.0,99.0,305.0,184.0,0.0,0.0,0.0,0.0,0.0,45.0,0.0,312.0,396.0,188.0,0.0,3.0,0.0,0.0,138.0,0.0,55.0,989.0,27.0,0.0,3.0,0.0,2.0,0.0,0.0,85.0,241.0,3.0,0.0,0.0,66.0,614.0,0.0,0.0,194.0,157.0,352.0,333.1666666666667,1.0,0.0,0.0,0.0,1.0,0.0,251.0,775.0,0.0,911.0,1.0,1.0,0.0,0.0,0.0,71.0,401.0,786.0,126.0,0.0,0.0,375.0,0.0,0.0,64.0,131.0,62.0,0.0,46.0,0.0,163.0,89.0,0.0,0.0,0.0,3.0,1.0,0.0,127.0,1.0,0.0,5.0,1637.0,2.0,89.0,0.0,3.0,505.0,4.0,39.0,111.0,89.0,0.0,137.0,0.0,138.0,0.0,2023.0,0.0,0.0,300.0,0.0,0.0,35.0,251.0,238.0,221.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,85.0,0.0,416.0,0.0,0.0,0.0,391.0,593.0,346.0,0.0,1122.0,227.0,374.0,218.0,0.0,0.0,470.0,2.0,0.0,64.0,319.0,919.0,0.0,0.0,2009-01-11,,2009-2,0.3442473536354953,0.458, +38,38,0.77,1.0,0.0,210.0,0.0,130.0,247.0,312.66666666666663,159.0,0.0,434.0,10462.0,5.0,104.0,738.0,123.0,97.0,147.0,180.0,2615.0,0.0,40.0,0.0,23.0,0.0,406.0,124.0,2065.0,428.0,51.0,0.0,0.0,0.0,262.0,132.0,580.0,2264.0,0.0,0.0,0.0,0.0,173.0,0.0,186.0,121.0,757.0,0.0,0.0,240.0,138.0,948.0,0.0,172.0,0.0,170.0,133.0,0.0,0.0,0.0,0.0,3.0,0.0,2372.0,0.0,2161.0,344.0,0.0,12.0,0.0,2286.0,0.0,232.0,0.0,1.0,40.0,0.0,5410.0,0.0,0.0,39.0,170.0,120.0,47.0,139.0,0.0,136.0,977.0,0.0,85.0,0.0,0.0,0.0,1936.0,0.0,0.0,253.0,138.0,117.0,2946.0,0.0,1692.0,1580.0,0.0,3.0,30.0,2.0,0.0,7.0,0.0,53.0,3.0,2.0,0.0,0.0,2.0,0.0,11.0,809.0,3663.0,3640.0,0.0,70.0,629.0,246.0,0.0,10.0,146.0,183.0,0.0,0.0,386.0,2842.0,1249.0,0.0,158.0,136.0,0.0,415.0,260.0,1394.0,1.0,2555.0,222.0,6.0,1.0,2393.0,1325.0,458.0,0.0,369.0,497.0,0.0,322.0,0.0,0.0,351.0,0.0,171.0,0.0,153.0,10.0,327.0,715.0,141.0,0.0,0.0,0.0,0.0,0.0,61.0,0.0,463.0,950.0,277.0,0.0,10.0,0.0,0.0,323.0,0.0,57.0,1423.0,89.0,0.0,1.0,0.0,6.0,0.0,0.0,123.0,611.0,0.0,0.0,1.0,119.0,340.0,0.0,0.0,201.0,493.0,632.0,399.33333333333337,1.0,0.0,0.0,0.0,0.0,0.0,112.0,2190.0,0.0,2111.0,0.0,0.0,0.0,0.0,0.0,92.0,762.0,1033.0,138.0,0.0,0.0,923.0,0.0,0.0,67.0,238.0,133.0,0.0,96.0,0.0,75.0,217.0,0.0,0.0,0.0,6.0,1.0,0.0,95.0,1.0,0.0,4.0,3882.0,0.0,91.0,0.0,5.0,809.0,2.0,86.0,273.0,84.0,1.0,117.0,0.0,113.0,0.0,4502.0,0.0,0.0,633.0,0.0,0.0,130.0,171.0,455.0,413.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,66.0,0.0,952.0,2.0,0.0,0.0,790.0,984.0,746.0,0.0,2663.0,72.0,467.0,141.0,0.0,0.0,912.0,0.0,0.0,353.0,283.0,2193.0,0.0,0.0,2009-01-18,,2009-3,0.5761869187025006,0.77, +39,39,2.27,0.0,0.0,200.0,0.0,63.0,227.0,380.0,103.0,1.0,325.0,10117.0,4.0,31.0,891.0,74.0,37.0,110.0,169.0,2998.0,0.0,35.0,0.0,28.0,0.0,417.0,56.0,2184.0,501.0,41.0,0.0,0.0,0.0,237.0,187.0,541.0,2441.0,0.0,0.0,0.0,0.0,169.0,0.0,169.0,138.0,817.0,0.0,0.0,101.0,154.0,958.0,0.0,136.0,0.0,185.0,131.0,0.0,0.0,0.0,0.0,2.0,0.0,2718.0,0.0,1972.0,314.0,0.0,8.0,0.0,2281.0,0.0,217.0,0.0,0.0,49.0,0.0,5310.0,0.0,0.0,29.0,156.0,126.0,38.0,76.0,0.0,79.0,1004.0,0.0,36.0,0.0,0.0,0.0,2005.0,0.0,0.0,270.0,81.0,100.0,2732.0,0.0,1738.0,1681.0,0.0,3.0,45.0,5.0,1.0,6.0,1.0,31.0,6.0,5.0,2.0,0.0,4.0,2.0,18.0,996.0,4249.0,4368.0,0.0,40.0,667.0,168.0,0.0,20.0,91.0,160.0,0.0,0.0,442.0,3110.0,1393.0,0.0,121.0,139.0,0.0,231.0,249.0,1414.0,0.0,2648.0,164.0,2.0,0.0,3627.0,1321.0,343.0,0.0,322.0,292.0,1.0,335.0,0.0,0.0,397.0,0.0,122.0,0.0,99.0,11.0,417.0,832.0,103.0,0.0,0.0,0.0,0.0,0.0,56.0,0.0,512.0,1153.0,282.0,0.0,6.0,0.0,0.0,356.0,0.0,92.0,1469.0,112.0,0.0,0.0,0.0,8.0,0.0,3.0,162.0,627.0,0.0,0.0,1.0,102.0,122.0,0.0,0.0,162.0,575.0,659.0,465.5,0.0,0.0,0.0,0.0,1.0,0.0,67.0,2133.0,0.0,2233.0,0.0,0.0,0.0,0.0,0.0,92.0,709.0,966.0,97.0,0.0,15.0,1025.0,0.0,0.0,63.0,330.0,123.0,1.0,102.0,0.0,14.0,194.0,0.0,0.0,0.0,5.0,0.0,0.0,55.0,0.0,0.0,5.0,3821.0,0.0,40.0,0.0,6.0,825.0,3.0,103.0,259.0,27.0,4.0,129.0,0.0,105.0,0.0,4886.0,0.0,0.0,761.0,0.0,0.0,137.0,143.0,474.0,488.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,29.0,0.0,1032.0,6.0,0.0,0.0,972.0,1011.0,832.0,0.0,3239.0,12.0,561.0,112.0,0.0,0.0,1061.0,0.0,0.0,211.0,227.0,2202.0,0.0,0.0,2009-01-25,,2009-4,2.3939074901813253,1.6340000000000001, +40,40,4.62,0.0,0.0,198.0,0.0,45.0,301.0,389.0,163.0,0.0,325.0,10256.0,10.0,32.0,865.0,102.0,31.0,108.0,190.0,3217.0,0.0,53.0,0.0,16.0,0.0,407.0,43.0,2326.0,522.0,58.0,0.0,0.0,0.0,184.0,177.0,564.0,2521.0,0.0,0.0,0.0,0.0,173.0,0.0,189.0,125.0,755.0,0.0,0.0,109.0,158.0,959.0,0.0,197.0,0.0,244.0,151.0,0.0,0.0,0.0,0.0,4.0,0.0,2889.0,0.0,2161.0,316.0,0.0,5.0,0.0,2464.0,0.0,247.0,0.0,0.0,51.0,0.0,5305.0,0.0,0.0,27.0,177.0,147.0,40.0,119.0,0.0,93.0,995.0,0.0,36.0,0.0,0.0,0.0,2257.0,0.0,0.0,270.0,64.0,117.0,2650.0,0.0,1789.0,1857.0,0.0,3.0,39.0,2.0,1.0,19.0,1.0,45.0,8.0,5.0,5.0,0.0,2.0,1.0,11.0,1017.0,4122.0,4260.0,0.0,45.0,686.0,186.0,0.0,14.0,97.0,126.0,0.0,0.0,498.0,3283.0,1397.0,0.0,167.0,138.0,0.0,277.0,226.0,1474.0,0.0,2656.0,180.0,3.0,4.0,2837.0,1380.0,374.0,0.0,463.0,361.0,2.0,353.0,0.0,0.0,357.0,0.0,117.0,0.0,70.0,27.0,515.0,853.0,111.0,0.0,0.0,0.0,0.0,0.0,62.0,1.0,629.0,1370.0,298.0,0.0,11.0,0.0,0.0,311.0,0.0,127.0,1566.0,108.0,0.0,1.0,0.0,4.0,0.0,1.0,141.0,699.0,3.0,0.0,0.0,114.0,122.0,0.0,0.0,185.0,542.0,798.0,531.6666666666667,0.0,0.0,2.0,0.0,0.0,0.0,41.0,2186.0,0.0,3060.0,1.0,1.0,0.0,0.0,0.0,108.0,699.0,988.0,73.0,0.0,9.0,1068.0,0.0,0.0,67.0,283.0,115.0,1.0,71.0,0.0,11.0,250.0,0.0,0.0,0.0,5.0,1.0,0.0,65.0,0.0,0.0,7.0,3999.0,0.0,58.0,0.0,5.0,920.0,1.0,99.0,275.0,30.0,4.0,114.0,0.0,33.0,0.0,4882.0,0.0,0.0,772.0,0.0,0.0,126.0,170.0,444.0,614.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,42.0,0.0,1109.0,2.0,0.0,0.0,877.0,1033.0,854.0,0.0,3555.0,19.0,538.0,138.0,0.0,0.0,1074.0,0.0,0.0,390.0,258.0,2238.0,0.0,0.0,2009-02-01,,2009-5,5.0367649309222,5.058000000000001, +41,41,5.36,0.0,0.0,233.0,0.0,46.0,262.0,337.0,193.0,0.0,335.0,8586.0,2.0,37.0,875.0,93.0,27.0,93.0,162.0,3096.0,0.0,58.0,0.0,17.0,0.0,410.0,51.0,2242.0,557.0,63.0,0.0,0.0,0.0,252.0,178.0,553.0,2456.0,0.0,0.0,0.0,0.0,166.0,0.0,156.0,174.0,813.0,0.0,0.0,110.0,171.0,975.0,0.0,148.0,0.0,203.0,137.0,0.0,0.0,0.0,0.0,1.0,0.0,2979.0,0.0,2188.0,250.0,0.0,3.0,0.0,2589.0,0.0,236.0,1.0,0.0,72.0,0.0,5520.0,0.0,0.0,20.0,143.0,184.0,49.0,127.0,0.0,90.0,1020.0,0.0,44.0,0.0,0.0,0.0,2362.0,0.0,0.0,268.0,84.0,110.0,2783.0,0.0,2050.0,1935.0,0.0,0.0,50.0,1.0,0.0,10.0,0.0,41.0,0.0,2.0,0.0,0.0,3.0,0.0,7.0,985.0,4352.0,3873.0,0.0,47.0,640.0,159.0,0.0,6.0,107.0,119.0,0.0,0.0,487.0,3148.0,1398.0,0.0,140.0,193.0,0.0,240.0,234.0,1714.0,0.0,2804.0,176.0,3.0,2.0,2727.0,1365.0,327.0,0.0,407.0,335.0,0.0,375.0,0.0,0.0,446.0,0.0,124.0,0.0,78.0,14.0,526.0,855.0,117.0,0.0,0.0,0.0,2.0,0.0,59.0,0.0,599.0,1176.0,402.0,0.0,13.0,0.0,0.0,350.0,0.0,99.0,1395.0,109.0,0.0,1.0,0.0,2.0,0.0,1.0,143.0,760.0,1.0,0.0,1.0,120.0,149.0,0.0,0.0,206.0,521.0,806.0,597.8333333333334,0.0,0.0,1.0,0.0,0.0,0.0,40.0,2166.0,0.0,2417.0,1.0,1.0,0.0,0.0,0.0,109.0,744.0,944.0,103.0,0.0,11.0,1142.0,0.0,0.0,61.0,262.0,155.0,2.0,76.0,0.0,11.0,226.0,0.0,0.0,0.0,5.0,1.0,0.0,59.0,0.0,0.0,4.0,3877.0,0.0,41.0,0.0,8.0,922.0,7.0,123.0,288.0,35.0,3.0,135.0,0.0,48.0,2.0,4974.0,0.0,0.0,717.0,0.0,0.0,160.0,168.0,523.0,555.0,0.0,3.0,1.0,0.0,0.0,0.0,0.0,31.0,0.0,1026.0,4.0,0.0,0.0,948.0,1091.0,767.0,0.0,3508.0,19.0,444.0,140.0,0.0,0.0,940.0,0.0,0.0,293.0,226.0,2241.0,0.0,0.0,2009-02-08,,2009-6,4.569885629387485,2.974, +42,42,6.08,0.0,0.0,191.0,0.0,64.0,222.0,341.0,164.0,0.0,433.0,9018.0,1.0,27.0,838.0,120.0,31.0,121.0,245.0,4407.0,0.0,60.0,12.0,16.0,0.0,445.0,59.0,2242.0,548.0,43.0,0.0,0.0,0.0,283.0,304.0,745.0,2591.0,0.0,0.0,0.0,0.0,183.0,0.0,176.0,165.0,870.0,0.0,0.0,114.0,242.0,985.0,0.0,134.0,0.0,174.0,114.0,0.0,0.0,0.0,0.0,3.0,0.0,2915.0,0.0,2196.0,281.0,0.0,6.0,0.0,2378.0,0.0,206.0,0.0,0.0,97.0,0.0,5389.0,0.0,0.0,19.0,138.0,168.0,36.0,119.0,0.0,98.0,1011.0,0.0,36.0,0.0,0.0,0.0,2270.0,0.0,0.0,258.0,90.0,151.0,2734.0,0.0,2106.0,1844.0,0.0,1.0,47.0,9.0,1.0,10.0,1.0,74.0,4.0,2.0,4.0,0.0,2.0,2.0,4.0,1073.0,4522.0,4220.0,0.0,47.0,720.0,133.0,0.0,12.0,96.0,157.0,0.0,0.0,483.0,3097.0,1295.0,0.0,101.0,105.0,0.0,262.0,229.0,1530.0,0.0,2799.0,204.0,1.0,2.0,2810.0,1285.0,295.0,0.0,383.0,348.0,3.0,431.0,0.0,0.0,376.0,0.0,115.0,0.0,82.0,9.0,438.0,921.0,98.0,0.0,0.0,0.0,0.0,0.0,69.0,0.0,486.0,1106.0,434.0,0.0,15.0,0.0,0.0,357.0,0.0,85.0,1492.0,101.0,0.0,4.0,0.0,9.0,0.0,1.0,145.0,749.0,1.0,0.0,2.0,87.0,153.0,0.0,0.0,204.0,456.0,745.0,664.0,0.0,0.0,0.0,0.0,0.0,0.0,38.0,2166.0,0.0,2475.0,0.0,0.0,0.0,0.0,0.0,101.0,783.0,1127.0,112.0,0.0,15.0,1257.0,0.0,0.0,69.0,304.0,131.0,0.0,97.0,0.0,16.0,197.0,1.0,0.0,0.0,6.0,1.0,0.0,69.0,0.0,0.0,6.0,3852.0,0.0,56.0,0.0,2.0,882.0,4.0,105.0,275.0,35.0,6.0,101.0,0.0,43.0,0.0,4821.0,0.0,0.0,718.0,0.0,1.0,146.0,191.0,595.0,483.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,31.0,0.0,1016.0,1.0,0.0,0.0,917.0,1109.0,779.0,0.0,3419.0,14.0,487.0,112.0,0.0,0.0,846.0,1.0,0.0,280.0,231.0,2088.0,0.0,0.0,2009-02-15,,2009-7,5.840518741211708,3.824, +43,43,5.07,0.0,0.0,200.0,0.0,35.0,223.0,267.0,140.0,0.0,401.0,7154.0,1.0,30.0,933.0,95.0,35.0,105.0,117.0,2856.0,0.0,51.0,19.0,14.0,0.0,396.0,84.0,2099.0,526.0,49.0,0.0,0.0,0.0,230.0,257.0,623.0,2437.0,0.0,0.0,0.0,0.0,213.0,0.0,124.0,138.0,981.0,0.0,0.0,119.0,180.0,978.0,0.0,123.0,0.0,202.0,116.0,53.0,0.0,0.0,0.0,1.0,0.0,2619.0,0.0,2002.0,463.0,0.0,10.0,0.0,2279.0,0.0,220.0,0.0,0.0,69.0,0.0,5274.0,1.0,0.0,18.0,156.0,172.0,25.0,105.0,0.0,78.0,1109.0,0.0,49.0,0.0,0.0,0.0,1971.0,0.0,1.0,265.0,82.0,82.0,2852.0,0.0,1863.0,1611.0,0.0,0.0,34.0,5.0,1.0,4.0,0.0,27.0,1.0,2.0,2.0,0.0,3.0,0.0,8.0,941.0,4278.0,4844.0,0.0,47.0,664.0,130.0,0.0,6.0,68.0,101.0,0.0,0.0,430.0,2908.0,1260.0,0.0,105.0,140.0,0.0,271.0,302.0,1467.0,0.0,2824.0,169.0,3.0,2.0,2758.0,1456.0,392.0,0.0,292.0,278.0,1.0,525.0,0.0,0.0,403.0,0.0,111.0,0.0,84.0,10.0,398.0,903.0,112.0,0.0,0.0,0.0,0.0,0.0,63.0,0.0,449.0,997.0,372.0,0.0,7.0,0.0,0.0,369.0,0.0,87.0,1369.0,108.0,0.0,1.0,0.0,6.0,0.0,1.0,102.0,634.0,2.0,0.0,1.0,92.0,136.0,0.0,0.0,175.0,420.0,680.0,521.0,0.0,0.0,0.0,0.0,0.0,0.0,39.0,2026.0,0.0,2014.0,1.0,0.0,0.0,0.0,0.0,91.0,685.0,994.0,105.0,0.0,7.0,1074.0,0.0,0.0,58.0,249.0,122.0,1.0,72.0,0.0,16.0,215.0,0.0,0.0,0.0,2.0,0.0,0.0,85.0,0.0,0.0,5.0,3915.0,0.0,54.0,0.0,7.0,824.0,1.0,82.0,280.0,18.0,0.0,121.0,0.0,40.0,1.0,4877.0,0.0,0.0,676.0,0.0,0.0,154.0,159.0,469.0,746.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,29.0,0.0,984.0,1.0,0.0,0.0,864.0,1058.0,792.0,0.0,2891.0,17.0,388.0,100.0,0.0,0.0,975.0,0.0,0.0,253.0,232.0,1981.0,0.0,0.0,2009-02-22,,2009-8,5.5522495040843705,3.704, +44,44,3.11,0.0,0.0,189.0,0.0,30.0,197.0,330.0,82.0,0.0,300.0,6542.0,0.0,29.0,670.0,132.0,31.0,78.0,112.0,3831.0,0.0,30.0,33.0,4.0,0.0,352.0,51.0,1940.0,459.0,39.0,0.0,0.0,0.0,197.0,220.0,543.0,2297.0,0.0,0.0,0.0,0.0,170.0,0.0,149.0,174.0,938.0,0.0,0.0,108.0,147.0,923.0,0.0,117.0,0.0,169.0,103.0,28.0,0.0,0.0,0.0,1.0,0.0,2188.0,0.0,1995.0,295.0,0.0,1.0,0.0,2275.0,0.0,198.0,0.0,0.0,47.0,0.0,4922.0,0.0,0.0,18.0,111.0,129.0,30.0,82.0,0.0,80.0,1051.0,0.0,36.0,0.0,0.0,0.0,1886.0,0.0,0.0,226.0,72.0,108.0,2763.0,0.0,1744.0,1596.0,0.0,1.0,16.0,1.0,1.0,6.0,1.0,26.0,2.0,1.0,1.0,0.0,1.0,1.0,2.0,907.0,3861.0,3908.0,0.0,42.0,568.0,149.0,0.0,1.0,76.0,72.0,0.0,0.0,343.0,2887.0,1336.0,0.0,97.0,123.0,0.0,230.0,222.0,1477.0,0.0,2732.0,176.0,5.0,0.0,2741.0,1316.0,322.0,0.0,339.0,321.0,2.0,282.0,0.0,0.0,371.0,0.0,108.0,0.0,86.0,1.0,433.0,958.0,87.0,0.0,1.0,0.0,0.0,0.0,114.0,0.0,377.0,929.0,261.0,0.0,4.0,0.0,0.0,337.0,0.0,57.0,1379.0,72.0,0.0,0.0,0.0,1.0,0.0,1.0,122.0,656.0,0.0,0.0,1.0,69.0,142.0,0.0,0.0,192.0,428.0,626.0,476.0,0.0,0.0,0.0,0.0,1.0,0.0,32.0,1827.0,0.0,1772.0,0.0,0.0,0.0,0.0,0.0,90.0,663.0,932.0,78.0,0.0,19.0,1052.0,0.0,0.0,71.0,194.0,102.0,1.0,75.0,0.0,10.0,244.0,0.0,0.0,0.0,1.0,0.0,0.0,82.0,0.0,0.0,0.0,3644.0,0.0,45.0,0.0,1.0,827.0,0.0,77.0,225.0,31.0,0.0,122.0,0.0,36.0,0.0,4329.0,0.0,0.0,642.0,0.0,0.0,111.0,166.0,383.0,585.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,29.0,0.0,943.0,0.0,0.0,0.0,702.0,1001.0,765.0,0.0,2635.0,18.0,487.0,81.0,0.0,0.0,967.0,0.0,0.0,193.0,255.0,1822.0,0.0,0.0,2009-03-01,,2009-9,3.621301784716886,2.896, +45,45,1.89,0.0,0.0,184.0,0.0,39.0,221.0,310.0,99.0,0.0,365.0,4875.0,0.0,27.0,2668.0,111.0,36.0,134.0,99.0,3713.0,0.0,25.0,40.0,0.0,0.0,387.0,59.0,2085.0,434.0,43.0,0.0,0.0,0.0,185.0,199.0,490.0,2421.0,0.0,0.0,0.0,0.0,134.0,0.0,173.0,183.0,1030.0,1.0,0.0,108.0,183.0,1270.0,0.0,158.0,0.0,152.0,126.0,31.0,0.0,0.0,0.0,0.0,0.0,2176.0,0.0,2230.0,353.0,0.0,0.0,0.0,2279.0,0.0,268.0,0.0,0.0,59.0,0.0,5183.0,0.0,0.0,26.0,133.0,133.0,39.0,92.0,0.0,108.0,987.0,0.0,44.0,0.0,0.0,0.0,1947.0,0.0,0.0,246.0,84.0,123.0,1065.0,0.0,2198.0,1498.0,0.0,0.0,25.0,0.0,0.0,10.0,0.0,41.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,862.0,3575.0,3799.0,0.0,50.0,543.0,132.0,0.0,0.0,72.0,84.0,0.0,0.0,366.0,2882.0,1373.0,0.0,121.0,168.0,1.0,270.0,197.0,1558.0,0.0,3142.0,190.0,6.0,0.0,2647.0,1162.0,309.0,0.0,273.0,293.0,0.0,280.0,0.0,0.0,383.0,0.0,200.0,0.0,82.0,0.0,416.0,795.0,120.0,0.0,0.0,0.0,0.0,0.0,168.0,0.0,534.0,907.0,272.0,0.0,7.0,0.0,0.0,345.0,0.0,74.0,1368.0,75.0,0.0,0.0,0.0,0.0,0.0,0.0,143.0,653.0,0.0,0.0,0.0,67.0,109.0,0.0,0.0,296.0,434.0,625.0,463.0,0.0,0.0,0.0,0.0,0.0,0.0,35.0,2070.0,0.0,1795.0,0.0,0.0,0.0,0.0,0.0,92.0,659.0,936.0,112.0,0.0,15.0,936.0,0.0,0.0,59.0,246.0,101.0,0.0,78.0,1.0,21.0,146.0,0.0,0.0,0.0,0.0,0.0,0.0,77.0,0.0,0.0,0.0,3805.0,0.0,44.0,0.0,0.0,989.0,0.0,92.0,233.0,27.0,0.0,113.0,0.0,47.0,0.0,4600.0,0.0,0.0,699.0,0.0,0.0,95.0,164.0,419.0,527.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,35.0,0.0,940.0,0.0,0.0,0.0,774.0,1176.0,726.0,0.0,2558.0,19.0,411.0,118.0,0.0,0.0,896.0,0.0,0.0,190.0,256.0,2070.0,0.0,0.0,2009-03-08,,2009-10,1.6606726921610697,1.798, +46,46,1.43,0.0,0.0,220.0,0.0,47.0,253.0,357.0,86.0,0.0,344.0,6084.0,0.0,29.0,1666.0,97.0,60.0,113.0,121.0,2993.0,0.0,34.0,40.0,0.0,0.0,402.0,60.0,2185.0,485.0,34.0,0.0,0.0,0.0,323.0,171.0,607.0,2560.0,0.0,0.0,0.0,0.0,138.0,0.0,152.0,185.0,1117.0,0.0,0.0,124.0,162.0,1343.0,0.0,135.0,0.0,203.0,140.0,23.0,0.0,0.0,0.0,0.0,0.0,2356.0,0.0,2524.0,307.0,0.0,0.0,0.0,2521.0,0.0,518.0,0.0,1.0,59.0,0.0,4911.0,0.0,0.0,18.0,118.0,198.0,39.0,92.0,0.0,103.0,975.0,0.0,38.0,0.0,0.0,0.0,2041.0,0.0,0.0,275.0,98.0,124.0,846.0,0.0,2333.0,1559.0,0.0,0.0,13.0,0.0,0.0,9.0,0.0,66.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,955.0,4116.0,4246.0,0.0,45.0,661.0,154.0,0.0,0.0,88.0,60.0,0.0,0.0,420.0,3109.0,1368.0,0.0,123.0,143.0,0.0,285.0,212.0,1630.0,0.0,4063.0,164.0,3.0,0.0,2825.0,1144.0,323.0,0.0,320.0,313.0,0.0,502.0,0.0,0.0,398.0,0.0,150.0,0.0,79.0,0.0,422.0,1209.0,102.0,0.0,0.0,0.0,0.0,0.0,92.0,0.0,481.0,1146.0,268.0,0.0,12.0,0.0,0.0,388.0,0.0,99.0,1427.0,87.0,0.0,1.0,0.0,0.0,0.0,0.0,125.0,749.0,0.0,0.0,0.0,64.0,121.0,0.0,0.0,336.0,452.0,648.0,440.0,0.0,0.0,0.0,0.0,0.0,0.0,36.0,1863.0,0.0,1745.0,0.0,0.0,0.0,0.0,0.0,91.0,628.0,988.0,80.0,0.0,19.0,920.0,0.0,0.0,74.0,245.0,112.0,0.0,63.0,0.0,11.0,206.0,0.0,0.0,0.0,0.0,0.0,0.0,65.0,1.0,0.0,0.0,4033.0,1.0,39.0,0.0,0.0,1028.0,0.0,98.0,262.0,33.0,0.0,108.0,0.0,37.0,0.0,5449.0,0.0,0.0,701.0,0.0,0.0,147.0,163.0,363.0,605.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.0,0.0,950.0,0.0,0.0,0.0,961.0,1239.0,774.0,0.0,3059.0,10.0,489.0,217.0,0.0,0.0,1353.0,0.0,0.0,211.0,280.0,1989.0,0.0,0.0,2009-03-15,,2009-11,1.546267511095845,2.158, +47,47,0.74,2.0,0.0,212.0,0.0,55.0,218.0,327.0,108.0,0.0,313.0,5954.0,0.0,21.0,1155.0,117.0,43.0,94.0,144.0,2915.0,0.0,29.0,35.0,0.0,0.0,369.0,60.0,2004.0,439.0,40.0,0.0,0.0,0.0,277.0,161.0,578.0,2498.0,0.0,0.0,0.0,0.0,157.0,0.0,172.0,155.0,1077.0,0.0,0.0,121.0,149.0,1318.0,0.0,112.0,0.0,205.0,123.0,33.0,0.0,0.0,0.0,0.0,0.0,2305.0,0.0,2400.0,321.0,0.0,0.0,0.0,2286.0,0.0,211.0,0.0,1.0,42.0,0.0,5088.0,0.0,0.0,18.0,134.0,187.0,32.0,102.0,0.0,83.0,968.0,0.0,57.0,0.0,0.0,0.0,1892.0,0.0,0.0,256.0,79.0,122.0,773.0,0.0,2585.0,1529.0,0.0,0.0,19.0,0.0,0.0,3.0,0.0,92.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,956.0,3977.0,4352.0,0.0,41.0,662.0,156.0,0.0,0.0,89.0,112.0,0.0,0.0,386.0,2907.0,1359.0,0.0,104.0,185.0,0.0,241.0,244.0,1598.0,0.0,4945.0,174.0,3.0,0.0,2781.0,1266.0,322.0,0.0,404.0,309.0,0.0,353.0,0.0,0.0,441.0,0.0,155.0,0.0,61.0,0.0,496.0,935.0,110.0,0.0,0.0,0.0,0.0,0.0,83.0,0.0,424.0,1044.0,371.0,0.0,7.0,0.0,0.0,407.0,0.0,85.0,1480.0,92.0,0.0,1.0,0.0,0.0,0.0,0.0,130.0,725.0,0.0,0.0,0.0,82.0,122.0,0.0,0.0,319.0,447.0,686.0,526.0,0.0,0.0,0.0,0.0,0.0,0.0,40.0,1950.0,0.0,1776.0,0.0,0.0,0.0,0.0,0.0,98.0,633.0,957.0,95.0,0.0,12.0,1049.0,0.0,0.0,72.0,246.0,108.0,0.0,75.0,0.0,17.0,196.0,0.0,0.0,0.0,0.0,0.0,0.0,66.0,0.0,0.0,0.0,3866.0,0.0,57.0,0.0,0.0,1029.0,0.0,86.0,229.0,20.0,0.0,98.0,0.0,32.0,0.0,6948.0,0.0,0.0,653.0,0.0,1.0,95.0,187.0,443.0,612.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.0,0.0,887.0,0.0,0.0,0.0,890.0,1259.0,819.0,0.0,2600.0,16.0,476.0,218.0,0.0,0.0,1260.0,2.0,0.0,196.0,238.0,1871.0,0.0,0.0,2009-03-22,,2009-12,1.2041191059103031,2.546, +48,48,0.47,1.0,0.0,183.0,0.0,61.0,201.0,296.0,101.0,0.0,342.0,5556.0,0.0,37.0,898.0,104.0,49.0,111.0,141.0,2892.0,0.0,37.0,34.0,0.0,0.0,333.0,81.0,2012.0,454.0,46.0,0.0,0.0,0.0,961.0,926.0,688.0,2421.0,0.0,0.0,0.0,0.0,199.0,0.0,156.0,184.0,1095.0,0.0,0.0,148.0,167.0,1290.0,0.0,142.0,0.0,178.0,92.0,41.0,0.0,0.0,0.0,0.0,0.0,2246.0,0.0,2290.0,299.0,0.0,0.0,0.0,2124.0,0.0,243.0,0.0,0.0,42.0,0.0,5179.0,0.0,0.0,22.0,203.0,169.0,50.0,94.0,0.0,85.0,1090.0,0.0,48.0,0.0,0.0,0.0,2118.0,0.0,0.0,246.0,85.0,114.0,778.0,0.0,3064.0,1563.0,0.0,0.0,26.0,0.0,0.0,15.0,0.0,106.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,915.0,4012.0,4024.0,0.0,42.0,640.0,175.0,0.0,0.0,99.0,75.0,0.0,0.0,445.0,3058.0,1395.0,0.0,136.0,148.0,0.0,203.0,217.0,1628.0,0.0,5930.0,218.0,7.0,0.0,2967.0,1261.0,361.0,0.0,350.0,315.0,0.0,309.0,0.0,0.0,382.0,0.0,160.0,0.0,57.0,0.0,437.0,906.0,138.0,0.0,0.0,0.0,0.0,0.0,56.0,0.0,454.0,1059.0,345.0,0.0,16.0,0.0,0.0,468.0,0.0,65.0,1522.0,88.0,0.0,0.0,0.0,0.0,0.0,0.0,135.0,715.0,0.0,0.0,0.0,78.0,104.0,0.0,0.0,242.0,450.0,640.0,561.0,0.0,0.0,0.0,0.0,0.0,0.0,36.0,1779.0,0.0,1663.0,0.0,0.0,0.0,0.0,0.0,84.0,650.0,909.0,107.0,0.0,20.0,941.0,0.0,0.0,98.0,234.0,91.0,0.0,65.0,0.0,18.0,217.0,1.0,0.0,0.0,0.0,0.0,2.0,74.0,0.0,0.0,0.0,3774.0,0.0,48.0,0.0,0.0,1159.0,0.0,85.0,231.0,29.0,0.0,137.0,0.0,31.0,0.0,5508.0,0.0,0.0,824.0,0.0,0.0,115.0,176.0,462.0,604.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,38.0,0.0,1025.0,0.0,0.0,0.0,784.0,1224.0,810.0,0.0,2575.0,36.0,516.0,213.0,0.0,0.0,1341.0,0.0,0.0,211.0,219.0,1821.0,0.0,0.0,2009-03-29,,2009-13,0.05791240174586143,0.43599999999999994, +49,49,0.3,0.0,0.0,230.0,0.0,53.0,208.0,352.0,98.0,0.0,383.0,5633.0,0.0,57.0,793.0,124.0,50.0,105.0,160.0,2752.0,0.0,42.0,44.0,0.0,0.0,352.0,65.0,2089.0,452.0,33.0,0.0,0.0,0.0,334.0,240.0,1095.0,2518.0,0.0,0.0,0.0,0.0,198.0,0.0,178.0,214.0,1109.0,0.0,0.0,162.0,211.0,1247.0,0.0,149.0,0.0,190.0,65.0,52.0,0.0,0.0,0.0,0.0,0.0,2387.0,0.0,2396.0,301.0,0.0,0.0,0.0,2252.0,0.0,338.0,0.0,0.0,49.0,0.0,5256.0,0.0,0.0,25.0,393.0,194.0,73.0,144.0,0.0,108.0,1599.0,0.0,45.0,0.0,0.0,0.0,2108.0,0.0,0.0,297.0,115.0,157.0,784.0,0.0,2597.0,1437.0,0.0,0.0,24.0,0.0,0.0,20.0,0.0,89.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,850.0,3931.0,3986.0,0.0,52.0,679.0,189.0,0.0,0.0,125.0,91.0,0.0,0.0,444.0,3600.0,1438.0,0.0,153.0,162.0,0.0,168.0,258.0,1804.0,0.0,5763.0,274.0,17.0,0.0,3212.0,1328.0,398.0,0.0,329.0,328.0,0.0,352.0,0.0,0.0,442.0,0.0,185.0,0.0,70.0,0.0,533.0,976.0,126.0,0.0,0.0,0.0,0.0,0.0,56.0,0.0,464.0,1103.0,330.0,0.0,8.0,0.0,0.0,393.0,0.0,60.0,1531.0,97.0,0.0,0.0,0.0,0.0,0.0,0.0,199.0,697.0,0.0,0.0,0.0,97.0,111.0,0.0,0.0,214.0,434.0,643.0,488.0,0.0,0.0,0.0,0.0,0.0,0.0,45.0,1918.0,0.0,1718.0,0.0,0.0,0.0,0.0,1.0,105.0,571.0,1009.0,113.0,0.0,13.0,987.0,0.0,0.0,105.0,257.0,68.0,0.0,108.0,0.0,23.0,247.0,12.0,0.0,0.0,0.0,0.0,0.0,82.0,0.0,0.0,0.0,3959.0,0.0,54.0,0.0,0.0,1051.0,0.0,115.0,243.0,17.0,0.0,161.0,0.0,30.0,0.0,5960.0,0.0,0.0,698.0,0.0,0.0,116.0,196.0,480.0,656.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,46.0,0.0,1009.0,0.0,0.0,0.0,1025.0,1229.0,720.0,0.0,2471.0,36.0,487.0,231.0,0.0,0.0,1412.0,1.0,0.0,241.0,270.0,2002.0,0.0,0.0,2009-04-05,,2009-14,0.7235235445479482,0.766, +50,50,0.16,0.0,0.0,140.0,0.0,67.0,187.0,302.0,150.0,0.0,274.0,4405.0,0.0,59.0,587.0,155.0,58.0,94.0,146.0,2366.0,0.0,43.0,46.0,0.0,0.0,294.0,69.0,2005.0,387.0,30.0,0.0,0.0,0.0,346.0,240.0,1128.0,2010.0,0.0,0.0,0.0,0.0,167.0,0.0,126.0,202.0,894.0,0.0,0.0,165.0,176.0,1212.0,0.0,85.0,0.0,164.0,75.0,57.0,0.0,0.0,0.0,0.0,0.0,2064.0,0.0,2077.0,220.0,0.0,0.0,0.0,1852.0,0.0,220.0,0.0,0.0,56.0,0.0,4908.0,1.0,0.0,30.0,264.0,158.0,63.0,152.0,0.0,108.0,1016.0,0.0,51.0,0.0,0.0,0.0,1852.0,0.0,0.0,261.0,112.0,146.0,775.0,0.0,2880.0,1323.0,0.0,0.0,22.0,0.0,0.0,23.0,0.0,87.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,754.0,3210.0,3109.0,0.0,56.0,543.0,736.0,0.0,0.0,119.0,82.0,0.0,0.0,326.0,2684.0,1265.0,0.0,166.0,140.0,0.0,169.0,239.0,1566.0,0.0,5183.0,220.0,22.0,0.0,2588.0,1084.0,301.0,0.0,282.0,299.0,0.0,286.0,0.0,0.0,339.0,0.0,236.0,0.0,61.0,0.0,475.0,743.0,140.0,0.0,0.0,0.0,0.0,0.0,80.0,0.0,367.0,1592.0,286.0,0.0,12.0,0.0,0.0,333.0,0.0,72.0,1405.0,79.0,0.0,0.0,0.0,0.0,0.0,0.0,184.0,537.0,0.0,0.0,0.0,92.0,118.0,0.0,0.0,243.0,394.0,631.0,621.0,0.0,0.0,0.0,0.0,0.0,0.0,55.0,1557.0,0.0,1447.0,0.0,0.0,0.0,0.0,0.0,117.0,537.0,768.0,104.0,0.0,21.0,841.0,1.0,0.0,100.0,223.0,101.0,0.0,68.0,1.0,49.0,189.0,13.0,0.0,0.0,0.0,0.0,0.0,98.0,1.0,0.0,0.0,3287.0,0.0,80.0,0.0,0.0,1087.0,0.0,78.0,208.0,31.0,0.0,160.0,0.0,32.0,0.0,4781.0,0.0,0.0,640.0,0.0,0.0,70.0,158.0,418.0,862.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,49.0,0.0,902.0,0.0,0.0,0.0,761.0,1071.0,664.0,0.0,2039.0,26.0,442.0,249.0,0.0,0.0,1153.0,1.0,0.0,212.0,221.0,1615.0,0.0,0.0,2009-04-12,,2009-15,0.010205734752813278,0.9600000000000002, +51,51,0.07,0.0,0.0,130.0,0.0,26.0,176.0,236.0,78.0,0.0,219.0,3708.0,0.0,33.0,593.0,96.0,32.0,60.0,102.0,1922.0,0.0,28.0,40.0,0.0,0.0,294.0,47.0,2340.0,383.0,35.0,0.0,0.0,0.0,235.0,129.0,967.0,1691.0,0.0,0.0,0.0,0.0,109.0,0.0,105.0,122.0,742.0,0.0,0.0,93.0,196.0,1374.0,0.0,100.0,0.0,99.0,35.0,39.0,0.0,0.0,0.0,0.0,0.0,1713.0,0.0,1687.0,217.0,0.0,0.0,0.0,1578.0,0.0,281.0,0.0,0.0,33.0,0.0,4339.0,0.0,0.0,22.0,84.0,104.0,47.0,87.0,0.0,76.0,699.0,0.0,41.0,0.0,0.0,0.0,1525.0,0.0,0.0,184.0,73.0,75.0,708.0,0.0,2123.0,1114.0,0.0,0.0,15.0,0.0,0.0,18.0,0.0,71.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,650.0,2475.0,1980.0,0.0,32.0,496.0,711.0,0.0,0.0,71.0,64.0,0.0,0.0,315.0,2333.0,1021.0,0.0,99.0,123.0,0.0,144.0,191.0,1352.0,0.0,4269.0,184.0,10.0,0.0,2203.0,943.0,269.0,0.0,213.0,214.0,0.0,224.0,0.0,0.0,267.0,0.0,194.0,0.0,69.0,0.0,332.0,621.0,137.0,0.0,0.0,0.0,0.0,0.0,48.0,0.0,360.0,2275.0,216.0,0.0,53.0,0.0,0.0,309.0,0.0,67.0,1174.0,73.0,0.0,0.0,0.0,0.0,0.0,0.0,137.0,448.0,0.0,0.0,0.0,64.0,73.0,0.0,0.0,173.0,346.0,556.0,592.0,0.0,0.0,0.0,0.0,0.0,0.0,29.0,1308.0,0.0,1152.0,0.0,0.0,0.0,0.0,0.0,73.0,429.0,638.0,65.0,0.0,18.0,712.0,0.0,0.0,51.0,169.0,65.0,0.0,40.0,0.0,25.0,181.0,20.0,0.0,0.0,0.0,0.0,0.0,71.0,0.0,0.0,0.0,2946.0,0.0,40.0,0.0,0.0,1176.0,0.0,69.0,164.0,42.0,0.0,107.0,0.0,24.0,0.0,3939.0,0.0,0.0,489.0,0.0,0.0,61.0,132.0,324.0,472.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.0,0.0,750.0,0.0,0.0,0.0,871.0,871.0,499.0,0.0,1667.0,13.0,481.0,133.0,0.0,0.0,942.0,0.0,0.0,223.0,199.0,1338.0,0.0,0.0,2009-04-19,,2009-16,-0.5535859240842367,0.188, +52,52,1.92,0.0,0.0,115.0,0.0,40.0,150.0,228.0,97.0,0.0,171.0,2791.0,0.0,17.0,641.0,86.0,26.0,82.0,149.0,2450.0,0.0,29.0,43.0,0.0,0.0,248.0,42.0,1383.0,364.0,17.0,0.0,0.0,0.0,328.0,108.0,638.0,1862.0,0.0,0.0,0.0,0.0,129.0,0.0,84.0,180.0,381.0,0.0,0.0,87.0,146.0,638.0,0.0,111.0,0.0,164.0,52.0,39.0,0.0,0.0,0.0,0.0,0.0,1761.0,0.0,1744.0,302.0,0.0,0.0,0.0,1613.0,0.0,174.0,0.0,0.0,32.0,0.0,4865.0,5.0,0.0,16.0,191.0,111.0,28.0,79.0,0.0,90.0,684.0,0.0,31.0,4.0,0.0,0.0,1774.0,0.0,0.0,172.0,111.0,99.0,622.0,32.0,1808.0,1293.0,0.0,0.0,39.0,0.0,0.0,4.0,0.0,65.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1096.0,2792.0,2224.0,0.0,30.0,556.0,759.0,0.0,0.0,79.0,66.0,0.0,0.0,375.0,2012.0,1020.0,0.0,99.0,122.0,36.0,99.0,145.0,1376.0,0.0,2486.0,106.0,5.0,0.0,2170.0,1060.0,228.0,0.0,262.0,227.0,0.0,361.0,0.0,0.0,242.0,0.0,85.0,0.0,81.0,0.0,264.0,685.0,121.0,0.0,21.0,18.0,0.0,0.0,47.0,0.0,471.0,882.0,253.0,0.0,7.0,0.0,0.0,326.0,0.0,66.0,1058.0,57.0,0.0,1.0,0.0,0.0,91.0,0.0,94.0,622.0,0.0,0.0,0.0,45.0,121.0,17.0,14.0,128.0,360.0,507.0,620.0,0.0,0.0,0.0,0.0,0.0,0.0,38.0,1390.0,0.0,1341.0,0.0,0.0,18.0,0.0,0.0,164.0,445.0,788.0,67.0,0.0,13.0,630.0,0.0,0.0,48.0,227.0,59.0,0.0,61.0,0.0,9.0,158.0,51.0,0.0,0.0,0.0,0.0,0.0,40.0,2.0,0.0,0.0,2720.0,0.0,44.0,0.0,0.0,673.0,0.0,66.0,178.0,28.0,0.0,131.0,0.0,17.0,0.0,4165.0,0.0,0.0,474.0,0.0,0.0,130.0,129.0,288.0,306.0,0.0,0.0,0.0,274.0,0.0,0.0,0.0,24.0,0.0,513.0,0.0,0.0,0.0,981.0,926.0,585.0,0.0,1722.0,15.0,294.0,108.0,0.0,33.0,667.0,0.0,0.0,373.0,226.0,2181.0,0.0,0.0,2009-10-25,,2009-43,2.4056845579938626,1.64, +53,53,3.39,0.0,0.0,192.0,0.0,37.0,204.0,355.0,121.0,0.0,221.0,3745.0,0.0,23.0,681.0,109.0,39.0,99.0,189.0,3214.0,0.0,29.0,78.0,0.0,0.0,357.0,43.0,1727.0,460.0,32.0,0.0,0.0,1.0,480.0,165.0,647.0,2163.0,0.0,0.0,0.0,0.0,215.0,0.0,89.0,207.0,543.0,0.0,0.0,136.0,134.0,925.0,0.0,117.0,0.0,221.0,73.0,48.0,0.0,0.0,0.0,0.0,0.0,2062.0,0.0,2128.0,266.0,0.0,0.0,0.0,2158.0,0.0,165.0,0.0,0.0,46.0,0.0,5510.0,4.0,0.0,22.0,275.0,147.0,42.0,125.0,0.0,73.0,1012.0,0.0,36.0,2.0,0.0,0.0,2249.0,0.0,0.0,251.0,77.0,173.0,709.0,52.0,2039.0,1383.0,0.0,0.0,58.0,0.0,0.0,10.0,0.0,92.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1948.0,3537.0,2849.0,0.0,37.0,494.0,949.0,0.0,0.0,83.0,91.0,0.0,0.0,414.0,2473.0,1381.0,0.0,109.0,160.0,41.0,137.0,226.0,1594.0,0.0,2696.0,119.0,5.0,0.0,2487.0,1301.0,249.0,0.0,310.0,265.0,0.0,472.0,0.0,0.0,309.0,0.0,105.0,0.0,84.0,0.0,335.0,978.0,107.0,0.0,26.0,36.0,0.0,0.0,84.0,0.0,509.0,978.0,270.0,0.0,10.0,0.0,0.0,370.0,0.0,62.0,1532.0,89.0,0.0,1.0,0.0,0.0,198.0,0.0,124.0,782.0,0.0,0.0,0.0,73.0,113.0,63.0,16.0,205.0,462.0,580.0,575.0,0.0,0.0,0.0,0.0,0.0,0.0,39.0,1803.0,0.0,1581.0,0.0,0.0,21.0,0.0,0.0,277.0,518.0,917.0,117.0,0.0,15.0,877.0,0.0,0.0,60.0,306.0,99.0,0.0,44.0,0.0,13.0,240.0,64.0,0.0,0.0,0.0,0.0,0.0,78.0,5.0,0.0,0.0,3313.0,0.0,51.0,0.0,0.0,843.0,0.0,81.0,258.0,36.0,0.0,189.0,0.0,19.0,0.0,5211.0,0.0,0.0,644.0,0.0,0.0,154.0,232.0,355.0,401.0,0.0,0.0,0.0,301.0,0.0,0.0,0.0,37.0,0.0,681.0,0.0,0.0,0.0,1019.0,1114.0,644.0,0.0,2370.0,19.0,473.0,131.0,0.0,23.0,816.0,0.0,0.0,239.0,237.0,2106.0,0.0,0.0,2009-11-01,,2009-44,4.75851126641451,19.630000000000003, +54,54,9.77,0.0,0.0,151.0,0.0,33.0,190.0,290.0,117.0,0.0,241.0,3950.0,0.0,24.0,750.0,183.0,33.0,102.0,194.0,3097.0,0.0,32.0,85.0,0.0,0.0,371.0,40.0,1983.0,492.0,34.0,0.0,0.0,0.0,422.0,275.0,833.0,2216.0,0.0,0.0,0.0,0.0,195.0,0.0,103.0,255.0,598.0,0.0,0.0,156.0,171.0,787.0,0.0,108.0,0.0,178.0,90.0,45.0,0.0,0.0,0.0,0.0,0.0,2161.0,0.0,2097.0,299.0,0.0,0.0,0.0,2149.0,0.0,167.0,0.0,0.0,47.0,0.0,5651.0,7.0,0.0,19.0,336.0,126.0,35.0,151.0,0.0,110.0,990.0,0.0,39.0,3.0,0.0,0.0,2161.0,0.0,0.0,210.0,117.0,154.0,666.0,47.0,1955.0,1551.0,0.0,0.0,101.0,0.0,0.0,7.0,0.0,91.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1843.0,3917.0,3234.0,0.0,21.0,484.0,1013.0,0.0,0.0,90.0,85.0,0.0,0.0,436.0,2731.0,1368.0,0.0,144.0,155.0,33.0,153.0,213.0,1538.0,0.0,2728.0,132.0,0.0,0.0,2852.0,1382.0,232.0,0.0,323.0,278.0,0.0,607.0,0.0,0.0,293.0,0.0,120.0,0.0,53.0,0.0,419.0,1083.0,74.0,0.0,23.0,28.0,0.0,0.0,73.0,0.0,488.0,1028.0,312.0,0.0,9.0,0.0,0.0,387.0,0.0,62.0,1631.0,116.0,0.0,0.0,0.0,0.0,192.0,0.0,131.0,805.0,0.0,0.0,0.0,88.0,105.0,73.0,13.0,236.0,460.0,623.0,448.0,0.0,0.0,0.0,0.0,0.0,0.0,52.0,1834.0,0.0,1685.0,0.0,0.0,40.0,0.0,0.0,287.0,652.0,926.0,117.0,0.0,19.0,858.0,0.0,0.0,57.0,243.0,112.0,0.0,68.0,0.0,8.0,221.0,76.0,0.0,0.0,0.0,0.0,0.0,58.0,4.0,0.0,0.0,3421.0,0.0,53.0,0.0,0.0,834.0,0.0,78.0,239.0,32.0,0.0,158.0,0.0,18.0,0.0,5022.0,0.0,0.0,675.0,0.0,0.0,712.0,264.0,382.0,445.0,0.0,0.0,0.0,354.0,0.0,0.0,0.0,47.0,0.0,665.0,0.0,0.0,0.0,1177.0,986.0,703.0,0.0,2641.0,19.0,380.0,166.0,0.0,41.0,854.0,2.0,0.0,271.0,237.0,1975.0,0.0,0.0,2009-11-08,,2009-45,9.742045600973848,12.787999999999997, +55,55,24.86,0.0,0.0,201.0,0.0,40.0,216.0,289.0,123.0,0.0,249.0,4706.0,0.0,39.0,808.0,131.0,50.0,92.0,157.0,3327.0,0.0,48.0,84.0,0.0,0.0,380.0,42.0,1927.0,507.0,23.0,0.0,0.0,0.0,476.0,354.0,640.0,2478.0,0.0,0.0,0.0,0.0,286.0,0.0,108.0,264.0,615.0,0.0,0.0,175.0,156.0,809.0,0.0,115.0,0.0,157.0,100.0,57.0,0.0,0.0,0.0,0.0,0.0,2571.0,0.0,2398.0,322.0,0.0,0.0,0.0,2287.0,0.0,214.0,0.0,0.0,38.0,0.0,5629.0,2.0,0.0,11.0,388.0,173.0,37.0,125.0,0.0,111.0,1073.0,0.0,35.0,3.0,0.0,0.0,2238.0,0.0,0.0,279.0,81.0,204.0,790.0,90.0,1931.0,1755.0,0.0,0.0,88.0,0.0,0.0,14.0,0.0,102.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3002.0,4590.0,4260.0,0.0,41.0,450.0,1012.0,0.0,0.0,107.0,108.0,0.0,0.0,467.0,2872.0,1459.0,0.0,131.0,149.0,59.0,128.0,267.0,1650.0,0.0,3224.0,124.0,2.0,0.0,2788.0,1471.0,275.0,0.0,351.0,324.0,0.0,775.0,0.0,0.0,341.0,0.0,98.0,0.0,98.0,0.0,396.0,1187.0,112.0,0.0,16.0,28.0,0.0,0.0,62.0,0.0,513.0,1071.0,316.0,0.0,16.0,0.0,0.0,373.0,0.0,62.0,1884.0,138.0,0.0,0.0,0.0,0.0,179.0,0.0,119.0,834.0,0.0,0.0,0.0,88.0,119.0,51.0,14.0,243.0,450.0,773.0,458.0,0.0,0.0,0.0,0.0,0.0,0.0,39.0,2092.0,0.0,1892.0,0.0,0.0,40.0,0.0,1.0,288.0,657.0,1154.0,119.0,0.0,18.0,999.0,0.0,0.0,70.0,277.0,93.0,0.0,77.0,0.0,28.0,279.0,86.0,0.0,0.0,0.0,0.0,0.0,99.0,3.0,0.0,0.0,3824.0,0.0,62.0,0.0,0.0,756.0,0.0,68.0,285.0,31.0,0.0,198.0,0.0,23.0,0.0,5394.0,0.0,0.0,815.0,0.0,1.0,295.0,375.0,416.0,515.0,0.0,0.0,0.0,361.0,0.0,0.0,0.0,53.0,0.0,751.0,0.0,0.0,0.0,1169.0,1151.0,729.0,0.0,3516.0,19.0,481.0,163.0,0.0,44.0,912.0,1.0,0.0,270.0,272.0,2387.0,0.0,0.0,2009-11-15,,2009-46,24.49369564098342,27.946000000000005, +56,56,40.29,0.0,0.0,187.0,0.0,35.0,218.0,416.0,109.0,0.0,278.0,5375.0,0.0,32.0,768.0,110.0,35.0,120.0,210.0,3441.0,0.0,35.0,83.0,0.0,0.0,435.0,30.0,1957.0,553.0,38.0,0.0,0.0,0.0,455.0,376.0,731.0,2537.0,0.0,0.0,0.0,0.0,353.0,0.0,110.0,247.0,577.0,0.0,0.0,170.0,147.0,854.0,0.0,138.0,0.0,210.0,127.0,39.0,0.0,0.0,0.0,0.0,0.0,2660.0,0.0,2635.0,304.0,0.0,0.0,0.0,2393.0,0.0,203.0,0.0,1.0,37.0,0.0,5969.0,1.0,0.0,21.0,263.0,159.0,47.0,128.0,0.0,105.0,1196.0,0.0,51.0,1.0,0.0,0.0,1893.0,0.0,1.0,272.0,76.0,194.0,805.0,87.0,2288.0,1911.0,0.0,0.0,61.0,0.0,0.0,12.0,0.0,89.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3686.0,5347.0,4295.0,0.0,23.0,567.0,1070.0,0.0,0.0,115.0,89.0,0.0,0.0,593.0,3024.0,1418.0,0.0,122.0,161.0,49.0,146.0,275.0,1822.0,0.0,3065.0,141.0,5.0,0.0,3059.0,1426.0,303.0,0.0,367.0,275.0,0.0,854.0,0.0,0.0,395.0,0.0,91.0,0.0,94.0,0.0,442.0,1398.0,131.0,0.0,30.0,27.0,0.0,0.0,58.0,0.0,548.0,1066.0,300.0,0.0,11.0,0.0,0.0,421.0,0.0,89.0,2082.0,116.0,0.0,0.0,0.0,0.0,133.0,0.0,144.0,867.0,0.0,0.0,0.0,125.0,138.0,37.0,19.0,334.0,580.0,886.0,465.0,0.0,0.0,0.0,0.0,0.0,0.0,37.0,2127.0,0.0,2108.0,0.0,0.0,26.0,0.0,0.0,326.0,650.0,1017.0,140.0,0.0,27.0,980.0,0.0,0.0,77.0,300.0,109.0,0.0,64.0,1.0,8.0,223.0,79.0,0.0,0.0,0.0,0.0,0.0,79.0,2.0,0.0,0.0,3958.0,0.0,61.0,0.0,0.0,798.0,0.0,87.0,280.0,43.0,0.0,320.0,0.0,25.0,0.0,5822.0,0.0,0.0,757.0,0.0,0.0,306.0,508.0,407.0,502.0,0.0,0.0,0.0,337.0,0.0,0.0,0.0,51.0,0.0,804.0,0.0,0.0,0.0,1377.0,1175.0,723.0,0.0,4098.0,18.0,414.0,147.0,0.0,46.0,953.0,2.0,0.0,253.0,301.0,2656.0,0.0,0.0,2009-11-22,,2009-47,39.81576274185181,34.117999999999995, +57,57,26.22,0.0,0.0,119.0,0.0,25.0,150.0,278.0,82.0,0.0,178.0,4589.0,0.0,25.0,610.0,93.0,35.0,108.0,163.0,2897.0,0.0,24.0,71.0,0.0,0.0,363.0,39.0,1594.0,445.0,44.0,0.0,0.0,0.0,376.0,258.0,598.0,2167.0,0.0,0.0,0.0,0.0,181.0,0.0,84.0,212.0,466.0,0.0,0.0,129.0,173.0,672.0,0.0,108.0,0.0,173.0,69.0,36.0,0.0,0.0,0.0,0.0,0.0,2106.0,0.0,2379.0,237.0,0.0,0.0,0.0,1807.0,0.0,177.0,0.0,0.0,41.0,0.0,4538.0,4.0,0.0,17.0,266.0,144.0,28.0,113.0,0.0,79.0,914.0,0.0,37.0,1.0,0.0,0.0,1836.0,0.0,0.0,256.0,78.0,163.0,627.0,63.0,1678.0,1402.0,0.0,0.0,52.0,0.0,0.0,8.0,0.0,78.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2661.0,3803.0,3523.0,0.0,28.0,415.0,883.0,0.0,0.0,86.0,77.0,0.0,0.0,434.0,2254.0,1205.0,0.0,119.0,127.0,34.0,124.0,179.0,1554.0,0.0,2461.0,142.0,4.0,0.0,2592.0,1197.0,215.0,0.0,324.0,257.0,0.0,555.0,0.0,0.0,287.0,0.0,102.0,0.0,72.0,0.0,358.0,1024.0,104.0,0.0,22.0,23.0,0.0,0.0,49.0,0.0,421.0,927.0,262.0,0.0,13.0,0.0,0.0,356.0,0.0,62.0,1486.0,67.0,0.0,0.0,0.0,0.0,125.0,0.0,86.0,764.0,0.0,0.0,0.0,86.0,106.0,20.0,9.0,328.0,434.0,618.0,412.0,0.0,1.0,0.0,0.0,0.0,0.0,48.0,1710.0,0.0,1562.0,0.0,0.0,27.0,0.0,0.0,187.0,505.0,862.0,107.0,0.0,18.0,844.0,0.0,0.0,51.0,218.0,85.0,0.0,49.0,0.0,10.0,185.0,59.0,0.0,0.0,0.0,0.0,0.0,53.0,1.0,0.0,0.0,3146.0,0.0,34.0,0.0,0.0,619.0,0.0,81.0,233.0,31.0,0.0,844.0,0.0,28.0,0.0,4654.0,0.0,0.0,517.0,0.0,0.0,215.0,318.0,310.0,349.0,0.0,0.0,0.0,275.0,0.0,0.0,0.0,41.0,0.0,627.0,0.0,0.0,0.0,1002.0,921.0,572.0,0.0,3507.0,16.0,321.0,125.0,0.0,30.0,760.0,0.0,0.0,246.0,226.0,2002.0,0.0,0.0,2009-11-29,,2009-48,26.603489027009154,21.451999999999998, +58,58,17.98,0.0,0.0,152.0,0.0,37.0,210.0,304.0,104.0,0.0,202.0,4014.0,0.0,36.0,700.0,101.0,44.0,102.0,164.0,2705.0,0.0,41.0,54.0,0.0,0.0,360.0,46.0,1648.0,487.0,39.0,0.0,0.0,0.0,317.0,146.0,799.0,2146.0,0.0,0.0,0.0,0.0,232.0,0.0,101.0,220.0,470.0,0.0,0.0,107.0,140.0,753.0,0.0,129.0,0.0,167.0,125.0,35.0,0.0,0.0,0.0,0.0,0.0,2341.0,0.0,2104.0,234.0,0.0,0.0,0.0,1852.0,0.0,144.0,8.0,0.0,32.0,0.0,4876.0,4.0,0.0,19.0,375.0,123.0,45.0,82.0,0.0,96.0,717.0,0.0,30.0,1.0,0.0,0.0,2112.0,0.0,0.0,169.0,72.0,158.0,661.0,51.0,1670.0,1454.0,0.0,0.0,36.0,0.0,0.0,19.0,0.0,71.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1383.0,3711.0,3247.0,0.0,39.0,482.0,903.0,0.0,0.0,73.0,76.0,0.0,0.0,449.0,2350.0,1130.0,0.0,128.0,142.0,51.0,141.0,211.0,1511.0,0.0,2539.0,123.0,8.0,0.0,2472.0,1091.0,209.0,0.0,314.0,226.0,0.0,385.0,0.0,0.0,288.0,0.0,102.0,0.0,60.0,0.0,336.0,926.0,98.0,0.0,22.0,17.0,0.0,0.0,33.0,0.0,431.0,912.0,246.0,0.0,23.0,0.0,0.0,377.0,0.0,71.0,1211.0,74.0,0.0,0.0,0.0,0.0,147.0,0.0,98.0,688.0,0.0,0.0,0.0,87.0,115.0,20.0,11.0,281.0,436.0,751.0,362.0,0.0,0.0,0.0,0.0,1.0,0.0,43.0,1806.0,0.0,1455.0,0.0,0.0,17.0,0.0,0.0,183.0,610.0,797.0,94.0,0.0,19.0,772.0,0.0,0.0,48.0,246.0,88.0,0.0,69.0,0.0,10.0,200.0,80.0,0.0,0.0,0.0,0.0,1.0,56.0,1.0,0.0,0.0,3017.0,0.0,53.0,0.0,0.0,611.0,0.0,78.0,197.0,36.0,0.0,495.0,0.0,17.0,0.0,4760.0,0.0,0.0,563.0,0.0,0.0,146.0,189.0,324.0,420.0,0.0,0.0,0.0,409.0,0.0,0.0,0.0,48.0,0.0,626.0,0.0,0.0,0.0,889.0,912.0,552.0,0.0,3001.0,18.0,316.0,110.0,0.0,35.0,820.0,0.0,0.0,204.0,231.0,1826.0,0.0,0.0,2009-12-06,,2009-49,16.286697064985784,11.198000000000002, +59,59,11.64,0.0,0.0,132.0,0.0,23.0,182.0,281.0,71.0,0.0,218.0,3485.0,0.0,30.0,604.0,119.0,31.0,78.0,164.0,2602.0,0.0,45.0,49.0,0.0,52.0,383.0,59.0,1569.0,389.0,34.0,0.0,0.0,0.0,310.0,128.0,514.0,1798.0,0.0,0.0,0.0,0.0,183.0,0.0,71.0,151.0,358.0,0.0,0.0,99.0,137.0,728.0,0.0,130.0,0.0,162.0,90.0,33.0,0.0,0.0,0.0,0.0,0.0,2004.0,0.0,1848.0,974.0,0.0,0.0,0.0,1802.0,0.0,137.0,144.0,0.0,31.0,0.0,4518.0,8.0,0.0,12.0,265.0,147.0,27.0,74.0,0.0,107.0,560.0,0.0,30.0,3.0,0.0,0.0,1688.0,0.0,0.0,210.0,103.0,98.0,758.0,61.0,1569.0,1427.0,0.0,0.0,54.0,0.0,0.0,6.0,0.0,81.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1131.0,3336.0,3129.0,0.0,16.0,414.0,877.0,0.0,0.0,81.0,93.0,0.0,0.0,375.0,2152.0,1066.0,0.0,118.0,142.0,30.0,111.0,204.0,1440.0,0.0,2491.0,118.0,2.0,0.0,2321.0,958.0,227.0,0.0,313.0,221.0,0.0,278.0,0.0,0.0,261.0,0.0,92.0,0.0,48.0,0.0,370.0,749.0,94.0,0.0,26.0,8.0,0.0,0.0,41.0,0.0,376.0,907.0,274.0,0.0,2.0,0.0,0.0,352.0,0.0,67.0,1146.0,58.0,0.0,0.0,0.0,0.0,169.0,0.0,99.0,601.0,0.0,0.0,0.0,98.0,323.0,14.0,8.0,267.0,443.0,650.0,346.0,0.0,0.0,0.0,0.0,0.0,0.0,28.0,1744.0,0.0,1389.0,0.0,0.0,22.0,0.0,0.0,144.0,563.0,790.0,110.0,0.0,24.0,837.0,0.0,0.0,52.0,198.0,80.0,0.0,48.0,0.0,10.0,155.0,84.0,0.0,0.0,0.0,0.0,0.0,53.0,10.0,0.0,0.0,2950.0,0.0,36.0,0.0,0.0,606.0,0.0,68.0,264.0,28.0,0.0,210.0,0.0,14.0,0.0,4275.0,0.0,0.0,538.0,0.0,0.0,97.0,155.0,277.0,458.0,0.0,0.0,0.0,331.0,0.0,0.0,0.0,41.0,0.0,553.0,0.0,0.0,0.0,786.0,718.0,491.0,0.0,2609.0,14.0,289.0,104.0,0.0,30.0,853.0,0.0,0.0,176.0,192.0,1764.0,0.0,0.0,2009-12-13,,2009-50,11.52925005969201,11.64, +60,60,8.53,0.0,0.0,148.0,0.0,29.0,166.0,321.0,93.0,1.0,201.0,3284.0,0.0,23.0,652.0,93.0,32.0,93.0,159.0,2736.0,0.0,18.0,51.0,0.0,82.0,276.0,39.0,1512.0,439.0,27.0,0.0,0.0,0.0,202.0,98.0,578.0,1737.0,0.0,0.0,0.0,0.0,178.0,0.0,97.0,215.0,434.0,0.0,0.0,100.0,147.0,688.0,0.0,68.0,0.0,211.0,94.0,27.0,0.0,0.0,0.0,0.0,0.0,1930.0,0.0,1781.0,217.0,0.0,0.0,0.0,1829.0,0.0,131.0,145.0,0.0,50.0,0.0,4868.0,3.0,0.0,14.0,254.0,150.0,37.0,84.0,0.0,78.0,619.0,0.0,37.0,2.0,0.0,0.0,1827.0,0.0,0.0,194.0,63.0,99.0,626.0,74.0,1710.0,1490.0,0.0,0.0,57.0,0.0,0.0,8.0,0.0,82.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,914.0,3248.0,3225.0,0.0,18.0,379.0,937.0,0.0,0.0,87.0,86.0,0.0,0.0,436.0,2020.0,1035.0,0.0,96.0,125.0,26.0,115.0,189.0,1400.0,0.0,2626.0,132.0,2.0,0.0,2270.0,927.0,220.0,0.0,273.0,194.0,0.0,366.0,0.0,0.0,277.0,0.0,88.0,0.0,43.0,0.0,327.0,779.0,96.0,0.0,27.0,15.0,0.0,0.0,28.0,0.0,422.0,876.0,316.0,0.0,16.0,0.0,0.0,350.0,0.0,51.0,1160.0,65.0,0.0,0.0,0.0,0.0,151.0,0.0,86.0,629.0,0.0,0.0,0.0,121.0,86.0,20.0,4.0,243.0,427.0,604.0,340.0,0.0,0.0,0.0,0.0,0.0,0.0,34.0,1601.0,0.0,1352.0,0.0,0.0,23.0,0.0,0.0,131.0,517.0,716.0,100.0,0.0,14.0,865.0,0.0,0.0,51.0,194.0,80.0,0.0,36.0,0.0,9.0,127.0,84.0,0.0,0.0,0.0,0.0,0.0,52.0,4.0,0.0,0.0,2864.0,0.0,42.0,0.0,0.0,575.0,0.0,78.0,167.0,49.0,0.0,168.0,0.0,11.0,0.0,4439.0,0.0,0.0,571.0,0.0,1.0,122.0,157.0,333.0,394.0,0.0,0.0,0.0,308.0,0.0,0.0,0.0,47.0,0.0,521.0,0.0,0.0,0.0,879.0,574.0,525.0,0.0,2473.0,19.0,344.0,120.0,0.0,29.0,770.0,0.0,0.0,167.0,185.0,1670.0,0.0,0.0,2009-12-20,,2009-51,8.609036129882131,7.934000000000001, +61,61,6.11,0.0,0.0,142.0,0.0,36.0,193.0,324.0,86.0,0.0,232.0,3913.0,0.0,24.0,501.0,108.0,37.0,75.0,111.0,2322.0,0.0,25.0,66.0,0.0,42.0,255.0,35.0,1356.0,380.0,40.0,0.0,0.0,0.0,206.0,95.0,673.0,1586.0,0.0,0.0,0.0,0.0,152.0,0.0,94.0,205.0,439.0,0.0,0.0,97.0,131.0,639.0,0.0,86.0,0.0,168.0,75.0,32.0,0.0,0.0,0.0,0.0,0.0,1898.0,0.0,1546.0,186.0,0.0,0.0,0.0,1648.0,0.0,208.0,128.0,1.0,28.0,0.0,4688.0,61.0,0.0,10.0,255.0,94.0,29.0,93.0,0.0,62.0,576.0,0.0,24.0,1.0,0.0,0.0,1781.0,0.0,0.0,236.0,75.0,103.0,523.0,41.0,1700.0,1297.0,0.0,0.0,40.0,0.0,0.0,8.0,0.0,69.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,711.0,3170.0,2511.0,0.0,22.0,411.0,828.0,0.0,0.0,90.0,67.0,0.0,0.0,334.0,2015.0,995.0,0.0,108.0,100.0,41.0,115.0,189.0,1419.0,0.0,2686.0,106.0,4.0,0.0,2064.0,1028.0,193.0,0.0,251.0,229.0,0.0,250.0,0.0,0.0,201.0,0.0,97.0,0.0,42.0,0.0,301.0,735.0,79.0,0.0,19.0,13.0,0.0,0.0,45.0,0.0,403.0,787.0,288.0,0.0,6.0,0.0,0.0,315.0,0.0,61.0,1000.0,71.0,0.0,0.0,0.0,0.0,146.0,0.0,97.0,505.0,0.0,0.0,0.0,67.0,84.0,14.0,10.0,249.0,418.0,541.0,294.0,0.0,0.0,0.0,0.0,0.0,0.0,24.0,1474.0,0.0,1207.0,0.0,0.0,24.0,0.0,0.0,132.0,438.0,683.0,75.0,0.0,9.0,859.0,0.0,0.0,48.0,161.0,92.0,0.0,27.0,0.0,9.0,143.0,55.0,0.0,0.0,0.0,0.0,3.0,57.0,1.0,0.0,0.0,2633.0,0.0,53.0,0.0,0.0,536.0,0.0,62.0,204.0,37.0,0.0,148.0,0.0,15.0,0.0,4128.0,0.0,0.0,480.0,0.0,0.0,75.0,133.0,325.0,385.0,0.0,0.0,0.0,341.0,0.0,0.0,0.0,69.0,0.0,543.0,0.0,0.0,0.0,825.0,526.0,533.0,0.0,2254.0,15.0,346.0,111.0,0.0,24.0,923.0,0.0,0.0,178.0,190.0,1558.0,0.0,0.0,2009-12-27,,2009-52,5.35384810455584,6.028, +62,62,2.38,0.0,0.0,68.0,0.0,44.0,104.0,186.0,56.0,2.0,149.0,3051.0,0.0,18.0,412.0,180.0,19.0,61.0,85.0,2532.0,0.0,21.0,46.0,0.0,63.0,200.0,18.0,1064.0,286.0,20.0,0.0,0.0,0.0,160.0,77.0,1168.0,1300.0,0.0,0.0,0.0,0.0,100.0,0.0,62.0,160.0,349.0,0.0,0.0,66.0,119.0,711.0,0.0,107.0,0.0,130.0,36.0,16.0,0.0,0.0,0.0,0.0,0.0,1290.0,0.0,1207.0,163.0,0.0,0.0,0.0,1417.0,0.0,122.0,147.0,0.0,27.0,0.0,4072.0,43.0,0.0,10.0,191.0,93.0,17.0,46.0,0.0,69.0,372.0,0.0,18.0,1.0,0.0,0.0,1539.0,0.0,0.0,111.0,43.0,72.0,547.0,40.0,1634.0,1045.0,0.0,0.0,38.0,0.0,0.0,7.0,0.0,46.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,531.0,2045.0,1471.0,0.0,25.0,265.0,801.0,0.0,0.0,50.0,56.0,0.0,0.0,237.0,2209.0,793.0,0.0,69.0,86.0,28.0,86.0,117.0,1174.0,0.0,2179.0,127.0,2.0,0.0,1796.0,1013.0,195.0,0.0,171.0,175.0,0.0,160.0,0.0,0.0,204.0,0.0,66.0,0.0,37.0,0.0,235.0,482.0,51.0,0.0,19.0,17.0,0.0,0.0,26.0,0.0,298.0,585.0,160.0,0.0,7.0,0.0,0.0,204.0,0.0,51.0,827.0,45.0,0.0,0.0,0.0,0.0,113.0,0.0,67.0,348.0,0.0,0.0,0.0,46.0,71.0,19.0,8.0,203.0,222.0,421.0,271.0,0.0,1.0,0.0,0.0,0.0,0.0,22.0,1313.0,0.0,993.0,0.0,0.0,35.0,0.0,0.0,71.0,335.0,560.0,56.0,0.0,9.0,546.0,0.0,0.0,35.0,125.0,48.0,0.0,24.0,0.0,5.0,130.0,54.0,0.0,0.0,0.0,0.0,0.0,43.0,4.0,0.0,0.0,2181.0,0.0,35.0,0.0,0.0,476.0,0.0,66.0,154.0,38.0,0.0,95.0,0.0,9.0,0.0,5041.0,0.0,0.0,357.0,0.0,0.0,49.0,96.0,215.0,232.0,0.0,0.0,0.0,208.0,0.0,0.0,0.0,32.0,0.0,469.0,0.0,0.0,0.0,1064.0,438.0,433.0,0.0,1538.0,10.0,234.0,130.0,0.0,28.0,843.0,1.0,0.0,109.0,142.0,1156.0,0.0,0.0,2010-01-03,,2009-53,2.495751364441465,1.9160000000000001, +63,63,1.13,0.0,0.0,119.0,0.0,59.0,222.0,258.3333333333333,123.0,8.0,291.0,3569.0,0.0,22.0,708.0,149.0,38.0,97.0,175.0,3214.0,0.0,33.0,49.0,0.0,47.0,343.0,24.0,1841.0,500.0,22.0,0.0,0.0,0.0,279.0,71.0,717.0,1902.0,0.0,0.0,0.0,0.0,216.0,0.0,108.0,234.0,505.0,0.0,0.0,89.0,185.0,896.0,0.0,103.0,0.0,204.0,67.0,40.0,0.0,0.0,0.0,0.0,0.0,1903.0,0.0,1861.0,242.0,0.0,0.0,0.0,2078.0,0.0,170.0,105.0,0.0,49.0,0.0,4498.0,63.0,0.0,17.0,208.0,137.0,41.0,94.0,0.0,72.0,726.0,0.0,48.0,2.0,0.0,0.0,1900.0,0.0,0.0,242.0,71.0,98.0,682.0,100.0,1929.0,1674.0,0.0,0.0,65.0,0.0,0.0,14.0,0.0,78.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,820.0,3300.0,2930.0,0.0,23.0,461.0,956.0,0.0,0.0,90.0,97.0,0.0,0.0,390.0,2520.0,1284.0,0.0,126.0,136.0,49.0,129.0,229.0,1729.0,0.0,2789.0,143.0,5.0,0.0,2481.0,1275.0,242.0,0.0,329.0,233.0,0.0,342.0,0.0,0.0,289.0,0.0,103.0,0.0,46.0,0.0,275.0,710.0,106.0,0.0,25.0,15.0,0.0,0.0,50.0,0.0,466.0,1170.0,296.0,0.0,9.0,0.0,0.0,366.0,0.0,44.0,1029.0,67.0,0.0,1.0,0.0,0.0,150.0,0.0,114.0,617.0,0.0,0.0,0.0,82.0,98.0,14.0,6.0,269.0,491.0,724.0,294.8333333333333,0.0,0.0,0.0,0.0,0.0,0.0,33.0,1836.0,0.0,1409.0,0.0,0.0,22.0,0.0,0.0,144.0,666.0,823.0,103.0,1.0,14.0,885.0,0.0,0.0,48.0,182.0,116.0,0.0,57.0,0.0,4.0,197.0,108.0,0.0,0.0,0.0,0.0,0.0,63.0,8.0,0.0,0.0,3174.0,0.0,40.0,0.0,0.0,585.0,0.0,58.0,195.0,37.0,0.0,121.0,0.0,24.0,0.0,4925.0,0.0,0.0,561.0,0.0,0.0,110.0,165.0,397.0,407.0,0.0,0.0,0.0,318.0,0.0,0.0,0.0,37.0,0.0,796.0,0.0,0.0,0.0,928.0,627.0,561.0,0.0,2438.0,9.0,387.0,161.0,0.0,28.0,864.0,0.0,0.0,301.0,211.0,1834.0,0.0,0.0,2010-01-10,,2010-1,1.5857589161685741,1.13, +64,64,0.67,1.0,0.0,159.0,0.0,68.0,285.0,330.66666666666663,139.0,11.0,385.0,3396.0,0.0,20.0,804.0,154.0,36.0,81.0,173.0,3637.0,0.0,41.0,65.0,0.0,70.0,372.0,37.0,2280.0,524.0,26.0,0.0,0.0,0.0,298.0,88.0,684.0,2258.0,0.0,0.0,0.0,0.0,214.0,0.0,108.0,261.0,606.0,0.0,0.0,105.0,179.0,1096.0,0.0,166.0,0.0,252.0,97.0,35.0,0.0,0.0,0.0,0.0,0.0,2469.0,0.0,2144.0,261.0,0.0,0.0,0.0,2429.0,0.0,175.0,120.0,1.0,55.0,0.0,5510.0,85.0,0.0,8.0,230.0,200.0,42.0,120.0,0.0,72.0,790.0,0.0,21.0,1.0,0.0,0.0,2298.0,0.0,0.0,270.0,60.0,139.0,772.0,112.0,2095.0,2141.0,0.0,0.0,45.0,0.0,0.0,7.0,0.0,102.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,931.0,4030.0,3668.0,0.0,24.0,529.0,1128.0,0.0,0.0,136.0,113.0,0.0,0.0,515.0,2595.0,1613.0,0.0,129.0,183.0,58.0,124.0,296.0,1967.0,0.0,3270.0,163.0,5.0,0.0,2778.0,1373.0,248.0,0.0,423.0,263.0,0.0,372.0,0.0,0.0,326.0,0.0,105.0,0.0,46.0,0.0,353.0,1044.0,130.0,0.0,27.0,11.0,0.0,0.0,41.0,0.0,613.0,1209.0,372.0,0.0,13.0,0.0,0.0,476.0,0.0,66.0,1198.0,104.0,0.0,0.0,0.0,0.0,174.0,0.0,118.0,797.0,0.0,0.0,0.0,109.0,119.0,21.0,8.0,289.0,571.0,895.0,318.6666666666667,0.0,0.0,0.0,0.0,0.0,0.0,28.0,2029.0,0.0,1600.0,0.0,0.0,40.0,0.0,0.0,221.0,729.0,987.0,118.0,0.0,14.0,1008.0,0.0,0.0,58.0,249.0,115.0,0.0,65.0,0.0,4.0,184.0,136.0,0.0,0.0,0.0,0.0,0.0,52.0,11.0,0.0,0.0,3576.0,0.0,45.0,0.0,0.0,634.0,0.0,93.0,247.0,37.0,0.0,120.0,0.0,25.0,0.0,5588.0,0.0,0.0,644.0,0.0,0.0,107.0,178.0,479.0,438.0,0.0,0.0,0.0,377.0,0.0,0.0,0.0,78.0,0.0,888.0,0.0,0.0,0.0,1408.0,644.0,670.0,0.0,2840.0,16.0,361.0,169.0,0.0,39.0,963.0,0.0,0.0,347.0,297.0,2284.0,0.0,0.0,2010-01-17,,2010-2,0.707981302609868,0.61, +65,65,0.47,0.0,0.0,133.0,0.0,61.0,201.0,403.0,159.0,10.0,273.0,2745.0,0.0,13.0,607.0,151.0,21.0,75.0,167.0,2853.0,0.0,35.0,96.0,0.0,47.0,338.0,31.0,1698.0,408.0,21.0,0.0,0.0,0.0,277.0,62.0,477.0,1941.0,0.0,0.0,0.0,0.0,159.0,0.0,96.0,191.0,452.0,0.0,0.0,110.0,180.0,730.0,0.0,116.0,0.0,190.0,80.0,43.0,0.0,0.0,0.0,0.0,0.0,2132.0,0.0,1814.0,217.0,0.0,0.0,0.0,2012.0,0.0,142.0,87.0,0.0,55.0,0.0,3868.0,61.0,0.0,16.0,209.0,149.0,40.0,131.0,0.0,44.0,628.0,0.0,32.0,2.0,0.0,0.0,1774.0,0.0,0.0,221.0,71.0,152.0,535.0,133.0,1989.0,1781.0,0.0,0.0,65.0,0.0,0.0,10.0,0.0,70.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,785.0,3297.0,2946.0,0.0,24.0,422.0,940.0,0.0,0.0,114.0,127.0,0.0,0.0,428.0,2042.0,1282.0,0.0,131.0,26894.0,43.0,131.0,209.0,1437.0,2.0,2685.0,98.0,1.0,0.0,2029.0,958.0,195.0,0.0,316.0,212.0,0.0,362.0,0.0,0.0,278.0,0.0,103.0,0.0,43.0,0.0,371.0,923.0,119.0,0.0,47.0,13.0,0.0,0.0,63.0,0.0,482.0,1028.0,223.0,0.0,9.0,0.0,0.0,336.0,0.0,56.0,1086.0,63.0,0.0,0.0,0.0,0.0,145.0,0.0,92.0,655.0,0.0,0.0,0.0,94.0,133.0,17.0,5.0,283.0,451.0,828.0,342.5,0.0,0.0,0.0,0.0,0.0,0.0,38.0,1676.0,0.0,1286.0,0.0,0.0,16.0,0.0,0.0,174.0,616.0,882.0,99.0,0.0,11.0,878.0,0.0,0.0,53.0,215.0,92.0,0.0,43.0,0.0,5.0,157.0,118.0,0.0,0.0,0.0,0.0,0.0,66.0,11.0,0.0,0.0,3134.0,0.0,29.0,0.0,0.0,603.0,0.0,75.0,203.0,31.0,0.0,97.0,0.0,15.0,0.0,4590.0,0.0,0.0,559.0,0.0,0.0,105.0,161.0,426.0,382.0,0.0,0.0,0.0,295.0,0.0,0.0,0.0,55.0,0.0,633.0,0.0,0.0,0.0,741.0,561.0,467.0,0.0,2197.0,12.0,350.0,190.0,0.0,36.0,808.0,0.0,0.0,254.0,233.0,1641.0,0.0,0.0,2010-01-24,,2010-3,0.47491002736964605,0.47, +66,66,0.37,0.0,0.0,179.0,0.0,35.0,251.0,418.0,208.0,1.0,359.0,3705.0,0.0,23.0,865.0,198.0,42.0,84.0,204.0,3621.0,0.0,57.0,82.0,0.0,53.0,436.0,36.0,2342.0,627.0,36.0,0.0,0.0,0.0,451.0,101.0,646.0,2307.0,0.0,0.0,0.0,0.0,202.0,0.0,124.0,265.0,688.0,0.0,0.0,228.0,228.0,966.0,0.0,240.0,0.0,261.0,105.0,45.0,0.0,0.0,0.0,0.0,0.0,2878.0,0.0,2197.0,297.0,0.0,0.0,0.0,2346.0,0.0,260.0,136.0,0.0,74.0,0.0,5232.0,70.0,0.0,24.0,224.0,218.0,47.0,120.0,0.0,44.0,874.0,0.0,41.0,1.0,0.0,0.0,2408.0,0.0,0.0,296.0,95.0,129.0,761.0,275.0,2520.0,2072.0,0.0,0.0,88.0,0.0,0.0,12.0,0.0,104.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,965.0,4139.0,3480.0,0.0,29.0,634.0,1190.0,0.0,0.0,193.0,140.0,0.0,0.0,599.0,2139.0,1732.0,0.0,155.0,1312.0,63.0,122.0,223.0,2093.0,0.0,3437.0,173.0,4.0,0.0,2872.0,1357.0,254.0,0.0,471.0,323.0,0.0,429.0,0.0,0.0,390.0,0.0,127.0,0.0,54.0,0.0,382.0,1268.0,137.0,0.0,58.0,22.0,0.0,0.0,56.0,0.0,564.0,1301.0,401.0,0.0,6.0,0.0,0.0,425.0,0.0,61.0,1334.0,111.0,0.0,0.0,0.0,0.0,218.0,0.0,134.0,790.0,0.0,0.0,0.0,90.0,153.0,22.0,11.0,366.0,588.0,940.0,366.33333333333326,0.0,0.0,0.0,0.0,0.0,0.0,41.0,2119.0,0.0,1747.0,0.0,0.0,21.0,0.0,0.0,228.0,763.0,1164.0,119.0,0.0,23.0,1118.0,1.0,0.0,61.0,222.0,138.0,0.0,75.0,0.0,8.0,216.0,202.0,0.0,0.0,0.0,0.0,0.0,57.0,2.0,0.0,0.0,4079.0,0.0,66.0,0.0,0.0,709.0,0.0,106.0,240.0,45.0,0.0,136.0,0.0,27.0,0.0,5950.0,0.0,0.0,755.0,0.0,1.0,146.0,208.0,572.0,368.0,0.0,0.0,0.0,458.0,0.0,0.0,0.0,82.0,0.0,790.0,0.0,0.0,0.0,461.0,1019.0,653.0,0.0,2764.0,14.0,443.0,225.0,0.0,41.0,1012.0,2.0,0.0,433.0,293.0,2349.0,0.0,0.0,2010-01-31,,2010-4,-0.08495855468969715,0.328, +67,67,0.25,0.0,0.0,194.0,0.0,58.0,241.0,407.0,274.0,0.0,373.0,4028.0,0.0,39.0,847.0,217.0,40.0,115.0,214.0,3579.0,0.0,67.0,93.0,0.0,29.0,394.0,37.0,2224.0,578.0,25.0,0.0,0.0,0.0,375.0,79.0,589.0,2572.0,0.0,0.0,0.0,0.0,171.0,0.0,139.0,279.0,689.0,0.0,0.0,159.0,246.0,1569.0,0.0,179.0,0.0,272.0,129.0,55.0,0.0,0.0,0.0,0.0,0.0,3135.0,0.0,2249.0,296.0,0.0,0.0,0.0,2424.0,0.0,228.0,110.0,0.0,68.0,0.0,5623.0,45.0,0.0,9.0,230.0,202.0,44.0,202.0,0.0,54.0,903.0,0.0,28.0,2.0,0.0,0.0,2423.0,0.0,0.0,302.0,115.0,244.0,754.0,217.0,2371.0,2168.0,0.0,0.0,73.0,0.0,0.0,15.0,0.0,116.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1060.0,4293.0,3432.0,0.0,30.0,579.0,1094.0,0.0,0.0,158.0,142.0,0.0,0.0,704.0,2537.0,1625.0,0.0,132.0,848.0,99.0,124.0,228.0,2064.0,0.0,3725.0,175.0,6.0,0.0,3068.0,1192.0,273.0,0.0,441.0,312.0,0.0,463.0,0.0,0.0,381.0,0.0,137.0,0.0,68.0,0.0,403.0,1517.0,137.0,0.0,57.0,29.0,0.0,0.0,82.0,0.0,623.0,1387.0,468.0,0.0,5.0,0.0,0.0,508.0,0.0,65.0,1495.0,125.0,0.0,2.0,0.0,0.0,223.0,0.0,99.0,779.0,0.0,0.0,0.0,135.0,167.0,16.0,11.0,418.0,603.0,1110.0,390.16666666666663,0.0,0.0,0.0,0.0,0.0,0.0,43.0,2239.0,0.0,1782.0,0.0,0.0,26.0,0.0,0.0,239.0,787.0,1121.0,103.0,0.0,17.0,1221.0,0.0,0.0,62.0,268.0,120.0,0.0,62.0,0.0,8.0,233.0,168.0,0.0,0.0,0.0,0.0,0.0,98.0,3.0,0.0,0.0,4060.0,0.0,62.0,0.0,0.0,749.0,0.0,110.0,259.0,44.0,0.0,117.0,0.0,21.0,0.0,5727.0,0.0,0.0,729.0,0.0,0.0,135.0,269.0,583.0,455.0,0.0,0.0,0.0,404.0,0.0,0.0,0.0,61.0,0.0,783.0,0.0,0.0,0.0,371.0,1083.0,598.0,0.0,2884.0,30.0,458.0,208.0,0.0,39.0,978.0,1.0,0.0,341.0,292.0,2340.0,0.0,0.0,2010-02-07,,2010-5,1.3059351780369814,1.8780000000000001, +68,68,0.16,0.0,0.0,131.0,0.0,30.0,235.0,372.0,155.0,0.0,338.0,3722.0,0.0,23.0,749.0,176.0,49.0,106.0,174.0,8141.0,0.0,60.0,76.0,0.0,40.0,342.0,23.0,1929.0,498.0,27.0,0.0,0.0,0.0,303.0,88.0,681.0,2154.0,0.0,0.0,0.0,0.0,225.0,0.0,97.0,284.0,616.0,0.0,0.0,124.0,194.0,1013.0,0.0,144.0,0.0,239.0,84.0,27.0,0.0,0.0,0.0,0.0,0.0,2641.0,0.0,2067.0,230.0,0.0,0.0,0.0,2336.0,0.0,142.0,112.0,0.0,98.0,0.0,5522.0,41.0,0.0,12.0,246.0,168.0,32.0,159.0,0.0,78.0,747.0,0.0,32.0,1.0,0.0,0.0,2196.0,0.0,0.0,226.0,83.0,356.0,612.0,140.0,2050.0,2013.0,0.0,0.0,49.0,0.0,0.0,11.0,0.0,80.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,989.0,3639.0,3226.0,0.0,26.0,524.0,1007.0,0.0,0.0,110.0,99.0,0.0,0.0,512.0,2154.0,1375.0,0.0,157.0,791.0,75.0,158.0,238.0,1849.0,0.0,3469.0,178.0,1.0,0.0,2789.0,1234.0,239.0,0.0,392.0,260.0,0.0,429.0,0.0,0.0,293.0,0.0,160.0,0.0,62.0,0.0,338.0,1132.0,110.0,0.0,31.0,22.0,0.0,0.0,75.0,0.0,529.0,1080.0,359.0,0.0,10.0,0.0,0.0,380.0,0.0,51.0,1254.0,82.0,0.0,0.0,0.0,0.0,316.0,0.0,118.0,703.0,0.0,0.0,0.0,95.0,169.0,28.0,15.0,313.0,443.0,734.0,414.0,0.0,0.0,0.0,0.0,0.0,0.0,29.0,1914.0,0.0,1520.0,0.0,0.0,20.0,0.0,0.0,200.0,638.0,966.0,106.0,0.0,15.0,1016.0,380.0,0.0,62.0,216.0,82.0,0.0,57.0,0.0,9.0,177.0,112.0,0.0,0.0,0.0,0.0,2.0,68.0,2.0,0.0,0.0,3551.0,0.0,57.0,0.0,0.0,678.0,0.0,106.0,227.0,40.0,0.0,95.0,0.0,25.0,0.0,5898.0,0.0,0.0,690.0,0.0,0.0,122.0,234.0,491.0,431.0,0.0,0.0,0.0,313.0,0.0,0.0,0.0,75.0,0.0,709.0,0.0,0.0,0.0,295.0,991.0,627.0,0.0,2699.0,8.0,815.0,169.0,0.0,33.0,902.0,0.0,0.0,285.0,282.0,1996.0,0.0,0.0,2010-02-14,,2010-6,-0.20602424717193557,0.22200000000000003, +69,69,0.08,0.0,0.0,144.0,0.0,33.0,251.0,377.0,133.0,1.0,272.0,4493.0,0.0,29.0,729.0,237.0,44.0,103.0,149.0,3736.0,0.0,44.0,93.0,0.0,38.0,351.0,30.0,2189.0,474.0,19.0,0.0,0.0,0.0,357.0,101.0,756.0,2234.0,0.0,0.0,0.0,0.0,210.0,0.0,117.0,312.0,712.0,0.0,0.0,125.0,176.0,1042.0,0.0,171.0,0.0,185.0,62.0,37.0,0.0,0.0,0.0,0.0,0.0,2398.0,0.0,2268.0,246.0,0.0,0.0,0.0,2219.0,0.0,159.0,144.0,1.0,53.0,0.0,5562.0,31.0,0.0,64.0,242.0,172.0,33.0,110.0,0.0,40.0,746.0,0.0,40.0,1.0,0.0,0.0,2247.0,0.0,0.0,222.0,78.0,178.0,672.0,80.0,2155.0,1778.0,0.0,0.0,52.0,0.0,0.0,5.0,0.0,68.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,861.0,4543.0,3474.0,0.0,35.0,649.0,1038.0,0.0,0.0,96.0,98.0,0.0,0.0,519.0,2281.0,1301.0,0.0,156.0,447.0,126.0,149.0,226.0,1901.0,0.0,3556.0,164.0,11.0,0.0,2726.0,1216.0,263.0,0.0,364.0,285.0,0.0,522.0,0.0,0.0,328.0,0.0,137.0,0.0,59.0,0.0,355.0,1130.0,257.0,0.0,49.0,12.0,0.0,0.0,73.0,1.0,568.0,1135.0,318.0,0.0,8.0,0.0,0.0,439.0,0.0,43.0,1155.0,79.0,0.0,0.0,0.0,0.0,150.0,0.0,107.0,828.0,0.0,0.0,0.0,88.0,125.0,33.0,11.0,383.0,479.0,873.0,427.0,0.0,0.0,0.0,0.0,0.0,0.0,44.0,2032.0,0.0,1361.0,0.0,0.0,24.0,0.0,0.0,181.0,670.0,938.0,135.0,0.0,25.0,939.0,216.0,0.0,63.0,263.0,100.0,0.0,60.0,0.0,6.0,187.0,100.0,0.0,0.0,0.0,0.0,0.0,74.0,1.0,0.0,0.0,3530.0,0.0,53.0,0.0,0.0,712.0,0.0,74.0,254.0,32.0,0.0,115.0,0.0,26.0,0.0,5429.0,0.0,0.0,665.0,0.0,0.0,134.0,181.0,413.0,577.0,0.0,0.0,0.0,312.0,0.0,0.0,0.0,89.0,0.0,681.0,0.0,0.0,0.0,479.0,1008.0,686.0,0.0,2852.0,13.0,388.0,189.0,0.0,38.0,908.0,1.0,0.0,232.0,305.0,2010.0,0.0,0.0,2010-02-21,,2010-7,-0.4811948777311521,0.5780000000000001, +70,70,0.11,0.0,0.0,101.0,0.0,40.0,219.0,314.0,112.0,1.0,296.0,4303.0,0.0,21.0,666.0,164.0,17.0,90.0,121.0,3261.0,0.0,38.0,74.0,0.0,41.0,343.0,32.0,1706.0,414.0,47.0,0.0,0.0,0.0,564.0,128.0,613.0,2068.0,0.0,0.0,0.0,0.0,154.0,0.0,125.0,239.0,621.0,0.0,0.0,127.0,141.0,823.0,0.0,143.0,0.0,183.0,67.0,31.0,0.0,0.0,0.0,0.0,0.0,1981.0,0.0,1879.0,253.0,0.0,0.0,0.0,2142.0,0.0,132.0,112.0,0.0,37.0,0.0,4808.0,34.0,0.0,24.0,267.0,173.0,30.0,73.0,0.0,35.0,663.0,0.0,26.0,2.0,0.0,0.0,2025.0,0.0,0.0,223.0,74.0,147.0,680.0,62.0,1796.0,1541.0,0.0,0.0,56.0,0.0,0.0,9.0,0.0,81.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,742.0,3556.0,3476.0,0.0,24.0,597.0,995.0,0.0,0.0,72.0,91.0,0.0,0.0,384.0,1971.0,1344.0,0.0,115.0,319.0,56.0,128.0,190.0,1907.0,0.0,3105.0,133.0,1.0,0.0,2375.0,1092.0,235.0,0.0,346.0,242.0,0.0,284.0,0.0,0.0,310.0,0.0,132.0,0.0,49.0,0.0,285.0,896.0,191.0,0.0,44.0,26.0,0.0,1.0,60.0,0.0,480.0,962.0,317.0,0.0,11.0,0.0,0.0,460.0,0.0,47.0,1104.0,84.0,0.0,0.0,0.0,0.0,117.0,0.0,114.0,665.0,0.0,0.0,0.0,65.0,130.0,20.0,18.0,360.0,364.0,658.0,413.0,0.0,0.0,0.0,0.0,0.0,0.0,52.0,1884.0,0.0,1298.0,0.0,0.0,29.0,0.0,0.0,174.0,613.0,894.0,98.0,0.0,13.0,929.0,192.0,0.0,51.0,203.0,67.0,0.0,56.0,0.0,8.0,167.0,84.0,0.0,0.0,0.0,0.0,0.0,50.0,1.0,0.0,0.0,3054.0,0.0,49.0,0.0,0.0,730.0,0.0,92.0,264.0,35.0,0.0,107.0,0.0,20.0,0.0,4875.0,0.0,0.0,623.0,0.0,0.0,84.0,148.0,375.0,326.0,0.0,0.0,0.0,261.0,0.0,0.0,0.0,79.0,0.0,651.0,0.0,0.0,0.0,275.0,885.0,590.0,0.0,2735.0,16.0,379.0,156.0,0.0,30.0,831.0,0.0,0.0,231.0,242.0,1845.0,0.0,0.0,2010-02-28,,2010-8,0.2658649670433655,0.2820000000000001, +71,71,0.08,0.0,0.0,129.0,0.0,39.0,233.0,365.0,98.0,0.0,318.0,4074.0,0.0,23.0,680.0,197.0,41.0,98.0,157.0,3018.0,0.0,41.0,58.0,0.0,31.0,403.0,33.0,1829.0,421.0,32.0,0.0,0.0,0.0,316.0,91.0,702.0,2169.0,0.0,0.0,0.0,0.0,175.0,0.0,108.0,282.0,620.0,0.0,0.0,121.0,147.0,965.0,0.0,138.0,0.0,211.0,66.0,20.0,0.0,0.0,0.0,0.0,0.0,2073.0,0.0,2014.0,250.0,0.0,0.0,0.0,2092.0,0.0,157.0,107.0,0.0,43.0,0.0,4968.0,45.0,0.0,25.0,213.0,144.0,35.0,81.0,0.0,34.0,727.0,0.0,33.0,1.0,0.0,0.0,2044.0,0.0,0.0,208.0,69.0,197.0,575.0,54.0,2059.0,1554.0,0.0,0.0,37.0,0.0,0.0,13.0,0.0,75.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,757.0,3449.0,3261.0,0.0,25.0,556.0,1022.0,0.0,0.0,46.0,96.0,0.0,0.0,395.0,1798.0,1364.0,0.0,113.0,305.0,56.0,131.0,222.0,1776.0,1.0,3308.0,140.0,5.0,0.0,2537.0,1158.0,221.0,0.0,348.0,254.0,0.0,291.0,0.0,0.0,309.0,0.0,129.0,0.0,35.0,0.0,336.0,949.0,150.0,0.0,47.0,18.0,0.0,0.0,73.0,0.0,496.0,983.0,306.0,0.0,13.0,0.0,0.0,489.0,0.0,57.0,1057.0,78.0,0.0,0.0,0.0,0.0,119.0,0.0,102.0,655.0,0.0,1.0,0.0,69.0,141.0,18.0,11.0,340.0,452.0,672.0,412.0,0.0,0.0,0.0,0.0,0.0,0.0,46.0,1897.0,0.0,1239.0,0.0,0.0,19.0,0.0,0.0,183.0,560.0,892.0,127.0,0.0,15.0,874.0,208.0,0.0,73.0,193.0,54.0,0.0,54.0,0.0,6.0,188.0,75.0,0.0,0.0,0.0,0.0,0.0,61.0,1.0,0.0,0.0,3336.0,0.0,71.0,0.0,0.0,720.0,0.0,95.0,226.0,28.0,0.0,185.0,0.0,19.0,0.0,4802.0,0.0,0.0,653.0,0.0,0.0,97.0,137.0,433.0,356.0,0.0,0.0,0.0,341.0,0.0,0.0,0.0,121.0,0.0,711.0,0.0,0.0,0.0,290.0,972.0,598.0,0.0,2594.0,23.0,386.0,176.0,0.0,41.0,913.0,3.0,0.0,262.0,255.0,2037.0,0.0,0.0,2010-03-07,,2010-9,0.4763149653960346,0.08000000000000002, +72,72,0.07,2.0,0.0,95.0,0.0,44.0,239.0,394.0,116.0,1.0,357.0,3789.0,0.0,18.0,674.0,210.0,31.0,89.0,175.0,2981.0,0.0,40.0,71.0,0.0,44.0,401.0,27.0,1992.0,415.0,34.0,0.0,0.0,0.0,360.0,83.0,644.0,2370.0,0.0,0.0,0.0,0.0,134.0,0.0,103.0,259.0,833.0,0.0,0.0,125.0,187.0,1016.0,0.0,117.0,0.0,272.0,69.0,30.0,0.0,0.0,0.0,0.0,0.0,2122.0,0.0,2012.0,239.0,0.0,0.0,0.0,2265.0,0.0,298.0,112.0,1.0,49.0,0.0,4630.0,56.0,0.0,15.0,190.0,181.0,35.0,103.0,0.0,62.0,808.0,0.0,43.0,2.0,0.0,0.0,2133.0,0.0,0.0,223.0,75.0,161.0,627.0,60.0,1827.0,1548.0,0.0,0.0,49.0,0.0,0.0,13.0,0.0,79.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,771.0,3518.0,3402.0,0.0,37.0,535.0,1157.0,0.0,0.0,64.0,101.0,0.0,0.0,366.0,1784.0,1335.0,0.0,92.0,278.0,49.0,152.0,223.0,1738.0,0.0,3284.0,124.0,3.0,0.0,2625.0,1154.0,256.0,0.0,343.0,232.0,0.0,342.0,0.0,0.0,321.0,0.0,121.0,0.0,42.0,0.0,344.0,1002.0,145.0,0.0,42.0,27.0,0.0,0.0,58.0,1.0,534.0,1139.0,298.0,0.0,6.0,0.0,0.0,523.0,0.0,71.0,1169.0,67.0,0.0,4.0,0.0,0.0,149.0,0.0,103.0,732.0,0.0,0.0,0.0,79.0,111.0,14.0,6.0,386.0,459.0,650.0,355.0,0.0,0.0,0.0,0.0,0.0,0.0,42.0,2022.0,0.0,1331.0,0.0,0.0,25.0,0.0,0.0,187.0,586.0,915.0,105.0,0.0,13.0,983.0,97.0,0.0,64.0,193.0,63.0,0.0,57.0,0.0,6.0,168.0,88.0,0.0,0.0,0.0,0.0,1.0,71.0,4.0,0.0,0.0,3340.0,0.0,33.0,0.0,0.0,742.0,0.0,85.0,224.0,40.0,0.0,791.0,0.0,16.0,0.0,4894.0,0.0,0.0,697.0,0.0,0.0,103.0,149.0,427.0,550.0,0.0,0.0,0.0,368.0,0.0,0.0,0.0,85.0,0.0,636.0,0.0,0.0,0.0,370.0,915.0,574.0,0.0,2635.0,19.0,402.0,189.0,0.0,38.0,907.0,1.0,0.0,257.0,289.0,1976.0,0.0,0.0,2010-03-14,,2010-10,0.3723396259955698,0.066, +73,73,0.05,1.0,0.0,131.0,0.0,42.0,209.0,351.0,79.0,0.0,287.0,3420.0,0.0,11.0,698.0,221.0,34.0,91.0,127.0,2998.0,0.0,21.0,78.0,0.0,48.0,357.0,36.0,1978.0,396.0,32.0,0.0,0.0,0.0,324.0,71.0,739.0,2125.0,0.0,0.0,0.0,0.0,135.0,0.0,93.0,263.0,735.0,0.0,0.0,133.0,178.0,955.0,0.0,132.0,0.0,194.0,104.0,25.0,0.0,0.0,0.0,0.0,0.0,2053.0,0.0,1793.0,190.0,0.0,0.0,0.0,2107.0,0.0,148.0,115.0,1.0,53.0,0.0,4898.0,40.0,0.0,19.0,173.0,151.0,36.0,109.0,0.0,41.0,711.0,0.0,18.0,2.0,0.0,0.0,2088.0,0.0,0.0,191.0,74.0,129.0,657.0,78.0,1838.0,1460.0,0.0,0.0,49.0,0.0,0.0,13.0,0.0,100.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,795.0,3261.0,2939.0,0.0,36.0,520.0,972.0,0.0,0.0,50.0,79.0,0.0,0.0,356.0,1757.0,1325.0,0.0,103.0,286.0,53.0,133.0,185.0,1506.0,0.0,3414.0,183.0,9.0,0.0,2619.0,1001.0,255.0,0.0,389.0,222.0,0.0,289.0,0.0,0.0,286.0,0.0,128.0,0.0,59.0,0.0,282.0,974.0,132.0,0.0,38.0,24.0,0.0,0.0,62.0,0.0,479.0,1004.0,320.0,0.0,8.0,0.0,0.0,408.0,0.0,92.0,1117.0,73.0,0.0,0.0,0.0,0.0,126.0,0.0,112.0,703.0,0.0,0.0,0.0,100.0,129.0,14.0,10.0,347.0,370.0,590.0,372.0,0.0,0.0,0.0,0.0,0.0,0.0,31.0,1981.0,0.0,1223.0,0.0,0.0,17.0,0.0,0.0,159.0,622.0,813.0,103.0,0.0,18.0,892.0,78.0,0.0,55.0,188.0,66.0,0.0,36.0,3.0,10.0,149.0,105.0,0.0,0.0,0.0,0.0,2.0,67.0,3.0,0.0,0.0,3215.0,0.0,54.0,0.0,0.0,784.0,0.0,95.0,192.0,49.0,0.0,185.0,0.0,23.0,0.0,4804.0,0.0,0.0,701.0,0.0,0.0,80.0,156.0,401.0,425.0,0.0,0.0,0.0,345.0,0.0,0.0,0.0,62.0,0.0,641.0,0.0,0.0,0.0,311.0,836.0,591.0,0.0,2437.0,12.0,418.0,159.0,0.0,16.0,861.0,0.0,0.0,235.0,252.0,1848.0,0.0,0.0,2010-03-21,,2010-11,0.7489890665765957,0.046000000000000006, +74,74,0.06,0.0,0.0,90.0,0.0,37.0,168.0,339.0,122.0,0.0,251.0,3045.0,0.0,16.0,494.0,182.0,29.0,85.0,124.0,2784.0,0.0,28.0,76.0,0.0,37.0,329.0,35.0,1570.0,415.0,21.0,0.0,0.0,0.0,275.0,63.0,736.0,1873.0,0.0,0.0,0.0,0.0,329.0,0.0,93.0,251.0,783.0,0.0,0.0,115.0,152.0,883.0,0.0,145.0,0.0,152.0,42.0,21.0,0.0,0.0,0.0,0.0,0.0,1812.0,0.0,1926.0,225.0,0.0,0.0,0.0,2038.0,0.0,139.0,96.0,0.0,32.0,0.0,4421.0,33.0,0.0,21.0,202.0,125.0,37.0,69.0,0.0,46.0,633.0,0.0,22.0,0.0,0.0,0.0,1951.0,0.0,0.0,204.0,73.0,127.0,628.0,69.0,1944.0,1382.0,0.0,0.0,56.0,0.0,0.0,10.0,0.0,96.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,690.0,2842.0,2617.0,0.0,21.0,451.0,989.0,0.0,0.0,63.0,121.0,0.0,0.0,413.0,1500.0,1174.0,0.0,86.0,220.0,38.0,115.0,153.0,1667.0,0.0,3204.0,150.0,3.0,0.0,2347.0,1091.0,239.0,0.0,280.0,244.0,0.0,282.0,0.0,0.0,271.0,0.0,142.0,0.0,35.0,0.0,276.0,840.0,118.0,0.0,36.0,18.0,0.0,0.0,53.0,0.0,462.0,884.0,296.0,0.0,8.0,0.0,0.0,438.0,0.0,66.0,1061.0,54.0,0.0,1.0,0.0,0.0,130.0,0.0,86.0,573.0,0.0,0.0,0.0,81.0,92.0,18.0,12.0,329.0,359.0,547.0,302.0,0.0,0.0,0.0,0.0,2.0,0.0,33.0,1732.0,0.0,1117.0,0.0,0.0,21.0,0.0,0.0,140.0,513.0,805.0,88.0,0.0,15.0,775.0,84.0,0.0,48.0,163.0,81.0,0.0,45.0,0.0,7.0,151.0,83.0,0.0,0.0,0.0,0.0,0.0,55.0,1.0,0.0,0.0,2913.0,0.0,45.0,0.0,0.0,807.0,0.0,81.0,193.0,35.0,0.0,159.0,0.0,10.0,0.0,4482.0,0.0,0.0,519.0,0.0,0.0,75.0,145.0,345.0,375.0,0.0,0.0,0.0,301.0,0.0,0.0,0.0,61.0,0.0,571.0,0.0,0.0,0.0,269.0,853.0,523.0,0.0,2335.0,26.0,404.0,126.0,0.0,20.0,821.0,0.0,0.0,249.0,210.0,1644.0,0.0,0.0,2010-03-28,,2010-12,-0.7706587389034274,3.644, +75,75,0.03,0.0,0.0,86.0,0.0,22.0,165.0,288.0,105.0,0.0,249.0,2613.0,0.0,10.0,473.0,199.0,48.0,72.0,105.0,2646.0,0.0,15.0,95.0,0.0,24.0,301.0,27.0,1488.0,354.0,14.0,0.0,0.0,0.0,223.0,71.0,694.0,1730.0,0.0,0.0,0.0,0.0,248.0,0.0,81.0,233.0,750.0,0.0,0.0,106.0,149.0,1004.0,0.0,98.0,0.0,166.0,47.0,31.0,0.0,0.0,0.0,0.0,0.0,1739.0,0.0,1488.0,190.0,0.0,0.0,0.0,1829.0,0.0,225.0,96.0,0.0,30.0,0.0,4416.0,33.0,0.0,9.0,202.0,114.0,23.0,84.0,0.0,44.0,555.0,0.0,29.0,1.0,0.0,0.0,1933.0,0.0,0.0,163.0,56.0,104.0,561.0,52.0,2131.0,1111.0,0.0,0.0,32.0,0.0,0.0,10.0,0.0,99.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,611.0,2504.0,1984.0,0.0,27.0,373.0,964.0,0.0,0.0,59.0,153.0,0.0,0.0,381.0,1526.0,1113.0,0.0,79.0,247.0,36.0,106.0,150.0,1435.0,0.0,2880.0,153.0,7.0,0.0,2068.0,1013.0,182.0,0.0,290.0,210.0,0.0,233.0,0.0,0.0,247.0,0.0,105.0,0.0,35.0,0.0,250.0,797.0,155.0,0.0,29.0,14.0,0.0,1.0,26.0,0.0,391.0,774.0,218.0,0.0,12.0,0.0,0.0,302.0,0.0,75.0,942.0,70.0,0.0,1.0,0.0,0.0,129.0,0.0,76.0,530.0,0.0,0.0,0.0,65.0,98.0,31.0,7.0,270.0,401.0,591.0,293.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,1500.0,0.0,998.0,0.0,0.0,18.0,0.0,0.0,121.0,423.0,731.0,117.0,0.0,18.0,735.0,104.0,0.0,42.0,141.0,59.0,0.0,48.0,0.0,4.0,157.0,100.0,0.0,0.0,0.0,0.0,0.0,61.0,1.0,0.0,0.0,2486.0,0.0,59.0,0.0,0.0,974.0,0.0,66.0,154.0,37.0,0.0,104.0,0.0,9.0,0.0,3883.0,0.0,0.0,460.0,0.0,0.0,59.0,102.0,356.0,331.0,0.0,0.0,0.0,274.0,0.0,0.0,0.0,46.0,0.0,547.0,0.0,0.0,0.0,308.0,849.0,437.0,0.0,1771.0,20.0,388.0,157.0,0.0,18.0,799.0,1.0,0.0,300.0,222.0,1416.0,0.0,0.0,2010-04-04,,2010-13,0.6063108837230144,0.42599999999999993, +76,76,0.0,1.0,0.0,103.0,0.0,22.0,205.0,238.0,84.0,0.0,271.0,2477.0,0.0,22.0,566.0,180.0,34.0,69.0,133.0,2893.0,0.0,28.0,84.0,0.0,30.0,267.0,25.0,1670.0,372.0,23.0,0.0,0.0,0.0,234.0,65.0,784.0,1767.0,0.0,0.0,0.0,0.0,159.0,0.0,92.0,212.0,817.0,0.0,0.0,127.0,160.0,953.0,0.0,94.0,0.0,152.0,49.0,28.0,0.0,0.0,0.0,0.0,0.0,1743.0,0.0,1730.0,223.0,0.0,0.0,0.0,1850.0,0.0,211.0,129.0,1.0,28.0,0.0,4657.0,40.0,0.0,6.0,213.0,109.0,29.0,116.0,0.0,43.0,573.0,0.0,24.0,0.0,0.0,0.0,1807.0,0.0,0.0,187.0,86.0,90.0,666.0,85.0,1968.0,1276.0,0.0,0.0,54.0,0.0,0.0,7.0,0.0,71.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,661.0,2737.0,2099.0,0.0,20.0,447.0,932.0,0.0,0.0,62.0,172.0,0.0,0.0,435.0,1535.0,1142.0,0.0,93.0,206.0,51.0,127.0,169.0,1577.0,0.0,3053.0,167.0,4.0,0.0,2166.0,1047.0,238.0,0.0,253.0,208.0,0.0,301.0,0.0,0.0,262.0,0.0,128.0,0.0,40.0,0.0,273.0,852.0,140.0,0.0,32.0,8.0,0.0,0.0,41.0,0.0,410.0,921.0,254.0,0.0,11.0,0.0,0.0,348.0,0.0,38.0,1051.0,69.0,0.0,0.0,0.0,0.0,119.0,0.0,70.0,595.0,0.0,0.0,0.0,47.0,72.0,21.0,7.0,338.0,431.0,734.0,291.0,0.0,0.0,0.0,0.0,0.0,0.0,26.0,1620.0,0.0,1100.0,0.0,0.0,17.0,0.0,0.0,170.0,494.0,758.0,85.0,0.0,9.0,840.0,80.0,0.0,53.0,175.0,72.0,0.0,37.0,0.0,9.0,172.0,111.0,0.0,0.0,0.0,0.0,0.0,65.0,2.0,0.0,0.0,2962.0,0.0,27.0,0.0,0.0,1320.0,0.0,73.0,181.0,39.0,0.0,100.0,0.0,12.0,0.0,4273.0,0.0,0.0,564.0,0.0,0.0,69.0,142.0,344.0,357.0,0.0,0.0,0.0,270.0,0.0,0.0,0.0,57.0,0.0,610.0,0.0,0.0,0.0,307.0,814.0,494.0,0.0,1838.0,16.0,422.0,161.0,0.0,21.0,726.0,2.0,0.0,451.0,220.0,1693.0,0.0,0.0,2010-04-11,,2010-14,0.2317947131145659,0.06999999999999999, +77,77,0.01,0.0,0.0,93.0,0.0,26.0,165.0,320.0,123.0,0.0,339.0,2683.0,0.0,15.0,583.0,166.0,40.0,89.0,137.0,2623.0,0.0,25.0,75.0,0.0,60.0,310.0,30.0,1813.0,418.0,23.0,0.0,0.0,0.0,261.0,51.0,745.0,1992.0,0.0,0.0,0.0,0.0,223.0,0.0,82.0,284.0,888.0,0.0,0.0,132.0,122.0,954.0,0.0,74.0,0.0,190.0,34.0,27.0,0.0,0.0,0.0,0.0,0.0,2002.0,0.0,1760.0,220.0,0.0,0.0,0.0,1962.0,0.0,148.0,114.0,1.0,38.0,0.0,4484.0,40.0,0.0,12.0,159.0,139.0,44.0,96.0,0.0,156.0,714.0,0.0,23.0,0.0,0.0,0.0,2144.0,0.0,0.0,211.0,97.0,152.0,616.0,77.0,2090.0,1444.0,0.0,0.0,30.0,0.0,0.0,7.0,0.0,76.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,673.0,3052.0,2982.0,0.0,17.0,496.0,988.0,0.0,0.0,63.0,77.0,0.0,0.0,287.0,1691.0,1272.0,0.0,79.0,179.0,43.0,125.0,187.0,1593.0,0.0,3220.0,124.0,5.0,0.0,2301.0,1108.0,211.0,0.0,285.0,265.0,0.0,282.0,0.0,0.0,294.0,0.0,119.0,0.0,50.0,0.0,365.0,1072.0,90.0,0.0,38.0,15.0,0.0,0.0,55.0,0.0,441.0,1096.0,327.0,0.0,9.0,0.0,0.0,389.0,0.0,67.0,1089.0,73.0,0.0,2.0,0.0,0.0,144.0,0.0,79.0,639.0,0.0,0.0,0.0,70.0,113.0,30.0,10.0,404.0,440.0,708.0,337.0,0.0,0.0,0.0,0.0,0.0,0.0,39.0,1827.0,0.0,3483.0,0.0,0.0,27.0,0.0,0.0,178.0,519.0,813.0,84.0,0.0,7.0,894.0,79.0,0.0,52.0,148.0,82.0,0.0,49.0,0.0,4.0,132.0,67.0,0.0,0.0,0.0,0.0,0.0,58.0,0.0,0.0,0.0,3292.0,0.0,33.0,0.0,0.0,1070.0,0.0,87.0,179.0,61.0,0.0,105.0,0.0,21.0,0.0,4730.0,0.0,0.0,665.0,0.0,0.0,59.0,155.0,364.0,370.0,0.0,0.0,0.0,308.0,0.0,0.0,0.0,68.0,0.0,613.0,0.0,0.0,0.0,333.0,874.0,543.0,0.0,2223.0,15.0,454.0,199.0,0.0,20.0,860.0,2.0,0.0,194.0,199.0,1742.0,0.0,0.0,2010-04-18,,2010-15,-0.3289329793319591,0.37000000000000005, +78,78,0.0,98.0,0.0,124.0,0.0,50.0,330.0,449.0,122.0,0.0,343.0,5777.0,0.0,31.0,858.0,279.0,45.0,89.0,241.0,3755.0,0.0,43.0,171.0,0.0,33.0,603.0,44.0,2266.0,772.0,34.0,0.0,0.0,0.0,517.0,103.0,1013.0,2755.0,0.0,0.0,0.0,0.0,470.0,0.0,106.0,364.0,890.0,0.0,0.0,179.0,207.0,1283.0,0.0,93.0,1.0,217.0,119.0,25.0,0.0,0.0,0.0,0.0,0.0,2610.0,0.0,2617.0,349.0,0.0,0.0,0.0,3141.0,0.0,221.0,158.0,0.0,56.0,0.0,9903.0,83.0,1.0,12.0,199.0,182.0,40.0,163.0,0.0,367.0,1113.0,0.0,23.0,0.0,0.0,8.0,3809.0,0.0,0.0,321.0,84.0,192.0,902.0,116.0,3882.0,2312.0,59.0,0.0,49.0,0.0,0.0,3.0,0.0,118.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,915.0,4225.0,3238.0,0.0,30.0,664.0,1532.0,0.0,0.0,50.0,122.0,0.0,0.0,520.0,2300.0,1551.0,0.0,156.0,250.0,63.0,158.0,228.0,2288.0,0.0,4609.0,180.0,1.0,0.0,3321.0,1484.0,255.0,0.0,476.0,285.0,0.0,390.0,0.0,0.0,409.0,0.0,116.0,0.0,50.0,0.0,422.0,1492.0,103.0,0.0,52.0,22.0,0.0,0.0,56.0,0.0,678.0,1397.0,376.0,0.0,17.0,0.0,0.0,517.0,0.0,86.0,1373.0,90.0,0.0,0.0,0.0,0.0,229.0,0.0,132.0,921.0,0.0,0.0,0.0,70.0,119.0,28.0,15.0,361.0,643.0,1167.0,719.0,0.0,0.0,0.0,0.0,0.0,0.0,36.0,2745.0,0.0,1507.0,0.0,0.0,24.0,0.0,0.0,319.0,681.0,1176.0,176.0,0.0,23.0,1326.0,101.0,0.0,60.0,300.0,106.0,0.0,56.0,0.0,6.0,217.0,109.0,0.0,0.0,0.0,0.0,0.0,101.0,1.0,0.0,0.0,4012.0,0.0,60.0,0.0,0.0,1043.0,0.0,101.0,302.0,40.0,0.0,110.0,0.0,21.0,0.0,7128.0,0.0,0.0,722.0,0.0,0.0,122.0,188.0,427.0,537.0,0.0,0.0,0.0,510.0,0.0,0.0,0.0,64.0,0.0,986.0,0.0,0.0,0.0,154.0,1300.0,681.0,0.0,3073.0,17.0,481.0,289.0,27.0,39.0,1722.0,0.0,0.0,302.0,418.0,2467.0,0.0,0.0,2010-10-24,,2010-42,-0.8561864383266649,0.020000000000000004, +79,79,0.01,112.0,0.0,157.0,0.0,33.0,298.0,4691.0,134.0,0.0,360.0,5367.0,0.0,23.0,842.0,301.0,39.0,99.0,220.0,3747.0,0.0,34.0,134.0,0.0,42.0,580.0,47.0,2273.0,701.0,26.0,0.0,0.0,0.0,474.0,94.0,998.0,2744.0,0.0,257.0,0.0,0.0,493.0,0.0,121.0,295.0,869.0,0.0,0.0,181.0,205.0,1276.0,0.0,99.0,0.0,504.0,109.0,30.0,0.0,0.0,0.0,0.0,0.0,2599.0,0.0,2583.0,326.0,0.0,0.0,0.0,2906.0,0.0,237.0,150.0,0.0,79.0,0.0,7184.0,71.0,0.0,20.0,198.0,172.0,31.0,144.0,0.0,363.0,1277.0,0.0,24.0,1.0,0.0,8.0,3734.0,0.0,0.0,264.0,85.0,186.0,860.0,150.0,3758.0,2114.0,63.0,0.0,47.0,0.0,0.0,25.0,0.0,110.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,945.0,4669.0,3752.0,0.0,25.0,656.0,1595.0,0.0,0.0,74.0,133.0,0.0,0.0,790.0,2486.0,1668.0,0.0,150.0,232.0,76.0,141.0,255.0,2486.0,0.0,4602.0,210.0,6.0,0.0,3279.0,1464.0,267.0,0.0,418.0,320.0,0.0,409.0,0.0,0.0,383.0,0.0,148.0,0.0,46.0,0.0,467.0,1572.0,115.0,0.0,68.0,16.0,0.0,0.0,73.0,0.0,599.0,1544.0,373.0,0.0,17.0,0.0,0.0,500.0,0.0,68.0,1398.0,96.0,0.0,0.0,0.0,0.0,245.0,0.0,117.0,979.0,0.0,0.0,0.0,78.0,151.0,21.0,12.0,431.0,601.0,1427.0,715.0,0.0,0.0,0.0,0.0,1.0,0.0,22.0,2721.0,0.0,1412.0,0.0,0.0,25.0,0.0,0.0,377.0,659.0,1080.0,164.0,0.0,13.0,1284.0,86.0,0.0,55.0,294.0,110.0,0.0,57.0,0.0,10.0,240.0,129.0,0.0,0.0,0.0,0.0,0.0,75.0,0.0,0.0,0.0,4216.0,0.0,63.0,0.0,0.0,1025.0,0.0,100.0,297.0,60.0,0.0,102.0,0.0,20.0,0.0,7267.0,0.0,0.0,777.0,0.0,0.0,134.0,190.0,482.0,535.0,0.0,0.0,0.0,433.0,0.0,0.0,0.0,80.0,0.0,789.0,0.0,0.0,0.0,165.0,1216.0,650.0,0.0,3338.0,22.0,468.0,265.0,9.0,17.0,1613.0,2.0,0.0,344.0,340.0,2555.0,0.0,0.0,2010-10-31,,2010-43,0.001489107971003989,0.010000000000000002, +80,80,0.0,75.0,0.0,120.0,0.0,44.0,289.0,608.0,156.0,0.0,332.0,5416.0,0.0,32.0,781.0,352.0,36.0,116.0,203.0,4196.0,0.0,36.0,134.0,0.0,44.0,574.0,48.0,2365.0,836.0,29.0,0.0,0.0,0.0,501.0,85.0,1350.0,2841.0,0.0,199.0,0.0,0.0,308.0,0.0,140.0,318.0,908.0,0.0,0.0,169.0,234.0,1389.0,0.0,94.0,0.0,232.0,141.0,35.0,0.0,0.0,0.0,0.0,0.0,2986.0,0.0,2481.0,318.0,0.0,0.0,0.0,3051.0,0.0,216.0,141.0,1.0,73.0,0.0,8508.0,80.0,2.0,17.0,238.0,168.0,37.0,209.0,0.0,404.0,1346.0,0.0,32.0,0.0,0.0,5.0,4065.0,0.0,1.0,271.0,94.0,265.0,830.0,119.0,3783.0,2542.0,50.0,0.0,55.0,0.0,0.0,12.0,0.0,105.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1147.0,4786.0,3772.0,0.0,29.0,593.0,1572.0,0.0,0.0,72.0,146.0,0.0,0.0,546.0,2505.0,1684.0,0.0,146.0,242.0,62.0,136.0,246.0,2378.0,0.0,4771.0,225.0,5.0,0.0,3334.0,1507.0,274.0,0.0,519.0,343.0,0.0,399.0,0.0,0.0,387.0,0.0,152.0,0.0,61.0,0.0,501.0,1636.0,121.0,0.0,72.0,25.0,0.0,0.0,65.0,0.0,623.0,1429.0,410.0,0.0,18.0,0.0,0.0,563.0,0.0,70.0,1477.0,102.0,0.0,0.0,0.0,0.0,274.0,0.0,120.0,920.0,0.0,0.0,0.0,132.0,131.0,26.0,10.0,389.0,636.0,1159.0,926.0,0.0,0.0,0.0,0.0,0.0,0.0,33.0,2718.0,0.0,1497.0,0.0,0.0,32.0,0.0,0.0,338.0,775.0,1279.0,199.0,0.0,22.0,1366.0,70.0,0.0,63.0,420.0,89.0,0.0,79.0,0.0,9.0,252.0,119.0,0.0,0.0,0.0,0.0,0.0,97.0,0.0,0.0,0.0,4769.0,0.0,60.0,0.0,0.0,1154.0,0.0,110.0,340.0,70.0,0.0,127.0,0.0,25.0,0.0,7481.0,0.0,0.0,814.0,0.0,0.0,141.0,219.0,404.0,576.0,0.0,0.0,0.0,448.0,0.0,0.0,0.0,103.0,0.0,806.0,0.0,0.0,0.0,167.0,1313.0,736.0,0.0,3546.0,10.0,490.0,296.0,16.0,21.0,1724.0,0.0,0.0,353.0,361.0,2659.0,0.0,0.0,2010-11-07,,2010-44,0.43031892312511566,0.020000000000000004, +81,81,0.0,74.0,0.0,98.0,0.0,39.0,311.0,595.0,176.0,0.0,378.0,5379.0,0.0,31.0,797.0,339.0,35.0,121.0,295.0,4185.0,0.0,44.0,123.0,0.0,32.0,623.0,42.0,2373.0,795.0,26.0,0.0,0.0,0.0,498.0,101.0,1669.0,3005.0,0.0,136.0,0.0,0.0,457.0,0.0,144.0,362.0,933.0,0.0,0.0,189.0,280.0,1268.0,0.0,105.0,0.0,272.0,170.0,57.0,0.0,0.0,0.0,0.0,0.0,2927.0,0.0,2860.0,334.0,0.0,0.0,0.0,3213.0,0.0,211.0,152.0,0.0,95.0,0.0,7340.0,71.0,0.0,21.0,235.0,203.0,36.0,143.0,0.0,429.0,1332.0,0.0,33.0,0.0,0.0,9.0,4038.0,0.0,0.0,305.0,79.0,243.0,874.0,107.0,3807.0,2662.0,55.0,0.0,48.0,0.0,0.0,9.0,0.0,109.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1139.0,4673.0,4167.0,0.0,23.0,632.0,1626.0,0.0,0.0,77.0,149.0,0.0,0.0,551.0,2608.0,1663.0,0.0,125.0,223.0,72.0,148.0,245.0,2351.0,0.0,5012.0,222.0,3.0,0.0,3457.0,1290.0,232.0,0.0,459.0,292.0,0.0,409.0,0.0,0.0,407.0,0.0,137.0,0.0,64.0,0.0,497.0,1620.0,140.0,0.0,73.0,22.0,0.0,0.0,284.0,0.0,628.0,1546.0,447.0,0.0,10.0,0.0,0.0,493.0,0.0,56.0,1503.0,124.0,0.0,3.0,0.0,0.0,300.0,0.0,216.0,916.0,0.0,0.0,0.0,142.0,122.0,28.0,13.0,379.0,627.0,1098.0,855.0,0.0,0.0,0.0,0.0,0.0,0.0,43.0,2946.0,0.0,1539.0,0.0,0.0,35.0,0.0,0.0,377.0,754.0,1229.0,138.0,0.0,10.0,1496.0,65.0,0.0,47.0,325.0,76.0,0.0,54.0,0.0,5.0,192.0,119.0,0.0,0.0,0.0,0.0,1.0,94.0,1.0,0.0,0.0,4769.0,0.0,68.0,0.0,0.0,1077.0,0.0,113.0,422.0,69.0,0.0,129.0,0.0,14.0,0.0,7421.0,0.0,0.0,859.0,0.0,0.0,121.0,221.0,456.0,572.0,0.0,0.0,0.0,466.0,0.0,0.0,0.0,96.0,0.0,755.0,0.0,0.0,0.0,159.0,1270.0,787.0,0.0,3457.0,30.0,525.0,296.0,14.0,19.0,1713.0,0.0,0.0,319.0,420.0,2794.0,0.0,0.0,2010-11-14,,2010-45,-0.12535219265517838,0.8160000000000001, +82,82,0.0,79.0,0.0,98.0,0.0,25.0,264.0,514.0,148.0,0.0,362.0,5253.0,0.0,30.0,835.0,347.0,35.0,118.0,335.0,3978.0,0.0,43.0,114.0,0.0,52.0,646.0,49.0,2298.0,827.0,24.0,0.0,0.0,0.0,563.0,86.0,1509.0,2829.0,0.0,136.0,0.0,0.0,595.0,0.0,139.0,337.0,870.0,0.0,0.0,148.0,222.0,1182.0,0.0,131.0,0.0,263.0,105.0,29.0,0.0,0.0,0.0,0.0,0.0,2806.0,0.0,2649.0,306.0,0.0,0.0,0.0,3194.0,0.0,195.0,154.0,0.0,84.0,0.0,7143.0,84.0,0.0,12.0,265.0,186.0,32.0,112.0,0.0,381.0,1160.0,0.0,19.0,1.0,0.0,11.0,3954.0,0.0,0.0,290.0,103.0,239.0,786.0,115.0,4473.0,2430.0,62.0,0.0,52.0,0.0,0.0,9.0,0.0,117.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,963.0,4591.0,3968.0,0.0,29.0,624.0,1548.0,0.0,0.0,77.0,90.0,0.0,0.0,607.0,2289.0,1746.0,0.0,135.0,221.0,71.0,126.0,243.0,2263.0,0.0,5260.0,206.0,5.0,0.0,3203.0,1271.0,266.0,0.0,425.0,245.0,0.0,446.0,0.0,0.0,355.0,0.0,108.0,0.0,74.0,0.0,460.0,1655.0,83.0,0.0,62.0,15.0,0.0,0.0,98.0,0.0,577.0,1322.0,454.0,0.0,7.0,0.0,0.0,518.0,1.0,91.0,1420.0,110.0,0.0,0.0,0.0,0.0,276.0,0.0,135.0,962.0,0.0,0.0,0.0,161.0,153.0,20.0,9.0,327.0,686.0,1090.0,859.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,2747.0,0.0,1511.0,0.0,0.0,41.0,0.0,0.0,378.0,729.0,1274.0,148.0,0.0,13.0,1502.0,60.0,0.0,54.0,274.0,98.0,0.0,37.0,0.0,6.0,196.0,148.0,0.0,0.0,0.0,0.0,0.0,88.0,1.0,0.0,0.0,4453.0,0.0,72.0,0.0,0.0,912.0,0.0,114.0,320.0,59.0,0.0,104.0,0.0,24.0,0.0,7307.0,0.0,0.0,764.0,0.0,0.0,109.0,195.0,487.0,684.0,0.0,0.0,0.0,452.0,0.0,0.0,0.0,72.0,0.0,748.0,0.0,0.0,0.0,157.0,1227.0,702.0,0.0,3704.0,13.0,469.0,270.0,11.0,22.0,1683.0,0.0,0.0,330.0,349.0,2476.0,0.0,0.0,2010-11-21,,2010-46,-0.7649988490205963,0.008, +83,83,0.02,62.0,0.0,105.0,0.0,28.0,309.0,545.0,150.0,0.0,431.0,5511.0,0.0,25.0,884.0,330.0,44.0,108.0,200.0,3899.0,0.0,56.0,135.0,0.0,54.0,580.0,60.0,2286.0,786.0,25.0,0.0,0.0,0.0,606.0,98.0,1561.0,2602.0,0.0,181.0,0.0,0.0,354.0,0.0,105.0,309.0,898.0,0.0,0.0,176.0,186.0,1179.0,0.0,134.0,0.0,246.0,117.0,25.0,0.0,0.0,0.0,0.0,0.0,3042.0,0.0,2686.0,356.0,0.0,0.0,0.0,3041.0,0.0,192.0,153.0,0.0,68.0,0.0,6451.0,85.0,1.0,12.0,277.0,199.0,35.0,131.0,0.0,412.0,1272.0,0.0,24.0,0.0,0.0,5.0,4018.0,0.0,0.0,300.0,98.0,226.0,773.0,135.0,5521.0,2732.0,76.0,0.0,55.0,0.0,0.0,9.0,0.0,117.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1031.0,4799.0,4116.0,0.0,21.0,686.0,1624.0,0.0,0.0,77.0,162.0,0.0,0.0,563.0,2314.0,1654.0,0.0,180.0,226.0,41.0,163.0,328.0,2292.0,0.0,5752.0,241.0,1.0,0.0,3015.0,1477.0,266.0,0.0,451.0,347.0,0.0,452.0,0.0,0.0,428.0,0.0,119.0,0.0,70.0,0.0,486.0,1560.0,103.0,0.0,64.0,13.0,0.0,0.0,73.0,0.0,679.0,1571.0,395.0,0.0,11.0,0.0,0.0,568.0,0.0,54.0,1332.0,120.0,0.0,1.0,0.0,0.0,279.0,0.0,122.0,929.0,0.0,0.0,0.0,156.0,161.0,19.0,10.0,388.0,611.0,1181.0,883.0,0.0,0.0,0.0,0.0,1.0,0.0,46.0,2815.0,0.0,1523.0,0.0,0.0,40.0,0.0,0.0,338.0,733.0,1085.0,135.0,0.0,21.0,1509.0,60.0,0.0,71.0,266.0,108.0,0.0,65.0,0.0,5.0,235.0,145.0,0.0,0.0,0.0,0.0,1.0,76.0,2.0,0.0,0.0,4398.0,0.0,69.0,0.0,0.0,865.0,0.0,85.0,339.0,53.0,0.0,100.0,0.0,37.0,0.0,7060.0,0.0,0.0,764.0,0.0,0.0,101.0,236.0,460.0,596.0,0.0,0.0,0.0,412.0,0.0,0.0,0.0,119.0,0.0,755.0,0.0,0.0,0.0,161.0,1263.0,660.0,0.0,3766.0,31.0,443.0,306.0,14.0,17.0,1661.0,2.0,0.0,347.0,355.0,2546.0,0.0,0.0,2010-11-28,,2010-47,0.8632069563530695,0.022000000000000006, +84,84,0.01,66.0,0.0,83.0,0.0,49.0,302.0,450.0,103.0,0.0,538.0,5234.0,0.0,19.0,736.0,276.0,17.0,105.0,181.0,3944.0,0.0,40.0,104.0,0.0,62.0,478.0,56.0,1746.0,640.0,34.0,0.0,0.0,0.0,447.0,82.0,1112.0,2328.0,0.0,137.0,0.0,0.0,231.0,0.0,96.0,287.0,767.0,0.0,0.0,181.0,172.0,927.0,0.0,122.0,0.0,253.0,149.0,28.0,0.0,0.0,0.0,0.0,0.0,2426.0,0.0,2239.0,243.0,0.0,0.0,0.0,2570.0,0.0,159.0,178.0,0.0,64.0,0.0,5992.0,78.0,1.0,18.0,291.0,156.0,31.0,85.0,0.0,460.0,1106.0,0.0,24.0,1.0,0.0,8.0,3254.0,0.0,0.0,301.0,81.0,207.0,970.0,112.0,3900.0,2180.0,55.0,0.0,54.0,0.0,0.0,10.0,0.0,114.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,833.0,4038.0,3702.0,0.0,30.0,612.0,1291.0,0.0,0.0,77.0,111.0,0.0,0.0,410.0,2104.0,1358.0,0.0,165.0,264.0,46.0,125.0,211.0,2003.0,0.0,5037.0,193.0,5.0,0.0,2697.0,1210.0,296.0,0.0,389.0,212.0,0.0,285.0,0.0,0.0,347.0,0.0,106.0,0.0,56.0,0.0,421.0,1288.0,110.0,0.0,60.0,25.0,0.0,0.0,56.0,1.0,606.0,1203.0,482.0,0.0,8.0,0.0,0.0,547.0,0.0,61.0,1164.0,75.0,0.0,0.0,0.0,0.0,269.0,0.0,119.0,775.0,0.0,0.0,0.0,112.0,117.0,25.0,9.0,287.0,580.0,909.0,762.0,0.0,0.0,0.0,0.0,0.0,0.0,58.0,2587.0,0.0,1282.0,0.0,0.0,69.0,0.0,0.0,295.0,682.0,932.0,174.0,0.0,17.0,1235.0,56.0,0.0,65.0,275.0,87.0,0.0,42.0,0.0,13.0,175.0,97.0,0.0,0.0,0.0,0.0,0.0,63.0,1.0,0.0,0.0,3623.0,0.0,68.0,0.0,0.0,676.0,0.0,77.0,304.0,65.0,0.0,106.0,0.0,28.0,0.0,5687.0,0.0,0.0,717.0,0.0,0.0,101.0,183.0,463.0,345.0,0.0,0.0,0.0,383.0,0.0,0.0,0.0,109.0,0.0,622.0,0.0,0.0,0.0,127.0,1151.0,591.0,0.0,3012.0,24.0,329.0,200.0,10.0,22.0,1458.0,2.0,0.0,329.0,327.0,2206.0,0.0,0.0,2010-12-05,,2010-48,-0.5556115446517307,0.010000000000000002, +85,85,0.03,54.0,0.0,103.0,0.0,35.0,275.0,531.0,126.0,0.0,415.0,6360.0,0.0,18.0,741.0,361.0,50.0,103.0,205.0,3832.0,0.0,69.0,167.0,0.0,43.0,541.0,34.0,2204.0,736.0,28.0,0.0,0.0,0.0,551.0,106.0,1349.0,2773.0,0.0,121.0,0.0,0.0,207.0,0.0,117.0,284.0,737.0,0.0,0.0,179.0,219.0,1108.0,0.0,134.0,0.0,280.0,138.0,31.0,0.0,0.0,0.0,0.0,0.0,2852.0,0.0,2576.0,247.0,0.0,0.0,0.0,2963.0,0.0,194.0,193.0,0.0,77.0,0.0,6809.0,77.0,0.0,20.0,346.0,167.0,24.0,143.0,0.0,383.0,1146.0,0.0,31.0,1.0,0.0,10.0,3662.0,0.0,0.0,314.0,145.0,206.0,840.0,99.0,3484.0,2541.0,56.0,0.0,50.0,0.0,0.0,5.0,0.0,103.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,980.0,4485.0,3921.0,0.0,21.0,592.0,1570.0,0.0,0.0,71.0,118.0,0.0,0.0,641.0,2388.0,1667.0,0.0,166.0,228.0,57.0,152.0,235.0,2306.0,0.0,6329.0,262.0,4.0,0.0,3188.0,1287.0,281.0,0.0,492.0,283.0,0.0,428.0,0.0,0.0,662.0,0.0,102.0,0.0,42.0,0.0,448.0,1579.0,137.0,0.0,69.0,18.0,0.0,0.0,85.0,0.0,611.0,1525.0,421.0,0.0,13.0,0.0,0.0,653.0,0.0,64.0,1414.0,91.0,0.0,0.0,0.0,0.0,334.0,0.0,97.0,794.0,0.0,1.0,0.0,177.0,134.0,29.0,11.0,375.0,705.0,1045.0,850.0,0.0,0.0,0.0,0.0,0.0,0.0,56.0,2775.0,0.0,1478.0,0.0,0.0,40.0,0.0,0.0,313.0,728.0,999.0,169.0,0.0,21.0,1458.0,65.0,0.0,73.0,241.0,98.0,0.0,54.0,0.0,9.0,229.0,118.0,0.0,0.0,0.0,0.0,0.0,67.0,0.0,0.0,0.0,4794.0,0.0,54.0,0.0,0.0,803.0,0.0,95.0,357.0,55.0,0.0,110.0,0.0,25.0,0.0,6775.0,0.0,0.0,782.0,0.0,1.0,84.0,196.0,531.0,377.0,0.0,0.0,0.0,451.0,0.0,0.0,0.0,99.0,0.0,709.0,0.0,0.0,0.0,169.0,1454.0,669.0,0.0,3831.0,18.0,446.0,280.0,6.0,23.0,1661.0,0.0,0.0,264.0,334.0,2478.0,0.0,0.0,2010-12-12,,2010-49,-0.5366431990140832,0.012, +86,86,0.1,61.0,0.0,117.0,0.0,42.0,306.0,528.0,143.0,2.0,481.0,6790.0,0.0,32.0,738.0,331.0,25.0,91.0,149.0,3743.0,0.0,44.0,146.0,0.0,48.0,549.0,59.0,2105.0,687.0,20.0,0.0,0.0,0.0,439.0,82.0,1270.0,2250.0,0.0,118.0,0.0,0.0,200.0,0.0,98.0,284.0,819.0,0.0,0.0,172.0,217.0,1120.0,0.0,114.0,0.0,264.0,111.0,29.0,0.0,0.0,0.0,0.0,0.0,2701.0,0.0,2355.0,253.0,0.0,0.0,0.0,2848.0,0.0,211.0,185.0,0.0,75.0,0.0,6497.0,88.0,1.0,17.0,334.0,191.0,35.0,101.0,0.0,343.0,1128.0,0.0,32.0,0.0,0.0,6.0,3772.0,0.0,0.0,299.0,113.0,265.0,682.0,94.0,3284.0,2209.0,66.0,0.0,58.0,0.0,0.0,6.0,0.0,106.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,939.0,4291.0,3663.0,0.0,25.0,570.0,1561.0,0.0,0.0,85.0,100.0,0.0,0.0,556.0,2202.0,1616.0,0.0,173.0,217.0,72.0,132.0,255.0,2233.0,0.0,6566.0,286.0,5.0,0.0,3141.0,1476.0,256.0,0.0,418.0,233.0,0.0,398.0,0.0,0.0,357.0,0.0,136.0,0.0,46.0,0.0,466.0,1427.0,136.0,0.0,57.0,27.0,0.0,0.0,79.0,0.0,575.0,1426.0,429.0,0.0,6.0,0.0,0.0,503.0,0.0,54.0,1325.0,71.0,0.0,0.0,0.0,0.0,311.0,0.0,133.0,716.0,0.0,0.0,0.0,221.0,151.0,21.0,13.0,265.0,679.0,1011.0,836.0,0.0,0.0,0.0,0.0,0.0,0.0,53.0,2797.0,0.0,1440.0,0.0,0.0,34.0,0.0,0.0,305.0,607.0,1012.0,155.0,0.0,22.0,1437.0,80.0,0.0,62.0,199.0,113.0,0.0,55.0,0.0,8.0,199.0,140.0,0.0,0.0,0.0,0.0,1.0,67.0,2.0,0.0,0.0,4009.0,0.0,55.0,0.0,0.0,705.0,0.0,85.0,387.0,44.0,0.0,136.0,0.0,16.0,0.0,6462.0,0.0,0.0,772.0,0.0,0.0,81.0,184.0,532.0,419.0,0.0,0.0,0.0,389.0,0.0,0.0,0.0,112.0,0.0,732.0,0.0,0.0,0.0,186.0,1346.0,757.0,0.0,3895.0,30.0,423.0,347.0,13.0,28.0,1739.0,0.0,0.0,290.0,319.0,2358.0,0.0,0.0,2010-12-19,,2010-50,0.7259967556926696,0.1, +87,87,0.13,47.0,0.0,54.0,0.0,20.0,174.0,336.0,63.0,7.0,320.0,6056.0,0.0,26.0,460.0,273.0,18.0,44.0,126.0,2925.0,0.0,33.0,110.0,0.0,27.0,401.0,30.0,1233.0,483.0,16.0,0.0,0.0,0.0,702.0,84.0,1321.0,1628.0,0.0,97.0,0.0,0.0,136.0,0.0,90.0,196.0,690.0,0.0,0.0,89.0,154.0,900.0,0.0,137.0,0.0,168.0,75.0,20.0,0.0,0.0,0.0,0.0,0.0,1881.0,0.0,1852.0,185.0,0.0,0.0,0.0,1986.0,0.0,184.0,141.0,0.0,61.0,0.0,5485.0,48.0,0.0,14.0,386.0,96.0,32.0,67.0,0.0,294.0,767.0,0.0,19.0,0.0,0.0,8.0,3029.0,0.0,0.0,215.0,71.0,177.0,662.0,51.0,2979.0,1477.0,48.0,0.0,51.0,0.0,0.0,5.0,0.0,53.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,605.0,2870.0,2019.0,0.0,19.0,392.0,1259.0,0.0,0.0,66.0,90.0,0.0,0.0,321.0,1838.0,1102.0,0.0,102.0,180.0,58.0,83.0,180.0,1978.0,0.0,4259.0,224.0,3.0,0.0,2446.0,1363.0,224.0,0.0,274.0,244.0,0.0,212.0,0.0,0.0,254.0,0.0,91.0,0.0,39.0,0.0,332.0,945.0,93.0,0.0,25.0,23.0,0.0,0.0,79.0,0.0,335.0,804.0,299.0,0.0,8.0,0.0,0.0,317.0,0.0,45.0,980.0,68.0,0.0,0.0,0.0,0.0,212.0,0.0,83.0,567.0,0.0,0.0,0.0,109.0,90.0,27.0,11.0,266.0,369.0,679.0,590.0,0.0,0.0,0.0,0.0,0.0,0.0,33.0,2327.0,0.0,1221.0,0.0,0.0,24.0,0.0,0.0,208.0,513.0,663.0,115.0,0.0,9.0,954.0,56.0,0.0,35.0,137.0,97.0,0.0,24.0,1.0,8.0,158.0,84.0,0.0,0.0,0.0,0.0,0.0,70.0,9.0,0.0,0.0,2761.0,0.0,50.0,0.0,0.0,656.0,0.0,57.0,289.0,22.0,0.0,86.0,0.0,10.0,0.0,4697.0,0.0,0.0,553.0,0.0,0.0,52.0,86.0,297.0,344.0,0.0,0.0,0.0,319.0,0.0,0.0,0.0,54.0,0.0,532.0,0.0,0.0,0.0,139.0,1053.0,525.0,0.0,2723.0,16.0,302.0,220.0,13.0,13.0,1549.0,4.0,0.0,170.0,285.0,1646.0,0.0,0.0,2010-12-26,,2010-51,-0.11248832165093958,0.08000000000000002, +88,88,0.22,41.0,0.0,34.0,0.0,27.0,185.0,269.0,68.0,0.0,216.0,5483.0,0.0,13.0,410.0,265.0,27.0,65.0,104.0,4117.0,0.0,26.0,111.0,0.0,22.0,356.0,32.0,1066.0,319.0,17.0,0.0,0.0,0.0,191.0,54.0,873.0,1264.0,0.0,113.0,0.0,0.0,135.0,0.0,63.0,159.0,592.0,0.0,0.0,85.0,138.0,822.0,0.0,108.0,0.0,148.0,63.0,17.0,0.0,0.0,0.0,0.0,0.0,1518.0,0.0,1491.0,210.0,0.0,0.0,0.0,1730.0,0.0,131.0,93.0,2.0,35.0,0.0,4931.0,43.0,0.0,8.0,363.0,90.0,31.0,55.0,0.0,185.0,608.0,0.0,26.0,1.0,0.0,8.0,2289.0,0.0,0.0,165.0,43.0,113.0,618.0,34.0,2289.0,1225.0,38.0,0.0,27.0,0.0,0.0,5.0,0.0,34.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,486.0,2115.0,1416.0,0.0,14.0,322.0,1132.0,0.0,0.0,36.0,52.0,0.0,0.0,350.0,1573.0,954.0,0.0,62.0,156.0,44.0,88.0,167.0,1536.0,0.0,3784.0,186.0,4.0,0.0,1882.0,1012.0,146.0,0.0,249.0,151.0,0.0,124.0,0.0,0.0,195.0,0.0,102.0,0.0,26.0,0.0,251.0,664.0,72.0,0.0,38.0,13.0,0.0,0.0,40.0,0.0,323.0,677.0,161.0,0.0,8.0,0.0,0.0,283.0,0.0,46.0,787.0,55.0,0.0,0.0,0.0,0.0,155.0,0.0,72.0,429.0,0.0,0.0,0.0,58.0,89.0,18.0,5.0,213.0,284.0,661.0,381.0,0.0,0.0,0.0,0.0,1.0,0.0,41.0,1755.0,0.0,1984.0,0.0,0.0,30.0,0.0,1.0,159.0,431.0,553.0,88.0,0.0,7.0,701.0,49.0,0.0,33.0,104.0,75.0,0.0,23.0,0.0,7.0,116.0,72.0,0.0,0.0,0.0,0.0,0.0,53.0,0.0,0.0,0.0,2197.0,0.0,32.0,0.0,0.0,509.0,0.0,62.0,147.0,18.0,0.0,63.0,0.0,7.0,0.0,3645.0,0.0,0.0,430.0,0.0,0.0,35.0,93.0,282.0,245.0,0.0,0.0,0.0,253.0,0.0,0.0,0.0,52.0,0.0,485.0,0.0,0.0,0.0,231.0,706.0,386.0,0.0,2115.0,14.0,224.0,180.0,9.0,24.0,1084.0,0.0,0.0,127.0,201.0,1317.0,0.0,0.0,2011-01-02,,2010-52,1.0516324033982298,0.202, +89,89,0.67,77.0,0.0,92.0,0.0,45.0,390.0,399.0,195.0,1.0,520.0,9785.0,0.0,28.0,874.0,391.0,44.0,130.0,242.0,4762.0,0.0,47.0,167.0,0.0,43.0,587.0,42.0,2331.0,786.0,33.0,0.0,0.0,0.0,488.0,119.0,1307.0,2620.0,0.0,166.0,0.0,0.0,246.0,0.0,111.0,323.0,1124.0,0.0,0.0,205.0,296.0,1479.0,0.0,143.0,0.0,292.0,128.0,37.0,0.0,0.0,0.0,0.0,0.0,3071.0,0.0,2878.0,358.0,0.0,0.0,0.0,3388.0,0.0,276.0,230.0,0.0,112.0,0.0,7266.0,82.0,1.0,21.0,541.0,166.0,51.0,146.0,0.0,390.0,1374.0,0.0,43.0,0.0,0.0,13.0,4098.0,0.0,0.0,322.0,119.0,334.0,895.0,130.0,3814.0,2642.0,112.0,0.0,88.0,0.0,0.0,8.0,0.0,116.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1109.0,5006.0,3879.0,0.0,42.0,691.0,1840.0,0.0,0.0,86.0,172.0,0.0,0.0,722.0,3388.0,1986.0,0.0,165.0,271.0,64.0,184.0,269.0,2717.0,0.0,5879.0,289.0,3.0,0.0,3445.0,1722.0,288.0,0.0,511.0,263.0,0.0,367.0,0.0,0.0,478.0,0.0,129.0,0.0,86.0,0.0,453.0,2002.0,105.0,0.0,81.0,29.0,0.0,0.0,106.0,0.0,633.0,1560.0,455.0,0.0,14.0,0.0,0.0,589.0,1.0,62.0,1528.0,93.0,0.0,0.0,0.0,0.0,302.0,0.0,143.0,852.0,0.0,0.0,0.0,155.0,148.0,34.0,11.0,398.0,669.0,1263.0,438.5,0.0,0.0,0.0,0.0,0.0,0.0,50.0,3266.0,0.0,1856.0,0.0,0.0,38.0,0.0,0.0,430.0,905.0,1280.0,200.0,0.0,22.0,1455.0,88.0,0.0,67.0,248.0,119.0,0.0,66.0,0.0,11.0,244.0,173.0,0.0,0.0,0.0,0.0,0.0,86.0,0.0,0.0,0.0,4433.0,0.0,78.0,0.0,0.0,952.0,0.0,100.0,360.0,45.0,0.0,125.0,0.0,30.0,0.0,6899.0,0.0,0.0,881.0,0.0,0.0,107.0,203.0,685.0,535.0,0.0,0.0,0.0,484.0,0.0,0.0,0.0,127.0,0.0,847.0,0.0,0.0,0.0,229.0,1285.0,713.0,0.0,4597.0,28.0,481.0,364.0,11.0,28.0,1786.0,0.0,0.0,431.0,395.0,2809.0,0.0,0.0,2011-01-09,,2011-1,1.0366448158646335,1.2300000000000002, +90,90,2.58,68.0,0.0,103.0,0.0,43.0,470.0,529.0,241.0,0.0,576.0,9317.0,0.0,39.0,1088.0,360.0,30.0,130.0,248.0,5268.0,0.0,72.0,176.0,0.0,41.0,739.0,43.0,3094.0,876.0,43.0,0.0,0.0,0.0,564.0,113.0,1550.0,3209.0,0.0,184.0,0.0,0.0,254.0,0.0,149.0,426.0,1131.0,0.0,0.0,256.0,304.0,1453.0,0.0,167.0,0.0,355.0,178.0,44.0,0.0,0.0,0.0,0.0,0.0,3528.0,0.0,3320.0,368.0,0.0,0.0,0.0,3747.0,0.0,243.0,255.0,0.0,85.0,0.0,7976.0,118.0,0.0,14.0,551.0,232.0,45.0,182.0,0.0,415.0,1618.0,0.0,29.0,0.0,0.0,8.0,4792.0,0.0,0.0,386.0,146.0,385.0,891.0,207.0,4194.0,3106.0,63.0,0.0,87.0,0.0,0.0,8.0,0.0,113.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1717.0,5753.0,5044.0,0.0,33.0,783.0,2011.0,0.0,0.0,104.0,172.0,0.0,0.0,801.0,3543.0,2106.0,0.0,241.0,277.0,73.0,186.0,320.0,2959.0,3.0,6192.0,332.0,6.0,0.0,4213.0,2104.0,621.0,0.0,584.0,362.0,0.0,579.0,0.0,0.0,484.0,0.0,142.0,0.0,73.0,0.0,527.0,2391.0,166.0,1.0,105.0,34.0,0.0,0.0,86.0,0.0,726.0,1983.0,537.0,0.0,6.0,0.0,0.0,750.0,0.0,79.0,1968.0,116.0,0.0,2.0,0.0,0.0,381.0,0.0,151.0,1082.0,0.0,0.0,0.0,177.0,198.0,34.0,6.0,515.0,802.0,1412.0,496.0,0.0,0.0,0.0,0.0,0.0,0.0,45.0,3439.0,0.0,1823.0,0.0,0.0,36.0,0.0,0.0,443.0,1040.0,1344.0,225.0,0.0,31.0,1944.0,94.0,0.0,73.0,326.0,142.0,0.0,85.0,0.0,4.0,323.0,200.0,0.0,0.0,0.0,0.0,2.0,70.0,3.0,0.0,0.0,5407.0,0.0,81.0,0.0,0.0,1065.0,0.0,111.0,425.0,44.0,0.0,120.0,0.0,27.0,0.0,7964.0,0.0,0.0,1040.0,0.0,0.0,118.0,275.0,732.0,479.0,0.0,0.0,0.0,581.0,0.0,0.0,0.0,129.0,0.0,901.0,0.0,0.0,0.0,216.0,1481.0,832.0,0.0,6265.0,23.0,527.0,455.0,10.0,27.0,1789.0,2.0,0.0,488.0,467.0,3177.0,0.0,0.0,2011-01-16,,2011-2,2.808255386061088,6.328, +91,91,4.61,67.0,0.0,132.0,0.0,68.0,427.0,659.0,264.0,0.0,555.0,9623.0,0.0,24.0,1049.0,374.0,58.0,109.0,210.0,5215.0,0.0,59.0,188.0,0.0,48.0,740.0,53.0,3145.0,887.0,33.0,0.0,0.0,0.0,565.0,105.0,1446.0,3381.0,0.0,144.0,0.0,0.0,275.0,0.0,145.0,491.0,1326.0,0.0,0.0,289.0,322.0,1506.0,0.0,110.0,0.0,379.0,181.0,64.0,0.0,0.0,0.0,0.0,0.0,3727.0,0.0,3237.0,319.0,0.0,0.0,0.0,3617.0,0.0,212.0,245.0,0.0,163.0,0.0,9736.0,150.0,0.0,29.0,484.0,302.0,50.0,173.0,0.0,445.0,1721.0,0.0,41.0,2.0,0.0,7.0,4988.0,0.0,0.0,385.0,139.0,364.0,846.0,276.0,6072.0,3421.0,79.0,0.0,86.0,0.0,0.0,7.0,0.0,204.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1553.0,5745.0,4700.0,0.0,36.0,803.0,2029.0,0.0,0.0,132.0,178.0,0.0,0.0,811.0,3441.0,2267.0,0.0,174.0,292.0,83.0,188.0,355.0,2949.0,0.0,6413.0,321.0,5.0,0.0,4006.0,1928.0,723.0,0.0,669.0,406.0,0.0,612.0,0.0,0.0,474.0,0.0,182.0,0.0,79.0,0.0,574.0,2233.0,156.0,0.0,108.0,48.0,0.0,0.0,92.0,0.0,797.0,1919.0,573.0,0.0,19.0,0.0,0.0,764.0,0.0,90.0,1984.0,127.0,0.0,1.0,0.0,0.0,539.0,0.0,161.0,1117.0,0.0,0.0,0.0,187.0,216.0,26.0,11.0,485.0,865.0,1502.0,553.5,0.0,0.0,0.0,0.0,0.0,0.0,56.0,3524.0,0.0,1985.0,0.0,0.0,25.0,0.0,0.0,516.0,1027.0,1482.0,222.0,0.0,10.0,1857.0,80.0,0.0,67.0,332.0,170.0,0.0,122.0,0.0,7.0,359.0,265.0,0.0,0.0,0.0,0.0,1.0,88.0,1.0,0.0,0.0,5163.0,0.0,75.0,0.0,0.0,1282.0,0.0,148.0,398.0,33.0,0.0,127.0,0.0,33.0,0.0,8470.0,0.0,0.0,1054.0,0.0,0.0,141.0,269.0,755.0,578.0,0.0,0.0,0.0,513.0,0.0,0.0,0.0,97.0,0.0,931.0,0.0,0.0,0.0,198.0,1469.0,835.0,0.0,5904.0,25.0,552.0,403.0,11.0,34.0,1862.0,2.0,0.0,562.0,491.0,3126.0,0.0,0.0,2011-01-23,,2011-3,4.175016637279462,3.3700000000000006, +92,92,5.76,79.0,0.0,143.0,0.0,45.0,383.0,583.0,236.0,0.0,505.0,10158.0,0.0,38.0,1039.0,315.0,39.0,149.0,238.0,4056.0,0.0,60.0,147.0,0.0,62.0,633.0,53.0,2772.0,860.0,47.0,0.0,0.0,0.0,597.0,114.0,1654.0,3113.0,0.0,161.0,0.0,0.0,215.0,0.0,155.0,413.0,1287.0,0.0,0.0,233.0,312.0,1403.0,0.0,122.0,0.0,337.0,144.0,43.0,0.0,0.0,0.0,0.0,0.0,3413.0,0.0,2984.0,293.0,0.0,0.0,0.0,3125.0,0.0,261.0,276.0,1.0,164.0,0.0,6641.0,108.0,1.0,26.0,610.0,206.0,55.0,175.0,0.0,408.0,1642.0,0.0,41.0,0.0,0.0,14.0,4746.0,0.0,5.0,343.0,102.0,337.0,899.0,300.0,4711.0,2911.0,60.0,0.0,82.0,0.0,0.0,14.0,0.0,163.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1233.0,5175.0,4243.0,0.0,28.0,815.0,1789.0,0.0,0.0,164.0,176.0,0.0,0.0,764.0,2528.0,1883.0,0.0,190.0,235.0,68.0,167.0,282.0,2728.0,1.0,6484.0,326.0,3.0,0.0,3819.0,1699.0,772.0,0.0,618.0,404.0,0.0,579.0,0.0,0.0,449.0,0.0,147.0,0.0,62.0,0.0,494.0,2163.0,151.0,0.0,130.0,33.0,0.0,0.0,90.0,0.0,894.0,1892.0,572.0,0.0,16.0,0.0,0.0,681.0,0.0,89.0,1636.0,128.0,0.0,1.0,0.0,0.0,346.0,0.0,148.0,978.0,0.0,0.0,0.0,152.0,169.0,27.0,6.0,410.0,750.0,1325.0,611.0,0.0,0.0,0.0,0.0,0.0,0.0,50.0,3293.0,0.0,1900.0,0.0,0.0,45.0,0.0,0.0,436.0,878.0,1247.0,202.0,0.0,9.0,1667.0,97.0,0.0,74.0,334.0,120.0,0.0,91.0,0.0,5.0,265.0,160.0,0.0,0.0,0.0,0.0,1.0,80.0,0.0,0.0,0.0,4595.0,0.0,63.0,0.0,0.0,967.0,0.0,154.0,330.0,40.0,0.0,145.0,0.0,35.0,0.0,7695.0,0.0,0.0,917.0,0.0,0.0,166.0,265.0,664.0,484.0,0.0,0.0,0.0,542.0,0.0,0.0,0.0,106.0,0.0,867.0,0.0,0.0,0.0,219.0,1100.0,832.0,0.0,5187.0,23.0,550.0,454.0,9.0,28.0,1822.0,1.0,0.0,444.0,512.0,2907.0,0.0,0.0,2011-01-30,,2011-4,5.772779195560609,7.718, +93,93,7.22,61.0,0.0,113.0,0.0,75.0,340.0,298.0,247.0,0.0,472.0,15271.0,0.0,28.0,964.0,271.0,41.0,122.0,225.0,3474.0,0.0,79.0,96.0,0.0,51.0,650.0,35.0,2393.0,758.0,48.0,0.0,0.0,25.0,598.0,134.0,1723.0,2642.0,0.0,163.0,0.0,0.0,188.0,0.0,164.0,418.0,1263.0,0.0,0.0,204.0,356.0,1342.0,0.0,137.0,25.0,220.0,157.0,63.0,0.0,0.0,0.0,0.0,0.0,3053.0,0.0,2435.0,247.0,0.0,0.0,0.0,2525.0,0.0,233.0,316.0,0.0,168.0,0.0,5220.0,115.0,0.0,19.0,592.0,208.0,40.0,134.0,0.0,369.0,1664.0,0.0,38.0,25.0,0.0,8.0,4077.0,0.0,4.0,285.0,135.0,351.0,873.0,214.0,3765.0,2647.0,68.0,0.0,100.0,0.0,0.0,8.0,0.0,121.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1179.0,4465.0,3702.0,0.0,54.0,652.0,1630.0,0.0,0.0,213.0,187.0,0.0,0.0,606.0,2310.0,1559.0,25.0,202.0,244.0,81.0,216.0,312.0,2540.0,0.0,6058.0,349.0,3.0,0.0,3769.0,1516.0,702.0,0.0,417.0,371.0,0.0,531.0,0.0,0.0,424.0,0.0,159.0,0.0,71.0,0.0,498.0,1986.0,149.0,0.0,103.0,31.0,0.0,25.0,104.0,25.0,764.0,1742.0,493.0,0.0,6.0,0.0,0.0,665.0,0.0,82.0,1367.0,118.0,0.0,1.0,0.0,0.0,450.0,0.0,176.0,917.0,0.0,0.0,0.0,238.0,147.0,34.0,17.0,361.0,615.0,1215.0,668.5,0.0,0.0,0.0,0.0,0.0,0.0,83.0,3062.0,0.0,1903.0,0.0,0.0,48.0,0.0,0.0,536.0,793.0,1123.0,186.0,1.0,29.0,1639.0,104.0,0.0,72.0,302.0,92.0,0.0,100.0,0.0,12.0,131.0,142.0,0.0,0.0,0.0,0.0,0.0,84.0,1.0,0.0,0.0,3746.0,0.0,79.0,0.0,0.0,764.0,0.0,170.0,251.0,77.0,0.0,143.0,0.0,52.0,0.0,7090.0,0.0,0.0,810.0,0.0,0.0,226.0,238.0,597.0,655.0,0.0,0.0,0.0,399.0,0.0,0.0,0.0,120.0,0.0,906.0,0.0,0.0,0.0,161.0,787.0,676.0,0.0,4584.0,46.0,502.0,510.0,10.0,26.0,1859.0,26.0,0.0,339.0,535.0,2455.0,0.0,0.0,2011-02-06,,2011-5,7.356213568547023,7.476000000000001, +94,94,7.86,86.0,0.0,128.0,0.0,42.0,315.0,418.0,205.0,1.0,422.0,11216.0,0.0,27.0,762.0,360.0,33.0,123.0,201.0,4277.0,0.0,38.0,132.0,0.0,44.0,603.0,34.0,2272.0,738.0,34.0,0.0,0.0,2.0,579.0,101.0,1435.0,2680.0,0.0,164.0,0.0,0.0,174.0,0.0,154.0,402.0,1251.0,0.0,0.0,235.0,284.0,1484.0,0.0,110.0,2.0,238.0,122.0,40.0,0.0,0.0,0.0,0.0,0.0,3313.0,0.0,2685.0,280.0,0.0,0.0,0.0,4631.0,0.0,232.0,302.0,1.0,177.0,0.0,5296.0,86.0,0.0,12.0,564.0,168.0,38.0,146.0,0.0,383.0,1557.0,0.0,37.0,3.0,0.0,9.0,3917.0,0.0,0.0,269.0,118.0,358.0,849.0,148.0,3980.0,2630.0,61.0,0.0,42.0,0.0,0.0,10.0,0.0,122.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1078.0,4452.0,3664.0,0.0,31.0,643.0,1595.0,0.0,0.0,192.0,116.0,0.0,0.0,652.0,2289.0,1548.0,2.0,166.0,199.0,124.0,181.0,255.0,2495.0,1.0,5529.0,336.0,2.0,0.0,4022.0,1460.0,741.0,0.0,389.0,311.0,0.0,469.0,0.0,0.0,401.0,0.0,164.0,0.0,68.0,0.0,412.0,1910.0,169.0,0.0,117.0,27.0,0.0,2.0,87.0,2.0,639.0,1604.0,396.0,0.0,11.0,0.0,0.0,601.0,0.0,87.0,1439.0,104.0,0.0,1.0,0.0,0.0,384.0,0.0,140.0,751.0,0.0,0.0,0.0,139.0,128.0,19.0,10.0,351.0,562.0,1212.0,726.0,0.0,0.0,0.0,0.0,0.0,0.0,65.0,3334.0,0.0,2096.0,0.0,0.0,20.0,0.0,0.0,405.0,713.0,1145.0,178.0,0.0,18.0,1523.0,111.0,0.0,55.0,243.0,93.0,0.0,74.0,104.0,10.0,212.0,139.0,0.0,0.0,0.0,0.0,0.0,86.0,0.0,0.0,0.0,3790.0,0.0,48.0,0.0,0.0,992.0,0.0,110.0,268.0,23.0,0.0,139.0,0.0,34.0,0.0,6879.0,0.0,0.0,772.0,0.0,0.0,143.0,258.0,594.0,398.0,0.0,0.0,0.0,514.0,0.0,0.0,0.0,86.0,0.0,952.0,0.0,0.0,0.0,188.0,697.0,659.0,0.0,4685.0,15.0,500.0,468.0,14.0,22.0,1734.0,2.0,0.0,419.0,456.0,2393.0,0.0,0.0,2011-02-13,,2011-6,7.8892543493826395,8.382, +95,95,6.21,89.0,0.0,100.0,0.0,45.0,311.0,416.0,140.0,0.0,426.0,8832.0,0.0,30.0,836.0,403.0,49.0,116.0,197.0,3312.0,0.0,34.0,145.0,0.0,50.0,641.0,41.0,2179.0,688.0,31.0,0.0,0.0,0.0,491.0,88.0,1592.0,2719.0,0.0,165.0,0.0,0.0,215.0,0.0,159.0,435.0,1355.0,0.0,0.0,219.0,218.0,1401.0,0.0,97.0,0.0,221.0,94.0,29.0,0.0,0.0,0.0,0.0,0.0,3184.0,0.0,2430.0,273.0,0.0,0.0,0.0,3224.0,0.0,220.0,258.0,1.0,116.0,0.0,5529.0,103.0,1.0,25.0,450.0,202.0,37.0,155.0,0.0,383.0,1427.0,0.0,48.0,0.0,0.0,8.0,4120.0,0.0,0.0,287.0,119.0,327.0,878.0,141.0,4223.0,2477.0,60.0,0.0,69.0,0.0,0.0,12.0,0.0,89.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,943.0,4642.0,3798.0,0.0,27.0,662.0,1677.0,0.0,0.0,110.0,118.0,0.0,0.0,630.0,2316.0,1518.0,0.0,123.0,300.0,109.0,161.0,264.0,2440.0,0.0,5466.0,318.0,4.0,0.0,3862.0,1518.0,793.0,0.0,390.0,315.0,0.0,507.0,0.0,0.0,406.0,0.0,160.0,0.0,73.0,0.0,482.0,1879.0,133.0,0.0,93.0,17.0,0.0,0.0,95.0,0.0,617.0,1681.0,395.0,0.0,14.0,0.0,0.0,578.0,0.0,92.0,1301.0,87.0,0.0,1.0,0.0,0.0,344.0,0.0,136.0,725.0,0.0,0.0,0.0,144.0,94.0,24.0,12.0,397.0,517.0,1002.0,794.0,0.0,0.0,0.0,0.0,0.0,0.0,63.0,3040.0,0.0,1781.0,0.0,0.0,24.0,0.0,0.0,470.0,670.0,1105.0,140.0,1.0,43.0,1308.0,109.0,0.0,70.0,224.0,85.0,0.0,57.0,113.0,8.0,217.0,111.0,0.0,0.0,0.0,0.0,0.0,84.0,0.0,0.0,0.0,3805.0,0.0,39.0,0.0,0.0,736.0,0.0,141.0,267.0,35.0,0.0,153.0,0.0,27.0,0.0,6638.0,0.0,0.0,905.0,0.0,0.0,161.0,229.0,539.0,485.0,0.0,0.0,0.0,470.0,0.0,0.0,0.0,71.0,0.0,825.0,0.0,0.0,0.0,201.0,719.0,688.0,0.0,4464.0,18.0,483.0,434.0,14.0,26.0,1792.0,0.0,0.0,299.0,507.0,2391.0,0.0,0.0,2011-02-20,,2011-7,6.425954878240574,3.418, +96,96,4.69,92.0,0.0,100.0,0.0,65.0,280.0,465.0,146.0,0.0,433.0,8322.0,0.0,65.0,732.0,394.0,61.0,138.0,269.0,3190.0,0.0,64.0,180.0,0.0,68.0,590.0,45.0,2042.0,684.0,51.0,0.0,0.0,0.0,521.0,73.0,1621.0,2569.0,0.0,152.0,0.0,0.0,252.0,0.0,161.0,449.0,1389.0,0.0,0.0,203.0,243.0,1449.0,0.0,59.0,0.0,216.0,117.0,58.0,0.0,0.0,0.0,0.0,0.0,2552.0,0.0,2562.0,375.0,0.0,0.0,0.0,2763.0,0.0,250.0,238.0,0.0,151.0,0.0,5865.0,126.0,1.0,38.0,407.0,208.0,46.0,130.0,0.0,408.0,1842.0,0.0,60.0,0.0,0.0,31.0,3825.0,0.0,1.0,305.0,105.0,346.0,815.0,100.0,4046.0,2108.0,102.0,0.0,58.0,0.0,0.0,34.0,0.0,120.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,937.0,4340.0,3870.0,0.0,45.0,663.0,1499.0,0.0,0.0,111.0,122.0,0.0,0.0,509.0,2631.0,1559.0,0.0,159.0,236.0,72.0,169.0,254.0,2399.0,1.0,5374.0,325.0,24.0,0.0,3787.0,1548.0,749.0,0.0,387.0,328.0,0.0,391.0,0.0,0.0,432.0,0.0,208.0,0.0,83.0,0.0,400.0,1903.0,141.0,0.0,105.0,33.0,0.0,0.0,110.0,0.0,643.0,1491.0,388.0,0.0,11.0,0.0,0.0,645.0,0.0,67.0,1429.0,108.0,0.0,0.0,0.0,0.0,295.0,0.0,177.0,699.0,0.0,0.0,0.0,130.0,143.0,40.0,8.0,335.0,562.0,932.0,843.0,0.0,0.0,0.0,0.0,0.0,0.0,94.0,2944.0,0.0,1717.0,0.0,0.0,28.0,0.0,0.0,379.0,691.0,1030.0,166.0,0.0,18.0,1248.0,125.0,0.0,111.0,254.0,84.0,0.0,93.0,143.0,32.0,205.0,159.0,0.0,0.0,0.0,0.0,1.0,88.0,1.0,0.0,0.0,3740.0,0.0,77.0,0.0,0.0,812.0,0.0,90.0,226.0,72.0,0.0,145.0,0.0,24.0,0.0,6305.0,0.0,0.0,804.0,0.0,0.0,129.0,194.0,485.0,555.0,0.0,0.0,0.0,504.0,0.0,0.0,0.0,96.0,0.0,900.0,0.0,0.0,0.0,184.0,753.0,712.0,0.0,4065.0,51.0,521.0,394.0,30.0,44.0,1672.0,2.0,0.0,296.0,485.0,2319.0,0.0,0.0,2011-02-27,,2011-8,4.555444891024056,4.69, +97,97,3.85,86.0,0.0,77.0,0.0,48.0,303.0,414.0,147.0,0.0,440.0,8258.0,0.0,42.0,694.0,418.0,52.0,117.0,176.0,3444.0,0.0,50.0,191.0,0.0,46.0,590.0,49.0,1921.0,818.0,52.0,0.0,0.0,0.0,460.0,98.0,1501.0,2402.0,0.0,160.0,0.0,0.0,177.0,0.0,153.0,421.0,1410.0,0.0,0.0,220.0,233.0,1317.0,0.0,109.0,0.0,213.0,104.0,69.0,0.0,0.0,0.0,0.0,0.0,2381.0,0.0,2254.0,293.0,0.0,0.0,0.0,2437.0,0.0,188.0,241.0,2.0,118.0,0.0,7986.0,124.0,0.0,33.0,420.0,155.0,50.0,92.0,0.0,363.0,1556.0,0.0,48.0,1.0,0.0,35.0,3675.0,0.0,0.0,272.0,104.0,271.0,818.0,109.0,3981.0,2105.0,83.0,0.0,84.0,0.0,0.0,26.0,0.0,131.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,735.0,3845.0,4023.0,0.0,48.0,589.0,1442.0,0.0,0.0,83.0,132.0,0.0,0.0,451.0,2435.0,1526.0,0.0,168.0,233.0,90.0,163.0,256.0,2193.0,0.0,5012.0,279.0,23.0,0.0,3567.0,1430.0,930.0,0.0,366.0,331.0,0.0,356.0,0.0,0.0,414.0,0.0,178.0,0.0,81.0,0.0,397.0,1832.0,131.0,0.0,84.0,36.0,0.0,0.0,110.0,2.0,596.0,1329.0,364.0,0.0,7.0,0.0,0.0,598.0,0.0,97.0,1332.0,117.0,0.0,1.0,0.0,0.0,303.0,0.0,156.0,723.0,0.0,1.0,0.0,147.0,109.0,19.0,19.0,382.0,625.0,968.0,780.0,0.0,0.0,0.0,0.0,0.0,0.0,88.0,2665.0,0.0,1610.0,0.0,0.0,37.0,0.0,0.0,368.0,669.0,996.0,186.0,0.0,15.0,1173.0,118.0,0.0,98.0,261.0,71.0,0.0,80.0,165.0,29.0,195.0,110.0,0.0,0.0,0.0,0.0,0.0,100.0,0.0,0.0,0.0,3304.0,0.0,64.0,0.0,0.0,875.0,0.0,108.0,224.0,55.0,0.0,161.0,0.0,16.0,0.0,6139.0,0.0,0.0,821.0,0.0,0.0,116.0,166.0,390.0,397.0,0.0,0.0,0.0,527.0,0.0,0.0,0.0,77.0,0.0,783.0,0.0,0.0,0.0,222.0,686.0,646.0,0.0,3832.0,42.0,497.0,380.0,30.0,52.0,1580.0,0.0,0.0,299.0,441.0,2133.0,0.0,0.0,2011-03-06,,2011-9,4.065297641365699,4.558, +98,98,2.96,53.0,0.0,82.0,0.0,46.0,305.0,364.0,95.0,0.0,360.0,8336.0,0.0,38.0,829.0,385.0,33.0,116.0,148.0,3113.0,0.0,33.0,159.0,0.0,40.0,509.0,39.0,2078.0,683.0,31.0,0.0,0.0,0.0,500.0,96.0,1462.0,2377.0,0.0,147.0,0.0,0.0,196.0,0.0,140.0,351.0,1329.0,0.0,0.0,206.0,187.0,1358.0,0.0,103.0,0.0,214.0,102.0,28.0,0.0,0.0,0.0,0.0,0.0,2926.0,0.0,2378.0,323.0,0.0,0.0,0.0,2571.0,0.0,172.0,236.0,0.0,86.0,0.0,5160.0,86.0,1.0,21.0,478.0,160.0,34.0,112.0,0.0,386.0,1428.0,0.0,24.0,0.0,0.0,12.0,3592.0,0.0,0.0,254.0,75.0,371.0,816.0,98.0,4014.0,2121.0,55.0,0.0,60.0,0.0,0.0,5.0,0.0,93.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,791.0,3992.0,3616.0,0.0,31.0,573.0,1409.0,0.0,0.0,81.0,141.0,0.0,0.0,477.0,2301.0,1489.0,0.0,124.0,226.0,93.0,147.0,250.0,2304.0,0.0,5368.0,324.0,3.0,0.0,3546.0,1448.0,844.0,0.0,344.0,302.0,0.0,395.0,0.0,0.0,390.0,0.0,154.0,0.0,67.0,0.0,449.0,1709.0,111.0,0.0,87.0,32.0,0.0,0.0,87.0,0.0,675.0,1564.0,415.0,0.0,18.0,0.0,0.0,549.0,0.0,64.0,1587.0,76.0,0.0,0.0,0.0,0.0,233.0,0.0,147.0,664.0,0.0,0.0,0.0,122.0,112.0,25.0,11.0,336.0,522.0,924.0,795.0,0.0,0.0,0.0,0.0,1.0,0.0,66.0,2901.0,0.0,1663.0,0.0,0.0,30.0,0.0,0.0,351.0,642.0,1013.0,166.0,0.0,8.0,1264.0,88.0,0.0,65.0,206.0,57.0,0.0,68.0,128.0,12.0,200.0,174.0,0.0,0.0,0.0,0.0,1.0,91.0,0.0,0.0,0.0,3270.0,0.0,43.0,0.0,0.0,879.0,0.0,140.0,220.0,41.0,0.0,124.0,0.0,22.0,0.0,6213.0,0.0,0.0,859.0,0.0,0.0,120.0,190.0,442.0,551.0,0.0,0.0,0.0,480.0,0.0,0.0,0.0,78.0,0.0,753.0,0.0,0.0,0.0,210.0,711.0,644.0,0.0,3821.0,16.0,480.0,290.0,14.0,33.0,1536.0,1.0,0.0,285.0,444.0,2124.0,0.0,0.0,2011-03-13,,2011-10,2.454824223478857,3.6100000000000003, +99,99,3.07,76.0,0.0,109.0,0.0,37.0,282.0,395.0,122.0,0.0,357.0,8431.0,0.0,38.0,784.0,347.0,34.0,120.0,139.0,3171.0,0.0,27.0,111.0,0.0,50.0,526.0,42.0,1933.0,735.0,28.0,0.0,0.0,0.0,498.0,105.0,1661.0,2407.0,0.0,102.0,0.0,0.0,177.0,0.0,139.0,350.0,1366.0,0.0,0.0,205.0,195.0,1353.0,0.0,177.0,0.0,212.0,88.0,29.0,0.0,0.0,0.0,0.0,0.0,2517.0,0.0,2318.0,284.0,0.0,0.0,0.0,2569.0,0.0,253.0,215.0,0.0,81.0,0.0,5603.0,86.0,0.0,16.0,342.0,141.0,29.0,115.0,0.0,307.0,1452.0,0.0,31.0,0.0,0.0,10.0,3519.0,0.0,0.0,245.0,102.0,315.0,821.0,89.0,3929.0,1981.0,66.0,0.0,80.0,0.0,0.0,4.0,0.0,113.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,735.0,4040.0,3757.0,0.0,32.0,688.0,1459.0,0.0,0.0,105.0,95.0,0.0,0.0,467.0,2004.0,1358.0,0.0,119.0,195.0,61.0,160.0,198.0,2231.0,0.0,5527.0,295.0,1.0,0.0,3659.0,1325.0,840.0,0.0,340.0,310.0,0.0,391.0,0.0,0.0,370.0,0.0,161.0,0.0,54.0,0.0,435.0,1693.0,184.0,0.0,72.0,31.0,0.0,0.0,76.0,1.0,601.0,1536.0,488.0,0.0,19.0,0.0,0.0,547.0,0.0,72.0,1307.0,99.0,0.0,0.0,0.0,0.0,304.0,0.0,149.0,632.0,0.0,0.0,0.0,120.0,107.0,26.0,11.0,363.0,589.0,906.0,763.0,0.0,0.0,0.0,0.0,0.0,0.0,51.0,2771.0,0.0,1706.0,0.0,0.0,19.0,0.0,0.0,399.0,625.0,1046.0,164.0,0.0,13.0,1218.0,62.0,0.0,61.0,201.0,73.0,0.0,60.0,126.0,8.0,225.0,98.0,0.0,0.0,0.0,0.0,0.0,80.0,1.0,0.0,0.0,3480.0,0.0,76.0,0.0,0.0,896.0,0.0,147.0,198.0,37.0,0.0,120.0,0.0,15.0,0.0,6030.0,0.0,0.0,805.0,0.0,0.0,121.0,189.0,452.0,416.0,0.0,0.0,0.0,453.0,0.0,0.0,0.0,71.0,0.0,816.0,0.0,0.0,0.0,246.0,612.0,648.0,0.0,3630.0,18.0,551.0,365.0,12.0,16.0,1389.0,1.0,0.0,335.0,423.0,2112.0,0.0,0.0,2011-03-20,,2011-11,2.9243287540309346,3.458, +100,100,1.72,56.0,0.0,78.0,0.0,30.0,286.0,321.0,127.0,0.0,383.0,7773.0,0.0,26.0,728.0,358.0,36.0,106.0,151.0,3112.0,0.0,30.0,136.0,0.0,35.0,512.0,35.0,1947.0,694.0,35.0,0.0,0.0,0.0,480.0,97.0,1648.0,2374.0,0.0,112.0,0.0,0.0,175.0,0.0,147.0,312.0,1481.0,0.0,0.0,175.0,246.0,1319.0,0.0,90.0,0.0,169.0,66.0,30.0,0.0,0.0,0.0,0.0,0.0,2450.0,0.0,2275.0,367.0,0.0,0.0,0.0,2545.0,0.0,542.0,188.0,1.0,76.0,0.0,5626.0,80.0,0.0,15.0,254.0,153.0,40.0,123.0,0.0,414.0,1389.0,0.0,16.0,1.0,0.0,7.0,3362.0,0.0,0.0,201.0,92.0,331.0,814.0,105.0,3957.0,1950.0,63.0,0.0,58.0,0.0,0.0,11.0,0.0,124.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,809.0,3845.0,3362.0,0.0,23.0,616.0,1403.0,0.0,0.0,104.0,177.0,0.0,0.0,464.0,2051.0,1406.0,0.0,135.0,231.0,57.0,139.0,230.0,2193.0,1.0,5621.0,286.0,4.0,0.0,3329.0,1408.0,784.0,0.0,345.0,260.0,0.0,381.0,0.0,0.0,323.0,0.0,160.0,0.0,60.0,0.0,366.0,1687.0,141.0,0.0,82.0,24.0,0.0,0.0,73.0,0.0,579.0,1491.0,402.0,0.0,10.0,0.0,0.0,610.0,0.0,85.0,1279.0,71.0,0.0,0.0,0.0,0.0,299.0,0.0,124.0,654.0,0.0,0.0,0.0,152.0,120.0,25.0,11.0,337.0,561.0,915.0,621.0,0.0,0.0,0.0,0.0,0.0,0.0,62.0,2660.0,0.0,1596.0,0.0,0.0,31.0,0.0,0.0,381.0,618.0,961.0,155.0,0.0,16.0,1159.0,59.0,0.0,60.0,219.0,77.0,0.0,65.0,113.0,10.0,217.0,106.0,0.0,0.0,0.0,0.0,1.0,66.0,0.0,0.0,0.0,3587.0,1.0,53.0,0.0,0.0,989.0,0.0,126.0,241.0,37.0,0.0,118.0,0.0,17.0,0.0,5963.0,0.0,0.0,751.0,0.0,0.0,121.0,193.0,428.0,420.0,0.0,0.0,0.0,387.0,0.0,0.0,0.0,93.0,0.0,812.0,0.0,0.0,0.0,222.0,578.0,674.0,0.0,3426.0,23.0,529.0,299.0,9.0,30.0,1400.0,2.0,0.0,344.0,410.0,2193.0,0.0,0.0,2011-03-27,,2011-12,1.0193290605523408,1.304, +101,101,1.01,71.0,0.0,107.0,0.0,30.0,307.0,341.0,132.0,0.0,385.0,6692.0,0.0,42.0,709.0,336.0,39.0,97.0,185.0,2870.0,0.0,29.0,135.0,0.0,46.0,554.0,35.0,1951.0,642.0,14.0,0.0,0.0,0.0,495.0,108.0,1744.0,2270.0,0.0,115.0,0.0,0.0,217.0,0.0,158.0,368.0,1117.0,0.0,0.0,199.0,214.0,1306.0,0.0,111.0,0.0,159.0,69.0,32.0,0.0,0.0,0.0,0.0,0.0,2666.0,0.0,2653.0,474.0,0.0,0.0,0.0,2245.0,0.0,243.0,208.0,0.0,69.0,0.0,5064.0,109.0,1.0,14.0,273.0,150.0,34.0,139.0,0.0,372.0,1448.0,0.0,42.0,1.0,0.0,11.0,3074.0,0.0,0.0,261.0,79.0,310.0,767.0,132.0,4033.0,2021.0,62.0,0.0,68.0,0.0,0.0,8.0,0.0,112.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,796.0,3580.0,3535.0,0.0,24.0,584.0,1310.0,0.0,0.0,91.0,115.0,0.0,0.0,389.0,1941.0,1369.0,0.0,171.0,232.0,57.0,175.0,265.0,2081.0,0.0,5306.0,281.0,6.0,0.0,3425.0,1504.0,786.0,0.0,357.0,295.0,0.0,401.0,0.0,0.0,429.0,0.0,179.0,0.0,57.0,0.0,411.0,1720.0,132.0,0.0,83.0,29.0,0.0,0.0,70.0,0.0,591.0,1307.0,327.0,0.0,20.0,0.0,0.0,583.0,0.0,83.0,1315.0,76.0,0.0,2.0,0.0,0.0,281.0,0.0,119.0,588.0,0.0,0.0,0.0,127.0,104.0,21.0,9.0,324.0,532.0,945.0,667.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,2683.0,0.0,1450.0,0.0,0.0,29.0,0.0,0.0,353.0,656.0,919.0,171.0,0.0,16.0,1188.0,64.0,0.0,61.0,194.0,55.0,0.0,73.0,131.0,7.0,198.0,85.0,0.0,0.0,0.0,0.0,0.0,80.0,1.0,0.0,0.0,3298.0,1.0,39.0,0.0,0.0,946.0,0.0,130.0,179.0,26.0,0.0,105.0,0.0,15.0,0.0,5797.0,0.0,0.0,808.0,0.0,0.0,139.0,188.0,448.0,428.0,0.0,0.0,0.0,431.0,0.0,0.0,0.0,70.0,0.0,794.0,0.0,0.0,0.0,309.0,672.0,663.0,1.0,3173.0,22.0,476.0,324.0,12.0,21.0,1398.0,0.0,0.0,320.0,372.0,2026.0,0.0,0.0,2011-04-03,,2011-13,1.0734441009240179,0.8119999999999999, +102,102,0.67,80.0,0.0,74.0,0.0,32.0,303.0,293.0,130.0,0.0,325.0,6313.0,0.0,31.0,761.0,296.0,32.0,119.0,183.0,3545.0,0.0,27.0,166.0,0.0,38.0,498.0,28.0,1873.0,716.0,36.0,0.0,0.0,0.0,505.0,101.0,1875.0,2344.0,0.0,146.0,0.0,0.0,5563.0,0.0,143.0,344.0,1023.0,0.0,0.0,207.0,211.0,1429.0,0.0,85.0,0.0,178.0,55.0,24.0,0.0,0.0,0.0,0.0,0.0,11549.0,0.0,2442.0,282.0,0.0,0.0,0.0,2425.0,0.0,216.0,214.0,0.0,70.0,0.0,5169.0,93.0,0.0,17.0,172.0,133.0,28.0,141.0,0.0,380.0,1572.0,0.0,47.0,0.0,0.0,4.0,3130.0,0.0,0.0,257.0,92.0,376.0,789.0,149.0,4122.0,1964.0,63.0,0.0,68.0,0.0,0.0,2.0,0.0,87.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,793.0,3622.0,3187.0,0.0,16.0,626.0,1324.0,0.0,0.0,77.0,71.0,0.0,0.0,363.0,2007.0,1408.0,0.0,129.0,223.0,65.0,155.0,278.0,2116.0,0.0,6295.0,264.0,7.0,0.0,3249.0,1507.0,780.0,0.0,353.0,293.0,0.0,372.0,0.0,0.0,310.0,0.0,176.0,0.0,63.0,0.0,497.0,1863.0,121.0,0.0,78.0,28.0,0.0,0.0,76.0,0.0,533.0,1393.0,299.0,0.0,15.0,0.0,0.0,649.0,0.0,81.0,1233.0,76.0,0.0,0.0,0.0,0.0,255.0,0.0,107.0,667.0,0.0,0.0,0.0,123.0,102.0,27.0,9.0,376.0,568.0,1007.0,641.0,0.0,0.0,0.0,0.0,0.0,0.0,66.0,2538.0,0.0,1536.0,0.0,0.0,21.0,0.0,0.0,401.0,598.0,1006.0,128.0,0.0,12.0,1208.0,53.0,0.0,68.0,213.0,59.0,0.0,50.0,143.0,5.0,201.0,77.0,0.0,0.0,0.0,0.0,0.0,79.0,1.0,0.0,0.0,3230.0,0.0,56.0,0.0,0.0,1032.0,0.0,116.0,196.0,38.0,0.0,91.0,0.0,14.0,0.0,5764.0,0.0,0.0,657.0,0.0,0.0,137.0,189.0,445.0,581.0,0.0,0.0,0.0,384.0,0.0,0.0,0.0,80.0,0.0,859.0,0.0,0.0,0.0,226.0,648.0,645.0,61.0,3194.0,18.0,534.0,299.0,8.0,26.0,1380.0,1.0,0.0,239.0,406.0,2077.0,0.0,0.0,2011-04-10,,2011-14,0.7883851643349176,0.67, +103,103,2.58,88.0,0.0,92.0,0.0,34.0,249.0,326.0,118.0,0.0,358.0,5811.0,0.0,33.0,711.0,357.0,33.0,91.0,187.0,2953.0,0.0,29.0,168.0,0.0,39.0,503.0,28.0,1766.0,664.0,27.0,0.0,0.0,0.0,478.0,104.0,1750.0,2295.0,0.0,119.0,0.0,0.0,201.0,0.0,105.0,420.0,1045.0,0.0,0.0,217.0,193.0,1370.0,0.0,95.0,0.0,196.0,49.0,27.0,0.0,0.0,0.0,0.0,0.0,2407.0,0.0,2279.0,234.0,0.0,0.0,0.0,2249.0,0.0,197.0,191.0,0.0,67.0,0.0,5147.0,101.0,0.0,17.0,212.0,110.0,28.0,111.0,0.0,389.0,1413.0,0.0,37.0,1.0,0.0,12.0,3339.0,0.0,0.0,260.0,72.0,351.0,777.0,111.0,4092.0,2021.0,55.0,0.0,48.0,0.0,0.0,4.0,0.0,83.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,719.0,3308.0,4793.0,0.0,30.0,628.0,1350.0,0.0,0.0,59.0,76.0,0.0,0.0,414.0,1904.0,1378.0,0.0,129.0,202.0,67.0,156.0,212.0,2227.0,0.0,5856.0,231.0,2.0,0.0,3209.0,1349.0,755.0,0.0,361.0,260.0,0.0,324.0,0.0,0.0,373.0,0.0,188.0,0.0,38.0,0.0,442.0,2062.0,122.0,0.0,53.0,19.0,0.0,0.0,73.0,0.0,597.0,1301.0,346.0,0.0,11.0,0.0,0.0,610.0,0.0,79.0,1260.0,85.0,0.0,0.0,0.0,0.0,263.0,0.0,152.0,650.0,0.0,1.0,0.0,108.0,118.0,36.0,15.0,327.0,490.0,892.0,694.0,0.0,0.0,0.0,0.0,0.0,0.0,50.0,2573.0,0.0,1352.0,0.0,0.0,28.0,0.0,1.0,368.0,587.0,909.0,125.0,3.0,18.0,1270.0,73.0,0.0,75.0,244.0,49.0,0.0,52.0,102.0,7.0,237.0,105.0,0.0,0.0,0.0,0.0,0.0,79.0,0.0,0.0,0.0,3108.0,0.0,45.0,0.0,0.0,899.0,0.0,106.0,177.0,33.0,0.0,129.0,0.0,27.0,0.0,5617.0,0.0,0.0,701.0,0.0,1.0,126.0,167.0,349.0,476.0,0.0,0.0,0.0,379.0,0.0,0.0,0.0,63.0,0.0,819.0,0.0,0.0,0.0,200.0,591.0,645.0,41.0,3086.0,13.0,550.0,299.0,7.0,14.0,1588.0,0.0,0.0,312.0,362.0,2171.0,0.0,0.0,2011-04-17,,2011-15,3.0143838832685557,1.8060000000000003, +104,104,0.01,125.0,0.0,108.0,0.0,24.0,256.0,372.0,101.0,0.0,247.0,5907.0,5.0,29.0,668.0,326.0,47.0,114.0,189.0,2787.0,0.0,35.0,159.0,4.0,69.0,469.0,51.0,2150.0,662.0,29.0,0.0,0.0,0.0,801.0,113.0,1799.0,2201.0,4.0,142.0,0.0,0.0,204.0,0.0,116.0,424.0,1050.0,0.0,0.0,294.0,196.0,1136.0,0.0,89.0,0.0,163.0,90.0,31.0,0.0,0.0,0.0,3.0,0.0,2363.0,0.0,2461.0,232.0,0.0,3.0,0.0,2277.0,0.0,201.0,182.0,0.0,90.0,0.0,4946.0,116.0,0.0,16.0,650.0,131.0,33.0,156.0,1.0,346.0,1704.0,489.0,49.0,0.0,0.0,10.0,3611.0,0.0,0.0,201.0,118.0,465.0,5504.0,141.0,3790.0,2196.0,90.0,3.0,44.0,0.0,2.0,11.0,3.0,60.0,1.0,1.0,0.0,0.0,2.0,2.0,0.0,934.0,3365.0,2910.0,0.0,22.0,573.0,1270.0,0.0,1.0,71.0,86.0,0.0,0.0,391.0,2005.0,1390.0,0.0,135.0,174.0,66.0,126.0,170.0,2343.0,0.0,4931.0,276.0,5.0,0.0,3016.0,1193.0,719.0,0.0,388.0,297.0,1.0,359.0,0.0,0.0,341.0,0.0,143.0,0.0,48.0,4.0,322.0,2562.0,84.0,0.0,52.0,21.0,1.0,0.0,64.0,0.0,575.0,1154.0,310.0,0.0,18.0,0.0,0.0,592.0,0.0,63.0,1320.0,51.0,1.0,1.0,0.0,2.0,418.0,1.0,106.0,835.0,1.0,31.0,2.0,120.0,115.0,17.0,12.0,302.0,518.0,808.0,565.0,38.0,0.0,2.0,0.0,0.0,1.0,70.0,2910.0,0.0,1441.0,0.0,2.0,54.0,0.0,1.0,541.0,610.0,918.0,137.0,0.0,12.0,1216.0,75.0,0.0,53.0,276.0,68.0,3.0,50.0,126.0,14.0,203.0,98.0,0.0,0.0,2.0,1.0,0.0,44.0,0.0,0.0,1.0,3120.0,0.0,46.0,0.0,1.0,693.0,1.0,107.0,222.0,57.0,0.0,106.0,1.0,33.0,3.0,5342.0,0.0,110.0,599.0,0.0,0.0,147.0,175.0,351.0,423.0,0.0,1.0,1.0,483.0,0.0,0.0,0.0,82.0,0.0,687.0,2.0,92.0,0.0,184.0,674.0,645.0,14.0,2848.0,11.0,424.0,389.0,11.0,20.0,1403.0,1.0,0.0,249.0,306.0,2254.0,3.0,0.0,2011-10-23,,2011-42,0.30044616528697254,0.010000000000000002, +105,105,0.0,149.0,0.0,108.0,0.0,28.0,243.0,382.0,144.0,0.0,299.0,6758.0,1.0,30.0,636.0,394.0,37.0,97.0,183.0,2930.0,0.0,34.0,158.0,3.0,42.0,559.0,45.0,2043.0,727.0,20.0,0.0,0.0,0.0,673.0,92.0,1816.0,2390.0,1.0,133.0,0.0,0.0,224.0,0.0,126.0,404.0,1107.0,0.0,0.0,294.0,194.0,1150.0,0.0,120.0,0.0,201.0,96.0,24.0,0.0,0.0,0.0,1.0,0.0,2398.0,1.0,2996.0,214.0,0.0,7.0,0.0,2313.0,0.0,203.0,222.0,0.0,80.0,0.0,5212.0,118.0,0.0,14.0,540.0,154.0,25.0,175.0,1.0,327.0,1983.0,439.0,47.0,1.0,0.0,9.0,3826.0,0.0,0.0,230.0,126.0,458.0,5345.0,115.0,4561.0,2195.0,60.0,2.0,47.0,2.0,3.0,6.0,1.0,83.0,3.0,0.0,2.0,0.0,3.0,1.0,2.0,844.0,3453.0,3199.0,0.0,21.0,634.0,1517.0,2.0,2.0,73.0,106.0,0.0,0.0,413.0,2151.0,1345.0,0.0,148.0,191.0,68.0,150.0,208.0,2384.0,0.0,5242.0,321.0,3.0,0.0,3206.0,1327.0,747.0,0.0,413.0,336.0,1.0,351.0,0.0,0.0,285.0,0.0,125.0,0.0,68.0,8.0,383.0,2467.0,114.0,0.0,64.0,26.0,1.0,0.0,55.0,0.0,515.0,1282.0,287.0,0.0,7.0,0.0,0.0,589.0,1.0,94.0,1432.0,84.0,1.0,1.0,0.0,1.0,508.0,0.0,129.0,757.0,1.0,25.0,2.0,133.0,108.0,27.0,12.0,314.0,504.0,894.0,652.0,45.0,0.0,1.0,0.0,0.0,0.0,70.0,3171.0,0.0,1643.0,0.0,2.0,62.0,0.0,0.0,555.0,629.0,1047.0,177.0,0.0,15.0,1151.0,75.0,0.0,53.0,273.0,67.0,3.0,66.0,129.0,5.0,192.0,92.0,0.0,0.0,5.0,1.0,0.0,35.0,1.0,0.0,2.0,3544.0,0.0,61.0,0.0,2.0,789.0,0.0,101.0,223.0,61.0,0.0,141.0,1.0,32.0,1.0,5884.0,0.0,184.0,638.0,0.0,0.0,113.0,157.0,450.0,376.0,0.0,2.0,0.0,418.0,0.0,0.0,0.0,86.0,0.0,706.0,0.0,128.0,0.0,202.0,620.0,636.0,18.0,3056.0,19.0,423.0,457.0,9.0,29.0,1493.0,2.0,0.0,284.0,444.0,2306.0,3.0,2.0,2011-10-30,,2011-43,0.11791461752547505,0.002, +106,106,0.0,175.0,0.0,98.0,0.0,37.0,244.0,416.0,144.0,0.0,291.0,6034.0,3.0,41.0,761.0,454.0,35.0,98.0,187.0,3175.0,0.0,43.0,176.0,8.0,52.0,647.0,56.0,2100.0,781.0,29.0,0.0,0.0,0.0,644.0,130.0,1946.0,2639.0,0.0,180.0,0.0,0.0,192.0,0.0,153.0,410.0,1126.0,0.0,0.0,277.0,196.0,1104.0,0.0,95.0,0.0,225.0,103.0,36.0,0.0,0.0,0.0,2.0,0.0,2666.0,1.0,2639.0,411.0,0.0,7.0,0.0,2418.0,0.0,210.0,193.0,1.0,126.0,0.0,5562.0,130.0,0.0,18.0,539.0,170.0,24.0,161.0,1.0,413.0,1853.0,549.0,45.0,0.0,0.0,8.0,4301.0,0.0,0.0,259.0,139.0,471.0,5793.0,115.0,4896.0,2366.0,58.0,1.0,65.0,3.0,0.0,6.0,1.0,85.0,1.0,0.0,1.0,0.0,3.0,1.0,1.0,933.0,3829.0,3398.0,0.0,29.0,694.0,1560.0,0.0,3.0,100.0,113.0,0.0,0.0,418.0,2360.0,1465.0,0.0,170.0,192.0,50.0,130.0,179.0,2491.0,0.0,5334.0,336.0,3.0,0.0,3555.0,1393.0,827.0,0.0,419.0,315.0,1.0,393.0,0.0,0.0,343.0,0.0,129.0,0.0,71.0,5.0,372.0,2194.0,108.0,0.0,63.0,17.0,1.0,0.0,68.0,0.0,637.0,1479.0,319.0,0.0,5.0,0.0,0.0,629.0,0.0,87.0,1562.0,89.0,1.0,0.0,0.0,1.0,431.0,0.0,162.0,842.0,1.0,31.0,1.0,177.0,105.0,37.0,16.0,276.0,587.0,975.0,643.0,41.0,0.0,1.0,0.0,0.0,1.0,63.0,3273.0,0.0,1616.0,0.0,1.0,22.0,0.0,0.0,564.0,693.0,1046.0,175.0,0.0,22.0,1292.0,113.0,0.0,64.0,246.0,67.0,1.0,61.0,162.0,9.0,243.0,84.0,0.0,0.0,3.0,0.0,0.0,40.0,0.0,0.0,4.0,3702.0,0.0,85.0,0.0,1.0,805.0,0.0,87.0,197.0,51.0,0.0,132.0,1.0,14.0,1.0,6082.0,0.0,62.0,686.0,0.0,0.0,134.0,200.0,472.0,319.0,0.0,0.0,0.0,531.0,0.0,0.0,0.0,66.0,0.0,697.0,0.0,111.0,0.0,316.0,635.0,696.0,16.0,3194.0,16.0,486.0,476.0,8.0,34.0,1602.0,0.0,0.0,341.0,385.0,2520.0,1.0,1.0,2011-11-06,,2011-44,0.014264955883321662,0.020000000000000004, +107,107,0.0,101.0,0.0,120.0,0.0,35.0,296.0,506.0,150.0,1.0,293.0,6674.0,5.0,39.0,793.0,398.0,39.0,118.0,207.0,3340.0,0.0,38.0,128.0,5.0,40.0,638.0,52.0,2296.0,757.0,27.0,0.0,0.0,0.0,703.0,112.0,2001.0,2743.0,2.0,1220.0,0.0,33.0,233.0,0.0,170.0,470.0,1170.0,0.0,0.0,313.0,229.0,1186.0,0.0,111.0,0.0,247.0,122.0,37.0,0.0,0.0,0.0,0.0,0.0,3119.0,2.0,3103.0,390.0,0.0,7.0,0.0,2782.0,0.0,203.0,199.0,1.0,124.0,0.0,5882.0,126.0,0.0,12.0,544.0,173.0,21.0,207.0,1.0,520.0,2197.0,500.0,40.0,1.0,0.0,9.0,4514.0,0.0,0.0,268.0,195.0,694.0,5542.0,95.0,3620.0,2520.0,61.0,0.0,48.0,0.0,3.0,4.0,2.0,97.0,3.0,3.0,1.0,0.0,2.0,2.0,2.0,1112.0,4242.0,3911.0,0.0,24.0,779.0,1582.0,0.0,1.0,117.0,135.0,0.0,0.0,511.0,2416.0,1683.0,0.0,149.0,230.0,45.0,141.0,210.0,2555.0,1.0,6140.0,344.0,9.0,0.0,3637.0,1374.0,874.0,0.0,428.0,384.0,1.0,521.0,0.0,0.0,367.0,0.0,132.0,0.0,59.0,9.0,383.0,5454.0,128.0,0.0,57.0,25.0,0.0,0.0,63.0,1.0,625.0,1634.0,379.0,0.0,10.0,0.0,0.0,683.0,0.0,74.0,1507.0,107.0,0.0,0.0,0.0,2.0,429.0,1.0,130.0,858.0,1.0,21.0,1.0,115.0,112.0,40.0,11.0,336.0,687.0,1149.0,768.0,50.0,0.0,0.0,0.0,0.0,0.0,75.0,3633.0,0.0,1937.0,1.0,2.0,21.0,0.0,0.0,737.0,698.0,1059.0,202.0,0.0,24.0,1379.0,79.0,0.0,67.0,350.0,77.0,1.0,58.0,170.0,9.0,223.0,103.0,0.0,0.0,1.0,0.0,2.0,31.0,0.0,0.0,3.0,4207.0,0.0,58.0,0.0,1.0,806.0,0.0,121.0,274.0,63.0,1.0,126.0,2.0,28.0,1.0,6329.0,0.0,78.0,765.0,0.0,0.0,178.0,225.0,502.0,533.0,0.0,1.0,1.0,554.0,0.0,0.0,0.0,75.0,0.0,821.0,0.0,110.0,0.0,161.0,755.0,668.0,25.0,3502.0,18.0,480.0,453.0,1.0,59.0,1764.0,0.0,0.0,297.0,446.0,2746.0,10.0,0.0,2011-11-13,,2011-45,-0.1464504330359837,0.020000000000000004, +108,108,0.0,103.0,0.0,109.0,0.0,37.0,302.0,468.0,136.0,0.0,331.0,6670.0,7.0,34.0,780.0,415.0,35.0,103.0,162.0,3424.0,0.0,28.0,146.0,11.0,37.0,669.0,54.0,2330.0,776.0,23.0,0.0,0.0,0.0,644.0,74.0,1858.0,2643.0,0.0,123.0,0.0,70.0,209.0,0.0,129.0,447.0,1005.0,0.0,0.0,316.0,242.0,1140.0,0.0,126.0,1.0,216.0,112.0,37.0,0.0,0.0,0.0,1.0,0.0,2997.0,2.0,2727.0,234.0,0.0,14.0,0.0,2706.0,0.0,217.0,200.0,0.0,90.0,0.0,5947.0,114.0,1.0,16.0,560.0,173.0,27.0,177.0,0.0,474.0,2152.0,486.0,45.0,0.0,0.0,6.0,4337.0,0.0,0.0,259.0,141.0,527.0,5560.0,88.0,4009.0,2490.0,49.0,1.0,53.0,3.0,1.0,5.0,0.0,94.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1007.0,4197.0,3913.0,0.0,28.0,702.0,1534.0,0.0,5.0,115.0,111.0,0.0,0.0,580.0,2392.0,1683.0,0.0,147.0,209.0,53.0,130.0,230.0,2484.0,0.0,6053.0,297.0,1.0,0.0,3644.0,1428.0,861.0,0.0,369.0,324.0,0.0,494.0,0.0,0.0,361.0,0.0,131.0,0.0,71.0,17.0,431.0,3690.0,111.0,0.0,67.0,21.0,1.0,0.0,53.0,0.0,629.0,1583.0,437.0,0.0,12.0,0.0,0.0,671.0,0.0,57.0,1507.0,100.0,2.0,1.0,0.0,0.0,467.0,0.0,145.0,889.0,1.0,25.0,1.0,130.0,119.0,23.0,10.0,306.0,687.0,1064.0,725.0,52.0,0.0,1.0,0.0,1.0,0.0,52.0,3441.0,0.0,1859.0,1.0,0.0,155.0,0.0,0.0,603.0,718.0,1121.0,163.0,0.0,18.0,1447.0,71.0,0.0,65.0,284.0,112.0,1.0,72.0,165.0,10.0,240.0,120.0,0.0,0.0,2.0,0.0,1.0,33.0,0.0,0.0,8.0,3827.0,0.0,51.0,0.0,5.0,778.0,1.0,147.0,299.0,77.0,0.0,113.0,0.0,24.0,0.0,6273.0,0.0,91.0,788.0,0.0,0.0,164.0,253.0,515.0,489.0,0.0,0.0,0.0,573.0,0.0,0.0,0.0,79.0,0.0,853.0,3.0,122.0,0.0,142.0,768.0,770.0,9.0,3407.0,19.0,471.0,484.0,6.0,29.0,1672.0,0.0,0.0,285.0,461.0,2712.0,11.0,1.0,2011-11-20,,2011-46,0.2659351759344162,0.0, +109,109,0.02,83.0,0.0,129.0,0.0,37.0,274.0,403.0,164.0,0.0,554.0,6954.0,4.0,43.0,739.0,420.0,36.0,97.0,187.0,3515.0,0.0,28.0,163.0,19.0,53.0,613.0,53.0,2150.0,743.0,33.0,0.0,0.0,0.0,650.0,71.0,1795.0,2602.0,0.0,129.0,0.0,76.0,369.0,0.0,128.0,446.0,1036.0,1.0,0.0,292.0,305.0,1160.0,0.0,139.0,0.0,236.0,128.0,44.0,0.0,0.0,0.0,0.0,0.0,3007.0,4.0,2628.0,253.0,0.0,20.0,0.0,2797.0,0.0,269.0,200.0,0.0,102.0,0.0,5961.0,155.0,0.0,14.0,543.0,203.0,36.0,138.0,1.0,494.0,2051.0,585.0,28.0,0.0,0.0,6.0,4161.0,0.0,0.0,256.0,163.0,505.0,5461.0,103.0,3540.0,2485.0,56.0,1.0,49.0,4.0,2.0,9.0,1.0,115.0,1.0,0.0,4.0,0.0,2.0,0.0,3.0,951.0,3983.0,3933.0,0.0,25.0,759.0,1572.0,0.0,5.0,71.0,127.0,0.0,0.0,463.0,2231.0,1661.0,0.0,178.0,285.0,46.0,161.0,265.0,2651.0,1.0,6408.0,349.0,4.0,0.0,3601.0,1386.0,793.0,0.0,431.0,365.0,2.0,435.0,0.0,0.0,323.0,0.0,140.0,0.0,71.0,19.0,385.0,2978.0,137.0,0.0,67.0,22.0,0.0,0.0,61.0,0.0,682.0,1570.0,395.0,0.0,21.0,0.0,0.0,586.0,0.0,64.0,1445.0,99.0,0.0,0.0,0.0,0.0,431.0,0.0,128.0,827.0,4.0,29.0,1.0,185.0,134.0,34.0,10.0,388.0,644.0,1111.0,704.0,44.0,0.0,0.0,0.0,0.0,1.0,50.0,3597.0,0.0,1791.0,1.0,1.0,24.0,0.0,0.0,630.0,707.0,1079.0,142.0,0.0,12.0,1388.0,88.0,0.0,59.0,289.0,93.0,1.0,62.0,166.0,14.0,198.0,108.0,0.0,0.0,5.0,1.0,0.0,44.0,0.0,0.0,16.0,3425.0,1.0,72.0,0.0,5.0,750.0,0.0,113.0,245.0,86.0,0.0,142.0,2.0,28.0,0.0,6352.0,0.0,100.0,698.0,0.0,1.0,153.0,210.0,482.0,401.0,0.0,1.0,0.0,516.0,0.0,0.0,0.0,77.0,0.0,813.0,0.0,109.0,0.0,164.0,806.0,700.0,11.0,3575.0,22.0,476.0,578.0,5.0,27.0,1784.0,3.0,0.0,318.0,478.0,2602.0,12.0,2.0,2011-11-27,,2011-47,-0.03720376969648953,0.014000000000000002, +110,110,0.01,86.0,0.0,175.0,0.0,42.0,355.0,423.0,116.0,0.0,335.0,7155.0,8.0,39.0,805.0,457.0,38.0,117.0,168.0,3406.0,0.0,35.0,154.0,18.0,38.0,618.0,77.0,2118.0,748.0,17.0,0.0,0.0,0.0,804.0,129.0,1868.0,2547.0,0.0,165.0,0.0,65.0,207.0,0.0,141.0,375.0,986.0,0.0,0.0,250.0,196.0,1140.0,0.0,148.0,0.0,233.0,125.0,44.0,0.0,0.0,0.0,2.0,0.0,3026.0,1.0,2554.0,273.0,0.0,29.0,0.0,2679.0,0.0,233.0,197.0,0.0,91.0,0.0,5005.0,105.0,0.0,15.0,630.0,185.0,34.0,201.0,3.0,660.0,1832.0,957.0,36.0,0.0,0.0,12.0,4311.0,0.0,0.0,247.0,129.0,443.0,5142.0,115.0,3964.0,2520.0,48.0,0.0,62.0,9.0,3.0,5.0,2.0,94.0,5.0,4.0,2.0,0.0,2.0,2.0,3.0,1067.0,4144.0,4111.0,0.0,25.0,881.0,1616.0,0.0,8.0,98.0,108.0,0.0,0.0,517.0,2268.0,1679.0,0.0,154.0,257.0,42.0,132.0,238.0,2740.0,1.0,6873.0,334.0,8.0,0.0,3480.0,1400.0,754.0,0.0,402.0,326.0,4.0,476.0,0.0,0.0,376.0,0.0,158.0,0.0,62.0,31.0,357.0,2594.0,108.0,0.0,59.0,28.0,0.0,0.0,60.0,0.0,665.0,1566.0,429.0,0.0,8.0,0.0,0.0,684.0,0.0,96.0,1502.0,101.0,3.0,2.0,0.0,3.0,536.0,0.0,153.0,797.0,1.0,21.0,1.0,170.0,148.0,28.0,13.0,353.0,622.0,1071.0,674.0,50.0,0.0,1.0,0.0,0.0,1.0,40.0,3544.0,0.0,1915.0,1.0,0.0,32.0,0.0,0.0,545.0,708.0,1006.0,169.0,0.0,13.0,1472.0,86.0,0.0,76.0,268.0,72.0,1.0,70.0,181.0,5.0,206.0,115.0,0.0,0.0,8.0,1.0,1.0,32.0,1.0,0.0,4.0,3368.0,0.0,48.0,0.0,2.0,800.0,0.0,102.0,262.0,84.0,1.0,135.0,2.0,16.0,1.0,6402.0,0.0,152.0,676.0,0.0,0.0,163.0,207.0,468.0,381.0,0.0,0.0,0.0,471.0,0.0,0.0,0.0,70.0,0.0,770.0,1.0,103.0,0.0,327.0,787.0,724.0,10.0,3590.0,19.0,482.0,574.0,9.0,24.0,1694.0,5.0,0.0,272.0,491.0,2581.0,11.0,7.0,2011-12-04,,2011-48,0.05711299523826696,0.030000000000000006, +111,111,0.03,81.0,0.0,122.0,0.0,38.0,363.0,420.0,138.0,0.0,313.0,7130.0,12.0,25.0,730.0,541.0,43.0,87.0,198.0,3400.0,0.0,49.0,132.0,13.0,65.0,575.0,50.0,2040.0,762.0,34.0,0.0,0.0,0.0,630.0,75.0,1726.0,2480.0,0.0,171.0,0.0,67.0,189.0,0.0,148.0,455.0,1139.0,0.0,0.0,254.0,238.0,1110.0,0.0,169.0,0.0,220.0,118.0,45.0,0.0,0.0,0.0,1.0,0.0,3014.0,0.0,2789.0,283.0,0.0,25.0,0.0,2652.0,0.0,212.0,217.0,0.0,98.0,0.0,5027.0,131.0,0.0,16.0,589.0,199.0,31.0,232.0,2.0,373.0,1976.0,752.0,39.0,0.0,0.0,17.0,4294.0,0.0,0.0,241.0,143.0,480.0,5237.0,107.0,4102.0,2630.0,64.0,1.0,60.0,2.0,0.0,10.0,0.0,79.0,3.0,3.0,0.0,0.0,2.0,0.0,9.0,930.0,3952.0,4286.0,0.0,28.0,682.0,1619.0,0.0,6.0,97.0,142.0,0.0,0.0,529.0,2176.0,1602.0,0.0,192.0,231.0,42.0,138.0,235.0,2530.0,0.0,7886.0,336.0,5.0,0.0,3333.0,1389.0,774.0,0.0,420.0,331.0,4.0,443.0,0.0,0.0,390.0,0.0,136.0,0.0,73.0,33.0,458.0,2450.0,149.0,0.0,51.0,21.0,1.0,0.0,66.0,0.0,672.0,1615.0,422.0,0.0,18.0,0.0,0.0,644.0,0.0,72.0,1548.0,88.0,5.0,0.0,0.0,1.0,519.0,0.0,132.0,788.0,0.0,15.0,0.0,215.0,143.0,43.0,15.0,342.0,627.0,1041.0,716.0,55.0,0.0,0.0,0.0,0.0,0.0,55.0,3727.0,0.0,2041.0,0.0,0.0,33.0,0.0,0.0,524.0,696.0,960.0,175.0,0.0,18.0,1436.0,108.0,2.0,56.0,226.0,101.0,1.0,63.0,198.0,9.0,191.0,140.0,0.0,0.0,6.0,0.0,1.0,34.0,0.0,0.0,5.0,3620.0,0.0,64.0,0.0,3.0,698.0,1.0,130.0,283.0,74.0,0.0,107.0,0.0,24.0,0.0,5977.0,0.0,597.0,648.0,0.0,0.0,158.0,172.0,523.0,345.0,0.0,0.0,2.0,499.0,0.0,0.0,0.0,89.0,0.0,726.0,0.0,141.0,0.0,186.0,716.0,742.0,12.0,3701.0,29.0,502.0,529.0,13.0,25.0,1705.0,0.0,0.0,288.0,471.0,2599.0,6.0,4.0,2011-12-11,,2011-49,0.45037209666129385,0.013999999999999999, +112,112,0.02,66.0,0.0,117.0,0.0,53.0,409.0,386.0,128.0,0.0,313.0,7332.0,4.0,39.0,737.0,456.0,31.0,86.0,154.0,6100.0,0.0,28.0,128.0,11.0,29.0,574.0,59.0,2059.0,704.0,33.0,0.0,0.0,2.0,673.0,94.0,1660.0,2515.0,1.0,108.0,0.0,81.0,193.0,0.0,120.0,429.0,1125.0,0.0,0.0,228.0,216.0,1156.0,0.0,158.0,0.0,219.0,115.0,28.0,0.0,0.0,0.0,0.0,0.0,2737.0,2.0,2862.0,242.0,0.0,15.0,0.0,2832.0,0.0,190.0,195.0,2.0,76.0,0.0,4977.0,114.0,0.0,12.0,577.0,170.0,32.0,379.0,1.0,386.0,1962.0,703.0,45.0,0.0,0.0,11.0,4132.0,0.0,0.0,251.0,145.0,416.0,5349.0,99.0,4346.0,2543.0,55.0,0.0,52.0,2.0,2.0,4.0,0.0,82.0,3.0,3.0,2.0,0.0,4.0,2.0,6.0,860.0,3931.0,3972.0,0.0,22.0,667.0,1694.0,0.0,6.0,155.0,156.0,0.0,0.0,475.0,2236.0,1581.0,0.0,162.0,223.0,24.0,136.0,213.0,2576.0,0.0,8302.0,392.0,3.0,0.0,3276.0,1502.0,823.0,0.0,362.0,288.0,2.0,388.0,0.0,0.0,357.0,0.0,133.0,0.0,66.0,23.0,412.0,2482.0,123.0,0.0,50.0,20.0,0.0,0.0,48.0,0.0,611.0,1577.0,429.0,0.0,9.0,0.0,0.0,691.0,0.0,70.0,1430.0,71.0,2.0,0.0,0.0,0.0,409.0,0.0,127.0,666.0,2.0,21.0,1.0,209.0,122.0,28.0,15.0,344.0,523.0,1063.0,602.0,49.0,0.0,0.0,0.0,0.0,0.0,60.0,3636.0,0.0,1744.0,1.0,1.0,36.0,0.0,0.0,499.0,732.0,976.0,164.0,2.0,7.0,1453.0,84.0,1.0,73.0,219.0,96.0,0.0,53.0,155.0,5.0,209.0,144.0,0.0,0.0,7.0,0.0,3.0,36.0,0.0,0.0,32.0,3342.0,0.0,57.0,0.0,6.0,685.0,0.0,90.0,250.0,89.0,0.0,126.0,0.0,12.0,1.0,6162.0,0.0,96.0,719.0,0.0,0.0,141.0,214.0,449.0,355.0,0.0,0.0,1.0,456.0,0.0,0.0,0.0,78.0,0.0,804.0,2.0,118.0,0.0,195.0,675.0,654.0,12.0,3546.0,17.0,457.0,526.0,12.0,27.0,1710.0,4.0,0.0,249.0,421.0,2540.0,12.0,7.0,2011-12-18,,2011-50,-0.3100018953292274,0.30000000000000004, +113,113,0.02,36.0,0.0,53.0,0.0,38.0,211.0,247.0,64.0,0.0,187.0,4278.0,12.0,28.0,322.0,238.0,14.0,58.0,91.0,2539.0,0.0,19.0,80.0,5.0,32.0,293.0,28.0,993.0,397.0,13.0,0.0,0.0,0.0,1491.0,84.0,909.0,1326.0,0.0,95.0,0.0,30.0,102.0,0.0,86.0,237.0,573.0,0.0,0.0,139.0,119.0,648.0,0.0,66.0,0.0,106.0,59.0,12.0,0.0,0.0,0.0,2.0,0.0,1551.0,0.0,1571.0,115.0,0.0,6.0,0.0,1564.0,0.0,112.0,113.0,1.0,38.0,0.0,2900.0,62.0,0.0,9.0,346.0,84.0,12.0,75.0,0.0,214.0,980.0,334.0,15.0,1.0,0.0,6.0,2461.0,0.0,0.0,141.0,57.0,213.0,2775.0,40.0,2369.0,1333.0,20.0,0.0,35.0,2.0,0.0,6.0,0.0,34.0,2.0,1.0,0.0,0.0,4.0,1.0,2.0,452.0,2028.0,1849.0,0.0,11.0,370.0,988.0,0.0,4.0,64.0,48.0,0.0,0.0,277.0,1394.0,872.0,0.0,96.0,124.0,22.0,75.0,125.0,1567.0,0.0,4945.0,193.0,1.0,0.0,1771.0,782.0,401.0,0.0,198.0,175.0,1.0,216.0,0.0,0.0,148.0,59.0,77.0,0.0,34.0,15.0,229.0,1259.0,59.0,0.0,33.0,7.0,1.0,0.0,38.0,0.0,297.0,807.0,279.0,0.0,9.0,0.0,0.0,334.0,0.0,42.0,1016.0,41.0,0.0,0.0,0.0,0.0,243.0,0.0,94.0,396.0,1.0,5.0,0.0,74.0,66.0,15.0,5.0,165.0,331.0,529.0,405.0,33.0,0.0,0.0,0.0,0.0,1.0,28.0,2115.0,0.0,961.0,0.0,0.0,23.0,0.0,0.0,260.0,400.0,502.0,94.0,0.0,4.0,837.0,49.0,1.0,30.0,97.0,43.0,0.0,38.0,81.0,6.0,106.0,64.0,0.0,0.0,4.0,1.0,1.0,13.0,0.0,0.0,3.0,1638.0,0.0,35.0,0.0,1.0,412.0,0.0,67.0,132.0,46.0,0.0,97.0,0.0,6.0,1.0,3444.0,0.0,164.0,371.0,0.0,0.0,83.0,92.0,225.0,200.0,0.0,1.0,0.0,239.0,0.0,0.0,0.0,41.0,0.0,394.0,0.0,61.0,0.0,78.0,388.0,402.0,6.0,1922.0,8.0,240.0,313.0,3.0,17.0,1124.0,1.0,0.0,115.0,273.0,1540.0,6.0,2.0,2011-12-25,,2011-51,0.43649825811805254,0.8959999999999999, +114,114,0.02,73.0,0.0,78.0,0.0,56.0,286.0,286.0,96.0,0.0,287.0,7347.0,5.0,30.0,547.0,614.0,41.0,86.0,128.0,3674.0,0.0,43.0,199.0,2.0,41.0,496.0,59.0,1618.0,519.0,24.0,0.0,0.0,0.0,330.0,78.0,1514.0,1984.0,0.0,103.0,0.0,42.0,172.0,0.0,126.0,263.0,999.0,1.0,0.0,131.0,178.0,1283.0,0.0,198.0,0.0,185.0,69.0,29.0,0.0,0.0,0.0,0.0,0.0,2172.0,2.0,2365.0,223.0,0.0,13.0,0.0,2343.0,0.0,198.0,185.0,1.0,67.0,0.0,5406.0,97.0,0.0,18.0,575.0,114.0,29.0,137.0,3.0,322.0,1062.0,602.0,37.0,1.0,0.0,9.0,3648.0,0.0,0.0,174.0,129.0,246.0,4046.0,86.0,3597.0,1712.0,57.0,0.0,43.0,1.0,4.0,8.0,0.0,62.0,6.0,3.0,1.0,0.0,3.0,0.0,1.0,570.0,2758.0,2262.0,0.0,21.0,512.0,1532.0,0.0,2.0,75.0,79.0,0.0,0.0,401.0,2382.0,1179.0,0.0,116.0,167.0,39.0,126.0,178.0,2313.0,1.0,6681.0,378.0,0.0,0.0,3147.0,1501.0,578.0,0.0,282.0,232.0,1.0,208.0,0.0,0.0,290.0,12.0,146.0,0.0,51.0,19.0,277.0,1477.0,87.0,0.0,40.0,20.0,1.0,0.0,67.0,0.0,501.0,1121.0,281.0,0.0,9.0,0.0,0.0,502.0,0.0,85.0,1316.0,77.0,2.0,0.0,0.0,1.0,310.0,0.0,111.0,559.0,0.0,10.0,2.0,85.0,97.0,37.0,12.0,255.0,405.0,849.0,493.0,26.0,0.0,0.0,0.0,0.0,0.0,37.0,2926.0,0.0,1330.0,1.0,1.0,44.0,0.0,0.0,333.0,569.0,807.0,167.0,0.0,14.0,863.0,72.0,1.0,57.0,159.0,61.0,0.0,50.0,83.0,8.0,188.0,121.0,0.0,0.0,1.0,2.0,0.0,30.0,1.0,0.0,4.0,2622.0,0.0,44.0,0.0,7.0,785.0,1.0,59.0,186.0,62.0,0.0,135.0,2.0,15.0,0.0,5099.0,0.0,115.0,561.0,0.0,0.0,76.0,156.0,410.0,312.0,0.0,0.0,0.0,364.0,0.0,42.0,0.0,59.0,0.0,704.0,0.0,105.0,0.0,151.0,669.0,732.0,6.0,2673.0,34.0,416.0,445.0,12.0,18.0,1645.0,1.0,0.0,164.0,373.0,2040.0,12.0,1.0,2012-01-01,,2011-52,-0.5238007377708415,0.388, +115,115,0.02,86.0,0.0,135.0,0.0,91.0,472.0,381.33333333333326,192.0,0.0,387.0,9343.0,9.0,35.0,895.0,675.0,34.0,106.0,209.0,4728.0,0.0,48.0,221.0,12.0,80.0,605.0,62.0,2599.0,931.0,49.0,0.0,0.0,0.0,717.0,93.0,1824.0,2880.0,1.0,143.0,0.0,93.0,283.0,0.0,149.0,484.0,1423.0,1.0,0.0,352.0,288.0,1645.0,0.0,202.0,0.0,282.0,154.0,53.0,0.0,0.0,0.0,1.0,0.0,3193.0,2.0,3049.0,281.0,0.0,30.0,2.0,3235.0,0.0,288.0,246.0,1.0,106.0,0.0,6665.0,125.0,2.0,12.0,703.0,208.0,44.0,202.0,2.0,452.0,1930.0,579.0,50.0,0.0,0.0,5.0,4993.0,0.0,0.0,294.0,172.0,496.0,6319.0,180.0,4694.0,2638.0,112.0,1.0,74.0,1.0,0.0,1.0,0.0,100.0,4.0,0.0,0.0,0.0,1.0,0.0,4.0,1024.0,3862.0,3496.0,0.0,35.0,814.0,2074.0,0.0,7.0,134.0,148.0,0.0,0.0,658.0,2767.0,1863.0,0.0,169.0,246.0,58.0,174.0,272.0,3000.0,0.0,9456.0,457.0,4.0,0.0,4070.0,1721.0,909.0,0.0,515.0,394.0,4.0,445.0,0.0,0.0,422.0,34.0,165.0,0.0,63.0,26.0,341.0,2323.0,177.0,0.0,55.0,25.0,0.0,0.0,76.0,0.0,757.0,1793.0,415.0,8.0,12.0,0.0,0.0,738.0,0.0,92.0,1772.0,100.0,1.0,2.0,0.0,0.0,428.0,0.0,135.0,929.0,2.0,22.0,0.0,198.0,167.0,36.0,15.0,448.0,697.0,1277.0,534.5,59.0,0.0,0.0,0.0,0.0,1.0,60.0,4094.0,0.0,1870.0,0.0,1.0,37.0,0.0,0.0,652.0,942.0,1236.0,209.0,1.0,6.0,1509.0,94.0,0.0,61.0,279.0,112.0,0.0,98.0,100.0,12.0,312.0,141.0,0.0,0.0,7.0,2.0,0.0,32.0,0.0,0.0,6.0,3686.0,0.0,70.0,0.0,3.0,928.0,2.0,147.0,226.0,71.0,0.0,165.0,0.0,21.0,0.0,6765.0,0.0,460.0,835.0,0.0,0.0,171.0,268.0,664.0,408.0,0.0,2.0,1.0,559.0,0.0,38.0,0.0,95.0,0.0,924.0,1.0,145.0,0.0,208.0,717.0,860.0,11.0,3791.0,19.0,593.0,724.0,7.0,40.0,1891.0,2.0,0.0,341.0,524.0,2956.0,13.0,4.0,2012-01-08,,2012-1,-0.13119554455929006,2.0479999999999996, +116,116,0.03,85.0,0.0,135.0,0.0,96.0,536.0,476.66666666666663,177.0,0.0,374.0,7173.0,11.0,43.0,914.0,514.0,43.0,114.0,212.0,4321.0,0.0,65.0,206.0,12.0,49.0,716.0,60.0,2701.0,892.0,27.0,0.0,0.0,0.0,957.0,92.0,1667.0,3086.0,0.0,89.0,0.0,105.0,260.0,0.0,172.0,560.0,1272.0,1.0,0.0,384.0,334.0,1515.0,0.0,211.0,0.0,352.0,137.0,45.0,0.0,0.0,0.0,0.0,0.0,3389.0,3.0,3009.0,399.0,0.0,31.0,0.0,3234.0,0.0,256.0,224.0,0.0,142.0,0.0,5494.0,137.0,0.0,13.0,538.0,244.0,38.0,238.0,1.0,360.0,2433.0,640.0,50.0,0.0,0.0,17.0,4802.0,0.0,0.0,298.0,149.0,571.0,5879.0,209.0,4250.0,3083.0,71.0,2.0,61.0,3.0,1.0,12.0,2.0,108.0,5.0,2.0,0.0,0.0,7.0,0.0,4.0,1264.0,4714.0,4612.0,0.0,23.0,896.0,1931.0,0.0,7.0,114.0,157.0,0.0,0.0,593.0,2601.0,2056.0,0.0,202.0,300.0,58.0,162.0,290.0,3078.0,0.0,8892.0,313.0,3.0,0.0,4031.0,1558.0,900.0,0.0,500.0,400.0,3.0,551.0,0.0,0.0,370.0,25.0,142.0,0.0,65.0,31.0,405.0,2764.0,169.0,0.0,100.0,32.0,0.0,0.0,84.0,1.0,756.0,1891.0,499.0,0.0,13.0,0.0,0.0,860.0,0.0,85.0,1925.0,103.0,5.0,2.0,0.0,0.0,587.0,0.0,171.0,988.0,0.0,28.0,2.0,228.0,159.0,33.0,8.0,405.0,728.0,1222.0,576.0,54.0,0.0,1.0,0.0,1.0,0.0,74.0,4152.0,0.0,1944.0,0.0,1.0,28.0,0.0,0.0,761.0,1037.0,1345.0,205.0,0.0,19.0,1694.0,98.0,0.0,51.0,293.0,117.0,1.0,108.0,117.0,8.0,271.0,195.0,0.0,0.0,6.0,0.0,3.0,30.0,1.0,0.0,17.0,4257.0,0.0,48.0,0.0,10.0,914.0,0.0,137.0,262.0,77.0,0.0,160.0,0.0,19.0,1.0,6990.0,0.0,127.0,862.0,0.0,0.0,183.0,280.0,684.0,486.0,0.0,4.0,1.0,619.0,0.0,37.0,0.0,112.0,0.0,997.0,5.0,180.0,0.0,209.0,733.0,832.0,16.0,4130.0,52.0,626.0,632.0,12.0,32.0,1935.0,3.0,0.0,369.0,571.0,3410.0,10.0,6.0,2012-01-15,,2012-2,-1.2091824729917668,0.574, +117,117,0.05,101.0,0.0,147.0,0.0,90.0,500.0,572.0,190.0,0.0,420.0,6551.0,9.0,39.0,1051.0,549.0,51.0,111.0,225.0,4422.0,0.0,75.0,196.0,19.0,86.0,648.0,57.0,2823.0,814.0,32.0,0.0,0.0,0.0,1087.0,97.0,1606.0,3130.0,0.0,89.0,0.0,58.0,219.0,0.0,132.0,571.0,2823.0,0.0,0.0,371.0,328.0,1569.0,0.0,194.0,0.0,268.0,179.0,33.0,0.0,0.0,0.0,1.0,0.0,3632.0,2.0,3089.0,309.0,0.0,40.0,0.0,3072.0,0.0,238.0,237.0,0.0,107.0,0.0,5833.0,133.0,0.0,7.0,534.0,236.0,33.0,221.0,1.0,408.0,2218.0,476.0,29.0,1.0,0.0,13.0,4992.0,0.0,0.0,324.0,170.0,631.0,5450.0,254.0,5071.0,3252.0,78.0,0.0,69.0,4.0,2.0,12.0,0.0,108.0,1.0,3.0,3.0,0.0,7.0,1.0,8.0,1212.0,4438.0,4383.0,0.0,20.0,978.0,1946.0,0.0,11.0,159.0,171.0,0.0,0.0,693.0,2643.0,2124.0,0.0,180.0,280.0,52.0,157.0,299.0,3052.0,1.0,8550.0,363.0,3.0,3.0,3844.0,1891.0,889.0,0.0,558.0,364.0,3.0,592.0,0.0,0.0,421.0,28.0,160.0,0.0,79.0,28.0,460.0,3082.0,163.0,0.0,106.0,41.0,0.0,0.0,93.0,0.0,841.0,2090.0,561.0,0.0,10.0,0.0,0.0,894.0,0.0,98.0,1824.0,130.0,2.0,1.0,0.0,3.0,727.0,1.0,130.0,919.0,2.0,30.0,0.0,221.0,166.0,35.0,16.0,359.0,751.0,1355.0,617.5,52.0,0.0,0.0,0.0,0.0,0.0,84.0,4267.0,0.0,1865.0,0.0,0.0,23.0,0.0,1.0,752.0,1135.0,1480.0,182.0,0.0,15.0,1721.0,106.0,0.0,60.0,329.0,114.0,1.0,109.0,134.0,6.0,288.0,246.0,0.0,0.0,6.0,2.0,0.0,32.0,0.0,0.0,9.0,4197.0,0.0,73.0,0.0,2.0,824.0,0.0,169.0,246.0,52.0,1.0,156.0,0.0,29.0,1.0,6866.0,0.0,253.0,816.0,0.0,0.0,197.0,293.0,766.0,610.0,0.0,0.0,0.0,581.0,0.0,22.0,0.0,120.0,0.0,1008.0,1.0,143.0,0.0,159.0,843.0,827.0,22.0,3866.0,23.0,575.0,522.0,8.0,40.0,1884.0,0.0,0.0,375.0,463.0,3313.0,12.0,2.0,2012-01-22,,2012-3,0.6249669477624948,3.1500000000000004, +118,118,0.11,89.0,0.0,145.0,0.0,112.0,524.0,668.0,267.0,0.0,447.0,6555.0,9.0,44.0,946.0,523.0,50.0,133.0,218.0,4550.0,0.0,56.0,182.0,11.0,74.0,733.0,53.0,2695.0,869.0,52.0,0.0,0.0,0.0,986.0,83.0,1720.0,3078.0,0.0,130.0,0.0,73.0,234.0,0.0,182.0,587.0,3266.0,0.0,0.0,395.0,361.0,1692.0,0.0,206.0,0.0,279.0,171.0,45.0,0.0,0.0,0.0,0.0,0.0,3836.0,3.0,3092.0,270.0,0.0,25.0,0.0,3153.0,0.0,423.0,229.0,0.0,126.0,0.0,5650.0,195.0,0.0,16.0,517.0,222.0,32.0,237.0,0.0,351.0,2360.0,494.0,45.0,0.0,0.0,15.0,4995.0,0.0,0.0,321.0,167.0,567.0,5381.0,283.0,4657.0,3088.0,69.0,1.0,99.0,2.0,0.0,7.0,1.0,143.0,3.0,1.0,3.0,0.0,5.0,0.0,7.0,1232.0,4290.0,3991.0,0.0,14.0,1015.0,1759.0,0.0,7.0,226.0,200.0,0.0,0.0,704.0,2676.0,2010.0,0.0,182.0,286.0,71.0,177.0,254.0,3042.0,0.0,8960.0,345.0,2.0,0.0,3843.0,1523.0,855.0,0.0,567.0,425.0,2.0,612.0,0.0,0.0,397.0,14.0,141.0,0.0,63.0,30.0,476.0,2933.0,175.0,0.0,129.0,33.0,0.0,0.0,68.0,0.0,764.0,2033.0,558.0,0.0,15.0,0.0,0.0,902.0,0.0,84.0,1750.0,103.0,1.0,2.0,0.0,1.0,711.0,0.0,168.0,927.0,1.0,29.0,1.0,200.0,137.0,45.0,11.0,389.0,728.0,1336.0,659.0,53.0,0.0,0.0,0.0,0.0,0.0,64.0,4305.0,0.0,1804.0,0.0,0.0,29.0,0.0,0.0,692.0,1070.0,1295.0,193.0,0.0,13.0,1771.0,76.0,1.0,79.0,281.0,90.0,1.0,96.0,151.0,3.0,262.0,208.0,0.0,0.0,13.0,0.0,0.0,35.0,0.0,0.0,14.0,4193.0,0.0,60.0,0.0,9.0,868.0,2.0,158.0,297.0,44.0,0.0,152.0,0.0,25.0,0.0,7159.0,0.0,360.0,803.0,0.0,0.0,194.0,325.0,763.0,599.0,0.0,0.0,1.0,1242.0,0.0,18.0,0.0,108.0,0.0,983.0,0.0,127.0,0.0,228.0,872.0,819.0,22.0,3711.0,16.0,846.0,560.0,10.0,33.0,1826.0,0.0,0.0,394.0,435.0,3531.0,17.0,3.0,2012-01-29,,2012-4,0.3787289123705584,0.35400000000000004, +119,119,0.12,79.0,0.0,169.0,0.0,75.0,463.0,603.0,318.0,0.0,501.0,6698.0,14.0,47.0,895.0,487.0,58.0,136.0,222.0,4256.0,0.0,54.0,214.0,42.0,78.0,651.0,74.0,2617.0,771.0,32.0,0.0,0.0,0.0,942.0,149.0,1259.0,2971.0,3.0,158.0,0.0,60.0,209.0,0.0,151.0,500.0,2019.0,0.0,0.0,343.0,374.0,1506.0,0.0,121.0,0.0,327.0,152.0,39.0,0.0,0.0,0.0,0.0,0.0,3526.0,5.0,2931.0,246.0,0.0,37.0,21.0,2928.0,0.0,291.0,238.0,1.0,132.0,0.0,5610.0,167.0,0.0,14.0,601.0,186.0,27.0,219.0,0.0,343.0,2340.0,499.0,45.0,0.0,0.0,13.0,4747.0,0.0,0.0,305.0,159.0,560.0,5511.0,358.0,4427.0,3072.0,67.0,1.0,75.0,5.0,3.0,7.0,1.0,149.0,1.0,5.0,4.0,0.0,5.0,1.0,6.0,1229.0,4396.0,3719.0,0.0,22.0,1015.0,1802.0,0.0,5.0,253.0,207.0,0.0,0.0,654.0,2668.0,1817.0,0.0,209.0,247.0,123.0,168.0,276.0,2941.0,0.0,9043.0,361.0,5.0,1.0,3589.0,1619.0,881.0,0.0,501.0,327.0,3.0,715.0,0.0,0.0,390.0,16.0,137.0,0.0,75.0,41.0,456.0,2708.0,205.0,0.0,190.0,29.0,0.0,0.0,72.0,0.0,787.0,1893.0,534.0,0.0,15.0,0.0,0.0,818.0,0.0,67.0,1522.0,104.0,0.0,0.0,0.0,2.0,657.0,1.0,142.0,853.0,5.0,39.0,0.0,179.0,167.0,27.0,10.0,397.0,639.0,1339.0,700.5,53.0,0.0,1.0,0.0,0.0,0.0,61.0,3944.0,0.0,1834.0,1.0,1.0,24.0,0.0,0.0,826.0,868.0,1226.0,176.0,0.0,19.0,1742.0,97.0,0.0,69.0,237.0,104.0,0.0,82.0,168.0,10.0,268.0,196.0,0.0,0.0,16.0,0.0,0.0,33.0,1.0,0.0,14.0,3831.0,0.0,55.0,0.0,6.0,730.0,1.0,157.0,282.0,59.0,1.0,163.0,1.0,22.0,0.0,6509.0,0.0,1166.0,835.0,0.0,0.0,241.0,244.0,754.0,555.0,0.0,0.0,1.0,580.0,0.0,20.0,0.0,118.0,0.0,858.0,1.0,162.0,0.0,172.0,952.0,749.0,18.0,3833.0,19.0,532.0,477.0,12.0,41.0,1689.0,0.0,0.0,423.0,455.0,3160.0,22.0,6.0,2012-02-05,,2012-5,-0.2723907642252037,2.008, +120,120,0.26,82.0,0.0,154.0,0.0,116.0,426.0,532.0,196.0,0.0,493.0,7332.0,18.0,43.0,884.0,444.0,39.0,117.0,246.0,4009.0,0.0,70.0,172.0,23.0,70.0,724.0,66.0,2644.0,760.0,33.0,0.0,0.0,0.0,816.0,109.0,1621.0,2755.0,0.0,117.0,0.0,105.0,208.0,0.0,173.0,527.0,4844.0,1.0,0.0,338.0,282.0,1388.0,0.0,127.0,0.0,257.0,138.0,30.0,0.0,0.0,0.0,0.0,0.0,3291.0,3.0,2859.0,265.0,0.0,54.0,40.0,2872.0,0.0,264.0,260.0,0.0,110.0,0.0,5360.0,129.0,0.0,16.0,551.0,208.0,24.0,161.0,2.0,300.0,2252.0,444.0,52.0,1.0,0.0,12.0,4318.0,0.0,0.0,261.0,147.0,629.0,5782.0,234.0,4905.0,2836.0,47.0,1.0,66.0,10.0,2.0,7.0,0.0,88.0,8.0,4.0,4.0,1.0,7.0,1.0,3.0,1226.0,4205.0,3732.0,1.0,23.0,962.0,1618.0,0.0,16.0,204.0,134.0,0.0,0.0,651.0,2761.0,1765.0,0.0,211.0,243.0,143.0,146.0,257.0,2664.0,1.0,8596.0,277.0,6.0,0.0,3545.0,1555.0,850.0,0.0,486.0,339.0,8.0,671.0,0.0,0.0,392.0,15.0,146.0,0.0,66.0,60.0,397.0,2478.0,135.0,0.0,98.0,39.0,1.0,0.0,87.0,0.0,731.0,1726.0,561.0,0.0,22.0,0.0,0.0,758.0,0.0,69.0,1655.0,114.0,10.0,1.0,0.0,1.0,681.0,0.0,125.0,837.0,4.0,17.0,1.0,186.0,147.0,39.0,7.0,349.0,638.0,1217.0,742.0,43.0,0.0,3.0,0.0,0.0,0.0,78.0,4136.0,0.0,1719.0,0.0,1.0,27.0,0.0,0.0,741.0,794.0,1109.0,207.0,0.0,15.0,1610.0,66.0,1.0,72.0,229.0,84.0,1.0,86.0,195.0,4.0,276.0,158.0,0.0,0.0,8.0,0.0,0.0,34.0,0.0,0.0,18.0,3905.0,0.0,43.0,0.0,4.0,757.0,0.0,120.0,256.0,56.0,0.0,140.0,0.0,35.0,0.0,6433.0,0.0,125.0,824.0,0.0,0.0,252.0,282.0,663.0,580.0,0.0,1.0,2.0,531.0,0.0,16.0,0.0,101.0,0.0,826.0,0.0,138.0,0.0,173.0,832.0,622.0,6.0,3725.0,12.0,593.0,496.0,8.0,33.0,1690.0,0.0,0.0,381.0,423.0,3223.0,24.0,2.0,2012-02-12,,2012-6,0.40083533805632854,3.0920000000000005, +121,121,0.55,111.0,0.0,131.0,0.0,60.0,411.0,484.0,189.0,0.0,386.0,8415.0,19.0,35.0,752.0,533.0,58.0,117.0,195.0,3582.0,0.0,39.0,188.0,38.0,64.0,643.0,64.0,2397.0,761.0,30.0,0.0,0.0,0.0,846.0,91.0,1521.0,2811.0,0.0,99.0,0.0,78.0,209.0,0.0,152.0,501.0,4358.0,0.0,0.0,308.0,274.0,1376.0,0.0,161.0,0.0,254.0,106.0,28.0,0.0,0.0,0.0,3.0,0.0,3070.0,0.0,2829.0,219.0,0.0,37.0,29.0,2870.0,0.0,216.0,248.0,0.0,107.0,0.0,5457.0,131.0,1.0,12.0,609.0,190.0,34.0,176.0,0.0,353.0,1931.0,455.0,109.0,0.0,0.0,15.0,4398.0,0.0,0.0,261.0,129.0,536.0,5505.0,128.0,4653.0,2520.0,57.0,0.0,66.0,6.0,2.0,8.0,0.0,100.0,9.0,3.0,6.0,4.0,10.0,0.0,4.0,1044.0,3903.0,3616.0,0.0,31.0,862.0,1735.0,0.0,12.0,121.0,123.0,0.0,0.0,540.0,2631.0,1633.0,0.0,171.0,249.0,76.0,129.0,262.0,2619.0,1.0,8606.0,308.0,3.0,1.0,3644.0,1615.0,832.0,0.0,450.0,305.0,7.0,540.0,0.0,0.0,333.0,21.0,145.0,0.0,78.0,53.0,367.0,2431.0,133.0,0.0,89.0,38.0,1.0,0.0,56.0,1.0,602.0,1589.0,473.0,0.0,13.0,0.0,0.0,867.0,0.0,85.0,1698.0,107.0,5.0,1.0,0.0,3.0,590.0,1.0,125.0,845.0,7.0,17.0,0.0,169.0,119.0,23.0,8.0,347.0,614.0,987.0,639.0,55.0,0.0,0.0,0.0,0.0,0.0,63.0,4243.0,0.0,1741.0,0.0,3.0,36.0,0.0,0.0,597.0,761.0,1079.0,186.0,0.0,10.0,1365.0,67.0,0.0,56.0,257.0,89.0,1.0,87.0,356.0,5.0,252.0,165.0,0.0,0.0,16.0,2.0,1.0,39.0,0.0,0.0,20.0,3765.0,0.0,53.0,0.0,8.0,756.0,1.0,125.0,240.0,44.0,0.0,153.0,1.0,30.0,0.0,6672.0,0.0,174.0,819.0,0.0,0.0,184.0,242.0,583.0,337.0,0.0,0.0,1.0,531.0,0.0,17.0,0.0,97.0,0.0,804.0,1.0,146.0,0.0,168.0,743.0,771.0,9.0,3834.0,18.0,529.0,558.0,8.0,26.0,1725.0,2.0,0.0,335.0,466.0,2962.0,25.0,4.0,2012-02-19,,2012-7,0.8255095709620939,0.838, +122,122,1.03,86.0,0.0,123.0,0.0,80.0,425.0,541.0,151.0,0.0,353.0,9355.0,22.0,41.0,783.0,588.0,42.0,114.0,174.0,3940.0,0.0,43.0,227.0,34.0,49.0,686.0,54.0,2708.0,737.0,36.0,0.0,0.0,0.0,891.0,112.0,1742.0,2799.0,0.0,95.0,0.0,82.0,191.0,0.0,164.0,489.0,2142.0,0.0,0.0,321.0,282.0,1449.0,0.0,146.0,0.0,241.0,100.0,25.0,0.0,0.0,0.0,2.0,0.0,2892.0,5.0,3028.0,275.0,0.0,47.0,24.0,3051.0,0.0,218.0,293.0,0.0,88.0,0.0,5551.0,156.0,0.0,10.0,773.0,171.0,25.0,156.0,1.0,392.0,1987.0,941.0,55.0,0.0,0.0,17.0,4354.0,0.0,0.0,253.0,142.0,596.0,5550.0,112.0,4234.0,2461.0,56.0,0.0,67.0,7.0,5.0,9.0,0.0,87.0,10.0,2.0,3.0,1.0,10.0,0.0,10.0,908.0,4150.0,3992.0,0.0,21.0,920.0,1913.0,0.0,9.0,83.0,142.0,0.0,0.0,574.0,2357.0,1719.0,0.0,154.0,234.0,52.0,137.0,203.0,2822.0,0.0,9533.0,288.0,2.0,0.0,3784.0,2104.0,861.0,0.0,446.0,315.0,2.0,391.0,0.0,0.0,367.0,15.0,164.0,0.0,85.0,74.0,398.0,2441.0,131.0,0.0,80.0,29.0,0.0,0.0,76.0,0.0,683.0,1583.0,503.0,0.0,5.0,0.0,0.0,808.0,0.0,86.0,1740.0,113.0,4.0,1.0,0.0,1.0,548.0,0.0,116.0,806.0,2.0,26.0,2.0,145.0,113.0,23.0,9.0,416.0,585.0,982.0,697.0,55.0,0.0,0.0,0.0,0.0,0.0,61.0,4123.0,0.0,1832.0,1.0,0.0,32.0,0.0,0.0,617.0,815.0,1129.0,168.0,0.0,15.0,1428.0,69.0,0.0,75.0,278.0,90.0,0.0,64.0,376.0,2.0,245.0,158.0,0.0,0.0,9.0,2.0,0.0,42.0,0.0,0.0,16.0,3696.0,0.0,69.0,0.0,8.0,849.0,1.0,107.0,202.0,37.0,0.0,165.0,0.0,22.0,0.0,6574.0,0.0,130.0,756.0,0.0,1.0,155.0,212.0,584.0,479.0,0.0,0.0,0.0,551.0,0.0,10.0,0.0,102.0,0.0,847.0,4.0,122.0,0.0,175.0,732.0,758.0,10.0,4104.0,32.0,540.0,606.0,8.0,40.0,1732.0,1.0,0.0,345.0,442.0,4179.0,19.0,3.0,2012-02-26,,2012-8,0.49415188412751476,4.284000000000001, +123,123,1.57,66.0,0.0,127.0,0.0,80.0,393.0,513.0,124.0,0.0,356.0,9210.0,17.0,39.0,814.0,440.0,32.0,93.0,168.0,3783.0,0.0,52.0,215.0,32.0,51.0,637.0,55.0,2344.0,685.0,34.0,0.0,0.0,0.0,1384.0,106.0,1863.0,2891.0,0.0,112.0,0.0,67.0,323.0,0.0,154.0,553.0,1812.0,1.0,0.0,372.0,239.0,1670.0,0.0,208.0,0.0,210.0,129.0,26.0,0.0,0.0,0.0,2.0,0.0,3104.0,3.0,3114.0,246.0,0.0,51.0,12.0,2882.0,0.0,230.0,261.0,0.0,85.0,0.0,5492.0,127.0,0.0,14.0,658.0,170.0,22.0,144.0,2.0,375.0,2041.0,713.0,224.0,0.0,0.0,10.0,5298.0,0.0,0.0,253.0,171.0,593.0,5516.0,88.0,4316.0,2439.0,51.0,0.0,67.0,5.0,3.0,9.0,0.0,104.0,15.0,6.0,1.0,1.0,8.0,0.0,5.0,868.0,4298.0,4205.0,0.0,23.0,895.0,1812.0,0.0,13.0,95.0,119.0,0.0,0.0,534.0,2247.0,1619.0,0.0,139.0,276.0,50.0,152.0,233.0,2756.0,0.0,9165.0,304.0,5.0,0.0,3814.0,1639.0,817.0,0.0,436.0,339.0,0.0,450.0,0.0,0.0,399.0,18.0,153.0,0.0,93.0,54.0,399.0,2332.0,101.0,0.0,116.0,26.0,0.0,0.0,78.0,1.0,671.0,1657.0,452.0,257.0,17.0,0.0,0.0,798.0,0.0,100.0,1679.0,75.0,4.0,1.0,0.0,2.0,622.0,2.0,109.0,898.0,4.0,24.0,0.0,104.0,128.0,36.0,10.0,451.0,558.0,1011.0,700.0,42.0,0.0,0.0,0.0,1.0,1.0,77.0,4211.0,0.0,1693.0,0.0,0.0,39.0,0.0,0.0,645.0,818.0,1127.0,199.0,0.0,12.0,1422.0,88.0,0.0,53.0,257.0,73.0,0.0,68.0,397.0,12.0,236.0,144.0,0.0,0.0,21.0,4.0,1.0,37.0,0.0,0.0,15.0,3622.0,0.0,74.0,0.0,5.0,964.0,0.0,126.0,276.0,58.0,1.0,140.0,0.0,24.0,1.0,6305.0,0.0,90.0,788.0,0.0,0.0,144.0,198.0,508.0,403.0,0.0,1.0,4.0,549.0,0.0,14.0,0.0,91.0,0.0,931.0,5.0,120.0,0.0,174.0,796.0,824.0,11.0,4631.0,22.0,607.0,641.0,10.0,36.0,1686.0,1.0,0.0,292.0,529.0,3023.0,26.0,3.0,2012-03-04,,2012-9,2.118137206932385,1.2960000000000003, +124,124,1.69,83.0,0.0,109.0,0.0,62.0,428.0,526.0,132.0,1.0,371.0,8515.0,27.0,34.0,730.0,487.0,36.0,96.0,161.0,4645.0,0.0,48.0,191.0,33.0,44.0,706.0,48.0,2434.0,693.0,28.0,0.0,0.0,0.0,952.0,101.0,1877.0,2900.0,2.0,89.0,0.0,65.0,245.0,0.0,129.0,494.0,1912.0,0.0,0.0,348.0,247.0,1252.0,0.0,173.0,0.0,224.0,103.0,31.0,0.0,0.0,0.0,0.0,0.0,3072.0,3.0,2949.0,244.0,0.0,64.0,26.0,2937.0,0.0,202.0,244.0,0.0,100.0,0.0,5118.0,119.0,0.0,20.0,748.0,196.0,38.0,163.0,0.0,339.0,2023.0,462.0,114.0,0.0,0.0,8.0,4026.0,0.0,0.0,294.0,133.0,510.0,5574.0,118.0,4549.0,2540.0,60.0,2.0,57.0,10.0,17.0,11.0,0.0,99.0,20.0,5.0,9.0,2.0,15.0,2.0,12.0,841.0,3970.0,3933.0,0.0,31.0,770.0,1723.0,0.0,13.0,96.0,101.0,0.0,0.0,613.0,2288.0,1645.0,0.0,162.0,306.0,79.0,198.0,238.0,2122.0,2.0,9263.0,328.0,9.0,0.0,3853.0,1409.0,824.0,0.0,477.0,354.0,3.0,406.0,0.0,0.0,411.0,17.0,159.0,0.0,68.0,76.0,433.0,2446.0,145.0,0.0,113.0,32.0,0.0,0.0,74.0,0.0,595.0,1644.0,472.0,107.0,11.0,0.0,0.0,778.0,0.0,69.0,1747.0,94.0,8.0,1.0,0.0,3.0,477.0,0.0,102.0,835.0,6.0,31.0,0.0,111.0,135.0,24.0,6.0,393.0,571.0,1011.0,721.0,53.0,0.0,1.0,0.0,0.0,0.0,60.0,4235.0,0.0,1732.0,0.0,0.0,32.0,0.0,1.0,640.0,746.0,1173.0,201.0,0.0,6.0,1432.0,99.0,1.0,68.0,241.0,52.0,0.0,60.0,373.0,5.0,217.0,121.0,0.0,0.0,12.0,4.0,1.0,35.0,0.0,0.0,24.0,3836.0,0.0,65.0,0.0,10.0,995.0,3.0,106.0,240.0,54.0,0.0,147.0,0.0,28.0,0.0,6470.0,0.0,99.0,732.0,0.0,0.0,144.0,216.0,525.0,438.0,0.0,1.0,0.0,590.0,0.0,21.0,0.0,87.0,0.0,895.0,5.0,135.0,0.0,172.0,655.0,776.0,12.0,3370.0,19.0,567.0,590.0,11.0,29.0,1730.0,3.0,0.0,320.0,464.0,3276.0,30.0,4.0,2012-03-11,,2012-10,1.6703498093008387,1.2100000000000002, +125,125,1.96,83.0,0.0,115.0,0.0,59.0,439.0,508.0,114.0,0.0,398.0,7495.0,35.0,31.0,721.0,391.0,41.0,94.0,169.0,4088.0,0.0,38.0,176.0,41.0,185.0,703.0,45.0,2263.0,723.0,24.0,0.0,0.0,0.0,771.0,80.0,1497.0,2866.0,1.0,92.0,0.0,57.0,222.0,0.0,149.0,538.0,1925.0,1.0,0.0,342.0,268.0,1397.0,0.0,816.0,0.0,224.0,216.0,23.0,0.0,0.0,0.0,1.0,0.0,2788.0,1.0,2624.0,257.0,0.0,66.0,17.0,2732.0,0.0,209.0,231.0,1.0,102.0,0.0,4964.0,153.0,0.0,19.0,625.0,157.0,25.0,185.0,0.0,391.0,1885.0,415.0,100.0,1.0,0.0,14.0,3668.0,0.0,0.0,250.0,132.0,526.0,5283.0,119.0,4209.0,2443.0,53.0,2.0,64.0,11.0,3.0,8.0,0.0,98.0,11.0,11.0,16.0,0.0,12.0,0.0,11.0,816.0,3968.0,3808.0,0.0,13.0,1121.0,1658.0,0.0,21.0,105.0,105.0,0.0,0.0,476.0,2149.0,1555.0,0.0,148.0,245.0,65.0,167.0,231.0,2612.0,0.0,7902.0,261.0,2.0,0.0,3442.0,1320.0,737.0,0.0,423.0,344.0,10.0,418.0,0.0,0.0,332.0,14.0,157.0,0.0,56.0,79.0,447.0,2152.0,124.0,0.0,91.0,46.0,0.0,0.0,69.0,0.0,699.0,1588.0,443.0,97.0,13.0,0.0,0.0,781.0,2.0,86.0,1642.0,77.0,6.0,1.0,0.0,3.0,463.0,0.0,134.0,795.0,12.0,20.0,0.0,138.0,143.0,29.0,13.0,425.0,593.0,1017.0,692.0,55.0,0.0,1.0,0.0,0.0,0.0,65.0,3770.0,0.0,1670.0,1.0,1.0,31.0,0.0,0.0,607.0,744.0,1034.0,197.0,0.0,16.0,1515.0,88.0,0.0,55.0,245.0,69.0,0.0,53.0,326.0,8.0,302.0,139.0,0.0,0.0,15.0,1.0,0.0,29.0,1.0,0.0,30.0,3716.0,0.0,52.0,0.0,8.0,959.0,1.0,121.0,201.0,74.0,0.0,138.0,1.0,15.0,1.0,6008.0,0.0,2690.0,749.0,0.0,0.0,159.0,238.0,526.0,431.0,0.0,3.0,1.0,550.0,0.0,18.0,0.0,78.0,0.0,913.0,5.0,105.0,0.0,301.0,619.0,745.0,10.0,3881.0,19.0,527.0,655.0,8.0,21.0,1652.0,1.0,0.0,314.0,476.0,2784.0,53.0,7.0,2012-03-18,,2012-11,2.3439108500673242,2.2019999999999995, +126,126,1.88,83.0,0.0,108.0,0.0,75.0,394.0,404.0,119.0,0.0,345.0,6078.0,21.0,36.0,686.0,375.0,32.0,93.0,193.0,3417.0,0.0,47.0,141.0,47.0,42.0,574.0,55.0,2247.0,705.0,34.0,0.0,0.0,0.0,784.0,91.0,1362.0,2533.0,1.0,90.0,0.0,79.0,301.0,0.0,113.0,424.0,1861.0,0.0,0.0,301.0,227.0,1352.0,0.0,173.0,0.0,248.0,91.0,31.0,0.0,0.0,0.0,1.0,0.0,2524.0,1.0,2875.0,258.0,0.0,51.0,22.0,2382.0,0.0,204.0,223.0,0.0,73.0,0.0,4458.0,121.0,0.0,16.0,442.0,151.0,34.0,141.0,1.0,334.0,1624.0,420.0,49.0,1.0,0.0,5.0,3261.0,0.0,0.0,235.0,121.0,471.0,4412.0,110.0,3670.0,2111.0,58.0,2.0,57.0,17.0,1.0,9.0,0.0,104.0,17.0,6.0,7.0,1.0,8.0,0.0,6.0,788.0,3297.0,3231.0,0.0,21.0,1002.0,1437.0,0.0,11.0,101.0,104.0,0.0,0.0,473.0,2013.0,1467.0,0.0,165.0,235.0,33.0,145.0,193.0,2044.0,1.0,7030.0,262.0,3.0,1.0,3044.0,1513.0,705.0,0.0,357.0,285.0,5.0,456.0,0.0,0.0,311.0,21.0,139.0,0.0,53.0,82.0,408.0,1909.0,222.0,0.0,83.0,32.0,0.0,0.0,71.0,0.0,600.0,1567.0,516.0,57.0,16.0,0.0,0.0,698.0,0.0,92.0,1390.0,79.0,3.0,1.0,0.0,4.0,420.0,1.0,130.0,730.0,7.0,25.0,0.0,150.0,104.0,51.0,12.0,375.0,665.0,1069.0,698.0,70.0,0.0,1.0,0.0,0.0,0.0,44.0,3594.0,0.0,2197.0,0.0,1.0,34.0,0.0,0.0,510.0,684.0,936.0,175.0,0.0,7.0,1266.0,69.0,0.0,62.0,261.0,69.0,1.0,67.0,311.0,8.0,241.0,115.0,0.0,0.0,18.0,1.0,0.0,23.0,9.0,0.0,28.0,3207.0,0.0,73.0,0.0,6.0,851.0,2.0,112.0,195.0,26.0,0.0,153.0,0.0,22.0,0.0,5357.0,0.0,131.0,685.0,0.0,0.0,137.0,214.0,489.0,488.0,0.0,0.0,0.0,588.0,0.0,12.0,0.0,50.0,0.0,875.0,2.0,124.0,0.0,276.0,565.0,635.0,7.0,3242.0,22.0,498.0,468.0,7.0,21.0,1303.0,1.0,0.0,253.0,404.0,2505.0,36.0,3.0,2012-03-25,,2012-12,2.5011191223667595,1.3780000000000001, +127,127,1.42,90.0,0.0,120.0,0.0,65.0,393.0,419.0,105.0,0.0,313.0,5360.0,36.0,33.0,606.0,392.0,46.0,70.0,169.0,3117.0,0.0,46.0,164.0,53.0,59.0,568.0,54.0,1964.0,635.0,25.0,0.0,0.0,0.0,751.0,72.0,1367.0,2253.0,1.0,68.0,0.0,72.0,214.0,0.0,152.0,461.0,3316.0,1.0,0.0,293.0,235.0,1348.0,0.0,154.0,0.0,190.0,73.0,25.0,0.0,0.0,0.0,3.0,0.0,2442.0,0.0,2443.0,204.0,0.0,48.0,10.0,2211.0,0.0,175.0,217.0,0.0,66.0,0.0,4290.0,115.0,0.0,13.0,386.0,139.0,20.0,155.0,1.0,307.0,1630.0,351.0,58.0,1.0,0.0,8.0,3045.0,0.0,1.0,218.0,120.0,425.0,4591.0,138.0,3870.0,2095.0,57.0,1.0,53.0,10.0,8.0,5.0,5.0,123.0,11.0,3.0,12.0,0.0,19.0,0.0,4.0,684.0,2834.0,2839.0,0.0,24.0,740.0,1384.0,0.0,10.0,138.0,134.0,0.0,0.0,518.0,1860.0,1404.0,0.0,177.0,227.0,49.0,139.0,243.0,1912.0,0.0,6545.0,226.0,5.0,0.0,2818.0,1370.0,698.0,0.0,366.0,318.0,3.0,385.0,0.0,0.0,313.0,18.0,147.0,0.0,53.0,64.0,414.0,1987.0,154.0,0.0,89.0,25.0,0.0,0.0,67.0,0.0,588.0,1452.0,384.0,80.0,17.0,0.0,0.0,749.0,0.0,72.0,1310.0,71.0,5.0,0.0,0.0,4.0,392.0,0.0,108.0,714.0,1.0,16.0,0.0,125.0,99.0,28.0,7.0,372.0,540.0,991.0,589.0,49.0,0.0,0.0,0.0,0.0,0.0,57.0,3379.0,0.0,1353.0,0.0,0.0,29.0,0.0,0.0,541.0,632.0,896.0,154.0,0.0,19.0,1182.0,75.0,1.0,54.0,205.0,59.0,0.0,70.0,319.0,5.0,175.0,120.0,0.0,0.0,34.0,3.0,1.0,39.0,0.0,0.0,19.0,2723.0,0.0,42.0,0.0,6.0,828.0,0.0,128.0,207.0,18.0,2.0,142.0,0.0,22.0,0.0,5042.0,0.0,106.0,732.0,1.0,0.0,139.0,180.0,524.0,406.0,0.0,0.0,1.0,492.0,0.0,13.0,0.0,92.0,0.0,827.0,5.0,103.0,0.0,160.0,547.0,560.0,8.0,2657.0,16.0,464.0,454.0,10.0,26.0,1182.0,0.0,0.0,367.0,393.0,2419.0,26.0,5.0,2012-04-01,,2012-13,1.2005898290739108,1.42, +128,128,0.74,94.0,0.0,77.0,0.0,64.0,325.0,339.0,97.0,0.0,322.0,4356.0,28.0,32.0,611.0,366.0,22.0,77.0,158.0,2665.0,0.0,22.0,132.0,39.0,63.0,464.0,45.0,1989.0,593.0,17.0,0.0,0.0,0.0,688.0,72.0,1264.0,2097.0,1.0,80.0,0.0,40.0,217.0,0.0,107.0,385.0,3017.0,1.0,0.0,228.0,249.0,1246.0,0.0,81.0,0.0,154.0,56.0,26.0,0.0,0.0,0.0,0.0,0.0,2229.0,1.0,2187.0,202.0,0.0,46.0,12.0,2063.0,0.0,465.0,172.0,0.0,69.0,0.0,4273.0,93.0,0.0,10.0,218.0,129.0,26.0,172.0,4.0,244.0,1425.0,293.0,71.0,0.0,0.0,10.0,2814.0,0.0,0.0,195.0,86.0,408.0,4335.0,119.0,3820.0,1917.0,67.0,1.0,68.0,6.0,3.0,7.0,4.0,56.0,12.0,1.0,19.0,0.0,6.0,1.0,6.0,591.0,2278.0,1921.0,0.0,17.0,633.0,1298.0,0.0,12.0,113.0,125.0,0.0,0.0,520.0,1816.0,1195.0,0.0,117.0,292.0,37.0,121.0,198.0,1709.0,1.0,5962.0,237.0,4.0,0.0,2468.0,1528.0,650.0,0.0,344.0,306.0,7.0,361.0,0.0,0.0,299.0,19.0,144.0,0.0,50.0,65.0,338.0,1614.0,120.0,0.0,102.0,14.0,0.0,0.0,48.0,0.0,523.0,1263.0,304.0,585.0,9.0,0.0,0.0,567.0,0.0,79.0,1105.0,80.0,6.0,0.0,0.0,2.0,342.0,0.0,114.0,614.0,4.0,23.0,6.0,118.0,93.0,30.0,11.0,284.0,496.0,846.0,549.0,52.0,0.0,2.0,0.0,0.0,0.0,44.0,3149.0,0.0,1297.0,0.0,0.0,29.0,0.0,0.0,469.0,557.0,796.0,143.0,0.0,19.0,1088.0,85.0,0.0,57.0,189.0,51.0,0.0,92.0,298.0,8.0,173.0,128.0,0.0,0.0,98.0,1.0,2.0,38.0,0.0,0.0,21.0,2617.0,0.0,41.0,0.0,3.0,765.0,1.0,112.0,159.0,17.0,0.0,123.0,0.0,6.0,1.0,4587.0,0.0,119.0,571.0,0.0,0.0,86.0,151.0,447.0,454.0,0.0,2.0,0.0,547.0,0.0,13.0,0.0,63.0,0.0,687.0,7.0,98.0,0.0,167.0,482.0,488.0,7.0,2114.0,11.0,486.0,415.0,9.0,23.0,1108.0,2.0,0.0,312.0,353.0,2220.0,18.0,9.0,2012-04-08,,2012-14,0.39297308288539945,1.244, +129,129,0.41,118.0,0.0,85.0,0.0,76.0,307.0,442.0,153.0,0.0,336.0,4679.0,26.0,34.0,710.0,520.0,32.0,101.0,201.0,3120.0,0.0,29.0,161.0,106.0,73.0,669.0,49.0,2251.0,654.0,20.0,0.0,0.0,0.0,851.0,97.0,1409.0,2302.0,3.0,77.0,0.0,65.0,224.0,0.0,104.0,402.0,2189.0,0.0,0.0,302.0,254.0,1390.0,0.0,126.0,0.0,218.0,97.0,32.0,0.0,0.0,0.0,3.0,0.0,2604.0,6.0,2402.0,226.0,0.0,36.0,19.0,2452.0,0.0,247.0,203.0,0.0,66.0,0.0,4838.0,126.0,0.0,7.0,343.0,175.0,24.0,202.0,1.0,299.0,1669.0,361.0,84.0,1.0,0.0,12.0,3288.0,0.0,0.0,236.0,116.0,376.0,4735.0,131.0,4004.0,2160.0,56.0,2.0,71.0,9.0,3.0,7.0,2.0,90.0,18.0,4.0,4.0,0.0,10.0,0.0,16.0,823.0,2572.0,2423.0,0.0,20.0,844.0,1655.0,0.0,12.0,152.0,155.0,0.0,0.0,606.0,2011.0,1377.0,0.0,126.0,321.0,50.0,127.0,211.0,1922.0,0.0,6163.0,250.0,5.0,1.0,2907.0,1812.0,728.0,0.0,336.0,330.0,6.0,369.0,0.0,0.0,356.0,13.0,127.0,0.0,55.0,87.0,402.0,1699.0,148.0,0.0,74.0,24.0,0.0,0.0,82.0,0.0,579.0,1520.0,308.0,116.0,10.0,0.0,0.0,646.0,0.0,70.0,1479.0,74.0,9.0,0.0,0.0,2.0,433.0,0.0,42613.0,706.0,5.0,23.0,1.0,122.0,79.0,21.0,10.0,324.0,494.0,1022.0,559.0,59.0,0.0,0.0,0.0,0.0,0.0,64.0,3418.0,0.0,1552.0,1.0,1.0,27.0,0.0,0.0,515.0,672.0,1023.0,159.0,0.0,15.0,1162.0,83.0,0.0,58.0,222.0,59.0,1.0,67.0,316.0,8.0,168.0,143.0,0.0,0.0,25.0,4.0,1.0,34.0,0.0,0.0,25.0,3089.0,0.0,64.0,0.0,5.0,832.0,0.0,102.0,174.0,21.0,0.0,116.0,0.0,20.0,1.0,5195.0,0.0,134.0,713.0,0.0,0.0,129.0,175.0,509.0,479.0,0.0,0.0,0.0,568.0,0.0,20.0,0.0,83.0,0.0,753.0,5.0,136.0,0.0,151.0,566.0,677.0,14.0,2234.0,21.0,515.0,445.0,7.0,19.0,1295.0,2.0,0.0,287.0,394.0,4087.0,31.0,5.0,2012-04-15,,2012-15,0.4326958064240891,0.7260000000000001, +130,130,0.0,216.0,0.0,114.0,0.0,150.0,317.0,421.0,150.0,0.0,319.0,10320.0,43.0,49.0,851.0,695.0,41.0,97.0,205.0,3274.0,0.0,38.0,230.0,91.0,73.0,565.0,72.0,2497.0,783.0,26.0,0.0,0.0,0.0,860.0,106.0,1871.0,2648.0,2.0,81.0,0.0,60.0,244.0,0.0,79.0,786.0,1563.0,0.0,0.0,540.0,265.0,1176.0,0.0,118.0,0.0,204.0,143.0,36.0,0.0,0.0,0.0,4.0,0.0,2801.0,3.0,3109.0,232.0,0.0,117.0,24.0,2417.0,0.0,227.0,252.0,0.0,89.0,0.0,5405.0,166.0,1.0,20.0,587.0,197.0,36.0,169.0,4.0,329.0,2238.0,324.0,37.0,0.0,0.0,12.0,4334.0,0.0,0.0,274.0,185.0,658.0,6464.0,167.0,6768.0,2258.0,65.0,3.0,63.0,20.0,9.0,15.0,1.0,77.0,35.0,15.0,14.0,0.0,31.0,5.0,23.0,1081.0,3160.0,2840.0,0.0,30.0,888.0,1821.0,0.0,43.0,105.0,113.0,0.0,0.0,601.0,2072.0,1637.0,0.0,176.0,260.0,64.0,122.0,262.0,2158.0,81.0,8049.0,207.0,4.0,1.0,3706.0,1386.0,803.0,0.0,454.0,329.0,7.0,487.0,0.0,0.0,319.0,21.0,106.0,0.0,60.0,143.0,454.0,2348.0,121.0,0.0,62.0,19.0,0.0,0.0,69.0,0.0,672.0,1607.0,409.0,101.0,14.0,0.0,0.0,814.0,0.0,68.0,1584.0,96.0,10.0,0.0,0.0,4.0,514.0,2.0,182.0,1058.0,16.0,32.0,1.0,118.0,128.0,34.0,8.0,382.0,607.0,978.0,740.0,76.0,0.0,0.0,0.0,0.0,0.0,64.0,3545.0,0.0,1492.0,2.0,1.0,34.0,0.0,0.0,716.0,739.0,1179.0,196.0,0.0,13.0,1327.0,663.0,0.0,64.0,259.0,84.0,0.0,56.0,287.0,18.0,244.0,113.0,0.0,0.0,43.0,3.0,2.0,52.0,0.0,0.0,48.0,3085.0,0.0,78.0,0.0,12.0,925.0,13.0,116.0,244.0,33.0,3.0,132.0,1.0,29.0,0.0,6236.0,0.0,4938.0,695.0,0.0,0.0,149.0,223.0,423.0,385.0,0.0,5.0,3.0,665.0,0.0,22.0,0.0,111.0,0.0,798.0,5.0,110.0,0.0,151.0,727.0,777.0,26.0,3673.0,13.0,398.0,611.0,8.0,28.0,1836.0,0.0,0.0,294.0,416.0,2733.0,58.0,11.0,2012-10-21,,2012-42,-0.040934231551588596,0.082, +131,131,0.01,146.0,0.0,111.0,0.0,89.0,356.0,516.0,143.0,2.0,288.0,10066.0,41.0,73.0,810.0,651.0,44.0,107.0,256.0,3541.0,0.0,45.0,287.0,86.0,62.0,555.0,62.0,2469.0,787.0,27.0,0.0,0.0,2.0,917.0,87.0,1971.0,2662.0,1.0,102.0,0.0,74.0,219.0,0.0,74.0,756.0,1654.0,2.0,0.0,652.0,261.0,1160.0,0.0,97.0,0.0,245.0,100.0,37.0,0.0,0.0,0.0,3.0,0.0,2889.0,1.0,3107.0,285.0,0.0,113.0,26.0,2623.0,0.0,342.0,236.0,0.0,92.0,0.0,5789.0,188.0,0.0,23.0,494.0,184.0,44.0,194.0,3.0,396.0,2270.0,350.0,53.0,2.0,0.0,17.0,4361.0,0.0,0.0,265.0,123.0,649.0,6824.0,136.0,6371.0,2405.0,59.0,4.0,59.0,22.0,9.0,14.0,1.0,86.0,22.0,11.0,22.0,0.0,27.0,2.0,25.0,1688.0,3091.0,2835.0,0.0,24.0,902.0,1873.0,0.0,34.0,127.0,146.0,0.0,0.0,574.0,2116.0,1730.0,0.0,218.0,267.0,50.0,137.0,247.0,2193.0,45.0,7780.0,194.0,10.0,1.0,3631.0,1383.0,881.0,0.0,458.0,361.0,19.0,578.0,0.0,0.0,373.0,16.0,152.0,0.0,80.0,150.0,477.0,2557.0,144.0,0.0,58.0,33.0,2.0,0.0,79.0,0.0,670.0,1668.0,455.0,114.0,11.0,0.0,0.0,805.0,0.0,79.0,1777.0,78.0,22.0,2.0,0.0,3.0,493.0,5.0,137.0,1024.0,12.0,37.0,3.0,144.0,124.0,37.0,9.0,327.0,671.0,1001.0,758.0,75.0,0.0,1.0,0.0,0.0,0.0,63.0,3520.0,0.0,1667.0,2.0,2.0,42.0,0.0,0.0,674.0,792.0,1235.0,208.0,0.0,20.0,1389.0,320.0,1.0,59.0,298.0,72.0,2.0,69.0,277.0,9.0,385.0,136.0,0.0,0.0,40.0,4.0,0.0,50.0,1.0,0.0,42.0,3184.0,0.0,90.0,0.0,11.0,855.0,10.0,106.0,277.0,29.0,1.0,137.0,1.0,35.0,1.0,6087.0,0.0,230.0,757.0,0.0,1.0,158.0,255.0,433.0,439.0,0.0,1.0,2.0,619.0,0.0,19.0,0.0,83.0,0.0,769.0,6.0,129.0,0.0,266.0,747.0,709.0,16.0,2840.0,15.0,469.0,565.0,15.0,30.0,1878.0,0.0,0.0,316.0,402.0,2736.0,59.0,9.0,2012-10-28,,2012-43,0.36056324251811045,0.02, +132,132,0.0,100.0,0.0,124.0,0.0,86.0,328.0,448.0,145.0,0.0,299.0,9222.0,46.0,51.0,760.0,695.0,61.0,93.0,172.0,3282.0,0.0,35.0,274.0,98.0,39.0,734.0,61.0,2316.0,699.0,14.0,0.0,0.0,0.0,891.0,92.0,1836.0,2437.0,1.0,67.0,1.0,118.0,232.0,0.0,85.0,671.0,1557.0,0.0,0.0,503.0,229.0,1130.0,0.0,130.0,0.0,211.0,140.0,42.0,0.0,0.0,0.0,5.0,0.0,2730.0,5.0,2832.0,339.0,0.0,122.0,19.0,2430.0,0.0,210.0,216.0,1.0,86.0,0.0,5325.0,145.0,0.0,18.0,484.0,154.0,48.0,200.0,2.0,364.0,1895.0,285.0,49.0,1.0,0.0,18.0,4160.0,0.0,2.0,304.0,143.0,472.0,6857.0,157.0,6176.0,2401.0,38.0,1.0,50.0,33.0,15.0,12.0,2.0,80.0,23.0,10.0,15.0,0.0,25.0,4.0,33.0,997.0,2931.0,2622.0,0.0,19.0,805.0,1810.0,0.0,40.0,111.0,117.0,0.0,0.0,603.0,2065.0,1599.0,0.0,174.0,298.0,55.0,119.0,218.0,2088.0,84.0,7965.0,190.0,9.0,0.0,3472.0,1375.0,808.0,0.0,433.0,381.0,11.0,474.0,0.0,0.0,300.0,23.0,106.0,0.0,68.0,141.0,411.0,2145.0,128.0,0.0,54.0,25.0,0.0,0.0,63.0,0.0,685.0,1545.0,341.0,94.0,6.0,0.0,0.0,739.0,0.0,57.0,1727.0,74.0,12.0,0.0,0.0,4.0,492.0,2.0,115.0,915.0,10.0,25.0,1.0,139.0,137.0,28.0,8.0,354.0,732.0,1082.0,764.0,73.0,0.0,1.0,0.0,0.0,0.0,65.0,3291.0,0.0,1543.0,1.0,1.0,24.0,0.0,0.0,537.0,706.0,1150.0,182.0,0.0,23.0,1260.0,176.0,0.0,31.0,278.0,101.0,1.0,87.0,323.0,7.0,299.0,140.0,0.0,0.0,47.0,3.0,1.0,51.0,1.0,0.0,27.0,2974.0,0.0,64.0,0.0,13.0,814.0,3.0,102.0,227.0,26.0,2.0,117.0,0.0,27.0,0.0,5659.0,0.0,193.0,711.0,0.0,0.0,108.0,225.0,473.0,390.0,0.0,4.0,3.0,570.0,0.0,19.0,0.0,108.0,0.0,741.0,6.0,88.0,0.0,164.0,772.0,802.0,11.0,2673.0,12.0,464.0,554.0,11.0,30.0,1858.0,0.0,0.0,333.0,373.0,2661.0,53.0,17.0,2012-11-04,,2012-44,0.17127723943729833,0.05800000000000001, +133,133,0.02,117.0,0.0,135.0,0.0,81.0,383.0,474.0,180.0,0.0,330.0,10078.0,66.0,52.0,804.0,774.0,40.0,115.0,215.0,3379.0,0.0,37.0,236.0,127.0,35.0,857.0,72.0,2564.0,820.0,14.0,0.0,0.0,0.0,873.0,95.0,2147.0,2902.0,1.0,90.0,1.0,107.0,192.0,0.0,102.0,870.0,1624.0,0.0,0.0,633.0,249.0,1265.0,0.0,150.0,0.0,219.0,149.0,45.0,0.0,0.0,0.0,6.0,0.0,3227.0,7.0,3093.0,274.0,0.0,112.0,28.0,2691.0,0.0,184.0,259.0,0.0,81.0,0.0,6007.0,163.0,0.0,17.0,352.0,204.0,51.0,207.0,8.0,438.0,2235.0,292.0,46.0,0.0,0.0,12.0,4665.0,0.0,2.0,318.0,137.0,574.0,7181.0,194.0,6628.0,2442.0,50.0,2.0,49.0,37.0,6.0,8.0,5.0,99.0,44.0,14.0,17.0,0.0,28.0,1.0,25.0,1118.0,3469.0,3374.0,0.0,29.0,971.0,2137.0,0.0,40.0,110.0,173.0,0.0,0.0,621.0,2169.0,1911.0,0.0,196.0,327.0,70.0,141.0,257.0,2356.0,70.0,8510.0,207.0,6.0,3.0,3851.0,1397.0,958.0,0.0,435.0,412.0,18.0,530.0,0.0,0.0,339.0,24.0,116.0,0.0,63.0,162.0,492.0,2444.0,135.0,0.0,67.0,25.0,0.0,0.0,73.0,0.0,799.0,1831.0,452.0,83.0,12.0,0.0,0.0,854.0,0.0,68.0,1825.0,111.0,12.0,0.0,0.0,4.0,528.0,3.0,177.0,1035.0,11.0,44.0,1.0,141.0,149.0,20.0,9.0,369.0,955.0,1295.0,939.0,68.0,0.0,1.0,0.0,0.0,0.0,75.0,3212.0,0.0,1650.0,1.0,1.0,42.0,0.0,0.0,583.0,823.0,1365.0,281.0,0.0,20.0,1511.0,152.0,0.0,46.0,351.0,82.0,2.0,85.0,350.0,10.0,256.0,139.0,0.0,0.0,45.0,2.0,0.0,66.0,2.0,0.0,55.0,3584.0,0.0,72.0,0.0,15.0,903.0,2.0,106.0,250.0,32.0,2.0,162.0,1.0,25.0,1.0,6227.0,0.0,176.0,793.0,0.0,0.0,147.0,287.0,504.0,411.0,0.0,0.0,2.0,639.0,0.0,7.0,0.0,95.0,0.0,766.0,17.0,145.0,0.0,188.0,774.0,763.0,8.0,3181.0,19.0,500.0,691.0,5.0,23.0,1899.0,1.0,0.0,395.0,514.0,2958.0,57.0,14.0,2012-11-11,,2012-45,0.08425724951984748,0.020000000000000004, +134,134,0.02,112.0,0.0,130.0,0.0,67.0,390.0,523.0,136.0,0.0,382.0,10411.0,61.0,76.0,792.0,743.0,43.0,99.0,245.0,3524.0,0.0,42.0,277.0,128.0,56.0,705.0,63.0,2719.0,762.0,14.0,0.0,0.0,0.0,1083.0,94.0,2621.0,3042.0,1.0,109.0,1.0,123.0,252.0,0.0,95.0,806.0,1723.0,0.0,0.0,621.0,346.0,1321.0,0.0,974.0,0.0,228.0,174.0,47.0,0.0,0.0,0.0,6.0,0.0,3285.0,5.0,3318.0,316.0,0.0,108.0,21.0,2723.0,0.0,169.0,240.0,0.0,100.0,0.0,5867.0,142.0,2.0,19.0,408.0,261.0,26.0,201.0,3.0,431.0,2545.0,304.0,48.0,3.0,0.0,16.0,4984.0,0.0,0.0,286.0,206.0,657.0,6954.0,176.0,7096.0,2716.0,70.0,2.0,39.0,59.0,5.0,8.0,3.0,69.0,34.0,13.0,25.0,0.0,19.0,2.0,35.0,1110.0,3546.0,3421.0,0.0,18.0,965.0,2215.0,2.0,42.0,110.0,163.0,0.0,0.0,684.0,2322.0,1864.0,0.0,209.0,280.0,60.0,135.0,286.0,2248.0,61.0,8998.0,143.0,2.0,1.0,4164.0,1384.0,960.0,0.0,397.0,397.0,26.0,592.0,0.0,0.0,390.0,18.0,112.0,0.0,79.0,164.0,501.0,2507.0,117.0,0.0,42.0,20.0,2.0,0.0,80.0,0.0,729.0,1927.0,499.0,104.0,8.0,0.0,0.0,891.0,0.0,86.0,1714.0,122.0,25.0,1.0,0.0,13.0,521.0,3.0,154.0,1056.0,11.0,38.0,2.0,177.0,103.0,31.0,9.0,363.0,796.0,1219.0,840.0,68.0,0.0,0.0,0.0,0.0,0.0,74.0,3586.0,0.0,1750.0,2.0,1.0,16.0,0.0,0.0,613.0,803.0,1338.0,199.0,1.0,12.0,1667.0,155.0,0.0,54.0,315.0,61.0,1.0,56.0,294.0,8.0,263.0,122.0,0.0,0.0,57.0,2.0,0.0,27.0,2.0,0.0,59.0,3755.0,0.0,97.0,0.0,19.0,812.0,7.0,125.0,228.0,25.0,1.0,136.0,1.0,24.0,1.0,6577.0,0.0,234.0,819.0,0.0,0.0,166.0,290.0,472.0,512.0,0.0,2.0,2.0,616.0,0.0,24.0,0.0,118.0,0.0,825.0,17.0,109.0,0.0,183.0,840.0,749.0,11.0,3282.0,14.0,470.0,697.0,9.0,21.0,1712.0,2.0,0.0,396.0,512.0,2997.0,65.0,15.0,2012-11-18,,2012-46,-0.18187859721542665,0.020000000000000004, +135,135,0.03,131.0,0.0,186.0,0.0,73.0,379.0,473.0,136.0,0.0,365.0,10453.0,11.0,63.0,892.0,781.0,43.0,103.0,231.0,3995.0,0.0,34.0,223.0,19.0,59.0,652.0,65.0,2606.0,840.0,20.0,0.0,0.0,0.0,1036.0,93.0,2077.0,2939.0,1.0,98.0,0.0,78.0,262.0,0.0,89.0,811.0,1646.0,0.0,0.0,558.0,237.0,1415.0,0.0,246.0,0.0,227.0,195.0,39.0,0.0,0.0,0.0,1.0,0.0,3138.0,1.0,3588.0,228.0,0.0,23.0,14.0,2681.0,0.0,208.0,257.0,1.0,89.0,0.0,8677.0,154.0,0.0,17.0,384.0,199.0,37.0,178.0,2.0,432.0,2351.0,297.0,34.0,0.0,0.0,7.0,4823.0,0.0,0.0,274.0,136.0,699.0,5506.0,224.0,6908.0,2639.0,51.0,0.0,53.0,8.0,1.0,8.0,0.0,111.0,6.0,1.0,13.0,0.0,8.0,1.0,6.0,1216.0,3586.0,3427.0,0.0,28.0,973.0,2142.0,0.0,7.0,102.0,147.0,0.0,0.0,696.0,2299.0,1907.0,0.0,230.0,249.0,57.0,127.0,270.0,2178.0,64.0,9631.0,214.0,9.0,0.0,3998.0,2096.0,924.0,0.0,460.0,393.0,2.0,592.0,0.0,0.0,345.0,15.0,136.0,0.0,58.0,29.0,465.0,2576.0,107.0,0.0,64.0,22.0,0.0,0.0,79.0,0.0,762.0,1736.0,486.0,126.0,12.0,0.0,0.0,783.0,0.0,62.0,1730.0,109.0,3.0,0.0,0.0,3.0,486.0,0.0,179.0,1145.0,3.0,24.0,0.0,220.0,135.0,32.0,10.0,385.0,690.0,1267.0,841.0,60.0,0.0,0.0,0.0,1.0,0.0,71.0,3384.0,0.0,1619.0,0.0,0.0,24.0,0.0,1.0,550.0,846.0,1266.0,189.0,2.0,17.0,1627.0,111.0,0.0,50.0,264.0,87.0,0.0,70.0,313.0,11.0,251.0,106.0,0.0,0.0,4.0,2.0,2.0,30.0,0.0,0.0,15.0,3630.0,0.0,78.0,0.0,3.0,933.0,1.0,110.0,253.0,18.0,0.0,176.0,0.0,14.0,0.0,6328.0,0.0,176.0,783.0,1.0,0.0,153.0,314.0,565.0,444.0,0.0,0.0,0.0,623.0,0.0,23.0,0.0,96.0,0.0,797.0,2.0,112.0,0.0,189.0,766.0,712.0,14.0,3369.0,18.0,476.0,723.0,8.0,30.0,1495.0,0.0,0.0,320.0,515.0,3011.0,11.0,3.0,2012-11-25,,2012-47,0.6210067861310922,0.024, +136,136,0.06,84.0,0.0,126.0,0.0,90.0,419.0,495.0,164.0,0.0,338.0,10284.0,0.0,52.0,823.0,787.0,75.0,94.0,205.0,3409.0,0.0,56.0,230.0,0.0,65.0,607.0,77.0,2500.0,817.0,17.0,0.0,0.0,0.0,925.0,105.0,1926.0,2730.0,0.0,110.0,0.0,78.0,233.0,0.0,79.0,758.0,1725.0,0.0,0.0,555.0,208.0,1347.0,0.0,210.0,0.0,234.0,192.0,33.0,0.0,0.0,0.0,0.0,0.0,2978.0,0.0,2916.0,195.0,0.0,0.0,24.0,2653.0,0.0,302.0,226.0,0.0,90.0,0.0,5960.0,170.0,0.0,13.0,347.0,250.0,38.0,189.0,0.0,641.0,2204.0,328.0,31.0,0.0,0.0,15.0,4526.0,0.0,0.0,308.0,140.0,682.0,6452.0,168.0,6040.0,2513.0,73.0,0.0,56.0,0.0,0.0,8.0,0.0,81.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1094.0,3338.0,3550.0,0.0,25.0,963.0,2024.0,0.0,0.0,129.0,150.0,0.0,0.0,634.0,2101.0,1997.0,0.0,195.0,272.0,47.0,123.0,293.0,2214.0,57.0,9742.0,250.0,4.0,0.0,3775.0,1346.0,840.0,0.0,438.0,334.0,0.0,518.0,0.0,0.0,347.0,14.0,108.0,0.0,86.0,0.0,485.0,2415.0,117.0,0.0,51.0,22.0,0.0,0.0,64.0,0.0,802.0,1655.0,593.0,103.0,8.0,0.0,0.0,727.0,0.0,93.0,1675.0,106.0,0.0,0.0,0.0,0.0,528.0,0.0,148.0,1010.0,0.0,33.0,0.0,194.0,123.0,27.0,10.0,349.0,702.0,1246.0,870.0,58.0,0.0,0.0,0.0,0.0,0.0,69.0,3214.0,0.0,1586.0,0.0,0.0,34.0,0.0,0.0,488.0,761.0,1255.0,208.0,4.0,16.0,1691.0,108.0,0.0,39.0,302.0,98.0,0.0,63.0,310.0,16.0,285.0,109.0,0.0,0.0,0.0,0.0,1.0,36.0,0.0,0.0,0.0,3315.0,0.0,94.0,0.0,0.0,963.0,0.0,106.0,211.0,31.0,0.0,131.0,0.0,18.0,0.0,5965.0,0.0,282.0,811.0,0.0,0.0,168.0,297.0,506.0,423.0,0.0,0.0,0.0,526.0,0.0,10.0,0.0,112.0,0.0,816.0,0.0,124.0,0.0,203.0,741.0,856.0,14.0,3256.0,26.0,443.0,715.0,8.0,23.0,1630.0,1.0,0.0,366.0,400.0,3549.0,0.0,0.0,2012-12-02,,2012-48,0.2724043035279262,1.05, +137,137,0.1,85.0,0.0,139.0,0.0,82.0,466.0,467.0,155.0,0.0,357.0,10514.0,0.0,49.0,762.0,710.0,43.0,106.0,222.0,3480.0,0.0,68.0,193.0,0.0,55.0,509.0,125.0,2200.0,742.0,26.0,0.0,0.0,1.0,893.0,81.0,1798.0,2565.0,0.0,90.0,0.0,73.0,257.0,0.0,85.0,731.0,1611.0,0.0,0.0,481.0,251.0,1079.0,0.0,158.0,0.0,250.0,162.0,50.0,0.0,0.0,0.0,0.0,0.0,3095.0,0.0,2927.0,283.0,0.0,0.0,24.0,2679.0,0.0,183.0,252.0,0.0,81.0,0.0,5305.0,177.0,0.0,12.0,417.0,217.0,37.0,190.0,0.0,432.0,1858.0,321.0,43.0,0.0,0.0,15.0,4262.0,0.0,0.0,287.0,118.0,680.0,6490.0,154.0,5956.0,2486.0,69.0,0.0,58.0,0.0,0.0,12.0,0.0,87.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,975.0,3192.0,2962.0,0.0,27.0,950.0,1829.0,0.0,0.0,104.0,140.0,0.0,0.0,688.0,1808.0,1832.0,0.0,184.0,262.0,59.0,107.0,237.0,2122.0,36.0,9904.0,215.0,5.0,0.0,3626.0,1347.0,821.0,0.0,434.0,328.0,0.0,465.0,0.0,0.0,336.0,24.0,114.0,0.0,71.0,0.0,451.0,2150.0,131.0,0.0,82.0,32.0,0.0,0.0,96.0,0.0,742.0,1619.0,451.0,129.0,9.0,0.0,0.0,660.0,0.0,99.0,1680.0,103.0,0.0,2.0,0.0,0.0,478.0,0.0,135.0,959.0,0.0,41.0,0.0,199.0,166.0,32.0,8.0,287.0,686.0,1188.0,763.0,67.0,0.0,0.0,0.0,0.0,0.0,69.0,3316.0,0.0,1427.0,0.0,0.0,43.0,0.0,0.0,484.0,783.0,1128.0,249.0,1.0,17.0,1601.0,89.0,0.0,51.0,242.0,85.0,0.0,68.0,325.0,10.0,280.0,128.0,0.0,0.0,0.0,0.0,4.0,44.0,2.0,0.0,0.0,3178.0,0.0,78.0,0.0,0.0,730.0,0.0,111.0,241.0,21.0,0.0,151.0,0.0,8.0,0.0,5656.0,0.0,237.0,696.0,0.0,0.0,184.0,216.0,518.0,472.0,0.0,0.0,0.0,552.0,0.0,28.0,0.0,81.0,0.0,764.0,0.0,109.0,0.0,169.0,681.0,757.0,14.0,3168.0,27.0,441.0,649.0,8.0,28.0,1596.0,0.0,0.0,305.0,459.0,2592.0,0.0,0.0,2012-12-09,,2012-49,-0.3690694145578668,0.08400000000000002, +138,138,0.2,110.0,0.0,140.0,0.0,89.0,426.0,483.0,139.0,6.0,348.0,11607.0,0.0,39.0,752.0,678.0,60.0,87.0,177.0,3594.0,0.0,41.0,238.0,0.0,45.0,493.0,93.0,2267.0,639.0,23.0,0.0,0.0,0.0,872.0,91.0,1640.0,2446.0,0.0,84.0,0.0,90.0,227.0,0.0,86.0,789.0,1605.0,0.0,0.0,443.0,267.0,1058.0,0.0,136.0,0.0,241.0,164.0,31.0,0.0,0.0,0.0,0.0,0.0,2888.0,0.0,2748.0,911.0,0.0,0.0,32.0,2644.0,0.0,287.0,240.0,0.0,81.0,0.0,5904.0,136.0,0.0,26.0,519.0,201.0,27.0,160.0,0.0,412.0,1877.0,353.0,52.0,0.0,0.0,9.0,4099.0,0.0,0.0,277.0,121.0,732.0,6329.0,216.0,6093.0,2356.0,57.0,0.0,62.0,0.0,0.0,14.0,0.0,73.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1008.0,3313.0,3277.0,0.0,25.0,904.0,1884.0,0.0,0.0,121.0,150.0,0.0,0.0,545.0,2084.0,1800.0,0.0,198.0,244.0,64.0,129.0,233.0,2046.0,41.0,9854.0,223.0,5.0,0.0,3366.0,1322.0,827.0,0.0,479.0,306.0,0.0,450.0,0.0,0.0,319.0,11.0,133.0,0.0,75.0,0.0,435.0,2173.0,130.0,0.0,60.0,22.0,0.0,0.0,57.0,0.0,681.0,1540.0,472.0,78.0,10.0,0.0,0.0,707.0,0.0,92.0,1652.0,108.0,0.0,0.0,0.0,0.0,419.0,0.0,116.0,907.0,0.0,30.0,0.0,232.0,127.0,26.0,9.0,298.0,723.0,1027.0,761.0,58.0,0.0,0.0,0.0,0.0,0.0,73.0,3211.0,0.0,1378.0,0.0,0.0,39.0,0.0,0.0,455.0,758.0,1165.0,215.0,0.0,18.0,1524.0,109.0,0.0,39.0,222.0,83.0,0.0,47.0,309.0,13.0,262.0,116.0,0.0,0.0,0.0,0.0,0.0,41.0,0.0,0.0,0.0,2960.0,0.0,59.0,0.0,0.0,683.0,0.0,100.0,227.0,22.0,0.0,132.0,0.0,18.0,0.0,5785.0,0.0,211.0,711.0,0.0,0.0,162.0,233.0,508.0,500.0,0.0,0.0,0.0,510.0,0.0,15.0,0.0,92.0,0.0,783.0,0.0,131.0,0.0,175.0,653.0,778.0,13.0,3299.0,16.0,451.0,675.0,8.0,42.0,1496.0,0.0,0.0,299.0,410.0,2443.0,0.0,0.0,2012-12-16,,2012-50,0.7700775608371977,4.926, +139,139,0.45,76.0,0.0,129.0,0.0,91.0,357.0,385.0,105.0,0.0,294.0,11630.0,0.0,48.0,550.0,708.0,38.0,92.0,155.0,2904.0,0.0,32.0,223.0,0.0,33.0,445.0,58.0,1886.0,594.0,18.0,0.0,0.0,0.0,678.0,92.0,1685.0,2114.0,0.0,84.0,0.0,79.0,172.0,0.0,85.0,705.0,1553.0,0.0,0.0,428.0,213.0,1016.0,0.0,141.0,0.0,187.0,139.0,39.0,0.0,0.0,0.0,0.0,0.0,2380.0,0.0,2609.0,243.0,0.0,0.0,16.0,2255.0,0.0,173.0,206.0,0.0,89.0,0.0,5097.0,139.0,1.0,10.0,465.0,169.0,29.0,139.0,0.0,347.0,1647.0,280.0,35.0,0.0,0.0,13.0,4076.0,0.0,0.0,244.0,136.0,595.0,4763.0,138.0,5700.0,2042.0,68.0,0.0,53.0,0.0,0.0,12.0,0.0,64.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,738.0,2461.0,2379.0,0.0,23.0,678.0,1698.0,0.0,0.0,66.0,108.0,0.0,0.0,534.0,1777.0,1458.0,0.0,140.0,262.0,37.0,102.0,206.0,1832.0,30.0,9662.0,179.0,8.0,0.0,3643.0,1803.0,753.0,0.0,354.0,266.0,0.0,340.0,0.0,0.0,276.0,14.0,108.0,0.0,64.0,0.0,419.0,1897.0,107.0,0.0,64.0,29.0,0.0,0.0,55.0,0.0,565.0,1163.0,399.0,204.0,12.0,0.0,0.0,584.0,0.0,81.0,1396.0,73.0,0.0,0.0,0.0,0.0,437.0,0.0,108.0,685.0,0.0,21.0,0.0,120.0,106.0,25.0,7.0,278.0,637.0,893.0,690.0,52.0,0.0,0.0,0.0,0.0,0.0,58.0,3212.0,0.0,1150.0,0.0,0.0,33.0,0.0,0.0,522.0,600.0,890.0,152.0,0.0,11.0,1407.0,74.0,0.0,45.0,173.0,64.0,0.0,64.0,314.0,10.0,192.0,95.0,0.0,0.0,0.0,0.0,0.0,22.0,0.0,0.0,0.0,2378.0,0.0,59.0,0.0,0.0,604.0,0.0,91.0,179.0,38.0,0.0,131.0,0.0,13.0,0.0,4788.0,0.0,133.0,610.0,0.0,0.0,122.0,164.0,413.0,444.0,0.0,0.0,0.0,452.0,0.0,22.0,0.0,77.0,0.0,626.0,0.0,131.0,0.0,156.0,531.0,741.0,9.0,2773.0,14.0,353.0,717.0,15.0,19.0,1483.0,1.0,0.0,224.0,377.0,2301.0,0.0,0.0,2012-12-23,,2012-51,-0.16682036305362402,0.45, +140,140,0.25,87.0,0.0,98.0,0.0,66.0,292.0,250.0,85.0,0.0,229.0,12794.0,3.0,50.0,491.0,906.0,25.0,56.0,140.0,3829.0,0.0,53.0,192.0,2.0,44.0,420.0,59.0,1770.0,533.0,8.0,0.0,0.0,0.0,448.0,64.0,1906.0,1795.0,0.0,90.0,0.0,44.0,176.0,0.0,102.0,404.0,1423.0,2.0,0.0,274.0,200.0,1190.0,0.0,159.0,0.0,118.0,114.0,42.0,0.0,0.0,0.0,0.0,0.0,2103.0,1.0,2343.0,334.0,0.0,4.0,20.0,2058.0,0.0,172.0,171.0,1.0,65.0,0.0,5313.0,126.0,0.0,14.0,586.0,124.0,25.0,87.0,0.0,327.0,992.0,319.0,26.0,1.0,0.0,7.0,3711.0,0.0,0.0,183.0,91.0,403.0,4584.0,101.0,6154.0,1529.0,62.0,0.0,49.0,1.0,0.0,16.0,0.0,53.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,585.0,1957.0,1869.0,0.0,25.0,532.0,1670.0,0.0,1.0,78.0,100.0,0.0,0.0,501.0,1971.0,1153.0,0.0,109.0,153.0,45.0,107.0,155.0,1797.0,29.0,8922.0,235.0,4.0,0.0,3376.0,1426.0,810.0,0.0,286.0,314.0,0.0,243.0,0.0,0.0,259.0,16.0,100.0,0.0,44.0,5.0,269.0,1270.0,103.0,0.0,46.0,20.0,0.0,0.0,49.0,0.0,556.0,980.0,211.0,129.0,8.0,0.0,0.0,466.0,3.0,85.0,1346.0,58.0,0.0,0.0,0.0,0.0,413.0,0.0,101.0,632.0,0.0,15.0,0.0,114.0,80.0,23.0,9.0,285.0,426.0,829.0,607.0,45.0,0.0,0.0,0.0,0.0,0.0,43.0,2628.0,0.0,1306.0,0.0,0.0,25.0,0.0,0.0,381.0,563.0,805.0,153.0,0.0,17.0,883.0,85.0,2.0,43.0,157.0,54.0,0.0,61.0,267.0,10.0,151.0,129.0,0.0,0.0,1.0,0.0,0.0,35.0,0.0,0.0,1.0,2322.0,0.0,66.0,0.0,0.0,845.0,0.0,58.0,131.0,34.0,0.0,101.0,0.0,15.0,0.0,4548.0,0.0,175.0,563.0,0.0,0.0,111.0,147.0,426.0,396.0,0.0,0.0,0.0,431.0,0.0,21.0,0.0,63.0,0.0,673.0,0.0,94.0,0.0,189.0,549.0,663.0,15.0,2450.0,12.0,261.0,786.0,7.0,32.0,1498.0,0.0,0.0,122.0,316.0,2107.0,1.0,0.0,2012-12-30,,2012-52,0.3471087575281969,0.194, +141,141,0.41,114.0,0.0,111.0,0.0,87.0,346.0,363.66666666666674,139.0,0.0,322.0,14812.0,0.0,60.0,734.0,1002.0,36.0,109.0,188.0,4309.0,0.0,45.0,233.0,1.0,55.0,506.0,86.0,2423.0,927.0,20.0,0.0,0.0,0.0,886.0,134.0,1665.0,2496.0,0.0,79.0,0.0,83.0,192.0,0.0,89.0,699.0,1756.0,0.0,0.0,478.0,260.0,1534.0,0.0,599.0,0.0,208.0,148.0,40.0,0.0,0.0,0.0,0.0,0.0,2882.0,0.0,2979.0,410.0,0.0,3.0,24.0,2603.0,0.0,460.0,263.0,0.0,80.0,0.0,5784.0,144.0,0.0,16.0,538.0,152.0,38.0,192.0,2.0,445.0,1784.0,384.0,53.0,0.0,0.0,16.0,4453.0,0.0,0.0,176.0,127.0,531.0,5293.0,206.0,6313.0,2235.0,54.0,1.0,64.0,0.0,0.0,11.0,0.0,53.0,1.0,1.0,0.0,0.0,1.0,0.0,3.0,844.0,2635.0,2441.0,0.0,16.0,816.0,2081.0,0.0,2.0,91.0,140.0,0.0,0.0,637.0,2140.0,1682.0,0.0,185.0,262.0,54.0,115.0,196.0,1960.0,58.0,9071.0,251.0,3.0,1.0,3557.0,1662.0,832.0,0.0,411.0,336.0,0.0,435.0,0.0,42.0,311.0,13.0,145.0,0.0,61.0,1.0,372.0,1703.0,135.0,0.0,69.0,29.0,0.0,0.0,87.0,0.0,678.0,1425.0,383.0,162.0,14.0,0.0,0.0,655.0,0.0,87.0,1668.0,90.0,1.0,1.0,0.0,2.0,470.0,0.0,146.0,897.0,1.0,29.0,0.0,160.0,110.0,20.0,10.0,330.0,676.0,958.0,666.0,91.0,0.0,0.0,0.0,0.0,0.0,57.0,3411.0,0.0,1549.0,1.0,0.0,43.0,0.0,0.0,561.0,769.0,1136.0,215.0,0.0,12.0,1374.0,105.0,0.0,54.0,252.0,87.0,0.0,96.0,299.4,10.0,252.0,124.0,0.0,0.0,2.0,0.0,1.0,27.0,0.0,0.0,2.0,2922.0,236.0,72.0,0.0,2.0,994.0,0.0,107.0,170.0,32.0,0.0,144.0,0.0,16.0,0.0,5682.0,0.0,143.0,670.0,0.0,1.0,150.0,220.0,655.0,417.0,0.0,0.0,0.0,478.0,1.0,32.0,0.0,94.0,0.0,906.0,1.0,151.0,0.0,182.0,616.0,1024.0,15.0,3036.0,25.0,329.0,736.0,7.0,32.0,1365.0,1.0,0.0,294.0,448.0,2666.0,3.0,3.0,2013-01-13,,2013-2,0.8517212814780599,2.184, +142,142,0.95,99.0,0.0,177.0,0.0,112.0,470.0,477.33333333333337,202.0,0.0,422.0,14956.0,0.0,48.0,969.0,712.0,77.0,101.0,279.0,9253.0,0.0,42.0,230.0,0.0,46.0,711.0,85.0,3183.0,900.0,25.0,0.0,0.0,2.0,975.0,121.0,1659.0,3025.0,0.0,151.0,0.0,73.0,340.0,0.0,130.0,955.0,2068.0,0.0,0.0,731.0,345.0,1775.0,0.0,185.0,0.0,367.0,199.0,57.0,0.0,0.0,0.0,0.0,0.0,3992.0,0.0,3518.0,471.0,0.0,0.0,33.0,3299.0,0.0,255.0,249.0,0.0,102.0,0.0,6173.0,170.0,0.0,18.0,523.0,269.0,31.0,252.0,0.0,506.0,2306.0,415.0,46.0,0.0,0.0,18.0,5127.0,0.0,0.0,277.0,168.0,962.0,5616.0,311.0,8343.0,3100.0,55.0,0.0,61.0,0.0,0.0,18.0,0.0,106.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1126.0,3334.0,3819.0,0.0,34.0,1196.0,2536.0,0.0,0.0,152.0,228.0,0.0,0.0,720.0,2300.0,2177.0,0.0,199.0,311.0,72.0,133.0,330.0,2392.0,65.0,10605.0,218.0,10.0,0.0,4157.0,1812.0,968.0,0.0,506.0,431.0,0.0,603.0,0.0,0.0,419.0,17.0,155.0,0.0,76.0,0.0,551.0,2591.0,167.0,0.0,99.0,21.0,0.0,0.0,68.0,0.0,798.0,1867.0,600.0,105.0,11.0,0.0,0.0,885.0,0.0,97.0,1982.0,110.0,0.0,0.0,0.0,0.0,550.0,0.0,173.0,1129.0,0.0,41.0,0.0,248.0,158.0,40.0,34.0,464.0,912.0,1355.0,725.0,86.0,0.0,0.0,0.0,1.0,0.0,72.0,4224.0,0.0,1668.0,0.0,0.0,43.0,0.0,0.0,678.0,987.0,1515.0,239.0,0.0,18.0,1903.0,92.0,0.0,62.0,286.0,138.0,0.0,119.0,331.8,8.0,285.0,212.0,0.0,0.0,0.0,0.0,0.0,30.0,0.0,0.0,0.0,3705.0,0.0,84.0,0.0,0.0,1008.0,0.0,147.0,254.0,34.0,0.0,176.0,0.0,22.0,0.0,6522.0,0.0,136.0,862.0,2.0,0.0,190.0,313.0,736.0,547.0,0.0,0.0,0.0,644.0,0.0,32.0,0.0,130.0,0.0,957.0,0.0,147.0,0.0,206.0,767.0,1005.0,19.0,4027.0,26.0,351.0,871.0,4.0,30.0,1549.0,0.0,0.0,404.0,440.0,3164.0,0.0,0.0,2013-01-20,,2013-3,0.8881550421439535,1.364, +143,143,2.23,87.0,0.0,164.0,0.0,90.0,511.0,591.0,235.0,0.0,463.0,14478.0,0.0,49.0,914.0,654.0,58.0,124.0,268.0,5189.0,0.0,55.0,277.0,0.0,49.0,694.0,59.0,2962.0,939.0,24.0,0.0,0.0,0.0,1195.0,107.0,1631.0,3161.0,0.0,144.0,0.0,78.0,270.0,0.0,108.0,900.0,6648.0,0.0,0.0,732.0,373.0,1642.0,0.0,238.0,0.0,282.0,184.0,52.0,0.0,0.0,0.0,0.0,0.0,3708.0,0.0,3343.0,310.0,0.0,0.0,27.0,3237.0,0.0,251.0,285.0,0.0,104.0,0.0,6007.0,200.0,0.0,15.0,494.0,246.0,51.0,254.0,0.0,508.0,2441.0,374.0,79.0,0.0,0.0,15.0,5097.0,0.0,0.0,300.0,193.0,945.0,6149.0,280.0,7377.0,3112.0,75.0,0.0,71.0,0.0,0.0,17.0,0.0,87.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1239.0,3447.0,3642.0,0.0,22.0,1118.0,2451.0,0.0,0.0,163.0,212.0,0.0,0.0,867.0,2276.0,2232.0,0.0,179.0,311.0,56.0,137.0,293.0,2306.0,58.0,10695.0,230.0,6.0,0.0,4216.0,2003.0,957.0,0.0,604.0,521.0,0.0,662.0,0.0,0.0,371.0,20.0,144.0,0.0,56.0,0.0,506.0,3074.0,170.0,0.0,84.0,30.0,0.0,0.0,71.0,0.0,846.0,1910.0,596.0,118.0,12.0,0.0,0.0,950.0,0.0,75.0,1857.0,116.0,0.0,0.0,0.0,0.0,671.0,0.0,146.0,1084.0,0.0,43.0,0.0,252.0,147.0,35.0,10.0,472.0,844.0,1348.0,784.0,85.0,0.0,0.0,0.0,0.0,0.0,72.0,4100.0,0.0,1651.0,0.0,0.0,28.0,0.0,1.0,719.0,1048.0,1502.0,243.0,0.0,12.0,1824.0,85.0,0.0,54.0,304.0,85.0,0.0,85.0,364.2,3.0,337.0,225.0,0.0,0.0,0.0,0.0,0.0,35.0,1.0,0.0,0.0,4002.0,0.0,81.0,0.0,0.0,907.0,0.0,118.0,236.0,40.0,0.0,142.0,0.0,22.0,0.0,6497.0,0.0,154.0,848.0,0.0,0.0,166.0,329.0,743.0,586.0,0.0,0.0,0.0,612.0,0.0,21.0,0.0,124.0,0.0,960.0,0.0,110.0,0.0,175.0,785.0,1035.0,19.0,4059.0,24.0,372.0,789.0,10.0,27.0,1562.0,0.0,0.0,412.0,504.0,3348.0,0.0,0.0,2013-01-27,,2013-4,2.422545901887794,5.734, +144,144,4.37,97.0,0.0,182.0,0.0,90.0,457.0,651.0,306.0,0.0,559.0,18702.0,0.0,53.0,966.0,649.0,49.0,132.0,276.0,4813.0,0.0,65.0,249.0,0.0,57.0,670.0,45.0,3018.0,971.0,18.0,0.0,0.0,1.0,1350.0,134.0,1689.0,3481.0,0.0,118.0,0.0,56.0,317.0,1.0,107.0,1024.0,6855.0,0.0,0.0,793.0,338.0,1729.0,0.0,149.0,0.0,290.0,200.0,58.0,0.0,0.0,0.0,0.0,0.0,3623.0,0.0,3505.0,269.0,0.0,0.0,33.0,3194.0,0.0,244.0,359.0,0.0,116.0,0.0,6167.0,181.0,0.0,17.0,638.0,236.0,46.0,219.0,0.0,477.0,2508.0,350.0,44.0,0.0,0.0,9.0,5232.0,0.0,1.0,306.0,154.0,883.0,6962.0,319.0,7560.0,3144.0,49.0,0.0,71.0,0.0,0.0,10.0,0.0,118.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1254.0,3537.0,3470.0,0.0,80.0,1137.0,2506.0,0.0,0.0,164.0,197.0,0.0,0.0,852.0,2327.0,2355.0,0.0,229.0,295.0,54.0,145.0,308.0,2389.0,93.0,10463.0,226.0,8.0,0.0,4244.0,1959.0,965.0,0.0,599.0,394.0,0.0,737.0,0.0,0.0,387.0,16.0,148.0,0.0,66.0,0.0,581.0,2881.0,171.0,0.0,116.0,28.0,0.0,0.0,71.0,0.0,853.0,1874.0,628.0,131.0,15.0,0.0,0.0,836.0,0.0,80.0,1906.0,121.0,0.0,1.0,0.0,0.0,632.0,0.0,154.0,1123.0,0.0,28.0,0.0,199.0,194.0,34.0,10.0,395.0,752.0,1496.0,843.0,92.0,0.0,0.0,0.0,0.0,0.0,65.0,4254.0,0.0,1896.0,0.0,0.0,66.0,0.0,0.0,699.0,978.0,1392.0,260.0,1.0,14.0,1886.0,110.0,0.0,59.0,279.0,91.0,0.0,92.0,396.6,14.0,292.0,244.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,4925.0,0.0,89.0,0.0,0.0,866.0,0.0,129.0,273.0,29.0,0.0,164.0,0.0,20.0,0.0,6737.0,0.0,171.0,862.0,0.0,0.0,175.0,346.0,784.0,504.0,0.0,0.0,0.0,651.0,0.0,17.0,0.0,137.0,0.0,1013.0,0.0,115.0,0.0,184.0,853.0,1015.0,18.0,4342.0,30.0,319.0,811.0,9.0,35.0,1486.0,2.0,0.0,370.0,532.0,3600.0,0.0,0.0,2013-02-03,,2013-5,4.328719095549882,8.728, +145,145,8.31,85.0,0.0,161.0,0.0,84.0,499.0,582.0,334.0,0.0,511.0,21655.0,0.0,51.0,888.0,685.0,69.0,119.0,332.0,4442.0,0.0,45.0,245.0,0.0,46.0,668.0,72.0,2946.0,819.0,21.0,0.0,0.0,0.0,1288.0,158.0,1532.0,2995.0,0.0,145.0,0.0,67.0,277.0,0.0,122.0,1053.0,6664.0,2.0,0.0,832.0,374.0,1961.0,0.0,208.0,0.0,274.0,171.0,78.0,0.0,0.0,0.0,0.0,0.0,3802.0,0.0,4635.0,278.0,0.0,0.0,24.0,3062.0,0.0,188.0,348.0,0.0,120.0,0.0,5974.0,195.0,1.0,12.0,790.0,209.0,27.0,259.0,0.0,464.0,2409.0,497.0,60.0,0.0,0.0,12.0,4774.0,0.0,0.0,274.0,167.0,919.0,6950.0,382.0,7569.0,3201.0,69.0,0.0,91.0,0.0,0.0,14.0,0.0,105.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1649.0,3412.0,3321.0,0.0,37.0,1172.0,2177.0,0.0,0.0,202.0,232.0,0.0,0.0,1017.0,2224.0,2139.0,0.0,228.0,298.0,97.0,135.0,320.0,2020.0,120.0,10105.0,231.0,7.0,0.0,4064.0,1729.0,924.0,0.0,608.0,467.0,0.0,683.0,0.0,0.0,399.0,27.0,141.0,0.0,90.0,0.0,583.0,2812.0,164.0,0.0,176.0,37.0,0.0,0.0,93.0,0.0,839.0,1727.0,572.0,112.0,10.0,0.0,0.0,901.0,0.0,106.0,1816.0,91.0,0.0,0.0,0.0,0.0,716.0,0.0,150.0,1169.0,0.0,28.0,0.0,220.0,166.0,24.0,10.0,400.0,851.0,1304.0,902.0,91.0,0.0,0.0,0.0,0.0,0.0,65.0,4101.0,0.0,1792.0,0.0,0.0,59.0,0.0,0.0,682.0,981.0,1471.0,228.0,0.0,14.0,1954.0,90.0,0.0,68.0,333.0,101.0,0.0,106.0,429.0,13.0,333.0,199.0,0.0,0.0,0.0,0.0,2.0,39.0,0.0,0.0,0.0,3749.0,0.0,102.0,0.0,0.0,954.0,0.0,116.0,270.0,32.0,0.0,166.0,0.0,19.0,0.0,6285.0,0.0,1126.0,829.0,0.0,0.0,210.0,305.0,741.0,455.0,0.0,0.0,0.0,645.0,0.0,27.0,0.0,124.0,0.0,991.0,0.0,125.0,0.0,433.0,834.0,953.0,33.0,5090.0,27.0,304.0,903.0,9.0,42.0,1505.0,1.0,0.0,492.0,568.0,2888.0,0.0,0.0,2013-02-10,,2013-6,8.0027147126046,8.636000000000001, +146,146,9.67,83.0,0.0,129.0,0.0,89.0,446.0,595.0,229.0,0.0,413.0,13366.0,0.0,49.0,813.0,733.0,45.0,85.0,296.0,4041.0,0.0,49.0,259.0,0.0,53.0,612.0,51.0,2520.0,738.0,21.0,0.0,0.0,0.0,957.0,101.0,1231.0,3059.0,0.0,238.0,0.0,68.0,268.0,0.0,97.0,963.0,2864.0,0.0,0.0,662.0,346.0,1549.0,0.0,99.0,0.0,240.0,173.0,39.0,0.0,0.0,0.0,0.0,0.0,4269.0,0.0,3353.0,259.0,0.0,0.0,21.0,2467.0,0.0,225.0,318.0,0.0,136.0,0.0,5894.0,221.0,0.0,27.0,502.0,203.0,37.0,193.0,0.0,403.0,1982.0,453.0,54.0,0.0,0.0,9.0,3944.0,0.0,0.0,312.0,161.0,852.0,6732.0,320.0,7103.0,2633.0,41.0,0.0,70.0,0.0,0.0,8.0,0.0,124.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1197.0,3179.0,3394.0,0.0,36.0,1052.0,2201.0,0.0,0.0,148.0,202.0,0.0,0.0,680.0,2045.0,1806.0,0.0,227.0,218.0,154.0,157.0,241.0,1703.0,95.0,10446.0,243.0,3.0,0.0,3481.0,1398.0,923.0,0.0,474.0,413.0,0.0,651.0,0.0,0.0,332.0,11.0,121.0,0.0,69.0,0.0,494.0,2240.0,133.0,0.0,119.0,37.0,0.0,0.0,82.0,0.0,698.0,1484.0,482.0,107.0,11.0,0.0,0.0,802.0,0.0,68.0,1690.0,132.0,0.0,2.0,0.0,0.0,636.0,0.0,155.0,972.0,0.0,25.0,0.0,177.0,175.0,20.0,9.0,438.0,773.0,1256.0,961.0,73.0,0.0,0.0,0.0,0.0,0.0,73.0,3657.0,0.0,1627.0,0.0,0.0,29.0,0.0,0.0,625.0,898.0,1288.0,188.0,0.0,20.0,1626.0,91.0,0.0,50.0,262.0,72.0,0.0,110.0,431.0,12.0,296.0,172.0,0.0,0.0,0.0,0.0,0.0,43.0,0.0,0.0,0.0,3537.0,0.0,72.0,0.0,0.0,687.0,0.0,131.0,189.0,28.0,0.0,146.0,0.0,31.0,0.0,5407.0,0.0,135.0,716.0,0.0,0.0,181.0,265.0,726.0,450.0,0.0,0.0,0.0,670.0,0.0,15.0,0.0,117.0,0.0,846.0,0.0,134.0,0.0,184.0,682.0,1015.0,25.0,3818.0,21.0,284.0,924.0,7.0,36.0,1285.0,0.0,0.0,426.0,513.0,2693.0,0.0,0.0,2013-02-17,,2013-7,9.615060384370032,10.198, +147,147,8.98,68.0,0.0,144.0,0.0,88.0,466.0,530.0,172.0,0.0,468.0,12568.0,0.0,43.0,793.0,675.0,48.0,105.0,272.0,3908.0,0.0,33.0,184.0,0.0,44.0,582.0,46.0,2503.0,707.0,12.0,0.0,0.0,0.0,980.0,111.0,1189.0,2928.0,0.0,104.0,0.0,64.0,232.0,0.0,82.0,881.0,2728.0,0.0,0.0,563.0,327.0,1665.0,0.0,174.0,0.0,222.0,176.0,37.0,0.0,0.0,0.0,0.0,0.0,3403.0,0.0,3326.0,305.0,0.0,0.0,23.0,2424.0,0.0,202.0,347.0,1.0,90.0,0.0,5956.0,147.0,0.0,11.0,587.0,204.0,23.0,196.0,0.0,382.0,2072.0,734.0,44.0,0.0,0.0,9.0,3811.0,0.0,0.0,294.0,156.0,779.0,6528.0,304.0,6947.0,2587.0,57.0,0.0,52.0,0.0,0.0,7.0,0.0,53.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1162.0,3091.0,3409.0,0.0,26.0,984.0,2050.0,0.0,0.0,98.0,173.0,0.0,0.0,656.0,2116.0,1757.0,0.0,201.0,268.0,105.0,163.0,251.0,1605.0,54.0,9643.0,225.0,4.0,0.0,3372.0,1411.0,962.0,0.0,409.0,387.0,0.0,571.0,0.0,0.0,352.0,9.0,101.0,0.0,81.0,0.0,440.0,1974.0,119.0,0.0,78.0,33.0,0.0,0.0,68.0,0.0,692.0,1514.0,434.0,109.0,15.0,0.0,0.0,794.0,0.0,74.0,1663.0,110.0,0.0,0.0,0.0,0.0,439.0,0.0,125.0,1007.0,0.0,42.0,0.0,158.0,125.0,29.0,12.0,450.0,690.0,1245.0,879.0,78.0,0.0,0.0,0.0,1.0,0.0,63.0,3850.0,0.0,1581.0,0.0,0.0,38.0,0.0,0.0,555.0,960.0,1335.0,214.0,0.0,14.0,1519.0,86.0,0.0,49.0,236.0,71.0,0.0,83.0,491.0,10.0,276.0,146.0,0.0,0.0,0.0,0.0,0.0,52.0,0.0,0.0,0.0,3554.0,0.0,71.0,0.0,0.0,718.0,0.0,106.0,215.0,26.0,0.0,134.0,0.0,21.0,0.0,5397.0,0.0,129.0,744.0,0.0,1.0,145.0,219.0,545.0,489.0,0.0,0.0,0.0,540.0,0.0,21.0,0.0,116.0,0.0,878.0,0.0,204.0,0.0,174.0,720.0,1058.0,16.0,3501.0,25.0,301.0,940.0,6.0,31.0,1266.0,0.0,0.0,399.0,514.0,2824.0,0.0,0.0,2013-02-24,,2013-8,8.540047172332308,8.980000000000002, +148,148,11.11,98.0,0.0,130.0,0.0,72.0,480.0,535.0,159.0,0.0,456.0,11892.0,0.0,36.0,815.0,572.0,33.0,97.0,170.0,4309.0,0.0,51.0,247.0,0.0,41.0,561.0,51.0,2538.0,689.0,13.0,0.0,0.0,0.0,946.0,103.0,1230.0,2735.0,0.0,111.0,0.0,73.0,240.0,0.0,83.0,918.0,5093.0,0.0,0.0,656.0,320.0,1517.0,0.0,213.0,0.0,275.0,114.0,43.0,0.0,0.0,0.0,0.0,0.0,2797.0,0.0,3312.0,245.0,0.0,0.0,16.0,2675.0,0.0,374.0,271.0,0.0,66.0,0.0,5583.0,187.0,0.0,15.0,574.0,167.0,33.0,127.0,0.0,373.0,4467.0,625.0,47.0,0.0,0.0,17.0,4021.0,0.0,0.0,236.0,144.0,689.0,5487.0,116.0,5908.0,2515.0,56.0,0.0,52.0,0.0,0.0,8.0,0.0,72.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1207.0,3460.0,3669.0,0.0,32.0,1356.0,2134.0,0.0,0.0,86.0,116.0,0.0,0.0,610.0,2222.0,1836.0,0.0,194.0,235.0,54.0,116.0,238.0,1941.0,55.0,8460.0,222.0,7.0,0.0,3719.0,1446.0,865.0,0.0,473.0,382.0,0.0,466.0,0.0,0.0,365.0,19.0,141.0,0.0,52.0,0.0,477.0,2037.0,143.0,0.0,86.0,24.0,0.0,0.0,61.0,0.0,718.0,1510.0,481.0,94.0,14.0,0.0,0.0,826.0,0.0,87.0,1677.0,115.0,0.0,0.0,0.0,0.0,433.0,0.0,158.0,994.0,0.0,31.0,0.0,124.0,117.0,26.0,11.0,440.0,590.0,1138.0,907.0,78.0,0.0,0.0,0.0,0.0,0.0,67.0,3596.0,0.0,1553.0,0.0,0.0,38.0,0.0,0.0,579.0,742.0,1241.0,200.0,0.0,16.0,1583.0,93.0,0.0,42.0,243.0,54.0,0.0,64.0,519.0,7.0,321.0,126.0,0.0,0.0,0.0,0.0,1.0,38.0,1.0,0.0,0.0,3643.0,0.0,82.0,0.0,0.0,758.0,0.0,106.0,203.0,17.0,0.0,149.0,0.0,30.0,0.0,5507.0,0.0,96.0,809.0,1.0,0.0,167.0,242.0,473.0,464.0,0.0,0.0,0.0,655.0,0.0,16.0,0.0,107.0,0.0,850.0,0.0,143.0,0.0,195.0,703.0,970.0,25.0,3715.0,13.0,333.0,826.0,8.0,29.0,1273.0,0.0,0.0,348.0,567.0,2929.0,0.0,0.0,2013-03-03,,2013-9,10.724853000019259,9.658000000000001, +149,149,10.87,82.0,0.0,122.0,0.0,91.0,427.0,528.0,178.0,0.0,415.0,11743.0,0.0,32.0,787.0,531.0,29.0,74.0,170.0,3571.0,0.0,33.0,256.0,0.0,33.0,561.0,45.0,2344.0,644.0,19.0,0.0,0.0,0.0,1054.0,103.0,1302.0,2452.0,0.0,131.0,0.0,72.0,242.0,0.0,82.0,987.0,6069.0,0.0,0.0,694.0,244.0,1317.0,0.0,138.0,0.0,240.0,106.0,30.0,0.0,0.0,0.0,0.0,0.0,2707.0,0.0,2819.0,289.0,0.0,0.0,22.0,2652.0,0.0,198.0,304.0,0.0,96.0,0.0,5317.0,190.0,0.0,10.0,488.0,180.0,24.0,150.0,0.0,390.0,3228.0,455.0,34.0,0.0,0.0,7.0,4139.0,0.0,0.0,260.0,148.0,632.0,5210.0,103.0,5581.0,2346.0,56.0,0.0,59.0,0.0,0.0,8.0,0.0,57.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1070.0,3434.0,3605.0,0.0,32.0,1097.0,2160.0,0.0,0.0,105.0,120.0,0.0,0.0,598.0,2083.0,1689.0,0.0,168.0,278.0,54.0,124.0,209.0,1787.0,60.0,8266.0,154.0,6.0,0.0,3685.0,1270.0,771.0,0.0,410.0,500.0,0.0,404.0,0.0,0.0,326.0,22.0,113.0,0.0,50.0,0.0,470.0,2224.0,166.0,2.0,161.0,29.0,0.0,0.0,132.0,0.0,639.0,1410.0,497.0,87.0,6.0,0.0,0.0,778.0,0.0,78.0,1638.0,103.0,0.0,0.0,0.0,0.0,480.0,0.0,108.0,932.0,0.0,22.0,0.0,121.0,133.0,24.0,7.0,513.0,633.0,1106.0,782.0,69.0,0.0,0.0,0.0,0.0,0.0,47.0,3659.0,0.0,1538.0,0.0,0.0,39.0,0.0,0.0,522.0,715.0,1104.0,176.0,0.0,12.0,1393.0,70.0,0.0,30.0,228.0,71.0,0.0,67.0,464.0,9.0,250.0,118.0,0.0,0.0,0.0,0.0,1.0,41.0,0.0,0.0,0.0,3953.0,1.0,91.0,0.0,0.0,740.0,0.0,84.0,208.0,34.0,0.0,139.0,0.0,15.0,0.0,4987.0,0.0,105.0,718.0,1.0,0.0,159.0,279.0,453.0,567.0,0.0,0.0,0.0,618.0,0.0,18.0,0.0,82.0,0.0,833.0,0.0,212.0,0.0,146.0,666.0,928.0,18.0,3504.0,7.0,297.0,776.0,8.0,28.0,1211.0,0.0,0.0,312.0,512.0,2570.0,0.0,0.0,2013-03-10,,2013-10,11.25483829093476,10.491999999999999, +150,150,8.96,69.0,0.0,120.0,0.0,81.0,435.0,507.0,101.0,0.0,433.0,9323.0,0.0,29.0,705.0,482.0,28.0,98.0,166.0,3807.0,0.0,33.0,212.0,0.0,44.0,546.0,59.0,2314.0,658.0,17.0,0.0,0.0,0.0,1032.0,100.0,1441.0,2394.0,0.0,113.0,0.0,68.0,243.0,0.0,91.0,1063.0,3192.0,0.0,0.0,721.0,270.0,1319.0,0.0,150.0,0.0,200.0,91.0,35.0,0.0,0.0,0.0,0.0,0.0,6892.0,0.0,2651.0,206.0,0.0,0.0,18.0,2667.0,0.0,365.0,271.0,0.0,87.0,0.0,5519.0,176.0,1.0,21.0,403.0,151.0,28.0,111.0,0.0,604.0,2250.0,372.0,52.0,1.0,0.0,10.0,3714.0,0.0,0.0,279.0,114.0,657.0,5249.0,109.0,5377.0,2446.0,47.0,0.0,52.0,0.0,0.0,7.0,0.0,61.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1021.0,3286.0,3259.0,0.0,16.0,1069.0,2049.0,0.0,0.0,75.0,95.0,0.0,0.0,665.0,2115.0,1758.0,0.0,170.0,249.0,52.0,127.0,234.0,1734.0,49.0,8258.0,171.0,5.0,0.0,3410.0,1277.0,770.0,0.0,380.0,489.0,0.0,429.0,0.0,0.0,333.0,9.0,104.0,0.0,65.0,0.0,434.0,2242.0,115.0,1.0,89.0,21.0,0.0,0.0,68.0,0.0,659.0,1482.0,418.0,75.0,12.0,0.0,0.0,724.0,0.0,74.0,1666.0,104.0,0.0,0.0,0.0,0.0,386.0,0.0,110.0,911.0,0.0,24.0,0.0,128.0,82.0,23.0,4.0,609.0,623.0,1022.0,788.0,57.0,0.0,0.0,0.0,0.0,0.0,47.0,3490.0,0.0,1365.0,0.0,0.0,32.0,0.0,1.0,452.0,707.0,1071.0,204.0,0.0,10.0,1381.0,86.0,0.0,52.0,196.0,60.0,0.0,80.0,426.0,9.0,268.0,139.0,0.0,0.0,0.0,0.0,0.0,34.0,0.0,0.0,0.0,4046.0,0.0,75.0,0.0,0.0,793.0,0.0,96.0,168.0,19.0,0.0,173.0,0.0,15.0,0.0,5164.0,0.0,127.0,744.0,1.0,0.0,146.0,263.0,463.0,459.0,0.0,0.0,0.0,541.0,0.0,19.0,0.0,76.0,0.0,807.0,0.0,106.0,0.0,134.0,679.0,834.0,14.0,3227.0,16.0,299.0,690.0,11.0,20.0,1159.0,0.0,0.0,299.0,473.0,3218.0,0.0,0.0,2013-03-17,,2013-11,9.172294345399994,7.382, +151,151,6.94,84.0,0.0,105.0,0.0,80.0,432.0,501.0,132.0,0.0,375.0,8490.0,0.0,60.0,762.0,525.0,27.0,95.0,205.0,3521.0,0.0,43.0,206.0,0.0,37.0,608.0,49.0,2446.0,722.0,15.0,0.0,0.0,0.0,1029.0,119.0,1279.0,2617.0,0.0,132.0,0.0,61.0,237.0,0.0,105.0,973.0,3446.0,0.0,0.0,706.0,292.0,1370.0,0.0,120.0,0.0,281.0,130.0,33.0,0.0,0.0,0.0,0.0,0.0,2791.0,0.0,2874.0,234.0,0.0,0.0,21.0,2631.0,0.0,186.0,251.0,0.0,66.0,0.0,5310.0,147.0,0.0,12.0,380.0,165.0,18.0,123.0,0.0,399.0,1713.0,324.0,45.0,0.0,0.0,7.0,4135.0,0.0,1.0,240.0,112.0,672.0,5343.0,133.0,5926.0,2355.0,53.0,0.0,53.0,0.0,0.0,5.0,0.0,75.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,977.0,2700.0,3003.0,0.0,18.0,1072.0,2032.0,0.0,0.0,68.0,124.0,0.0,0.0,681.0,2126.0,1680.0,0.0,172.0,243.0,60.0,119.0,206.0,1632.0,62.0,8769.0,156.0,5.0,0.0,3290.0,1333.0,930.0,0.0,377.0,368.0,0.0,465.0,0.0,0.0,371.0,11.0,139.0,0.0,54.0,0.0,488.0,2287.0,161.0,0.0,85.0,24.0,0.0,0.0,56.0,0.0,668.0,1505.0,581.0,122.0,13.0,0.0,0.0,732.0,0.0,94.0,1608.0,96.0,0.0,0.0,0.0,0.0,444.0,0.0,144.0,930.0,0.0,34.0,0.0,142.0,101.0,26.0,4.0,500.0,584.0,1079.0,740.0,63.0,0.0,0.0,0.0,0.0,0.0,45.0,3583.0,0.0,1452.0,0.0,0.0,32.0,0.0,0.0,527.0,753.0,1184.0,192.0,0.0,17.0,1466.0,76.0,0.0,50.0,212.0,64.0,0.0,62.0,394.0,7.0,245.0,149.0,0.0,0.0,0.0,0.0,2.0,34.0,1.0,0.0,0.0,3554.0,0.0,81.0,0.0,0.0,772.0,0.0,149.0,205.0,22.0,0.0,190.0,0.0,15.0,0.0,5112.0,0.0,132.0,714.0,0.0,0.0,168.0,267.0,492.0,615.0,0.0,0.0,0.0,532.0,0.0,20.0,0.0,96.0,0.0,779.0,0.0,102.0,0.0,193.0,624.0,910.0,15.0,2888.0,16.0,267.0,710.0,8.0,36.0,1229.0,2.0,0.0,273.0,485.0,2651.0,0.0,0.0,2013-03-24,,2013-12,8.20869487197705,7.774000000000001, +152,152,5.01,69.0,0.0,107.0,0.0,68.0,471.0,493.0,122.0,0.0,415.0,7050.0,0.0,60.0,723.0,469.0,30.0,98.0,197.0,5896.0,0.0,24.0,199.0,0.0,57.0,549.0,40.0,2533.0,620.0,16.0,0.0,0.0,1.0,909.0,75.0,1332.0,2454.0,0.0,84.0,0.0,52.0,217.0,0.0,84.0,950.0,2877.0,0.0,0.0,670.0,256.0,1421.0,0.0,82.0,0.0,273.0,266.0,29.0,0.0,0.0,0.0,0.0,0.0,2552.0,0.0,2654.0,210.0,0.0,0.0,14.0,2722.0,0.0,182.0,261.0,1.0,86.0,0.0,4847.0,156.0,0.0,12.0,360.0,181.0,23.0,145.0,0.0,317.0,2062.0,299.0,59.0,1.0,0.0,13.0,4058.0,0.0,0.0,249.0,137.0,672.0,5625.0,128.0,5583.0,2216.0,59.0,0.0,46.0,0.0,0.0,8.0,0.0,57.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,792.0,2372.0,2694.0,0.0,20.0,1035.0,1969.0,0.0,0.0,73.0,130.0,0.0,0.0,598.0,2262.0,1715.0,0.0,153.0,250.0,70.0,116.0,215.0,1732.0,51.0,8639.0,117.0,8.0,0.0,3314.0,1378.0,821.0,0.0,345.0,382.0,0.0,429.0,0.0,0.0,338.0,14.0,118.0,0.0,55.0,0.0,409.0,2268.0,131.0,0.0,69.0,23.0,0.0,0.0,70.0,0.0,687.0,1385.0,522.0,98.0,11.0,0.0,0.0,750.0,0.0,95.0,1559.0,80.0,0.0,0.0,0.0,0.0,461.0,0.0,104.0,961.0,0.0,28.0,0.0,123.0,117.0,19.0,5.0,414.0,631.0,1015.0,682.0,60.0,0.0,0.0,0.0,0.0,0.0,36.0,3669.0,0.0,1243.0,0.0,0.0,35.0,0.0,0.0,886.0,697.0,1099.0,191.0,0.0,11.0,1435.0,55.0,0.0,63.0,284.0,52.0,0.0,59.0,376.0,8.0,226.0,117.0,0.0,0.0,0.0,0.0,1.0,27.0,0.0,0.0,0.0,3286.0,0.0,66.0,0.0,0.0,742.0,0.0,110.0,230.0,16.0,0.0,154.0,0.0,20.0,0.0,5247.0,0.0,121.0,677.0,0.0,0.0,136.0,229.0,496.0,547.0,0.0,0.0,0.0,504.0,0.0,15.0,0.0,73.0,0.0,756.0,0.0,94.0,0.0,189.0,620.0,852.0,25.0,2679.0,21.0,278.0,606.0,7.0,28.0,1175.0,1.0,0.0,362.0,431.0,2727.0,0.0,0.0,2013-03-31,,2013-13,4.352009190255814,4.0280000000000005, +153,153,2.98,80.0,0.0,69.0,0.0,81.0,342.0,379.0,105.0,0.0,346.0,5991.0,0.0,37.0,557.0,514.0,23.0,76.0,125.0,2493.0,0.0,32.0,145.0,0.0,117.0,512.0,38.0,1963.0,555.0,15.0,0.0,0.0,0.0,821.0,98.0,1193.0,2026.0,0.0,65.0,0.0,40.0,200.0,0.0,78.0,763.0,2560.0,0.0,0.0,462.0,264.0,1422.0,0.0,99.0,0.0,178.0,74.0,30.0,0.0,0.0,0.0,0.0,0.0,2141.0,0.0,2178.0,188.0,0.0,0.0,12.0,2339.0,0.0,318.0,212.0,0.0,59.0,0.0,4349.0,131.0,0.0,9.0,314.0,127.0,39.0,133.0,0.0,291.0,1359.0,253.0,33.0,0.0,0.0,9.0,3336.0,0.0,0.0,206.0,122.0,533.0,5064.0,171.0,5088.0,1815.0,58.0,0.0,41.0,0.0,0.0,13.0,0.0,77.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,663.0,1815.0,2072.0,0.0,19.0,785.0,1707.0,0.0,0.0,81.0,95.0,0.0,0.0,536.0,2300.0,1468.0,0.0,130.0,206.0,46.0,115.0,176.0,1417.0,44.0,7787.0,233.0,4.0,0.0,2669.0,1267.0,697.0,0.0,349.0,356.0,0.0,374.0,0.0,0.0,296.0,14.0,123.0,0.0,31.0,0.0,351.0,1869.0,118.0,0.0,88.0,26.0,0.0,0.0,49.0,0.0,562.0,1129.0,386.0,104.0,10.0,0.0,0.0,543.0,0.0,71.0,1232.0,69.0,0.0,0.0,0.0,0.0,441.0,0.0,112.0,718.0,0.0,32.0,0.0,111.0,84.0,28.0,6.0,310.0,500.0,807.0,564.0,72.0,0.0,0.0,0.0,0.0,0.0,45.0,2840.0,0.0,1087.0,0.0,0.0,16.0,0.0,0.0,275.0,617.0,894.0,167.0,0.0,7.0,1189.0,58.0,0.0,32.0,140.0,35.0,0.0,67.0,360.0,6.0,184.0,120.0,0.0,0.0,0.0,0.0,2.0,39.0,0.0,0.0,0.0,2705.0,1.0,67.0,0.0,0.0,638.0,0.0,94.0,151.0,24.0,0.0,99.0,0.0,21.0,0.0,4243.0,0.0,221.0,627.0,0.0,0.0,101.0,199.0,412.0,381.0,0.0,0.0,0.0,490.0,0.0,12.0,0.0,64.0,0.0,626.0,0.0,103.0,0.0,147.0,544.0,828.0,11.0,1367.0,18.0,271.0,513.0,10.0,21.0,1151.0,0.0,0.0,276.0,384.0,2250.0,0.0,0.0,2013-04-07,,2013-14,3.0962457055489283,2.998, +154,154,1.99,67.0,0.0,107.0,0.0,68.0,344.0,443.0,105.0,0.0,404.0,7907.0,0.0,57.0,751.0,595.0,49.0,77.0,199.0,1072.0,0.0,30.0,216.0,0.0,41.0,589.0,48.0,2334.0,619.0,12.0,0.0,0.0,0.0,931.0,109.0,1147.0,2453.0,0.0,100.0,0.0,49.0,260.0,0.0,81.0,902.0,3910.0,0.0,0.0,620.0,243.0,1500.0,0.0,103.0,0.0,218.0,72.0,40.0,0.0,0.0,0.0,0.0,0.0,2582.0,0.0,2764.0,360.0,0.0,0.0,21.0,2544.0,0.0,184.0,190.0,0.0,86.0,0.0,4859.0,139.0,0.0,8.0,308.0,163.0,45.0,191.0,0.0,323.0,1709.0,252.0,215.0,0.0,0.0,11.0,3695.0,0.0,0.0,234.0,116.0,642.0,6648.0,182.0,5646.0,2021.0,54.0,0.0,72.0,0.0,0.0,2.0,0.0,61.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,830.0,2398.0,2565.0,0.0,14.0,827.0,1917.0,0.0,0.0,79.0,134.0,0.0,0.0,592.0,2603.0,1604.0,0.0,170.0,251.0,69.0,117.0,193.0,1635.0,70.0,8210.0,202.0,4.0,0.0,3135.0,1417.0,921.0,0.0,427.0,408.0,0.0,424.0,0.0,0.0,324.0,17.0,125.0,0.0,61.0,0.0,427.0,2120.0,115.0,0.0,84.0,17.0,0.0,0.0,60.0,0.0,612.0,1270.0,411.0,91.0,9.0,0.0,0.0,637.0,0.0,85.0,1474.0,79.0,0.0,0.0,0.0,0.0,483.0,0.0,103.0,896.0,0.0,37.0,0.0,138.0,90.0,38.0,11.0,399.0,506.0,877.0,698.0,75.0,0.0,0.0,0.0,1.0,0.0,38.0,3128.0,0.0,1359.0,0.0,0.0,25.0,0.0,0.0,102.0,688.0,1020.0,159.0,0.0,11.0,1302.0,79.0,0.0,47.0,201.0,47.0,0.0,91.0,327.0,6.0,230.0,139.0,0.0,0.0,0.0,0.0,0.0,43.0,0.0,0.0,0.0,3057.0,0.0,67.0,0.0,0.0,850.0,0.0,73.0,172.0,33.0,0.0,134.0,0.0,22.0,0.0,5101.0,0.0,157.0,574.0,0.0,0.0,129.0,263.0,504.0,466.0,0.0,0.0,0.0,509.0,0.0,14.0,0.0,113.0,0.0,728.0,0.0,87.0,0.0,160.0,690.0,938.0,12.0,508.0,26.0,316.0,636.0,16.0,27.0,1333.0,0.0,0.0,329.0,399.0,2814.0,0.0,0.0,2013-04-14,,2013-15,1.193660327990334,1.99, +155,155,1.92,66.0,0.0,109.0,0.0,62.0,366.0,495.0,131.0,0.0,449.0,8122.0,0.0,46.0,720.0,568.0,44.0,77.0,225.0,1092.0,0.0,32.0,249.0,0.0,30.0,565.0,49.0,2371.0,663.0,15.0,0.0,0.0,0.0,1055.0,71.0,1270.0,2538.0,0.0,89.0,0.0,52.0,242.0,0.0,65.0,991.0,3598.0,0.0,0.0,728.0,280.0,1511.0,0.0,132.0,0.0,222.0,121.0,40.0,0.0,0.0,0.0,0.0,0.0,2781.0,0.0,2479.0,276.0,0.0,0.0,29.0,2561.0,0.0,175.0,255.0,0.0,94.0,0.0,4881.0,165.0,0.0,12.0,216.0,194.0,39.0,168.0,0.0,343.0,1901.0,275.0,61.0,0.0,0.0,6.0,3780.0,0.0,0.0,218.0,114.0,752.0,5564.0,205.0,5699.0,2399.0,57.0,0.0,51.0,0.0,0.0,4.0,0.0,56.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,823.0,2509.0,2956.0,0.0,15.0,961.0,1962.0,0.0,0.0,130.0,155.0,0.0,0.0,671.0,2820.0,1784.0,0.0,196.0,287.0,55.0,121.0,256.0,1634.0,85.0,7706.0,246.0,3.0,0.0,3145.0,1338.0,712.0,0.0,380.0,381.0,0.0,519.0,0.0,0.0,330.0,10.0,133.0,0.0,53.0,0.0,490.0,2379.0,126.0,0.0,113.0,21.0,0.0,0.0,55.0,0.0,687.0,1439.0,613.0,98.0,15.0,0.0,0.0,644.0,0.0,84.0,1425.0,97.0,0.0,0.0,0.0,0.0,459.0,0.0,96.0,908.0,0.0,34.0,0.0,222.0,127.0,35.0,11.0,400.0,583.0,1045.0,810.0,159.0,0.0,0.0,0.0,0.0,0.0,59.0,3167.0,0.0,1230.0,0.0,0.0,30.0,0.0,0.0,163.0,827.0,1247.0,192.0,0.0,14.0,1429.0,85.0,0.0,53.0,219.0,58.0,0.0,96.0,340.0,10.0,219.0,144.0,0.0,0.0,0.0,0.0,0.0,45.0,0.0,0.0,0.0,3096.0,0.0,86.0,0.0,0.0,918.0,0.0,117.0,181.0,19.0,0.0,112.0,0.0,10.0,0.0,5332.0,0.0,107.0,829.0,1.0,0.0,136.0,255.0,463.0,475.0,0.0,0.0,0.0,564.0,0.0,16.0,0.0,83.0,0.0,664.0,0.0,102.0,0.0,170.0,670.0,981.0,15.0,522.0,22.0,265.0,647.0,9.0,24.0,1172.0,0.0,0.0,344.0,430.0,2679.0,0.0,0.0,2013-04-21,,2013-16,1.6668829621218384,1.6240000000000003, +156,156,0.01,129.0,3.0,115.0,0.0,71.0,251.0,353.0,65.0,0.0,237.0,5752.0,0.0,43.0,512.0,472.0,27.0,57.0,157.0,2291.0,0.0,37.0,358.0,0.0,34.0,380.0,41.0,1730.0,581.0,11.0,0.0,0.0,0.0,958.0,66.0,646.0,2124.0,0.0,62.0,0.0,51.0,147.0,0.0,51.0,818.0,1384.0,0.0,0.0,813.0,216.0,1102.0,0.0,69.0,0.0,195.0,80.0,48.0,0.0,0.0,0.0,0.0,0.0,1831.0,0.0,3323.0,176.0,0.0,0.0,18.0,1970.0,0.0,121.0,191.0,0.0,58.0,0.0,3645.0,242.0,0.0,7.0,179.0,102.0,26.0,128.0,0.0,263.0,1732.0,195.0,20.0,0.0,0.0,8.0,3227.0,0.0,0.0,186.0,111.0,449.0,5009.0,103.0,3488.0,1713.0,94.0,0.0,25.0,0.0,0.0,2.0,0.0,39.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,719.0,1901.0,2059.0,0.0,13.0,709.0,1321.0,0.0,0.0,68.0,74.0,0.0,0.0,490.0,1361.0,1508.0,0.0,156.0,222.0,62.0,100.0,166.0,1065.0,102.0,4960.0,176.0,3.0,0.0,2225.0,1015.0,594.0,0.0,309.0,314.0,0.0,443.0,0.0,414.0,270.0,11.0,82.0,0.0,52.0,0.0,328.0,2580.0,80.0,0.0,60.0,42.0,0.0,1.0,48.0,0.0,473.0,960.0,356.0,84.0,7.0,0.0,0.0,812.0,0.0,94.0,1220.0,63.0,0.0,0.0,0.0,0.0,428.0,0.0,89.0,763.0,0.0,22.0,0.0,63.0,105.0,18.0,9.0,235.0,572.0,807.0,556.0,41.0,0.0,0.0,0.0,0.0,0.0,25.0,2494.0,0.0,975.0,0.0,0.0,35.0,0.0,0.0,418.0,523.0,842.0,153.0,0.0,13.0,1037.0,62.0,0.0,35.0,204.0,49.0,0.0,57.0,338.0,9.0,193.0,106.0,0.0,0.0,0.0,0.0,0.0,158.0,0.0,0.0,0.0,2201.0,359.0,53.0,0.0,0.0,645.0,0.0,62.0,141.0,16.0,0.0,96.0,0.0,32.0,0.0,4413.0,0.0,87.0,462.0,0.0,0.0,105.0,152.0,292.0,361.0,0.0,0.0,0.0,471.0,6.0,18.0,0.0,84.0,0.0,558.0,0.0,69.0,0.0,125.0,411.0,625.0,12.0,1839.0,12.0,211.0,565.0,5.0,17.0,737.0,0.0,0.0,208.0,278.0,1991.0,0.0,0.0,2013-10-27,,2013-43,-0.5493401046289863,0.252, +157,157,0.0,114.0,2.0,93.0,0.0,65.0,289.0,360.0,93.0,0.0,227.0,5053.0,0.0,30.0,541.0,540.0,38.0,52.0,189.0,2698.0,0.0,28.0,309.0,0.0,40.0,438.0,54.0,1992.0,646.0,12.0,0.0,0.0,0.0,846.0,74.0,777.0,2189.0,0.0,67.0,0.0,48.0,164.0,0.0,88.0,812.0,1442.0,0.0,0.0,743.0,207.0,1050.0,0.0,62.0,0.0,175.0,88.0,21.0,0.0,0.0,0.0,0.0,0.0,2032.0,0.0,3218.0,227.0,0.0,0.0,19.0,1963.0,0.0,109.0,178.0,0.0,62.0,0.0,3705.0,269.0,0.0,12.0,170.0,93.0,27.0,172.0,0.0,317.0,1816.0,268.0,19.0,0.0,0.0,10.0,3522.0,0.0,0.0,231.0,84.0,370.0,4556.0,135.0,3482.0,1761.0,44.0,0.0,41.0,0.0,0.0,2.0,0.0,61.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,754.0,2101.0,2250.0,0.0,9.0,805.0,1432.0,0.0,0.0,64.0,98.0,0.0,0.0,534.0,1466.0,1354.0,0.0,122.0,208.0,67.0,63.0,165.0,1115.0,140.0,4893.0,193.0,5.0,0.0,2436.0,1159.0,565.0,0.0,343.0,305.0,0.0,470.0,0.0,399.0,254.0,12.0,76.0,0.0,59.0,0.0,377.0,2194.0,79.0,0.0,48.0,21.0,0.0,0.0,45.0,0.0,549.0,1119.0,370.0,82.0,13.0,0.0,0.0,724.0,0.0,77.0,1266.0,74.0,0.0,0.0,0.0,0.0,448.0,0.0,105.0,854.0,0.0,19.0,0.0,88.0,100.0,17.0,8.0,238.0,676.0,901.0,537.0,52.0,0.0,0.0,0.0,0.0,0.0,19.0,2594.0,0.0,1094.0,0.0,0.0,40.0,0.0,0.0,497.0,528.0,902.0,170.0,0.0,11.0,1168.0,80.0,0.0,47.0,190.0,92.0,0.0,62.0,293.0,7.0,166.0,118.0,0.0,0.0,0.0,0.0,0.0,81.0,1.0,0.0,0.0,2427.0,396.0,50.0,0.0,0.0,575.0,0.0,50.0,142.0,30.0,0.0,99.0,0.0,24.0,0.0,4717.0,0.0,68.0,527.0,1.0,0.0,111.0,202.0,337.0,338.0,0.0,0.0,0.0,432.0,11.0,16.0,0.0,72.0,0.0,517.0,0.0,63.0,0.0,120.0,357.0,718.0,11.0,1834.0,19.0,210.0,454.0,1.0,24.0,747.0,3.0,0.0,240.0,329.0,1935.0,0.0,0.0,2013-11-03,,2013-44,0.5960581777292404,0.482, +158,158,0.01,99.0,3.0,73.0,0.0,69.0,213.0,350.0,77.0,0.0,209.0,3970.0,0.0,26.0,490.0,552.0,26.0,35.0,187.0,2678.0,0.0,26.0,310.0,0.0,35.0,412.0,51.0,1697.0,577.0,8.0,0.0,0.0,0.0,798.0,92.0,891.0,2077.0,0.0,76.0,0.0,74.0,183.0,0.0,71.0,847.0,1448.0,0.0,0.0,776.0,213.0,1100.0,0.0,61.0,0.0,185.0,113.0,19.0,0.0,0.0,0.0,0.0,0.0,2066.0,0.0,3025.0,178.0,0.0,0.0,22.0,1977.0,0.0,112.0,169.0,0.0,65.0,0.0,3719.0,207.0,0.0,9.0,146.0,83.0,44.0,169.0,0.0,409.0,1663.0,219.0,24.0,0.0,0.0,9.0,3209.0,0.0,1.0,172.0,97.0,424.0,4730.0,128.0,3225.0,1799.0,50.0,0.0,38.0,0.0,0.0,7.0,0.0,53.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,823.0,2075.0,2205.0,0.0,11.0,709.0,1391.0,0.0,0.0,74.0,75.0,0.0,0.0,467.0,1387.0,1273.0,0.0,120.0,193.0,42.0,100.0,170.0,1083.0,116.0,5123.0,189.0,5.0,0.0,2332.0,981.0,566.0,0.0,287.0,293.0,0.0,455.0,0.0,358.0,257.0,10.0,71.0,0.0,44.0,0.0,304.0,1774.0,92.0,0.0,50.0,16.0,0.0,0.0,43.0,0.0,505.0,1047.0,306.0,90.0,6.0,0.0,0.0,648.0,0.0,80.0,1148.0,66.0,0.0,1.0,0.0,0.0,432.0,0.0,86.0,809.0,0.0,24.0,0.0,106.0,89.0,20.0,19.0,274.0,536.0,803.0,571.0,40.0,0.0,0.0,0.0,0.0,0.0,22.0,2348.0,0.0,928.0,0.0,0.0,37.0,0.0,0.0,1243.0,566.0,935.0,147.0,0.0,16.0,956.0,67.0,0.0,41.0,187.0,52.0,0.0,51.0,282.0,7.0,169.0,104.0,0.0,0.0,0.0,0.0,0.0,40.0,1.0,0.0,0.0,2306.0,357.0,60.0,0.0,0.0,548.0,0.0,83.0,126.0,21.0,0.0,86.0,0.0,18.0,0.0,4080.0,0.0,67.0,534.0,0.0,0.0,152.0,221.0,389.0,322.0,0.0,0.0,0.0,400.0,7.0,11.0,0.0,97.0,0.0,548.0,0.0,63.0,0.0,116.0,362.0,646.0,9.0,1578.0,9.0,172.0,440.0,8.0,24.0,735.0,0.0,0.0,242.0,288.0,1848.0,0.0,0.0,2013-11-10,,2013-45,-0.5702201550750754,0.010000000000000002, +159,159,0.02,81.0,4.0,87.0,0.0,53.0,255.0,382.0,68.0,0.0,266.0,5382.0,0.0,29.0,526.0,497.0,36.0,68.0,191.0,2651.0,0.0,29.0,284.0,2.0,36.0,413.0,48.0,1874.0,583.0,16.0,0.0,0.0,0.0,826.0,105.0,896.0,2396.0,0.0,72.0,0.0,68.0,215.0,0.0,57.0,930.0,1419.0,0.0,0.0,916.0,254.0,1078.0,0.0,71.0,0.0,173.0,99.0,31.0,0.0,0.0,0.0,0.0,0.0,2247.0,0.0,3237.0,210.0,0.0,0.0,25.0,2082.0,0.0,111.0,205.0,1.0,76.0,0.0,4218.0,211.0,0.0,14.0,167.0,98.0,24.0,137.0,0.0,320.0,2229.0,267.0,34.0,0.0,0.0,11.0,3306.0,0.0,0.0,210.0,96.0,473.0,5119.0,82.0,4044.0,1930.0,50.0,0.0,45.0,1.0,0.0,6.0,0.0,63.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,821.0,2374.0,2618.0,0.0,10.0,903.0,1522.0,0.0,1.0,82.0,92.0,0.0,0.0,563.0,1402.0,1523.0,0.0,137.0,196.0,53.0,89.0,177.0,1266.0,126.0,5692.0,222.0,3.0,0.0,2704.0,880.0,679.0,0.0,273.0,255.0,0.0,463.0,0.0,385.0,261.0,12.0,97.0,0.0,56.0,1.0,350.0,1992.0,94.0,0.0,35.0,22.0,0.0,0.0,43.0,0.0,481.0,1052.0,432.0,128.0,5.0,0.0,0.0,709.0,1.0,79.0,1322.0,90.0,0.0,0.0,0.0,0.0,487.0,0.0,85.0,810.0,0.0,22.0,0.0,103.0,135.0,18.0,11.0,265.0,568.0,823.0,582.0,43.0,0.0,0.0,0.0,0.0,0.0,44.0,2782.0,0.0,1139.0,0.0,0.0,28.0,0.0,1.0,1045.0,635.0,899.0,163.0,0.0,9.0,1209.0,68.0,0.0,43.0,175.0,55.0,0.0,62.0,258.0,2.0,189.0,51.0,0.0,0.0,0.0,0.0,0.0,45.0,0.0,0.0,2.0,2659.0,362.0,74.0,0.0,1.0,653.0,0.0,98.0,122.0,18.0,0.0,106.0,0.0,29.0,0.0,5062.0,0.0,94.0,586.0,0.0,0.0,151.0,243.0,606.0,353.0,0.0,0.0,0.0,448.0,15.0,9.0,0.0,86.0,0.0,588.0,0.0,83.0,0.0,118.0,460.0,725.0,13.0,1981.0,8.0,209.0,516.0,7.0,19.0,781.0,0.0,0.0,300.0,345.0,2167.0,0.0,0.0,2013-11-17,,2013-46,-0.14971512099576412,0.10600000000000001, +160,160,0.01,58.0,5.0,83.0,0.0,66.0,273.0,335.0,79.0,0.0,245.0,7039.0,3.0,41.0,510.0,470.0,54.0,54.0,143.0,2721.0,0.0,35.0,1708.0,7.0,27.0,431.0,40.0,2065.0,518.0,14.0,0.0,0.0,2.0,894.0,70.0,878.0,2736.0,1.0,75.0,0.0,109.0,305.0,0.0,69.0,1030.0,1380.0,1.0,0.0,869.0,267.0,1294.0,0.0,83.0,0.0,159.0,98.0,28.0,0.0,0.0,0.0,2.0,0.0,2420.0,0.0,3980.0,158.0,0.0,5.0,25.0,2276.0,0.0,122.0,177.0,0.0,70.0,0.0,4425.0,218.0,0.0,16.0,142.0,118.0,23.0,113.0,2.0,328.0,2597.0,256.0,17.0,0.0,0.0,11.0,3137.0,0.0,0.0,133.0,112.0,517.0,6098.0,123.0,4665.0,1834.0,38.0,0.0,46.0,4.0,0.0,7.0,0.0,36.0,2.0,0.0,0.0,0.0,4.0,1.0,1.0,828.0,2650.0,2644.0,0.0,18.0,878.0,1844.0,0.0,3.0,56.0,103.0,0.0,0.0,553.0,1388.0,1554.0,0.0,126.0,231.0,55.0,104.0,180.0,1211.0,118.0,6188.0,171.0,6.0,0.0,3000.0,954.0,754.0,0.0,279.0,303.0,0.0,418.0,0.0,350.0,298.0,11.0,90.0,0.0,59.0,0.0,341.0,2505.0,108.0,0.0,39.0,15.0,0.0,0.0,37.0,1.0,505.0,1081.0,408.0,244.0,9.0,0.0,0.0,728.0,0.0,97.0,1296.0,83.0,3.0,0.0,0.0,3.0,424.0,0.0,108.0,749.0,1.0,20.0,1.0,84.0,99.0,19.0,6.0,214.0,512.0,760.0,603.0,53.0,0.0,0.0,0.0,1.0,0.0,21.0,3013.0,0.0,956.0,2.0,1.0,21.0,0.0,0.0,858.0,672.0,874.0,142.0,0.0,10.0,1217.0,88.0,0.0,36.0,159.0,51.0,0.0,50.0,283.0,8.0,185.0,73.0,0.0,0.0,2.0,0.0,1.0,34.0,0.0,0.0,7.0,2934.0,436.0,86.0,0.0,1.0,812.0,1.0,80.0,128.0,12.0,0.0,93.0,1.0,30.0,0.0,5909.0,0.0,109.0,618.0,0.0,0.0,112.0,194.0,446.0,370.0,0.0,0.0,0.0,491.0,12.0,25.0,0.0,75.0,0.0,668.0,0.0,75.0,0.0,114.0,377.0,696.0,14.0,2491.0,8.0,170.0,423.0,9.0,19.0,755.0,1.0,0.0,276.0,266.0,2377.0,6.0,3.0,2013-11-24,,2013-47,0.46026391564640423,0.21000000000000002, +161,161,0.03,67.0,5.0,139.0,0.0,49.0,284.0,378.0,67.0,0.0,253.0,7142.0,4.0,36.0,531.0,495.0,41.0,83.0,159.0,3184.0,0.0,37.0,606.0,8.0,36.0,544.0,64.0,1997.0,438.0,20.0,0.0,0.0,0.0,777.0,95.0,699.0,2733.0,0.0,69.0,1.0,65.0,237.0,0.0,68.0,1007.0,1304.0,0.0,0.0,898.0,189.0,1263.0,0.0,92.0,1.0,212.0,127.0,17.0,0.0,0.0,0.0,2.0,0.0,2578.0,1.0,3208.0,195.0,0.0,6.0,25.0,2291.0,0.0,109.0,163.0,0.0,68.0,0.0,4545.0,194.0,0.0,13.0,158.0,112.0,22.0,136.0,2.0,329.0,2378.0,209.0,31.0,1.0,0.0,4.0,3419.0,0.0,0.0,215.0,133.0,536.0,6109.0,128.0,3870.0,1829.0,50.0,0.0,43.0,2.0,0.0,5.0,0.0,54.0,0.0,1.0,0.0,0.0,2.0,0.0,0.0,917.0,2618.0,2785.0,0.0,19.0,953.0,1731.0,0.0,1.0,55.0,91.0,0.0,0.0,500.0,1563.0,1700.0,0.0,132.0,249.0,47.0,84.0,201.0,1236.0,134.0,6547.0,158.0,5.0,0.0,2542.0,1006.0,748.0,0.0,216.0,315.0,1.0,475.0,0.0,348.0,292.0,11.0,82.0,0.0,38.0,2.0,316.0,2404.0,98.0,0.0,35.0,16.0,0.0,0.0,50.0,0.0,458.0,1072.0,390.0,118.0,2.0,0.0,0.0,740.0,0.0,62.0,1380.0,93.0,0.0,0.0,0.0,3.0,359.0,0.0,95.0,791.0,1.0,16.0,0.0,106.0,132.0,31.0,16.0,247.0,527.0,783.0,560.0,36.0,0.0,0.0,0.0,0.0,0.0,25.0,3053.0,0.0,1026.0,1.0,1.0,26.0,0.0,0.0,1708.0,629.0,867.0,133.0,0.0,11.0,1238.0,113.0,0.0,38.0,164.0,37.0,0.0,48.0,255.0,5.0,189.0,65.0,0.0,0.0,3.0,0.0,0.0,31.0,3.0,0.0,9.0,2904.0,467.0,58.0,0.0,1.0,701.0,0.0,62.0,132.0,22.0,0.0,105.0,0.0,31.0,0.0,5323.0,0.0,69.0,643.0,1.0,0.0,102.0,175.0,374.0,399.0,0.0,0.0,0.0,523.0,6.0,10.0,0.0,44.0,0.0,666.0,0.0,59.0,0.0,146.0,413.0,742.0,7.0,2579.0,16.0,224.0,490.0,11.0,17.0,820.0,0.0,0.0,230.0,286.0,2456.0,2.0,0.0,2013-12-01,,2013-48,-0.5234922128791091,0.11000000000000001, +162,162,0.03,59.0,1.0,105.0,0.0,66.0,281.0,354.0,88.0,0.0,270.0,5432.0,4.0,35.0,546.0,508.0,42.0,64.0,161.0,2741.0,0.0,50.0,379.0,12.0,35.0,444.0,50.0,1943.0,500.0,16.0,0.0,0.0,0.0,716.0,84.0,537.0,2136.0,0.0,75.0,0.0,60.0,233.0,0.0,90.0,970.0,1302.0,0.0,0.0,776.0,203.0,1151.0,0.0,67.0,0.0,177.0,166.0,28.0,0.0,0.0,0.0,1.0,0.0,2278.0,0.0,2786.0,162.0,0.0,1.0,18.0,2069.0,0.0,144.0,167.0,0.0,67.0,0.0,3752.0,261.0,0.0,10.0,108.0,140.0,29.0,120.0,0.0,470.0,2444.0,321.0,28.0,1.0,0.0,9.0,3179.0,0.0,0.0,178.0,92.0,531.0,4590.0,160.0,3179.0,1835.0,46.0,0.0,45.0,3.0,0.0,7.0,1.0,70.0,1.0,1.0,0.0,0.0,2.0,2.0,1.0,905.0,2169.0,2152.0,0.0,18.0,845.0,1596.0,0.0,1.0,78.0,93.0,0.0,0.0,492.0,1542.0,1449.0,0.0,120.0,222.0,46.0,66.0,186.0,1218.0,122.0,5422.0,138.0,4.0,0.0,2202.0,934.0,635.0,0.0,229.0,287.0,0.0,475.0,0.0,342.0,269.0,9.0,83.0,0.0,47.0,10.0,295.0,1777.0,85.0,0.0,44.0,11.0,0.0,0.0,37.0,0.0,452.0,979.0,387.0,82.0,11.0,0.0,0.0,772.0,0.0,67.0,1153.0,68.0,1.0,0.0,0.0,1.0,417.0,0.0,102.0,734.0,1.0,19.0,1.0,109.0,91.0,23.0,17.0,249.0,568.0,755.0,592.0,38.0,0.0,0.0,0.0,0.0,0.0,19.0,2495.0,0.0,1034.0,2.0,0.0,15.0,0.0,0.0,792.0,613.0,878.0,155.0,0.0,7.0,1255.0,81.0,0.0,38.0,169.0,49.0,0.0,65.0,265.0,1.0,191.0,66.0,0.0,0.0,2.0,0.0,0.0,26.0,0.0,0.0,4.0,2382.0,460.0,61.0,0.0,1.0,528.0,1.0,77.0,142.0,26.0,0.0,107.0,0.0,20.0,0.0,4557.0,0.0,64.0,545.0,0.0,0.0,133.0,190.0,424.0,422.0,0.0,0.0,0.0,467.0,5.0,14.0,0.0,60.0,0.0,539.0,1.0,77.0,0.0,104.0,384.0,709.0,13.0,2100.0,16.0,190.0,425.0,5.0,19.0,796.0,0.0,0.0,230.0,336.0,2047.0,3.0,2.0,2013-12-08,,2013-49,0.9368250696947822,0.05600000000000001, +163,163,0.03,72.0,2.0,142.0,0.0,71.0,275.0,409.0,90.0,0.0,295.0,5482.0,6.0,37.0,585.0,487.0,31.0,56.0,193.0,2943.0,0.0,36.0,414.0,14.0,32.0,436.0,47.0,1879.0,442.0,17.0,0.0,0.0,0.0,720.0,65.0,604.0,2179.0,0.0,73.0,0.0,94.0,225.0,0.0,75.0,961.0,1267.0,0.0,0.0,688.0,229.0,891.0,0.0,138.0,0.0,183.0,161.0,39.0,0.0,0.0,0.0,2.0,0.0,2033.0,2.0,5142.0,190.0,0.0,2.0,19.0,1913.0,0.0,123.0,187.0,0.0,66.0,0.0,3961.0,243.0,1.0,14.0,137.0,133.0,35.0,118.0,0.0,456.0,1776.0,257.0,23.0,0.0,0.0,10.0,2975.0,0.0,1.0,164.0,77.0,490.0,4265.0,162.0,3092.0,1879.0,39.0,0.0,48.0,1.0,0.0,8.0,0.0,76.0,3.0,1.0,0.0,1.0,2.0,1.0,3.0,851.0,2101.0,2162.0,0.0,19.0,838.0,1359.0,0.0,1.0,88.0,103.0,0.0,0.0,464.0,1433.0,1378.0,0.0,114.0,196.0,54.0,104.0,175.0,1149.0,123.0,4795.0,144.0,4.0,0.0,2056.0,1029.0,610.0,0.0,221.0,310.0,0.0,427.0,0.0,272.0,275.0,6.0,84.0,0.0,39.0,5.0,353.0,1687.0,87.0,0.0,40.0,31.0,0.0,0.0,58.0,0.0,515.0,1024.0,492.0,99.0,7.0,0.0,0.0,690.0,0.0,66.0,1149.0,86.0,0.0,3.0,0.0,2.0,461.0,0.0,64.0,630.0,1.0,27.0,1.0,134.0,82.0,23.0,15.0,248.0,521.0,780.0,613.0,54.0,0.0,0.0,0.0,0.0,0.0,25.0,2575.0,0.0,1007.0,2.0,0.0,23.0,0.0,0.0,627.0,578.0,844.0,170.0,0.0,11.0,1298.0,92.0,0.0,39.0,121.0,38.0,1.0,45.0,269.0,5.0,186.0,83.0,0.0,0.0,3.0,0.0,0.0,28.0,1.0,0.0,3.0,2272.0,412.0,50.0,0.0,0.0,526.0,2.0,76.0,166.0,14.0,0.0,88.0,0.0,21.0,0.0,4268.0,0.0,81.0,545.0,0.0,0.0,108.0,174.0,364.0,387.0,0.0,0.0,0.0,479.0,10.0,13.0,0.0,102.0,0.0,526.0,0.0,57.0,0.0,130.0,401.0,695.0,14.0,1973.0,11.0,205.0,408.0,3.0,18.0,754.0,0.0,0.0,231.0,277.0,1877.0,4.0,0.0,2013-12-15,,2013-50,0.3783519153634858,1.1500000000000001, +164,164,0.03,51.0,4.0,107.0,0.0,51.0,259.0,374.0,70.0,0.0,259.0,5890.0,3.0,34.0,485.0,530.0,36.0,71.0,230.0,2537.0,0.0,35.0,427.0,11.0,44.0,448.0,44.0,1542.0,491.0,11.0,0.0,0.0,0.0,756.0,99.0,964.0,2177.0,1.0,81.0,3.0,86.0,329.0,0.0,77.0,842.0,1171.0,0.0,0.0,707.0,224.0,857.0,0.0,98.0,0.0,166.0,104.0,35.0,0.0,0.0,0.0,1.0,0.0,2315.0,0.0,3463.0,281.0,0.0,4.0,16.0,1945.0,0.0,123.0,173.0,0.0,68.0,0.0,3457.0,214.0,1.0,7.0,144.0,155.0,33.0,107.0,2.0,337.0,1661.0,239.0,39.0,1.0,0.0,5.0,3198.0,0.0,0.0,170.0,109.0,430.0,4682.0,144.0,4007.0,1776.0,92.0,2.0,43.0,4.0,1.0,2.0,0.0,69.0,4.0,1.0,3.0,0.0,0.0,0.0,0.0,1055.0,25983.0,2087.0,0.0,16.0,882.0,1460.0,0.0,1.0,68.0,97.0,0.0,0.0,533.0,1272.0,1380.0,0.0,114.0,203.0,34.0,91.0,196.0,1112.0,127.0,5107.0,165.0,3.0,1.0,2228.0,1003.0,601.0,0.0,266.0,360.0,0.0,428.0,0.0,279.0,256.0,8.0,95.0,0.0,41.0,7.0,330.0,1603.0,112.0,0.0,55.0,28.0,0.0,0.0,43.0,0.0,425.0,895.0,472.0,98.0,8.0,0.0,0.0,707.0,0.0,72.0,1204.0,89.0,0.0,3.0,0.0,4.0,397.0,0.0,91.0,700.0,1.0,33.0,0.0,161.0,102.0,24.0,6.0,294.0,540.0,781.0,576.0,35.0,0.0,1.0,0.0,0.0,0.0,24.0,2470.0,0.0,1052.0,1.0,2.0,28.0,0.0,0.0,621.0,559.0,811.0,142.0,1.0,9.0,1271.0,102.0,0.0,40.0,164.0,42.0,0.0,58.0,238.0,4.0,184.0,57.0,0.0,0.0,3.0,0.0,0.0,34.0,2.0,0.0,1.0,2124.0,412.0,59.0,0.0,2.0,499.0,0.0,70.0,141.0,23.0,1.0,110.0,0.0,10.0,0.0,4618.0,0.0,88.0,518.0,0.0,0.0,113.0,178.0,452.0,372.0,0.0,2.0,0.0,483.0,16.0,11.0,0.0,97.0,0.0,519.0,0.0,75.0,0.0,133.0,412.0,721.0,13.0,1928.0,23.0,193.0,474.0,6.0,25.0,752.0,0.0,0.0,179.0,331.0,2046.0,9.0,1.0,2013-12-22,,2013-51,0.09401350535104447,0.782, +165,165,0.03,74.0,1.0,111.0,0.0,65.0,231.0,315.0,76.0,0.0,260.0,5280.0,7.0,31.0,501.0,600.0,36.0,44.0,352.0,2142.0,0.0,21.0,346.0,6.0,34.0,357.0,37.0,1448.0,499.0,11.0,0.0,0.0,0.0,622.0,79.0,945.0,1972.0,0.0,78.0,1.0,41.0,151.0,0.0,54.0,756.0,906.0,0.0,0.0,648.0,213.0,819.0,0.0,1029.0,0.0,167.0,92.0,24.0,0.0,0.0,0.0,0.0,0.0,1864.0,0.0,2874.0,236.0,0.0,6.0,26.0,1629.0,0.0,120.0,188.0,0.0,52.0,0.0,3228.0,212.0,0.0,17.0,116.0,138.0,28.0,88.0,0.0,264.0,1445.0,223.0,38.0,0.0,0.0,9.0,2802.0,0.0,0.0,124.0,96.0,326.0,4071.0,149.0,3235.0,1669.0,55.0,1.0,44.0,2.0,3.0,3.0,1.0,47.0,1.0,4.0,4.0,0.0,3.0,0.0,3.0,689.0,1842.0,1676.0,0.0,15.0,693.0,1400.0,0.0,3.0,62.0,108.0,0.0,0.0,422.0,1091.0,1174.0,0.0,84.0,221.0,41.0,91.0,142.0,1018.0,62.0,5032.0,171.0,1.0,1.0,1635.0,934.0,526.0,0.0,205.0,243.0,3.0,379.0,0.0,261.0,219.0,14.0,82.0,0.0,38.0,13.0,309.0,1471.0,85.0,0.0,42.0,23.0,1.0,0.0,53.0,0.0,469.0,833.0,370.0,89.0,17.0,0.0,0.0,668.0,0.0,61.0,1082.0,84.0,3.0,1.0,0.0,0.0,382.0,0.0,91.0,569.0,1.0,26.0,0.0,108.0,86.0,12.0,4.0,272.0,496.0,666.0,493.0,41.0,0.0,0.0,0.0,0.0,0.0,23.0,2372.0,0.0,1027.0,1.0,0.0,26.0,0.0,0.0,464.0,459.0,774.0,144.0,0.0,9.0,1221.0,154.0,1.0,31.0,96.0,55.0,0.0,41.0,278.0,7.0,162.0,57.0,0.0,0.0,1.0,0.0,1.0,27.0,1.0,0.0,3.0,1724.0,460.0,48.0,0.0,0.0,417.0,1.0,60.0,105.0,31.0,0.0,96.0,0.0,21.0,0.0,3946.0,0.0,214.0,506.0,0.0,0.0,86.0,137.0,516.0,324.0,0.0,0.0,0.0,473.0,9.0,20.0,0.0,52.0,0.0,446.0,0.0,75.0,0.0,135.0,315.0,583.0,9.0,1581.0,6.0,203.0,430.0,4.0,20.0,745.0,1.0,0.0,133.0,310.0,1650.0,4.0,4.0,2013-12-29,,2013-52,0.36569761138236934,0.03, +166,166,0.02,48.0,0.0,66.0,0.0,33.0,184.0,140.0,67.0,0.0,167.0,4230.0,7.0,36.0,326.0,563.0,29.0,40.0,106.0,1526.0,0.0,43.0,202.0,9.0,32.0,277.0,56.0,1104.0,280.0,15.0,0.0,0.0,0.0,304.0,108.0,947.0,1319.0,0.0,62.0,0.0,48.0,163.0,0.0,42.0,445.0,744.0,0.0,0.0,267.0,136.0,761.0,0.0,1380.0,0.0,90.0,40.0,26.0,0.0,0.0,0.0,1.0,0.0,1302.0,0.0,2195.0,265.0,0.0,4.0,14.0,1236.0,0.0,100.0,139.0,0.0,37.0,0.0,2748.0,114.0,1.0,6.0,100.0,52.0,20.0,71.0,1.0,173.0,811.0,191.0,31.0,0.0,0.0,13.0,2184.0,0.0,0.0,91.0,72.0,177.0,4060.0,79.0,2646.0,1056.0,38.0,0.0,31.0,4.0,2.0,6.0,0.0,31.0,3.0,0.0,3.0,0.0,2.0,1.0,2.0,376.0,1222.0,1043.0,0.0,13.0,453.0,1026.0,0.0,5.0,33.0,62.0,0.0,0.0,361.0,956.0,791.0,0.0,57.0,226.0,31.0,58.0,138.0,704.0,56.0,3713.0,133.0,5.0,5.0,1325.0,911.0,435.0,0.0,148.0,221.0,0.0,197.0,0.0,216.0,173.0,7.0,71.0,0.0,36.0,11.0,191.0,803.0,64.0,0.0,33.0,27.0,0.0,0.0,30.0,0.0,325.0,590.0,192.0,89.0,6.0,0.0,0.0,385.0,0.0,40.0,722.0,63.0,3.0,0.0,0.0,4.0,278.0,0.0,46.0,415.0,1.0,14.0,0.0,46.0,61.0,18.0,3.0,152.0,300.0,489.0,368.0,27.0,0.0,0.0,0.0,1.0,0.0,11.0,1720.0,0.0,905.0,1.0,1.0,20.0,0.0,0.0,242.0,343.0,566.0,119.0,0.0,13.0,660.0,91.0,0.0,18.0,82.0,42.0,1.0,27.0,241.0,5.0,143.0,58.0,0.0,0.0,2.0,0.0,0.0,22.0,0.0,0.0,5.0,1366.0,1511.0,63.0,0.0,1.0,437.0,0.0,47.0,77.0,25.0,0.0,84.0,0.0,18.0,0.0,3196.0,0.0,86.0,360.0,0.0,1.0,72.0,103.0,390.0,209.0,0.0,0.0,0.0,419.0,7.0,19.0,0.0,34.0,0.0,362.0,2.0,50.0,0.0,104.0,250.0,449.0,12.0,1029.0,14.0,147.0,407.0,12.0,16.0,603.0,0.0,0.0,80.0,231.0,1349.0,3.0,3.0,2014-01-05,,2014-1,-0.034755166292896336,2.1699999999999995, +167,167,0.03,86.0,2.0,75.0,0.0,63.0,207.0,245.33333333333331,83.0,0.0,211.0,5027.0,1.0,23.0,414.0,778.0,29.0,53.0,128.0,2034.0,0.0,28.0,988.0,9.0,47.0,328.0,100.0,1357.0,345.0,12.0,0.0,5.0,1.0,540.0,109.0,820.0,1711.0,0.0,57.0,1.0,45.0,174.0,0.0,59.0,532.0,977.0,12.0,0.0,343.0,177.0,775.0,0.0,191.0,0.0,122.0,76.0,27.0,0.0,2513.0,0.0,1.0,8.0,1521.0,0.0,2575.0,521.0,0.0,12.0,13.0,1377.0,0.0,146.0,136.0,0.0,45.0,0.0,2861.0,176.0,0.0,13.0,110.0,124.0,21.0,108.0,0.0,247.0,1099.0,218.0,54.0,1.0,0.0,10.0,2222.0,0.0,0.0,125.0,84.0,186.0,3680.0,109.0,2487.0,1540.0,51.0,0.0,29.0,3.0,1.0,6.0,1.0,49.0,4.0,0.0,1.0,0.0,1.0,0.0,4.0,569.0,1455.0,1315.0,1.0,15.0,592.0,1297.0,3.0,5.0,52.0,81.0,5.0,0.0,449.0,1027.0,1054.0,5.0,74.0,178.0,21.0,101.0,133.0,800.0,87.0,3306.0,149.0,4.0,5.0,1491.0,971.0,448.0,16.0,190.0,310.0,2.0,231.0,1.0,124.0,188.0,5.0,88.0,217.0,41.0,9.0,293.0,861.0,112.0,0.0,56.0,22.0,0.0,0.0,51.0,0.0,396.0,751.0,267.0,59.0,6.0,0.0,0.0,508.0,0.0,46.0,905.0,71.0,2.0,0.0,0.0,3.0,342.0,0.0,81.0,519.0,0.0,20.0,0.0,78.0,85.0,24.0,9.0,203.0,394.0,701.0,425.33333333333326,43.0,0.0,0.0,2.0,0.0,0.0,18.0,2106.0,0.0,1030.0,1.0,1.0,34.0,0.0,0.0,369.0,416.0,623.0,133.0,0.0,17.0,895.0,53.0,0.0,38.0,94.0,42.0,2.0,60.0,267.2,9.0,173.0,64.0,0.0,0.0,6.0,0.0,18.0,20.0,97.0,0.0,5.0,1682.0,458.0,47.0,0.0,2.0,447.0,2.0,59.0,85.0,24.0,0.0,88.0,1.0,21.0,0.0,3967.0,0.0,79.0,477.0,0.0,1.0,68.0,151.0,419.0,295.0,0.0,0.0,0.0,399.0,21.0,19.0,0.0,58.0,0.0,418.0,1.0,66.0,0.0,109.0,310.0,505.0,19.0,1262.0,22.0,150.0,398.0,6.0,18.0,585.0,0.0,0.0,91.0,248.0,1507.0,13.0,3.0,2014-01-12,,2014-2,-0.9532612874803819,2.3499999999999996, +168,168,0.08,75.0,2.0,123.0,0.0,57.0,373.0,350.66666666666663,121.0,0.0,301.0,6349.0,7.0,42.0,726.0,579.0,40.0,66.0,186.0,3153.0,0.0,40.0,320.0,6.0,40.0,473.0,70.0,2199.0,622.0,18.0,0.0,0.0,0.0,752.0,128.0,789.0,2597.0,0.0,84.0,0.0,96.0,222.0,0.0,90.0,869.0,1302.0,0.0,0.0,753.0,264.0,1023.0,0.0,503.0,0.0,224.0,147.0,25.0,0.0,0.0,0.0,2.0,29.0,2391.0,0.0,3406.0,297.0,0.0,11.0,24.0,2188.0,0.0,183.0,214.0,0.0,83.0,0.0,3881.0,259.0,2.0,12.0,125.0,154.0,33.0,175.0,5.0,363.0,2093.0,346.0,48.0,1.0,0.0,7.0,3350.0,0.0,0.0,173.0,161.0,383.0,4533.0,195.0,3638.0,2160.0,70.0,2.0,46.0,3.0,3.0,5.0,0.0,99.0,3.0,0.0,4.0,1.0,1.0,1.0,2.0,917.0,2277.0,2029.0,0.0,17.0,955.0,1646.0,0.0,4.0,82.0,148.0,0.0,0.0,578.0,1286.0,1624.0,0.0,112.0,258.0,48.0,95.0,244.0,1221.0,157.0,4300.0,205.0,1.0,2.0,2270.0,1034.0,659.0,0.0,277.0,319.0,5.0,502.0,0.0,276.0,267.0,10.0,91.0,0.0,44.0,11.0,388.0,1771.0,115.0,0.0,86.0,23.0,0.0,0.0,50.0,0.0,640.0,1210.0,621.0,125.0,8.0,0.0,0.0,859.0,0.0,66.0,1296.0,97.0,1.0,0.0,0.0,3.0,489.0,0.0,96.0,870.0,1.0,38.0,0.0,117.0,141.0,20.0,14.0,308.0,533.0,1074.0,482.66666666666674,51.0,0.0,0.0,0.0,0.0,0.0,31.0,3157.0,0.0,1262.0,2.0,2.0,37.0,0.0,0.0,664.0,656.0,1017.0,196.0,0.0,12.0,1461.0,92.0,0.0,47.0,185.0,80.0,0.0,81.0,293.4,6.0,226.0,81.0,0.0,0.0,8.0,0.0,0.0,25.0,1.0,0.0,7.0,2507.0,658.0,62.0,0.0,9.0,643.0,0.0,83.0,143.0,20.0,0.0,133.0,0.0,20.0,0.0,5017.0,0.0,87.0,631.0,0.0,0.0,132.0,218.0,673.0,400.0,0.0,0.0,0.0,545.0,15.0,17.0,0.0,112.0,0.0,564.0,0.0,71.0,0.0,134.0,432.0,797.0,10.0,1945.0,16.0,220.0,527.0,8.0,23.0,680.0,1.0,0.0,188.0,362.0,2263.0,11.0,4.0,2014-01-19,,2014-3,0.09604736849997852,0.066, +169,169,0.11,69.0,8.0,153.0,0.0,76.0,410.0,456.0,153.0,0.0,355.0,6747.0,1.0,47.0,841.0,714.0,42.0,98.0,223.0,3255.0,0.0,41.0,384.0,12.0,39.0,593.0,58.0,2443.0,682.0,18.0,0.0,0.0,0.0,959.0,133.0,907.0,3032.0,0.0,78.0,3.0,94.0,265.0,0.0,77.0,1070.0,2010.0,0.0,0.0,943.0,278.0,1169.0,0.0,188.0,0.0,234.0,140.0,45.0,0.0,0.0,0.0,2.0,22.0,2919.0,1.0,3222.0,302.0,0.0,6.0,28.0,2415.0,0.0,183.0,189.0,1.0,96.0,0.0,4173.0,258.0,2.0,23.0,111.0,178.0,45.0,192.0,8.0,356.0,2434.0,373.0,48.0,1.0,0.0,15.0,3585.0,0.0,0.0,179.0,150.0,582.0,5159.0,277.0,3975.0,2595.0,81.0,0.0,57.0,4.0,2.0,12.0,0.0,105.0,1.0,2.0,4.0,0.0,4.0,1.0,1.0,1055.0,2659.0,2475.0,0.0,18.0,1187.0,1842.0,0.0,3.0,123.0,153.0,0.0,0.0,752.0,1571.0,1836.0,1.0,144.0,317.0,66.0,109.0,233.0,1290.0,216.0,4879.0,207.0,6.0,3.0,2414.0,1461.0,714.0,0.0,300.0,426.0,3.0,593.0,0.0,322.0,331.0,15.0,104.0,0.0,50.0,19.0,403.0,2387.0,127.0,0.0,84.0,33.0,0.0,0.0,50.0,0.0,690.0,1429.0,657.0,113.0,14.0,0.0,0.0,999.0,0.0,66.0,1500.0,118.0,4.0,0.0,0.0,1.0,587.0,2.0,116.0,877.0,1.0,37.0,0.0,176.0,122.0,23.0,11.0,334.0,701.0,1013.0,540.0,72.0,0.0,0.0,0.0,0.0,0.0,30.0,3610.0,0.0,1380.0,6.0,3.0,41.0,0.0,0.0,776.0,863.0,1210.0,256.0,0.0,19.0,1967.0,93.0,0.0,45.0,185.0,76.0,0.0,87.0,319.6,8.0,255.0,113.0,0.0,0.0,11.0,0.0,0.0,33.0,1.0,0.0,6.0,2933.0,635.0,64.0,0.0,7.0,663.0,0.0,129.0,180.0,27.0,0.0,133.0,0.0,34.0,0.0,5563.0,0.0,99.0,742.0,0.0,0.0,158.0,243.0,743.0,422.0,0.0,0.0,1.0,616.0,12.0,18.0,0.0,110.0,0.0,688.0,1.0,65.0,0.0,146.0,488.0,813.0,17.0,2179.0,22.0,261.0,584.0,9.0,26.0,726.0,0.0,0.0,246.0,450.0,2551.0,15.0,6.0,2014-01-26,,2014-4,0.42952075240932697,0.128, +170,170,0.26,89.0,1.0,139.0,0.0,78.0,355.0,533.0,173.0,0.0,368.0,6802.0,13.0,32.0,807.0,550.0,39.0,107.0,216.0,3516.0,0.0,32.0,324.0,13.0,37.0,526.0,54.0,2285.0,674.0,19.0,0.0,0.0,0.0,878.0,125.0,1160.0,3077.0,0.0,99.0,3.0,85.0,229.0,0.0,92.0,1145.0,1901.0,0.0,0.0,914.0,329.0,1171.0,0.0,180.0,0.0,252.0,199.0,46.0,0.0,0.0,0.0,1.0,20.0,3114.0,3.0,3204.0,272.0,0.0,22.0,23.0,2295.0,0.0,216.0,218.0,1.0,65.0,0.0,4109.0,239.0,0.0,12.0,111.0,158.0,40.0,175.0,5.0,384.0,2380.0,345.0,66.0,2.0,0.0,7.0,3743.0,0.0,0.0,212.0,162.0,531.0,5253.0,292.0,4175.0,2542.0,64.0,1.0,45.0,5.0,1.0,6.0,1.0,101.0,6.0,0.0,3.0,0.0,1.0,0.0,4.0,1103.0,2706.0,2615.0,0.0,19.0,1149.0,1784.0,0.0,5.0,101.0,183.0,0.0,0.0,777.0,1528.0,1820.0,0.0,183.0,297.0,70.0,126.0,256.0,1385.0,263.0,5106.0,215.0,9.0,1.0,2633.0,1296.0,723.0,0.0,336.0,406.0,1.0,623.0,0.0,281.0,323.0,20.0,103.0,0.0,52.0,20.0,393.0,2326.0,156.0,0.0,106.0,38.0,1.0,0.0,54.0,0.0,666.0,1457.0,552.0,138.0,11.0,0.0,0.0,979.0,0.0,63.0,1432.0,101.0,0.0,0.0,0.0,2.0,596.0,0.0,95.0,890.0,2.0,34.0,0.0,128.0,133.0,22.0,8.0,267.0,704.0,1028.0,597.3333333333334,59.0,0.0,0.0,0.0,0.0,2.0,38.0,3509.0,0.0,1411.0,2.0,4.0,89.0,0.0,0.0,715.0,726.0,1215.0,209.0,0.0,15.0,1975.0,93.0,0.0,56.0,207.0,62.0,2.0,86.0,345.8,5.0,262.0,106.0,0.0,0.0,16.0,0.0,0.0,38.0,2.0,0.0,9.0,2782.0,576.0,68.0,0.0,8.0,643.0,3.0,110.0,173.0,25.0,0.0,109.0,0.0,40.0,0.0,5595.0,0.0,220.0,825.0,1.0,0.0,114.0,265.0,813.0,388.0,0.0,0.0,1.0,578.0,12.0,19.0,0.0,110.0,0.0,701.0,1.0,98.0,0.0,159.0,422.0,793.0,11.0,2197.0,13.0,277.0,566.0,10.0,43.0,792.0,0.0,0.0,242.0,380.0,2605.0,7.0,2.0,2014-02-02,,2014-5,-0.22106905419954082,0.22999999999999998, +171,171,0.39,90.0,5.0,149.0,0.0,92.0,372.0,481.0,236.0,0.0,436.0,7432.0,4.0,41.0,724.0,677.0,39.0,95.0,324.0,2993.0,0.0,63.0,381.0,26.0,61.0,576.0,109.0,2310.0,589.0,16.0,0.0,0.0,1.0,949.0,122.0,1547.0,2871.0,1.0,149.0,1.0,59.0,223.0,0.0,119.0,1187.0,1736.0,0.0,0.0,934.0,329.0,1174.0,0.0,192.0,0.0,244.0,135.0,31.0,0.0,0.0,0.0,1.0,28.0,2624.0,1.0,3006.0,388.0,0.0,15.0,35.0,2298.0,0.0,320.0,246.0,0.0,117.0,0.0,4136.0,292.0,2.0,10.0,155.0,178.0,48.0,242.0,5.0,369.0,2344.0,276.0,56.0,1.0,0.0,9.0,3723.0,0.0,1.0,210.0,159.0,500.0,5137.0,306.0,4094.0,2566.0,123.0,5.0,54.0,2.0,2.0,9.0,0.0,78.0,3.0,3.0,3.0,0.0,6.0,1.0,4.0,1096.0,2617.0,2306.0,0.0,17.0,1212.0,1756.0,0.0,2.0,153.0,229.0,0.0,0.0,766.0,1580.0,1911.0,0.0,172.0,316.0,71.0,153.0,255.0,1282.0,357.0,5151.0,168.0,3.0,2.0,2294.0,1129.0,654.0,0.0,340.0,420.0,7.0,637.0,0.0,232.0,348.0,31.0,105.0,0.0,59.0,20.0,419.0,2538.0,124.0,0.0,198.0,47.0,0.0,0.0,47.0,0.0,673.0,1382.0,597.0,108.0,12.0,0.0,0.0,940.0,0.0,80.0,1454.0,117.0,4.0,0.0,0.0,3.0,631.0,0.0,137.0,1274.0,2.0,33.0,1.0,141.0,137.0,37.0,20.0,310.0,668.0,1057.0,654.6666666666667,57.0,0.0,1.0,0.0,0.0,0.0,36.0,3442.0,0.0,1340.0,3.0,4.0,50.0,0.0,0.0,739.0,810.0,1228.0,174.0,0.0,17.0,1828.0,153.0,0.0,57.0,191.0,74.0,0.0,76.0,372.0,10.0,264.0,104.0,0.0,0.0,10.0,0.0,0.0,42.0,0.0,0.0,11.0,3013.0,600.0,75.0,0.0,5.0,600.0,1.0,104.0,168.0,40.0,0.0,150.0,1.0,29.0,0.0,5402.0,0.0,977.0,843.0,0.0,0.0,171.0,261.0,663.0,502.0,0.0,0.0,0.0,658.0,23.0,25.0,0.0,120.0,0.0,738.0,2.0,116.0,0.0,161.0,468.0,774.0,26.0,2184.0,17.0,244.0,578.0,10.0,39.0,742.0,2.0,0.0,273.0,377.0,2714.0,8.0,10.0,2014-02-09,,2014-6,0.7916455343729947,0.296, +172,172,0.54,88.0,8.0,171.0,0.0,77.0,372.0,495.0,187.0,0.0,400.0,7845.0,6.0,57.0,696.0,633.0,61.0,85.0,265.0,3207.0,0.0,50.0,346.0,19.0,50.0,576.0,84.0,2153.0,621.0,24.0,0.0,0.0,0.0,966.0,117.0,1151.0,2946.0,0.0,126.0,2.0,67.0,336.0,0.0,133.0,1158.0,1731.0,0.0,0.0,977.0,316.0,1272.0,0.0,162.0,0.0,268.0,136.0,37.0,0.0,0.0,0.0,0.0,13.0,2748.0,0.0,2856.0,285.0,0.0,16.0,28.0,2439.0,0.0,210.0,296.0,1.0,98.0,0.0,4082.0,310.0,2.0,23.0,157.0,153.0,40.0,232.0,13.0,411.0,2374.0,302.0,56.0,0.0,0.0,14.0,3659.0,0.0,0.0,180.0,162.0,509.0,4782.0,284.0,4057.0,3159.0,60.0,4.0,56.0,2.0,5.0,9.0,0.0,130.0,3.0,1.0,2.0,0.0,3.0,2.0,7.0,1101.0,2526.0,2507.0,0.0,20.0,1283.0,1816.0,0.0,1.0,147.0,201.0,0.0,0.0,725.0,1539.0,1778.0,0.0,166.0,272.0,115.0,143.0,300.0,1307.0,358.0,5121.0,215.0,11.0,2.0,2304.0,1077.0,686.0,0.0,343.0,361.0,0.0,699.0,0.0,244.0,355.0,25.0,126.0,0.0,61.0,43.0,417.0,3007.0,117.0,0.0,128.0,53.0,0.0,0.0,68.0,0.0,2217.0,1334.0,642.0,124.0,11.0,0.0,0.0,948.0,0.0,74.0,1363.0,122.0,1.0,1.0,0.0,3.0,667.0,0.0,137.0,1003.0,0.0,37.0,0.0,140.0,145.0,34.0,13.0,379.0,641.0,951.0,712.0,69.0,0.0,0.0,0.0,1.0,0.0,53.0,3430.0,0.0,1465.0,0.0,0.0,50.0,0.0,0.0,809.0,804.0,1070.0,182.0,0.0,25.0,1873.0,123.0,0.0,58.0,188.0,57.0,0.0,73.0,385.0,23.0,261.0,101.0,0.0,0.0,9.0,1.0,0.0,36.0,0.0,0.0,10.0,2807.0,644.0,62.0,0.0,1.0,643.0,0.0,100.0,265.0,38.0,1.0,125.0,0.0,40.0,0.0,5599.0,0.0,122.0,769.0,0.0,0.0,179.0,304.0,712.0,440.0,0.0,0.0,1.0,564.0,15.0,30.0,0.0,83.0,0.0,606.0,0.0,112.0,0.0,139.0,425.0,853.0,19.0,2182.0,19.0,247.0,600.0,6.0,53.0,865.0,4.0,0.0,216.0,396.0,2672.0,10.0,7.0,2014-02-16,,2014-7,0.5400092877655984,2.6539999999999995, +173,173,0.7,72.0,11.0,153.0,0.0,70.0,350.0,497.0,139.0,0.0,394.0,8452.0,5.0,36.0,696.0,601.0,33.0,75.0,246.0,3082.0,0.0,46.0,327.0,25.0,32.0,516.0,63.0,2277.0,554.0,20.0,0.0,0.0,0.0,936.0,136.0,986.0,2744.0,0.0,81.0,2.0,76.0,285.0,0.0,109.0,1150.0,1500.0,0.0,0.0,959.0,365.0,1261.0,0.0,188.0,0.0,234.0,108.0,22.0,0.0,0.0,0.0,1.0,15.0,2731.0,1.0,3066.0,229.0,0.0,8.0,23.0,2269.0,0.0,148.0,283.0,1.0,118.0,0.0,3928.0,290.0,0.0,19.0,154.0,182.0,39.0,253.0,3.0,347.0,2118.0,325.0,70.0,1.0,0.0,21.0,3658.0,0.0,0.0,186.0,159.0,503.0,4471.0,337.0,3854.0,2570.0,47.0,0.0,41.0,1.0,1.0,13.0,0.0,64.0,0.0,2.0,1.0,0.0,2.0,1.0,3.0,947.0,2438.0,2613.0,1.0,30.0,1129.0,1765.0,0.0,1.0,106.0,180.0,0.0,0.0,638.0,1482.0,1730.0,0.0,161.0,218.0,67.0,143.0,251.0,1274.0,222.0,5773.0,196.0,14.0,1.0,2296.0,1114.0,642.0,0.0,328.0,330.0,0.0,606.0,0.0,287.0,308.0,18.0,118.0,0.0,63.0,35.0,417.0,2557.0,128.0,0.0,105.0,34.0,0.0,0.0,75.0,0.0,666.0,1214.0,596.0,95.0,8.0,0.0,0.0,878.0,0.0,87.0,1403.0,121.0,0.0,1.0,0.0,0.0,626.0,0.0,126.0,806.0,1.0,31.0,0.0,159.0,124.0,24.0,18.0,308.0,630.0,1121.0,651.0,60.0,0.0,0.0,1.0,0.0,0.0,43.0,3283.0,0.0,1443.0,1.0,1.0,45.0,0.0,0.0,760.0,689.0,1031.0,186.0,0.0,17.0,1803.0,126.0,0.0,84.0,198.0,65.0,1.0,70.0,373.0,12.0,253.0,117.0,0.0,0.0,2.0,0.0,2.0,45.0,3.0,0.0,17.0,2661.0,545.0,84.0,0.0,3.0,582.0,0.0,125.0,173.0,44.0,1.0,163.0,0.0,36.0,0.0,5166.0,0.0,91.0,822.0,0.0,0.0,144.0,255.0,612.0,439.0,0.0,0.0,0.0,580.0,19.0,25.0,0.0,111.0,0.0,631.0,6.0,87.0,0.0,120.0,418.0,771.0,9.0,2506.0,19.0,238.0,584.0,14.0,37.0,998.0,2.0,0.0,260.0,403.0,2563.0,11.0,6.0,2014-02-23,,2014-8,0.8411032998830947,4.816, +174,174,0.75,69.0,12.0,124.0,0.0,84.0,311.0,436.0,105.0,0.0,390.0,8301.0,11.0,40.0,659.0,612.0,43.0,69.0,207.0,3074.0,0.0,47.0,282.0,10.0,53.0,577.0,60.0,2155.0,546.0,23.0,0.0,0.0,0.0,938.0,94.0,871.0,2693.0,1.0,85.0,1.0,49.0,227.0,0.0,93.0,1111.0,1659.0,0.0,0.0,927.0,266.0,1299.0,0.0,152.0,0.0,224.0,105.0,31.0,0.0,0.0,0.0,4.0,20.0,2280.0,4.0,2748.0,251.0,0.0,18.0,34.0,2227.0,0.0,153.0,261.0,0.0,98.0,0.0,3822.0,238.0,2.0,25.0,154.0,146.0,48.0,203.0,2.0,365.0,2006.0,338.0,52.0,0.0,0.0,14.0,3398.0,0.0,0.0,185.0,137.0,413.0,4887.0,128.0,3837.0,2210.0,58.0,4.0,44.0,5.0,1.0,6.0,2.0,86.0,4.0,3.0,5.0,1.0,3.0,2.0,3.0,842.0,2409.0,2504.0,1.0,18.0,1104.0,1768.0,0.0,2.0,92.0,144.0,0.0,0.0,648.0,1374.0,1648.0,0.0,131.0,278.0,46.0,102.0,214.0,1298.0,140.0,6146.0,172.0,7.0,3.0,2180.0,959.0,658.0,0.0,332.0,380.0,2.0,500.0,0.0,230.0,292.0,14.0,125.0,0.0,44.0,28.0,429.0,2197.0,98.0,0.0,92.0,46.0,0.0,0.0,52.0,0.0,588.0,1197.0,515.0,102.0,13.0,0.0,0.0,856.0,0.0,96.0,1412.0,92.0,2.0,0.0,0.0,4.0,562.0,1.0,109.0,819.0,4.0,45.0,1.0,107.0,118.0,20.0,13.0,325.0,578.0,981.0,643.0,42.0,0.0,1.0,2.0,0.0,2.0,38.0,3142.0,0.0,1255.0,3.0,2.0,55.0,0.0,0.0,671.0,678.0,1033.0,174.0,0.0,26.0,1609.0,95.0,1.0,68.0,166.0,46.0,2.0,59.0,343.0,9.0,221.0,78.0,0.0,0.0,20.0,1.0,0.0,24.0,0.0,0.0,11.0,2635.0,523.0,55.0,0.0,5.0,658.0,3.0,88.0,142.0,46.0,0.0,133.0,3.0,30.0,0.0,5229.0,0.0,99.0,732.0,0.0,0.0,114.0,251.0,507.0,427.0,0.0,2.0,2.0,498.0,14.0,20.0,0.0,98.0,0.0,646.0,2.0,94.0,0.0,183.0,422.0,927.0,15.0,2459.0,17.0,249.0,581.0,12.0,32.0,809.0,2.0,0.0,230.0,370.0,2445.0,10.0,4.0,2014-03-02,,2014-9,1.1650294901173952,0.6120000000000001, +175,175,0.83,76.0,4.0,111.0,0.0,57.0,301.0,453.0,76.0,0.0,345.0,7928.0,16.0,37.0,576.0,606.0,36.0,102.0,194.0,2706.0,0.0,30.0,318.0,27.0,43.0,582.0,75.0,1926.0,511.0,19.0,0.0,0.0,0.0,877.0,95.0,1135.0,2524.0,0.0,96.0,0.0,65.0,243.0,0.0,99.0,1079.0,1470.0,0.0,0.0,815.0,253.0,1355.0,0.0,139.0,0.0,207.0,105.0,34.0,0.0,0.0,0.0,2.0,22.0,2319.0,1.0,2610.0,222.0,0.0,3.0,30.0,2058.0,0.0,129.0,213.0,0.0,63.0,0.0,3871.0,261.0,0.0,20.0,133.0,125.0,27.0,120.0,3.0,367.0,1937.0,249.0,66.0,0.0,0.0,11.0,3326.0,0.0,0.0,162.0,146.0,448.0,4862.0,104.0,3659.0,2113.0,68.0,1.0,52.0,0.0,0.0,7.0,0.0,58.0,4.0,4.0,3.0,0.0,3.0,1.0,5.0,826.0,2283.0,2314.0,0.0,18.0,1088.0,1616.0,0.0,3.0,80.0,94.0,0.0,0.0,562.0,1358.0,1632.0,0.0,154.0,268.0,49.0,93.0,202.0,1149.0,124.0,5064.0,174.0,7.0,2.0,2196.0,949.0,650.0,0.0,270.0,351.0,1.0,495.0,0.0,274.0,262.0,15.0,122.0,0.0,38.0,12.0,409.0,2119.0,89.0,0.0,76.0,38.0,0.0,0.0,57.0,0.0,601.0,1132.0,445.0,86.0,16.0,0.0,0.0,881.0,0.0,83.0,1253.0,70.0,0.0,0.0,0.0,4.0,482.0,0.0,112.0,807.0,3.0,34.0,0.0,113.0,115.0,21.0,16.0,272.0,530.0,848.0,605.0,45.0,0.0,1.0,2.0,0.0,1.0,32.0,3079.0,0.0,1157.0,1.0,1.0,23.0,0.0,0.0,610.0,641.0,901.0,165.0,0.0,32.0,1556.0,83.0,0.0,62.0,167.0,42.0,2.0,53.0,358.0,14.0,210.0,81.0,0.0,0.0,1.0,0.0,2.0,24.0,0.0,0.0,13.0,2327.0,512.0,66.0,0.0,2.0,656.0,1.0,97.0,208.0,26.0,0.0,156.0,0.0,21.0,1.0,4899.0,0.0,67.0,702.0,0.0,0.0,146.0,248.0,523.0,375.0,0.0,0.0,0.0,548.0,12.0,24.0,0.0,60.0,0.0,553.0,1.0,76.0,0.0,156.0,378.0,800.0,9.0,2175.0,12.0,254.0,525.0,9.0,22.0,753.0,1.0,0.0,220.0,368.0,2389.0,18.0,4.0,2014-03-09,,2014-10,0.5626826505341089,0.8240000000000001, +176,176,0.81,87.0,8.0,107.0,0.0,71.0,327.0,437.0,124.0,0.0,305.0,7986.0,5.0,45.0,633.0,607.0,42.0,73.0,158.0,2840.0,0.0,61.0,296.0,26.0,27.0,603.0,79.0,2209.0,451.0,18.0,0.0,0.0,0.0,940.0,115.0,1248.0,2455.0,0.0,267.0,0.0,49.0,215.0,0.0,74.0,1036.0,2545.0,0.0,0.0,815.0,245.0,1349.0,0.0,331.0,0.0,247.0,94.0,17.0,0.0,0.0,0.0,0.0,9.0,2127.0,2.0,2539.0,234.0,0.0,18.0,22.0,2030.0,0.0,205.0,211.0,1.0,77.0,0.0,3959.0,217.0,1.0,15.0,163.0,127.0,43.0,126.0,1.0,479.0,1703.0,303.0,33.0,0.0,0.0,15.0,3147.0,0.0,0.0,180.0,131.0,409.0,4896.0,138.0,3542.0,2001.0,56.0,1.0,37.0,2.0,0.0,9.0,1.0,69.0,4.0,1.0,5.0,0.0,3.0,1.0,3.0,752.0,2211.0,2166.0,0.0,23.0,975.0,1594.0,0.0,7.0,83.0,119.0,0.0,0.0,522.0,1342.0,1542.0,0.0,122.0,264.0,53.0,105.0,217.0,1159.0,101.0,4969.0,186.0,6.0,6.0,2120.0,1053.0,606.0,0.0,240.0,340.0,1.0,463.0,0.0,251.0,287.0,16.0,107.0,0.0,55.0,15.0,357.0,2030.0,82.0,0.0,64.0,34.0,0.0,0.0,56.0,1.0,605.0,1146.0,535.0,99.0,12.0,0.0,0.0,834.0,0.0,74.0,1279.0,79.0,5.0,0.0,0.0,9.0,438.0,0.0,115.0,867.0,4.0,23.0,0.0,132.0,108.0,20.0,10.0,275.0,538.0,859.0,568.0,57.0,0.0,0.0,0.0,0.0,2.0,31.0,3048.0,0.0,1160.0,3.0,4.0,50.0,0.0,0.0,525.0,608.0,1004.0,209.0,0.0,18.0,1441.0,85.0,0.0,65.0,169.0,44.0,2.0,55.0,362.0,9.0,249.0,77.0,0.0,0.0,12.0,0.0,1.0,28.0,1.0,0.0,14.0,2466.0,555.0,71.0,0.0,5.0,659.0,2.0,83.0,144.0,27.0,0.0,122.0,1.0,31.0,0.0,4519.0,0.0,82.0,736.0,0.0,1.0,150.0,185.0,463.0,467.0,0.0,1.0,2.0,588.0,12.0,21.0,0.0,61.0,0.0,588.0,2.0,78.0,0.0,134.0,352.0,666.0,22.0,2106.0,22.0,223.0,469.0,6.0,26.0,829.0,0.0,0.0,204.0,339.0,2375.0,6.0,3.0,2014-03-16,,2014-11,0.31909915337870665,0.8100000000000002, +177,177,0.82,94.0,7.0,100.0,0.0,79.0,308.0,409.0,82.0,0.0,357.0,7271.0,16.0,45.0,646.0,571.0,41.0,86.0,167.0,3171.0,0.0,44.0,287.0,17.0,41.0,534.0,73.0,2099.0,503.0,19.0,0.0,0.0,0.0,929.0,115.0,1282.0,2544.0,0.0,120.0,1.0,124.0,235.0,0.0,84.0,1041.0,1921.0,0.0,0.0,957.0,243.0,1320.0,0.0,301.0,0.0,224.0,260.0,18.0,0.0,0.0,0.0,2.0,13.0,2269.0,0.0,2684.0,256.0,0.0,16.0,44.0,2105.0,0.0,265.0,210.0,0.0,77.0,0.0,4338.0,230.0,1.0,31.0,187.0,143.0,38.0,149.0,2.0,298.0,2127.0,321.0,41.0,1.0,0.0,15.0,3088.0,0.0,0.0,164.0,148.0,415.0,4769.0,144.0,3552.0,1921.0,42.0,1.0,30.0,1.0,2.0,8.0,1.0,73.0,2.0,0.0,3.0,0.0,0.0,0.0,1.0,864.0,2382.0,2415.0,0.0,23.0,1089.0,1584.0,0.0,3.0,75.0,102.0,0.0,0.0,565.0,1364.0,1598.0,0.0,155.0,252.0,51.0,111.0,225.0,1214.0,124.0,5488.0,179.0,2.0,2.0,2114.0,909.0,627.0,0.0,249.0,386.0,0.0,514.0,0.0,211.0,332.0,11.0,132.0,0.0,53.0,21.0,384.0,2012.0,98.0,0.0,75.0,61.0,1.0,0.0,51.0,1.0,629.0,1152.0,537.0,97.0,10.0,0.0,0.0,857.0,0.0,75.0,1378.0,85.0,3.0,0.0,0.0,5.0,453.0,0.0,102.0,721.0,2.0,32.0,0.0,107.0,132.0,27.0,10.0,304.0,561.0,1026.0,614.0,50.0,0.0,0.0,0.0,0.0,0.0,53.0,3085.0,0.0,1172.0,2.0,4.0,55.0,0.0,0.0,570.0,774.0,984.0,171.0,0.0,23.0,1480.0,75.0,0.0,64.0,176.0,66.0,2.0,60.0,370.0,13.0,208.0,73.0,0.0,0.0,10.0,0.0,0.0,22.0,1.0,0.0,7.0,2620.0,569.0,68.0,0.0,1.0,739.0,0.0,91.0,325.0,32.0,0.0,140.0,0.0,26.0,0.0,4479.0,0.0,72.0,748.0,0.0,2.0,153.0,252.0,535.0,483.0,0.0,1.0,0.0,527.0,20.0,21.0,0.0,81.0,0.0,644.0,1.0,92.0,0.0,111.0,426.0,774.0,17.0,2284.0,17.0,230.0,543.0,8.0,33.0,870.0,1.0,0.0,214.0,354.0,2309.0,17.0,1.0,2014-03-23,,2014-12,0.9562965652562987,0.82, +178,178,0.86,99.0,5.0,106.0,0.0,72.0,292.0,455.0,88.0,0.0,378.0,6624.0,1.0,37.0,658.0,599.0,42.0,78.0,179.0,3528.0,0.0,33.0,280.0,12.0,48.0,529.0,56.0,2059.0,562.0,14.0,0.0,0.0,0.0,1360.0,185.0,1022.0,2514.0,0.0,120.0,1.0,98.0,225.0,0.0,78.0,1157.0,1686.0,0.0,0.0,1016.0,239.0,1299.0,0.0,111.0,0.0,453.0,122.0,32.0,0.0,0.0,0.0,2.0,11.0,2467.0,0.0,2872.0,245.0,0.0,6.0,23.0,2074.0,0.0,136.0,241.0,0.0,84.0,0.0,3680.0,251.0,2.0,28.0,133.0,149.0,41.0,153.0,5.0,360.0,2041.0,293.0,45.0,1.0,0.0,12.0,3189.0,0.0,0.0,146.0,141.0,454.0,4874.0,152.0,3691.0,2029.0,75.0,1.0,43.0,2.0,1.0,11.0,0.0,72.0,5.0,4.0,3.0,1.0,2.0,2.0,1.0,827.0,2225.0,2225.0,1.0,23.0,1194.0,1600.0,0.0,3.0,106.0,101.0,0.0,0.0,612.0,1335.0,1622.0,0.0,146.0,241.0,58.0,121.0,225.0,1263.0,151.0,5420.0,183.0,20.0,4.0,2041.0,1170.0,630.0,0.0,271.0,362.0,2.0,427.0,0.0,223.0,281.0,18.0,115.0,0.0,53.0,17.0,400.0,2074.0,103.0,0.0,77.0,42.0,0.0,0.0,72.0,0.0,648.0,1079.0,528.0,167.0,23.0,0.0,0.0,943.0,0.0,76.0,1377.0,81.0,1.0,0.0,0.0,6.0,562.0,1.0,108.0,826.0,1.0,34.0,0.0,131.0,147.0,25.0,18.0,245.0,560.0,1036.0,600.0,67.0,0.0,0.0,1.0,0.0,0.0,34.0,3016.0,0.0,1131.0,3.0,0.0,42.0,0.0,0.0,573.0,716.0,949.0,168.0,0.0,13.0,1404.0,67.0,0.0,66.0,164.0,48.0,2.0,54.0,364.0,8.0,195.0,69.0,0.0,0.0,8.0,0.0,1.0,24.0,2.0,0.0,4.0,2531.0,598.0,75.0,0.0,4.0,716.0,2.0,91.0,191.0,26.0,0.0,135.0,1.0,35.0,0.0,4871.0,0.0,79.0,767.0,1.0,0.0,112.0,242.0,476.0,469.0,0.0,0.0,2.0,629.0,12.0,16.0,0.0,105.0,0.0,647.0,2.0,71.0,0.0,137.0,387.0,784.0,14.0,2416.0,19.0,259.0,563.0,15.0,28.0,894.0,5.0,0.0,239.0,420.0,2398.0,9.0,3.0,2014-03-30,,2014-13,0.8776721563109842,0.658, +179,179,0.64,93.0,11.0,109.0,0.0,93.0,310.0,401.0,79.0,0.0,337.0,6232.0,15.0,46.0,619.0,521.0,41.0,64.0,197.0,2639.0,0.0,40.0,295.0,15.0,39.0,512.0,88.0,1983.0,515.0,24.0,0.0,0.0,1.0,3338.0,249.0,818.0,2470.0,0.0,196.0,0.0,91.0,208.0,0.0,79.0,1060.0,1552.0,0.0,0.0,934.0,241.0,1263.0,0.0,133.0,0.0,232.0,95.0,23.0,0.0,0.0,0.0,1.0,25.0,2354.0,0.0,2719.0,221.0,0.0,14.0,37.0,1991.0,0.0,170.0,233.0,2.0,85.0,0.0,4253.0,224.0,3.0,17.0,153.0,148.0,57.0,143.0,1.0,353.0,1902.0,379.0,43.0,0.0,0.0,16.0,3204.0,0.0,0.0,190.0,164.0,413.0,4729.0,196.0,4364.0,1938.0,53.0,0.0,40.0,1.0,0.0,7.0,0.0,109.0,3.0,2.0,3.0,0.0,3.0,0.0,4.0,838.0,2409.0,2530.0,1.0,22.0,1094.0,1711.0,33.0,2.0,107.0,127.0,0.0,0.0,637.0,1334.0,1636.0,0.0,138.0,250.0,76.0,123.0,283.0,1123.0,158.0,5275.0,189.0,12.0,1.0,2177.0,953.0,603.0,0.0,257.0,352.0,1.0,530.0,0.0,242.0,270.0,14.0,153.0,0.0,67.0,24.0,373.0,2095.0,130.0,0.0,63.0,26.0,0.0,0.0,67.0,1.0,544.0,1145.0,568.0,231.0,15.0,0.0,0.0,862.0,0.0,81.0,1313.0,77.0,0.0,0.0,0.0,3.0,573.0,0.0,89.0,741.0,3.0,41.0,0.0,173.0,141.0,27.0,15.0,257.0,535.0,966.0,601.0,59.0,0.0,2.0,1.0,0.0,0.0,47.0,2945.0,0.0,1131.0,1.0,0.0,42.0,0.0,0.0,611.0,765.0,959.0,157.0,0.0,22.0,1371.0,130.0,0.0,62.0,177.0,55.0,4.0,72.0,324.0,10.0,216.0,83.0,0.0,0.0,8.0,0.0,2.0,28.0,3.0,0.0,4.0,2405.0,577.0,92.0,0.0,4.0,663.0,1.0,107.0,152.0,31.0,0.0,122.0,0.0,24.0,0.0,4448.0,0.0,57.0,740.0,0.0,1.0,145.0,247.0,482.0,629.0,0.0,1.0,0.0,559.0,20.0,16.0,0.0,78.0,0.0,576.0,0.0,80.0,0.0,176.0,382.0,769.0,11.0,2137.0,18.0,239.0,532.0,10.0,53.0,743.0,2.0,0.0,235.0,353.0,2457.0,8.0,2.0,2014-04-06,,2014-14,0.5590358161534983,1.162, +180,180,0.55,92.0,6.0,105.0,0.0,93.0,311.0,404.0,90.0,0.0,365.0,6415.0,6.0,46.0,577.0,503.0,53.0,73.0,231.0,3168.0,0.0,59.0,235.0,30.0,37.0,561.0,75.0,1817.0,517.0,21.0,0.0,0.0,0.0,1812.0,111.0,1295.0,2398.0,1.0,115.0,1.0,67.0,176.0,0.0,82.0,1071.0,1643.0,0.0,0.0,940.0,274.0,1325.0,0.0,98.0,0.0,197.0,108.0,26.0,0.0,0.0,0.0,3.0,25.0,2678.0,0.0,2823.0,221.0,0.0,7.0,28.0,2001.0,0.0,153.0,235.0,1.0,83.0,0.0,3572.0,205.0,4.0,35.0,142.0,101.0,47.0,140.0,6.0,329.0,2022.0,283.0,70.0,1.0,0.0,13.0,3080.0,0.0,0.0,167.0,145.0,412.0,4622.0,233.0,3551.0,1976.0,49.0,0.0,42.0,3.0,0.0,14.0,0.0,121.0,3.0,6.0,5.0,1.0,4.0,0.0,4.0,825.0,2207.0,2323.0,2.0,13.0,1101.0,1656.0,25.0,6.0,80.0,136.0,0.0,0.0,581.0,1310.0,1524.0,0.0,140.0,202.0,58.0,119.0,260.0,1077.0,146.0,6091.0,181.0,4.0,5.0,2003.0,879.0,615.0,0.0,261.0,331.0,1.0,479.0,0.0,237.0,272.0,17.0,142.0,0.0,50.0,19.0,420.0,2151.0,93.0,0.0,90.0,26.0,0.0,0.0,75.0,0.0,536.0,1029.0,479.0,141.0,10.0,0.0,0.0,873.0,0.0,60.0,1253.0,127.0,5.0,2.0,0.0,3.0,587.0,0.0,105.0,764.0,1.0,42.0,0.0,105.0,100.0,19.0,12.0,283.0,573.0,1033.0,597.0,65.0,0.0,0.0,3.0,0.0,0.0,64.0,2873.0,0.0,1083.0,5.0,3.0,44.0,0.0,0.0,1133.0,657.0,888.0,154.0,0.0,29.0,1324.0,74.0,0.0,56.0,162.0,49.0,0.0,57.0,371.0,8.0,430.0,80.0,0.0,0.0,8.0,0.0,0.0,48.0,2.0,0.0,10.0,2388.0,551.0,84.0,0.0,5.0,722.0,1.0,104.0,135.0,28.0,0.0,93.0,0.0,20.0,0.0,4308.0,0.0,77.0,735.0,0.0,0.0,143.0,213.0,513.0,528.0,0.0,1.0,0.0,491.0,8.0,23.0,0.0,99.0,0.0,583.0,1.0,94.0,0.0,134.0,332.0,702.0,22.0,2100.0,21.0,244.0,476.0,6.0,137.0,742.0,0.0,0.0,215.0,359.0,2340.0,13.0,2.0,2014-04-13,,2014-15,0.7169730600142552,0.6120000000000001, +181,181,0.48,88.0,10.0,116.0,0.0,65.0,271.0,373.0,96.0,0.0,296.0,5838.0,1.0,37.0,575.0,573.0,36.0,67.0,165.0,2725.0,0.0,32.0,214.0,10.0,45.0,519.0,60.0,1716.0,521.0,13.0,0.0,2.0,0.0,1344.0,122.0,1218.0,2262.0,0.0,118.0,0.0,53.0,234.0,0.0,105.0,1092.0,1352.0,0.0,0.0,895.0,211.0,1316.0,0.0,83.0,0.0,204.0,104.0,30.0,0.0,0.0,0.0,2.0,20.0,2098.0,2.0,2601.0,192.0,0.0,6.0,61.0,1994.0,0.0,118.0,199.0,0.0,64.0,0.0,3487.0,228.0,0.0,19.0,116.0,136.0,36.0,112.0,5.0,332.0,2132.0,225.0,41.0,1.0,0.0,9.0,2920.0,0.0,0.0,170.0,122.0,448.0,4628.0,92.0,3623.0,1955.0,43.0,2.0,53.0,2.0,1.0,12.0,1.0,62.0,6.0,3.0,4.0,1.0,2.0,1.0,1.0,675.0,2087.0,1957.0,1.0,17.0,1158.0,1665.0,8.0,7.0,69.0,85.0,0.0,0.0,549.0,1189.0,1504.0,0.0,125.0,270.0,31.0,113.0,230.0,1109.0,113.0,5849.0,158.0,4.0,3.0,2106.0,1010.0,585.0,0.0,270.0,286.0,0.0,410.0,0.0,203.0,250.0,12.0,124.0,0.0,58.0,22.0,410.0,2176.0,88.0,0.0,59.0,27.0,1.0,0.0,57.0,0.0,551.0,1037.0,488.0,128.0,10.0,0.0,0.0,867.0,0.0,55.0,1257.0,72.0,4.0,1.0,0.0,5.0,522.0,1.0,124.0,777.0,1.0,44.0,1.0,114.0,104.0,22.0,6.0,261.0,533.0,881.0,565.0,46.0,0.0,1.0,1.0,1.0,1.0,41.0,2819.0,0.0,1143.0,1.0,2.0,26.0,0.0,0.0,670.0,623.0,911.0,155.0,0.0,38.0,1239.0,101.0,1.0,51.0,162.0,38.0,2.0,46.0,350.0,13.0,206.0,62.0,0.0,0.0,7.0,1.0,0.0,22.0,0.0,0.0,2.0,2268.0,504.0,104.0,0.0,2.0,704.0,1.0,100.0,172.0,18.0,1.0,113.0,1.0,31.0,1.0,4204.0,0.0,101.0,676.0,0.0,0.0,99.0,160.0,413.0,475.0,0.0,1.0,2.0,518.0,10.0,15.0,0.0,68.0,0.0,606.0,1.0,89.0,0.0,106.0,297.0,674.0,20.0,1882.0,10.0,237.0,433.0,11.0,37.0,661.0,4.0,0.0,231.0,351.0,2185.0,4.0,2.0,2014-04-20,,2014-16,-0.6046009567340915,0.422, +182,182,0.01,105.0,2.0,100.0,0.0,48.0,228.0,386.0,92.0,0.0,194.0,4993.0,8.0,33.0,551.0,546.0,35.0,57.0,151.0,2485.0,0.0,23.0,371.0,9.0,62.0,394.0,586.0,1561.0,480.0,12.0,0.0,17.0,0.0,5130.0,509.0,863.0,1843.0,0.0,65.0,2.0,82.0,317.0,1.0,56.0,862.0,736.0,108.0,0.0,655.0,200.0,748.0,0.0,142.0,0.0,149.0,87.0,30.0,0.0,93292.0,0.0,0.0,21.0,1667.0,1.0,3379.0,276.0,0.0,5.0,21.0,1665.0,0.0,119.0,205.0,0.0,81.0,0.0,3060.0,215.0,0.0,24.0,74.0,116.0,21.0,118.0,0.0,351.0,1480.0,537.0,25.0,0.0,0.0,13.0,2383.0,0.0,0.0,128.0,123.0,327.0,2832.0,69.0,2432.0,1478.0,46.0,0.0,51.0,1.0,2.0,3.0,0.0,50.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,914.0,2319.0,2298.0,2.0,11.0,867.0,1291.0,3.0,0.0,67.0,80.0,93.0,0.0,546.0,953.0,1263.0,31.0,133.0,229.0,29.0,109.0,189.0,879.0,122.0,2975.0,94.0,7.0,2.0,1482.0,778.0,461.0,0.0,246.0,269.0,3.0,405.0,0.0,308.0,189.0,4.0,90.0,8360.0,53.0,3.0,371.0,1516.0,83.0,0.0,56.0,10.0,0.0,0.0,42.0,0.0,462.0,852.0,384.0,234.0,7.0,0.0,0.0,692.0,0.0,55.0,1169.0,53.0,1.0,3.0,0.0,1.0,452.0,0.0,68.0,750.0,0.0,24.0,0.0,84.0,96.0,51.0,42.0,203.0,518.0,715.0,551.0,34.0,0.0,0.0,1.0,0.0,0.0,21.0,2279.0,0.0,859.0,0.0,1.0,39.0,0.0,0.0,584.0,486.0,793.0,130.0,0.0,22.0,945.0,107.0,0.0,48.0,133.0,46.0,0.0,51.0,269.0,6.0,174.0,74.0,0.0,0.0,1.0,0.0,343.0,28.0,1.0,0.0,3.0,2025.0,239.0,66.0,0.0,0.0,539.0,1.0,70.0,134.0,21.0,0.0,118.0,0.0,29.0,0.0,4038.0,0.0,331.0,604.0,0.0,0.0,206.0,186.0,510.0,601.0,0.0,0.0,0.0,387.0,120.0,162.0,0.0,74.0,0.0,395.0,3.0,60.0,0.0,94.0,276.0,589.0,19.0,2172.0,9.0,261.0,377.0,4.0,19.0,476.0,3.0,0.0,153.0,277.0,1756.0,3.0,4.0,2014-10-26,,2014-43,0.242123505407994,3.5520000000000005, +183,183,0.02,102.0,3.0,133.0,0.0,57.0,206.0,395.0,86.0,0.0,225.0,4698.0,4.0,33.0,598.0,461.0,44.0,67.0,153.0,2163.0,0.0,33.0,312.0,8.0,69.0,410.0,358.0,1542.0,421.0,14.0,0.0,13.0,0.0,2657.0,340.0,731.0,1966.0,0.0,63.0,0.0,62.0,300.0,0.0,60.0,827.0,681.0,67.0,0.0,607.0,183.0,666.0,0.0,135.0,0.0,191.0,102.0,41.0,0.0,63596.0,0.0,2.0,12.0,1686.0,1.0,2180.0,202.0,0.0,7.0,21.0,1643.0,0.0,117.0,174.0,0.0,40.0,0.0,2672.0,236.0,3.0,15.0,76.0,127.0,29.0,126.0,2.0,365.0,1543.0,390.0,25.0,1.0,0.0,9.0,2297.0,0.0,0.0,133.0,99.0,333.0,2703.0,77.0,2344.0,1574.0,52.0,2.0,40.0,3.0,1.0,2.0,1.0,100.0,0.0,2.0,0.0,0.0,2.0,0.0,1.0,959.0,2006.0,2124.0,2.0,16.0,910.0,1173.0,3.0,0.0,75.0,69.0,88.0,0.0,516.0,944.0,1243.0,23.0,119.0,191.0,32.0,92.0,159.0,838.0,155.0,2824.0,65.0,1.0,1.0,1567.0,838.0,419.0,0.0,232.0,272.0,1.0,425.0,0.0,259.0,234.0,15.0,77.0,4063.0,70.0,3.0,401.0,1511.0,72.0,0.0,47.0,18.0,0.0,0.0,34.0,0.0,433.0,747.0,383.0,215.0,4.0,0.0,0.0,666.0,0.0,55.0,1133.0,89.0,5.0,0.0,0.0,2.0,438.0,0.0,89.0,749.0,0.0,23.0,0.0,83.0,149.0,38.0,26.0,197.0,569.0,654.0,578.0,47.0,0.0,0.0,0.0,0.0,0.0,23.0,2096.0,0.0,866.0,0.0,1.0,44.0,0.0,0.0,513.0,496.0,860.0,123.0,0.0,19.0,1028.0,105.0,0.0,35.0,156.0,46.0,0.0,51.0,277.0,9.0,179.0,89.0,0.0,0.0,3.0,1.0,207.0,43.0,0.0,0.0,6.0,1968.0,222.0,54.0,0.0,2.0,405.0,1.0,68.0,127.0,12.0,0.0,102.0,0.0,24.0,0.0,3773.0,0.0,92.0,592.0,0.0,0.0,110.0,209.0,402.0,516.0,0.0,0.0,0.0,422.0,86.0,56.0,0.0,63.0,0.0,473.0,3.0,67.0,0.0,95.0,318.0,485.0,15.0,1673.0,8.0,185.0,297.0,6.0,24.0,467.0,0.0,0.0,181.0,190.0,1638.0,4.0,1.0,2014-11-02,,2014-44,-0.5528117641344412,1.244, +184,184,0.01,101.0,2.0,108.0,0.0,72.0,201.0,332.0,93.0,0.0,223.0,4686.0,13.0,32.0,513.0,458.0,33.0,57.0,174.0,1911.0,0.0,44.0,328.0,3.0,48.0,395.0,195.0,1471.0,394.0,9.0,0.0,24.0,0.0,1737.0,276.0,643.0,1916.0,0.0,46.0,0.0,73.0,273.0,0.0,69.0,839.0,732.0,45.0,0.0,550.0,182.0,675.0,0.0,108.0,0.0,149.0,106.0,32.0,0.0,30090.0,0.0,3.0,16.0,1626.0,2.0,2103.0,272.0,0.0,4.0,15.0,1624.0,0.0,104.0,172.0,0.0,58.0,0.0,2707.0,236.0,3.0,17.0,74.0,120.0,22.0,127.0,3.0,261.0,1948.0,300.0,37.0,0.0,0.0,8.0,2181.0,0.0,0.0,148.0,106.0,330.0,2805.0,54.0,2326.0,1422.0,60.0,0.0,43.0,0.0,2.0,3.0,0.0,87.0,1.0,0.0,0.0,0.0,1.0,1.0,2.0,907.0,1851.0,1908.0,1.0,10.0,918.0,1159.0,4.0,3.0,68.0,52.0,35.0,0.0,506.0,891.0,1300.0,26.0,85.0,276.0,36.0,95.0,161.0,804.0,156.0,2667.0,113.0,1.0,1.0,1398.0,814.0,436.0,0.0,168.0,255.0,0.0,432.0,0.0,189.0,195.0,11.0,86.0,1840.0,48.0,6.0,407.0,1302.0,90.0,0.0,50.0,27.0,1.0,0.0,41.0,0.0,453.0,801.0,354.0,104.0,4.0,0.0,0.0,641.0,0.0,29.0,977.0,60.0,1.0,1.0,0.0,2.0,397.0,1.0,74.0,688.0,1.0,25.0,0.0,71.0,187.0,34.0,26.0,181.0,520.0,686.0,549.0,32.0,0.0,0.0,2.0,0.0,1.0,21.0,1986.0,0.0,754.0,0.0,0.0,43.0,0.0,2.0,1767.0,456.0,821.0,166.0,0.0,11.0,1000.0,85.0,0.0,28.0,172.0,48.0,0.0,46.0,290.0,9.0,200.0,81.0,0.0,0.0,2.0,0.0,115.0,33.0,2.0,0.0,2.0,2559.0,231.0,64.0,0.0,1.0,373.0,0.0,73.0,118.0,19.0,0.0,87.0,0.0,21.0,0.0,3929.0,0.0,82.0,582.0,0.0,0.0,139.0,183.0,899.0,345.0,0.0,0.0,0.0,385.0,39.0,26.0,0.0,82.0,0.0,561.0,1.0,71.0,0.0,75.0,318.0,589.0,11.0,1612.0,13.0,173.0,255.0,7.0,17.0,409.0,1.0,0.0,187.0,202.0,1556.0,2.0,0.0,2014-11-09,,2014-45,-0.33216305037271265,0.8519999999999999, +185,185,0.02,88.0,1.0,90.0,0.0,49.0,221.0,411.0,87.0,0.0,267.0,4824.0,4.0,34.0,559.0,498.0,41.0,66.0,139.0,2127.0,0.0,30.0,324.0,9.0,47.0,383.0,241.0,1602.0,409.0,13.0,0.0,10.0,0.0,1401.0,361.0,671.0,1919.0,1.0,35.0,0.0,60.0,300.0,0.0,69.0,842.0,733.0,31.0,0.0,618.0,214.0,653.0,0.0,115.0,0.0,173.0,96.0,35.0,0.0,23797.0,0.0,3.0,12.0,1684.0,0.0,3045.0,197.0,0.0,11.0,16.0,1586.0,0.0,92.0,157.0,1.0,69.0,0.0,2768.0,260.0,1.0,7.0,89.0,103.0,27.0,151.0,1.0,295.0,1425.0,339.0,42.0,0.0,0.0,13.0,2279.0,0.0,0.0,152.0,115.0,362.0,2812.0,72.0,2333.0,1600.0,28.0,0.0,39.0,0.0,1.0,5.0,0.0,115.0,0.0,1.0,3.0,0.0,3.0,1.0,1.0,1122.0,1929.0,2002.0,2.0,11.0,1040.0,1206.0,6.0,2.0,69.0,54.0,34.0,0.0,541.0,942.0,1186.0,36.0,138.0,261.0,38.0,97.0,179.0,787.0,120.0,2741.0,135.0,4.0,3.0,1421.0,787.0,419.0,0.0,214.0,264.0,0.0,467.0,2.0,184.0,258.0,14.0,100.0,1126.0,42.0,20.0,340.0,1923.0,71.0,0.0,47.0,27.0,0.0,0.0,48.0,0.0,485.0,796.0,346.0,74.0,12.0,0.0,0.0,689.0,0.0,61.0,1022.0,81.0,1.0,0.0,0.0,2.0,453.0,0.0,68.0,759.0,1.0,34.0,0.0,77.0,224.0,20.0,12.0,180.0,519.0,713.0,614.0,37.0,0.0,0.0,2.0,0.0,0.0,23.0,2159.0,0.0,862.0,0.0,0.0,34.0,0.0,0.0,2157.0,554.0,870.0,148.0,0.0,10.0,958.0,86.0,1.0,39.0,149.0,56.0,2.0,41.0,275.0,6.0,181.0,64.0,0.0,0.0,1.0,0.0,70.0,36.0,1.0,0.0,4.0,2024.0,239.0,50.0,0.0,3.0,410.0,0.0,74.0,131.0,13.0,0.0,97.0,0.0,31.0,0.0,4182.0,0.0,75.0,514.0,1.0,0.0,109.0,209.0,542.0,447.0,0.0,0.0,0.0,442.0,32.0,38.0,0.0,67.0,0.0,456.0,2.0,78.0,0.0,210.0,320.0,562.0,13.0,1661.0,10.0,180.0,272.0,8.0,24.0,453.0,0.0,0.0,171.0,184.0,1784.0,2.0,2.0,2014-11-16,,2014-46,0.8348229731457932,0.034, +186,186,0.02,96.0,2.0,110.0,0.0,53.0,217.0,423.0,74.0,0.0,242.0,4660.0,3.0,21.0,546.0,426.0,52.0,59.0,188.0,2131.0,0.0,40.0,344.0,5.0,56.0,437.0,133.0,1616.0,462.0,11.0,0.0,12.0,0.0,1375.0,290.0,661.0,1915.0,0.0,28.0,0.0,67.0,284.0,0.0,71.0,954.0,709.0,27.0,0.0,609.0,179.0,628.0,0.0,109.0,0.0,187.0,100.0,32.0,0.0,20248.0,0.0,1.0,11.0,1811.0,2.0,2409.0,166.0,0.0,5.0,15.0,1611.0,0.0,103.0,176.0,0.0,69.0,0.0,2517.0,294.0,3.0,12.0,86.0,123.0,31.0,138.0,0.0,322.0,1361.0,315.0,36.0,1.0,0.0,13.0,2123.0,0.0,0.0,139.0,117.0,330.0,2692.0,89.0,2270.0,1505.0,43.0,0.0,35.0,2.0,1.0,4.0,0.0,113.0,2.0,2.0,2.0,0.0,3.0,0.0,1.0,833.0,1816.0,1868.0,1.0,10.0,992.0,1286.0,8.0,2.0,76.0,54.0,29.0,0.0,546.0,986.0,1267.0,29.0,116.0,211.0,40.0,105.0,226.0,772.0,144.0,2674.0,82.0,6.0,2.0,1322.0,801.0,450.0,0.0,195.0,251.0,0.0,406.0,0.0,246.0,225.0,8.0,81.0,864.0,36.0,10.0,470.0,1668.0,83.0,0.0,54.0,25.0,0.0,0.0,39.0,0.0,442.0,851.0,393.0,89.0,8.0,0.0,0.0,680.0,0.0,55.0,1051.0,54.0,3.0,1.0,0.0,3.0,361.0,0.0,77.0,740.0,0.0,30.0,0.0,72.0,210.0,23.0,11.0,197.0,558.0,820.0,564.0,43.0,0.0,0.0,1.0,0.0,0.0,22.0,2075.0,0.0,868.0,4.0,2.0,36.0,0.0,0.0,472.0,519.0,834.0,164.0,0.0,12.0,931.0,90.0,0.0,38.0,138.0,34.0,0.0,41.0,270.0,3.0,163.0,67.0,0.0,0.0,2.0,0.0,64.0,31.0,0.0,0.0,5.0,1915.0,218.0,59.0,0.0,1.0,377.0,0.0,72.0,167.0,19.0,0.0,84.0,0.0,23.0,0.0,4160.0,0.0,80.0,610.0,0.0,1.0,109.0,189.0,488.0,323.0,0.0,0.0,1.0,450.0,39.0,20.0,0.0,56.0,0.0,425.0,3.0,65.0,0.0,86.0,364.0,590.0,9.0,1614.0,10.0,206.0,294.0,6.0,17.0,443.0,0.0,0.0,183.0,220.0,1638.0,10.0,2.0,2014-11-23,,2014-47,-0.0029498153278995076,0.862, +187,187,0.03,81.0,3.0,136.0,0.0,55.0,227.0,377.0,84.0,0.0,256.0,4572.0,4.0,23.0,560.0,438.0,38.0,59.0,188.0,2093.0,0.0,36.0,269.0,4.0,56.0,371.0,98.0,1608.0,454.0,16.0,0.0,12.0,0.0,1247.0,310.0,542.0,1865.0,0.0,34.0,0.0,69.0,297.0,0.0,54.0,948.0,692.0,23.0,0.0,612.0,222.0,742.0,0.0,100.0,0.0,208.0,104.0,35.0,0.0,24910.0,0.0,0.0,7.0,1732.0,1.0,1986.0,433.0,0.0,6.0,21.0,1620.0,0.0,85.0,147.0,0.0,65.0,0.0,2559.0,214.0,0.0,12.0,94.0,146.0,34.0,126.0,3.0,254.0,1207.0,315.0,25.0,0.0,0.0,11.0,2166.0,0.0,0.0,161.0,128.0,292.0,5695.0,64.0,2177.0,1494.0,49.0,0.0,38.0,3.0,2.0,5.0,0.0,108.0,1.0,1.0,0.0,0.0,3.0,1.0,5.0,757.0,1765.0,1997.0,0.0,9.0,1033.0,1234.0,2.0,0.0,53.0,50.0,23.0,0.0,539.0,906.0,1262.0,27.0,135.0,209.0,61.0,110.0,229.0,813.0,151.0,2658.0,81.0,5.0,0.0,1330.0,802.0,467.0,0.0,195.0,281.0,0.0,427.0,0.0,134.0,191.0,4.0,78.0,721.0,49.0,9.0,394.0,1377.0,65.0,0.0,33.0,20.0,0.0,0.0,40.0,0.0,443.0,841.0,406.0,73.0,4.0,0.0,0.0,679.0,0.0,50.0,1057.0,49.0,2.0,0.0,0.0,1.0,451.0,0.0,100.0,727.0,0.0,25.0,0.0,87.0,215.0,27.0,11.0,186.0,640.0,702.0,568.0,35.0,0.0,1.0,1.0,0.0,0.0,19.0,2129.0,0.0,856.0,0.0,1.0,34.0,0.0,0.0,431.0,543.0,855.0,117.0,0.0,13.0,1021.0,76.0,0.0,41.0,154.0,40.0,0.0,51.0,313.0,8.0,202.0,76.0,0.0,0.0,0.0,0.0,57.0,34.0,164.0,0.0,4.0,2154.0,221.0,52.0,0.0,0.0,390.0,0.0,84.0,135.0,11.0,0.0,92.0,0.0,21.0,0.0,4248.0,0.0,73.0,583.0,0.0,4.0,107.0,211.0,479.0,329.0,0.0,0.0,0.0,409.0,26.0,19.0,0.0,83.0,0.0,445.0,0.0,47.0,0.0,123.0,396.0,481.0,16.0,1554.0,12.0,168.0,288.0,3.0,19.0,407.0,0.0,0.0,185.0,227.0,1548.0,6.0,3.0,2014-11-30,,2014-48,-0.02249649565346412,0.034, +188,188,0.04,82.0,5.0,92.0,0.0,42.0,231.0,382.0,81.0,0.0,250.0,5450.0,3.0,36.0,470.0,467.0,45.0,62.0,154.0,2107.0,0.0,36.0,249.0,5.0,65.0,350.0,126.0,1406.0,390.0,9.0,0.0,12.0,0.0,1294.0,319.0,610.0,1754.0,0.0,34.0,0.0,58.0,334.0,0.0,62.0,947.0,691.0,23.0,0.0,508.0,199.0,675.0,0.0,97.0,0.0,221.0,101.0,26.0,0.0,15505.0,0.0,2.0,15.0,1738.0,1.0,1944.0,283.0,0.0,4.0,23.0,1540.0,0.0,129.0,122.0,1.0,62.0,0.0,2815.0,235.0,0.0,10.0,75.0,162.0,25.0,118.0,3.0,335.0,1135.0,341.0,24.0,0.0,0.0,9.0,2216.0,0.0,0.0,155.0,101.0,272.0,2423.0,82.0,2221.0,1365.0,34.0,1.0,40.0,1.0,5.0,4.0,0.0,70.0,2.0,3.0,0.0,0.0,3.0,2.0,4.0,795.0,1739.0,1896.0,1.0,12.0,1009.0,1117.0,3.0,4.0,61.0,68.0,21.0,0.0,519.0,773.0,1158.0,28.0,107.0,234.0,40.0,92.0,162.0,724.0,122.0,2565.0,93.0,1.0,0.0,1402.0,832.0,435.0,0.0,186.0,262.0,0.0,483.0,0.0,143.0,186.0,5.0,74.0,609.0,53.0,7.0,341.0,1137.0,76.0,0.0,37.0,36.0,0.0,0.0,50.0,0.0,467.0,1526.0,412.0,87.0,3.0,0.0,0.0,602.0,0.0,49.0,979.0,69.0,2.0,0.0,0.0,2.0,425.0,0.0,58.0,649.0,1.0,32.0,0.0,83.0,189.0,18.0,6.0,185.0,460.0,668.0,518.0,30.0,0.0,0.0,2.0,0.0,0.0,22.0,2031.0,0.0,776.0,1.0,5.0,16.0,0.0,1.0,427.0,464.0,800.0,137.0,0.0,16.0,1050.0,73.0,0.0,23.0,126.0,32.0,1.0,57.0,247.0,5.0,188.0,65.0,0.0,0.0,3.0,0.0,86.0,21.0,368.0,0.0,3.0,1796.0,244.0,52.0,0.0,0.0,366.0,0.0,60.0,124.0,21.0,1.0,92.0,0.0,24.0,0.0,4220.0,0.0,114.0,591.0,0.0,1.0,115.0,200.0,375.0,326.0,0.0,0.0,0.0,381.0,26.0,15.0,0.0,66.0,0.0,387.0,1.0,54.0,0.0,106.0,409.0,476.0,11.0,1494.0,8.0,186.0,226.0,1.0,20.0,436.0,2.0,0.0,166.0,176.0,1408.0,5.0,3.0,2014-12-07,,2014-49,0.11472615605531811,0.028000000000000004, +189,189,0.04,84.0,3.0,141.0,0.0,55.0,222.0,332.0,104.0,0.0,319.0,4643.0,0.0,36.0,413.0,466.0,41.0,61.0,195.0,2057.0,0.0,25.0,252.0,7.0,55.0,362.0,149.0,1342.0,374.0,6.0,0.0,8.0,0.0,1117.0,339.0,586.0,1794.0,0.0,33.0,0.0,57.0,325.0,0.0,66.0,894.0,713.0,27.0,0.0,494.0,197.0,742.0,0.0,136.0,0.0,187.0,138.0,34.0,0.0,14935.0,0.0,1.0,20.0,1789.0,0.0,1797.0,207.0,0.0,5.0,18.0,1518.0,0.0,101.0,147.0,1.0,79.0,0.0,2501.0,259.0,3.0,8.0,77.0,141.0,25.0,99.0,2.0,376.0,1068.0,243.0,24.0,0.0,0.0,12.0,2197.0,0.0,0.0,150.0,107.0,275.0,2380.0,97.0,2041.0,1373.0,49.0,2.0,51.0,3.0,0.0,4.0,0.0,83.0,1.0,0.0,2.0,0.0,1.0,0.0,4.0,640.0,1766.0,2167.0,0.0,16.0,896.0,1183.0,2.0,2.0,75.0,67.0,33.0,0.0,438.0,858.0,1143.0,28.0,129.0,222.0,42.0,88.0,171.0,845.0,113.0,2620.0,99.0,3.0,1.0,1382.0,748.0,474.0,0.0,207.0,237.0,0.0,394.0,0.0,119.0,202.0,6.0,91.0,735.0,46.0,5.0,424.0,1224.0,73.0,0.0,39.0,29.0,0.0,0.0,46.0,0.0,440.0,802.0,466.0,83.0,9.0,0.0,0.0,742.0,0.0,55.0,1068.0,67.0,0.0,0.0,0.0,0.0,452.0,1.0,73.0,593.0,0.0,39.0,0.0,65.0,179.0,33.0,15.0,183.0,508.0,674.0,540.0,51.0,0.0,0.0,2.0,0.0,0.0,31.0,2022.0,0.0,834.0,0.0,0.0,24.0,0.0,0.0,364.0,551.0,726.0,114.0,0.0,16.0,1075.0,72.0,0.0,46.0,86.0,44.0,0.0,65.0,293.0,4.0,160.0,66.0,0.0,0.0,4.0,0.0,86.0,20.0,382.0,0.0,2.0,1849.0,238.0,49.0,0.0,1.0,345.0,0.0,66.0,138.0,18.0,0.0,91.0,0.0,22.0,0.0,3898.0,0.0,114.0,602.0,1.0,0.0,101.0,155.0,347.0,303.0,0.0,0.0,0.0,388.0,44.0,26.0,0.0,59.0,0.0,445.0,0.0,67.0,0.0,97.0,513.0,458.0,14.0,1509.0,17.0,177.0,229.0,7.0,18.0,525.0,1.0,0.0,170.0,195.0,1420.0,9.0,1.0,2014-12-14,,2014-50,-0.4222851053446064,1.2460000000000002, +190,190,0.09,82.0,2.0,117.0,0.0,67.0,211.0,431.0,99.0,0.0,239.0,5235.0,5.0,30.0,453.0,476.0,48.0,62.0,215.0,1976.0,0.0,30.0,271.0,10.0,75.0,323.0,138.0,1321.0,379.0,14.0,0.0,17.0,0.0,1070.0,349.0,611.0,1680.0,0.0,40.0,0.0,72.0,304.0,0.0,65.0,778.0,687.0,20.0,0.0,494.0,199.0,660.0,0.0,100.0,0.0,210.0,114.0,22.0,0.0,19061.0,0.0,1.0,16.0,1879.0,3.0,1849.0,193.0,0.0,9.0,20.0,1573.0,0.0,123.0,146.0,0.0,69.0,0.0,2642.0,261.0,2.0,6.0,70.0,131.0,20.0,100.0,0.0,279.0,1157.0,265.0,27.0,1.0,0.0,12.0,2060.0,0.0,0.0,145.0,101.0,300.0,2312.0,62.0,1894.0,1531.0,72.0,0.0,24.0,2.0,1.0,3.0,0.0,79.0,2.0,3.0,2.0,0.0,0.0,0.0,1.0,724.0,1690.0,2204.0,1.0,19.0,939.0,1182.0,3.0,6.0,101.0,83.0,20.0,0.0,427.0,894.0,1095.0,25.0,104.0,196.0,38.0,108.0,174.0,775.0,113.0,2791.0,80.0,7.0,2.0,1353.0,854.0,465.0,52.0,179.0,270.0,0.0,383.0,0.0,110.0,191.0,7.0,78.0,702.0,45.0,11.0,434.0,1247.0,89.0,0.0,50.0,17.0,0.0,0.0,44.0,0.0,356.0,787.0,406.0,76.0,13.0,0.0,0.0,740.0,0.0,47.0,1047.0,61.0,1.0,0.0,0.0,3.0,398.0,0.0,82.0,608.0,0.0,25.0,0.0,78.0,191.0,21.0,13.0,185.0,500.0,637.0,529.0,35.0,0.0,0.0,0.0,1.0,0.0,32.0,2115.0,0.0,767.0,0.0,0.0,31.0,0.0,0.0,395.0,482.0,668.0,130.0,0.0,18.0,1105.0,76.0,0.0,34.0,109.0,43.0,0.0,53.0,273.0,6.0,177.0,57.0,0.0,0.0,6.0,0.0,63.0,24.0,358.0,0.0,2.0,1834.0,205.0,46.0,0.0,2.0,345.0,1.0,51.0,129.0,18.0,0.0,95.0,0.0,16.0,0.0,3970.0,0.0,102.0,564.0,0.0,0.0,102.0,169.0,391.0,463.0,0.0,0.0,0.0,414.0,29.0,14.0,0.0,70.0,0.0,437.0,1.0,53.0,0.0,81.0,613.0,468.0,18.0,1605.0,23.0,174.0,261.0,7.0,25.0,514.0,2.0,0.0,167.0,197.0,1431.0,11.0,5.0,2014-12-21,,2014-51,0.5812702763009874,0.062, +191,191,0.19,76.0,7.0,97.0,0.0,60.0,201.0,356.0,122.0,0.0,219.0,4207.0,1.0,23.0,377.0,534.0,32.0,56.0,202.0,1922.0,0.0,36.0,247.0,9.0,59.0,306.0,79.0,1186.0,377.0,9.0,0.0,7.0,0.0,988.0,241.0,615.0,1533.0,0.0,34.0,0.0,44.0,298.0,0.0,46.0,726.0,711.0,15.0,0.0,469.0,178.0,610.0,0.0,118.0,0.0,179.0,69.0,21.0,0.0,11437.0,0.0,2.0,17.0,1534.0,1.0,1749.0,145.0,0.0,5.0,15.0,1406.0,0.0,72.0,127.0,0.0,43.0,0.0,2445.0,216.0,2.0,10.0,80.0,103.0,27.0,87.0,0.0,224.0,889.0,254.0,30.0,0.0,0.0,12.0,1849.0,0.0,0.0,141.0,93.0,233.0,2142.0,69.0,1738.0,1367.0,51.0,0.0,41.0,1.0,1.0,7.0,1.0,67.0,0.0,2.0,2.0,0.0,1.0,0.0,1.0,546.0,1333.0,1672.0,0.0,12.0,886.0,1185.0,5.0,0.0,64.0,59.0,17.0,0.0,456.0,715.0,976.0,24.0,91.0,182.0,26.0,75.0,155.0,690.0,94.0,2522.0,71.0,5.0,2.0,1255.0,704.0,447.0,44.0,169.0,200.0,0.0,323.0,0.0,85.0,142.0,11.0,76.0,486.0,25.0,6.0,357.0,1114.0,73.0,0.0,34.0,19.0,0.0,0.0,38.0,0.0,368.0,661.0,396.0,62.0,10.0,0.0,0.0,588.0,0.0,37.0,872.0,52.0,0.0,0.0,0.0,1.0,335.0,0.0,62.0,522.0,1.0,29.0,0.0,74.0,144.0,15.0,16.0,123.0,351.0,615.0,536.0,34.0,0.0,0.0,0.0,0.0,0.0,21.0,2040.0,0.0,734.0,0.0,0.0,44.0,0.0,0.0,292.0,414.0,618.0,142.0,0.0,10.0,856.0,52.0,0.0,39.0,100.0,42.0,0.0,37.0,298.0,6.0,99.0,68.0,0.0,0.0,4.0,0.0,47.0,27.0,325.0,0.0,3.0,1387.0,212.0,57.0,0.0,0.0,346.0,0.0,58.0,109.0,20.0,0.0,83.0,0.0,21.0,0.0,3737.0,0.0,90.0,470.0,0.0,0.0,66.0,143.0,375.0,321.0,0.0,1.0,0.0,383.0,24.0,22.0,0.0,54.0,0.0,399.0,0.0,59.0,0.0,94.0,311.0,416.0,11.0,1352.0,11.0,169.0,234.0,12.0,16.0,398.0,1.0,0.0,128.0,176.0,1294.0,8.0,4.0,2014-12-28,,2014-52,0.5727226764458875,1.3800000000000003, +192,192,0.17,94.0,7.0,59.0,0.0,57.0,145.0,155.0,55.0,0.0,145.0,2806.0,5.0,34.0,256.0,431.0,24.0,50.0,102.0,1445.0,0.0,39.0,212.0,12.0,37.0,211.0,67.0,874.0,201.0,8.0,0.0,10.0,0.0,634.0,116.0,527.0,1070.0,0.0,23.0,0.0,37.0,187.0,0.0,35.0,363.0,490.0,12.0,0.0,208.0,124.0,521.0,0.0,115.0,0.0,97.0,62.0,21.0,0.0,4203.0,0.0,0.0,12.0,887.0,3.0,1180.0,117.0,0.0,5.0,24.0,941.0,0.0,153.0,120.0,1.0,41.0,0.0,1819.0,124.0,2.0,13.0,61.0,55.0,22.0,76.0,0.0,147.0,635.0,190.0,21.0,0.0,0.0,16.0,1311.0,0.0,0.0,96.0,54.0,100.0,1599.0,38.0,1324.0,908.0,36.0,0.0,19.0,0.0,0.0,4.0,0.0,48.0,1.0,1.0,3.0,0.0,0.0,0.0,1.0,336.0,810.0,890.0,0.0,10.0,454.0,801.0,6.0,2.0,36.0,44.0,20.0,0.0,315.0,630.0,618.0,16.0,64.0,133.0,26.0,58.0,124.0,445.0,70.0,1758.0,64.0,7.0,1.0,819.0,602.0,286.0,28.0,121.0,165.0,0.0,143.0,1.0,63.0,113.0,5.0,65.0,383.0,31.0,4.0,174.0,580.0,48.0,0.0,27.0,13.0,0.0,0.0,33.0,0.0,270.0,415.0,168.0,71.0,4.0,0.0,0.0,302.0,0.0,33.0,535.0,30.0,0.0,0.0,0.0,1.0,233.0,1.0,63.0,368.0,0.0,19.0,0.0,59.0,77.0,18.0,11.0,108.0,222.0,401.0,379.0,26.0,0.0,0.0,0.0,0.0,0.0,23.0,1283.0,0.0,477.0,0.0,0.0,34.0,0.0,0.0,181.0,244.0,423.0,82.0,2.0,11.0,410.0,55.0,0.0,31.0,74.0,29.0,1.0,42.0,204.0,8.0,100.0,29.0,0.0,0.0,6.0,0.0,39.0,20.0,269.0,0.0,3.0,990.0,124.0,33.0,0.0,2.0,261.0,0.0,49.0,76.0,19.0,1.0,80.0,0.0,13.0,0.0,2552.0,0.0,47.0,377.0,0.0,2.0,31.0,89.0,250.0,178.0,0.0,0.0,0.0,265.0,21.0,12.0,0.0,36.0,0.0,274.0,0.0,40.0,0.0,67.0,218.0,299.0,16.0,751.0,12.0,116.0,181.0,7.0,20.0,370.0,1.0,0.0,76.0,110.0,974.0,3.0,5.0,2015-01-04,,2015-1,0.4130129856804913,0.58, +193,193,0.17,63.0,1.0,31.0,0.0,26.0,79.0,249.66666666666669,33.0,0.0,118.0,2078.0,2.0,13.0,209.0,297.0,23.0,34.0,78.0,943.0,0.0,15.0,222.0,6.0,22.0,154.0,47.0,681.0,136.0,4.0,0.0,7.0,0.0,302.0,76.0,332.0,768.0,0.0,31.0,0.0,32.0,135.0,0.0,34.0,277.0,366.0,26.0,0.0,156.0,92.0,346.0,0.0,75.0,0.0,74.0,58.0,6.0,0.0,3090.0,0.0,2.0,50.0,694.0,0.0,884.0,170.0,0.0,3.0,9.0,719.0,0.0,55.0,81.0,0.0,23.0,0.0,1810.0,77.0,1.0,4.0,40.0,44.0,26.0,62.0,0.0,124.0,359.0,144.0,23.0,0.0,0.0,4.0,872.0,0.0,0.0,59.0,50.0,101.0,1144.0,31.0,903.0,692.0,26.0,0.0,20.0,1.0,0.0,3.0,1.0,32.0,3.0,0.0,4.0,0.0,0.0,0.0,0.0,293.0,678.0,808.0,1.0,5.0,392.0,480.0,2.0,0.0,40.0,37.0,9.0,0.0,225.0,421.0,399.0,12.0,43.0,60.0,13.0,41.0,74.0,282.0,54.0,1113.0,38.0,1.0,3.0,583.0,490.0,210.0,24.0,84.0,143.0,0.0,128.0,0.0,34.0,102.0,4.0,46.0,317.0,23.0,2.0,120.0,381.0,36.0,0.0,13.0,3.0,0.0,0.0,14.0,0.0,243.0,390.0,123.0,22.0,4.0,0.0,0.0,287.0,0.0,31.0,440.0,25.0,2.0,0.0,0.0,0.0,156.0,0.0,35.0,233.0,0.0,10.0,0.0,40.0,60.0,14.0,9.0,86.0,149.0,284.0,426.33333333333326,8.0,0.0,1.0,0.0,0.0,0.0,16.0,816.0,0.0,368.0,1.0,1.0,18.0,0.0,0.0,117.0,229.0,339.0,60.0,0.0,7.0,334.0,17.0,0.0,19.0,51.0,17.0,0.0,23.0,230.2,1.0,84.0,50.0,0.0,0.0,0.0,0.0,25.0,3.0,178.0,0.0,1.0,862.0,128.0,26.0,0.0,0.0,239.0,2.0,25.0,60.0,11.0,0.0,48.0,0.0,12.0,0.0,1876.0,0.0,31.0,329.0,0.0,0.0,40.0,74.0,195.0,112.0,0.0,0.0,0.0,160.0,21.0,10.0,0.0,32.0,0.0,234.0,0.0,38.0,0.0,30.0,193.0,189.0,18.0,520.0,5.0,78.0,121.0,3.0,7.0,218.0,2.0,0.0,45.0,95.0,691.0,4.0,0.0,2015-01-11,,2015-2,0.16250460416796408,1.3639999999999999, +194,194,0.54,84.0,1.0,102.0,0.0,57.0,206.0,344.33333333333337,172.0,0.0,315.0,5082.0,2.0,40.0,587.0,502.0,48.0,59.0,184.0,2371.0,0.0,37.0,485.0,12.0,68.0,390.0,114.0,1667.0,396.0,16.0,0.0,7.0,0.0,1201.0,308.0,697.0,2003.0,0.0,33.0,2.0,63.0,342.0,0.0,75.0,816.0,859.0,35.0,0.0,569.0,202.0,781.0,0.0,143.0,0.0,157.0,158.0,33.0,115.0,5963.0,0.0,0.0,21.0,1767.0,2.0,2120.0,192.0,0.0,6.0,30.0,1770.0,0.0,121.0,187.0,1.0,77.0,0.0,2889.0,264.0,1.0,10.0,84.0,120.0,17.0,126.0,1.0,313.0,1240.0,304.0,22.0,0.0,0.0,10.0,2109.0,0.0,0.0,143.0,111.0,307.0,2641.0,100.0,2043.0,1830.0,58.0,0.0,53.0,3.0,0.0,5.0,0.0,78.0,3.0,0.0,3.0,0.0,2.0,0.0,3.0,751.0,1776.0,2358.0,0.0,12.0,1185.0,1433.0,4.0,0.0,106.0,70.0,19.0,0.0,534.0,930.0,1213.0,28.0,103.0,190.0,25.0,129.0,196.0,770.0,148.0,2795.0,102.0,5.0,0.0,1270.0,871.0,464.0,31.0,208.0,310.0,1.0,406.0,1.0,154.0,214.0,6.0,81.0,635.0,62.0,5.0,342.0,1216.0,102.0,0.0,50.0,26.0,1.0,0.0,57.0,0.0,499.0,856.0,425.0,52.0,6.0,0.0,0.0,680.0,0.0,58.0,1048.0,82.0,4.0,2.0,0.0,2.0,397.0,0.0,104.0,800.0,0.0,29.0,0.0,78.0,208.0,24.0,9.0,209.0,546.0,732.0,473.66666666666674,34.0,0.0,0.0,0.0,1.0,0.0,29.0,2425.0,0.0,922.0,1.0,0.0,36.0,0.0,0.0,440.0,552.0,811.0,135.0,0.0,13.0,1052.0,51.0,0.0,71.0,132.0,45.0,0.0,70.0,256.4,7.0,159.0,76.0,0.0,0.0,2.0,0.0,57.0,18.0,407.0,0.0,3.0,2159.0,289.0,68.0,0.0,3.0,482.0,0.0,83.0,117.0,32.0,1.0,214.0,0.0,24.0,0.0,4524.0,0.0,98.0,616.0,0.0,0.0,97.0,186.0,449.0,349.0,0.0,0.0,0.0,405.0,45.0,28.0,0.0,74.0,0.0,490.0,0.0,56.0,0.0,97.0,347.0,518.0,16.0,1834.0,12.0,200.0,259.0,8.0,19.0,510.0,3.0,0.0,152.0,205.0,1661.0,8.0,1.0,2015-01-18,,2015-3,0.9372142396174503,2.506, +195,195,1.29,111.0,0.0,101.0,0.0,58.0,228.0,439.0,172.0,0.0,314.0,5951.0,3.0,34.0,605.0,502.0,59.0,75.0,220.0,2451.0,0.0,49.0,359.0,6.0,79.0,442.0,96.0,1859.0,471.0,6.0,0.0,17.0,0.0,1220.0,376.0,753.0,2104.0,0.0,29.0,3.0,174.0,360.0,0.0,74.0,936.0,901.0,22.0,0.0,615.0,217.0,718.0,0.0,154.0,0.0,251.0,111.0,26.0,83.0,5893.0,0.0,1.0,14.0,1934.0,0.0,2113.0,211.0,0.0,3.0,23.0,1931.0,0.0,127.0,170.0,0.0,73.0,0.0,2749.0,295.0,1.0,12.0,102.0,130.0,32.0,138.0,0.0,306.0,1413.0,344.0,44.0,0.0,0.0,4.0,2777.0,0.0,0.0,169.0,119.0,364.0,2560.0,130.0,2604.0,1862.0,61.0,0.0,36.0,0.0,0.0,5.0,0.0,98.0,1.0,0.0,1.0,0.0,2.0,0.0,0.0,871.0,1903.0,2300.0,0.0,15.0,1198.0,1498.0,5.0,4.0,98.0,81.0,23.0,0.0,553.0,1013.0,1369.0,24.0,165.0,273.0,24.0,109.0,193.0,742.0,190.0,2841.0,96.0,2.0,0.0,1533.0,1059.0,547.0,50.0,259.0,258.0,0.0,496.0,0.0,157.0,230.0,5.0,93.0,463.0,45.0,5.0,422.0,1605.0,102.0,0.0,48.0,29.0,0.0,0.0,63.0,0.0,508.0,1029.0,536.0,60.0,18.0,0.0,0.0,824.0,0.0,46.0,1150.0,71.0,2.0,1.0,0.0,2.0,444.0,0.0,84.0,751.0,0.0,28.0,0.0,92.0,209.0,21.0,14.0,200.0,498.0,865.0,521.0,39.0,0.0,0.0,0.0,1.0,0.0,26.0,2614.0,0.0,967.0,0.0,0.0,41.0,0.0,0.0,476.0,624.0,908.0,165.0,0.0,8.0,1110.0,79.0,0.0,45.0,143.0,74.0,0.0,63.0,282.6,8.0,192.0,67.0,0.0,0.0,4.0,0.0,49.0,18.0,404.0,0.0,4.0,2043.0,271.0,85.0,0.0,1.0,518.0,0.0,93.0,128.0,22.0,0.0,122.0,0.0,30.0,0.0,4934.0,0.0,125.0,593.0,0.0,1.0,95.0,253.0,528.0,374.0,0.0,0.0,0.0,457.0,57.0,35.0,0.0,83.0,0.0,513.0,0.0,57.0,0.0,99.0,461.0,637.0,24.0,1865.0,14.0,181.0,305.0,13.0,23.0,477.0,1.0,0.0,180.0,268.0,1818.0,1.0,0.0,2015-01-25,,2015-4,1.2306225585056279,1.064, +196,196,2.19,92.0,2.0,87.0,0.0,77.0,243.0,420.0,155.0,1.0,351.0,5250.0,0.0,41.0,636.0,513.0,34.0,59.0,204.0,2719.0,0.0,52.0,467.0,1.0,51.0,401.0,80.0,1620.0,487.0,18.0,0.0,15.0,0.0,1302.0,415.0,790.0,2156.0,0.0,35.0,0.0,69.0,275.0,0.0,65.0,1574.0,863.0,18.0,0.0,664.0,226.0,777.0,0.0,139.0,0.0,218.0,175.0,31.0,38.0,5068.0,0.0,0.0,15.0,2078.0,1.0,2325.0,155.0,0.0,0.0,17.0,1915.0,0.0,242.0,196.0,0.0,94.0,0.0,2877.0,343.0,0.0,5.0,115.0,131.0,33.0,136.0,0.0,279.0,1427.0,309.0,38.0,0.0,0.0,9.0,2313.0,0.0,0.0,193.0,117.0,357.0,2549.0,141.0,2133.0,1864.0,49.0,1.0,40.0,0.0,0.0,4.0,0.0,104.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,821.0,1841.0,2484.0,0.0,10.0,1190.0,1398.0,0.0,0.0,119.0,96.0,22.0,0.0,526.0,1006.0,1469.0,20.0,140.0,230.0,23.0,91.0,227.0,1200.0,251.0,2845.0,86.0,6.0,1.0,1493.0,929.0,501.0,47.0,258.0,339.0,0.0,445.0,0.0,134.0,237.0,4.0,85.0,482.0,44.0,1.0,378.0,2297.0,79.0,0.0,69.0,31.0,0.0,0.0,51.0,0.0,514.0,1045.0,498.0,63.0,68.0,0.0,0.0,774.0,0.0,51.0,1189.0,85.0,0.0,0.0,0.0,1.0,530.0,0.0,78.0,714.0,0.0,28.0,0.0,80.0,210.0,19.0,9.0,236.0,466.0,861.0,568.3333333333334,26.0,0.0,0.0,0.0,1.0,0.0,22.0,2454.0,0.0,889.0,2.0,0.0,61.0,0.0,0.0,477.0,561.0,914.0,130.0,0.0,14.0,1265.0,64.0,0.0,39.0,135.0,39.0,0.0,60.0,308.8,5.0,910.0,100.0,0.0,0.0,0.0,0.0,76.0,23.0,365.0,0.0,1.0,3430.0,267.0,70.0,0.0,0.0,504.0,0.0,77.0,114.0,22.0,0.0,86.0,0.0,29.0,0.0,4711.0,0.0,95.0,758.0,1.0,0.0,119.0,212.0,476.0,373.0,0.0,0.0,0.0,437.0,30.0,17.0,0.0,91.0,0.0,537.0,0.0,51.0,0.0,95.0,359.0,503.0,26.0,1899.0,11.0,206.0,280.0,8.0,32.0,482.0,1.0,0.0,177.0,270.0,1871.0,3.0,0.0,2015-02-01,,2015-5,2.24197343031436,2.7200000000000006, +197,197,4.54,92.0,1.0,109.0,0.0,88.0,233.0,474.0,167.0,0.0,387.0,5256.0,0.0,25.0,570.0,465.0,45.0,53.0,178.0,2390.0,0.0,58.0,330.0,9.0,124.0,441.0,90.0,1644.0,470.0,8.0,0.0,12.0,0.0,1290.0,422.0,676.0,1961.0,0.0,25.0,0.0,48.0,222.0,0.0,57.0,884.0,858.0,24.0,0.0,667.0,222.0,819.0,0.0,128.0,0.0,248.0,122.0,28.0,43.0,3549.0,0.0,1.0,25.0,2040.0,1.0,2297.0,201.0,0.0,2.0,27.0,1807.0,0.0,169.0,196.0,0.0,52.0,0.0,2869.0,336.0,2.0,12.0,126.0,134.0,25.0,137.0,0.0,283.0,1429.0,261.0,46.0,1.0,0.0,11.0,2246.0,0.0,0.0,166.0,113.0,388.0,2449.0,115.0,2109.0,1974.0,63.0,0.0,33.0,0.0,0.0,4.0,1.0,86.0,0.0,1.0,1.0,0.0,0.0,2.0,1.0,907.0,2002.0,2180.0,0.0,12.0,1509.0,1424.0,1.0,3.0,91.0,62.0,14.0,0.0,546.0,965.0,1329.0,32.0,134.0,266.0,29.0,94.0,185.0,856.0,226.0,2949.0,66.0,2.0,2.0,1520.0,955.0,520.0,51.0,237.0,296.0,0.0,530.0,0.0,120.0,229.0,8.0,92.0,462.0,57.0,8.0,400.0,1742.0,95.0,0.0,63.0,42.0,0.0,0.0,48.0,0.0,527.0,921.0,506.0,61.0,44.0,0.0,0.0,719.0,0.0,49.0,1177.0,74.0,1.0,0.0,0.0,3.0,534.0,1.0,95.0,699.0,0.0,24.0,0.0,106.0,199.0,35.0,15.0,218.0,595.0,855.0,615.6666666666667,38.0,0.0,0.0,0.0,0.0,0.0,22.0,2591.0,0.0,985.0,0.0,0.0,24.0,0.0,0.0,586.0,561.0,876.0,151.0,0.0,13.0,1365.0,90.0,0.0,46.0,122.0,59.0,0.0,54.0,335.0,7.0,331.0,77.0,0.0,0.0,0.0,0.0,63.0,17.0,355.0,0.0,4.0,2442.0,304.0,59.0,0.0,0.0,452.0,0.0,75.0,138.0,22.0,0.0,95.0,2.0,39.0,0.0,4651.0,0.0,856.0,680.0,0.0,0.0,108.0,244.0,503.0,423.0,0.0,0.0,0.0,485.0,33.0,20.0,0.0,64.0,0.0,522.0,0.0,60.0,0.0,180.0,394.0,515.0,13.0,1865.0,12.0,166.0,311.0,2.0,19.0,583.0,0.0,0.0,171.0,227.0,1718.0,3.0,1.0,2015-02-08,,2015-6,3.3469093519858806,2.886, +198,198,7.79,87.0,3.0,100.0,0.0,60.0,208.0,449.0,189.0,0.0,342.0,5706.0,0.0,39.0,521.0,471.0,54.0,42.0,220.0,2163.0,0.0,46.0,307.0,10.0,89.0,396.0,74.0,1530.0,614.0,11.0,0.0,11.0,1.0,1850.0,519.0,723.0,2009.0,0.0,31.0,1.0,49.0,239.0,0.0,77.0,871.0,928.0,19.0,0.0,660.0,222.0,884.0,0.0,20320.0,0.0,232.0,144.0,37.0,53.0,3557.0,0.0,1.0,22.0,1780.0,0.0,2086.0,161.0,0.0,9.0,19.0,1707.0,0.0,104.0,212.0,0.0,75.0,0.0,2596.0,381.0,4.0,15.0,155.0,150.0,38.0,145.0,7.0,226.0,1225.0,249.0,38.0,0.0,0.0,5.0,2052.0,0.0,0.0,181.0,111.0,324.0,2291.0,97.0,1909.0,1794.0,63.0,1.0,31.0,1.0,0.0,4.0,0.0,116.0,0.0,2.0,1.0,0.0,2.0,0.0,1.0,1128.0,1878.0,2170.0,1.0,14.0,1096.0,1301.0,4.0,0.0,121.0,67.0,26.0,0.0,529.0,888.0,1351.0,24.0,127.0,226.0,41.0,88.0,217.0,711.0,199.0,2747.0,82.0,2.0,2.0,1369.0,986.0,545.0,39.0,207.0,275.0,1.0,539.0,0.0,140.0,212.0,5.0,85.0,438.0,46.0,2.0,335.0,3120.0,58.0,0.0,66.0,42.0,0.0,0.0,52.0,0.0,464.0,892.0,461.0,58.0,24.0,0.0,0.0,682.0,0.0,51.0,1044.0,61.0,0.0,0.0,0.0,0.0,427.0,2.0,94.0,743.0,0.0,22.0,0.0,76.0,194.0,22.0,21.0,181.0,535.0,807.0,663.0,63.0,0.0,0.0,0.0,0.0,0.0,37.0,2330.0,0.0,934.0,0.0,0.0,26.0,0.0,0.0,544.0,545.0,863.0,139.0,0.0,7.0,1170.0,53.0,0.0,36.0,135.0,42.0,0.0,64.0,359.0,3.0,183.0,86.0,0.0,0.0,3.0,0.0,44.0,28.0,326.0,0.0,4.0,1941.0,281.0,80.0,0.0,0.0,432.0,1.0,77.0,138.0,27.0,0.0,93.0,0.0,42.0,0.0,4404.0,0.0,109.0,625.0,0.0,2.0,101.0,284.0,508.0,322.0,0.0,0.0,0.0,399.0,39.0,25.0,0.0,69.0,0.0,417.0,1.0,67.0,0.0,143.0,324.0,499.0,21.0,1908.0,8.0,194.0,314.0,5.0,19.0,427.0,0.0,0.0,236.0,243.0,1683.0,3.0,4.0,2015-02-15,,2015-7,7.787699644958851,6.83, +199,199,10.37,114.0,1.0,132.0,0.0,54.0,188.0,398.0,145.0,0.0,325.0,5768.0,0.0,23.0,479.0,489.0,34.0,59.0,227.0,2003.0,0.0,33.0,275.0,6.0,79.0,398.0,135.0,1436.0,407.0,9.0,0.0,14.0,0.0,1280.0,374.0,601.0,1847.0,0.0,32.0,0.0,46.0,208.0,0.0,87.0,826.0,869.0,19.0,0.0,577.0,191.0,679.0,0.0,848.0,0.0,201.0,70.0,33.0,35.0,2958.0,0.0,1.0,34.0,1688.0,0.0,2135.0,206.0,0.0,7.0,22.0,1719.0,0.0,123.0,207.0,0.0,73.0,0.0,2555.0,273.0,0.0,19.0,167.0,131.0,37.0,126.0,0.0,231.0,1202.0,1038.0,30.0,0.0,0.0,11.0,1886.0,0.0,0.0,151.0,133.0,314.0,2156.0,109.0,2000.0,1776.0,40.0,0.0,47.0,0.0,0.0,4.0,0.0,102.0,3.0,2.0,1.0,0.0,1.0,2.0,1.0,920.0,1727.0,2140.0,0.0,17.0,1057.0,1305.0,5.0,1.0,97.0,68.0,23.0,0.0,413.0,960.0,1212.0,34.0,130.0,253.0,27.0,82.0,240.0,643.0,200.0,2680.0,96.0,7.0,2.0,1358.0,972.0,571.0,36.0,239.0,273.0,1.0,527.0,0.0,121.0,189.0,12.0,81.0,471.0,54.0,3.0,378.0,2543.0,95.0,0.0,46.0,24.0,0.0,0.0,49.0,18.0,448.0,812.0,442.0,71.0,17.0,0.0,0.0,632.0,0.0,49.0,998.0,61.0,1.0,2.0,0.0,1.0,455.0,2.0,101.0,694.0,1.0,28.0,2.0,66.0,178.0,18.0,5.0,179.0,400.0,655.0,636.0,37.0,0.0,0.0,1.0,1.0,0.0,27.0,2411.0,0.0,884.0,1.0,0.0,18.0,0.0,0.0,530.0,482.0,756.0,131.0,0.0,25.0,1022.0,65.0,0.0,42.0,120.0,52.0,0.0,57.0,378.0,14.0,276.0,75.0,0.0,0.0,0.0,2.0,75.0,18.0,356.0,0.0,2.0,1897.0,315.0,58.0,0.0,0.0,395.0,0.0,72.0,120.0,53.0,0.0,99.0,0.0,28.0,0.0,3322.0,0.0,104.0,509.0,0.0,4.0,107.0,258.0,427.0,315.0,0.0,2.0,0.0,400.0,27.0,17.0,0.0,64.0,0.0,489.0,1.0,37.0,0.0,75.0,320.0,472.0,23.0,1995.0,9.0,150.0,324.0,9.0,26.0,399.0,3.0,0.0,161.0,246.0,1632.0,6.0,3.0,2015-02-22,,2015-8,10.1106845601498,10.37, +200,200,13.05,94.0,4.0,124.0,0.0,80.0,196.0,378.0,127.0,1.0,270.0,5817.0,0.0,36.0,469.0,445.0,34.0,57.0,170.0,2073.0,0.0,35.0,278.0,18.0,62.0,344.0,98.0,1581.0,379.0,11.0,0.0,18.0,1.0,1275.0,390.0,630.0,1898.0,0.0,47.0,1.0,40.0,231.0,0.0,84.0,883.0,990.0,19.0,0.0,559.0,187.0,675.0,0.0,136.0,0.0,191.0,89.0,23.0,31.0,3173.0,0.0,1.0,16.0,18185.0,1.0,2306.0,180.0,0.0,7.0,20.0,1762.0,0.0,111.0,151.0,2.0,56.0,0.0,2770.0,267.0,1.0,13.0,181.0,155.0,32.0,99.0,0.0,271.0,1253.0,253.0,30.0,0.0,0.0,7.0,2041.0,0.0,0.0,138.0,120.0,327.0,2292.0,63.0,1831.0,1605.0,39.0,0.0,35.0,2.0,5.0,7.0,0.0,70.0,3.0,2.0,1.0,2.0,3.0,2.0,2.0,912.0,1660.0,2159.0,0.0,14.0,1058.0,1258.0,5.0,3.0,76.0,67.0,24.0,0.0,421.0,883.0,1277.0,20.0,117.0,227.0,24.0,93.0,184.0,657.0,161.0,3061.0,67.0,3.0,0.0,1258.0,927.0,493.0,45.0,219.0,216.0,0.0,420.0,0.0,114.0,209.0,10.0,97.0,414.0,51.0,2.0,362.0,2367.0,90.0,0.0,45.0,21.0,0.0,0.0,55.0,11.0,433.0,843.0,362.0,50.0,30.0,145.0,0.0,692.0,0.0,40.0,936.0,67.0,0.0,0.0,0.0,2.0,404.0,0.0,75.0,644.0,1.0,31.0,0.0,64.0,198.0,27.0,21.0,180.0,399.0,690.0,579.0,33.0,1.0,2.0,1.0,0.0,0.0,29.0,2436.0,0.0,859.0,0.0,0.0,36.0,0.0,0.0,456.0,481.0,742.0,127.0,0.0,23.0,951.0,82.0,0.0,50.0,147.0,35.0,0.0,51.0,376.0,5.0,189.0,81.0,0.0,0.0,24.0,0.0,61.0,15.0,310.0,0.0,4.0,1806.0,277.0,53.0,0.0,7.0,482.0,2.0,61.0,106.0,44.0,0.0,103.0,0.0,22.0,0.0,3315.0,0.0,91.0,587.0,0.0,0.0,110.0,215.0,381.0,446.0,0.0,0.0,0.0,432.0,36.0,20.0,0.0,70.0,0.0,454.0,0.0,66.0,0.0,92.0,298.0,518.0,12.0,4240.0,11.0,171.0,296.0,8.0,21.0,401.0,0.0,0.0,209.0,205.0,1542.0,7.0,2.0,2015-03-01,,2015-9,12.933248869477938,4.388000000000001, +201,201,15.49,70.0,1.0,83.0,0.0,64.0,213.0,371.0,114.0,0.0,283.0,5608.0,1.0,29.0,412.0,405.0,30.0,82.0,174.0,2285.0,0.0,22.0,293.0,6.0,48.0,364.0,132.0,1533.0,421.0,14.0,0.0,13.0,1.0,1253.0,379.0,769.0,1938.0,0.0,35.0,1.0,53.0,244.0,0.0,63.0,858.0,943.0,47.0,0.0,1354.0,174.0,729.0,0.0,172.0,0.0,185.0,91.0,24.0,42.0,3109.0,0.0,2.0,22.0,1719.0,1.0,3928.0,214.0,0.0,13.0,34.0,1806.0,0.0,131.0,167.0,0.0,73.0,0.0,2684.0,271.0,1.0,11.0,191.0,145.0,42.0,90.0,1.0,344.0,1720.0,304.0,20.0,1.0,0.0,14.0,1978.0,0.0,0.0,184.0,118.0,948.0,2234.0,53.0,1976.0,1719.0,53.0,0.0,30.0,1.0,1.0,7.0,1.0,77.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1301.0,1785.0,2850.0,1.0,13.0,1189.0,1301.0,3.0,1.0,58.0,62.0,39.0,0.0,462.0,864.0,1362.0,24.0,138.0,232.0,25.0,98.0,230.0,683.0,136.0,3052.0,56.0,6.0,2.0,1384.0,970.0,638.0,73.0,195.0,291.0,0.0,1214.0,0.0,128.0,225.0,11.0,96.0,667.0,62.0,4.0,325.0,16883.0,69.0,1.0,42.0,31.0,0.0,0.0,44.0,0.0,803.0,797.0,476.0,84.0,30.0,60.0,0.0,666.0,0.0,54.0,1064.0,77.0,1.0,1.0,0.0,1.0,387.0,0.0,94.0,654.0,1.0,32.0,0.0,69.0,184.0,33.0,23.0,202.0,426.0,729.0,720.0,36.0,0.0,1.0,2.0,1.0,1.0,29.0,2535.0,0.0,1235.0,0.0,3.0,36.0,0.0,0.0,1517.0,515.0,806.0,142.0,0.0,19.0,974.0,70.0,0.0,50.0,132.0,36.0,0.0,36.0,401.0,4.0,269.0,60.0,0.0,0.0,12.0,0.0,68.0,14.0,375.0,0.0,3.0,1808.0,262.0,50.0,0.0,0.0,464.0,2.0,64.0,108.0,42.0,0.0,136.0,0.0,26.0,0.0,3528.0,0.0,88.0,617.0,0.0,0.0,205.0,360.0,416.0,390.0,0.0,1.0,0.0,433.0,32.0,19.0,0.0,91.0,0.0,467.0,1.0,44.0,0.0,105.0,298.0,576.0,10.0,1993.0,11.0,193.0,326.0,3.0,19.0,421.0,0.0,0.0,157.0,204.0,1674.0,6.0,2.0,2015-03-08,,2015-10,15.341643226344216,13.122, +202,202,12.13,89.0,3.0,86.0,0.0,46.0,232.0,404.0,100.0,0.0,310.0,4696.0,0.0,26.0,483.0,482.0,30.0,72.0,161.0,2102.0,0.0,21.0,417.0,16.0,50.0,347.0,105.0,1481.0,406.0,11.0,0.0,8.0,0.0,1214.0,440.0,621.0,1875.0,0.0,30.0,0.0,61.0,211.0,0.0,70.0,873.0,1038.0,23.0,0.0,858.0,168.0,724.0,0.0,270.0,0.0,231.0,214.0,15.0,20.0,3425.0,0.0,1.0,22.0,1605.0,0.0,2283.0,197.0,0.0,15.0,26.0,1772.0,0.0,153.0,144.0,0.0,78.0,0.0,2720.0,267.0,1.0,102.0,162.0,121.0,21.0,79.0,0.0,292.0,1341.0,269.0,25.0,0.0,0.0,5.0,1846.0,0.0,0.0,159.0,88.0,489.0,2214.0,34.0,1954.0,1647.0,31.0,2.0,35.0,3.0,6.0,5.0,0.0,68.0,3.0,11.0,2.0,2.0,10.0,0.0,0.0,990.0,1656.0,2233.0,1.0,11.0,1055.0,1256.0,3.0,1.0,58.0,41.0,17.0,0.0,489.0,846.0,1453.0,20.0,105.0,223.0,22.0,76.0,199.0,644.0,128.0,2908.0,55.0,5.0,3.0,1348.0,796.0,558.0,57.0,251.0,329.0,0.0,708.0,0.0,116.0,207.0,5.0,99.0,555.0,39.0,0.0,330.0,5763.0,83.0,0.0,30.0,32.0,0.0,1.0,44.0,14.0,474.0,784.0,400.0,61.0,61.0,45.0,0.0,711.0,0.0,52.0,1002.0,60.0,2.0,1.0,0.0,0.0,353.0,4.0,114.0,724.0,0.0,22.0,7.0,63.0,189.0,26.0,11.0,207.0,509.0,755.0,606.0,36.0,0.0,0.0,1.0,2.0,0.0,17.0,2478.0,0.0,888.0,0.0,0.0,35.0,0.0,0.0,832.0,419.0,766.0,143.0,0.0,21.0,930.0,83.0,0.0,38.0,133.0,48.0,0.0,39.0,330.0,3.0,223.0,78.0,0.0,0.0,16.0,0.0,84.0,21.0,333.0,0.0,4.0,1898.0,313.0,55.0,0.0,9.0,451.0,3.0,73.0,224.0,32.0,1.0,99.0,0.0,29.0,0.0,3247.0,0.0,57.0,531.0,0.0,0.0,112.0,268.0,414.0,364.0,0.0,1.0,0.0,403.0,31.0,10.0,0.0,51.0,0.0,505.0,1.0,65.0,0.0,149.0,325.0,576.0,12.0,1682.0,12.0,171.0,349.0,3.0,12.0,373.0,1.0,0.0,174.0,234.0,1723.0,9.0,2.0,2015-03-15,,2015-11,11.67471242734606,12.130000000000003, +203,203,9.11,68.0,1.0,97.0,0.0,57.0,233.0,446.0,121.0,1.0,323.0,5159.0,0.0,35.0,491.0,406.0,40.0,50.0,165.0,2055.0,0.0,30.0,329.0,9.0,57.0,421.0,125.0,1484.0,387.0,7.0,0.0,12.0,0.0,1191.0,406.0,653.0,1902.0,0.0,31.0,0.0,52.0,206.0,0.0,63.0,893.0,967.0,22.0,0.0,777.0,161.0,684.0,0.0,237.0,0.0,233.0,90.0,27.0,21.0,2781.0,0.0,0.0,25.0,1717.0,0.0,2179.0,192.0,0.0,6.0,21.0,1748.0,0.0,140.0,150.0,0.0,51.0,0.0,2503.0,242.0,1.0,21.0,145.0,114.0,34.0,68.0,0.0,271.0,1272.0,294.0,25.0,1.0,0.0,6.0,1813.0,0.0,0.0,140.0,114.0,406.0,2273.0,52.0,1818.0,1582.0,31.0,0.0,38.0,0.0,0.0,6.0,0.0,74.0,2.0,1.0,1.0,0.0,1.0,0.0,3.0,807.0,1671.0,2103.0,0.0,20.0,1181.0,1391.0,6.0,1.0,60.0,51.0,20.0,0.0,413.0,881.0,1235.0,20.0,109.0,265.0,27.0,85.0,195.0,614.0,116.0,2752.0,60.0,4.0,1.0,1292.0,808.0,461.0,36.0,207.0,354.0,1.0,571.0,0.0,147.0,176.0,8.0,99.0,433.0,49.0,6.0,346.0,4078.0,84.0,0.0,48.0,29.0,0.0,0.0,66.0,0.0,484.0,854.0,462.0,81.0,88.0,38.0,0.0,742.0,0.0,42.0,1050.0,67.0,4.0,1.0,0.0,0.0,389.0,0.0,93.0,650.0,0.0,27.0,0.0,59.0,187.0,16.0,20.0,196.0,515.0,817.0,610.0,37.0,0.0,0.0,1.0,0.0,0.0,21.0,2337.0,0.0,874.0,0.0,1.0,34.0,0.0,0.0,525.0,422.0,754.0,138.0,0.0,16.0,893.0,75.0,0.0,35.0,127.0,40.0,0.0,57.0,346.0,9.0,198.0,74.0,0.0,0.0,7.0,0.0,90.0,18.0,329.0,0.0,4.0,1783.0,300.0,66.0,0.0,1.0,451.0,0.0,58.0,115.0,29.0,0.0,89.0,0.0,26.0,0.0,3245.0,0.0,80.0,562.0,1.0,1.0,109.0,229.0,361.0,379.0,0.0,0.0,0.0,469.0,24.0,18.0,0.0,51.0,0.0,461.0,0.0,63.0,0.0,177.0,338.0,526.0,15.0,1606.0,7.0,178.0,317.0,9.0,26.0,378.0,0.0,0.0,134.0,234.0,1628.0,6.0,0.0,2015-03-22,,2015-12,10.319221145237956,8.032, +204,204,6.14,82.0,2.0,79.0,0.0,64.0,183.0,335.0,131.0,0.0,301.0,3794.0,3.0,29.0,426.0,429.0,35.0,65.0,157.0,2286.0,0.0,47.0,249.0,6.0,42.0,359.0,93.0,1473.0,423.0,6.0,0.0,13.0,0.0,1149.0,421.0,651.0,1838.0,0.0,27.0,0.0,47.0,174.0,0.0,58.0,840.0,973.0,26.0,0.0,683.0,186.0,664.0,0.0,122.0,0.0,173.0,63.0,16.0,27.0,5018.0,0.0,0.0,19.0,1597.0,0.0,1959.0,165.0,0.0,2.0,22.0,1716.0,0.0,87.0,108.0,0.0,47.0,0.0,2534.0,232.0,0.0,13.0,104.0,116.0,19.0,92.0,0.0,238.0,1171.0,265.0,31.0,0.0,0.0,8.0,1749.0,0.0,0.0,131.0,98.0,321.0,2120.0,54.0,1858.0,1409.0,53.0,1.0,27.0,1.0,1.0,6.0,1.0,98.0,1.0,1.0,2.0,1.0,1.0,1.0,1.0,764.0,1671.0,1916.0,0.0,15.0,1176.0,1294.0,4.0,1.0,61.0,63.0,25.0,0.0,467.0,880.0,1145.0,18.0,114.0,241.0,35.0,60.0,195.0,625.0,95.0,2760.0,56.0,7.0,2.0,1323.0,836.0,507.0,40.0,197.0,274.0,0.0,437.0,0.0,129.0,196.0,19.0,110.0,478.0,49.0,3.0,312.0,3046.0,87.0,0.0,52.0,36.0,0.0,0.0,60.0,0.0,467.0,824.0,453.0,53.0,70.0,40.0,0.0,657.0,0.0,78.0,1047.0,69.0,0.0,0.0,0.0,0.0,389.0,0.0,74.0,636.0,3.0,18.0,0.0,69.0,186.0,28.0,13.0,175.0,465.0,726.0,567.0,43.0,0.0,0.0,0.0,1.0,0.0,40.0,2181.0,0.0,761.0,0.0,1.0,30.0,0.0,0.0,472.0,448.0,717.0,124.0,0.0,14.0,918.0,104.0,0.0,33.0,122.0,40.0,0.0,56.0,351.0,9.0,178.0,62.0,0.0,0.0,7.0,0.0,52.0,26.0,319.0,0.0,6.0,1761.0,315.0,62.0,0.0,0.0,478.0,2.0,80.0,97.0,24.0,0.0,84.0,0.0,25.0,0.0,3197.0,0.0,56.0,532.0,0.0,0.0,96.0,211.0,349.0,311.0,0.0,0.0,0.0,606.0,31.0,19.0,0.0,34.0,0.0,416.0,0.0,50.0,0.0,97.0,298.0,571.0,15.0,1390.0,13.0,182.0,365.0,6.0,20.0,388.0,0.0,0.0,151.0,201.0,1368.0,2.0,0.0,2015-03-29,,2015-13,5.759316214196694,6.484000000000001, +205,205,4.22,88.0,4.0,97.0,0.0,47.0,205.0,375.0,89.0,0.0,309.0,3353.0,1.0,22.0,391.0,501.0,33.0,60.0,167.0,1832.0,0.0,30.0,283.0,11.0,59.0,343.0,99.0,1391.0,411.0,10.0,0.0,21.0,0.0,960.0,393.0,581.0,1819.0,0.0,28.0,0.0,55.0,250.0,0.0,52.0,839.0,965.0,24.0,0.0,710.0,157.0,682.0,0.0,90.0,1.0,231.0,74.0,25.0,37.0,9852.0,0.0,1.0,22.0,1528.0,1.0,1985.0,132.0,0.0,5.0,17.0,1662.0,0.0,114.0,156.0,1.0,48.0,0.0,2448.0,250.0,2.0,12.0,84.0,137.0,25.0,80.0,0.0,209.0,995.0,245.0,24.0,0.0,0.0,7.0,1796.0,0.0,0.0,122.0,120.0,348.0,2715.0,83.0,1798.0,1321.0,56.0,0.0,23.0,1.0,1.0,5.0,0.0,67.0,3.0,1.0,1.0,0.0,0.0,0.0,0.0,766.0,1473.0,1773.0,0.0,16.0,971.0,1199.0,4.0,2.0,74.0,50.0,22.0,0.0,402.0,841.0,1034.0,23.0,98.0,199.0,32.0,72.0,178.0,625.0,111.0,2683.0,63.0,6.0,0.0,1222.0,914.0,487.0,24.0,200.0,202.0,0.0,483.0,0.0,105.0,164.0,11.0,77.0,715.0,42.0,7.0,286.0,2803.0,60.0,0.0,45.0,31.0,0.0,1.0,45.0,0.0,401.0,796.0,416.0,106.0,69.0,33.0,0.0,626.0,0.0,44.0,1039.0,58.0,0.0,1.0,0.0,0.0,385.0,0.0,74.0,616.0,0.0,17.0,0.0,70.0,162.0,24.0,16.0,197.0,493.0,697.0,584.0,42.0,0.0,0.0,1.0,0.0,0.0,28.0,2058.0,0.0,674.0,0.0,1.0,28.0,0.0,0.0,466.0,400.0,721.0,98.0,0.0,15.0,909.0,68.0,0.0,28.0,97.0,37.0,0.0,48.0,287.0,5.0,179.0,86.0,0.0,0.0,10.0,0.0,48.0,28.0,336.0,0.0,2.0,1764.0,260.0,57.0,0.0,0.0,511.0,1.0,64.0,114.0,20.0,0.0,104.0,0.0,19.0,0.0,3160.0,0.0,79.0,513.0,0.0,0.0,115.0,200.0,413.0,305.0,0.0,1.0,0.0,358.0,61.0,43.0,0.0,44.0,0.0,347.0,0.0,41.0,0.0,272.0,304.0,448.0,9.0,1418.0,7.0,129.0,302.0,12.0,19.0,361.0,2.0,0.0,156.0,203.0,1568.0,3.0,0.0,2015-04-05,,2015-14,4.496090161232635,2.5460000000000003, +206,206,2.22,84.0,2.0,105.0,0.0,45.0,185.0,263.0,79.0,0.0,260.0,2671.0,3.0,22.0,332.0,413.0,33.0,61.0,117.0,1737.0,0.0,16.0,240.0,7.0,46.0,397.0,60.0,1117.0,356.0,10.0,0.0,18.0,0.0,777.0,287.0,443.0,1457.0,0.0,27.0,0.0,36.0,172.0,0.0,64.0,678.0,875.0,20.0,0.0,489.0,171.0,650.0,0.0,101.0,0.0,160.0,56.0,17.0,41.0,1508.0,0.0,1.0,21.0,1381.0,0.0,1647.0,156.0,0.0,5.0,23.0,1276.0,0.0,93.0,130.0,1.0,70.0,0.0,2436.0,165.0,1.0,17.0,72.0,106.0,27.0,65.0,1.0,196.0,793.0,226.0,22.0,0.0,0.0,8.0,1649.0,0.0,0.0,121.0,95.0,280.0,1730.0,51.0,1654.0,1314.0,163.0,2.0,38.0,3.0,0.0,6.0,0.0,104.0,4.0,0.0,0.0,0.0,1.0,0.0,2.0,641.0,1172.0,1238.0,0.0,10.0,914.0,990.0,8.0,1.0,57.0,35.0,14.0,0.0,362.0,817.0,1039.0,19.0,103.0,184.0,32.0,84.0,174.0,568.0,85.0,2505.0,54.0,1.0,0.0,986.0,751.0,650.0,39.0,163.0,201.0,0.0,395.0,0.0,81.0,152.0,14.0,69.0,311.0,36.0,9.0,239.0,1734.0,59.0,1.0,40.0,14.0,0.0,0.0,44.0,0.0,342.0,684.0,328.0,59.0,53.0,25.0,0.0,483.0,0.0,38.0,892.0,60.0,0.0,0.0,0.0,0.0,352.0,0.0,72.0,491.0,0.0,20.0,0.0,50.0,131.0,15.0,11.0,187.0,410.0,616.0,474.0,36.0,0.0,0.0,1.0,1.0,0.0,29.0,1936.0,0.0,655.0,1.0,0.0,19.0,0.0,0.0,367.0,347.0,594.0,96.0,0.0,19.0,778.0,61.0,0.0,33.0,75.0,24.0,0.0,35.0,258.0,10.0,119.0,51.0,0.0,0.0,1.0,0.0,35.0,25.0,284.0,0.0,2.0,1433.0,311.0,51.0,0.0,1.0,401.0,0.0,50.0,95.0,24.0,0.0,72.0,0.0,16.0,0.0,2508.0,0.0,76.0,443.0,0.0,0.0,66.0,133.0,330.0,211.0,0.0,0.0,0.0,344.0,20.0,18.0,0.0,51.0,0.0,322.0,0.0,38.0,0.0,77.0,274.0,465.0,9.0,927.0,11.0,130.0,212.0,5.0,37.0,301.0,1.0,0.0,128.0,181.0,1248.0,3.0,2.0,2015-04-12,,2015-15,2.2681848684702093,3.02, +207,207,1.25,71.0,2.0,88.0,0.0,48.0,163.0,300.0,73.0,0.0,263.0,2784.0,0.0,28.0,348.0,417.0,35.0,55.0,138.0,1893.0,0.0,25.0,326.0,4.0,52.0,351.0,77.0,1168.0,349.0,7.0,0.0,16.0,1.0,908.0,346.0,550.0,1563.0,0.0,25.0,0.0,50.0,183.0,0.0,53.0,713.0,954.0,25.0,0.0,492.0,134.0,688.0,0.0,122.0,0.0,135.0,60.0,22.0,37.0,1743.0,0.0,1.0,29.0,1479.0,0.0,1692.0,185.0,0.0,6.0,18.0,1448.0,0.0,83.0,123.0,0.0,64.0,0.0,2381.0,185.0,0.0,5.0,87.0,112.0,27.0,110.0,1.0,224.0,978.0,347.0,30.0,1.0,0.0,10.0,1654.0,0.0,0.0,124.0,89.0,231.0,2312.0,48.0,1694.0,1295.0,113.0,5.0,39.0,3.0,1.0,2.0,0.0,103.0,0.0,0.0,2.0,0.0,3.0,2.0,1.0,660.0,1430.0,1447.0,1.0,14.0,867.0,1014.0,3.0,0.0,42.0,49.0,18.0,0.0,423.0,738.0,989.0,17.0,112.0,179.0,49.0,67.0,155.0,658.0,95.0,2492.0,60.0,5.0,1.0,1164.0,860.0,473.0,29.0,165.0,256.0,0.0,380.0,0.0,108.0,174.0,4.0,92.0,364.0,44.0,8.0,279.0,1721.0,61.0,0.0,40.0,26.0,0.0,0.0,24.0,0.0,370.0,751.0,325.0,67.0,57.0,21.0,0.0,573.0,0.0,50.0,867.0,45.0,1.0,1.0,0.0,0.0,292.0,0.0,55.0,563.0,0.0,26.0,0.0,67.0,129.0,27.0,13.0,221.0,366.0,584.0,473.0,28.0,1.0,0.0,1.0,3.0,0.0,21.0,2012.0,0.0,628.0,1.0,0.0,14.0,0.0,0.0,340.0,430.0,691.0,117.0,0.0,21.0,766.0,69.0,0.0,34.0,103.0,38.0,0.0,39.0,255.0,6.0,146.0,93.0,0.0,0.0,7.0,0.0,46.0,25.0,298.0,0.0,4.0,1522.0,372.0,44.0,0.0,1.0,476.0,0.0,57.0,104.0,18.0,0.0,83.0,0.0,20.0,0.0,2770.0,0.0,63.0,486.0,0.0,2.0,109.0,159.0,350.0,231.0,0.0,1.0,0.0,329.0,28.0,11.0,0.0,47.0,0.0,392.0,1.0,39.0,0.0,114.0,287.0,373.0,10.0,1076.0,9.0,159.0,223.0,11.0,31.0,326.0,0.0,0.0,121.0,212.0,1308.0,5.0,0.0,2015-04-19,,2015-16,2.0562053782912066,3.072, +208,208,0.01,108.0,2.0,76.0,12.0,41.0,157.0,473.0,88.0,0.0,199.0,2649.0,0.0,27.0,305.0,324.0,51.0,39.0,189.0,1714.0,33.0,30.0,326.0,0.0,65.0,344.0,78.0,1019.0,335.0,7.0,0.0,12.0,83.0,966.0,443.0,480.0,1338.0,0.0,18.0,0.0,35.0,205.0,34.0,48.0,798.0,671.0,21.0,0.0,475.0,119.0,429.0,0.0,105.0,18.0,195.0,59.0,24.0,42.0,797.0,14.0,0.0,19.0,1239.0,0.0,1603.0,165.0,0.0,0.0,31.0,1177.0,0.0,128.0,104.0,0.0,44.0,12.0,2087.0,192.0,42.0,31.0,90.0,106.0,27.0,79.0,0.0,208.0,803.0,236.0,28.0,1.0,11.0,7.0,1423.0,115.0,91.0,117.0,89.0,274.0,1792.0,44.0,1570.0,1387.0,29.0,0.0,27.0,0.0,0.0,6.0,0.0,72.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,588.0,1284.0,1417.0,76.0,11.0,1059.0,834.0,4.0,0.0,56.0,38.0,17.0,15.0,385.0,618.0,1156.0,21.0,99.0,172.0,23.0,65.0,145.0,580.0,159.0,1627.0,59.0,4.0,0.0,917.0,684.0,431.0,54.0,152.0,200.0,0.0,490.0,0.0,89.0,141.0,5.0,70.0,380.0,44.0,0.0,237.0,1035.0,49.0,45.0,40.0,21.0,0.0,65.0,87.0,0.0,421.0,642.0,303.0,61.0,89.0,45.0,23.0,516.0,0.0,42.0,887.0,45.0,0.0,0.0,0.0,0.0,327.0,0.0,77.0,530.0,0.0,16.0,0.0,63.0,156.0,14.0,10.0,140.0,326.0,577.0,448.0,26.0,0.0,0.0,27.0,35.0,0.0,27.0,1699.0,19.0,555.0,0.0,0.0,23.0,0.0,155.0,544.0,304.0,657.0,121.0,0.0,14.0,733.0,50.0,0.0,35.0,111.0,35.0,0.0,32.0,221.0,8.0,174.0,77.0,33.0,0.0,0.0,0.0,38.0,32.0,279.0,11.0,0.0,1267.0,305.0,65.0,0.0,0.0,326.0,0.0,60.0,110.0,10.0,0.0,80.0,0.0,20.0,0.0,2390.0,0.0,152.0,381.0,118.0,138.0,116.0,198.0,306.0,185.0,13.0,0.0,0.0,338.0,24.0,20.0,66.0,38.0,0.0,313.0,0.0,36.0,32.0,93.0,307.0,474.0,10.0,1320.0,5.0,158.0,178.0,7.0,18.0,284.0,0.0,0.0,119.0,189.0,1162.0,0.0,0.0,2015-10-25,,2015-43,-0.19580461843859442,0.04000000000000001, +209,209,0.02,106.0,4.0,86.0,10.0,46.0,162.0,398.0,97.0,0.0,203.0,2624.0,0.0,24.0,370.0,340.0,34.0,67.0,144.0,1569.0,33.0,39.0,357.0,0.0,58.0,313.0,105.0,1044.0,362.0,14.0,0.0,18.0,64.0,952.0,440.0,488.0,1418.0,0.0,21.0,0.0,21.0,195.0,36.0,49.0,757.0,577.0,19.0,0.0,491.0,133.0,459.0,0.0,78.0,22.0,179.0,60.0,17.0,44.0,613.0,9.0,0.0,16.0,1236.0,0.0,1784.0,170.0,0.0,0.0,21.0,1329.0,0.0,83.0,111.0,0.0,64.0,13.0,2165.0,229.0,44.0,18.0,81.0,93.0,29.0,88.0,0.0,204.0,826.0,310.0,51.0,0.0,8.0,12.0,1547.0,117.0,124.0,140.0,110.0,300.0,1789.0,66.0,1444.0,1243.0,39.0,0.0,42.0,0.0,0.0,4.0,0.0,80.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,652.0,1480.0,1572.0,75.0,13.0,1008.0,872.0,4.0,0.0,69.0,49.0,26.0,9.0,429.0,661.0,1035.0,19.0,77.0,244.0,25.0,86.0,174.0,551.0,167.0,1729.0,43.0,2.0,0.0,1064.0,919.0,515.0,59.0,157.0,221.0,0.0,429.0,0.0,110.0,214.0,9.0,66.0,518.0,51.0,0.0,263.0,1022.0,46.0,52.0,29.0,22.0,0.0,73.0,96.0,0.0,381.0,672.0,309.0,74.0,88.0,37.0,17.0,547.0,0.0,36.0,885.0,62.0,0.0,0.0,0.0,0.0,324.0,0.0,76.0,507.0,0.0,21.0,0.0,44.0,170.0,23.0,16.0,141.0,368.0,610.0,474.0,28.0,0.0,0.0,32.0,28.0,0.0,10.0,1641.0,15.0,620.0,0.0,0.0,25.0,0.0,231.0,500.0,316.0,626.0,109.0,0.0,16.0,774.0,63.0,0.0,35.0,94.0,36.0,0.0,44.0,230.0,11.0,170.0,39.0,25.0,0.0,0.0,0.0,65.0,33.0,282.0,11.0,0.0,1508.0,256.0,53.0,0.0,0.0,428.0,0.0,48.0,93.0,19.0,0.0,82.0,0.0,11.0,0.0,2632.0,0.0,141.0,476.0,142.0,143.0,142.0,198.0,289.0,290.0,8.0,0.0,0.0,374.0,31.0,21.0,52.0,41.0,0.0,273.0,0.0,40.0,41.0,68.0,263.0,447.0,10.0,1148.0,8.0,154.0,179.0,6.0,14.0,319.0,1.0,0.0,104.0,162.0,1195.0,0.0,0.0,2015-11-01,,2015-44,0.514347298961007,2.442, +210,210,0.03,86.0,6.0,79.0,6.0,38.0,143.0,389.0,116.0,0.0,178.0,2477.0,0.0,32.0,289.0,317.0,64.0,62.0,168.0,1617.0,26.0,31.0,309.0,0.0,68.0,312.0,95.0,1026.0,419.0,6.0,0.0,23.0,75.0,923.0,410.0,445.0,1376.0,0.0,25.0,0.0,34.0,326.0,23.0,65.0,841.0,539.0,22.0,0.0,513.0,139.0,421.0,0.0,85.0,20.0,176.0,84.0,25.0,35.0,673.0,10.0,0.0,22.0,1315.0,0.0,1624.0,175.0,0.0,0.0,26.0,1203.0,0.0,119.0,82.0,0.0,70.0,13.0,2274.0,212.0,34.0,13.0,79.0,101.0,18.0,88.0,0.0,208.0,803.0,274.0,36.0,0.0,11.0,6.0,1503.0,104.0,125.0,117.0,98.0,239.0,1851.0,56.0,1375.0,1256.0,61.0,0.0,44.0,0.0,0.0,3.0,0.0,85.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,597.0,1439.0,1497.0,50.0,12.0,941.0,843.0,5.0,0.0,59.0,50.0,20.0,11.0,402.0,618.0,1282.0,29.0,96.0,249.0,27.0,72.0,176.0,595.0,137.0,1716.0,42.0,7.0,0.0,976.0,704.0,522.0,33.0,155.0,244.0,0.0,398.0,0.0,88.0,200.0,7.0,73.0,420.0,68.0,0.0,260.0,1063.0,58.0,46.0,37.0,22.0,0.0,58.0,66.0,0.0,390.0,663.0,273.0,88.0,87.0,49.0,19.0,602.0,0.0,47.0,813.0,51.0,0.0,0.0,0.0,0.0,337.0,0.0,61.0,539.0,0.0,20.0,0.0,47.0,154.0,15.0,9.0,143.0,328.0,599.0,462.0,43.0,0.0,0.0,30.0,21.0,0.0,20.0,1815.0,14.0,704.0,0.0,0.0,33.0,0.0,204.0,455.0,351.0,653.0,138.0,0.0,7.0,679.0,67.0,0.0,41.0,136.0,38.0,0.0,37.0,194.0,4.0,154.0,49.0,27.0,0.0,0.0,0.0,38.0,35.0,273.0,8.0,0.0,1532.0,254.0,56.0,0.0,0.0,405.0,0.0,59.0,78.0,21.0,0.0,86.0,0.0,14.0,0.0,2565.0,0.0,121.0,415.0,114.0,95.0,130.0,155.0,277.0,255.0,12.0,0.0,0.0,346.0,25.0,21.0,60.0,56.0,0.0,296.0,0.0,51.0,28.0,77.0,293.0,388.0,44.0,1266.0,14.0,157.0,200.0,10.0,15.0,278.0,0.0,0.0,105.0,164.0,1260.0,0.0,0.0,2015-11-08,,2015-45,-0.023020611485179643,0.044000000000000004, +211,211,0.02,87.0,5.0,94.0,3.0,43.0,150.0,397.0,90.0,0.0,176.0,2381.0,0.0,29.0,289.0,387.0,54.0,78.0,142.0,1740.0,22.0,25.0,301.0,0.0,77.0,325.0,87.0,1042.0,455.0,14.0,0.0,14.0,75.0,1048.0,447.0,433.0,1406.0,0.0,19.0,0.0,38.0,252.0,21.0,50.0,830.0,614.0,25.0,0.0,443.0,141.0,433.0,0.0,104.0,17.0,172.0,81.0,17.0,46.0,909.0,21.0,0.0,12.0,1503.0,0.0,1585.0,151.0,0.0,0.0,21.0,1223.0,0.0,94.0,120.0,0.0,62.0,10.0,2197.0,212.0,40.0,17.0,86.0,103.0,27.0,88.0,0.0,259.0,943.0,251.0,28.0,0.0,8.0,10.0,1473.0,101.0,126.0,139.0,98.0,258.0,2040.0,60.0,1336.0,1340.0,40.0,0.0,33.0,0.0,0.0,5.0,0.0,84.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,671.0,1489.0,1595.0,40.0,10.0,945.0,925.0,5.0,0.0,82.0,31.0,26.0,11.0,430.0,670.0,1069.0,31.0,126.0,221.0,30.0,64.0,168.0,640.0,183.0,1769.0,30.0,2.0,0.0,1092.0,674.0,537.0,44.0,146.0,197.0,0.0,492.0,0.0,103.0,152.0,3.0,66.0,471.0,49.0,0.0,268.0,1042.0,275.0,46.0,37.0,19.0,0.0,59.0,63.0,0.0,427.0,705.0,337.0,93.0,119.0,28.0,18.0,580.0,0.0,40.0,902.0,48.0,0.0,0.0,0.0,0.0,348.0,0.0,72.0,505.0,0.0,20.0,0.0,56.0,153.0,16.0,12.0,146.0,305.0,598.0,430.0,43.0,0.0,0.0,34.0,25.0,0.0,17.0,18804.0,13.0,594.0,0.0,0.0,26.0,0.0,150.0,448.0,331.0,608.0,110.0,0.0,18.0,808.0,60.0,0.0,32.0,87.0,33.0,0.0,46.0,209.0,4.0,154.0,45.0,26.0,0.0,0.0,0.0,47.0,27.0,289.0,11.0,0.0,1545.0,244.0,69.0,0.0,0.0,387.0,0.0,62.0,108.0,14.0,0.0,71.0,0.0,22.0,0.0,2549.0,0.0,133.0,456.0,136.0,124.0,159.0,172.0,372.0,220.0,15.0,0.0,0.0,350.0,22.0,25.0,51.0,48.0,0.0,353.0,0.0,40.0,44.0,86.0,298.0,400.0,13.0,1357.0,7.0,148.0,194.0,7.0,16.0,266.0,0.0,0.0,126.0,167.0,1090.0,0.0,0.0,2015-11-15,,2015-46,0.025042999242979036,0.08400000000000002, +212,212,0.05,101.0,0.0,105.0,9.0,45.0,128.0,417.0,88.0,0.0,193.0,2386.0,0.0,23.0,338.0,342.0,62.0,55.0,135.0,2214.0,29.0,35.0,365.0,0.0,70.0,345.0,98.0,1043.0,412.0,8.0,63.0,17.0,93.0,1010.0,526.0,553.0,1379.0,0.0,24.0,0.0,113.0,255.0,33.0,46.0,861.0,602.0,22.0,9.0,522.0,156.0,420.0,0.0,61.0,19.0,168.0,72.0,24.0,42.0,848.0,18.0,0.0,13.0,1466.0,0.0,1557.0,170.0,0.0,0.0,15.0,1247.0,0.0,96.0,95.0,0.0,60.0,16.0,2239.0,241.0,46.0,19.0,57.0,119.0,38.0,95.0,0.0,249.0,831.0,241.0,23.0,1.0,6.0,8.0,1561.0,90.0,130.0,150.0,108.0,279.0,1794.0,80.0,1486.0,1379.0,37.0,0.0,25.0,0.0,0.0,2.0,0.0,85.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,703.0,1385.0,1705.0,45.0,8.0,1111.0,987.0,4.0,0.0,69.0,65.0,19.0,6.0,423.0,651.0,1135.0,16.0,113.0,245.0,34.0,78.0,187.0,621.0,127.0,1919.0,36.0,5.0,0.0,1073.0,662.0,488.0,32.0,177.0,237.0,0.0,489.0,0.0,105.0,154.0,7.0,118.0,532.0,38.0,0.0,299.0,1145.0,69.0,21.0,30.0,11.0,0.0,55.0,97.0,0.0,411.0,713.0,357.0,96.0,97.0,42.0,21.0,573.0,0.0,50.0,1045.0,68.0,0.0,0.0,0.0,0.0,372.0,0.0,78.0,618.0,0.0,24.0,0.0,51.0,158.0,14.0,11.0,189.0,338.0,651.0,475.0,31.0,0.0,0.0,25.0,19.0,0.0,9.0,2012.0,8.0,541.0,0.0,0.0,28.0,0.0,201.0,632.0,361.0,658.0,129.0,0.0,13.0,815.0,73.0,0.0,26.0,118.0,27.0,0.0,39.0,211.0,6.0,144.0,69.0,18.0,0.0,0.0,0.0,43.0,28.0,296.0,13.0,0.0,1419.0,228.0,53.0,0.0,0.0,368.0,0.0,45.0,93.0,14.0,0.0,80.0,0.0,21.0,0.0,2583.0,0.0,163.0,427.0,110.0,132.0,125.0,176.0,336.0,217.0,9.0,0.0,0.0,368.0,23.0,20.0,70.0,52.0,0.0,332.0,0.0,42.0,42.0,125.0,302.0,440.0,19.0,1252.0,9.0,170.0,208.0,12.0,10.0,264.0,0.0,0.0,152.0,185.0,1197.0,0.0,0.0,2015-11-22,,2015-47,-0.3601496144286438,1.612, +213,213,0.08,84.0,2.0,87.0,8.0,57.0,118.0,348.0,113.0,0.0,193.0,2302.0,0.0,25.0,345.0,337.0,31.0,49.0,136.0,1395.0,32.0,34.0,336.0,0.0,57.0,350.0,102.0,1039.0,377.0,5.0,26.0,18.0,85.0,1078.0,513.0,505.0,1448.0,0.0,19.0,0.0,47.0,212.0,35.0,45.0,880.0,716.0,28.0,3.0,497.0,157.0,420.0,0.0,87.0,20.0,170.0,78.0,23.0,49.0,829.0,19.0,0.0,25.0,1405.0,0.0,1545.0,133.0,0.0,0.0,14.0,1206.0,0.0,86.0,118.0,0.0,62.0,12.0,2226.0,255.0,40.0,10.0,73.0,106.0,34.0,57.0,0.0,577.0,793.0,238.0,30.0,0.0,8.0,7.0,1505.0,72.0,124.0,135.0,88.0,249.0,2005.0,62.0,1460.0,1473.0,35.0,0.0,29.0,0.0,0.0,4.0,0.0,88.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,670.0,1411.0,1771.0,48.0,17.0,1065.0,939.0,4.0,0.0,86.0,36.0,13.0,9.0,403.0,630.0,1056.0,27.0,88.0,191.0,27.0,81.0,195.0,630.0,171.0,1705.0,38.0,5.0,0.0,1083.0,612.0,485.0,50.0,189.0,236.0,0.0,430.0,0.0,106.0,176.0,4.0,88.0,417.0,54.0,0.0,251.0,999.0,81.0,27.0,28.0,12.0,0.0,50.0,63.0,0.0,383.0,683.0,310.0,93.0,79.0,32.0,14.0,618.0,0.0,37.0,904.0,56.0,0.0,0.0,0.0,0.0,343.0,0.0,62.0,803.0,0.0,20.0,0.0,62.0,160.0,14.0,10.0,176.0,332.0,699.0,540.0,24.0,0.0,0.0,31.0,24.0,0.0,19.0,1798.0,12.0,598.0,0.0,0.0,19.0,0.0,165.0,465.0,348.0,643.0,125.0,0.0,14.0,912.0,71.0,0.0,30.0,107.0,35.0,0.0,44.0,219.0,4.0,156.0,50.0,35.0,0.0,0.0,0.0,25.0,32.0,265.0,12.0,0.0,1460.0,246.0,50.0,89.0,0.0,362.0,0.0,47.0,77.0,10.0,0.0,78.0,0.0,19.0,0.0,2629.0,0.0,147.0,448.0,111.0,124.0,142.0,201.0,355.0,249.0,8.0,0.0,0.0,316.0,26.0,12.0,70.0,54.0,0.0,406.0,0.0,44.0,32.0,79.0,268.0,429.0,12.0,982.0,3.0,128.0,182.0,3.0,22.0,286.0,0.0,0.0,124.0,155.0,1106.0,0.0,0.0,2015-11-29,,2015-48,-0.10011181168107397,0.9600000000000002, +214,214,0.07,72.0,6.0,112.0,7.0,57.0,133.0,395.0,87.0,0.0,276.0,2289.0,0.0,18.0,311.0,421.0,28.0,38.0,130.0,1512.0,38.0,39.0,353.0,0.0,75.0,348.0,85.0,1028.0,364.0,9.0,25.0,11.0,78.0,956.0,464.0,499.0,1369.0,0.0,22.0,0.0,38.0,322.0,45.0,62.0,780.0,717.0,22.0,6.0,478.0,180.0,431.0,0.0,79.0,9.0,169.0,90.0,28.0,45.0,758.0,25.0,0.0,22.0,1427.0,0.0,1613.0,139.0,0.0,0.0,36.0,1301.0,0.0,123.0,96.0,0.0,67.0,13.0,6126.0,240.0,49.0,24.0,39.0,106.0,32.0,78.0,0.0,319.0,830.0,247.0,35.0,0.0,7.0,6.0,1394.0,91.0,133.0,146.0,117.0,245.0,2288.0,74.0,1469.0,1390.0,30.0,0.0,38.0,0.0,0.0,4.0,0.0,76.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,619.0,1487.0,1693.0,37.0,7.0,981.0,952.0,2.0,0.0,57.0,39.0,18.0,10.0,454.0,607.0,1089.0,20.0,85.0,243.0,26.0,82.0,216.0,565.0,183.0,2065.0,32.0,4.0,0.0,1005.0,679.0,468.0,44.0,156.0,230.0,0.0,422.0,0.0,114.0,180.0,6.0,71.0,387.0,32.0,0.0,465.0,1026.0,61.0,39.0,27.0,18.0,0.0,60.0,64.0,69.0,357.0,689.0,394.0,91.0,109.0,26.0,26.0,589.0,0.0,27.0,849.0,55.0,0.0,25.0,0.0,0.0,313.0,0.0,77.0,553.0,0.0,21.0,0.0,39.0,136.0,17.0,15.0,161.0,340.0,678.0,488.0,28.0,0.0,0.0,32.0,26.0,0.0,13.0,1721.0,6.0,509.0,0.0,0.0,25.0,0.0,175.0,434.0,327.0,630.0,115.0,0.0,16.0,909.0,59.0,0.0,35.0,118.0,44.0,0.0,48.0,209.0,4.0,148.0,49.0,30.0,0.0,0.0,0.0,47.0,37.0,253.0,23.0,0.0,1536.0,240.0,52.0,39.0,0.0,345.0,0.0,61.0,126.0,23.0,0.0,75.0,0.0,14.0,0.0,2614.0,0.0,181.0,395.0,94.0,155.0,147.0,162.0,406.0,280.0,13.0,0.0,0.0,307.0,22.0,19.0,52.0,49.0,0.0,357.0,0.0,46.0,46.0,115.0,248.0,386.0,11.0,1065.0,11.0,172.0,179.0,6.0,29.0,290.0,1.0,0.0,126.0,175.0,1182.0,0.0,0.0,2015-12-06,,2015-49,0.3914421221621325,0.09400000000000003, +215,215,0.15,70.0,3.0,113.0,10.0,45.0,160.0,396.0,101.0,0.0,234.0,2366.0,0.0,19.0,344.0,369.0,34.0,56.0,130.0,1761.0,21.0,30.0,378.0,0.0,124.0,314.0,62.0,987.0,343.0,5.0,37.0,12.0,73.0,986.0,531.0,494.0,1325.0,0.0,21.0,0.0,31.0,198.0,34.0,61.0,858.0,641.0,15.0,4.0,451.0,177.0,449.0,0.0,108.0,23.0,194.0,78.0,37.0,51.0,799.0,23.0,0.0,16.0,1577.0,0.0,1682.0,140.0,0.0,0.0,24.0,1228.0,0.0,91.0,88.0,1.0,66.0,7.0,2827.0,251.0,53.0,19.0,58.0,133.0,30.0,86.0,0.0,487.0,821.0,266.0,41.0,0.0,5.0,6.0,1530.0,93.0,170.0,138.0,115.0,192.0,2305.0,88.0,1433.0,1361.0,44.0,0.0,21.0,0.0,0.0,2.0,0.0,71.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,644.0,1476.0,1793.0,32.0,10.0,998.0,925.0,2.0,0.0,54.0,58.0,15.0,10.0,399.0,610.0,1036.0,18.0,105.0,202.0,27.0,87.0,202.0,618.0,142.0,2047.0,36.0,6.0,0.0,915.0,650.0,571.0,32.0,146.0,195.0,0.0,467.0,0.0,346.0,203.0,4.0,65.0,429.0,32.0,0.0,343.0,974.0,79.0,44.0,25.0,16.0,0.0,84.0,65.0,51.0,412.0,724.0,401.0,67.0,77.0,55.0,16.0,552.0,0.0,28.0,868.0,56.0,0.0,64.0,0.0,0.0,346.0,0.0,85.0,508.0,0.0,29.0,0.0,57.0,154.0,15.0,5.0,164.0,347.0,677.0,522.0,29.0,0.0,0.0,38.0,17.0,0.0,19.0,1754.0,8.0,611.0,0.0,0.0,27.0,0.0,179.0,1171.0,386.0,694.0,122.0,0.0,13.0,866.0,71.0,0.0,55.0,105.0,31.0,0.0,29.0,247.0,5.0,178.0,56.0,36.0,0.0,0.0,0.0,38.0,24.0,216.0,7.0,0.0,1527.0,246.0,45.0,27.0,0.0,329.0,0.0,60.0,111.0,19.0,0.0,75.0,0.0,17.0,0.0,2670.0,0.0,144.0,507.0,116.0,154.0,158.0,164.0,359.0,352.0,4.0,0.0,0.0,333.0,25.0,9.0,62.0,46.0,0.0,349.0,0.0,55.0,39.0,77.0,263.0,408.0,16.0,1213.0,8.0,311.0,159.0,8.0,19.0,336.0,0.0,0.0,150.0,170.0,1174.0,0.0,0.0,2015-12-13,,2015-50,0.20317906494004312,0.124, +216,216,0.2,91.0,3.0,83.0,10.0,51.0,164.0,374.0,89.0,0.0,225.0,2410.0,0.0,33.0,331.0,377.0,27.0,52.0,153.0,5127.0,43.0,37.0,373.0,0.0,64.0,335.0,67.0,1059.0,381.0,8.0,39.0,14.0,79.0,1031.0,405.0,487.0,1336.0,0.0,14.0,0.0,40.0,211.0,40.0,44.0,838.0,670.0,30.0,5.0,462.0,167.0,444.0,0.0,118.0,19.0,175.0,68.0,28.0,40.0,799.0,21.0,0.0,25.0,1509.0,0.0,1627.0,153.0,0.0,0.0,40.0,1197.0,0.0,146.0,83.0,0.0,78.0,16.0,2285.0,287.0,57.0,14.0,57.0,103.0,26.0,112.0,0.0,297.0,680.0,235.0,23.0,0.0,6.0,8.0,1484.0,103.0,112.0,156.0,81.0,236.0,2160.0,74.0,1514.0,1409.0,39.0,0.0,34.0,0.0,0.0,4.0,0.0,81.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,591.0,1478.0,1675.0,40.0,8.0,1070.0,921.0,4.0,0.0,69.0,56.0,21.0,13.0,448.0,571.0,1012.0,28.0,97.0,206.0,22.0,85.0,179.0,604.0,167.0,2038.0,44.0,4.0,0.0,969.0,705.0,494.0,35.0,147.0,194.0,0.0,388.0,0.0,101.0,149.0,7.0,76.0,439.0,33.0,0.0,278.0,997.0,74.0,40.0,28.0,24.0,0.0,66.0,65.0,57.0,390.0,687.0,376.0,105.0,96.0,30.0,15.0,547.0,0.0,28.0,823.0,60.0,0.0,70.0,0.0,0.0,344.0,0.0,69.0,477.0,0.0,27.0,0.0,60.0,154.0,8.0,8.0,169.0,409.0,665.0,494.0,38.0,0.0,0.0,31.0,21.0,0.0,26.0,1798.0,6.0,622.0,0.0,0.0,22.0,0.0,187.0,406.0,294.0,630.0,129.0,0.0,7.0,823.0,58.0,0.0,43.0,89.0,34.0,0.0,45.0,207.0,2.0,162.0,82.0,27.0,0.0,0.0,0.0,44.0,22.0,297.0,9.0,0.0,1377.0,219.0,55.0,23.0,0.0,343.0,0.0,45.0,85.0,23.0,0.0,83.0,0.0,19.0,0.0,2615.0,0.0,180.0,417.0,755.0,146.0,145.0,166.0,330.0,331.0,24.0,0.0,0.0,324.0,12.0,11.0,64.0,65.0,0.0,371.0,0.0,54.0,36.0,102.0,273.0,351.0,14.0,1126.0,7.0,187.0,200.0,12.0,16.0,342.0,0.0,0.0,117.0,144.0,1141.0,0.0,0.0,2015-12-20,,2015-51,0.1758555610963839,0.2, +217,217,0.3,78.0,6.0,108.0,14.0,68.0,142.0,359.0,80.0,0.0,225.0,2563.0,0.0,29.0,287.0,358.0,32.0,42.0,140.0,1658.0,39.0,33.0,364.0,0.0,40.0,311.0,56.0,926.0,379.0,3.0,23.0,16.0,77.0,815.0,375.0,468.0,1298.0,0.0,17.0,0.0,42.0,209.0,27.0,59.0,759.0,846.0,12.0,5.0,434.0,158.0,401.0,0.0,120.0,17.0,140.0,80.0,21.0,40.0,645.0,12.0,0.0,14.0,1326.0,0.0,1553.0,245.0,0.0,0.0,12.0,1182.0,0.0,187.0,98.0,0.0,51.0,12.0,2182.0,208.0,45.0,18.0,69.0,97.0,35.0,84.0,0.0,230.0,756.0,238.0,61.0,0.0,3.0,9.0,1407.0,83.0,145.0,124.0,93.0,230.0,1996.0,57.0,1330.0,1353.0,42.0,0.0,41.0,0.0,0.0,2.0,0.0,76.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,514.0,1300.0,1399.0,28.0,12.0,976.0,884.0,6.0,0.0,60.0,36.0,23.0,14.0,366.0,619.0,925.0,24.0,109.0,224.0,16.0,77.0,171.0,536.0,123.0,1915.0,33.0,1.0,0.0,985.0,630.0,506.0,44.0,127.0,193.0,0.0,362.0,0.0,78.0,198.0,5.0,70.0,347.0,42.0,0.0,292.0,978.0,52.0,29.0,25.0,20.0,0.0,78.0,54.0,52.0,362.0,709.0,338.0,66.0,96.0,37.0,12.0,606.0,0.0,32.0,775.0,47.0,0.0,82.0,0.0,0.0,317.0,0.0,61.0,420.0,0.0,20.0,0.0,52.0,174.0,15.0,5.0,129.0,334.0,617.0,455.0,27.0,0.0,0.0,34.0,28.0,0.0,27.0,1690.0,9.0,565.0,0.0,0.0,21.0,0.0,178.0,373.0,352.0,639.0,96.0,0.0,16.0,842.0,60.0,0.0,34.0,71.0,43.0,0.0,40.0,224.0,4.0,147.0,70.0,28.0,0.0,0.0,0.0,50.0,15.0,293.0,11.0,0.0,1216.0,201.0,30.0,26.0,0.0,403.0,0.0,57.0,92.0,24.0,0.0,80.0,0.0,10.0,0.0,2440.0,0.0,151.0,433.0,124.0,109.0,123.0,141.0,317.0,272.0,21.0,0.0,0.0,307.0,34.0,21.0,63.0,44.0,0.0,366.0,0.0,47.0,45.0,82.0,237.0,341.0,15.0,1061.0,16.0,158.0,205.0,6.0,10.0,321.0,0.0,0.0,103.0,158.0,1033.0,0.0,0.0,2015-12-27,,2015-52,0.5812316315896426,0.27, +218,218,0.16,71.0,4.0,39.0,8.0,34.0,86.0,214.0,51.0,0.0,113.0,2025.0,0.0,31.0,185.0,328.0,47.0,37.0,92.0,1049.0,13.0,27.0,256.0,0.0,41.0,237.0,47.0,633.0,194.0,4.0,24.0,10.0,42.0,343.0,166.0,391.0,864.0,0.0,24.0,0.0,18.0,168.0,24.0,30.0,432.0,494.0,13.0,7.0,229.0,122.0,288.0,0.0,101.0,14.0,107.0,56.0,19.0,25.0,472.0,11.0,0.0,9.0,841.0,0.0,1149.0,116.0,0.0,0.0,18.0,793.0,0.0,104.0,84.0,0.0,64.0,6.0,1767.0,156.0,24.0,20.0,70.0,56.0,24.0,63.0,0.0,110.0,385.0,169.0,41.0,0.0,7.0,8.0,1072.0,60.0,61.0,99.0,75.0,127.0,1553.0,23.0,1051.0,758.0,29.0,0.0,20.0,0.0,0.0,7.0,0.0,50.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,325.0,780.0,866.0,15.0,6.0,511.0,605.0,5.0,0.0,38.0,40.0,18.0,7.0,298.0,501.0,672.0,16.0,70.0,141.0,14.0,89.0,109.0,425.0,69.0,1417.0,32.0,2.0,0.0,676.0,553.0,361.0,27.0,82.0,146.0,0.0,162.0,0.0,78.0,76.0,7.0,58.0,252.0,28.0,0.0,174.0,566.0,50.0,22.0,38.0,13.0,0.0,43.0,47.0,48.0,267.0,434.0,164.0,56.0,68.0,19.0,18.0,333.0,0.0,35.0,552.0,47.0,0.0,56.0,0.0,0.0,213.0,0.0,36.0,316.0,0.0,17.0,0.0,28.0,99.0,14.0,22.0,122.0,215.0,372.0,338.0,21.0,0.0,0.0,31.0,18.0,0.0,11.0,1095.0,7.0,413.0,0.0,0.0,22.0,0.0,198.0,219.0,215.0,380.0,67.0,0.0,19.0,499.0,32.0,0.0,14.0,63.0,23.0,0.0,45.0,154.0,3.0,106.0,30.0,21.0,0.0,0.0,0.0,32.0,15.0,261.0,9.0,0.0,756.0,147.0,30.0,11.0,0.0,268.0,0.0,361.0,57.0,16.0,0.0,56.0,0.0,9.0,0.0,1578.0,0.0,104.0,255.0,72.0,95.0,75.0,121.0,202.0,165.0,12.0,0.0,0.0,225.0,28.0,25.0,31.0,18.0,0.0,238.0,0.0,37.0,22.0,66.0,225.0,312.0,10.0,1013.0,8.0,110.0,152.0,7.0,19.0,242.0,0.0,0.0,73.0,113.0,727.0,0.0,0.0,2016-01-03,,2015-53,-0.002927618694123297,0.16200000000000003, +219,219,0.29,57.0,2.0,106.0,8.0,67.0,196.0,279.6666666666667,85.0,0.0,282.0,3314.0,0.0,27.0,379.0,351.0,27.0,59.0,130.0,1955.0,41.0,42.0,338.0,0.0,92.0,343.0,81.0,1113.0,368.0,9.0,18.0,19.0,74.0,814.0,348.0,434.0,1510.0,0.0,25.0,0.0,35.0,205.0,45.0,67.0,822.0,873.0,23.0,7.0,496.0,172.0,441.0,0.0,113.0,17.0,201.0,119.0,34.0,45.0,730.0,14.0,0.0,23.0,1508.0,0.0,2256.0,208.0,0.0,0.0,22.0,1467.0,0.0,155.0,115.0,0.0,80.0,16.0,2394.0,287.0,72.0,32.0,76.0,120.0,35.0,112.0,0.0,243.0,845.0,269.0,36.0,0.0,5.0,9.0,1545.0,104.0,125.0,116.0,108.0,219.0,2447.0,66.0,1481.0,1401.0,71.0,0.0,38.0,0.0,0.0,4.0,0.0,68.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,690.0,1500.0,1677.0,30.0,18.0,960.0,1012.0,3.0,0.0,74.0,58.0,19.0,8.0,427.0,814.0,1146.0,20.0,113.0,210.0,17.0,66.0,211.0,660.0,141.0,2076.0,25.0,10.0,0.0,1063.0,805.0,633.0,56.0,157.0,244.0,0.0,333.0,0.0,92.0,199.0,7.0,65.0,510.0,40.0,0.0,259.0,960.0,86.0,46.0,41.0,20.0,0.0,67.0,72.0,64.0,410.0,721.0,316.0,94.0,106.0,39.0,17.0,583.0,1.0,56.0,962.0,46.0,0.0,73.0,20.0,0.0,360.0,0.0,69.0,489.0,0.0,31.0,0.0,68.0,153.0,17.0,14.0,171.0,340.0,638.0,361.83333333333326,38.0,0.0,0.0,35.0,23.0,0.0,19.0,1943.0,6.0,714.0,0.0,0.0,25.0,0.0,207.0,400.0,380.0,675.0,118.0,0.0,13.0,843.0,42.0,0.0,29.0,108.0,49.0,0.0,54.0,180.8,5.0,146.0,89.0,28.0,0.0,0.0,0.0,57.0,20.0,357.0,8.0,0.0,1541.0,236.0,50.0,16.0,0.0,409.0,0.0,237.0,85.0,24.0,0.0,82.0,0.0,17.0,0.0,2723.0,0.0,197.0,422.0,130.0,180.0,136.0,211.0,459.0,240.0,10.0,0.0,0.0,386.0,21.0,19.0,64.0,70.0,0.0,393.0,0.0,61.0,65.0,104.0,290.0,403.0,9.0,1217.0,13.0,135.0,186.0,11.0,24.0,300.0,1.0,0.0,107.0,186.0,1215.0,0.0,0.0,2016-01-10,,2016-1,0.45632737430639025,3.761999999999999, +220,220,0.54,100.0,3.0,127.0,10.0,84.0,192.0,345.33333333333337,126.0,0.0,254.0,3201.0,0.0,27.0,373.0,368.0,47.0,59.0,143.0,2196.0,31.0,50.0,328.0,0.0,75.0,422.0,114.0,1288.0,426.0,8.0,27.0,16.0,70.0,1202.0,472.0,528.0,1684.0,0.0,26.0,0.0,52.0,248.0,40.0,76.0,926.0,854.0,25.0,11.0,583.0,189.0,520.0,0.0,146.0,24.0,219.0,98.0,31.0,123.0,2621.0,54.0,0.0,27.0,1623.0,0.0,1910.0,334.0,0.0,0.0,22.0,1444.0,0.0,111.0,113.0,0.0,85.0,19.0,2530.0,298.0,70.0,208.0,64.0,114.0,28.0,118.0,0.0,264.0,962.0,352.0,64.0,0.0,5.0,6.0,1678.0,158.0,179.0,121.0,102.0,253.0,2259.0,56.0,1476.0,1551.0,34.0,0.0,32.0,0.0,0.0,2.0,0.0,85.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,724.0,1492.0,1885.0,30.0,5.0,1184.0,1023.0,7.0,0.0,80.0,53.0,26.0,15.0,446.0,742.0,1224.0,26.0,101.0,260.0,23.0,80.0,229.0,697.0,212.0,2195.0,43.0,3.0,0.0,1101.0,991.0,563.0,57.0,184.0,238.0,0.0,482.0,0.0,117.0,178.0,4.0,78.0,717.0,49.0,0.0,262.0,1169.0,97.0,59.0,33.0,36.0,0.0,100.0,55.0,70.0,464.0,863.0,389.0,104.0,83.0,52.0,15.0,736.0,0.0,36.0,931.0,48.0,0.0,102.0,26.0,0.0,411.0,0.0,70.0,550.0,0.0,22.0,0.0,74.0,186.0,20.0,8.0,208.0,390.0,820.0,385.66666666666674,26.0,0.0,0.0,39.0,40.0,0.0,18.0,2134.0,17.0,721.0,0.0,0.0,32.0,0.0,204.0,501.0,413.0,690.0,126.0,0.0,20.0,1027.0,62.0,0.0,29.0,106.0,40.0,0.0,61.0,207.6,2.0,170.0,70.0,31.0,0.0,0.0,0.0,77.0,18.0,322.0,7.0,0.0,1602.0,294.0,60.0,20.0,0.0,490.0,0.0,129.0,92.0,39.0,0.0,85.0,0.0,22.0,0.0,3000.0,0.0,212.0,520.0,151.0,197.0,181.0,227.0,393.0,293.0,8.0,0.0,0.0,427.0,17.0,17.0,75.0,51.0,0.0,430.0,0.0,61.0,54.0,88.0,339.0,433.0,20.0,1478.0,3.0,184.0,207.0,3.0,24.0,300.0,0.0,0.0,158.0,270.0,1337.0,0.0,0.0,2016-01-17,,2016-2,0.7661497746564532,5.176000000000001, +221,221,1.1,99.0,2.0,123.0,18.0,60.0,250.0,411.0,112.0,0.0,339.0,3409.0,0.0,32.0,390.0,395.0,41.0,54.0,159.0,2023.0,39.0,49.0,477.0,0.0,72.0,383.0,145.0,1367.0,406.0,6.0,62.0,20.0,88.0,1116.0,526.0,636.0,1521.0,0.0,44.0,0.0,38.0,375.0,54.0,69.0,946.0,892.0,70.0,4.0,621.0,191.0,452.0,0.0,126.0,23.0,205.0,98.0,33.0,60.0,811.0,18.0,0.0,26.0,1563.0,0.0,2037.0,159.0,0.0,0.0,21.0,1434.0,0.0,115.0,99.0,0.0,60.0,24.0,2346.0,305.0,64.0,42.0,70.0,130.0,33.0,91.0,0.0,255.0,1024.0,350.0,27.0,0.0,16.0,14.0,1675.0,120.0,132.0,158.0,116.0,286.0,2248.0,99.0,1526.0,1557.0,46.0,0.0,48.0,0.0,0.0,0.0,0.0,77.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,761.0,1501.0,1833.0,43.0,14.0,1263.0,1098.0,4.0,0.0,108.0,48.0,22.0,19.0,462.0,785.0,1153.0,21.0,126.0,233.0,36.0,92.0,251.0,677.0,232.0,2650.0,51.0,5.0,0.0,1083.0,871.0,464.0,47.0,172.0,285.0,0.0,486.0,0.0,112.0,185.0,12.0,49.0,543.0,41.0,0.0,288.0,1254.0,93.0,44.0,53.0,35.0,0.0,86.0,68.0,66.0,452.0,793.0,474.0,110.0,122.0,56.0,31.0,689.0,1.0,50.0,1057.0,57.0,0.0,96.0,15.0,0.0,399.0,0.0,76.0,574.0,0.0,25.0,0.0,82.0,178.0,21.0,17.0,195.0,365.0,812.0,409.5,38.0,0.0,0.0,58.0,17.0,0.0,27.0,1975.0,15.0,684.0,0.0,0.0,30.0,0.0,237.0,492.0,377.0,734.0,146.0,0.0,23.0,1012.0,85.0,0.0,34.0,91.0,31.0,0.0,74.0,234.4,5.0,222.0,89.0,44.0,0.0,0.0,0.0,49.0,17.0,339.0,13.0,0.0,1657.0,275.0,44.0,29.0,0.0,389.0,0.0,162.0,80.0,24.0,0.0,86.0,0.0,27.0,0.0,3002.0,0.0,210.0,648.0,139.0,187.0,185.0,270.0,378.0,310.0,16.0,0.0,0.0,400.0,41.0,14.0,90.0,66.0,0.0,390.0,0.0,66.0,43.0,70.0,332.0,407.0,14.0,1318.0,10.0,188.0,226.0,11.0,18.0,319.0,0.0,0.0,155.0,204.0,1441.0,0.0,0.0,2016-01-24,,2016-3,1.4885577894092883,3.626, +222,222,2.28,100.0,3.0,120.0,9.0,61.0,287.0,397.0,135.0,0.0,299.0,3369.0,0.0,21.0,359.0,398.0,46.0,67.0,159.0,2086.0,34.0,46.0,415.0,0.0,126.0,376.0,86.0,1263.0,401.0,5.0,54.0,21.0,82.0,1286.0,553.0,534.0,1668.0,0.0,57.0,0.0,35.0,204.0,48.0,69.0,948.0,897.0,12.0,6.0,576.0,217.0,540.0,0.0,107.0,31.0,240.0,127.0,45.0,115.0,757.0,17.0,0.0,35.0,1493.0,0.0,2139.0,146.0,0.0,0.0,25.0,1401.0,0.0,297.0,128.0,0.0,66.0,15.0,2290.0,315.0,79.0,34.0,85.0,141.0,28.0,114.0,0.0,245.0,1067.0,329.0,37.0,0.0,7.0,12.0,1680.0,118.0,158.0,161.0,107.0,329.0,2185.0,84.0,1558.0,1579.0,52.0,0.0,33.0,0.0,0.0,4.0,0.0,92.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,716.0,1488.0,1703.0,45.0,11.0,1260.0,1049.0,2.0,0.0,109.0,60.0,25.0,14.0,451.0,741.0,1257.0,38.0,114.0,250.0,24.0,81.0,228.0,744.0,284.0,4461.0,56.0,6.0,0.0,1272.0,724.0,487.0,54.0,167.0,278.0,0.0,535.0,0.0,99.0,195.0,9.0,91.0,559.0,58.0,0.0,279.0,1199.0,88.0,43.0,76.0,25.0,0.0,67.0,77.0,92.0,404.0,850.0,396.0,125.0,127.0,57.0,27.0,766.0,0.0,46.0,1104.0,70.0,0.0,106.0,37.0,0.0,436.0,0.0,79.0,546.0,0.0,30.0,0.0,80.0,174.0,23.0,11.0,169.0,413.0,718.0,433.33333333333326,43.0,0.0,0.0,52.0,34.0,0.0,28.0,1946.0,11.0,732.0,0.0,0.0,28.0,0.0,206.0,538.0,368.0,658.0,113.0,0.0,25.0,1035.0,67.0,0.0,45.0,106.0,31.0,0.0,55.0,261.2,3.0,190.0,61.0,43.0,0.0,0.0,0.0,48.0,15.0,347.0,14.0,0.0,1704.0,297.0,60.0,14.0,0.0,411.0,0.0,171.0,98.0,21.0,0.0,87.0,0.0,28.0,0.0,2902.0,0.0,490.0,582.0,149.0,178.0,246.0,260.0,392.0,280.0,12.0,0.0,0.0,391.0,39.0,30.0,77.0,40.0,0.0,378.0,0.0,47.0,53.0,77.0,284.0,426.0,19.0,1464.0,6.0,161.0,229.0,9.0,22.0,324.0,0.0,0.0,122.0,208.0,1266.0,0.0,0.0,2016-01-31,,2016-4,2.3019568338241765,1.8299999999999998, +223,223,2.94,90.0,3.0,107.0,12.0,58.0,240.0,417.0,132.0,0.0,287.0,3248.0,0.0,32.0,449.0,429.0,32.0,41.0,141.0,1783.0,24.0,38.0,411.0,0.0,88.0,386.0,98.0,1241.0,405.0,6.0,41.0,22.0,96.0,1156.0,513.0,480.0,1503.0,0.0,62.0,0.0,43.0,242.0,49.0,70.0,897.0,961.0,22.0,12.0,648.0,139.0,504.0,0.0,180.0,28.0,217.0,100.0,22.0,77.0,769.0,25.0,0.0,42.0,1635.0,0.0,2292.0,134.0,0.0,0.0,25.0,1449.0,0.0,228.0,143.0,0.0,84.0,16.0,2190.0,290.0,74.0,29.0,76.0,98.0,38.0,94.0,0.0,275.0,1031.0,261.0,35.0,0.0,7.0,6.0,1516.0,110.0,136.0,152.0,105.0,244.0,2089.0,126.0,1493.0,1551.0,40.0,0.0,34.0,0.0,0.0,3.0,0.0,92.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,684.0,1601.0,1606.0,59.0,9.0,1156.0,1004.0,5.0,0.0,107.0,52.0,19.0,29.0,429.0,731.0,1193.0,42.0,137.0,220.0,34.0,84.0,192.0,848.0,324.0,4973.0,29.0,2.0,0.0,1274.0,827.0,466.0,47.0,161.0,330.0,0.0,476.0,0.0,95.0,192.0,8.0,79.0,646.0,49.0,0.0,305.0,1065.0,82.0,37.0,72.0,20.0,0.0,56.0,76.0,72.0,416.0,793.0,418.0,95.0,130.0,38.0,34.0,679.0,0.0,41.0,1050.0,79.0,0.0,116.0,47.0,0.0,433.0,0.0,72.0,581.0,0.0,35.0,0.0,72.0,162.0,17.0,10.0,216.0,399.0,779.0,457.16666666666663,33.0,49.0,0.0,39.0,18.0,0.0,26.0,1967.0,21.0,714.0,0.0,0.0,24.0,0.0,226.0,434.0,366.0,739.0,130.0,0.0,10.0,1046.0,120.0,0.0,37.0,108.0,46.0,0.0,72.0,288.0,3.0,170.0,72.0,36.0,0.0,0.0,0.0,62.0,25.0,373.0,12.0,0.0,1476.0,327.0,57.0,19.0,0.0,389.0,0.0,154.0,99.0,25.0,0.0,72.0,0.0,16.0,0.0,2955.0,0.0,289.0,543.0,119.0,163.0,176.0,260.0,346.0,290.0,5.0,0.0,0.0,349.0,20.0,24.0,73.0,53.0,0.0,414.0,0.0,75.0,51.0,55.0,264.0,416.0,29.0,1441.0,14.0,152.0,235.0,9.0,23.0,311.0,0.0,0.0,155.0,206.0,1366.0,0.0,0.0,2016-02-07,,2016-5,3.121049347651569,5.098, +224,224,2.91,81.0,3.0,132.0,13.0,80.0,192.0,385.0,125.0,0.0,280.0,3071.0,0.0,19.0,415.0,408.0,31.0,77.0,175.0,1782.0,34.0,54.0,457.0,0.0,102.0,372.0,95.0,1224.0,406.0,2.0,31.0,19.0,91.0,1323.0,482.0,435.0,1531.0,0.0,54.0,0.0,57.0,235.0,44.0,53.0,877.0,925.0,20.0,4.0,563.0,159.0,596.0,0.0,103.0,22.0,200.0,63.0,26.0,66.0,662.0,23.0,0.0,23.0,1597.0,0.0,3441.0,140.0,0.0,0.0,28.0,1252.0,0.0,141.0,121.0,0.0,69.0,18.0,2089.0,278.0,72.0,18.0,82.0,103.0,41.0,102.0,0.0,206.0,935.0,348.0,31.0,0.0,8.0,13.0,1551.0,93.0,149.0,148.0,112.0,229.0,2101.0,95.0,1479.0,1427.0,50.0,0.0,45.0,0.0,0.0,1.0,0.0,153.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,714.0,1496.0,1570.0,41.0,13.0,1212.0,1051.0,5.0,0.0,95.0,52.0,20.0,12.0,451.0,752.0,1196.0,22.0,131.0,261.0,24.0,81.0,221.0,699.0,232.0,2666.0,25.0,0.0,0.0,1142.0,792.0,500.0,48.0,170.0,218.0,0.0,517.0,0.0,136.0,208.0,11.0,71.0,439.0,42.0,0.0,320.0,1027.0,88.0,47.0,49.0,35.0,0.0,61.0,74.0,57.0,454.0,804.0,400.0,88.0,99.0,31.0,18.0,751.0,0.0,48.0,936.0,54.0,0.0,106.0,15.0,0.0,385.0,0.0,78.0,593.0,0.0,31.0,0.0,68.0,145.0,14.0,23.0,168.0,374.0,755.0,481.0,40.0,7.0,0.0,49.0,33.0,0.0,30.0,1970.0,13.0,740.0,0.0,0.0,30.0,0.0,226.0,369.0,303.0,668.0,127.0,0.0,23.0,901.0,197.0,0.0,48.0,108.0,37.0,0.0,57.0,290.0,9.0,149.0,59.0,25.0,0.0,0.0,0.0,56.0,32.0,382.0,14.0,0.0,1542.0,296.0,70.0,22.0,0.0,385.0,0.0,166.0,82.0,22.0,0.0,100.0,0.0,17.0,0.0,2742.0,0.0,262.0,466.0,123.0,158.0,182.0,217.0,396.0,254.0,8.0,0.0,0.0,853.0,21.0,12.0,67.0,60.0,0.0,416.0,0.0,52.0,45.0,67.0,279.0,452.0,25.0,1417.0,1.0,181.0,214.0,4.0,20.0,331.0,0.0,0.0,136.0,231.0,1373.0,0.0,0.0,2016-02-14,,2016-6,2.692516741231671,5.368, +225,225,4.37,70.0,1.0,114.0,6.0,71.0,175.0,381.0,99.0,0.0,280.0,2991.0,0.0,24.0,421.0,358.0,50.0,61.0,128.0,1529.0,22.0,38.0,345.0,0.0,85.0,373.0,71.0,1176.0,363.0,8.0,29.0,25.0,84.0,1020.0,524.0,441.0,1544.0,0.0,50.0,0.0,41.0,279.0,48.0,59.0,838.0,886.0,13.0,6.0,539.0,192.0,557.0,0.0,98.0,25.0,229.0,75.0,22.0,87.0,673.0,11.0,0.0,18.0,1429.0,0.0,1974.0,145.0,0.0,0.0,23.0,1322.0,0.0,130.0,148.0,0.0,67.0,10.0,2139.0,234.0,55.0,22.0,100.0,132.0,28.0,64.0,0.0,199.0,886.0,329.0,27.0,0.0,3.0,16.0,1529.0,115.0,156.0,138.0,106.0,246.0,2147.0,96.0,1493.0,1444.0,39.0,0.0,50.0,0.0,0.0,5.0,0.0,74.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,652.0,1561.0,1834.0,52.0,21.0,1191.0,1058.0,4.0,0.0,68.0,47.0,14.0,15.0,401.0,780.0,1171.0,36.0,112.0,231.0,33.0,73.0,219.0,651.0,193.0,2368.0,35.0,4.0,0.0,1185.0,794.0,502.0,40.0,177.0,318.0,0.0,450.0,0.0,107.0,201.0,8.0,78.0,558.0,70.0,0.0,266.0,1135.0,67.0,32.0,38.0,32.0,0.0,94.0,63.0,76.0,418.0,785.0,452.0,76.0,109.0,33.0,18.0,730.0,0.0,48.0,959.0,58.0,0.0,99.0,34.0,0.0,361.0,0.0,74.0,557.0,0.0,21.0,0.0,76.0,170.0,23.0,10.0,198.0,380.0,715.0,532.0,36.0,4.0,0.0,20.0,19.0,0.0,17.0,1886.0,9.0,681.0,0.0,0.0,27.0,0.0,214.0,387.0,365.0,711.0,115.0,0.0,27.0,955.0,110.0,0.0,36.0,120.0,33.0,0.0,27.0,312.0,3.0,153.0,48.0,33.0,0.0,0.0,0.0,54.0,35.0,353.0,12.0,0.0,1531.0,321.0,58.0,21.0,0.0,409.0,0.0,146.0,101.0,21.0,0.0,98.0,0.0,13.0,0.0,2682.0,0.0,225.0,467.0,175.0,159.0,157.0,181.0,401.0,254.0,10.0,0.0,0.0,396.0,32.0,18.0,79.0,39.0,0.0,423.0,0.0,52.0,41.0,86.0,311.0,409.0,20.0,1727.0,20.0,179.0,232.0,4.0,25.0,324.0,1.0,0.0,166.0,219.0,1450.0,0.0,0.0,2016-02-21,,2016-7,4.446129177965396,3.5160000000000005, +226,226,6.31,84.0,3.0,108.0,9.0,60.0,173.0,395.0,124.0,0.0,276.0,2998.0,0.0,30.0,380.0,349.0,34.0,60.0,130.0,1378.0,40.0,35.0,419.0,0.0,88.0,367.0,88.0,1185.0,364.0,3.0,35.0,24.0,69.0,1113.0,475.0,460.0,1486.0,0.0,36.0,0.0,53.0,272.0,37.0,66.0,926.0,934.0,18.0,7.0,512.0,138.0,570.0,0.0,111.0,22.0,214.0,57.0,22.0,51.0,677.0,13.0,0.0,16.0,1325.0,0.0,2024.0,171.0,0.0,0.0,23.0,1340.0,0.0,132.0,128.0,0.0,77.0,15.0,2118.0,275.0,56.0,32.0,87.0,118.0,17.0,66.0,0.0,306.0,958.0,255.0,32.0,2.0,4.0,12.0,1623.0,114.0,159.0,164.0,119.0,254.0,2033.0,51.0,1395.0,1297.0,42.0,0.0,27.0,0.0,0.0,5.0,0.0,59.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,668.0,1467.0,1975.0,33.0,14.0,1176.0,1051.0,4.0,0.0,53.0,58.0,19.0,8.0,376.0,651.0,1134.0,26.0,97.0,213.0,22.0,93.0,247.0,699.0,179.0,2271.0,44.0,2.0,0.0,1104.0,832.0,491.0,60.0,207.0,251.0,0.0,389.0,0.0,154.0,194.0,8.0,114.0,516.0,62.0,0.0,269.0,1022.0,74.0,36.0,36.0,31.0,0.0,87.0,55.0,93.0,372.0,708.0,422.0,82.0,110.0,53.0,30.0,658.0,0.0,36.0,982.0,76.0,0.0,126.0,34.0,0.0,381.0,0.0,81.0,548.0,0.0,22.0,0.0,78.0,157.0,11.0,11.0,183.0,352.0,682.0,504.0,42.0,9.0,0.0,31.0,25.0,0.0,30.0,1856.0,11.0,635.0,0.0,0.0,31.0,0.0,236.0,417.0,346.0,699.0,131.0,0.0,12.0,912.0,81.0,0.0,37.0,107.0,33.0,0.0,32.0,259.0,5.0,157.0,71.0,38.0,0.0,0.0,0.0,42.0,32.0,366.0,4.0,0.0,1658.0,261.0,67.0,18.0,0.0,369.0,0.0,127.0,94.0,23.0,0.0,92.0,0.0,15.0,0.0,2633.0,0.0,204.0,463.0,147.0,305.0,164.0,171.0,334.0,230.0,11.0,0.0,0.0,357.0,30.0,18.0,65.0,50.0,0.0,407.0,0.0,70.0,47.0,92.0,357.0,406.0,29.0,1546.0,9.0,182.0,269.0,3.0,25.0,332.0,1.0,0.0,126.0,233.0,1330.0,0.0,0.0,2016-02-28,,2016-8,5.676766822731585,6.706, +227,227,7.86,80.0,2.0,100.0,6.0,69.0,152.0,367.0,89.0,0.0,283.0,2791.0,0.0,29.0,423.0,435.0,39.0,59.0,124.0,1259.0,24.0,27.0,321.0,0.0,98.0,352.0,93.0,1199.0,333.0,3.0,30.0,15.0,79.0,1129.0,466.0,599.0,1494.0,0.0,30.0,0.0,47.0,216.0,40.0,54.0,995.0,898.0,17.0,2.0,536.0,170.0,515.0,0.0,235.0,23.0,193.0,130.0,13.0,55.0,589.0,14.0,0.0,25.0,1273.0,0.0,1893.0,154.0,0.0,0.0,27.0,1261.0,0.0,137.0,110.0,92.0,59.0,16.0,2101.0,260.0,63.0,31.0,75.0,123.0,17.0,61.0,0.0,253.0,964.0,275.0,23.0,0.0,9.0,9.0,1350.0,136.0,131.0,140.0,89.0,243.0,2111.0,36.0,1408.0,1406.0,48.0,0.0,22.0,0.0,0.0,6.0,0.0,81.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,625.0,1470.0,1805.0,56.0,25.0,1133.0,1095.0,3.0,0.0,51.0,39.0,16.0,13.0,433.0,689.0,1148.0,16.0,113.0,241.0,30.0,72.0,209.0,618.0,101.0,2187.0,36.0,5.0,0.0,1199.0,756.0,478.0,42.0,170.0,256.0,0.0,384.0,0.0,122.0,176.0,6.0,78.0,442.0,59.0,0.0,277.0,1020.0,82.0,25.0,26.0,47.0,0.0,72.0,74.0,55.0,391.0,760.0,365.0,85.0,125.0,30.0,26.0,704.0,0.0,37.0,845.0,47.0,0.0,88.0,27.0,0.0,326.0,0.0,74.0,594.0,0.0,22.0,0.0,59.0,178.0,16.0,11.0,174.0,324.0,670.0,518.0,28.0,5.0,0.0,60.0,29.0,0.0,23.0,1903.0,7.0,611.0,0.0,0.0,25.0,0.0,222.0,358.0,319.0,665.0,118.0,0.0,44.0,816.0,86.0,0.0,33.0,93.0,33.0,0.0,32.0,306.0,1.0,169.0,71.0,17.0,0.0,0.0,0.0,45.0,30.0,346.0,11.0,0.0,1486.0,256.0,64.0,32.0,0.0,386.0,0.0,132.0,126.0,17.0,0.0,75.0,0.0,22.0,0.0,2644.0,0.0,208.0,429.0,112.0,167.0,153.0,159.0,264.0,285.0,10.0,0.0,0.0,343.0,25.0,21.0,57.0,44.0,0.0,360.0,0.0,52.0,51.0,94.0,262.0,379.0,24.0,1397.0,16.0,160.0,232.0,8.0,24.0,279.0,0.0,0.0,136.0,191.0,1309.0,0.0,0.0,2016-03-06,,2016-9,7.8299002194875555,6.5280000000000005, +228,228,10.36,64.0,2.0,111.0,18.0,68.0,144.0,396.0,87.0,0.0,279.0,2851.0,0.0,25.0,350.0,359.0,47.0,49.0,279.0,1541.0,32.0,36.0,294.0,0.0,75.0,317.0,67.0,1121.0,322.0,4.0,19.0,7.0,90.0,1123.0,468.0,449.0,1377.0,0.0,21.0,0.0,51.0,236.0,41.0,61.0,826.0,977.0,13.0,5.0,450.0,155.0,483.0,0.0,186.0,26.0,211.0,55.0,11.0,68.0,557.0,13.0,0.0,14.0,1288.0,0.0,2142.0,154.0,0.0,0.0,19.0,1280.0,0.0,96.0,120.0,9.0,63.0,18.0,2027.0,238.0,52.0,32.0,85.0,110.0,23.0,63.0,0.0,235.0,838.0,237.0,26.0,0.0,11.0,7.0,1397.0,123.0,140.0,145.0,79.0,244.0,2146.0,58.0,1294.0,1267.0,52.0,0.0,27.0,0.0,0.0,2.0,0.0,69.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,637.0,1261.0,1720.0,37.0,14.0,1105.0,1060.0,3.0,0.0,48.0,46.0,16.0,6.0,387.0,629.0,1085.0,21.0,100.0,270.0,24.0,71.0,210.0,567.0,135.0,2153.0,30.0,3.0,0.0,1082.0,794.0,485.0,37.0,159.0,254.0,0.0,377.0,0.0,127.0,210.0,16.0,72.0,412.0,55.0,0.0,280.0,956.0,65.0,40.0,50.0,32.0,0.0,69.0,57.0,69.0,387.0,772.0,398.0,95.0,105.0,69.0,19.0,659.0,0.0,30.0,952.0,68.0,0.0,87.0,22.0,0.0,322.0,0.0,78.0,482.0,0.0,31.0,0.0,68.0,143.0,22.0,14.0,184.0,363.0,651.0,477.0,42.0,6.0,0.0,40.0,27.0,0.0,21.0,1827.0,8.0,669.0,0.0,0.0,29.0,0.0,198.0,329.0,341.0,597.0,124.0,0.0,17.0,861.0,74.0,0.0,30.0,101.0,30.0,0.0,46.0,276.0,3.0,129.0,47.0,33.0,0.0,0.0,0.0,59.0,16.0,355.0,19.0,0.0,1418.0,253.0,36.0,16.0,0.0,354.0,0.0,115.0,92.0,13.0,0.0,75.0,0.0,18.0,0.0,2687.0,0.0,187.0,445.0,113.0,152.0,165.0,183.0,311.0,275.0,11.0,0.0,0.0,351.0,19.0,20.0,56.0,41.0,0.0,364.0,0.0,54.0,54.0,82.0,200.0,383.0,28.0,1422.0,7.0,139.0,233.0,1.0,13.0,249.0,0.0,0.0,141.0,189.0,1223.0,0.0,0.0,2016-03-13,,2016-10,9.824947313808842,7.558, +229,229,11.06,73.0,2.0,121.0,8.0,66.0,179.0,312.0,94.0,0.0,274.0,2402.0,0.0,34.0,353.0,318.0,20.0,43.0,123.0,1249.0,46.0,24.0,348.0,0.0,87.0,348.0,73.0,1086.0,353.0,5.0,35.0,14.0,94.0,1176.0,564.0,510.0,1371.0,0.0,19.0,0.0,21.0,240.0,30.0,49.0,769.0,970.0,17.0,6.0,472.0,145.0,497.0,0.0,117.0,20.0,181.0,73.0,9.0,48.0,602.0,16.0,0.0,17.0,1399.0,0.0,2325.0,136.0,0.0,0.0,14.0,1234.0,0.0,114.0,115.0,5.0,73.0,6.0,2070.0,256.0,38.0,16.0,88.0,106.0,23.0,80.0,0.0,206.0,715.0,236.0,29.0,112.0,7.0,8.0,1412.0,100.0,109.0,114.0,76.0,212.0,2031.0,46.0,1355.0,1320.0,46.0,0.0,29.0,0.0,0.0,0.0,0.0,62.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,655.0,1349.0,1724.0,37.0,12.0,1051.0,1030.0,3.0,0.0,63.0,47.0,17.0,12.0,398.0,683.0,970.0,22.0,98.0,213.0,29.0,88.0,196.0,509.0,125.0,2125.0,29.0,5.0,0.0,989.0,700.0,483.0,52.0,160.0,263.0,0.0,333.0,0.0,97.0,169.0,8.0,79.0,389.0,38.0,0.0,238.0,887.0,91.0,31.0,44.0,27.0,0.0,46.0,97.0,91.0,388.0,664.0,438.0,92.0,94.0,46.0,13.0,606.0,0.0,30.0,849.0,83.0,0.0,150.0,21.0,0.0,362.0,0.0,66.0,546.0,0.0,22.0,0.0,80.0,147.0,12.0,5.0,160.0,366.0,585.0,443.0,34.0,3.0,0.0,30.0,27.0,0.0,21.0,1699.0,16.0,662.0,0.0,0.0,18.0,0.0,186.0,322.0,314.0,658.0,91.0,0.0,13.0,930.0,67.0,0.0,36.0,80.0,34.0,0.0,49.0,271.0,1.0,141.0,55.0,18.0,0.0,0.0,0.0,47.0,17.0,305.0,11.0,0.0,1356.0,249.0,40.0,39.0,0.0,369.0,0.0,100.0,85.0,18.0,0.0,105.0,0.0,18.0,0.0,2539.0,0.0,202.0,414.0,114.0,156.0,134.0,155.0,290.0,206.0,15.0,0.0,0.0,363.0,24.0,9.0,48.0,46.0,0.0,353.0,0.0,59.0,35.0,80.0,235.0,325.0,28.0,1403.0,8.0,146.0,202.0,8.0,17.0,254.0,0.0,0.0,124.0,168.0,1250.0,0.0,0.0,2016-03-20,,2016-11,10.90763676182566,8.862, +230,230,8.52,66.0,3.0,70.0,6.0,53.0,141.0,260.0,75.0,0.0,196.0,2129.0,0.0,26.0,272.0,329.0,26.0,42.0,124.0,1001.0,23.0,24.0,247.0,0.0,73.0,283.0,72.0,883.0,295.0,6.0,31.0,22.0,81.0,815.0,434.0,423.0,1178.0,0.0,25.0,0.0,21.0,182.0,26.0,29.0,693.0,859.0,22.0,7.0,348.0,114.0,448.0,0.0,87.0,17.0,151.0,44.0,14.0,40.0,422.0,12.0,0.0,13.0,1137.0,0.0,1508.0,114.0,0.0,0.0,15.0,1031.0,0.0,123.0,104.0,2.0,37.0,16.0,1972.0,182.0,43.0,19.0,60.0,76.0,38.0,46.0,0.0,174.0,591.0,224.0,33.0,39.0,7.0,11.0,1134.0,78.0,106.0,120.0,87.0,180.0,1859.0,34.0,1155.0,1047.0,37.0,0.0,21.0,0.0,0.0,3.0,0.0,64.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,441.0,953.0,1124.0,35.0,12.0,805.0,889.0,4.0,0.0,52.0,31.0,13.0,10.0,324.0,550.0,825.0,17.0,89.0,166.0,21.0,77.0,160.0,417.0,92.0,1630.0,36.0,6.0,0.0,800.0,4135.0,366.0,44.0,165.0,228.0,0.0,260.0,0.0,85.0,113.0,11.0,77.0,355.0,33.0,0.0,228.0,788.0,63.0,27.0,35.0,21.0,0.0,43.0,86.0,43.0,336.0,603.0,255.0,84.0,86.0,35.0,9.0,525.0,0.0,32.0,711.0,52.0,0.0,110.0,28.0,0.0,276.0,0.0,61.0,406.0,0.0,18.0,0.0,60.0,110.0,14.0,9.0,187.0,306.0,520.0,353.0,35.0,11.0,0.0,31.0,17.0,0.0,19.0,1469.0,14.0,474.0,0.0,0.0,29.0,0.0,156.0,204.0,243.0,527.0,100.0,0.0,13.0,661.0,161.0,0.0,25.0,83.0,25.0,0.0,45.0,232.0,6.0,134.0,55.0,30.0,0.0,0.0,0.0,31.0,18.0,279.0,8.0,0.0,1033.0,195.0,46.0,17.0,0.0,351.0,0.0,132.0,82.0,21.0,0.0,89.0,0.0,23.0,0.0,2100.0,0.0,184.0,332.0,79.0,137.0,114.0,105.0,225.0,192.0,12.0,0.0,0.0,246.0,20.0,15.0,37.0,26.0,0.0,310.0,0.0,35.0,42.0,88.0,159.0,298.0,49.0,1076.0,8.0,137.0,178.0,8.0,14.0,281.0,1.0,0.0,104.0,149.0,1017.0,0.0,0.0,2016-03-27,,2016-12,8.388340298913956,4.652, +231,231,5.88,60.0,4.0,90.0,8.0,65.0,125.0,249.0,82.0,0.0,231.0,2182.0,0.0,14.0,303.0,320.0,39.0,48.0,125.0,1028.0,25.0,21.0,274.0,0.0,74.0,331.0,64.0,932.0,284.0,9.0,31.0,16.0,68.0,788.0,368.0,465.0,1173.0,0.0,24.0,0.0,39.0,205.0,31.0,46.0,661.0,1005.0,20.0,7.0,420.0,155.0,491.0,0.0,85.0,25.0,163.0,43.0,15.0,56.0,534.0,17.0,0.0,14.0,1271.0,0.0,1499.0,123.0,0.0,0.0,24.0,1158.0,0.0,105.0,135.0,6.0,58.0,19.0,1952.0,199.0,37.0,15.0,77.0,72.0,24.0,47.0,0.0,198.0,610.0,212.0,30.0,41.0,8.0,9.0,1272.0,78.0,138.0,105.0,87.0,184.0,1983.0,47.0,1271.0,1124.0,34.0,0.0,32.0,0.0,0.0,3.0,0.0,56.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,492.0,1052.0,1315.0,45.0,13.0,875.0,885.0,5.0,0.0,55.0,37.0,14.0,3.0,318.0,627.0,935.0,18.0,93.0,188.0,18.0,60.0,167.0,448.0,101.0,1717.0,34.0,1.0,0.0,956.0,661.0,472.0,48.0,122.0,421.0,0.0,315.0,0.0,131.0,138.0,11.0,76.0,357.0,35.0,0.0,205.0,1236.0,62.0,34.0,60.0,19.0,0.0,64.0,48.0,60.0,348.0,665.0,312.0,141.0,72.0,48.0,16.0,505.0,0.0,36.0,772.0,52.0,0.0,111.0,13.0,0.0,297.0,0.0,76.0,420.0,0.0,32.0,0.0,68.0,125.0,20.0,5.0,176.0,286.0,525.0,411.0,39.0,5.0,0.0,30.0,38.0,0.0,27.0,1474.0,12.0,459.0,0.0,0.0,21.0,0.0,176.0,264.0,262.0,500.0,129.0,0.0,29.0,663.0,67.0,0.0,31.0,83.0,29.0,0.0,52.0,221.0,8.0,175.0,48.0,32.0,0.0,0.0,0.0,50.0,33.0,286.0,5.0,0.0,1204.0,249.0,44.0,15.0,0.0,372.0,0.0,142.0,75.0,30.0,0.0,71.0,0.0,11.0,0.0,2203.0,0.0,176.0,389.0,110.0,124.0,96.0,132.0,267.0,203.0,13.0,0.0,0.0,362.0,31.0,23.0,59.0,41.0,0.0,324.0,0.0,58.0,33.0,92.0,200.0,334.0,19.0,1091.0,15.0,138.0,206.0,12.0,20.0,242.0,1.0,0.0,109.0,158.0,1086.0,0.0,0.0,2016-04-03,,2016-13,6.192398217544007,4.708, +232,232,4.4,70.0,8.0,92.0,11.0,47.0,144.0,318.0,89.0,0.0,270.0,1924.0,0.0,29.0,338.0,358.0,42.0,49.0,122.0,1283.0,31.0,31.0,307.0,0.0,88.0,352.0,71.0,1434.0,367.0,8.0,27.0,8.0,70.0,1054.0,522.0,516.0,1362.0,0.0,39.0,0.0,42.0,195.0,35.0,47.0,827.0,1062.0,20.0,9.0,552.0,172.0,528.0,0.0,71.0,25.0,210.0,91.0,16.0,63.0,429.0,7.0,0.0,22.0,1391.0,0.0,1585.0,125.0,0.0,0.0,24.0,1253.0,0.0,108.0,91.0,2.0,57.0,19.0,1931.0,240.0,53.0,27.0,61.0,115.0,25.0,84.0,0.0,201.0,786.0,218.0,32.0,39.0,9.0,11.0,1343.0,85.0,143.0,145.0,86.0,245.0,2091.0,60.0,1515.0,1268.0,46.0,0.0,40.0,0.0,0.0,3.0,0.0,91.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,617.0,1166.0,1723.0,43.0,14.0,994.0,982.0,3.0,0.0,68.0,43.0,23.0,7.0,380.0,610.0,1053.0,25.0,113.0,207.0,22.0,80.0,224.0,517.0,127.0,1989.0,27.0,4.0,0.0,974.0,663.0,439.0,52.0,170.0,263.0,0.0,350.0,0.0,115.0,139.0,7.0,83.0,413.0,71.0,0.0,254.0,1154.0,57.0,31.0,47.0,22.0,0.0,60.0,67.0,62.0,336.0,775.0,386.0,84.0,99.0,40.0,13.0,683.0,0.0,45.0,859.0,52.0,0.0,107.0,21.0,0.0,318.0,0.0,67.0,486.0,0.0,23.0,0.0,64.0,149.0,20.0,14.0,164.0,287.0,606.0,469.0,45.0,4.0,0.0,41.0,22.0,0.0,29.0,1734.0,12.0,564.0,0.0,0.0,40.0,0.0,197.0,305.0,320.0,639.0,119.0,0.0,21.0,836.0,49.0,0.0,32.0,89.0,24.0,0.0,60.0,214.0,11.0,158.0,58.0,31.0,0.0,0.0,0.0,38.0,30.0,314.0,9.0,0.0,1299.0,263.0,50.0,12.0,0.0,475.0,0.0,142.0,80.0,18.0,0.0,81.0,0.0,12.0,0.0,2556.0,0.0,214.0,358.0,141.0,150.0,126.0,164.0,271.0,263.0,11.0,0.0,0.0,311.0,26.0,17.0,60.0,42.0,0.0,397.0,0.0,63.0,48.0,82.0,187.0,358.0,16.0,1140.0,14.0,166.0,206.0,12.0,34.0,252.0,0.0,0.0,121.0,178.0,1145.0,0.0,0.0,2016-04-10,,2016-14,4.220019721510766,6.7860000000000005, +233,233,0.29,82.0,4.0,119.0,17.0,58.0,151.0,335.0,87.0,0.0,290.0,1749.0,0.0,23.0,324.0,405.0,31.0,39.0,127.0,1207.0,36.0,38.0,262.0,0.0,100.0,365.0,90.0,1159.0,381.0,8.0,26.0,12.0,84.0,1050.0,535.0,415.0,1385.0,0.0,20.0,0.0,45.0,185.0,53.0,48.0,954.0,985.0,24.0,10.0,506.0,183.0,531.0,0.0,72.0,25.0,168.0,54.0,18.0,54.0,468.0,10.0,0.0,12.0,1300.0,0.0,1710.0,133.0,0.0,0.0,24.0,1233.0,0.0,93.0,115.0,2.0,47.0,7.0,1953.0,260.0,54.0,28.0,59.0,94.0,21.0,77.0,0.0,205.0,772.0,315.0,32.0,28.0,11.0,16.0,1659.0,117.0,118.0,130.0,83.0,244.0,2077.0,54.0,1478.0,1367.0,42.0,0.0,31.0,0.0,0.0,7.0,0.0,67.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,601.0,1205.0,1591.0,38.0,16.0,1097.0,1023.0,4.0,0.0,53.0,48.0,13.0,16.0,435.0,691.0,1039.0,24.0,114.0,194.0,29.0,62.0,222.0,566.0,123.0,1952.0,27.0,8.0,0.0,1011.0,714.0,394.0,46.0,161.0,262.0,0.0,411.0,0.0,92.0,137.0,7.0,89.0,428.0,45.0,0.0,200.0,1499.0,56.0,48.0,33.0,23.0,0.0,68.0,75.0,55.0,340.0,696.0,392.0,96.0,79.0,41.0,14.0,599.0,0.0,34.0,842.0,47.0,0.0,139.0,28.0,0.0,366.0,0.0,76.0,479.0,0.0,34.0,0.0,50.0,140.0,24.0,13.0,174.0,346.0,760.0,488.0,40.0,8.0,0.0,32.0,16.0,0.0,13.0,1780.0,4.0,541.0,0.0,0.0,26.0,0.0,175.0,352.0,299.0,604.0,107.0,0.0,21.0,809.0,53.0,0.0,42.0,92.0,36.0,0.0,43.0,217.0,6.0,168.0,61.0,27.0,0.0,0.0,0.0,42.0,23.0,312.0,6.0,0.0,1378.0,288.0,43.0,9.0,0.0,440.0,0.0,133.0,70.0,23.0,0.0,78.0,0.0,28.0,0.0,2974.0,0.0,227.0,413.0,130.0,115.0,158.0,142.0,306.0,221.0,9.0,0.0,0.0,346.0,22.0,21.0,46.0,56.0,0.0,370.0,0.0,61.0,45.0,58.0,190.0,325.0,10.0,1032.0,8.0,173.0,197.0,13.0,20.0,228.0,0.0,0.0,125.0,147.0,1172.0,0.0,0.0,2016-04-17,,2016-15,0.5885115901210067,2.828, +234,234,0.04,166.0,0.0,95.0,16.0,210.0,221.0,405.0,96.0,78.0,336.0,3752.0,2942.0,24.0,417.0,823.0,50.0,51.0,261.0,2923.0,38.0,27.0,506.0,6952.0,102.0,526.0,88.0,1621.0,563.0,25.0,39.0,32.0,105.0,1476.0,641.0,907.0,2198.0,47.0,18.0,7.0,111.0,354.0,76.0,50.0,1109.0,1279.0,9.0,7.0,607.0,219.0,1157.0,8.0,129.0,26.0,179.0,100.0,35.0,35.0,553.0,7.0,358.0,13.0,2022.0,936.0,3108.0,223.0,17.0,6369.0,21.0,1804.0,47.0,244.0,137.0,1.0,65.0,18.0,4599.0,298.0,71.0,18.0,157.0,134.0,33.0,140.0,289.0,308.0,1143.0,421.0,44.0,31.0,8.0,5.0,2762.0,147.0,210.0,160.0,145.0,441.0,4850.0,76.0,2685.0,2260.0,55.0,320.0,642.0,2301.0,486.0,3.0,178.0,107.0,2641.0,839.0,2537.0,11.0,1022.0,121.0,1852.0,887.0,2027.0,2500.0,91.0,5.0,1592.0,2096.0,2.0,2120.0,88.0,80.0,12.0,16.0,699.0,870.0,1498.0,27.0,179.0,277.0,38.0,93.0,258.0,980.0,233.0,3444.0,62.0,1.0,114.0,1370.0,1271.0,877.0,44.0,324.0,291.0,1170.0,686.0,24.0,100.0,274.0,11.0,77.0,754.0,72.0,9513.0,349.0,2121.0,91.0,63.0,50.0,14.0,25.0,72.0,93.0,126.0,471.0,991.0,446.0,114.0,228.0,42.0,14.0,1193.0,0.0,26.0,1348.0,86.0,671.0,129.0,33.0,311.0,1020.0,112.0,74.0,793.0,1306.0,22.0,244.0,70.0,243.0,12.0,4.0,204.0,537.0,874.0,951.0,43.0,5.0,71.0,81.0,55.0,65.0,22.0,3052.0,19.0,727.0,51.0,52.0,42.0,43.0,467.0,805.0,389.0,1121.0,190.0,0.0,6.0,1007.0,66.0,4.0,36.0,171.0,50.0,35.0,64.0,537.0,1.0,261.0,92.0,24.0,25.0,1608.0,1.0,51.0,45.0,675.0,43.0,3258.0,2227.0,573.0,88.0,21.0,2275.0,770.0,176.0,673.0,152.0,27.0,5.0,70.0,109.0,31.0,32.0,4306.0,0.0,874.0,681.0,201.0,237.0,216.0,173.0,564.0,318.0,7.0,73.0,236.0,439.0,28.0,13.0,97.0,71.0,7.0,458.0,211.0,68.0,61.0,123.0,375.0,572.0,15.0,2710.0,13.0,248.0,469.0,13.0,26.0,357.0,77.0,105.0,127.0,190.0,2613.0,5172.0,747.0,2016-10-23,,2016-42,0.0989049170654539,0.18200000000000005, +235,235,0.04,192.0,0.0,83.0,12.0,194.0,209.0,379.0,103.0,88.0,315.0,3694.0,3193.0,36.0,452.0,803.0,56.0,59.0,220.0,3125.0,40.0,30.0,527.0,7216.0,108.0,472.0,97.0,1652.0,586.0,13.0,45.0,21.0,99.0,1347.0,544.0,807.0,2129.0,55.0,34.0,6.0,135.0,287.0,66.0,73.0,1269.0,1234.0,27.0,9.0,585.0,205.0,1175.0,8.0,80.0,26.0,173.0,87.0,20.0,59.0,601.0,25.0,342.0,8.0,1846.0,925.0,3062.0,196.0,18.0,5756.0,29.0,2066.0,54.0,171.0,123.0,2.0,90.0,9.0,4463.0,323.0,58.0,13.0,207.0,152.0,35.0,96.0,304.0,573.0,1199.0,401.0,37.0,16.0,7.0,8.0,2565.0,183.0,220.0,175.0,137.0,364.0,4319.0,77.0,2632.0,2327.0,54.0,343.0,650.0,2340.0,459.0,0.0,166.0,123.0,2607.0,898.0,2462.0,19.0,1134.0,110.0,1738.0,878.0,2124.0,2649.0,65.0,7.0,1675.0,1976.0,0.0,2095.0,87.0,65.0,32.0,14.0,643.0,918.0,1550.0,21.0,105.0,241.0,50.0,104.0,249.0,1012.0,276.0,3327.0,58.0,1.0,107.0,1520.0,1222.0,965.0,60.0,261.0,288.0,1203.0,694.0,17.0,74.0,245.0,11.0,66.0,831.0,71.0,8999.0,338.0,1972.0,94.0,64.0,46.0,12.0,24.0,77.0,88.0,111.0,443.0,1002.0,385.0,98.0,202.0,47.0,21.0,1082.0,0.0,37.0,1295.0,64.0,682.0,180.0,12.0,363.0,999.0,143.0,92.0,713.0,1339.0,20.0,259.0,63.0,257.0,17.0,10.0,187.0,529.0,953.0,833.0,37.0,0.0,65.0,70.0,24.0,59.0,22.0,2925.0,19.0,768.0,44.0,58.0,29.0,7.0,576.0,664.0,368.0,972.0,154.0,0.0,0.0,1095.0,53.0,7.0,42.0,177.0,36.0,69.0,110.0,479.0,2.0,287.0,94.0,39.0,18.0,1464.0,1.0,73.0,61.0,636.0,8.0,3507.0,2186.0,403.0,64.0,20.0,2278.0,709.0,138.0,580.0,150.0,47.0,15.0,91.0,89.0,23.0,31.0,4259.0,0.0,601.0,741.0,180.0,252.0,238.0,199.0,548.0,322.0,4.0,57.0,239.0,421.0,34.0,21.0,57.0,53.0,2.0,420.0,215.0,81.0,57.0,70.0,384.0,555.0,16.0,2510.0,8.0,211.0,459.0,4.0,24.0,340.0,60.0,74.0,135.0,183.0,2280.0,4917.0,759.0,2016-10-30,,2016-43,0.24672034735705495,0.592, +236,236,0.05,182.0,2.0,135.0,21.0,175.0,231.0,354.0,110.0,87.0,341.0,3629.0,3054.0,36.0,434.0,919.0,61.0,43.0,230.0,2901.0,70.0,47.0,766.0,7172.0,135.0,474.0,118.0,1603.0,615.0,24.0,36.0,21.0,114.0,1397.0,519.0,705.0,2078.0,67.0,31.0,19.0,95.0,378.0,40.0,62.0,1115.0,1375.0,24.0,4.0,533.0,179.0,2050.0,19.0,116.0,30.0,179.0,97.0,33.0,42.0,660.0,19.0,341.0,29.0,2142.0,1114.0,3223.0,235.0,15.0,5494.0,33.0,1829.0,47.0,192.0,139.0,3.0,82.0,17.0,4652.0,270.0,69.0,31.0,179.0,149.0,29.0,130.0,421.0,312.0,1200.0,384.0,38.0,14.0,8.0,9.0,2412.0,132.0,205.0,179.0,112.0,339.0,4231.0,86.0,2731.0,2482.0,67.0,312.0,640.0,2235.0,445.0,2.0,208.0,116.0,2545.0,915.0,2474.0,18.0,1106.0,113.0,1945.0,904.0,2076.0,2760.0,90.0,11.0,1695.0,1865.0,0.0,2273.0,65.0,74.0,23.0,8.0,623.0,988.0,1532.0,22.0,165.0,249.0,42.0,87.0,207.0,959.0,300.0,3738.0,51.0,3.0,118.0,1517.0,1406.0,961.0,47.0,228.0,328.0,1203.0,606.0,22.0,89.0,236.0,5.0,51.0,913.0,97.0,8949.0,295.0,2031.0,107.0,68.0,42.0,13.0,22.0,74.0,68.0,114.0,466.0,1021.0,409.0,161.0,232.0,32.0,22.0,1133.0,0.0,29.0,1262.0,62.0,642.0,127.0,21.0,368.0,979.0,157.0,115.0,728.0,1509.0,25.0,207.0,73.0,314.0,27.0,36.0,230.0,514.0,867.0,699.0,54.0,3.0,71.0,56.0,38.0,76.0,21.0,2965.0,15.0,790.0,33.0,52.0,34.0,7.0,388.0,528.0,364.0,982.0,187.0,0.0,10.0,1134.0,46.0,3.0,30.0,187.0,36.0,70.0,73.0,456.0,3.0,303.0,88.0,47.0,14.0,1409.0,6.0,49.0,46.0,706.0,8.0,3064.0,2170.0,353.0,74.0,22.0,2244.0,702.0,198.0,555.0,109.0,51.0,15.0,116.0,79.0,23.0,50.0,4171.0,0.0,616.0,674.0,166.0,255.0,241.0,207.0,637.0,369.0,8.0,45.0,250.0,478.0,41.0,26.0,82.0,58.0,9.0,408.0,231.0,98.0,53.0,101.0,404.0,560.0,15.0,2442.0,6.0,218.0,446.0,4.0,16.0,330.0,56.0,103.0,132.0,160.0,2142.0,5132.0,798.0,2016-11-06,,2016-44,0.001489304374459266,0.11400000000000002, +237,237,0.04,148.0,0.0,130.0,8.0,210.0,233.0,427.0,96.0,68.0,458.0,4139.0,3140.0,46.0,470.0,803.0,64.0,35.0,257.0,2872.0,22.0,44.0,585.0,7571.0,93.0,503.0,81.0,1642.0,637.0,32.0,47.0,46.0,103.0,1586.0,638.0,675.0,2146.0,86.0,25.0,9.0,125.0,378.0,83.0,55.0,1340.0,1423.0,24.0,10.0,650.0,181.0,1112.0,30.0,743.0,32.0,205.0,89.0,42.0,56.0,656.0,19.0,371.0,24.0,2148.0,1118.0,3209.0,232.0,23.0,5508.0,33.0,1917.0,44.0,347.0,124.0,1.0,68.0,23.0,4596.0,350.0,62.0,33.0,204.0,151.0,28.0,85.0,355.0,482.0,1202.0,454.0,39.0,23.0,14.0,9.0,2542.0,124.0,227.0,204.0,135.0,371.0,4276.0,85.0,2776.0,2602.0,78.0,319.0,588.0,2390.0,505.0,6.0,207.0,118.0,2569.0,932.0,2489.0,12.0,1291.0,150.0,1860.0,933.0,2153.0,3083.0,95.0,12.0,1810.0,2139.0,4.0,2301.0,80.0,84.0,19.0,24.0,627.0,888.0,1528.0,30.0,148.0,259.0,42.0,102.0,245.0,1017.0,339.0,3883.0,62.0,3.0,159.0,1635.0,1112.0,963.0,58.0,250.0,398.0,1295.0,668.0,27.0,117.0,225.0,7.0,65.0,899.0,80.0,9710.0,343.0,1978.0,77.0,50.0,47.0,24.0,35.0,88.0,102.0,104.0,453.0,1033.0,462.0,108.0,239.0,41.0,22.0,1156.0,0.0,20.0,1346.0,76.0,620.0,192.0,28.0,302.0,998.0,182.0,101.0,734.0,1535.0,31.0,262.0,72.0,272.0,17.0,7.0,259.0,552.0,963.0,730.0,42.0,2.0,67.0,76.0,41.0,74.0,34.0,3058.0,26.0,717.0,59.0,75.0,31.0,11.0,387.0,579.0,439.0,1054.0,283.0,0.0,10.0,1169.0,46.0,5.0,44.0,155.0,41.0,79.0,96.0,509.0,1.0,300.0,95.0,43.0,16.0,1391.0,5.0,74.0,40.0,756.0,9.0,3077.0,2343.0,382.0,71.0,26.0,2728.0,681.0,179.0,661.0,175.0,48.0,13.0,100.0,103.0,24.0,30.0,4298.0,0.0,466.0,720.0,170.0,277.0,250.0,244.0,559.0,313.0,9.0,72.0,221.0,470.0,25.0,16.0,81.0,67.0,10.0,451.0,232.0,83.0,58.0,77.0,769.0,584.0,23.0,2916.0,10.0,220.0,553.0,4.0,19.0,361.0,62.0,85.0,158.0,179.0,2349.0,5269.0,771.0,2016-11-13,,2016-45,-0.10562271901356723,5.417999999999999, +238,238,0.1,134.0,2.0,122.0,7.0,184.0,219.0,412.0,80.0,75.0,415.0,4141.0,3209.0,33.0,458.0,937.0,53.0,45.0,289.0,2641.0,44.0,54.0,540.0,8057.0,109.0,504.0,107.0,1780.0,665.0,25.0,38.0,20.0,116.0,1702.0,739.0,627.0,2103.0,62.0,22.0,9.0,104.0,389.0,37.0,73.0,1323.0,1349.0,33.0,8.0,535.0,202.0,1138.0,24.0,190.0,26.0,208.0,96.0,31.0,62.0,670.0,17.0,347.0,20.0,2298.0,2094.0,3326.0,220.0,22.0,5536.0,25.0,1858.0,51.0,234.0,119.0,1.0,92.0,20.0,4526.0,342.0,59.0,20.0,150.0,163.0,34.0,101.0,377.0,386.0,1186.0,413.0,46.0,11.0,7.0,6.0,2390.0,118.0,185.0,173.0,147.0,405.0,4261.0,71.0,2647.0,2593.0,56.0,332.0,643.0,2571.0,493.0,8.0,165.0,109.0,2618.0,1083.0,2632.0,6.0,1286.0,149.0,1886.0,917.0,2232.0,2970.0,75.0,13.0,2072.0,2137.0,3.0,2319.0,89.0,59.0,24.0,13.0,622.0,883.0,1603.0,25.0,130.0,310.0,36.0,118.0,253.0,937.0,283.0,3769.0,83.0,0.0,138.0,1749.0,1250.0,858.0,52.0,265.0,418.0,1203.0,759.0,24.0,103.0,232.0,2.0,79.0,1110.0,81.0,9526.0,334.0,2269.0,100.0,49.0,43.0,30.0,28.0,73.0,95.0,86.0,466.0,984.0,511.0,190.0,209.0,47.0,14.0,1168.0,0.0,21.0,1379.0,107.0,760.0,139.0,28.0,333.0,950.0,183.0,94.0,817.0,1600.0,17.0,264.0,83.0,250.0,18.0,15.0,228.0,599.0,999.0,740.0,43.0,6.0,72.0,76.0,38.0,107.0,23.0,3376.0,16.0,763.0,43.0,52.0,19.0,14.0,513.0,607.0,426.0,1178.0,228.0,0.0,12.0,1115.0,56.0,7.0,41.0,175.0,50.0,71.0,89.0,504.0,2.0,358.0,80.0,41.0,22.0,1287.0,3.0,58.0,49.0,698.0,11.0,3105.0,2367.0,380.0,84.0,24.0,2371.0,730.0,195.0,631.0,134.0,36.0,8.0,115.0,78.0,30.0,30.0,4579.0,0.0,453.0,733.0,181.0,242.0,263.0,256.0,566.0,350.0,11.0,60.0,248.0,562.0,31.0,23.0,62.0,52.0,7.0,528.0,217.0,75.0,68.0,76.0,474.0,617.0,20.0,2866.0,12.0,255.0,574.0,5.0,14.0,338.0,56.0,102.0,168.0,158.0,2462.0,5201.0,823.0,2016-11-20,,2016-46,0.19075548125610453,1.5499999999999998, +239,239,0.15,117.0,1.0,126.0,11.0,192.0,227.0,423.0,96.0,81.0,380.0,3815.0,3220.0,28.0,492.0,938.0,42.0,38.0,258.0,2660.0,29.0,54.0,594.0,7982.0,121.0,504.0,90.0,1707.0,740.0,30.0,41.0,29.0,88.0,1526.0,666.0,658.0,2060.0,68.0,28.0,12.0,76.0,429.0,51.0,82.0,1273.0,1341.0,17.0,10.0,680.0,200.0,1286.0,23.0,189.0,19.0,179.0,105.0,38.0,44.0,556.0,16.0,341.0,7.0,2278.0,1155.0,3519.0,185.0,16.0,5026.0,31.0,1813.0,48.0,583.0,115.0,0.0,80.0,6.0,4600.0,406.0,65.0,15.0,154.0,158.0,36.0,145.0,361.0,454.0,1206.0,365.0,62.0,17.0,3.0,5.0,2397.0,186.0,213.0,209.0,126.0,440.0,4655.0,82.0,2635.0,2835.0,44.0,305.0,884.0,2478.0,503.0,3.0,199.0,114.0,2689.0,893.0,2347.0,10.0,1171.0,126.0,1947.0,904.0,2133.0,3143.0,49.0,8.0,1767.0,2192.0,1.0,2259.0,67.0,49.0,15.0,25.0,633.0,890.0,1619.0,25.0,153.0,289.0,58.0,96.0,237.0,915.0,254.0,3577.0,69.0,1.0,110.0,1544.0,1122.0,900.0,41.0,242.0,335.0,1250.0,697.0,31.0,118.0,274.0,12.0,49.0,974.0,71.0,9351.0,353.0,2534.0,108.0,53.0,60.0,20.0,16.0,159.0,103.0,102.0,421.0,985.0,498.0,101.0,198.0,38.0,26.0,1173.0,0.0,33.0,1339.0,63.0,876.0,146.0,25.0,327.0,1026.0,168.0,83.0,737.0,1742.0,21.0,242.0,98.0,235.0,23.0,5.0,229.0,480.0,1044.0,811.0,33.0,0.0,47.0,59.0,47.0,102.0,22.0,3144.0,16.0,744.0,37.0,41.0,30.0,7.0,407.0,590.0,388.0,1052.0,168.0,0.0,4.0,1091.0,50.0,6.0,41.0,186.0,44.0,61.0,105.0,512.0,1.0,276.0,88.0,48.0,22.0,1305.0,2.0,69.0,37.0,644.0,6.0,3222.0,2430.0,413.0,71.0,36.0,1921.0,736.0,193.0,660.0,144.0,37.0,12.0,100.0,87.0,27.0,39.0,4597.0,0.0,459.0,710.0,184.0,316.0,246.0,225.0,521.0,320.0,12.0,63.0,230.0,535.0,32.0,25.0,85.0,63.0,11.0,547.0,217.0,68.0,67.0,89.0,422.0,635.0,24.0,3016.0,12.0,289.0,566.0,7.0,18.0,349.0,69.0,101.0,168.0,185.0,2058.0,5087.0,796.0,2016-11-27,,2016-47,0.04910168040441931,0.13999999999999999, +240,240,0.2,117.0,0.0,106.0,3.0,212.0,229.0,462.0,118.0,72.0,391.0,3937.0,3157.0,24.0,480.0,986.0,40.0,43.0,223.0,2742.0,31.0,33.0,562.0,8580.0,111.0,451.0,90.0,1676.0,667.0,33.0,60.0,14.0,116.0,1421.0,553.0,652.0,2002.0,67.0,33.0,7.0,102.0,377.0,46.0,57.0,1236.0,1266.0,23.0,7.0,579.0,215.0,1307.0,15.0,595.0,29.0,159.0,125.0,47.0,50.0,613.0,19.0,333.0,14.0,2055.0,941.0,2776.0,174.0,22.0,5295.0,23.0,1755.0,38.0,247.0,97.0,0.0,67.0,6.0,4776.0,285.0,72.0,12.0,160.0,147.0,37.0,120.0,408.0,601.0,1164.0,404.0,50.0,26.0,5.0,7.0,2369.0,112.0,229.0,171.0,147.0,406.0,3833.0,88.0,2356.0,2302.0,63.0,305.0,752.0,2424.0,431.0,2.0,295.0,116.0,2574.0,861.0,2223.0,6.0,993.0,93.0,1912.0,877.0,2140.0,3252.0,53.0,7.0,1710.0,2006.0,1.0,2133.0,79.0,77.0,16.0,18.0,691.0,868.0,1463.0,32.0,126.0,268.0,37.0,85.0,235.0,881.0,200.0,3683.0,80.0,0.0,116.0,1369.0,1272.0,863.0,47.0,240.0,333.0,1181.0,596.0,26.0,106.0,275.0,14.0,83.0,890.0,71.0,8768.0,337.0,2171.0,134.0,49.0,39.0,9.0,16.0,114.0,91.0,145.0,443.0,964.0,474.0,112.0,173.0,37.0,22.0,955.0,0.0,23.0,1232.0,67.0,719.0,152.0,32.0,293.0,958.0,131.0,81.0,636.0,1367.0,14.0,220.0,81.0,254.0,17.0,8.0,161.0,497.0,1033.0,735.0,49.0,1.0,52.0,54.0,39.0,65.0,25.0,2852.0,12.0,764.0,30.0,46.0,20.0,9.0,460.0,554.0,405.0,1057.0,158.0,0.0,15.0,1076.0,57.0,0.0,28.0,156.0,33.0,53.0,104.0,565.0,5.0,303.0,69.0,47.0,21.0,1354.0,2.0,61.0,44.0,663.0,16.0,2950.0,2245.0,457.0,63.0,27.0,2121.0,615.0,180.0,619.0,116.0,25.0,15.0,113.0,98.0,23.0,40.0,4051.0,0.0,445.0,667.0,152.0,289.0,220.0,221.0,550.0,441.0,9.0,42.0,231.0,482.0,33.0,32.0,75.0,69.0,4.0,508.0,201.0,110.0,59.0,79.0,393.0,512.0,21.0,2721.0,10.0,219.0,468.0,4.0,35.0,283.0,45.0,85.0,172.0,169.0,1999.0,4868.0,720.0,2016-12-04,,2016-48,0.22092944331591013,0.15000000000000002, +241,241,0.38,142.0,0.0,92.0,7.0,180.0,228.0,359.0,74.0,93.0,396.0,4097.0,3352.0,35.0,485.0,1294.0,60.0,46.0,226.0,2721.0,27.0,45.0,583.0,7462.0,222.0,486.0,108.0,1665.0,618.0,30.0,28.0,15.0,114.0,1349.0,572.0,658.0,1916.0,89.0,38.0,8.0,61.0,340.0,69.0,67.0,1086.0,1274.0,37.0,14.0,541.0,195.0,1189.0,22.0,234.0,23.0,170.0,127.0,44.0,47.0,557.0,11.0,309.0,20.0,1969.0,994.0,3331.0,214.0,15.0,5840.0,24.0,1809.0,32.0,247.0,110.0,0.0,80.0,22.0,4556.0,325.0,78.0,23.0,193.0,159.0,23.0,111.0,332.0,410.0,1112.0,481.0,55.0,17.0,10.0,5.0,2382.0,121.0,189.0,164.0,137.0,407.0,3828.0,80.0,2639.0,2114.0,31.0,302.0,711.0,2429.0,533.0,2.0,209.0,105.0,2595.0,891.0,2469.0,13.0,1093.0,146.0,1904.0,819.0,1952.0,3165.0,44.0,5.0,1615.0,2077.0,2.0,1990.0,85.0,67.0,17.0,17.0,558.0,869.0,1476.0,25.0,131.0,265.0,43.0,115.0,262.0,841.0,177.0,3795.0,82.0,0.0,115.0,1497.0,2617.0,823.0,49.0,225.0,362.0,1149.0,607.0,35.0,87.0,231.0,5.0,84.0,848.0,64.0,8346.0,325.0,2036.0,111.0,68.0,50.0,20.0,18.0,72.0,95.0,99.0,409.0,909.0,447.0,113.0,188.0,46.0,25.0,1011.0,0.0,28.0,1302.0,57.0,724.0,135.0,38.0,340.0,838.0,96.0,92.0,597.0,1347.0,33.0,204.0,95.0,258.0,15.0,8.0,206.0,465.0,920.0,686.0,30.0,2.0,55.0,68.0,44.0,87.0,25.0,2916.0,16.0,723.0,63.0,68.0,31.0,6.0,442.0,504.0,383.0,899.0,161.0,0.0,7.0,1063.0,45.0,2.0,26.0,154.0,36.0,60.0,101.0,546.0,0.0,301.0,78.0,60.0,14.0,1299.0,2.0,61.0,36.0,742.0,9.0,2880.0,2027.0,408.0,66.0,17.0,2616.0,610.0,143.0,597.0,147.0,33.0,6.0,83.0,85.0,51.0,38.0,3893.0,0.0,1250.0,629.0,187.0,308.0,195.0,189.0,573.0,352.0,10.0,56.0,216.0,695.0,34.0,26.0,59.0,58.0,10.0,475.0,213.0,76.0,62.0,90.0,312.0,498.0,27.0,2947.0,3.0,237.0,467.0,2.0,19.0,344.0,42.0,78.0,141.0,137.0,1932.0,4740.0,683.0,2016-12-11,,2016-49,0.3758851955697793,0.522, +242,242,0.89,137.0,0.0,121.0,10.0,164.0,209.0,400.0,90.0,86.0,363.0,4745.0,3874.0,37.0,422.0,1024.0,47.0,47.0,251.0,2852.0,34.0,48.0,621.0,7282.0,133.0,478.0,85.0,1559.0,553.0,39.0,45.0,23.0,94.0,1377.0,551.0,597.0,1964.0,82.0,52.0,10.0,57.0,361.0,50.0,69.0,1155.0,1182.0,23.0,12.0,606.0,189.0,1113.0,13.0,188.0,25.0,185.0,118.0,19.0,49.0,539.0,13.0,381.0,16.0,2003.0,943.0,3401.0,182.0,27.0,6251.0,21.0,1893.0,35.0,164.0,109.0,0.0,89.0,9.0,4812.0,341.0,70.0,15.0,199.0,141.0,26.0,101.0,349.0,309.0,1134.0,341.0,32.0,22.0,25.0,11.0,2636.0,162.0,178.0,156.0,128.0,483.0,3817.0,71.0,2197.0,2181.0,73.0,314.0,687.0,2396.0,470.0,3.0,180.0,112.0,2327.0,994.0,2383.0,13.0,1047.0,97.0,1779.0,738.0,1953.0,3008.0,38.0,5.0,1675.0,2084.0,1.0,2053.0,86.0,64.0,18.0,7.0,568.0,1636.0,1427.0,27.0,137.0,254.0,37.0,86.0,229.0,991.0,189.0,3866.0,70.0,0.0,93.0,1440.0,1486.0,863.0,43.0,239.0,345.0,1092.0,573.0,20.0,87.0,230.0,4.0,69.0,821.0,71.0,9852.0,365.0,2025.0,103.0,65.0,35.0,13.0,26.0,75.0,83.0,106.0,439.0,982.0,427.0,128.0,183.0,47.0,18.0,1085.0,0.0,19.0,1286.0,57.0,882.0,163.0,100.0,344.0,863.0,93.0,84.0,609.0,1526.0,16.0,177.0,95.0,232.0,17.0,19.0,199.0,479.0,1004.0,705.0,32.0,5.0,48.0,58.0,36.0,81.0,28.0,3127.0,17.0,734.0,32.0,48.0,27.0,7.0,358.0,485.0,375.0,896.0,156.0,0.0,15.0,1122.0,53.0,3.0,37.0,129.0,46.0,75.0,79.0,534.0,0.0,315.0,83.0,50.0,17.0,1230.0,2.0,76.0,34.0,676.0,13.0,3080.0,2134.0,390.0,80.0,20.0,2374.0,667.0,157.0,557.0,154.0,16.0,11.0,84.0,118.0,39.0,26.0,4170.0,0.0,764.0,683.0,156.0,277.0,217.0,182.0,469.0,307.0,11.0,54.0,212.0,595.0,38.0,23.0,105.0,44.0,10.0,452.0,216.0,77.0,71.0,90.0,398.0,493.0,45.0,3291.0,15.0,222.0,507.0,9.0,20.0,377.0,59.0,82.0,129.0,218.0,1872.0,5161.0,814.0,2016-12-18,,2016-50,1.06998571910475,0.8320000000000001, +243,243,1.39,112.0,0.0,76.0,10.0,129.0,180.0,369.0,95.0,68.0,320.0,5404.0,3616.0,30.0,276.0,983.0,22.0,35.0,182.0,2060.0,31.0,60.0,590.0,6351.0,96.0,389.0,84.0,1263.0,441.0,18.0,40.0,23.0,82.0,961.0,382.0,655.0,1613.0,55.0,28.0,10.0,36.0,266.0,44.0,56.0,916.0,933.0,22.0,13.0,391.0,155.0,960.0,30.0,173.0,18.0,159.0,65.0,16.0,372.0,570.0,18.0,247.0,17.0,1835.0,845.0,2778.0,193.0,26.0,5941.0,18.0,1542.0,28.0,167.0,87.0,2.0,66.0,11.0,4061.0,252.0,86.0,16.0,224.0,113.0,38.0,59.0,258.0,319.0,999.0,263.0,50.0,62.0,30.0,8.0,2052.0,127.0,121.0,137.0,132.0,363.0,3941.0,47.0,1967.0,1690.0,71.0,210.0,601.0,1913.0,426.0,1.0,147.0,86.0,1837.0,675.0,2032.0,12.0,858.0,109.0,1294.0,524.0,1396.0,1948.0,33.0,7.0,1266.0,1718.0,4.0,1719.0,64.0,34.0,16.0,17.0,455.0,849.0,1125.0,24.0,109.0,198.0,15.0,73.0,248.0,789.0,133.0,3414.0,58.0,0.0,79.0,1231.0,1506.0,757.0,32.0,161.0,250.0,845.0,452.0,19.0,68.0,189.0,7.0,69.0,600.0,58.0,10285.0,289.0,1505.0,107.0,51.0,58.0,14.0,22.0,73.0,75.0,76.0,294.0,740.0,300.0,108.0,193.0,38.0,13.0,761.0,0.0,18.0,992.0,50.0,629.0,132.0,27.0,281.0,729.0,91.0,91.0,512.0,1259.0,19.0,129.0,65.0,191.0,15.0,11.0,145.0,405.0,760.0,587.0,37.0,8.0,43.0,43.0,48.0,70.0,18.0,2556.0,18.0,587.0,30.0,47.0,25.0,12.0,330.0,382.0,324.0,714.0,149.0,0.0,10.0,840.0,48.0,7.0,28.0,105.0,29.0,30.0,63.0,505.0,5.0,244.0,38.0,55.0,18.0,1080.0,6.0,33.0,18.0,557.0,19.0,2448.0,1576.0,342.0,49.0,28.0,2347.0,580.0,165.0,344.0,133.0,32.0,1.0,78.0,64.0,99.0,52.0,3337.0,0.0,529.0,466.0,123.0,240.0,164.0,128.0,411.0,258.0,15.0,46.0,160.0,330.0,24.0,18.0,83.0,35.0,7.0,362.0,184.0,81.0,57.0,92.0,268.0,402.0,18.0,2669.0,13.0,198.0,472.0,5.0,20.0,282.0,42.0,87.0,113.0,139.0,1499.0,3850.0,660.0,2016-12-25,,2016-51,1.3702646327546688,9.0, +244,244,1.63,99.0,0.0,46.0,2.0,132.0,127.0,226.0,69.0,48.0,232.0,4794.0,3545.0,21.0,266.0,1022.0,23.0,24.0,150.0,1849.0,32.0,36.0,514.0,4332.0,102.0,336.0,82.0,1006.0,392.0,11.0,16.0,8.0,69.0,553.0,182.0,726.0,1414.0,41.0,21.0,9.0,63.0,193.0,32.0,37.0,604.0,875.0,30.0,1.0,236.0,130.0,1142.0,20.0,132.0,11.0,115.0,46.0,18.0,196.0,341.0,5.0,226.0,12.0,1527.0,930.0,2413.0,206.0,11.0,6099.0,14.0,1387.0,25.0,157.0,99.0,0.0,40.0,7.0,3759.0,176.0,54.0,17.0,193.0,101.0,15.0,49.0,579.0,246.0,656.0,265.0,31.0,21.0,2.0,2.0,1781.0,57.0,78.0,105.0,76.0,240.0,3438.0,31.0,1822.0,1430.0,48.0,178.0,707.0,1405.0,330.0,1.0,111.0,88.0,1613.0,577.0,1738.0,11.0,634.0,98.0,985.0,510.0,1138.0,1520.0,37.0,6.0,893.0,1485.0,0.0,1596.0,52.0,38.0,18.0,19.0,446.0,626.0,1004.0,15.0,111.0,220.0,16.0,73.0,146.0,648.0,85.0,2923.0,64.0,0.0,63.0,1133.0,1142.0,623.0,38.0,119.0,246.0,684.0,337.0,11.0,53.0,138.0,5.0,61.0,634.0,38.0,10929.0,196.0,1105.0,107.0,34.0,42.0,10.0,20.0,45.0,79.0,71.0,277.0,607.0,173.0,112.0,113.0,31.0,13.0,599.0,0.0,23.0,853.0,46.0,659.0,87.0,21.0,237.0,596.0,88.0,69.0,372.0,1064.0,23.0,142.0,31.0,160.0,8.0,8.0,154.0,318.0,585.0,497.0,31.0,0.0,34.0,26.0,38.0,68.0,11.0,2193.0,8.0,650.0,38.0,52.0,28.0,3.0,377.0,297.0,276.0,588.0,114.0,0.0,11.0,622.0,23.0,0.0,26.0,90.0,24.0,39.0,69.0,477.0,4.0,194.0,50.0,18.0,16.0,784.0,3.0,44.0,22.0,569.0,6.0,2352.0,1373.0,552.0,42.0,16.0,2175.0,551.0,115.0,271.0,101.0,15.0,10.0,77.0,44.0,25.0,67.0,2977.0,0.0,567.0,430.0,117.0,165.0,124.0,110.0,466.0,242.0,12.0,43.0,118.0,271.0,25.0,12.0,61.0,25.0,7.0,318.0,140.0,87.0,41.0,59.0,214.0,446.0,12.0,2397.0,7.0,159.0,474.0,3.0,17.0,242.0,43.0,96.0,67.0,131.0,1465.0,3184.0,760.0,2017-01-01,,2016-52,1.5630573511646124,1.7160000000000002, +245,245,2.39,141.0,10.0,134.0,10.0,203.0,252.0,314.0,116.0,103.0,521.0,6274.0,4308.0,37.0,495.0,1037.0,55.0,39.0,246.0,3032.0,36.0,61.0,660.0,7453.0,129.0,524.0,111.0,1930.0,657.0,43.0,36.0,23.0,100.0,1088.0,425.0,666.0,2306.0,65.0,41.0,19.0,65.0,288.0,68.0,66.0,1183.0,1494.0,20.0,15.0,555.0,210.0,1347.0,24.0,255.0,28.0,225.0,106.0,26.0,130.0,675.0,11.0,281.0,20.0,2342.0,1322.0,3518.0,383.0,15.0,8356.0,19.0,2114.0,44.0,222.0,123.0,2.0,82.0,17.0,4893.0,305.0,111.0,30.0,249.0,134.0,32.0,101.0,423.0,402.0,1252.0,351.0,57.0,23.0,24.0,7.0,2533.0,160.0,145.0,208.0,145.0,451.0,4367.0,83.0,2212.0,2318.0,58.0,307.0,859.0,2168.0,566.0,2.0,195.0,142.0,2453.0,874.0,2692.0,11.0,1022.0,136.0,1756.0,774.0,1827.0,2905.0,32.0,15.0,1389.0,2320.0,0.0,2253.0,93.0,61.0,23.0,17.0,601.0,939.0,1597.0,24.0,155.0,306.0,35.0,112.0,231.0,965.0,247.0,4034.0,83.0,2.0,126.0,1541.0,1511.0,913.0,63.0,235.0,420.0,1198.0,571.0,20.0,88.0,261.0,6.0,105.0,863.0,49.0,12569.0,298.0,1769.0,127.0,70.0,58.0,22.0,17.0,106.0,94.0,92.0,487.0,1028.0,384.0,149.0,173.0,31.0,22.0,1000.0,0.0,26.0,1329.0,63.0,921.0,152.0,24.0,336.0,825.0,122.0,87.0,552.0,1404.0,24.0,228.0,72.0,262.0,19.0,8.0,234.0,490.0,982.0,568.3333333333334,55.0,4.0,50.0,48.0,60.0,89.0,32.0,3364.0,6.0,878.0,39.0,54.0,25.0,3.0,395.0,545.0,439.0,1025.0,166.0,0.0,10.0,985.0,52.0,4.0,36.0,149.0,38.0,76.0,108.0,505.4,2.0,290.0,86.0,77.0,19.0,1286.0,2.0,73.0,40.0,678.0,8.0,3655.0,2176.0,627.0,65.0,37.0,2883.0,729.0,178.0,516.0,134.0,34.0,12.0,96.0,89.0,102.0,34.0,4584.0,0.0,796.0,746.0,189.0,268.0,200.0,206.0,586.0,415.0,9.0,50.0,201.0,482.0,33.0,20.0,71.0,36.0,2.0,548.0,236.0,88.0,66.0,98.0,348.0,516.0,19.0,3332.0,8.0,248.0,559.0,6.0,29.0,324.0,55.0,99.0,141.0,172.0,2333.0,4872.0,798.0,2017-01-08,,2017-1,2.574426921363141,5.354, +246,246,4.31,151.0,8.0,138.0,12.0,211.0,237.0,402.0,147.0,99.0,544.0,6095.0,4105.0,41.0,537.0,984.0,60.0,51.0,262.0,2832.0,45.0,48.0,921.0,8546.0,132.0,580.0,113.0,2028.0,769.0,60.0,35.0,18.0,138.0,1600.0,578.0,732.0,2431.0,76.0,34.0,11.0,44.0,374.0,81.0,79.0,1283.0,1382.0,24.0,11.0,752.0,242.0,1346.0,27.0,1588.0,26.0,218.0,124.0,29.0,108.0,607.0,16.0,327.0,30.0,2571.0,1150.0,3943.0,283.0,33.0,7560.0,26.0,2182.0,59.0,218.0,136.0,2.0,91.0,15.0,4631.0,378.0,106.0,33.0,226.0,172.0,39.0,159.0,364.0,387.0,1263.0,415.0,43.0,36.0,11.0,5.0,2784.0,203.0,242.0,171.0,173.0,575.0,4175.0,117.0,2756.0,2570.0,61.0,414.0,920.0,2634.0,566.0,2.0,209.0,149.0,2701.0,992.0,2760.0,10.0,1259.0,129.0,2068.0,929.0,2306.0,3499.0,53.0,10.0,1890.0,2530.0,0.0,2355.0,100.0,83.0,23.0,18.0,696.0,1050.0,1696.0,30.0,165.0,332.0,44.0,94.0,254.0,1033.0,350.0,4013.0,78.0,5.0,127.0,1635.0,1639.0,915.0,63.0,293.0,381.0,1335.0,744.0,21.0,85.0,285.0,6.0,87.0,879.0,77.0,13699.0,391.0,2392.0,132.0,85.0,72.0,17.0,19.0,123.0,91.0,116.0,488.0,1189.0,570.0,146.0,183.0,54.0,30.0,1196.0,0.0,30.0,1424.0,115.0,860.0,162.0,27.0,340.0,980.0,144.0,97.0,677.0,1587.0,29.0,234.0,106.0,295.0,26.0,8.0,271.0,560.0,1164.0,639.6666666666666,39.0,2.0,48.0,72.0,49.0,87.0,28.0,3746.0,22.0,988.0,55.0,40.0,41.0,5.0,434.0,660.0,542.0,1096.0,180.0,0.0,16.0,1264.0,84.0,3.0,38.0,150.0,51.0,62.0,119.0,533.8,2.0,327.0,101.0,53.0,21.0,1418.0,6.0,78.0,41.0,737.0,15.0,3931.0,2496.0,534.0,74.0,30.0,2703.0,732.0,205.0,504.0,160.0,29.0,15.0,114.0,92.0,60.0,44.0,4861.0,0.0,566.0,798.0,219.0,386.0,267.0,267.0,594.0,454.0,10.0,72.0,216.0,483.0,37.0,20.0,130.0,45.0,5.0,586.0,216.0,101.0,81.0,135.0,400.0,593.0,33.0,3588.0,8.0,264.0,493.0,3.0,31.0,321.0,68.0,150.0,145.0,208.0,2434.0,5249.0,976.0,2017-01-15,,2017-2,4.245196214810562,5.426, +247,247,7.1,146.0,10.0,116.0,7.0,236.0,287.0,490.0,176.0,106.0,546.0,6695.0,3992.0,55.0,496.0,927.0,63.0,50.0,296.0,2770.0,48.0,51.0,671.0,8148.0,132.0,569.0,88.0,1892.0,752.0,70.0,39.0,39.0,112.0,1667.0,648.0,699.0,2656.0,78.0,34.0,14.0,39.0,348.0,84.0,87.0,1449.0,1560.0,35.0,18.0,734.0,256.0,1414.0,27.0,351.0,38.0,240.0,135.0,39.0,92.0,667.0,16.0,321.0,38.0,2397.0,907.0,3618.0,345.0,33.0,7454.0,39.0,2198.0,62.0,225.0,150.0,5.0,80.0,13.0,4609.0,409.0,173.0,45.0,247.0,185.0,32.0,107.0,325.0,415.0,1468.0,408.0,76.0,32.0,17.0,11.0,2830.0,196.0,222.0,175.0,151.0,553.0,4055.0,113.0,2526.0,2489.0,63.0,380.0,863.0,2813.0,586.0,4.0,222.0,142.0,2944.0,965.0,2717.0,9.0,1265.0,107.0,2092.0,883.0,2250.0,3228.0,53.0,10.0,1921.0,2317.0,1.0,2307.0,128.0,84.0,24.0,15.0,710.0,1011.0,1726.0,35.0,185.0,298.0,46.0,125.0,299.0,977.0,398.0,3783.0,71.0,1.0,148.0,1556.0,1561.0,1082.0,68.0,274.0,400.0,1367.0,774.0,32.0,116.0,250.0,12.0,76.0,824.0,94.0,12498.0,363.0,2572.0,120.0,80.0,89.0,53.0,24.0,132.0,104.0,117.0,527.0,1182.0,553.0,147.0,212.0,52.0,28.0,1250.0,0.0,28.0,1426.0,109.0,802.0,210.0,63.0,343.0,935.0,203.0,85.0,699.0,1730.0,31.0,208.0,101.0,285.0,18.0,6.0,278.0,547.0,1095.0,711.0,62.0,6.0,74.0,64.0,72.0,68.0,21.0,3407.0,18.0,943.0,30.0,48.0,26.0,3.0,475.0,655.0,417.0,1096.0,176.0,0.0,18.0,1211.0,90.0,4.0,44.0,144.0,47.0,120.0,152.0,562.2,2.0,313.0,163.0,49.0,24.0,1434.0,3.0,75.0,56.0,664.0,19.0,3496.0,2594.0,451.0,71.0,39.0,3000.0,697.0,190.0,509.0,160.0,31.0,20.0,116.0,109.0,43.0,43.0,4911.0,0.0,554.0,760.0,233.0,352.0,285.0,280.0,560.0,417.0,8.0,55.0,250.0,497.0,47.0,27.0,129.0,53.0,8.0,489.0,223.0,94.0,61.0,231.0,421.0,606.0,31.0,3464.0,6.0,267.0,414.0,4.0,31.0,352.0,69.0,74.0,163.0,166.0,2309.0,5139.0,831.0,2017-01-22,,2017-3,7.180314734203137,5.690000000000001, +248,248,11.81,174.0,3.0,131.0,13.0,189.0,224.0,477.0,149.0,90.0,671.0,6759.0,4017.0,53.0,506.0,993.0,60.0,40.0,304.0,3816.0,54.0,48.0,711.0,8071.0,140.0,547.0,89.0,1807.0,761.0,45.0,59.0,23.0,103.0,1610.0,693.0,741.0,2562.0,81.0,43.0,7.0,54.0,334.0,73.0,67.0,1336.0,1688.0,18.0,16.0,824.0,218.0,1353.0,18.0,190.0,32.0,234.0,164.0,34.0,83.0,552.0,15.0,338.0,48.0,2439.0,956.0,3680.0,282.0,24.0,8836.0,36.0,1902.0,55.0,373.0,141.0,1.0,86.0,11.0,4968.0,395.0,148.0,41.0,276.0,181.0,27.0,137.0,745.0,359.0,1577.0,474.0,59.0,33.0,12.0,4.0,2753.0,211.0,236.0,184.0,163.0,534.0,3902.0,114.0,2333.0,2527.0,67.0,355.0,922.0,2829.0,617.0,1.0,205.0,125.0,2863.0,1089.0,2632.0,9.0,1349.0,127.0,2146.0,944.0,2156.0,3219.0,38.0,7.0,2088.0,2420.0,0.0,2462.0,132.0,67.0,8.0,20.0,742.0,1046.0,1790.0,30.0,164.0,358.0,38.0,122.0,246.0,982.0,368.0,3987.0,61.0,1.0,114.0,1704.0,1314.0,1041.0,60.0,270.0,371.0,1374.0,791.0,27.0,98.0,277.0,4.0,105.0,905.0,102.0,13663.0,433.0,2613.0,135.0,61.0,71.0,36.0,25.0,132.0,99.0,122.0,549.0,1151.0,464.0,136.0,209.0,65.0,21.0,1205.0,0.0,36.0,1385.0,75.0,766.0,155.0,41.0,353.0,854.0,178.0,107.0,672.0,1592.0,23.0,220.0,121.0,334.0,21.0,9.0,273.0,563.0,1249.0,782.3333333333333,49.0,6.0,72.0,74.0,39.0,74.0,43.0,3439.0,16.0,961.0,32.0,53.0,27.0,5.0,505.0,645.0,430.0,1166.0,180.0,0.0,14.0,1279.0,44.0,4.0,38.0,150.0,38.0,81.0,145.0,590.6,3.0,328.0,117.0,49.0,22.0,1478.0,1.0,81.0,55.0,700.0,9.0,3452.0,2313.0,470.0,67.0,21.0,3672.0,691.0,159.0,552.0,176.0,32.0,13.0,95.0,116.0,59.0,30.0,4802.0,0.0,684.0,748.0,233.0,310.0,297.0,238.0,489.0,331.0,12.0,60.0,253.0,442.0,29.0,29.0,123.0,58.0,3.0,518.0,232.0,64.0,98.0,91.0,379.0,534.0,25.0,3717.0,4.0,242.0,390.0,4.0,44.0,358.0,68.0,66.0,153.0,183.0,2298.0,5204.0,779.0,2017-01-29,,2017-4,11.695990128587042,11.860000000000001, +249,249,17.11,143.0,4.0,143.0,7.0,199.0,199.0,449.0,140.0,95.0,603.0,5897.0,4507.0,32.0,529.0,1076.0,63.0,41.0,267.0,2749.0,44.0,38.0,701.0,8416.0,275.0,564.0,78.0,1895.0,683.0,55.0,47.0,56.0,113.0,1694.0,601.0,785.0,2399.0,56.0,45.0,12.0,41.0,293.0,90.0,75.0,1329.0,1655.0,16.0,10.0,743.0,248.0,1426.0,43.0,227.0,30.0,230.0,157.0,38.0,80.0,511.0,17.0,383.0,25.0,2341.0,758.0,3450.0,228.0,29.0,9517.0,23.0,1982.0,72.0,315.0,160.0,12.0,92.0,16.0,5099.0,370.0,132.0,35.0,308.0,226.0,58.0,135.0,354.0,331.0,1341.0,407.0,43.0,28.0,3.0,9.0,2684.0,239.0,234.0,186.0,127.0,494.0,4100.0,154.0,2469.0,2698.0,58.0,353.0,814.0,2628.0,556.0,4.0,201.0,110.0,2833.0,1041.0,2701.0,7.0,1262.0,114.0,2198.0,937.0,2048.0,3391.0,62.0,12.0,1985.0,2434.0,1.0,2341.0,132.0,78.0,38.0,22.0,786.0,997.0,1737.0,29.0,175.0,365.0,32.0,124.0,279.0,1009.0,406.0,4159.0,53.0,2.0,155.0,1772.0,1331.0,1068.0,51.0,277.0,553.0,1317.0,872.0,26.0,117.0,255.0,8.0,97.0,850.0,95.0,13719.0,377.0,2933.0,105.0,68.0,68.0,17.0,20.0,224.0,92.0,114.0,567.0,1146.0,503.0,127.0,171.0,43.0,29.0,1350.0,0.0,28.0,1408.0,47.0,881.0,167.0,21.0,374.0,856.0,192.0,101.0,645.0,1446.0,23.0,225.0,91.0,290.0,13.0,7.0,355.0,625.0,1118.0,853.6666666666665,47.0,1.0,76.0,110.0,50.0,69.0,33.0,3444.0,17.0,901.0,37.0,46.0,26.0,7.0,491.0,795.0,383.0,1070.0,207.0,0.0,20.0,1182.0,48.0,7.0,32.0,136.0,53.0,59.0,122.0,619.0,1.0,325.0,109.0,50.0,26.0,1393.0,3.0,81.0,14.0,679.0,12.0,3381.0,2286.0,541.0,52.0,22.0,3539.0,709.0,176.0,504.0,159.0,26.0,15.0,81.0,85.0,60.0,40.0,5157.0,0.0,1923.0,750.0,213.0,373.0,269.0,316.0,553.0,387.0,16.0,57.0,213.0,484.0,37.0,21.0,117.0,64.0,9.0,558.0,240.0,101.0,128.0,98.0,386.0,533.0,25.0,3854.0,8.0,238.0,417.0,4.0,25.0,336.0,61.0,65.0,172.0,208.0,2337.0,5352.0,884.0,2017-02-05,,2017-5,17.253962681778845,13.77, +250,250,19.91,160.0,1.0,193.0,13.0,205.0,252.0,493.0,131.0,84.0,532.0,5847.0,4555.0,30.0,544.0,860.0,69.0,42.0,298.0,2718.0,48.0,24.0,657.0,8287.0,118.0,567.0,97.0,1890.0,625.0,37.0,50.0,42.0,124.0,1501.0,575.0,704.0,2415.0,74.0,22.0,7.0,50.0,294.0,84.0,83.0,1355.0,1724.0,20.0,17.0,1114.0,223.0,1432.0,21.0,181.0,51.0,235.0,123.0,23.0,63.0,625.0,15.0,372.0,26.0,2483.0,732.0,3632.0,281.0,23.0,10097.0,26.0,2176.0,90.0,268.0,191.0,2.0,90.0,13.0,4961.0,393.0,142.0,30.0,285.0,191.0,30.0,166.0,338.0,344.0,2467.0,418.0,47.0,34.0,8.0,6.0,2923.0,209.0,242.0,199.0,156.0,815.0,4185.0,99.0,2488.0,2902.0,60.0,358.0,788.0,2587.0,583.0,4.0,217.0,162.0,2926.0,1036.0,2657.0,23.0,1286.0,180.0,2051.0,963.0,2077.0,3208.0,84.0,9.0,2029.0,2556.0,1.0,2287.0,105.0,66.0,16.0,22.0,836.0,1029.0,1716.0,25.0,173.0,344.0,52.0,129.0,251.0,1118.0,474.0,4208.0,65.0,2.0,128.0,1720.0,1322.0,1086.0,57.0,267.0,481.0,1312.0,910.0,25.0,103.0,269.0,8.0,102.0,923.0,97.0,12963.0,459.0,3075.0,114.0,87.0,54.0,42.0,25.0,193.0,116.0,110.0,612.0,1223.0,526.0,139.0,205.0,49.0,39.0,1200.0,0.0,34.0,1411.0,109.0,885.0,214.0,26.0,373.0,828.0,151.0,118.0,736.0,1492.0,29.0,246.0,97.0,294.0,21.0,8.0,328.0,647.0,1087.0,925.0,61.0,10.0,66.0,238.0,47.0,50.0,26.0,3584.0,17.0,914.0,41.0,59.0,22.0,10.0,524.0,810.0,433.0,1137.0,167.0,0.0,21.0,1248.0,66.0,4.0,38.0,122.0,51.0,60.0,85.0,452.0,1.0,301.0,99.0,75.0,32.0,1577.0,3.0,69.0,48.0,756.0,17.0,3427.0,2341.0,470.0,58.0,21.0,3374.0,727.0,173.0,506.0,177.0,26.0,14.0,111.0,94.0,62.0,52.0,4752.0,0.0,552.0,797.0,225.0,354.0,303.0,316.0,588.0,390.0,6.0,67.0,221.0,519.0,33.0,27.0,115.0,63.0,14.0,639.0,271.0,94.0,137.0,92.0,408.0,545.0,25.0,3780.0,21.0,333.0,385.0,2.0,23.0,374.0,72.0,56.0,173.0,220.0,2160.0,5475.0,943.0,2017-02-12,,2017-6,19.760312922470845,15.727999999999998, +251,251,17.56,171.0,2.0,112.0,13.0,197.0,214.0,486.0,128.0,119.0,508.0,5473.0,4515.0,42.0,512.0,918.0,51.0,54.0,308.0,2731.0,38.0,41.0,626.0,11357.0,119.0,516.0,108.0,1842.0,542.0,46.0,55.0,26.0,118.0,1673.0,662.0,812.0,2449.0,45.0,41.0,14.0,45.0,322.0,94.0,80.0,1403.0,1808.0,22.0,22.0,1024.0,247.0,1353.0,35.0,129.0,31.0,213.0,91.0,28.0,76.0,585.0,17.0,352.0,33.0,2254.0,1291.0,3622.0,244.0,44.0,9090.0,30.0,2049.0,94.0,212.0,163.0,2.0,93.0,11.0,3808.0,401.0,125.0,28.0,347.0,182.0,33.0,133.0,347.0,327.0,1682.0,406.0,36.0,28.0,13.0,21.0,2793.0,212.0,249.0,203.0,111.0,686.0,4242.0,103.0,2320.0,2373.0,59.0,357.0,762.0,2597.0,555.0,5.0,204.0,135.0,2867.0,1049.0,2796.0,8.0,1253.0,133.0,1956.0,1083.0,2239.0,3296.0,71.0,14.0,1994.0,2456.0,2.0,2262.0,116.0,74.0,24.0,23.0,727.0,1033.0,1683.0,25.0,191.0,302.0,47.0,119.0,261.0,1108.0,350.0,4339.0,58.0,6.0,127.0,1591.0,1189.0,1140.0,55.0,254.0,420.0,1300.0,1058.0,19.0,106.0,261.0,8.0,105.0,956.0,79.0,12303.0,393.0,3409.0,116.0,210.0,56.0,33.0,22.0,298.0,86.0,82.0,512.0,1079.0,507.0,126.0,210.0,41.0,33.0,1214.0,0.0,25.0,1334.0,81.0,879.0,193.0,29.0,348.0,929.0,159.0,105.0,729.0,1657.0,24.0,201.0,97.0,258.0,20.0,13.0,267.0,521.0,1016.0,861.0,47.0,3.0,62.0,174.0,53.0,65.0,29.0,3504.0,23.0,915.0,42.0,49.0,26.0,8.0,491.0,791.0,430.0,1011.0,176.0,0.0,11.0,1105.0,61.0,5.0,29.0,138.0,56.0,74.0,116.0,474.0,5.0,1229.0,120.0,53.0,39.0,1423.0,5.0,70.0,35.0,725.0,16.0,3256.0,2110.0,436.0,54.0,21.0,2717.0,853.0,212.0,494.0,195.0,33.0,9.0,91.0,89.0,53.0,32.0,6704.0,0.0,532.0,796.0,219.0,376.0,298.0,262.0,553.0,344.0,11.0,63.0,236.0,452.0,41.0,27.0,119.0,48.0,9.0,543.0,232.0,101.0,131.0,101.0,348.0,519.0,32.0,3505.0,13.0,299.0,410.0,8.0,27.0,296.0,68.0,60.0,167.0,245.0,2098.0,5401.0,895.0,2017-02-19,,2017-7,17.532399248460095,13.927999999999997, +252,252,14.08,162.0,4.0,111.0,7.0,207.0,208.0,448.0,105.0,80.0,428.0,4917.0,4214.0,36.0,522.0,1080.0,67.0,31.0,308.0,2640.0,38.0,30.0,679.0,7942.0,103.0,509.0,126.0,1795.0,549.0,28.0,39.0,35.0,98.0,1553.0,638.0,830.0,2544.0,47.0,28.0,10.0,46.0,301.0,100.0,70.0,1366.0,1605.0,34.0,20.0,848.0,288.0,1402.0,17.0,179.0,61.0,224.0,102.0,12.0,43.0,558.0,22.0,359.0,40.0,2175.0,1008.0,3701.0,283.0,25.0,7264.0,25.0,2047.0,92.0,240.0,157.0,2.0,93.0,21.0,3847.0,345.0,117.0,32.0,242.0,184.0,35.0,124.0,399.0,332.0,1422.0,411.0,40.0,33.0,6.0,11.0,10806.0,191.0,236.0,172.0,125.0,616.0,4010.0,69.0,2268.0,2530.0,59.0,307.0,816.0,2483.0,562.0,4.0,182.0,111.0,2782.0,965.0,2898.0,11.0,1269.0,128.0,2081.0,973.0,2045.0,3164.0,48.0,6.0,2017.0,2488.0,2.0,2301.0,83.0,53.0,26.0,7.0,777.0,1012.0,1669.0,29.0,179.0,326.0,36.0,114.0,244.0,949.0,224.0,4364.0,64.0,1.0,122.0,1594.0,1258.0,1157.0,59.0,259.0,406.0,1227.0,826.0,19.0,85.0,220.0,9.0,90.0,1133.0,84.0,10445.0,403.0,3593.0,112.0,152.0,62.0,34.0,25.0,283.0,112.0,98.0,502.0,1039.0,513.0,120.0,228.0,43.0,28.0,1231.0,0.0,32.0,1344.0,98.0,923.0,166.0,36.0,421.0,953.0,153.0,93.0,761.0,1701.0,27.0,188.0,82.0,286.0,21.0,8.0,299.0,464.0,1001.0,856.0,55.0,3.0,76.0,132.0,38.0,64.0,49.0,3255.0,18.0,911.0,46.0,68.0,24.0,8.0,575.0,731.0,459.0,1104.0,194.0,0.0,16.0,1135.0,48.0,6.0,41.0,141.0,44.0,48.0,102.0,422.0,2.0,306.0,109.0,64.0,29.0,1419.0,5.0,79.0,28.0,803.0,7.0,3772.0,2047.0,443.0,70.0,22.0,2142.0,818.0,187.0,497.0,138.0,25.0,12.0,125.0,84.0,48.0,31.0,4631.0,0.0,477.0,844.0,272.0,411.0,292.0,270.0,660.0,330.0,7.0,75.0,215.0,433.0,35.0,24.0,102.0,47.0,2.0,584.0,287.0,108.0,96.0,101.0,557.0,545.0,19.0,3097.0,11.0,295.0,384.0,7.0,21.0,389.0,68.0,67.0,164.0,246.0,2135.0,5756.0,928.0,2017-02-26,,2017-8,13.94040886669471,13.172, +253,253,7.35,158.0,0.0,121.0,9.0,161.0,232.0,444.0,126.0,102.0,507.0,3839.0,4051.0,37.0,555.0,1029.0,50.0,38.0,250.0,2529.0,36.0,21.0,596.0,7662.0,135.0,576.0,94.0,1809.0,616.0,34.0,35.0,24.0,109.0,1356.0,554.0,717.0,2476.0,59.0,21.0,11.0,73.0,357.0,82.0,69.0,1379.0,1672.0,24.0,15.0,798.0,233.0,1320.0,28.0,211.0,79.0,223.0,99.0,13.0,39.0,549.0,19.0,332.0,19.0,2079.0,888.0,3374.0,281.0,21.0,5701.0,23.0,1985.0,88.0,267.0,140.0,1.0,70.0,17.0,3621.0,376.0,118.0,14.0,180.0,148.0,37.0,98.0,407.0,333.0,1227.0,429.0,87.0,35.0,11.0,5.0,3507.0,233.0,210.0,251.0,131.0,602.0,3845.0,65.0,2428.0,2549.0,51.0,341.0,1170.0,2380.0,572.0,4.0,203.0,102.0,2882.0,941.0,2772.0,14.0,1200.0,111.0,1757.0,881.0,2068.0,3011.0,34.0,15.0,1842.0,2371.0,1.0,2335.0,69.0,59.0,17.0,17.0,785.0,966.0,1783.0,25.0,170.0,374.0,44.0,126.0,309.0,865.0,156.0,4204.0,91.0,0.0,135.0,1628.0,1156.0,1135.0,56.0,250.0,370.0,1163.0,768.0,21.0,77.0,255.0,6.0,97.0,928.0,104.0,9208.0,324.0,2808.0,95.0,107.0,46.0,25.0,25.0,197.0,114.0,102.0,480.0,1038.0,507.0,103.0,215.0,49.0,30.0,1397.0,0.0,30.0,1455.0,92.0,968.0,170.0,37.0,398.0,835.0,108.0,112.0,723.0,1597.0,18.0,172.0,101.0,261.0,19.0,9.0,264.0,448.0,868.0,897.0,35.0,5.0,49.0,110.0,48.0,56.0,43.0,3179.0,27.0,732.0,40.0,87.0,28.0,14.0,479.0,650.0,440.0,1033.0,166.0,0.0,9.0,1063.0,67.0,0.0,41.0,144.0,31.0,37.0,98.0,414.0,1.0,261.0,117.0,55.0,27.0,1490.0,3.0,70.0,33.0,796.0,17.0,3306.0,2105.0,407.0,66.0,20.0,1915.0,857.0,133.0,458.0,133.0,33.0,11.0,109.0,86.0,50.0,35.0,4460.0,0.0,542.0,757.0,213.0,405.0,248.0,236.0,536.0,322.0,8.0,65.0,224.0,398.0,32.0,20.0,134.0,73.0,7.0,612.0,311.0,89.0,198.0,84.0,347.0,486.0,17.0,2889.0,15.0,336.0,380.0,3.0,15.0,370.0,66.0,64.0,173.0,249.0,2004.0,5472.0,975.0,2017-03-05,,2017-9,7.4175960299575365,5.558, +254,254,4.04,143.0,6.0,103.0,12.0,183.0,258.0,472.0,89.0,90.0,540.0,3571.0,3608.0,46.0,528.0,759.0,79.0,55.0,250.0,3555.0,56.0,35.0,1002.0,7707.0,153.0,533.0,81.0,1894.0,661.0,61.0,56.0,34.0,135.0,1452.0,638.0,835.0,2656.0,57.0,47.0,17.0,61.0,330.0,59.0,58.0,1480.0,1748.0,21.0,30.0,947.0,213.0,1320.0,46.0,162.0,64.0,217.0,142.0,21.0,50.0,558.0,13.0,352.0,31.0,2026.0,846.0,3448.0,266.0,27.0,5021.0,32.0,2243.0,98.0,228.0,121.0,4.0,100.0,24.0,3756.0,323.0,120.0,32.0,197.0,137.0,30.0,98.0,378.0,360.0,1577.0,376.0,51.0,54.0,18.0,14.0,2735.0,188.0,214.0,182.0,169.0,619.0,4173.0,64.0,2418.0,2557.0,50.0,335.0,744.0,2662.0,500.0,2.0,162.0,146.0,3023.0,975.0,2652.0,8.0,1235.0,118.0,1998.0,930.0,2563.0,3709.0,35.0,19.0,2049.0,2317.0,6.0,2334.0,76.0,52.0,16.0,20.0,676.0,1054.0,1681.0,33.0,177.0,321.0,50.0,128.0,381.0,942.0,172.0,4496.0,93.0,2.0,149.0,1607.0,1121.0,1137.0,84.0,292.0,440.0,1201.0,715.0,7.0,105.0,271.0,12.0,95.0,750.0,93.0,8042.0,418.0,3238.0,104.0,126.0,84.0,54.0,25.0,316.0,100.0,114.0,524.0,1056.0,571.0,144.0,257.0,62.0,31.0,1250.0,0.0,29.0,1317.0,103.0,842.0,188.0,46.0,400.0,863.0,110.0,1621.0,745.0,1589.0,27.0,242.0,65.0,253.0,23.0,15.0,358.0,444.0,948.0,882.0,33.0,4.0,63.0,126.0,68.0,64.0,27.0,3392.0,24.0,851.0,37.0,49.0,28.0,25.0,498.0,723.0,492.0,1178.0,165.0,0.0,10.0,1169.0,79.0,3.0,46.0,160.0,49.0,57.0,107.0,414.0,5.0,277.0,109.0,61.0,38.0,1493.0,5.0,72.0,42.0,777.0,21.0,3207.0,2252.0,458.0,71.0,45.0,1776.0,854.0,156.0,494.0,137.0,32.0,6.0,125.0,105.0,60.0,31.0,4436.0,0.0,648.0,705.0,232.0,396.0,282.0,245.0,610.0,689.0,14.0,55.0,234.0,418.0,41.0,25.0,138.0,50.0,6.0,563.0,212.0,165.0,121.0,120.0,331.0,546.0,24.0,2869.0,18.0,388.0,461.0,10.0,19.0,371.0,64.0,44.0,141.0,246.0,2100.0,5450.0,891.0,2017-03-12,,2017-10,4.1123341314339115,4.256, +255,255,2.06,133.0,1.0,102.0,7.0,209.0,188.0,413.0,110.0,80.0,472.0,2876.0,3265.0,45.0,541.0,945.0,66.0,45.0,228.0,3709.0,29.0,13.0,662.0,7965.0,167.0,500.0,119.0,1975.0,648.0,54.0,26.0,26.0,89.0,1344.0,613.0,1482.0,2651.0,76.0,35.0,8.0,54.0,400.0,64.0,72.0,1404.0,1695.0,24.0,39.0,776.0,234.0,1370.0,32.0,315.0,111.0,188.0,96.0,14.0,48.0,506.0,13.0,383.0,20.0,2066.0,744.0,3379.0,242.0,24.0,3963.0,25.0,2109.0,132.0,181.0,103.0,0.0,75.0,14.0,3741.0,312.0,96.0,20.0,169.0,119.0,16.0,98.0,310.0,320.0,1295.0,313.0,38.0,19.0,7.0,12.0,2365.0,172.0,179.0,192.0,134.0,584.0,3942.0,57.0,2130.0,2203.0,67.0,382.0,838.0,2507.0,678.0,4.0,215.0,131.0,2916.0,902.0,2856.0,9.0,1090.0,134.0,2014.0,764.0,2048.0,3049.0,43.0,5.0,2155.0,2258.0,1.0,2448.0,89.0,71.0,31.0,21.0,706.0,917.0,1613.0,23.0,194.0,356.0,53.0,142.0,318.0,935.0,162.0,4466.0,69.0,0.0,126.0,1559.0,1181.0,1171.0,64.0,328.0,369.0,1148.0,789.0,12.0,87.0,258.0,5.0,87.0,749.0,57.0,6854.0,438.0,2756.0,118.0,61.0,62.0,45.0,17.0,171.0,103.0,97.0,484.0,1093.0,516.0,128.0,254.0,57.0,30.0,1604.0,0.0,30.0,1152.0,97.0,726.0,190.0,28.0,349.0,906.0,115.0,27055.0,717.0,1503.0,20.0,246.0,76.0,291.0,8.0,4.0,256.0,501.0,1090.0,1006.0,54.0,4.0,73.0,108.0,42.0,72.0,29.0,3167.0,12.0,695.0,37.0,71.0,21.0,1.0,492.0,587.0,538.0,1106.0,143.0,0.0,7.0,1037.0,59.0,3.0,34.0,132.0,51.0,70.0,107.0,412.0,0.0,264.0,84.0,56.0,19.0,1370.0,2.0,51.0,44.0,842.0,11.0,3990.0,2206.0,486.0,78.0,15.0,1590.0,923.0,162.0,442.0,155.0,37.0,15.0,139.0,112.0,61.0,31.0,4617.0,0.0,714.0,701.0,237.0,396.0,229.0,201.0,486.0,544.0,11.0,74.0,223.0,388.0,32.0,12.0,126.0,42.0,5.0,575.0,246.0,88.0,81.0,90.0,371.0,506.0,14.0,2807.0,13.0,367.0,404.0,6.0,15.0,334.0,55.0,63.0,164.0,227.0,1876.0,5634.0,826.0,2017-03-19,,2017-11,2.048173958720497,1.688, +256,256,1.27,138.0,2.0,95.0,5.0,191.0,253.0,400.0,121.0,122.0,504.0,3219.0,3091.0,34.0,495.0,957.0,36.0,50.0,233.0,3414.0,55.0,22.0,1095.0,7931.0,127.0,502.0,99.0,1807.0,634.0,45.0,38.0,28.0,106.0,1631.0,802.0,1015.0,2598.0,67.0,30.0,7.0,87.0,578.0,105.0,60.0,1351.0,1435.0,33.0,18.0,990.0,264.0,1472.0,29.0,168.0,740.0,167.0,85.0,29.0,44.0,565.0,10.0,293.0,19.0,1884.0,710.0,3289.0,263.0,19.0,3610.0,18.0,2034.0,116.0,201.0,160.0,1.0,87.0,26.0,3753.0,406.0,98.0,18.0,151.0,150.0,27.0,110.0,425.0,327.0,1198.0,440.0,43.0,19.0,6.0,6.0,2290.0,205.0,194.0,172.0,135.0,629.0,4130.0,63.0,2247.0,2372.0,66.0,381.0,1023.0,2554.0,542.0,5.0,166.0,142.0,2801.0,948.0,2683.0,11.0,1146.0,118.0,2037.0,953.0,2171.0,3212.0,26.0,4.0,1921.0,2042.0,4.0,3017.0,80.0,74.0,13.0,20.0,706.0,935.0,1636.0,21.0,164.0,284.0,32.0,103.0,306.0,920.0,177.0,4438.0,79.0,1.0,127.0,1492.0,1181.0,1189.0,66.0,302.0,1008.0,1189.0,721.0,35.0,124.0,258.0,3.0,75.0,931.0,60.0,6728.0,410.0,2745.0,107.0,68.0,65.0,41.0,22.0,160.0,109.0,117.0,511.0,1023.0,531.0,135.0,287.0,43.0,30.0,1689.0,0.0,31.0,1111.0,90.0,893.0,183.0,24.0,343.0,834.0,108.0,2261.0,788.0,1408.0,26.0,231.0,83.0,257.0,14.0,12.0,529.0,457.0,983.0,902.0,31.0,3.0,77.0,91.0,43.0,48.0,17.0,3100.0,15.0,1233.0,32.0,46.0,24.0,7.0,577.0,611.0,489.0,1128.0,164.0,0.0,15.0,1104.0,53.0,4.0,39.0,154.0,37.0,64.0,122.0,334.0,1.0,358.0,82.0,51.0,25.0,1421.0,2.0,51.0,47.0,710.0,11.0,3188.0,2325.0,470.0,73.0,26.0,1634.0,931.0,163.0,532.0,141.0,43.0,9.0,102.0,95.0,47.0,46.0,4600.0,0.0,801.0,665.0,318.0,334.0,206.0,497.0,516.0,487.0,9.0,70.0,246.0,355.0,38.0,15.0,114.0,43.0,8.0,526.0,274.0,93.0,94.0,82.0,361.0,518.0,16.0,2737.0,22.0,268.0,419.0,5.0,35.0,325.0,67.0,40.0,144.0,220.0,2025.0,5459.0,856.0,2017-03-26,,2017-12,0.9616002104448143,2.436, +257,257,0.74,130.0,2.0,112.0,7.0,138.0,198.0,394.0,101.0,80.0,401.0,2838.0,2805.0,44.0,513.0,849.0,35.0,36.0,217.0,3879.0,38.0,17.0,626.0,7325.0,109.0,524.0,96.0,1755.0,611.0,39.0,33.0,26.0,89.0,1457.0,587.0,923.0,2429.0,70.0,33.0,6.0,36.0,369.0,126.0,33.0,1179.0,1343.0,30.0,20.0,884.0,229.0,1427.0,28.0,151.0,738.0,196.0,66.0,21.0,39.0,665.0,25.0,293.0,18.0,1830.0,591.0,3939.0,234.0,30.0,3252.0,16.0,1917.0,142.0,278.0,152.0,2.0,76.0,19.0,3464.0,360.0,103.0,9.0,152.0,109.0,25.0,85.0,283.0,319.0,1192.0,390.0,39.0,29.0,11.0,12.0,2278.0,189.0,202.0,167.0,111.0,563.0,4161.0,81.0,2251.0,2040.0,65.0,317.0,793.0,2292.0,548.0,1.0,178.0,106.0,2632.0,823.0,2457.0,7.0,981.0,119.0,1969.0,830.0,1879.0,2930.0,37.0,9.0,1788.0,1978.0,5.0,2260.0,65.0,58.0,27.0,11.0,650.0,928.0,1466.0,28.0,188.0,287.0,27.0,121.0,287.0,945.0,203.0,4045.0,68.0,1.0,137.0,1408.0,1081.0,947.0,55.0,305.0,403.0,1145.0,792.0,17.0,86.0,184.0,2.0,131.0,777.0,60.0,6251.0,363.0,2743.0,87.0,76.0,69.0,15.0,27.0,138.0,86.0,104.0,462.0,980.0,439.0,118.0,233.0,53.0,26.0,1206.0,0.0,28.0,1019.0,87.0,898.0,151.0,27.0,416.0,804.0,93.0,427.0,660.0,1347.0,13.0,213.0,83.0,254.0,17.0,7.0,302.0,458.0,1099.0,895.0,51.0,8.0,65.0,67.0,51.0,48.0,25.0,3013.0,14.0,740.0,47.0,56.0,20.0,3.0,453.0,602.0,401.0,1081.0,168.0,0.0,9.0,1000.0,38.0,4.0,30.0,145.0,26.0,56.0,83.0,287.0,2.0,285.0,90.0,42.0,28.0,1239.0,3.0,68.0,45.0,791.0,8.0,3044.0,2020.0,496.0,59.0,18.0,1346.0,939.0,139.0,526.0,135.0,29.0,4.0,123.0,95.0,48.0,39.0,4170.0,0.0,653.0,550.0,346.0,306.0,222.0,264.0,533.0,368.0,11.0,63.0,210.0,381.0,40.0,16.0,111.0,45.0,6.0,525.0,271.0,94.0,123.0,71.0,354.0,450.0,23.0,2701.0,5.0,273.0,356.0,3.0,20.0,307.0,56.0,44.0,112.0,191.0,1728.0,5131.0,790.0,2017-04-02,,2017-13,0.5987296917890035,1.0440000000000003, +258,258,0.47,141.0,0.0,95.0,6.0,128.0,216.0,373.0,99.0,84.0,464.0,2415.0,2613.0,30.0,446.0,878.0,56.0,53.0,206.0,3497.0,34.0,25.0,629.0,6483.0,121.0,491.0,76.0,1641.0,590.0,41.0,35.0,35.0,121.0,1419.0,588.0,812.0,2534.0,64.0,51.0,5.0,42.0,477.0,111.0,53.0,1243.0,1334.0,15.0,12.0,970.0,199.0,1311.0,25.0,123.0,1631.0,152.0,71.0,22.0,55.0,745.0,27.0,294.0,18.0,1873.0,601.0,3902.0,184.0,23.0,2840.0,24.0,1761.0,218.0,178.0,111.0,0.0,56.0,15.0,3248.0,400.0,89.0,24.0,120.0,111.0,26.0,82.0,276.0,284.0,1307.0,598.0,35.0,26.0,7.0,27.0,2174.0,186.0,232.0,170.0,92.0,613.0,4283.0,70.0,2248.0,2085.0,47.0,331.0,770.0,2152.0,436.0,2.0,184.0,108.0,2561.0,844.0,2461.0,5.0,1079.0,110.0,1865.0,796.0,1863.0,2495.0,29.0,7.0,1771.0,2013.0,4.0,2105.0,63.0,63.0,20.0,17.0,656.0,849.0,1844.0,20.0,156.0,286.0,36.0,102.0,259.0,976.0,156.0,3917.0,61.0,1.0,106.0,1250.0,1019.0,951.0,54.0,271.0,367.0,1160.0,729.0,14.0,84.0,200.0,6.0,83.0,766.0,57.0,5906.0,352.0,2899.0,91.0,52.0,45.0,11.0,42.0,141.0,95.0,124.0,439.0,949.0,464.0,105.0,255.0,42.0,24.0,1183.0,0.0,25.0,1102.0,46.0,777.0,144.0,17.0,330.0,742.0,105.0,272.0,626.0,1325.0,21.0,189.0,53.0,209.0,31.0,9.0,298.0,466.0,942.0,826.0,35.0,5.0,63.0,98.0,36.0,40.0,25.0,2890.0,13.0,715.0,23.0,35.0,19.0,5.0,547.0,638.0,407.0,967.0,138.0,0.0,11.0,1032.0,35.0,0.0,28.0,127.0,39.0,45.0,73.0,288.0,0.0,277.0,89.0,71.0,29.0,1303.0,4.0,78.0,43.0,724.0,7.0,2696.0,1900.0,478.0,42.0,24.0,1223.0,839.0,144.0,495.0,148.0,36.0,7.0,90.0,72.0,38.0,28.0,4056.0,0.0,496.0,582.0,351.0,348.0,254.0,419.0,398.0,379.0,19.0,53.0,191.0,399.0,32.0,15.0,146.0,52.0,13.0,491.0,209.0,72.0,134.0,71.0,281.0,464.0,39.0,2218.0,11.0,272.0,350.0,3.0,15.0,337.0,43.0,66.0,118.0,179.0,1923.0,5259.0,751.0,2017-04-09,,2017-14,0.58098210022861,1.9180000000000001, +259,259,0.19,116.0,1.0,74.0,7.0,166.0,171.0,347.0,74.0,76.0,406.0,1937.0,2458.0,32.0,367.0,978.0,45.0,28.0,181.0,3088.0,24.0,21.0,618.0,7252.0,134.0,415.0,79.0,1855.0,504.0,30.0,39.0,30.0,91.0,1571.0,471.0,717.0,2252.0,57.0,32.0,8.0,31.0,493.0,100.0,47.0,1032.0,1166.0,18.0,9.0,732.0,184.0,1456.0,32.0,93.0,989.0,140.0,59.0,22.0,40.0,458.0,19.0,320.0,16.0,1860.0,660.0,8087.0,257.0,24.0,2514.0,23.0,1583.0,157.0,237.0,94.0,4.0,49.0,19.0,3327.0,313.0,116.0,17.0,107.0,90.0,36.0,72.0,762.0,240.0,1042.0,288.0,41.0,20.0,8.0,18.0,2014.0,168.0,166.0,187.0,104.0,476.0,4409.0,56.0,2263.0,1784.0,36.0,277.0,702.0,2496.0,415.0,4.0,153.0,93.0,2209.0,739.0,2419.0,7.0,877.0,81.0,1561.0,688.0,1368.0,1830.0,24.0,8.0,1313.0,1895.0,1.0,1906.0,72.0,48.0,21.0,10.0,610.0,790.0,1332.0,14.0,138.0,306.0,20.0,81.0,268.0,762.0,120.0,3562.0,84.0,0.0,87.0,1184.0,1228.0,976.0,38.0,224.0,296.0,1020.0,593.0,16.0,77.0,176.0,5.0,100.0,716.0,49.0,5578.0,311.0,2242.0,78.0,56.0,31.0,14.0,30.0,102.0,87.0,102.0,420.0,775.0,334.0,155.0,237.0,35.0,18.0,896.0,0.0,24.0,885.0,55.0,675.0,158.0,31.0,242.0,626.0,88.0,187.0,526.0,1237.0,20.0,128.0,68.0,221.0,19.0,13.0,210.0,456.0,816.0,724.0,50.0,5.0,62.0,74.0,50.0,42.0,20.0,2600.0,8.0,653.0,33.0,59.0,17.0,6.0,1112.0,485.0,323.0,866.0,154.0,0.0,10.0,799.0,44.0,1.0,28.0,112.0,51.0,34.0,60.0,260.0,2.0,230.0,72.0,36.0,22.0,1141.0,2.0,67.0,47.0,661.0,7.0,2686.0,1710.0,420.0,48.0,16.0,1306.0,855.0,121.0,400.0,132.0,28.0,11.0,111.0,97.0,34.0,29.0,4954.0,0.0,717.0,523.0,243.0,324.0,158.0,311.0,505.0,281.0,7.0,47.0,175.0,342.0,37.0,13.0,108.0,31.0,3.0,466.0,197.0,80.0,77.0,97.0,233.0,419.0,27.0,1732.0,8.0,340.0,299.0,9.0,24.0,282.0,42.0,37.0,121.0,199.0,1771.0,4842.0,644.0,2017-04-16,,2017-15,0.24737306322602137,1.85, +260,260,0.03,169.0,3.0,115.0,2.0,157.0,191.0,522.0,51.0,85.0,284.0,2699.0,2059.0,56.0,370.0,818.0,64.0,31.0,228.0,4595.0,55.0,19.0,642.0,6483.0,95.0,462.0,107.0,1617.0,586.0,38.0,33.0,29.0,106.0,1543.0,646.0,715.0,1951.0,42.0,38.0,12.0,55.0,274.0,56.0,58.0,1209.0,939.0,32.0,11.0,611.0,204.0,1075.0,26.0,130.0,89.0,255.0,93.0,22.0,57.0,500.0,23.0,233.0,13.0,2274.0,699.0,3930.0,587.0,33.0,4062.0,32.0,1931.0,90.0,246.0,146.0,1.0,72.0,21.0,3600.0,335.0,137.0,18.0,147.0,152.0,21.0,93.0,395.0,288.0,1227.0,308.0,47.0,40.0,1.0,5.0,2184.0,153.0,216.0,174.0,116.0,355.0,5198.0,56.0,2741.0,2084.0,65.0,303.0,696.0,2034.0,433.0,1.0,166.0,84.0,2251.0,696.0,2117.0,7.0,800.0,122.0,1919.0,801.0,1812.0,2612.0,119.0,9.0,1674.0,2056.0,0.0,2083.0,76.0,57.0,20.0,21.0,578.0,748.0,1498.0,27.0,156.0,249.0,48.0,100.0,227.0,738.0,214.0,2831.0,65.0,0.0,118.0,1140.0,1106.0,891.0,61.0,250.0,290.0,1106.0,747.0,25.0,107.0,175.0,4.0,70.0,997.0,57.0,6818.0,396.0,2015.0,75.0,49.0,45.0,9.0,22.0,98.0,61.0,122.0,424.0,830.0,415.0,153.0,252.0,41.0,21.0,901.0,213.0,18.0,1105.0,62.0,785.0,143.0,45.0,305.0,695.0,105.0,100.0,695.0,1297.0,23.0,165.0,58.0,207.0,30.0,5.0,246.0,455.0,925.0,953.0,34.0,3.0,63.0,83.0,342.0,45.0,31.0,2762.0,28.0,643.0,38.0,38.0,42.0,5.0,439.0,529.0,382.0,1063.0,128.0,21.0,21.0,931.0,52.0,3.0,26.0,142.0,38.0,37.0,61.0,235.0,2.0,208.0,81.0,39.0,21.0,1168.0,2.0,72.0,47.0,675.0,7.0,3020.0,1701.0,339.0,69.0,18.0,1600.0,725.0,125.0,443.0,140.0,24.0,40.0,111.0,62.0,64.0,82.0,4496.0,50.0,472.0,549.0,209.0,398.0,252.0,205.0,434.0,354.0,8.0,64.0,189.0,308.0,36.0,23.0,118.0,47.0,3.0,432.0,218.0,68.0,67.0,82.0,257.0,493.0,44.0,2498.0,7.0,234.0,315.0,3.0,22.0,283.0,61.0,51.0,173.0,228.0,1777.0,5083.0,704.0,2017-10-22,,2017-42,0.17147780981392913,0.034, +261,261,0.05,128.0,0.0,111.0,4.0,210.0,171.0,533.0,64.0,73.0,268.0,2372.0,2070.0,39.0,346.0,793.0,57.0,23.0,185.0,3516.0,83.0,9.0,622.0,6260.0,121.0,443.0,94.0,1460.0,630.0,32.0,41.0,38.0,108.0,1293.0,529.0,865.0,2344.0,52.0,19.0,11.0,125.0,265.0,68.0,34.0,1138.0,1064.0,18.0,12.0,578.0,206.0,1088.0,37.0,146.0,68.0,235.0,75.0,27.0,48.0,493.0,10.0,273.0,11.0,1913.0,1204.0,4107.0,401.0,20.0,3699.0,17.0,1763.0,73.0,359.0,143.0,0.0,88.0,13.0,3549.0,302.0,118.0,27.0,116.0,164.0,20.0,95.0,381.0,230.0,1231.0,297.0,23.0,69.0,5.0,15.0,2291.0,179.0,218.0,154.0,116.0,307.0,5134.0,81.0,2201.0,1982.0,49.0,334.0,667.0,1933.0,449.0,3.0,199.0,79.0,2212.0,764.0,2269.0,11.0,871.0,102.0,1855.0,791.0,1800.0,2479.0,88.0,6.0,1689.0,2077.0,3.0,2494.0,73.0,59.0,10.0,12.0,668.0,821.0,1516.0,25.0,134.0,318.0,21.0,111.0,230.0,682.0,230.0,2750.0,60.0,3.0,98.0,1201.0,1265.0,861.0,58.0,261.0,296.0,1151.0,735.0,34.0,113.0,206.0,4.0,70.0,962.0,52.0,6681.0,346.0,2102.0,91.0,66.0,36.0,10.0,25.0,101.0,100.0,83.0,387.0,916.0,393.0,179.0,259.0,30.0,20.0,927.0,218.0,23.0,1050.0,65.0,615.0,119.0,29.0,323.0,678.0,126.0,206.0,649.0,1268.0,21.0,168.0,85.0,223.0,23.0,10.0,251.0,504.0,852.0,869.0,49.0,0.0,56.0,70.0,290.0,93.0,22.0,2682.0,18.0,585.0,28.0,38.0,32.0,5.0,450.0,559.0,341.0,942.0,156.0,22.0,31.0,996.0,50.0,10.0,32.0,138.0,28.0,64.0,86.0,209.0,0.0,223.0,93.0,40.0,16.0,1081.0,1.0,68.0,28.0,718.0,15.0,3459.0,1659.0,360.0,68.0,15.0,1729.0,693.0,124.0,459.0,116.0,17.0,30.0,106.0,56.0,39.0,22.0,4396.0,43.0,504.0,462.0,240.0,291.0,238.0,174.0,402.0,334.0,13.0,45.0,184.0,327.0,33.0,26.0,111.0,41.0,4.0,409.0,208.0,75.0,60.0,103.0,306.0,438.0,29.0,2136.0,8.0,230.0,284.0,5.0,22.0,282.0,34.0,41.0,135.0,175.0,1852.0,4949.0,659.0,2017-10-29,,2017-43,-0.04585437627888922,0.324, +262,262,0.03,116.0,1.0,97.0,13.0,217.0,153.0,399.0,90.0,98.0,289.0,2504.0,2065.0,35.0,378.0,912.0,62.0,33.0,178.0,4476.0,39.0,19.0,548.0,6059.0,135.0,436.0,111.0,1412.0,503.0,35.0,20.0,31.0,119.0,1137.0,439.0,675.0,1889.0,62.0,22.0,22.0,78.0,358.0,51.0,52.0,1104.0,893.0,39.0,8.0,505.0,170.0,1125.0,36.0,143.0,77.0,174.0,73.0,29.0,62.0,570.0,20.0,279.0,27.0,1820.0,1037.0,4092.0,324.0,22.0,3716.0,23.0,1665.0,83.0,237.0,82.0,3.0,68.0,9.0,3634.0,339.0,118.0,28.0,143.0,123.0,9.0,78.0,414.0,280.0,1268.0,337.0,34.0,32.0,4.0,6.0,2066.0,160.0,219.0,160.0,108.0,379.0,5568.0,64.0,2399.0,2330.0,54.0,260.0,700.0,1724.0,382.0,3.0,177.0,78.0,1966.0,707.0,2175.0,10.0,625.0,84.0,1655.0,759.0,1625.0,2184.0,106.0,10.0,1605.0,2071.0,0.0,1933.0,86.0,58.0,27.0,21.0,764.0,821.0,1293.0,18.0,140.0,259.0,30.0,100.0,202.0,641.0,243.0,2805.0,60.0,4.0,100.0,1157.0,1256.0,747.0,59.0,241.0,313.0,1005.0,681.0,21.0,90.0,167.0,3.0,84.0,1010.0,50.0,6553.0,272.0,1754.0,78.0,61.0,49.0,21.0,28.0,119.0,86.0,74.0,427.0,812.0,333.0,150.0,238.0,37.0,24.0,886.0,233.0,29.0,1037.0,59.0,438.0,123.0,30.0,292.0,679.0,141.0,121.0,595.0,1194.0,17.0,197.0,67.0,267.0,22.0,16.0,231.0,463.0,673.0,774.0,28.0,1.0,46.0,78.0,183.0,66.0,13.0,2498.0,8.0,764.0,27.0,40.0,36.0,5.0,383.0,447.0,356.0,941.0,135.0,22.0,31.0,824.0,78.0,3.0,23.0,158.0,53.0,58.0,73.0,226.0,1.0,260.0,99.0,49.0,17.0,1022.0,1.0,78.0,44.0,640.0,13.0,2855.0,1710.0,480.0,61.0,19.0,1815.0,664.0,137.0,404.0,133.0,23.0,32.0,86.0,73.0,47.0,23.0,4256.0,34.0,415.0,482.0,255.0,345.0,265.0,199.0,494.0,350.0,9.0,46.0,151.0,339.0,30.0,22.0,114.0,59.0,1.0,447.0,182.0,73.0,68.0,103.0,266.0,465.0,22.0,2029.0,7.0,251.0,316.0,6.0,16.0,299.0,75.0,54.0,144.0,152.0,1841.0,4489.0,676.0,2017-11-05,,2017-44,-0.15458915815068508,0.7839999999999999, +263,263,0.06,159.0,3.0,147.0,3.0,235.0,206.0,441.0,93.0,75.0,378.0,2769.0,1996.0,31.0,376.0,749.0,84.0,28.0,176.0,3521.0,36.0,17.0,539.0,7148.0,119.0,470.0,90.0,1680.0,525.0,60.0,48.0,34.0,110.0,1572.0,625.0,786.0,2156.0,56.0,30.0,16.0,47.0,339.0,74.0,49.0,1246.0,807.0,27.0,16.0,622.0,176.0,1161.0,33.0,128.0,114.0,245.0,97.0,23.0,87.0,638.0,11.0,277.0,29.0,2069.0,648.0,3742.0,273.0,34.0,3922.0,21.0,1839.0,93.0,189.0,125.0,2.0,76.0,8.0,3640.0,400.0,148.0,19.0,150.0,162.0,31.0,93.0,332.0,296.0,1312.0,348.0,52.0,29.0,10.0,6.0,2400.0,231.0,251.0,180.0,132.0,538.0,5168.0,67.0,2378.0,2206.0,47.0,338.0,743.0,2082.0,460.0,1.0,185.0,96.0,2200.0,762.0,2227.0,10.0,835.0,73.0,1970.0,854.0,1935.0,2765.0,124.0,10.0,2077.0,2242.0,3.0,2201.0,93.0,54.0,21.0,28.0,668.0,809.0,1566.0,27.0,126.0,343.0,28.0,95.0,230.0,723.0,345.0,2973.0,48.0,1.0,136.0,1314.0,1115.0,937.0,71.0,328.0,301.0,1189.0,841.0,29.0,119.0,220.0,5.0,68.0,924.0,101.0,7345.0,377.0,2029.0,80.0,66.0,35.0,21.0,16.0,138.0,116.0,76.0,415.0,1035.0,457.0,125.0,240.0,39.0,17.0,1029.0,226.0,24.0,1254.0,67.0,579.0,147.0,26.0,299.0,817.0,188.0,149.0,669.0,1252.0,22.0,156.0,71.0,211.0,11.0,6.0,230.0,475.0,814.0,840.0,35.0,2.0,62.0,93.0,127.0,40.0,22.0,3016.0,25.0,670.0,44.0,51.0,21.0,8.0,556.0,548.0,358.0,1050.0,175.0,17.0,45.0,1045.0,40.0,3.0,40.0,161.0,31.0,53.0,82.0,202.0,1.0,262.0,94.0,65.0,17.0,1356.0,4.0,73.0,52.0,683.0,18.0,3140.0,1925.0,460.0,64.0,31.0,2126.0,587.0,139.0,445.0,119.0,25.0,40.0,76.0,55.0,56.0,29.0,4829.0,71.0,388.0,521.0,300.0,442.0,324.0,228.0,387.0,367.0,13.0,51.0,209.0,375.0,28.0,13.0,142.0,51.0,12.0,512.0,195.0,82.0,92.0,84.0,258.0,544.0,24.0,2535.0,8.0,195.0,290.0,3.0,21.0,339.0,56.0,54.0,173.0,183.0,1883.0,5052.0,664.0,2017-11-12,,2017-45,-0.04715425761752812,0.3340000000000001, +264,264,0.05,136.0,0.0,138.0,10.0,221.0,153.0,449.0,76.0,80.0,337.0,2995.0,2110.0,18.0,428.0,784.0,52.0,24.0,189.0,3445.0,46.0,15.0,600.0,6572.0,112.0,468.0,98.0,1729.0,554.0,45.0,29.0,32.0,107.0,1485.0,579.0,776.0,2226.0,44.0,14.0,13.0,55.0,316.0,76.0,53.0,1295.0,729.0,30.0,10.0,589.0,162.0,1172.0,52.0,155.0,105.0,227.0,102.0,22.0,60.0,647.0,15.0,269.0,16.0,2155.0,644.0,3828.0,245.0,26.0,4191.0,35.0,1845.0,100.0,177.0,149.0,4.0,74.0,22.0,3737.0,370.0,113.0,25.0,158.0,166.0,28.0,70.0,369.0,338.0,1239.0,343.0,48.0,39.0,9.0,4.0,2271.0,239.0,252.0,293.0,153.0,509.0,9523.0,71.0,2151.0,2254.0,63.0,324.0,728.0,2157.0,476.0,0.0,172.0,90.0,2263.0,828.0,2301.0,10.0,853.0,111.0,2150.0,870.0,1989.0,2730.0,86.0,10.0,1821.0,2264.0,0.0,2412.0,85.0,49.0,24.0,26.0,695.0,821.0,1538.0,18.0,150.0,287.0,27.0,102.0,246.0,697.0,289.0,3139.0,64.0,1.0,112.0,1258.0,1213.0,934.0,63.0,341.0,352.0,1156.0,815.0,27.0,146.0,195.0,11.0,75.0,1015.0,56.0,7568.0,385.0,2164.0,90.0,67.0,45.0,12.0,25.0,129.0,72.0,74.0,380.0,878.0,515.0,130.0,226.0,42.0,17.0,1028.0,194.0,34.0,1204.0,54.0,506.0,121.0,20.0,350.0,667.0,138.0,91.0,638.0,1401.0,23.0,172.0,79.0,203.0,19.0,7.0,230.0,525.0,965.0,685.0,39.0,1.0,55.0,99.0,127.0,45.0,28.0,2881.0,20.0,689.0,30.0,44.0,32.0,8.0,486.0,548.0,393.0,1028.0,161.0,23.0,52.0,1069.0,46.0,6.0,28.0,207.0,52.0,55.0,56.0,268.0,0.0,248.0,99.0,67.0,24.0,1143.0,3.0,79.0,28.0,653.0,11.0,3106.0,1957.0,465.0,74.0,83.0,2189.0,582.0,153.0,475.0,167.0,20.0,58.0,109.0,81.0,61.0,18.0,4927.0,64.0,445.0,511.0,297.0,404.0,279.0,226.0,437.0,436.0,12.0,41.0,185.0,360.0,30.0,19.0,135.0,47.0,10.0,494.0,200.0,73.0,81.0,82.0,336.0,429.0,17.0,2531.0,9.0,215.0,283.0,4.0,24.0,351.0,70.0,58.0,143.0,171.0,1820.0,4891.0,674.0,2017-11-19,,2017-46,0.1503345325596399,0.052000000000000005, +265,265,0.1,214.0,0.0,115.0,6.0,210.0,157.0,379.0,85.0,79.0,366.0,3022.0,1933.0,31.0,476.0,843.0,69.0,37.0,179.0,3391.0,57.0,10.0,582.0,6303.0,135.0,463.0,100.0,1605.0,547.0,50.0,30.0,32.0,101.0,1657.0,621.0,600.0,2050.0,64.0,21.0,16.0,40.0,301.0,512.0,44.0,1300.0,737.0,31.0,7.0,624.0,194.0,1077.0,37.0,144.0,102.0,239.0,118.0,39.0,55.0,523.0,19.0,272.0,23.0,2254.0,646.0,3328.0,224.0,38.0,3985.0,28.0,1802.0,110.0,184.0,135.0,0.0,88.0,15.0,3734.0,368.0,128.0,12.0,136.0,138.0,33.0,99.0,320.0,369.0,1330.0,360.0,31.0,36.0,7.0,89.0,2145.0,201.0,185.0,190.0,82.0,483.0,5452.0,97.0,1983.0,2398.0,59.0,317.0,673.0,2162.0,383.0,3.0,179.0,98.0,2139.0,777.0,2387.0,4.0,842.0,101.0,2009.0,818.0,1865.0,2695.0,123.0,5.0,1892.0,2267.0,7.0,2340.0,96.0,55.0,17.0,33.0,648.0,782.0,1519.0,17.0,122.0,478.0,27.0,103.0,177.0,656.0,280.0,3018.0,41.0,3.0,113.0,1410.0,1125.0,875.0,54.0,260.0,363.0,1091.0,689.0,22.0,139.0,196.0,13.0,80.0,909.0,43.0,7428.0,341.0,2086.0,91.0,71.0,36.0,24.0,20.0,79.0,101.0,78.0,454.0,944.0,440.0,185.0,226.0,42.0,44.0,1049.0,179.0,28.0,1120.0,67.0,570.0,112.0,40.0,322.0,663.0,104.0,105.0,644.0,1390.0,37.0,155.0,77.0,264.0,12.0,9.0,274.0,490.0,875.0,679.0,37.0,3.0,44.0,117.0,90.0,52.0,32.0,2852.0,21.0,716.0,56.0,53.0,20.0,6.0,1346.0,636.0,337.0,985.0,170.0,25.0,50.0,994.0,58.0,9.0,24.0,180.0,30.0,76.0,80.0,262.0,1.0,252.0,102.0,66.0,24.0,1183.0,1.0,116.0,39.0,582.0,20.0,3513.0,1957.0,502.0,56.0,32.0,2065.0,585.0,155.0,473.0,148.0,31.0,49.0,119.0,68.0,58.0,27.0,4873.0,84.0,1029.0,570.0,305.0,386.0,265.0,206.0,372.0,330.0,11.0,47.0,169.0,346.0,40.0,9.0,120.0,75.0,15.0,502.0,187.0,70.0,92.0,80.0,288.0,459.0,21.0,2607.0,7.0,201.0,255.0,3.0,22.0,274.0,69.0,65.0,148.0,192.0,1862.0,4846.0,1004.0,2017-11-26,,2017-47,0.08129462727609393,1.4280000000000002, +266,266,0.11,152.0,0.0,137.0,8.0,222.0,173.0,337.0,70.0,87.0,348.0,2787.0,2029.0,31.0,388.0,772.0,45.0,33.0,185.0,2931.0,50.0,22.0,782.0,6404.0,110.0,382.0,109.0,1520.0,543.0,33.0,22.0,22.0,95.0,1662.0,582.0,665.0,1909.0,49.0,23.0,5.0,42.0,270.0,70.0,46.0,1032.0,694.0,28.0,9.0,533.0,168.0,1007.0,62.0,105.0,107.0,247.0,140.0,41.0,57.0,595.0,33.0,262.0,42.0,2886.0,617.0,4370.0,288.0,31.0,4029.0,19.0,1668.0,102.0,159.0,115.0,0.0,64.0,7.0,3546.0,293.0,129.0,15.0,147.0,122.0,38.0,83.0,328.0,508.0,1259.0,407.0,40.0,39.0,12.0,41.0,1924.0,192.0,161.0,181.0,91.0,443.0,5849.0,107.0,1802.0,1923.0,40.0,267.0,552.0,1966.0,483.0,0.0,128.0,85.0,2065.0,692.0,2075.0,12.0,711.0,84.0,1960.0,902.0,1865.0,3415.0,80.0,4.0,1651.0,2078.0,0.0,2067.0,94.0,48.0,20.0,18.0,660.0,813.0,1431.0,19.0,135.0,279.0,21.0,112.0,228.0,644.0,325.0,3044.0,48.0,0.0,88.0,1154.0,1275.0,832.0,52.0,228.0,375.0,969.0,738.0,24.0,109.0,190.0,10.0,52.0,1113.0,49.0,7284.0,344.0,1875.0,101.0,70.0,41.0,6.0,26.0,105.0,69.0,99.0,406.0,916.0,417.0,190.0,197.0,45.0,21.0,964.0,207.0,14.0,1090.0,60.0,523.0,105.0,23.0,266.0,622.0,109.0,82.0,613.0,1263.0,19.0,132.0,71.0,195.0,18.0,12.0,210.0,479.0,823.0,549.0,39.0,4.0,58.0,122.0,88.0,45.0,19.0,2481.0,14.0,902.0,40.0,51.0,21.0,7.0,541.0,550.0,390.0,858.0,132.0,39.0,45.0,946.0,49.0,1.0,15.0,142.0,40.0,61.0,77.0,256.0,3.0,235.0,104.0,64.0,19.0,962.0,2.0,158.0,29.0,567.0,9.0,2869.0,1738.0,528.0,67.0,15.0,2126.0,494.0,149.0,447.0,123.0,25.0,33.0,99.0,72.0,55.0,20.0,4415.0,68.0,364.0,469.0,313.0,370.0,272.0,240.0,377.0,510.0,11.0,55.0,194.0,312.0,19.0,14.0,122.0,38.0,5.0,499.0,237.0,80.0,111.0,75.0,271.0,428.0,21.0,2442.0,9.0,196.0,280.0,2.0,22.0,282.0,52.0,55.0,146.0,171.0,2097.0,4295.0,684.0,2017-12-03,,2017-48,0.10903456824813418,0.22800000000000004, +267,267,0.2,108.0,3.0,152.0,14.0,218.0,153.0,324.0,59.0,70.0,361.0,2975.0,2095.0,34.0,397.0,806.0,64.0,38.0,161.0,2852.0,78.0,17.0,562.0,6517.0,182.0,382.0,88.0,1419.0,501.0,36.0,23.0,27.0,78.0,1438.0,533.0,676.0,1791.0,64.0,18.0,30.0,38.0,342.0,86.0,46.0,951.0,558.0,16.0,12.0,524.0,175.0,1134.0,220.0,114.0,93.0,152.0,125.0,33.0,51.0,534.0,14.0,255.0,24.0,1940.0,540.0,3030.0,257.0,25.0,4120.0,17.0,1575.0,100.0,179.0,131.0,3.0,65.0,19.0,3168.0,247.0,128.0,19.0,157.0,158.0,32.0,89.0,311.0,375.0,1058.0,368.0,32.0,58.0,8.0,15.0,1940.0,187.0,208.0,171.0,94.0,372.0,4634.0,71.0,1795.0,1883.0,51.0,282.0,633.0,1761.0,478.0,3.0,136.0,87.0,1833.0,666.0,1858.0,14.0,718.0,90.0,1847.0,821.0,1634.0,2809.0,67.0,3.0,1695.0,2004.0,2.0,1856.0,83.0,63.0,17.0,25.0,550.0,792.0,1661.0,34.0,109.0,283.0,33.0,79.0,205.0,681.0,423.0,3306.0,50.0,4.0,79.0,1017.0,1067.0,875.0,60.0,188.0,296.0,974.0,665.0,21.0,101.0,161.0,5.0,51.0,952.0,49.0,7656.0,294.0,1489.0,80.0,66.0,34.0,20.0,20.0,76.0,74.0,79.0,402.0,843.0,381.0,196.0,176.0,54.0,25.0,833.0,192.0,13.0,965.0,56.0,549.0,117.0,35.0,292.0,572.0,91.0,99.0,477.0,1204.0,19.0,165.0,76.0,200.0,8.0,4.0,231.0,432.0,780.0,506.0,26.0,4.0,43.0,108.0,86.0,29.0,18.0,2323.0,18.0,638.0,45.0,43.0,29.0,6.0,535.0,469.0,313.0,722.0,145.0,27.0,37.0,883.0,29.0,4.0,30.0,146.0,20.0,51.0,65.0,243.0,2.0,244.0,108.0,67.0,20.0,898.0,2.0,139.0,36.0,538.0,10.0,2729.0,1594.0,411.0,77.0,15.0,2122.0,505.0,126.0,458.0,119.0,11.0,38.0,101.0,62.0,48.0,18.0,3970.0,67.0,444.0,430.0,260.0,332.0,224.0,212.0,337.0,493.0,13.0,42.0,185.0,346.0,22.0,11.0,150.0,47.0,18.0,426.0,169.0,74.0,104.0,64.0,271.0,426.0,16.0,2324.0,9.0,187.0,240.0,5.0,26.0,272.0,66.0,68.0,130.0,174.0,1584.0,4034.0,624.0,2017-12-10,,2017-49,0.20914526210719941,0.5420000000000001, +268,268,0.36,142.0,2.0,163.0,10.0,163.0,144.0,337.0,72.0,63.0,393.0,3248.0,2238.0,20.0,380.0,981.0,44.0,34.0,166.0,2647.0,33.0,5.0,643.0,6133.0,113.0,411.0,79.0,1411.0,503.0,38.0,39.0,41.0,95.0,1419.0,556.0,639.0,1766.0,59.0,28.0,12.0,27.0,355.0,73.0,32.0,989.0,639.0,24.0,17.0,494.0,151.0,979.0,58.0,142.0,118.0,173.0,87.0,22.0,37.0,514.0,7.0,277.0,31.0,1935.0,539.0,3137.0,275.0,20.0,4118.0,28.0,1601.0,80.0,164.0,170.0,2.0,66.0,22.0,3165.0,285.0,134.0,16.0,191.0,164.0,21.0,83.0,367.0,338.0,980.0,266.0,30.0,47.0,16.0,11.0,1844.0,190.0,203.0,139.0,76.0,378.0,4690.0,70.0,1797.0,1875.0,206.0,269.0,606.0,1792.0,529.0,0.0,162.0,85.0,1853.0,664.0,1943.0,16.0,767.0,95.0,1740.0,687.0,1610.0,2641.0,55.0,12.0,1723.0,2075.0,1.0,1954.0,81.0,54.0,15.0,28.0,513.0,705.0,1430.0,33.0,127.0,319.0,19.0,95.0,199.0,591.0,198.0,3565.0,51.0,0.0,79.0,1084.0,978.0,857.0,46.0,174.0,319.0,914.0,589.0,20.0,118.0,166.0,2.0,73.0,816.0,37.0,7662.0,330.0,1672.0,90.0,66.0,28.0,28.0,22.0,92.0,66.0,79.0,410.0,849.0,415.0,125.0,178.0,47.0,33.0,899.0,199.0,12.0,981.0,68.0,537.0,134.0,23.0,267.0,588.0,98.0,121.0,484.0,1295.0,34.0,149.0,74.0,182.0,28.0,9.0,233.0,461.0,745.0,528.0,47.0,1.0,60.0,92.0,104.0,28.0,20.0,2311.0,12.0,610.0,38.0,64.0,20.0,6.0,388.0,445.0,314.0,823.0,160.0,53.0,55.0,889.0,37.0,4.0,25.0,144.0,32.0,66.0,71.0,215.0,0.0,238.0,88.0,45.0,21.0,906.0,2.0,91.0,30.0,588.0,18.0,2855.0,1652.0,483.0,84.0,10.0,2243.0,497.0,152.0,388.0,121.0,20.0,45.0,76.0,66.0,69.0,17.0,3959.0,57.0,477.0,479.0,306.0,304.0,213.0,173.0,304.0,560.0,7.0,45.0,182.0,384.0,33.0,21.0,127.0,46.0,7.0,429.0,239.0,65.0,94.0,77.0,307.0,446.0,13.0,2634.0,10.0,244.0,238.0,5.0,23.0,277.0,52.0,50.0,115.0,185.0,1450.0,3982.0,599.0,2017-12-17,,2017-50,0.5598705029321849,3.0600000000000005, +269,269,0.6,112.0,1.0,89.0,9.0,101.0,88.0,250.0,50.0,34.0,239.0,2595.0,1747.0,16.0,211.0,690.0,23.0,69.0,89.0,1868.0,73.0,8.0,340.0,4205.0,94.0,220.0,62.0,987.0,365.0,26.0,21.0,15.0,76.0,1003.0,413.0,496.0,1348.0,30.0,13.0,16.0,54.0,303.0,88.0,31.0,692.0,441.0,15.0,14.0,348.0,127.0,733.0,51.0,146.0,55.0,133.0,45.0,16.0,28.0,411.0,9.0,212.0,16.0,1435.0,395.0,2084.0,227.0,9.0,3198.0,14.0,1288.0,60.0,265.0,93.0,0.0,46.0,9.0,2561.0,190.0,89.0,13.0,150.0,85.0,17.0,58.0,232.0,198.0,712.0,190.0,15.0,22.0,5.0,6.0,1545.0,144.0,139.0,142.0,59.0,297.0,3806.0,27.0,1432.0,1354.0,47.0,191.0,473.0,1340.0,372.0,0.0,77.0,47.0,1304.0,516.0,1552.0,11.0,436.0,50.0,1219.0,434.0,1136.0,1581.0,30.0,1.0,1203.0,1515.0,0.0,1265.0,40.0,26.0,5.0,18.0,415.0,492.0,1019.0,26.0,76.0,198.0,15.0,57.0,174.0,473.0,122.0,2772.0,54.0,0.0,59.0,790.0,756.0,620.0,42.0,111.0,242.0,617.0,380.0,15.0,67.0,92.0,2.0,43.0,644.0,38.0,6051.0,255.0,1111.0,56.0,44.0,31.0,12.0,18.0,52.0,52.0,64.0,266.0,547.0,280.0,98.0,144.0,23.0,17.0,591.0,133.0,15.0,721.0,33.0,395.0,108.0,19.0,226.0,421.0,58.0,67.0,373.0,963.0,16.0,95.0,42.0,143.0,21.0,9.0,146.0,370.0,582.0,439.0,21.0,8.0,44.0,43.0,62.0,27.0,15.0,1850.0,5.0,450.0,41.0,41.0,6.0,5.0,293.0,325.0,272.0,475.0,122.0,17.0,74.0,587.0,35.0,2.0,15.0,92.0,22.0,32.0,55.0,201.0,1.0,155.0,57.0,28.0,16.0,740.0,0.0,60.0,6.0,429.0,16.0,2011.0,986.0,290.0,44.0,12.0,1555.0,331.0,72.0,301.0,94.0,13.0,29.0,65.0,49.0,23.0,15.0,2756.0,34.0,290.0,335.0,156.0,249.0,126.0,119.0,266.0,306.0,11.0,44.0,164.0,256.0,24.0,5.0,95.0,29.0,2.0,270.0,156.0,47.0,62.0,51.0,181.0,297.0,4.0,1957.0,7.0,140.0,138.0,0.0,17.0,220.0,46.0,43.0,83.0,121.0,1060.0,2770.0,472.0,2017-12-24,,2017-51,0.40874082277680657,0.5479999999999999, +270,270,0.76,195.0,0.0,55.0,3.0,193.0,127.0,194.0,58.0,53.0,249.0,3937.0,2765.0,14.0,291.0,1549.0,35.0,37.0,147.0,2721.0,563.0,12.0,405.0,4565.0,119.0,338.0,97.0,1261.0,481.0,19.0,34.0,18.0,57.0,842.0,211.0,940.0,1590.0,41.0,21.0,12.0,50.0,348.0,68.0,37.0,623.0,745.0,34.0,18.0,270.0,208.0,1228.0,56.0,280.0,57.0,87.0,38.0,25.0,88.0,640.0,25.0,236.0,21.0,1510.0,958.0,3189.0,489.0,20.0,5262.0,17.0,1518.0,65.0,244.0,130.0,0.0,55.0,16.0,3809.0,219.0,88.0,18.0,260.0,98.0,20.0,68.0,322.0,275.0,649.0,314.0,47.0,41.0,8.0,9.0,1919.0,90.0,102.0,111.0,117.0,223.0,5699.0,43.0,2066.0,1397.0,74.0,227.0,702.0,1296.0,388.0,0.0,108.0,47.0,1537.0,533.0,1826.0,5.0,405.0,61.0,1144.0,462.0,1150.0,1850.0,38.0,10.0,1242.0,2000.0,2.0,1473.0,44.0,39.0,13.0,12.0,590.0,725.0,1151.0,15.0,101.0,228.0,30.0,72.0,165.0,498.0,105.0,3554.0,63.0,0.0,80.0,1034.0,1248.0,763.0,31.0,141.0,297.0,819.0,341.0,12.0,71.0,143.0,8.0,65.0,844.0,43.0,8691.0,224.0,1170.0,84.0,42.0,43.0,12.0,16.0,87.0,85.0,55.0,316.0,689.0,194.0,243.0,145.0,21.0,12.0,579.0,173.0,24.0,790.0,59.0,605.0,97.0,21.0,264.0,587.0,93.0,1011.0,382.0,1714.0,21.0,126.0,47.0,137.0,8.0,12.0,187.0,351.0,641.0,486.0,50.0,0.0,44.0,43.0,103.0,63.0,23.0,2031.0,3.0,706.0,51.0,47.0,22.0,10.0,516.0,343.0,305.0,582.0,96.0,24.0,113.0,589.0,49.0,3.0,12.0,90.0,31.0,46.0,75.0,285.0,4.0,236.0,103.0,27.0,15.0,834.0,4.0,82.0,23.0,640.0,16.0,7680.0,1362.0,513.0,46.0,23.0,2656.0,649.0,111.0,290.0,107.0,24.0,22.0,86.0,38.0,24.0,19.0,3582.0,27.0,563.0,954.0,224.0,487.0,116.0,102.0,410.0,298.0,13.0,70.0,103.0,345.0,23.0,12.0,87.0,38.0,1.0,364.0,167.0,83.0,62.0,71.0,228.0,515.0,18.0,2179.0,9.0,218.0,338.0,6.0,32.0,262.0,51.0,62.0,65.0,217.0,1428.0,3547.0,654.0,2017-12-31,,2017-52,0.7929155245588965,3.262, +271,271,1.6,190.0,0.0,124.0,5.0,264.0,160.0,274.0,78.0,72.0,309.0,4261.0,2879.0,25.0,426.0,1515.0,53.0,30.0,180.0,3289.0,69.0,9.0,894.0,6079.0,146.0,373.0,171.0,1788.0,665.0,38.0,21.0,26.0,116.0,1335.0,443.0,836.0,2080.0,434.0,20.0,15.0,54.0,339.0,108.0,48.0,915.0,805.0,58.0,10.0,573.0,174.0,1416.0,52.0,272.0,457.0,183.0,81.0,29.0,69.0,629.0,27.0,352.0,27.0,1972.0,1132.0,3353.0,362.0,39.0,5415.0,11.0,1846.0,134.0,238.0,131.0,1.0,62.0,13.0,4076.0,266.0,146.0,16.0,255.0,98.0,28.0,178.0,446.0,307.0,1075.0,403.0,46.0,45.0,12.0,21.0,2221.0,215.0,206.0,184.0,117.0,402.0,6335.0,67.0,2118.0,2070.0,47.0,270.0,812.0,1576.0,480.0,7.0,157.0,64.0,2013.0,766.0,2401.0,15.0,688.0,164.0,1671.0,775.0,1650.0,2364.0,78.0,4.0,1530.0,2440.0,1.0,2012.0,74.0,49.0,35.0,42.0,714.0,801.0,1522.0,19.0,141.0,330.0,33.0,88.0,227.0,599.0,219.0,3945.0,68.0,1.0,108.0,1194.0,1854.0,996.0,53.0,231.0,345.0,1133.0,634.0,35.0,129.0,162.0,3.0,83.0,1406.0,58.0,10623.0,297.0,1605.0,87.0,65.0,37.0,13.0,33.0,154.0,100.0,82.0,442.0,928.0,326.0,243.0,182.0,30.0,33.0,791.0,280.0,28.0,1114.0,61.0,918.0,179.0,29.0,342.0,641.0,116.0,177.0,531.0,1781.0,28.0,152.0,75.0,237.0,29.0,13.0,245.0,454.0,895.0,509.16666666666674,56.0,2.0,53.0,70.0,112.0,71.0,19.0,2726.0,8.0,823.0,56.0,46.0,35.0,7.0,746.0,550.0,386.0,798.0,150.0,24.0,240.0,879.0,46.0,1.0,24.0,137.0,48.0,43.0,82.0,290.8,0.0,348.0,136.0,65.0,12.0,1139.0,1.0,102.0,41.0,794.0,13.0,4379.0,1669.0,597.0,87.0,14.0,2806.0,738.0,172.0,413.0,121.0,12.0,37.0,95.0,43.0,42.0,37.0,4481.0,49.0,608.0,628.0,337.0,419.0,201.0,198.0,491.0,862.0,5.0,56.0,186.0,411.0,44.0,21.0,171.0,40.0,5.0,499.0,202.0,89.0,57.0,99.0,308.0,479.0,24.0,2747.0,6.0,245.0,302.0,4.0,44.0,363.0,60.0,52.0,139.0,348.0,1806.0,4525.0,777.0,2018-01-07,,2018-1,1.6265551093034603,5.636, +272,272,3.03,165.0,0.0,171.0,6.0,231.0,174.0,354.0,138.0,82.0,436.0,4204.0,2641.0,29.0,472.0,882.0,55.0,29.0,255.0,3651.0,46.0,16.0,488.0,6934.0,123.0,463.0,140.0,1877.0,659.0,44.0,34.0,21.0,112.0,1476.0,642.0,909.0,2195.0,83.0,41.0,13.0,40.0,254.0,146.0,34.0,1186.0,835.0,28.0,12.0,729.0,199.0,1256.0,63.0,193.0,125.0,220.0,116.0,30.0,58.0,588.0,12.0,312.0,25.0,2235.0,809.0,3300.0,270.0,21.0,4826.0,26.0,2001.0,121.0,193.0,149.0,0.0,56.0,20.0,3762.0,314.0,197.0,21.0,171.0,182.0,30.0,139.0,367.0,334.0,1328.0,458.0,35.0,30.0,7.0,8.0,2212.0,343.0,263.0,223.0,96.0,509.0,5417.0,106.0,2156.0,2309.0,28.0,287.0,1001.0,1927.0,467.0,1.0,191.0,99.0,2238.0,705.0,2514.0,19.0,787.0,151.0,2172.0,861.0,2156.0,3057.0,122.0,7.0,1939.0,2545.0,3.0,2272.0,105.0,84.0,26.0,29.0,736.0,795.0,1658.0,16.0,407.0,395.0,20.0,108.0,248.0,640.0,342.0,3757.0,75.0,0.0,128.0,1316.0,1741.0,950.0,78.0,248.0,395.0,1198.0,797.0,23.0,119.0,190.0,3.0,59.0,1209.0,71.0,9074.0,340.0,1998.0,183.0,72.0,60.0,27.0,61.0,160.0,104.0,159.0,462.0,1001.0,455.0,136.0,186.0,57.0,32.0,1072.0,214.0,25.0,1247.0,70.0,902.0,157.0,44.0,316.0,647.0,137.0,145.0,627.0,1423.0,21.0,169.0,66.0,264.0,13.0,7.0,281.0,524.0,917.0,532.3333333333334,42.0,4.0,60.0,105.0,125.0,64.0,38.0,3197.0,23.0,857.0,40.0,59.0,26.0,9.0,569.0,625.0,431.0,877.0,169.0,28.0,167.0,1045.0,78.0,2.0,22.0,150.0,48.0,62.0,102.0,296.6,0.0,301.0,134.0,50.0,27.0,1142.0,4.0,110.0,38.0,657.0,13.0,4281.0,2046.0,590.0,71.0,20.0,2544.0,590.0,132.0,461.0,129.0,19.0,38.0,121.0,66.0,51.0,27.0,4910.0,68.0,496.0,605.0,328.0,490.0,280.0,238.0,454.0,504.0,6.0,62.0,188.0,441.0,29.0,17.0,179.0,32.0,8.0,542.0,259.0,81.0,98.0,87.0,358.0,481.0,20.0,3056.0,9.0,280.0,289.0,3.0,30.0,317.0,92.0,36.0,158.0,304.0,1835.0,5037.0,717.0,2018-01-14,,2018-2,3.1804364072762468,2.432, +273,273,5.24,166.0,1.0,188.0,18.0,228.0,195.0,434.0,103.0,80.0,418.0,4143.0,2584.0,20.0,547.0,849.0,76.0,29.0,229.0,5677.0,50.0,27.0,649.0,7150.0,111.0,486.0,132.0,1891.0,657.0,75.0,34.0,53.0,113.0,1820.0,730.0,915.0,2376.0,65.0,40.0,13.0,38.0,344.0,116.0,53.0,1267.0,940.0,46.0,18.0,733.0,209.0,1013.0,51.0,207.0,126.0,266.0,103.0,27.0,36.0,598.0,16.0,360.0,43.0,2408.0,947.0,3990.0,317.0,50.0,5466.0,23.0,1960.0,166.0,230.0,119.0,1.0,65.0,17.0,3933.0,321.0,278.0,26.0,217.0,169.0,45.0,135.0,371.0,347.0,1484.0,352.0,43.0,32.0,6.0,17.0,2677.0,338.0,271.0,203.0,113.0,631.0,5680.0,105.0,2100.0,2384.0,36.0,323.0,972.0,2117.0,523.0,4.0,156.0,92.0,2254.0,788.0,2247.0,18.0,834.0,122.0,2272.0,904.0,2211.0,2991.0,180.0,11.0,2070.0,2560.0,2.0,2395.0,104.0,77.0,22.0,44.0,848.0,848.0,1786.0,29.0,231.0,358.0,30.0,121.0,253.0,714.0,328.0,3893.0,54.0,4.0,131.0,1396.0,1984.0,1165.0,57.0,279.0,351.0,1273.0,893.0,22.0,99.0,228.0,6.0,78.0,1304.0,39.0,8411.0,324.0,2421.0,99.0,102.0,59.0,55.0,90.0,224.0,123.0,102.0,546.0,1036.0,455.0,167.0,174.0,56.0,22.0,1072.0,215.0,33.0,1315.0,88.0,690.0,166.0,28.0,334.0,794.0,148.0,268.0,650.0,1385.0,21.0,181.0,106.0,270.0,10.0,6.0,263.0,505.0,1018.0,555.5,39.0,4.0,76.0,133.0,119.0,65.0,32.0,3019.0,8.0,783.0,42.0,63.0,24.0,6.0,600.0,709.0,394.0,936.0,156.0,25.0,193.0,1230.0,57.0,4.0,17.0,136.0,34.0,67.0,120.0,302.4,4.0,289.0,171.0,90.0,35.0,1187.0,3.0,109.0,25.0,740.0,7.0,3835.0,2155.0,637.0,80.0,18.0,3062.0,571.0,207.0,539.0,130.0,20.0,43.0,90.0,84.0,66.0,39.0,5167.0,62.0,464.0,589.0,375.0,852.0,308.0,293.0,440.0,450.0,13.0,69.0,218.0,394.0,49.0,27.0,199.0,52.0,16.0,532.0,209.0,71.0,110.0,95.0,326.0,509.0,27.0,3221.0,7.0,248.0,353.0,7.0,32.0,337.0,93.0,59.0,150.0,221.0,2044.0,4827.0,796.0,2018-01-21,,2018-3,5.196632333013255,4.2, +274,274,10.31,150.0,0.0,173.0,7.0,248.0,177.0,425.0,131.0,84.0,448.0,4563.0,2941.0,39.0,471.0,867.0,78.0,37.0,214.0,3577.0,55.0,21.0,662.0,7056.0,140.0,476.0,104.0,1740.0,639.0,74.0,24.0,17.0,123.0,1551.0,708.0,981.0,2270.0,77.0,38.0,24.0,52.0,280.0,90.0,53.0,1317.0,786.0,24.0,12.0,722.0,217.0,1133.0,35.0,265.0,146.0,234.0,126.0,34.0,55.0,582.0,8.0,337.0,47.0,2237.0,681.0,3369.0,228.0,42.0,6223.0,61.0,2028.0,223.0,962.0,194.0,1.0,91.0,22.0,4028.0,326.0,216.0,33.0,252.0,167.0,36.0,134.0,309.0,326.0,1455.0,1116.0,49.0,36.0,8.0,13.0,2799.0,286.0,304.0,218.0,103.0,546.0,5224.0,89.0,2186.0,2255.0,42.0,373.0,833.0,1974.0,523.0,2.0,177.0,90.0,2327.0,800.0,2422.0,9.0,884.0,136.0,2344.0,890.0,2335.0,2972.0,97.0,8.0,1961.0,2451.0,2.0,2407.0,122.0,82.0,22.0,38.0,768.0,792.0,1786.0,27.0,244.0,381.0,37.0,104.0,276.0,749.0,363.0,3965.0,36.0,4.0,124.0,1449.0,1427.0,1075.0,54.0,254.0,343.0,1286.0,896.0,24.0,105.0,197.0,7.0,68.0,1108.0,34.0,8640.0,430.0,2211.0,95.0,81.0,66.0,46.0,57.0,147.0,115.0,64.0,478.0,1021.0,446.0,157.0,233.0,59.0,37.0,1441.0,226.0,28.0,1342.0,69.0,668.0,162.0,32.0,305.0,789.0,199.0,139.0,617.0,1470.0,22.0,156.0,85.0,272.0,12.0,12.0,259.0,571.0,968.0,578.6666666666666,44.0,5.0,61.0,165.0,99.0,46.0,27.0,2997.0,17.0,833.0,47.0,69.0,73.0,10.0,543.0,719.0,450.0,807.0,157.0,21.0,150.0,1215.0,54.0,4.0,27.0,153.0,55.0,83.0,117.0,308.2,1.0,293.0,146.0,63.0,31.0,1220.0,2.0,95.0,32.0,679.0,10.0,3641.0,1968.0,653.0,70.0,20.0,3941.0,584.0,183.0,453.0,120.0,15.0,65.0,90.0,66.0,64.0,50.0,5105.0,60.0,543.0,595.0,363.0,520.0,300.0,244.0,948.0,472.0,15.0,63.0,204.0,429.0,46.0,17.0,156.0,70.0,4.0,578.0,299.0,92.0,103.0,110.0,303.0,566.0,16.0,3692.0,3.0,291.0,377.0,8.0,25.0,342.0,73.0,59.0,143.0,212.0,1928.0,4760.0,902.0,2018-01-28,,2018-4,10.324331017333726,8.588000000000001, +275,275,17.19,147.0,0.0,192.0,14.0,214.0,201.0,417.0,88.0,74.0,425.0,4581.0,2906.0,34.0,435.0,794.0,56.0,26.0,215.0,3061.0,40.0,14.0,601.0,5611.0,261.0,458.0,90.0,1499.0,608.0,58.0,26.0,28.0,84.0,1667.0,711.0,908.0,2046.0,59.0,41.0,10.0,43.0,244.0,100.0,60.0,1163.0,1520.0,31.0,13.0,656.0,199.0,1148.0,65.0,803.0,112.0,232.0,87.0,19.0,61.0,477.0,12.0,294.0,43.0,1921.0,1047.0,3317.0,375.0,28.0,6252.0,22.0,1706.0,174.0,237.0,197.0,4.0,73.0,20.0,3485.0,325.0,182.0,24.0,270.0,188.0,40.0,150.0,320.0,253.0,1420.0,960.0,28.0,15.0,111.0,9.0,2663.0,280.0,236.0,184.0,99.0,481.0,4556.0,81.0,2101.0,2134.0,44.0,359.0,686.0,1748.0,450.0,2.0,129.0,95.0,2101.0,717.0,2166.0,18.0,813.0,84.0,1950.0,816.0,1805.0,2479.0,118.0,14.0,1928.0,2082.0,3.0,2144.0,86.0,58.0,26.0,27.0,624.0,721.0,1605.0,19.0,184.0,316.0,38.0,102.0,224.0,641.0,324.0,3569.0,24.0,1.0,101.0,1297.0,1215.0,829.0,68.0,227.0,326.0,1128.0,802.0,59.0,150.0,171.0,9.0,81.0,993.0,37.0,8178.0,289.0,2045.0,84.0,72.0,53.0,35.0,47.0,176.0,104.0,86.0,426.0,883.0,433.0,109.0,182.0,44.0,18.0,1023.0,234.0,24.0,1191.0,80.0,720.0,134.0,29.0,355.0,786.0,148.0,119.0,553.0,1236.0,21.0,157.0,73.0,195.0,25.0,12.0,245.0,527.0,927.0,601.8333333333334,41.0,9.0,55.0,133.0,68.0,80.0,28.0,2923.0,20.0,715.0,38.0,39.0,17.0,5.0,426.0,562.0,395.0,790.0,152.0,26.0,160.0,925.0,41.0,2.0,30.0,143.0,47.0,73.0,83.0,314.0,2.0,323.0,144.0,68.0,21.0,1091.0,2.0,124.0,29.0,514.0,13.0,3212.0,1727.0,620.0,66.0,26.0,4796.0,542.0,183.0,441.0,163.0,15.0,48.0,76.0,74.0,67.0,36.0,4637.0,91.0,1680.0,535.0,304.0,2235.0,261.0,289.0,374.0,737.0,13.0,48.0,219.0,318.0,39.0,19.0,140.0,57.0,6.0,513.0,258.0,88.0,83.0,78.0,330.0,480.0,26.0,3344.0,11.0,262.0,419.0,6.0,37.0,315.0,103.0,37.0,136.0,225.0,1787.0,4143.0,665.0,2018-02-04,,2018-5,17.107522188077628,18.138, +276,276,19.56,139.0,0.0,144.0,8.0,177.0,165.0,428.0,97.0,68.0,451.0,5130.0,3213.0,27.0,368.0,1005.0,68.0,25.0,208.0,2992.0,46.0,13.0,645.0,5691.0,103.0,447.0,108.0,1621.0,542.0,51.0,37.0,26.0,108.0,1642.0,683.0,891.0,2064.0,46.0,34.0,9.0,45.0,303.0,92.0,43.0,1161.0,878.0,30.0,17.0,688.0,217.0,1289.0,44.0,310.0,122.0,201.0,72.0,12.0,51.0,476.0,15.0,289.0,30.0,2069.0,947.0,3319.0,301.0,34.0,8041.0,14.0,1949.0,150.0,237.0,164.0,0.0,78.0,22.0,3661.0,314.0,161.0,27.0,287.0,189.0,22.0,152.0,311.0,268.0,1336.0,357.0,29.0,21.0,13.0,6.0,2849.0,274.0,288.0,230.0,91.0,419.0,5147.0,94.0,2424.0,2191.0,36.0,309.0,706.0,1763.0,544.0,5.0,118.0,113.0,2071.0,739.0,2284.0,16.0,786.0,82.0,2062.0,756.0,1822.0,2574.0,107.0,11.0,1940.0,2245.0,1.0,2209.0,109.0,70.0,15.0,27.0,733.0,794.0,1567.0,15.0,192.0,344.0,51.0,87.0,181.0,680.0,341.0,3784.0,18.0,1.0,91.0,2006.0,1594.0,891.0,60.0,249.0,332.0,1199.0,858.0,30.0,121.0,189.0,5.0,74.0,1039.0,42.0,9010.0,363.0,1819.0,89.0,66.0,54.0,40.0,17.0,129.0,97.0,84.0,407.0,953.0,430.0,123.0,208.0,41.0,12.0,1021.0,250.0,32.0,1246.0,62.0,622.0,153.0,54.0,267.0,708.0,161.0,112.0,640.0,1314.0,18.0,163.0,64.0,198.0,24.0,10.0,232.0,453.0,863.0,625.0,61.0,6.0,62.0,146.0,90.0,50.0,20.0,3016.0,14.0,728.0,32.0,48.0,22.0,4.0,465.0,551.0,369.0,859.0,133.0,25.0,156.0,998.0,54.0,0.0,31.0,132.0,36.0,47.0,81.0,334.0,0.0,257.0,123.0,46.0,27.0,1118.0,2.0,124.0,51.0,593.0,12.0,2788.0,1837.0,662.0,73.0,14.0,6236.0,500.0,198.0,431.0,158.0,15.0,48.0,81.0,72.0,64.0,36.0,4666.0,67.0,420.0,525.0,326.0,1195.0,300.0,288.0,421.0,367.0,8.0,70.0,197.0,368.0,37.0,22.0,164.0,58.0,8.0,494.0,241.0,70.0,90.0,75.0,276.0,445.0,21.0,3694.0,6.0,219.0,418.0,8.0,18.0,334.0,110.0,50.0,150.0,300.0,1783.0,4300.0,666.0,2018-02-11,,2018-6,19.85517618357094,20.066000000000003, +277,277,25.0,157.0,1.0,171.0,18.0,155.0,163.0,488.0,108.0,87.0,392.0,6063.0,3572.0,25.0,427.0,845.0,54.0,29.0,188.0,2994.0,63.0,12.0,526.0,5517.0,122.0,435.0,96.0,1614.0,561.0,55.0,33.0,25.0,98.0,1553.0,611.0,881.0,2012.0,41.0,30.0,5.0,39.0,266.0,86.0,57.0,1201.0,1645.0,25.0,11.0,624.0,240.0,1180.0,41.0,277.0,112.0,220.0,71.0,8.0,48.0,538.0,8.0,319.0,19.0,2086.0,757.0,3321.0,250.0,39.0,9488.0,16.0,1889.0,149.0,266.0,162.0,1.0,67.0,16.0,3702.0,273.0,186.0,26.0,261.0,174.0,28.0,168.0,305.0,312.0,1270.0,360.0,41.0,19.0,21.0,7.0,2914.0,258.0,224.0,172.0,95.0,392.0,5101.0,89.0,2143.0,2115.0,29.0,293.0,726.0,1698.0,523.0,6.0,143.0,53.0,2182.0,717.0,2205.0,9.0,806.0,88.0,1828.0,757.0,1904.0,2580.0,85.0,10.0,1846.0,2250.0,0.0,2040.0,106.0,54.0,15.0,33.0,710.0,796.0,1756.0,21.0,143.0,357.0,61.0,103.0,226.0,647.0,256.0,3524.0,20.0,3.0,107.0,1369.0,1554.0,992.0,57.0,339.0,371.0,1067.0,731.0,19.0,106.0,195.0,7.0,56.0,1024.0,30.0,10609.0,317.0,1683.0,77.0,78.0,44.0,39.0,19.0,156.0,102.0,76.0,430.0,900.0,455.0,158.0,190.0,40.0,29.0,984.0,235.0,27.0,1203.0,56.0,722.0,149.0,52.0,300.0,724.0,118.0,100.0,563.0,1273.0,18.0,171.0,69.0,201.0,16.0,6.0,245.0,473.0,836.0,550.0,50.0,2.0,41.0,92.0,55.0,62.0,24.0,2974.0,15.0,792.0,52.0,64.0,15.0,8.0,470.0,538.0,380.0,785.0,133.0,39.0,178.0,915.0,41.0,4.0,32.0,132.0,40.0,45.0,78.0,385.0,1.0,239.0,124.0,52.0,35.0,1150.0,1.0,101.0,56.0,604.0,10.0,3105.0,1771.0,571.0,79.0,26.0,7891.0,528.0,177.0,396.0,164.0,17.0,52.0,74.0,42.0,51.0,38.0,4745.0,61.0,439.0,488.0,239.0,535.0,237.0,202.0,370.0,384.0,15.0,57.0,190.0,431.0,31.0,20.0,121.0,45.0,6.0,479.0,235.0,88.0,98.0,112.0,236.0,499.0,38.0,4045.0,4.0,272.0,415.0,8.0,22.0,352.0,83.0,30.0,118.0,239.0,1809.0,4471.0,680.0,2018-02-18,,2018-7,25.050840646379058,26.752, +278,278,39.2,156.0,0.0,162.0,5.0,166.0,190.0,376.0,86.0,86.0,463.0,6163.0,3724.0,15.0,478.0,1500.0,59.0,29.0,156.0,4163.0,71.0,20.0,502.0,5577.0,162.0,489.0,94.0,1655.0,568.0,44.0,30.0,24.0,80.0,1652.0,629.0,924.0,2055.0,30.0,32.0,8.0,39.0,272.0,85.0,45.0,1192.0,919.0,31.0,8.0,660.0,241.0,1199.0,51.0,249.0,93.0,193.0,85.0,13.0,68.0,543.0,18.0,319.0,24.0,2009.0,947.0,3446.0,236.0,28.0,12149.0,19.0,1934.0,156.0,180.0,171.0,1.0,70.0,18.0,3886.0,336.0,180.0,25.0,315.0,194.0,21.0,83.0,360.0,337.0,1204.0,435.0,34.0,28.0,9.0,9.0,2931.0,273.0,245.0,180.0,104.0,397.0,5222.0,57.0,2080.0,2109.0,30.0,293.0,740.0,1736.0,487.0,3.0,109.0,64.0,2109.0,753.0,2235.0,17.0,805.0,89.0,1870.0,856.0,1968.0,2851.0,121.0,7.0,2257.0,2267.0,2.0,2019.0,69.0,67.0,27.0,36.0,736.0,802.0,1710.0,24.0,172.0,356.0,25.0,99.0,233.0,626.0,216.0,3693.0,21.0,0.0,104.0,1251.0,1257.0,966.0,61.0,237.0,421.0,1011.0,720.0,8.0,87.0,214.0,5.0,68.0,1249.0,52.0,10946.0,393.0,1875.0,89.0,83.0,39.0,60.0,24.0,198.0,93.0,78.0,469.0,891.0,437.0,139.0,199.0,52.0,30.0,992.0,235.0,27.0,1251.0,72.0,738.0,135.0,34.0,308.0,646.0,119.0,100.0,561.0,1370.0,27.0,138.0,89.0,226.0,22.0,14.0,254.0,475.0,881.0,612.0,34.0,3.0,50.0,101.0,95.0,65.0,27.0,3127.0,14.0,715.0,34.0,59.0,25.0,3.0,530.0,624.0,374.0,874.0,175.0,40.0,260.0,983.0,55.0,0.0,28.0,127.0,35.0,39.0,79.0,398.0,3.0,261.0,122.0,46.0,25.0,1177.0,1.0,115.0,36.0,602.0,10.0,3093.0,1858.0,584.0,68.0,24.0,8142.0,539.0,214.0,415.0,154.0,20.0,37.0,80.0,68.0,52.0,35.0,4779.0,67.0,455.0,580.0,260.0,434.0,246.0,263.0,403.0,324.0,13.0,53.0,193.0,354.0,47.0,19.0,150.0,48.0,4.0,475.0,236.0,99.0,84.0,114.0,249.0,461.0,30.0,3835.0,10.0,239.0,359.0,3.0,28.0,303.0,88.0,64.0,151.0,208.0,1981.0,4159.0,696.0,2018-02-25,,2018-8,38.909825549450304,39.2, +279,279,47.17,129.0,0.0,137.0,7.0,161.0,184.0,381.0,109.0,80.0,455.0,5740.0,3550.0,27.0,441.0,952.0,224.0,33.0,187.0,2970.0,45.0,10.0,880.0,5418.0,104.0,513.0,100.0,1631.0,533.0,70.0,28.0,20.0,89.0,1671.0,685.0,902.0,2042.0,47.0,44.0,13.0,40.0,322.0,79.0,32.0,1108.0,802.0,34.0,9.0,684.0,226.0,1466.0,51.0,315.0,92.0,191.0,88.0,12.0,68.0,644.0,13.0,330.0,32.0,2292.0,726.0,3655.0,238.0,30.0,12736.0,10.0,1905.0,187.0,170.0,199.0,2.0,72.0,9.0,3812.0,324.0,139.0,19.0,272.0,181.0,21.0,109.0,362.0,304.0,1437.0,395.0,81.0,30.0,8.0,9.0,2764.0,248.0,225.0,178.0,95.0,457.0,4920.0,79.0,1844.0,2017.0,41.0,254.0,696.0,1834.0,485.0,0.0,127.0,62.0,2181.0,794.0,2268.0,17.0,818.0,104.0,1999.0,782.0,2053.0,2876.0,165.0,5.0,2084.0,2170.0,0.0,2353.0,62.0,58.0,19.0,40.0,659.0,880.0,1742.0,16.0,214.0,326.0,28.0,87.0,212.0,611.0,201.0,3629.0,21.0,0.0,100.0,1191.0,1203.0,1015.0,57.0,242.0,420.0,1080.0,733.0,32.0,113.0,187.0,3.0,53.0,1133.0,51.0,11916.0,375.0,1807.0,91.0,59.0,44.0,38.0,31.0,145.0,90.0,75.0,475.0,942.0,430.0,145.0,163.0,54.0,19.0,902.0,228.0,20.0,1178.0,64.0,559.0,166.0,23.0,322.0,629.0,150.0,102.0,539.0,1300.0,21.0,139.0,76.0,205.0,28.0,11.0,294.0,494.0,861.0,649.0,51.0,5.0,47.0,104.0,73.0,63.0,14.0,3153.0,7.0,772.0,50.0,52.0,23.0,11.0,503.0,706.0,353.0,816.0,141.0,36.0,233.0,913.0,51.0,3.0,34.0,134.0,23.0,40.0,86.0,433.0,0.0,262.0,141.0,44.0,25.0,1387.0,2.0,135.0,27.0,605.0,15.0,2758.0,2268.0,697.0,69.0,12.0,8752.0,475.0,171.0,434.0,175.0,28.0,45.0,79.0,58.0,39.0,18.0,4792.0,67.0,446.0,509.0,272.0,384.0,253.0,224.0,417.0,404.0,6.0,53.0,190.0,392.0,41.0,19.0,117.0,49.0,9.0,420.0,245.0,79.0,72.0,91.0,225.0,437.0,21.0,3303.0,16.0,310.0,321.0,5.0,14.0,337.0,81.0,77.0,142.0,188.0,1928.0,4242.0,713.0,2018-03-04,,2018-9,47.18389174856314,36.55400000000001, +280,280,57.31,125.0,0.0,105.0,6.0,169.0,152.0,336.0,87.0,86.0,383.0,5065.0,2849.0,32.0,396.0,773.0,42.0,22.0,136.0,2516.0,37.0,10.0,717.0,5055.0,102.0,432.0,113.0,1385.0,459.0,68.0,30.0,29.0,74.0,1585.0,598.0,833.0,12121.0,32.0,47.0,8.0,43.0,248.0,94.0,34.0,985.0,1333.0,32.0,8.0,609.0,178.0,1114.0,60.0,170.0,110.0,185.0,99.0,19.0,49.0,612.0,16.0,288.0,22.0,1917.0,678.0,3275.0,217.0,19.0,9709.0,19.0,1899.0,293.0,143.0,173.0,1.0,52.0,12.0,3743.0,266.0,137.0,20.0,233.0,155.0,12.0,85.0,284.0,295.0,1298.0,343.0,37.0,14.0,16.0,7.0,2436.0,205.0,222.0,153.0,70.0,361.0,4525.0,45.0,1709.0,1904.0,28.0,268.0,797.0,1707.0,476.0,1.0,108.0,61.0,2049.0,690.0,2062.0,9.0,716.0,97.0,1916.0,681.0,1707.0,2319.0,93.0,5.0,2400.0,1981.0,2.0,1928.0,79.0,38.0,18.0,31.0,609.0,809.0,1352.0,26.0,143.0,257.0,20.0,82.0,163.0,533.0,123.0,3004.0,18.0,1.0,91.0,1177.0,1156.0,896.0,56.0,188.0,394.0,980.0,608.0,22.0,83.0,181.0,9.0,49.0,1188.0,43.0,10230.0,327.0,1544.0,67.0,104.0,38.0,26.0,13.0,119.0,76.0,82.0,382.0,843.0,378.0,148.0,216.0,31.0,22.0,941.0,197.0,18.0,1108.0,73.0,607.0,137.0,31.0,283.0,562.0,144.0,89.0,499.0,1179.0,21.0,122.0,77.0,192.0,30.0,8.0,264.0,364.0,703.0,503.0,26.0,2.0,44.0,109.0,78.0,63.0,20.0,2912.0,20.0,709.0,43.0,48.0,15.0,10.0,480.0,501.0,324.0,797.0,133.0,24.0,229.0,813.0,44.0,0.0,26.0,151.0,28.0,53.0,77.0,351.0,2.0,246.0,98.0,38.0,27.0,1129.0,9.0,129.0,36.0,568.0,14.0,2767.0,1874.0,539.0,64.0,15.0,6187.0,542.0,115.0,370.0,153.0,8.0,21.0,65.0,54.0,50.0,47.0,4611.0,54.0,453.0,495.0,268.0,384.0,232.0,203.0,431.0,519.0,12.0,35.0,154.0,308.0,37.0,10.0,116.0,45.0,12.0,391.0,245.0,82.0,67.0,69.0,224.0,417.0,19.0,3075.0,10.0,253.0,344.0,8.0,17.0,295.0,99.0,45.0,119.0,196.0,1887.0,3845.0,653.0,2018-03-11,,2018-10,57.201854562057875,31.304000000000002, +281,281,49.38,116.0,0.0,119.0,5.0,148.0,175.0,387.0,104.0,78.0,400.0,4674.0,2842.0,40.0,469.0,797.0,147.0,22.0,215.0,2709.0,175.0,7.0,770.0,6295.0,101.0,461.0,105.0,1785.0,548.0,67.0,38.0,26.0,82.0,1608.0,641.0,1127.0,12395.0,50.0,22.0,14.0,34.0,257.0,78.0,44.0,1125.0,918.0,33.0,10.0,713.0,235.0,1236.0,32.0,236.0,119.0,213.0,91.0,9.0,41.0,592.0,15.0,291.0,29.0,2474.0,750.0,3084.0,209.0,29.0,7214.0,16.0,1850.0,188.0,201.0,154.0,0.0,69.0,8.0,4346.0,298.0,136.0,17.0,276.0,198.0,20.0,110.0,348.0,267.0,1384.0,368.0,36.0,32.0,6.0,5.0,2514.0,131.0,227.0,215.0,91.0,350.0,5159.0,62.0,1795.0,2225.0,27.0,294.0,701.0,2005.0,538.0,0.0,127.0,50.0,2286.0,765.0,2358.0,14.0,732.0,82.0,1970.0,726.0,1821.0,2496.0,114.0,8.0,2426.0,2598.0,1.0,2337.0,95.0,58.0,23.0,17.0,660.0,690.0,1652.0,28.0,184.0,295.0,33.0,97.0,249.0,605.0,165.0,3539.0,33.0,0.0,104.0,1179.0,1215.0,915.0,66.0,198.0,355.0,956.0,694.0,11.0,93.0,198.0,5.0,41.0,1260.0,44.0,11094.0,374.0,1986.0,85.0,87.0,26.0,25.0,40.0,117.0,84.0,84.0,389.0,954.0,483.0,234.0,252.0,36.0,14.0,994.0,209.0,14.0,1160.0,74.0,757.0,149.0,34.0,322.0,570.0,107.0,116.0,592.0,1318.0,11.0,202.0,61.0,227.0,23.0,13.0,255.0,522.0,924.0,547.0,51.0,3.0,65.0,132.0,75.0,67.0,34.0,3027.0,9.0,927.0,41.0,46.0,26.0,9.0,430.0,529.0,340.0,883.0,142.0,22.0,249.0,938.0,66.0,3.0,24.0,146.0,19.0,51.0,58.0,383.0,1.0,809.0,107.0,31.0,15.0,1259.0,0.0,142.0,33.0,507.0,5.0,2898.0,1978.0,648.0,73.0,25.0,4935.0,665.0,139.0,449.0,167.0,14.0,40.0,78.0,67.0,55.0,32.0,4922.0,72.0,428.0,534.0,342.0,451.0,239.0,383.0,544.0,560.0,13.0,53.0,193.0,301.0,22.0,19.0,92.0,48.0,7.0,443.0,293.0,92.0,71.0,118.0,234.0,416.0,15.0,2693.0,12.0,220.0,371.0,3.0,25.0,352.0,85.0,51.0,107.0,172.0,1927.0,4606.0,721.0,2018-03-18,,2018-11,49.50307038630388,28.010000000000005, +282,282,27.41,113.0,1.0,134.0,5.0,186.0,145.0,390.0,103.0,89.0,350.0,3769.0,2636.0,21.0,509.0,816.0,49.0,44.0,184.0,2703.0,41.0,8.0,815.0,6066.0,198.0,463.0,96.0,1644.0,509.0,69.0,43.0,22.0,100.0,1434.0,644.0,888.0,4489.0,47.0,23.0,8.0,37.0,334.0,62.0,46.0,1065.0,1706.0,18.0,17.0,683.0,208.0,1993.0,29.0,149.0,102.0,185.0,80.0,12.0,34.0,546.0,16.0,269.0,23.0,2084.0,685.0,2803.0,188.0,41.0,5664.0,20.0,1751.0,206.0,178.0,128.0,2.0,75.0,12.0,4465.0,295.0,105.0,29.0,168.0,157.0,26.0,128.0,309.0,280.0,1498.0,351.0,37.0,27.0,9.0,5.0,2785.0,154.0,237.0,171.0,121.0,361.0,5416.0,85.0,1858.0,2292.0,39.0,279.0,698.0,1814.0,511.0,3.0,121.0,51.0,2179.0,776.0,2376.0,18.0,754.0,84.0,1823.0,670.0,1754.0,2298.0,86.0,7.0,2051.0,2217.0,4.0,2315.0,67.0,50.0,21.0,31.0,676.0,787.0,1746.0,24.0,188.0,294.0,34.0,93.0,203.0,590.0,159.0,3476.0,37.0,0.0,92.0,1079.0,1227.0,919.0,56.0,213.0,360.0,988.0,711.0,14.0,99.0,189.0,4.0,50.0,1048.0,46.0,8900.0,336.0,1959.0,93.0,68.0,36.0,21.0,29.0,115.0,91.0,82.0,435.0,826.0,477.0,161.0,214.0,35.0,18.0,959.0,251.0,19.0,1187.0,81.0,564.0,127.0,27.0,327.0,548.0,111.0,97.0,570.0,1330.0,17.0,187.0,71.0,222.0,21.0,7.0,274.0,514.0,759.0,503.0,41.0,7.0,52.0,87.0,57.0,55.0,35.0,3101.0,3.0,648.0,44.0,41.0,13.0,3.0,409.0,541.0,361.0,807.0,158.0,27.0,260.0,878.0,50.0,9.0,29.0,166.0,26.0,56.0,74.0,408.0,0.0,270.0,108.0,33.0,26.0,1370.0,6.0,88.0,30.0,581.0,7.0,2788.0,1948.0,705.0,75.0,26.0,4391.0,563.0,148.0,433.0,138.0,17.0,30.0,74.0,65.0,56.0,20.0,4749.0,74.0,446.0,568.0,318.0,411.0,231.0,227.0,514.0,554.0,6.0,43.0,206.0,375.0,42.0,22.0,99.0,46.0,7.0,486.0,283.0,108.0,84.0,91.0,245.0,414.0,20.0,2135.0,16.0,222.0,366.0,11.0,21.0,298.0,92.0,48.0,106.0,161.0,1843.0,4424.0,654.0,2018-03-25,,2018-12,27.494730770138517,11.674, +283,283,14.17,147.0,3.0,73.0,9.0,145.0,110.0,289.0,96.0,77.0,446.0,2941.0,2599.0,19.0,391.0,877.0,33.0,29.0,128.0,2447.0,61.0,10.0,606.0,4869.0,130.0,381.0,99.0,1259.0,521.0,54.0,32.0,14.0,76.0,1205.0,473.0,902.0,2766.0,49.0,29.0,13.0,52.0,310.0,57.0,46.0,838.0,918.0,54.0,7.0,578.0,200.0,1551.0,43.0,111.0,92.0,128.0,69.0,16.0,28.0,490.0,27.0,282.0,26.0,2048.0,692.0,2786.0,206.0,26.0,4089.0,15.0,1607.0,153.0,279.0,125.0,2.0,41.0,16.0,4288.0,241.0,97.0,25.0,173.0,124.0,19.0,110.0,332.0,205.0,1054.0,357.0,40.0,24.0,15.0,8.0,2516.0,128.0,199.0,142.0,83.0,293.0,5310.0,47.0,2023.0,1730.0,34.0,293.0,582.0,1620.0,429.0,2.0,123.0,52.0,1926.0,671.0,2039.0,16.0,654.0,81.0,1645.0,616.0,1346.0,1781.0,51.0,5.0,1463.0,1928.0,3.0,17367.0,67.0,34.0,19.0,25.0,580.0,733.0,1228.0,17.0,181.0,275.0,32.0,93.0,151.0,515.0,138.0,3331.0,33.0,2.0,70.0,1054.0,1261.0,807.0,62.0,177.0,319.0,821.0,537.0,16.0,94.0,123.0,6.0,55.0,1258.0,23.0,7814.0,294.0,1552.0,86.0,74.0,31.0,16.0,34.0,136.0,95.0,72.0,378.0,759.0,332.0,186.0,213.0,35.0,23.0,784.0,189.0,25.0,1012.0,55.0,692.0,131.0,40.0,291.0,587.0,94.0,89.0,481.0,1203.0,9.0,211.0,53.0,188.0,15.0,12.0,250.0,415.0,735.0,437.0,39.0,3.0,76.0,86.0,44.0,115.0,35.0,2516.0,14.0,566.0,36.0,54.0,24.0,6.0,469.0,400.0,314.0,694.0,135.0,38.0,303.0,748.0,31.0,9.0,19.0,139.0,18.0,33.0,65.0,287.0,6.0,232.0,88.0,20.0,24.0,1327.0,7.0,105.0,47.0,537.0,12.0,2536.0,1748.0,575.0,61.0,31.0,3111.0,585.0,120.0,362.0,141.0,9.0,36.0,75.0,64.0,37.0,26.0,3982.0,35.0,480.0,464.0,272.0,340.0,211.0,141.0,439.0,405.0,10.0,47.0,152.0,344.0,34.0,13.0,93.0,30.0,5.0,380.0,218.0,76.0,58.0,72.0,206.0,470.0,12.0,1780.0,8.0,235.0,416.0,6.0,13.0,309.0,95.0,34.0,97.0,153.0,1507.0,3827.0,721.0,2018-04-01,,2018-13,14.188157789761313,9.132, +284,284,6.93,96.0,1.0,103.0,7.0,176.0,144.0,286.0,87.0,83.0,364.0,2769.0,2617.0,24.0,417.0,811.0,35.0,36.0,126.0,2735.0,41.0,9.0,556.0,5051.0,123.0,409.0,83.0,1449.0,521.0,45.0,42.0,41.0,89.0,1188.0,552.0,982.0,2286.0,67.0,43.0,16.0,25.0,307.0,56.0,43.0,929.0,819.0,22.0,14.0,595.0,170.0,1511.0,27.0,143.0,77.0,174.0,80.0,21.0,57.0,578.0,11.0,280.0,21.0,2456.0,698.0,2410.0,241.0,29.0,3314.0,23.0,1609.0,248.0,214.0,126.0,3.0,52.0,9.0,4322.0,245.0,108.0,9.0,141.0,165.0,13.0,122.0,338.0,268.0,1219.0,272.0,45.0,19.0,12.0,9.0,2496.0,121.0,210.0,155.0,94.0,337.0,5320.0,50.0,1903.0,1842.0,33.0,249.0,713.0,1740.0,438.0,6.0,105.0,78.0,1898.0,684.0,2052.0,13.0,702.0,93.0,1767.0,553.0,1406.0,1972.0,50.0,11.0,1410.0,1924.0,0.0,2213.0,102.0,50.0,22.0,54.0,619.0,760.0,1389.0,19.0,144.0,273.0,40.0,105.0,161.0,526.0,117.0,2967.0,42.0,2.0,97.0,1097.0,1118.0,817.0,53.0,198.0,333.0,1006.0,568.0,20.0,90.0,189.0,7.0,50.0,1141.0,29.0,7378.0,313.0,1533.0,57.0,64.0,32.0,17.0,22.0,144.0,88.0,73.0,342.0,818.0,340.0,153.0,181.0,51.0,7.0,763.0,198.0,23.0,1066.0,74.0,722.0,166.0,19.0,315.0,479.0,130.0,88.0,414.0,1206.0,20.0,180.0,72.0,171.0,13.0,11.0,265.0,354.0,644.0,469.0,44.0,6.0,53.0,73.0,67.0,84.0,19.0,2529.0,12.0,632.0,57.0,42.0,21.0,7.0,461.0,379.0,321.0,810.0,147.0,19.0,296.0,725.0,69.0,7.0,31.0,126.0,29.0,30.0,55.0,352.0,3.0,277.0,95.0,31.0,14.0,1356.0,4.0,96.0,28.0,538.0,7.0,2971.0,1933.0,698.0,68.0,26.0,2877.0,649.0,148.0,382.0,124.0,14.0,29.0,81.0,40.0,37.0,36.0,4236.0,65.0,440.0,524.0,265.0,376.0,211.0,144.0,403.0,469.0,9.0,47.0,157.0,358.0,30.0,17.0,75.0,40.0,5.0,412.0,224.0,74.0,77.0,57.0,215.0,464.0,16.0,1661.0,12.0,246.0,395.0,8.0,17.0,335.0,88.0,40.0,91.0,133.0,1573.0,4057.0,620.0,2018-04-08,,2018-14,6.884687084685396,4.932, +285,285,3.7,122.0,0.0,107.0,4.0,167.0,159.0,334.0,74.0,59.0,371.0,2578.0,2424.0,27.0,401.0,765.0,38.0,30.0,144.0,2861.0,36.0,15.0,614.0,5620.0,130.0,420.0,97.0,1526.0,553.0,64.0,29.0,36.0,92.0,1455.0,626.0,1276.0,2352.0,82.0,26.0,19.0,28.0,377.0,50.0,55.0,1026.0,789.0,22.0,20.0,602.0,188.0,1517.0,26.0,97.0,100.0,175.0,87.0,11.0,45.0,528.0,5.0,269.0,21.0,2261.0,686.0,2563.0,200.0,38.0,2557.0,18.0,1699.0,245.0,350.0,122.0,0.0,78.0,10.0,4486.0,315.0,150.0,14.0,162.0,174.0,19.0,100.0,784.0,259.0,1317.0,289.0,45.0,16.0,5.0,3.0,2554.0,163.0,263.0,162.0,92.0,346.0,5218.0,88.0,2130.0,2193.0,30.0,286.0,798.0,1771.0,396.0,0.0,114.0,58.0,2236.0,801.0,2308.0,16.0,774.0,70.0,1941.0,724.0,1657.0,2359.0,36.0,6.0,1796.0,1888.0,1.0,2213.0,59.0,44.0,22.0,28.0,659.0,772.0,1478.0,24.0,142.0,242.0,32.0,109.0,203.0,595.0,176.0,3517.0,46.0,0.0,103.0,1188.0,1160.0,901.0,54.0,194.0,361.0,1068.0,716.0,37.0,111.0,159.0,9.0,75.0,970.0,39.0,6859.0,365.0,2022.0,62.0,55.0,30.0,12.0,24.0,135.0,102.0,60.0,406.0,919.0,410.0,134.0,256.0,44.0,13.0,897.0,249.0,17.0,1224.0,55.0,770.0,143.0,32.0,288.0,659.0,124.0,62.0,498.0,1227.0,16.0,179.0,77.0,257.0,20.0,5.0,289.0,528.0,792.0,497.0,33.0,3.0,48.0,90.0,75.0,30.0,39.0,2895.0,6.0,558.0,33.0,42.0,18.0,2.0,468.0,445.0,396.0,820.0,122.0,25.0,196.0,909.0,41.0,10.0,16.0,168.0,29.0,40.0,63.0,300.0,4.0,311.0,124.0,41.0,21.0,1301.0,3.0,105.0,42.0,557.0,10.0,2940.0,2087.0,752.0,62.0,18.0,2366.0,786.0,127.0,423.0,173.0,5.0,36.0,91.0,56.0,55.0,23.0,4733.0,77.0,432.0,519.0,346.0,337.0,225.0,322.0,349.0,382.0,7.0,43.0,182.0,377.0,34.0,18.0,86.0,37.0,7.0,442.0,232.0,77.0,66.0,55.0,206.0,414.0,26.0,1801.0,4.0,240.0,348.0,5.0,17.0,280.0,115.0,34.0,108.0,145.0,1635.0,4313.0,619.0,2018-04-15,,2018-15,3.5794329280906183,2.262, +286,286,0.03,184.0,1.0,143.0,7.0,191.0,135.0,308.0,73.0,55.0,248.0,1940.0,1643.0,22.0,408.0,805.0,33.0,23.0,206.0,3208.0,57.0,19.0,1442.0,4951.0,107.0,360.0,343.0,1622.0,721.0,64.0,29.0,30.0,73.0,1922.0,722.0,692.0,2367.0,50.0,27.0,9.0,43.0,308.0,56.0,30.0,963.0,749.0,47.0,6.0,536.0,170.0,1050.0,26.0,109.0,140.0,180.0,67.0,23.0,237.0,1189.0,37.0,256.0,17.0,1725.0,627.0,2905.0,276.0,37.0,3130.0,17.0,1512.0,119.0,153.0,126.0,0.0,61.0,19.0,3475.0,257.0,130.0,16.0,195.0,127.0,17.0,144.0,369.0,270.0,1263.0,426.0,27.0,20.0,4.0,11.0,1745.0,146.0,241.0,129.0,98.0,283.0,4761.0,46.0,1874.0,2033.0,24.0,274.0,770.0,1880.0,455.0,2.0,125.0,51.0,1859.0,635.0,2454.0,21.0,816.0,83.0,2061.0,766.0,1698.0,2139.0,165.0,8.0,1914.0,1882.0,2.0,2554.0,91.0,54.0,21.0,40.0,617.0,527.0,1694.0,20.0,175.0,206.0,53.0,87.0,175.0,455.0,230.0,2354.0,32.0,0.0,89.0,978.0,1319.0,929.0,49.0,244.0,285.0,1126.0,738.0,28.0,139.0,285.0,5.0,43.0,1450.0,42.0,5214.0,359.0,1531.0,70.0,56.0,28.0,13.0,27.0,140.0,96.0,116.0,390.0,856.0,393.0,126.0,242.0,48.0,19.0,920.0,235.0,23.0,1091.0,83.0,485.0,132.0,57.0,276.0,663.0,106.0,100.0,444.0,1135.0,24.0,178.0,63.0,218.0,31.0,6.0,227.0,507.0,932.0,559.0,37.0,9.0,45.0,74.0,142.0,43.0,17.0,2929.0,14.0,517.0,32.0,51.0,26.0,6.0,525.0,492.0,315.0,1024.0,137.0,51.0,15.0,940.0,45.0,5.0,12.0,148.0,25.0,41.0,68.0,306.0,1.0,273.0,100.0,49.0,21.0,1165.0,2.0,221.0,22.0,505.0,6.0,2431.0,1823.0,453.0,89.0,27.0,1588.0,707.0,133.0,436.0,116.0,6.0,44.0,100.0,64.0,62.0,25.0,3715.0,80.0,578.0,481.0,269.0,390.0,245.0,203.0,406.0,387.0,7.0,48.0,156.0,341.0,38.0,20.0,125.0,43.0,17.0,419.0,183.0,76.0,53.0,90.0,201.0,356.0,35.0,1642.0,11.0,184.0,304.0,3.0,17.0,297.0,72.0,76.0,154.0,201.0,1548.0,4009.0,421.0,2018-10-21,,2018-42,-0.17356071961622987,6.594, +287,287,0.06,165.0,2.0,120.0,25.0,178.0,164.0,311.0,64.0,54.0,287.0,2016.0,1791.0,22.0,488.0,847.0,69.0,32.0,191.0,2358.0,78.0,22.0,1510.0,5167.0,106.0,393.0,227.0,1508.0,642.0,90.0,37.0,39.0,86.0,1692.0,700.0,683.0,2520.0,48.0,37.0,7.0,33.0,294.0,66.0,42.0,1076.0,778.0,29.0,12.0,579.0,139.0,1057.0,30.0,114.0,141.0,184.0,77.0,19.0,103.0,571.0,19.0,212.0,23.0,1966.0,618.0,2580.0,220.0,44.0,3244.0,38.0,1535.0,106.0,190.0,109.0,2.0,56.0,19.0,2996.0,265.0,109.0,15.0,240.0,141.0,22.0,155.0,346.0,282.0,1271.0,814.0,28.0,33.0,9.0,10.0,1992.0,144.0,233.0,188.0,81.0,289.0,4831.0,72.0,1725.0,2389.0,28.0,261.0,700.0,1741.0,443.0,1.0,126.0,38.0,1824.0,645.0,2219.0,19.0,1015.0,97.0,2132.0,786.0,1685.0,2260.0,164.0,8.0,1790.0,2079.0,0.0,2343.0,71.0,46.0,8.0,35.0,693.0,581.0,1666.0,24.0,148.0,232.0,42.0,94.0,178.0,513.0,263.0,2378.0,37.0,1.0,110.0,896.0,1626.0,1022.0,69.0,248.0,303.0,1215.0,732.0,28.0,118.0,239.0,5.0,46.0,1088.0,41.0,5711.0,342.0,1597.0,64.0,55.0,40.0,12.0,36.0,173.0,77.0,66.0,485.0,968.0,401.0,145.0,262.0,44.0,24.0,996.0,280.0,27.0,1115.0,90.0,436.0,124.0,48.0,287.0,553.0,127.0,192.0,487.0,1288.0,26.0,249.0,57.0,253.0,23.0,6.0,217.0,579.0,979.0,571.0,37.0,7.0,71.0,95.0,91.0,48.0,11.0,3029.0,19.0,564.0,34.0,41.0,28.0,13.0,488.0,625.0,358.0,1109.0,171.0,41.0,25.0,963.0,38.0,19.0,24.0,188.0,42.0,52.0,59.0,324.0,1.0,299.0,84.0,45.0,32.0,1377.0,2.0,132.0,30.0,572.0,8.0,2416.0,2091.0,500.0,97.0,21.0,1899.0,666.0,117.0,425.0,112.0,8.0,35.0,118.0,64.0,56.0,32.0,3641.0,73.0,477.0,549.0,256.0,389.0,254.0,170.0,468.0,341.0,9.0,43.0,170.0,427.0,27.0,11.0,116.0,73.0,13.0,452.0,210.0,73.0,49.0,67.0,236.0,401.0,25.0,1601.0,11.0,218.0,348.0,5.0,25.0,339.0,98.0,68.0,148.0,236.0,1688.0,3872.0,551.0,2018-10-28,,2018-43,0.03357821242709491,0.07600000000000001, +288,288,0.04,166.0,0.0,150.0,6.0,192.0,145.0,298.0,70.0,64.0,283.0,2021.0,1709.0,32.0,478.0,1099.0,58.0,22.0,206.0,2653.0,48.0,17.0,1700.0,4764.0,142.0,381.0,221.0,1396.0,676.0,68.0,43.0,20.0,81.0,1612.0,543.0,658.0,2259.0,48.0,30.0,33.0,41.0,312.0,49.0,41.0,981.0,751.0,38.0,7.0,452.0,221.0,895.0,26.0,137.0,94.0,159.0,74.0,14.0,114.0,575.0,16.0,244.0,23.0,1785.0,646.0,2321.0,203.0,22.0,3311.0,32.0,1514.0,123.0,185.0,120.0,0.0,41.0,11.0,2949.0,248.0,92.0,25.0,316.0,139.0,19.0,115.0,327.0,347.0,1099.0,350.0,34.0,33.0,4.0,10.0,1748.0,121.0,186.0,191.0,93.0,195.0,5301.0,62.0,1655.0,2280.0,50.0,263.0,586.0,1781.0,467.0,1.0,142.0,35.0,1776.0,727.0,2106.0,15.0,901.0,105.0,2069.0,743.0,1667.0,2225.0,147.0,12.0,1664.0,1953.0,1.0,2242.0,107.0,74.0,27.0,36.0,724.0,559.0,1595.0,29.0,172.0,269.0,29.0,96.0,157.0,496.0,223.0,2491.0,26.0,1.0,122.0,807.0,2138.0,964.0,61.0,242.0,324.0,1050.0,615.0,22.0,94.0,223.0,1.0,47.0,1219.0,37.0,5487.0,299.0,1447.0,73.0,39.0,43.0,18.0,31.0,152.0,71.0,64.0,419.0,982.0,332.0,104.0,224.0,46.0,18.0,849.0,236.0,24.0,1009.0,92.0,438.0,108.0,78.0,296.0,661.0,112.0,152.0,493.0,1293.0,27.0,192.0,63.0,203.0,11.0,14.0,210.0,477.0,1072.0,484.0,26.0,4.0,46.0,67.0,72.0,66.0,12.0,2720.0,11.0,667.0,40.0,36.0,38.0,5.0,483.0,447.0,370.0,1154.0,160.0,44.0,51.0,905.0,58.0,6.0,18.0,165.0,28.0,47.0,69.0,280.0,1.0,317.0,129.0,38.0,22.0,1324.0,2.0,113.0,22.0,581.0,5.0,2255.0,2009.0,430.0,87.0,17.0,1971.0,671.0,159.0,385.0,111.0,6.0,19.0,79.0,43.0,53.0,27.0,3622.0,72.0,485.0,566.0,218.0,295.0,197.0,150.0,514.0,387.0,13.0,49.0,93.0,360.0,59.0,32.0,76.0,51.0,11.0,424.0,182.0,77.0,45.0,86.0,206.0,445.0,30.0,1549.0,27.0,180.0,356.0,4.0,28.0,302.0,72.0,31.0,136.0,221.0,1717.0,3997.0,533.0,2018-11-04,,2018-44,0.0963677716614697,0.04000000000000001, +289,289,0.08,170.0,1.0,165.0,12.0,237.0,173.0,338.0,75.0,61.0,333.0,2197.0,1862.0,32.0,474.0,1121.0,75.0,37.0,194.0,2633.0,32.0,16.0,1559.0,5622.0,105.0,413.0,178.0,1625.0,750.0,108.0,38.0,31.0,89.0,1666.0,683.0,646.0,2469.0,47.0,39.0,5.0,50.0,285.0,45.0,49.0,1049.0,806.0,23.0,13.0,542.0,238.0,1009.0,45.0,139.0,88.0,176.0,82.0,22.0,328.0,906.0,31.0,302.0,36.0,2213.0,625.0,3001.0,171.0,49.0,3546.0,33.0,1818.0,117.0,169.0,118.0,2.0,67.0,7.0,3197.0,299.0,106.0,15.0,269.0,152.0,22.0,146.0,364.0,358.0,1243.0,359.0,35.0,61.0,8.0,7.0,2062.0,126.0,271.0,227.0,103.0,251.0,5556.0,74.0,1887.0,2984.0,37.0,350.0,717.0,2154.0,508.0,3.0,131.0,45.0,2147.0,849.0,2386.0,14.0,1168.0,147.0,2581.0,854.0,2042.0,2729.0,171.0,9.0,1898.0,2330.0,0.0,2644.0,66.0,68.0,19.0,32.0,712.0,625.0,1737.0,34.0,170.0,328.0,46.0,108.0,172.0,543.0,283.0,3387.0,35.0,0.0,116.0,970.0,1351.0,1063.0,67.0,389.0,350.0,1351.0,777.0,15.0,130.0,275.0,1.0,62.0,1181.0,64.0,6283.0,387.0,1675.0,70.0,64.0,39.0,23.0,38.0,234.0,104.0,73.0,463.0,947.0,457.0,122.0,289.0,34.0,28.0,1094.0,254.0,15.0,1212.0,91.0,598.0,145.0,63.0,306.0,736.0,134.0,163.0,622.0,1413.0,23.0,274.0,85.0,260.0,22.0,7.0,224.0,580.0,1146.0,545.0,58.0,4.0,86.0,75.0,108.0,53.0,24.0,3294.0,4.0,717.0,39.0,56.0,33.0,5.0,749.0,520.0,458.0,1328.0,163.0,42.0,84.0,1031.0,77.0,5.0,46.0,199.0,50.0,71.0,77.0,325.0,2.0,332.0,83.0,55.0,35.0,1597.0,3.0,130.0,114.0,616.0,15.0,2555.0,2254.0,500.0,98.0,25.0,1971.0,718.0,198.0,499.0,143.0,11.0,49.0,99.0,59.0,51.0,25.0,4215.0,87.0,546.0,604.0,264.0,319.0,244.0,219.0,534.0,479.0,14.0,64.0,148.0,431.0,32.0,21.0,113.0,66.0,13.0,461.0,226.0,65.0,40.0,85.0,279.0,499.0,21.0,2209.0,12.0,173.0,355.0,7.0,36.0,320.0,91.0,39.0,166.0,272.0,1814.0,4148.0,539.0,2018-11-11,,2018-45,-0.09828670186180233,0.068, +290,290,0.09,157.0,0.0,177.0,3.0,255.0,136.0,385.0,97.0,55.0,366.0,2134.0,1861.0,26.0,449.0,1211.0,70.0,43.0,207.0,2694.0,37.0,13.0,1764.0,5606.0,129.0,447.0,166.0,1684.0,790.0,122.0,39.0,31.0,96.0,1692.0,692.0,619.0,2598.0,48.0,25.0,14.0,36.0,278.0,54.0,38.0,1140.0,762.0,18.0,14.0,606.0,198.0,1056.0,43.0,149.0,113.0,181.0,108.0,11.0,163.0,805.0,26.0,288.0,24.0,2128.0,722.0,2415.0,177.0,42.0,3612.0,34.0,1643.0,131.0,223.0,116.0,3.0,68.0,12.0,3184.0,252.0,138.0,25.0,285.0,140.0,32.0,140.0,432.0,380.0,1186.0,399.0,31.0,27.0,9.0,22.0,1937.0,112.0,264.0,207.0,100.0,306.0,4581.0,98.0,1861.0,3029.0,34.0,331.0,758.0,2246.0,460.0,2.0,124.0,49.0,2050.0,783.0,2338.0,11.0,1151.0,103.0,2405.0,866.0,1975.0,2896.0,160.0,8.0,2246.0,2499.0,1.0,2515.0,66.0,54.0,12.0,28.0,737.0,680.0,1736.0,22.0,172.0,263.0,56.0,90.0,182.0,537.0,305.0,2876.0,50.0,0.0,122.0,986.0,1960.0,1026.0,46.0,281.0,306.0,1247.0,676.0,34.0,104.0,297.0,3.0,44.0,1139.0,56.0,7412.0,366.0,1715.0,56.0,51.0,37.0,27.0,26.0,216.0,95.0,64.0,570.0,1052.0,405.0,112.0,318.0,50.0,40.0,1043.0,237.0,14.0,1231.0,88.0,558.0,125.0,46.0,304.0,646.0,165.0,90.0,487.0,1369.0,23.0,270.0,107.0,272.0,17.0,9.0,246.0,501.0,1176.0,653.0,45.0,4.0,65.0,94.0,89.0,59.0,22.0,3272.0,14.0,677.0,46.0,60.0,26.0,7.0,541.0,533.0,499.0,1175.0,190.0,44.0,182.0,1052.0,65.0,16.0,26.0,171.0,41.0,48.0,65.0,325.0,4.0,302.0,98.0,54.0,31.0,1395.0,2.0,110.0,36.0,609.0,11.0,2386.0,2330.0,550.0,96.0,25.0,1960.0,642.0,195.0,502.0,152.0,12.0,26.0,114.0,67.0,73.0,33.0,4150.0,77.0,577.0,623.0,267.0,427.0,251.0,217.0,541.0,580.0,14.0,69.0,174.0,927.0,26.0,15.0,101.0,48.0,10.0,401.0,191.0,66.0,41.0,75.0,273.0,471.0,28.0,2067.0,17.0,203.0,350.0,6.0,24.0,291.0,87.0,45.0,176.0,265.0,1945.0,4172.0,545.0,2018-11-18,,2018-46,0.4204314132525582,0.138, +291,291,0.12,167.0,0.0,166.0,6.0,297.0,185.0,382.0,96.0,52.0,398.0,2139.0,1791.0,26.0,416.0,1185.0,63.0,23.0,193.0,2437.0,31.0,14.0,1578.0,5646.0,135.0,398.0,151.0,1624.0,762.0,120.0,35.0,35.0,106.0,1560.0,662.0,657.0,2305.0,61.0,66.0,15.0,37.0,274.0,55.0,43.0,1119.0,679.0,26.0,12.0,545.0,233.0,961.0,28.0,123.0,106.0,191.0,153.0,17.0,123.0,691.0,22.0,264.0,22.0,2028.0,591.0,2723.0,180.0,36.0,3873.0,28.0,1655.0,101.0,201.0,138.0,0.0,71.0,23.0,2904.0,287.0,136.0,13.0,276.0,129.0,31.0,145.0,445.0,374.0,1140.0,388.0,32.0,19.0,9.0,8.0,1977.0,112.0,220.0,321.0,87.0,241.0,4879.0,84.0,1784.0,3001.0,37.0,352.0,689.0,2189.0,535.0,2.0,148.0,39.0,2668.0,755.0,2320.0,23.0,1237.0,110.0,2433.0,832.0,1896.0,2719.0,122.0,5.0,2122.0,2383.0,3.0,2509.0,73.0,68.0,14.0,25.0,732.0,665.0,1649.0,21.0,166.0,273.0,69.0,82.0,199.0,515.0,250.0,2976.0,37.0,0.0,150.0,1034.0,1411.0,976.0,76.0,278.0,345.0,1175.0,677.0,25.0,100.0,291.0,2.0,37.0,1189.0,37.0,6915.0,363.0,1673.0,69.0,69.0,44.0,17.0,24.0,168.0,72.0,63.0,573.0,1024.0,437.0,132.0,340.0,45.0,28.0,1058.0,258.0,23.0,1122.0,83.0,446.0,139.0,32.0,305.0,650.0,133.0,110.0,521.0,1577.0,25.0,273.0,66.0,230.0,29.0,15.0,227.0,561.0,1209.0,678.0,35.0,7.0,48.0,99.0,77.0,50.0,15.0,3403.0,28.0,573.0,62.0,41.0,35.0,7.0,518.0,486.0,443.0,1186.0,179.0,45.0,137.0,1118.0,62.0,3.0,23.0,196.0,46.0,52.0,105.0,342.0,1.0,301.0,92.0,50.0,29.0,1401.0,0.0,98.0,36.0,709.0,8.0,2367.0,2200.0,547.0,99.0,22.0,2453.0,637.0,162.0,527.0,132.0,8.0,25.0,98.0,61.0,53.0,38.0,4053.0,105.0,536.0,609.0,285.0,321.0,235.0,222.0,525.0,516.0,9.0,59.0,176.0,410.0,43.0,8.0,83.0,57.0,8.0,421.0,214.0,50.0,42.0,60.0,224.0,439.0,34.0,2238.0,21.0,199.0,350.0,6.0,21.0,290.0,100.0,55.0,188.0,213.0,1826.0,3882.0,554.0,2018-11-25,,2018-47,0.2829863363360161,0.10800000000000001, +292,292,0.19,185.0,2.0,165.0,10.0,221.0,175.0,409.0,88.0,81.0,377.0,2221.0,1895.0,29.0,480.0,1120.0,66.0,29.0,187.0,2616.0,50.0,14.0,1601.0,5355.0,154.0,396.0,162.0,1670.0,751.0,130.0,39.0,31.0,111.0,1558.0,689.0,776.0,2897.0,80.0,32.0,13.0,34.0,218.0,70.0,39.0,1029.0,767.0,35.0,12.0,587.0,221.0,887.0,42.0,216.0,123.0,197.0,165.0,22.0,102.0,698.0,25.0,267.0,34.0,1886.0,690.0,2389.0,222.0,36.0,4030.0,30.0,1693.0,115.0,192.0,137.0,0.0,52.0,14.0,2818.0,269.0,96.0,23.0,256.0,212.0,24.0,148.0,428.0,524.0,1162.0,400.0,55.0,21.0,10.0,11.0,2003.0,134.0,218.0,182.0,88.0,283.0,5077.0,85.0,1707.0,2833.0,40.0,364.0,824.0,2111.0,534.0,2.0,110.0,56.0,2091.0,760.0,2260.0,19.0,1257.0,92.0,2506.0,803.0,1924.0,2759.0,125.0,12.0,2015.0,2361.0,2.0,2606.0,66.0,56.0,18.0,33.0,719.0,626.0,1745.0,12.0,180.0,280.0,41.0,83.0,201.0,524.0,258.0,2883.0,50.0,2.0,117.0,924.0,1544.0,993.0,65.0,340.0,348.0,1223.0,636.0,19.0,109.0,323.0,7.0,47.0,1223.0,40.0,6875.0,363.0,1700.0,47.0,69.0,33.0,31.0,42.0,279.0,89.0,59.0,580.0,1063.0,508.0,162.0,343.0,40.0,37.0,973.0,272.0,21.0,1118.0,96.0,485.0,129.0,41.0,294.0,721.0,124.0,92.0,458.0,2410.0,27.0,239.0,89.0,245.0,34.0,13.0,249.0,604.0,1120.0,623.0,32.0,8.0,65.0,83.0,97.0,58.0,15.0,3339.0,39.0,709.0,67.0,52.0,41.0,27.0,500.0,586.0,415.0,1162.0,189.0,54.0,35.0,1081.0,64.0,6.0,28.0,204.0,52.0,63.0,69.0,330.0,1.0,408.0,102.0,53.0,42.0,1291.0,8.0,157.0,55.0,728.0,11.0,2502.0,1906.0,485.0,95.0,31.0,2353.0,617.0,191.0,489.0,130.0,11.0,37.0,129.0,62.0,49.0,27.0,4065.0,103.0,594.0,582.0,305.0,369.0,238.0,239.0,508.0,818.0,10.0,72.0,165.0,365.0,38.0,14.0,116.0,48.0,13.0,473.0,203.0,72.0,69.0,68.0,329.0,490.0,16.0,2148.0,30.0,209.0,293.0,5.0,42.0,314.0,79.0,45.0,154.0,188.0,1846.0,4041.0,595.0,2018-12-02,,2018-48,0.17022697917940377,1.5120000000000005, +293,293,0.32,141.0,1.0,152.0,6.0,220.0,170.0,324.0,84.0,55.0,342.0,2274.0,1986.0,11.0,507.0,1176.0,65.0,29.0,187.0,2547.0,72.0,7.0,1681.0,5394.0,150.0,381.0,157.0,1849.0,805.0,99.0,30.0,32.0,102.0,1784.0,774.0,716.0,2618.0,73.0,34.0,16.0,45.0,646.0,87.0,31.0,1008.0,744.0,35.0,14.0,512.0,215.0,907.0,33.0,243.0,95.0,159.0,166.0,23.0,145.0,707.0,25.0,293.0,27.0,2031.0,753.0,2193.0,255.0,34.0,3876.0,28.0,1912.0,123.0,170.0,144.0,0.0,59.0,18.0,2823.0,247.0,119.0,21.0,258.0,167.0,25.0,210.0,392.0,340.0,1159.0,317.0,32.0,19.0,15.0,8.0,1978.0,106.0,178.0,165.0,89.0,211.0,5224.0,130.0,1808.0,2953.0,24.0,367.0,833.0,2031.0,531.0,0.0,116.0,57.0,2024.0,781.0,2333.0,19.0,1218.0,107.0,2553.0,827.0,1788.0,2763.0,91.0,9.0,2003.0,2483.0,1.0,2508.0,78.0,71.0,20.0,40.0,651.0,550.0,1641.0,40.0,157.0,337.0,54.0,75.0,189.0,473.0,205.0,2923.0,38.0,0.0,136.0,957.0,1310.0,982.0,52.0,318.0,357.0,1197.0,567.0,28.0,87.0,247.0,9.0,40.0,1177.0,46.0,6852.0,358.0,1589.0,68.0,61.0,43.0,30.0,21.0,186.0,93.0,66.0,561.0,1147.0,443.0,151.0,284.0,53.0,30.0,856.0,280.0,29.0,1081.0,104.0,604.0,126.0,27.0,260.0,630.0,141.0,98.0,481.0,1514.0,20.0,263.0,95.0,203.0,15.0,10.0,226.0,533.0,1101.0,626.0,44.0,11.0,52.0,84.0,95.0,74.0,18.0,3332.0,27.0,572.0,45.0,47.0,39.0,10.0,487.0,460.0,406.0,1155.0,190.0,29.0,119.0,1014.0,65.0,2.0,19.0,183.0,42.0,62.0,81.0,405.0,0.0,286.0,88.0,44.0,34.0,1269.0,1.0,177.0,23.0,679.0,11.0,2400.0,1603.0,522.0,124.0,13.0,2061.0,654.0,196.0,463.0,113.0,4.0,35.0,107.0,55.0,45.0,25.0,4104.0,92.0,512.0,595.0,232.0,350.0,214.0,196.0,533.0,856.0,13.0,94.0,159.0,398.0,44.0,19.0,90.0,51.0,5.0,481.0,205.0,97.0,55.0,63.0,245.0,532.0,28.0,2300.0,15.0,232.0,305.0,5.0,20.0,321.0,117.0,41.0,135.0,283.0,1975.0,3900.0,589.0,2018-12-09,,2018-49,0.18119981317168055,5.120000000000001, +294,294,0.38,142.0,1.0,200.0,0.0,215.0,170.0,348.0,57.0,50.0,315.0,2483.0,1933.0,28.0,497.0,1130.0,90.0,20.0,197.0,2441.0,53.0,7.0,1360.0,5216.0,173.0,391.0,216.0,1653.0,708.0,122.0,28.0,46.0,110.0,1741.0,708.0,742.0,2580.0,69.0,26.0,16.0,38.0,449.0,54.0,51.0,919.0,801.0,32.0,7.0,445.0,177.0,931.0,26.0,602.0,101.0,149.0,101.0,23.0,183.0,1476.0,44.0,300.0,22.0,2256.0,814.0,2322.0,207.0,44.0,4046.0,26.0,1679.0,107.0,156.0,136.0,0.0,62.0,16.0,2732.0,234.0,114.0,35.0,283.0,177.0,18.0,121.0,634.0,287.0,1017.0,357.0,17.0,15.0,7.0,13.0,3271.0,84.0,203.0,188.0,78.0,203.0,4823.0,101.0,1634.0,2804.0,28.0,309.0,776.0,2129.0,581.0,1.0,124.0,60.0,2102.0,731.0,2257.0,20.0,1171.0,98.0,2621.0,728.0,1650.0,2667.0,105.0,4.0,1962.0,2597.0,2.0,2289.0,79.0,65.0,32.0,22.0,628.0,610.0,1522.0,24.0,168.0,307.0,23.0,82.0,177.0,514.0,192.0,3181.0,37.0,0.0,117.0,883.0,1265.0,859.0,58.0,342.0,326.0,1026.0,566.0,19.0,102.0,233.0,3.0,43.0,1709.0,60.0,6541.0,462.0,1477.0,77.0,50.0,44.0,13.0,20.0,186.0,85.0,66.0,458.0,1148.0,484.0,177.0,259.0,37.0,40.0,894.0,214.0,22.0,987.0,89.0,589.0,142.0,39.0,305.0,900.0,126.0,97.0,395.0,1422.0,30.0,220.0,93.0,229.0,26.0,14.0,220.0,463.0,1022.0,614.0,37.0,9.0,77.0,92.0,91.0,99.0,17.0,2926.0,20.0,581.0,47.0,55.0,30.0,9.0,481.0,402.0,399.0,964.0,148.0,46.0,252.0,1091.0,62.0,6.0,22.0,144.0,71.0,67.0,92.0,404.0,0.0,301.0,97.0,49.0,28.0,1193.0,2.0,197.0,25.0,663.0,7.0,2379.0,1365.0,554.0,90.0,20.0,2500.0,579.0,183.0,474.0,129.0,15.0,38.0,123.0,39.0,40.0,27.0,3809.0,64.0,427.0,527.0,220.0,282.0,200.0,179.0,458.0,677.0,8.0,79.0,153.0,372.0,43.0,30.0,99.0,57.0,8.0,511.0,215.0,60.0,67.0,65.0,282.0,433.0,24.0,2310.0,15.0,206.0,298.0,8.0,19.0,281.0,83.0,38.0,159.0,339.0,1743.0,3872.0,458.0,2018-12-16,,2018-50,0.4285647218253601,0.38000000000000006, +295,295,0.48,195.0,2.0,135.0,2.0,173.0,134.0,306.0,81.0,70.0,270.0,2296.0,1935.0,32.0,391.0,1257.0,40.0,22.0,146.0,2134.0,42.0,9.0,1578.0,4620.0,139.0,309.0,136.0,1309.0,547.0,68.0,28.0,36.0,78.0,1341.0,524.0,672.0,1998.0,40.0,36.0,11.0,25.0,235.0,56.0,27.0,747.0,755.0,18.0,13.0,415.0,172.0,832.0,36.0,471.0,56.0,156.0,54.0,19.0,102.0,578.0,14.0,198.0,23.0,1840.0,617.0,2102.0,156.0,45.0,3843.0,25.0,1451.0,79.0,189.0,116.0,0.0,47.0,16.0,2789.0,198.0,102.0,24.0,272.0,133.0,25.0,101.0,341.0,281.0,1488.0,276.0,37.0,17.0,3.0,20.0,1786.0,94.0,164.0,159.0,57.0,172.0,5377.0,84.0,1595.0,2397.0,20.0,234.0,535.0,1861.0,433.0,1.0,102.0,40.0,1749.0,694.0,1967.0,14.0,966.0,84.0,1891.0,582.0,1267.0,1928.0,68.0,6.0,1684.0,2218.0,1.0,1989.0,71.0,53.0,14.0,25.0,566.0,601.0,1431.0,7.0,161.0,272.0,29.0,80.0,171.0,557.0,146.0,2893.0,41.0,0.0,101.0,834.0,1172.0,893.0,52.0,273.0,337.0,939.0,473.0,10.0,59.0,161.0,6.0,65.0,918.0,26.0,6681.0,452.0,1273.0,53.0,67.0,30.0,11.0,29.0,144.0,128.0,46.0,397.0,914.0,406.0,183.0,257.0,32.0,31.0,718.0,253.0,10.0,846.0,60.0,615.0,155.0,36.0,274.0,681.0,93.0,88.0,394.0,1108.0,35.0,179.0,71.0,191.0,26.0,9.0,181.0,453.0,839.0,591.0,31.0,11.0,60.0,87.0,73.0,40.0,19.0,2892.0,9.0,505.0,36.0,47.0,23.0,7.0,504.0,379.0,316.0,838.0,141.0,36.0,629.0,925.0,61.0,6.0,23.0,98.0,31.0,50.0,67.0,389.0,1.0,459.0,94.0,35.0,19.0,1143.0,3.0,92.0,28.0,655.0,3.0,2229.0,1214.0,496.0,92.0,10.0,2400.0,582.0,151.0,437.0,106.0,13.0,40.0,84.0,42.0,35.0,20.0,3299.0,66.0,505.0,487.0,198.0,271.0,158.0,133.0,354.0,1169.0,11.0,100.0,118.0,322.0,39.0,15.0,93.0,31.0,14.0,429.0,197.0,70.0,43.0,48.0,204.0,392.0,22.0,1934.0,15.0,195.0,256.0,8.0,26.0,309.0,97.0,30.0,126.0,339.0,1460.0,3330.0,518.0,2018-12-23,,2018-51,0.4280538187475358,0.48, +296,296,0.31,222.0,1.0,70.0,7.0,171.0,81.0,163.0,40.0,38.0,183.0,2205.0,2029.0,20.0,353.0,1477.0,28.0,12.0,106.0,1702.0,34.0,19.0,1603.0,3534.0,168.0,222.0,171.0,1201.0,596.0,39.0,30.0,31.0,59.0,738.0,204.0,809.0,2475.0,35.0,22.0,12.0,16.0,255.0,27.0,32.0,474.0,662.0,26.0,17.0,214.0,196.0,1107.0,31.0,382.0,53.0,89.0,33.0,7.0,134.0,525.0,28.0,190.0,25.0,1336.0,802.0,2051.0,183.0,44.0,4352.0,12.0,1303.0,73.0,184.0,98.0,0.0,35.0,14.0,3117.0,113.0,63.0,23.0,308.0,84.0,16.0,67.0,275.0,240.0,681.0,323.0,34.0,21.0,10.0,7.0,1732.0,55.0,98.0,117.0,55.0,104.0,7151.0,28.0,1475.0,1501.0,29.0,205.0,536.0,1238.0,354.0,0.0,80.0,22.0,1295.0,551.0,1520.0,8.0,510.0,56.0,1104.0,458.0,888.0,1285.0,56.0,2.0,1051.0,1998.0,2.0,1593.0,56.0,42.0,21.0,17.0,459.0,605.0,1028.0,7.0,106.0,265.0,17.0,66.0,124.0,423.0,105.0,2305.0,57.0,1.0,66.0,739.0,1420.0,926.0,36.0,205.0,289.0,724.0,266.0,6.0,66.0,109.0,5.0,47.0,1061.0,29.0,7834.0,231.0,825.0,65.0,35.0,24.0,17.0,8.0,102.0,63.0,56.0,324.0,711.0,179.0,207.0,203.0,29.0,16.0,483.0,200.0,24.0,601.0,46.0,731.0,104.0,35.0,234.0,513.0,93.0,55.0,320.0,1053.0,7.0,159.0,43.0,109.0,21.0,10.0,189.0,332.0,973.0,553.0,32.0,2.0,20.0,35.0,70.0,50.0,5.0,1775.0,7.0,541.0,43.0,61.0,23.0,6.0,499.0,303.0,233.0,545.0,101.0,32.0,935.0,531.0,39.0,12.0,14.0,98.0,24.0,46.0,56.0,241.0,1.0,224.0,96.0,35.0,16.0,932.0,1.0,82.0,26.0,704.0,8.0,2192.0,1140.0,540.0,78.0,12.0,2938.0,622.0,120.0,280.0,76.0,4.0,22.0,70.0,23.0,36.0,12.0,2818.0,31.0,626.0,922.0,154.0,250.0,104.0,101.0,304.0,383.0,9.0,90.0,86.0,308.0,31.0,22.0,56.0,27.0,6.0,326.0,141.0,68.0,42.0,44.0,181.0,424.0,16.0,1216.0,9.0,220.0,299.0,2.0,20.0,354.0,69.0,32.0,62.0,265.0,1270.0,2636.0,536.0,2018-12-30,,2018-52,0.3002696717433969,0.37800000000000006, +297,297,0.56,175.0,0.0,82.0,2.0,209.0,141.0,249.0,70.0,58.0,233.0,4159.0,1963.0,26.0,426.0,1457.0,39.0,19.0,147.0,2078.0,42.0,29.0,1876.0,3934.0,253.0,253.0,169.0,1569.0,683.0,51.0,30.0,19.0,56.0,929.0,320.0,661.0,2188.0,67.0,17.0,5.0,35.0,228.0,34.0,31.0,697.0,863.0,39.0,6.0,353.0,172.0,1020.0,29.0,304.0,96.0,125.0,54.0,12.0,130.0,599.0,17.0,223.0,32.0,1581.0,796.0,2376.0,219.0,16.0,4278.0,16.0,1473.0,83.0,361.0,93.0,1.0,61.0,21.0,2982.0,202.0,84.0,19.0,234.0,110.0,17.0,106.0,355.0,245.0,833.0,363.0,27.0,13.0,7.0,8.0,1723.0,70.0,143.0,112.0,63.0,153.0,6495.0,56.0,1434.0,1877.0,37.0,241.0,557.0,1416.0,443.0,0.0,87.0,29.0,1472.0,545.0,1606.0,13.0,824.0,68.0,1525.0,566.0,1151.0,1765.0,47.0,8.0,1215.0,2083.0,0.0,2014.0,96.0,45.0,23.0,29.0,503.0,571.0,1503.0,12.0,107.0,198.0,28.0,74.0,138.0,576.0,166.0,2312.0,43.0,0.0,75.0,781.0,1460.0,929.0,42.0,251.0,325.0,1008.0,408.0,23.0,61.0,159.0,1.0,43.0,1096.0,27.0,7824.0,250.0,1157.0,57.0,47.0,32.0,13.0,19.0,131.0,57.0,45.0,369.0,858.0,251.0,194.0,185.0,21.0,14.0,601.0,208.0,19.0,645.0,62.0,871.0,128.0,26.0,302.0,562.0,112.0,60.0,391.0,1342.0,20.0,190.0,71.0,171.0,33.0,20.0,226.0,360.0,920.0,581.3333333333334,33.0,5.0,43.0,56.0,67.0,50.0,21.0,2202.0,4.0,571.0,49.0,59.0,22.0,6.0,530.0,364.0,310.0,686.0,103.0,32.0,277.0,744.0,24.0,2.0,24.0,98.0,31.0,35.0,72.0,256.6,1.0,284.0,68.0,41.0,15.0,1015.0,3.0,96.0,18.0,776.0,9.0,2803.0,1228.0,535.0,100.0,17.0,3006.0,694.0,183.0,313.0,92.0,1.0,27.0,78.0,42.0,35.0,23.0,3192.0,72.0,754.0,590.0,171.0,274.0,155.0,162.0,384.0,384.0,12.0,102.0,89.0,323.0,22.0,17.0,100.0,43.0,6.0,374.0,178.0,58.0,27.0,77.0,218.0,448.0,22.0,2057.0,13.0,200.0,304.0,2.0,19.0,273.0,86.0,50.0,115.0,351.0,1497.0,3002.0,516.0,2019-01-13,,2019-2,0.5017096248375879,0.518, +298,298,1.43,252.0,2.0,187.0,12.0,224.0,176.0,335.0,113.0,75.0,369.0,4997.0,2100.0,44.0,650.0,1286.0,60.0,20.0,191.0,2784.0,39.0,45.0,1686.0,6216.0,300.0,393.0,175.0,2025.0,1107.0,91.0,48.0,40.0,109.0,1616.0,673.0,719.0,3011.0,69.0,38.0,8.0,42.0,288.0,49.0,46.0,1077.0,976.0,35.0,14.0,544.0,235.0,1042.0,55.0,247.0,149.0,182.0,110.0,15.0,119.0,696.0,19.0,304.0,34.0,2123.0,773.0,2732.0,262.0,51.0,4562.0,30.0,1962.0,143.0,267.0,150.0,1.0,72.0,13.0,3597.0,317.0,132.0,13.0,405.0,229.0,19.0,163.0,439.0,346.0,1460.0,483.0,35.0,28.0,8.0,18.0,2291.0,124.0,293.0,204.0,79.0,247.0,6999.0,92.0,1705.0,3006.0,29.0,336.0,809.0,2318.0,648.0,1.0,122.0,59.0,2176.0,896.0,2376.0,20.0,1191.0,123.0,2293.0,741.0,1837.0,2603.0,86.0,6.0,1909.0,2746.0,0.0,2777.0,170.0,86.0,24.0,38.0,781.0,688.0,1990.0,15.0,138.0,318.0,38.0,102.0,233.0,672.0,277.0,3454.0,79.0,0.0,119.0,1041.0,1532.0,1150.0,83.0,367.0,348.0,1263.0,751.0,24.0,117.0,277.0,8.0,62.0,1346.0,29.0,9396.0,419.0,1771.0,91.0,69.0,53.0,27.0,27.0,185.0,94.0,70.0,598.0,1400.0,450.0,247.0,250.0,48.0,20.0,951.0,312.0,18.0,925.0,101.0,1489.0,193.0,42.0,358.0,619.0,192.0,127.0,529.0,1151.0,34.0,270.0,95.0,228.0,26.0,7.0,280.0,528.0,1192.0,609.6666666666666,41.0,9.0,62.0,80.0,83.0,57.0,24.0,2990.0,15.0,873.0,47.0,67.0,37.0,5.0,660.0,513.0,463.0,881.0,191.0,40.0,708.0,1082.0,37.0,4.0,22.0,204.0,53.0,72.0,94.0,272.2,4.0,319.0,113.0,53.0,31.0,1400.0,6.0,121.0,22.0,750.0,9.0,3474.0,1815.0,606.0,108.0,21.0,3341.0,710.0,564.0,434.0,169.0,13.0,50.0,119.0,68.0,50.0,25.0,3999.0,91.0,819.0,655.0,248.0,362.0,291.0,255.0,476.0,592.0,6.0,98.0,156.0,376.0,45.0,21.0,135.0,57.0,19.0,542.0,238.0,76.0,53.0,74.0,300.0,512.0,31.0,2510.0,18.0,255.0,356.0,8.0,33.0,326.0,125.0,42.0,183.0,473.0,2123.0,3821.0,596.0,2019-01-20,,2019-3,1.4153913785062784,1.5, +299,299,2.45,194.0,0.0,213.0,11.0,212.0,218.0,421.0,117.0,65.0,358.0,4265.0,2097.0,46.0,665.0,1097.0,78.0,38.0,221.0,2660.0,39.0,27.0,1570.0,6357.0,211.0,434.0,175.0,2181.0,1085.0,119.0,40.0,52.0,111.0,1655.0,646.0,757.0,2630.0,76.0,34.0,27.0,50.0,263.0,76.0,48.0,1274.0,1181.0,33.0,19.0,592.0,261.0,1082.0,48.0,247.0,107.0,208.0,120.0,7.0,168.0,642.0,22.0,277.0,42.0,2257.0,741.0,8114.0,240.0,66.0,4647.0,34.0,1842.0,189.0,221.0,195.0,2.0,65.0,10.0,3457.0,304.0,182.0,21.0,317.0,218.0,20.0,218.0,404.0,328.0,1410.0,425.0,11.0,21.0,8.0,12.0,2032.0,162.0,323.0,190.0,110.0,287.0,6925.0,128.0,1934.0,2995.0,23.0,346.0,795.0,2197.0,583.0,0.0,143.0,45.0,2208.0,899.0,2327.0,17.0,1266.0,126.0,2358.0,842.0,1751.0,2849.0,76.0,8.0,2190.0,2650.0,2.0,2967.0,125.0,88.0,19.0,46.0,849.0,662.0,1942.0,19.0,188.0,330.0,32.0,95.0,245.0,674.0,320.0,3473.0,101.0,0.0,137.0,1076.0,1783.0,1142.0,77.0,341.0,418.0,1283.0,798.0,17.0,99.0,293.0,7.0,52.0,1251.0,41.0,9115.0,427.0,2196.0,100.0,77.0,59.0,36.0,34.0,414.0,118.0,111.0,618.0,1263.0,589.0,161.0,253.0,57.0,38.0,1148.0,287.0,20.0,909.0,79.0,1140.0,175.0,50.0,336.0,658.0,185.0,80.0,555.0,1133.0,23.0,284.0,97.0,244.0,28.0,14.0,310.0,584.0,1162.0,638.0,49.0,11.0,84.0,80.0,98.0,52.0,24.0,2951.0,17.0,692.0,45.0,44.0,34.0,13.0,638.0,568.0,448.0,1024.0,209.0,70.0,448.0,1131.0,64.0,10.0,38.0,173.0,48.0,71.0,103.0,287.8,0.0,344.0,103.0,65.0,29.0,1435.0,5.0,135.0,39.0,741.0,10.0,3172.0,1794.0,660.0,119.0,41.0,3502.0,783.0,333.0,491.0,148.0,13.0,56.0,106.0,64.0,58.0,23.0,4051.0,86.0,624.0,669.0,327.0,508.0,307.0,223.0,464.0,560.0,11.0,141.0,150.0,397.0,40.0,15.0,119.0,55.0,11.0,538.0,241.0,73.0,61.0,59.0,269.0,536.0,35.0,2332.0,34.0,275.0,345.0,3.0,29.0,393.0,111.0,57.0,175.0,521.0,1979.0,4043.0,634.0,2019-01-27,,2019-4,2.508234663189832,2.45, +300,300,4.48,181.0,1.0,180.0,16.0,190.0,175.0,372.0,99.0,91.0,395.0,5419.0,2302.0,23.0,589.0,1124.0,92.0,25.0,215.0,2879.0,43.0,16.0,1675.0,6191.0,157.0,389.0,258.0,2022.0,1004.0,77.0,42.0,50.0,102.0,1747.0,757.0,752.0,2750.0,62.0,45.0,18.0,51.0,286.0,76.0,52.0,1269.0,1107.0,52.0,17.0,672.0,239.0,1081.0,37.0,228.0,148.0,190.0,121.0,9.0,273.0,718.0,18.0,320.0,54.0,2046.0,832.0,3376.0,223.0,37.0,5911.0,28.0,1887.0,215.0,228.0,190.0,0.0,94.0,14.0,3426.0,293.0,124.0,10.0,350.0,194.0,18.0,162.0,386.0,448.0,1548.0,396.0,29.0,13.0,11.0,13.0,2040.0,124.0,319.0,199.0,88.0,312.0,6626.0,110.0,1801.0,2727.0,25.0,333.0,735.0,2281.0,629.0,2.0,183.0,34.0,2213.0,839.0,2272.0,18.0,1185.0,116.0,2223.0,907.0,1707.0,2650.0,94.0,13.0,2196.0,2430.0,2.0,3018.0,130.0,87.0,48.0,46.0,842.0,658.0,1935.0,16.0,171.0,308.0,38.0,103.0,261.0,631.0,304.0,3390.0,100.0,1.0,140.0,1012.0,1820.0,1099.0,85.0,306.0,373.0,1303.0,928.0,19.0,162.0,308.0,3.0,69.0,1683.0,34.0,11367.0,492.0,2577.0,71.0,69.0,42.0,39.0,31.0,590.0,69.0,70.0,635.0,1359.0,538.0,191.0,264.0,70.0,46.0,1042.0,304.0,18.0,968.0,78.0,876.0,179.0,63.0,354.0,699.0,193.0,101.0,581.0,985.0,17.0,247.0,129.0,250.0,28.0,17.0,270.0,610.0,1263.0,666.3333333333334,45.0,16.0,65.0,114.0,144.0,87.0,19.0,3016.0,17.0,720.0,63.0,50.0,37.0,16.0,613.0,683.0,446.0,936.0,160.0,45.0,448.0,1101.0,33.0,5.0,20.0,193.0,39.0,42.0,82.0,303.4,1.0,328.0,106.0,77.0,43.0,1521.0,12.0,163.0,24.0,743.0,16.0,2752.0,1870.0,768.0,95.0,27.0,4047.0,733.0,254.0,565.0,133.0,13.0,72.0,107.0,67.0,57.0,28.0,3920.0,89.0,579.0,598.0,338.0,390.0,324.0,326.0,427.0,537.0,18.0,145.0,192.0,401.0,46.0,29.0,134.0,66.0,20.0,522.0,202.0,62.0,71.0,75.0,269.0,576.0,30.0,2431.0,17.0,250.0,318.0,7.0,33.0,429.0,114.0,37.0,215.0,522.0,2045.0,3742.0,642.0,2019-02-03,,2019-5,4.435761913340485,16.426, +301,301,9.59,131.0,3.0,251.0,10.0,236.0,188.0,386.0,130.0,80.0,435.0,5928.0,2538.0,18.0,508.0,1018.0,50.0,26.0,200.0,2984.0,38.0,16.0,1739.0,6405.0,219.0,391.0,165.0,1948.0,993.0,102.0,42.0,56.0,102.0,1765.0,746.0,712.0,2647.0,62.0,30.0,11.0,36.0,231.0,63.0,40.0,1277.0,1121.0,25.0,15.0,719.0,225.0,1149.0,32.0,698.0,145.0,179.0,92.0,25.0,104.0,549.0,26.0,327.0,43.0,1984.0,683.0,3755.0,179.0,58.0,7042.0,34.0,1766.0,175.0,243.0,208.0,2.0,75.0,18.0,3515.0,302.0,146.0,14.0,364.0,192.0,35.0,122.0,407.0,409.0,1569.0,357.0,25.0,32.0,8.0,9.0,1902.0,187.0,283.0,188.0,68.0,434.0,6724.0,121.0,1729.0,2700.0,45.0,336.0,664.0,2251.0,648.0,2.0,147.0,66.0,2149.0,805.0,2422.0,24.0,1273.0,120.0,2367.0,959.0,1580.0,2695.0,114.0,14.0,1939.0,2618.0,0.0,3263.0,143.0,95.0,14.0,38.0,795.0,679.0,1856.0,25.0,239.0,282.0,31.0,92.0,258.0,648.0,367.0,3213.0,91.0,1.0,112.0,973.0,3627.0,1215.0,79.0,345.0,417.0,1219.0,990.0,7.0,91.0,293.0,5.0,81.0,1318.0,65.0,12960.0,505.0,4052.0,84.0,59.0,53.0,43.0,20.0,3152.0,67.0,70.0,598.0,1317.0,489.0,143.0,244.0,60.0,51.0,999.0,302.0,27.0,842.0,88.0,1052.0,199.0,65.0,324.0,678.0,215.0,137.0,501.0,1075.0,26.0,296.0,103.0,236.0,19.0,5.0,267.0,528.0,1235.0,694.6666666666665,35.0,12.0,67.0,138.0,130.0,52.0,22.0,3063.0,24.0,706.0,41.0,44.0,35.0,15.0,933.0,860.0,480.0,849.0,171.0,66.0,660.0,1066.0,48.0,11.0,28.0,156.0,43.0,59.0,105.0,319.0,2.0,311.0,132.0,63.0,43.0,1789.0,2.0,105.0,22.0,752.0,5.0,2827.0,1804.0,641.0,97.0,27.0,4556.0,753.0,306.0,601.0,146.0,8.0,54.0,115.0,55.0,70.0,30.0,3981.0,117.0,1676.0,604.0,321.0,379.0,323.0,311.0,443.0,532.0,11.0,134.0,183.0,379.0,27.0,11.0,112.0,80.0,15.0,505.0,225.0,51.0,71.0,69.0,312.0,470.0,22.0,2632.0,17.0,290.0,361.0,8.0,31.0,358.0,112.0,23.0,201.0,522.0,2014.0,4109.0,519.0,2019-02-10,,2019-6,9.466337562309384,10.134, +302,302,14.89,187.0,0.0,186.0,8.0,196.0,156.0,339.0,149.0,71.0,415.0,6246.0,2683.0,20.0,533.0,1049.0,50.0,19.0,230.0,2847.0,46.0,10.0,1763.0,5760.0,149.0,395.0,170.0,1853.0,964.0,104.0,44.0,43.0,123.0,1618.0,697.0,654.0,3034.0,57.0,41.0,12.0,34.0,290.0,60.0,50.0,1160.0,1066.0,22.0,4.0,681.0,250.0,1121.0,125.0,254.0,169.0,200.0,68.0,6.0,124.0,572.0,0.0,325.0,32.0,2567.0,1963.0,4213.0,182.0,55.0,7948.0,22.0,1799.0,236.0,226.0,203.0,4.0,78.0,29.0,3505.0,292.0,117.0,13.0,405.0,250.0,14.0,148.0,388.0,398.0,1437.0,369.0,29.0,23.0,14.0,10.0,1845.0,140.0,253.0,216.0,93.0,385.0,6631.0,120.0,1682.0,2719.0,84.0,318.0,728.0,2174.0,613.0,2.0,168.0,57.0,2023.0,835.0,2214.0,16.0,1199.0,112.0,2175.0,961.0,1631.0,2689.0,102.0,9.0,2276.0,2518.0,0.0,2936.0,169.0,72.0,15.0,36.0,808.0,637.0,1841.0,18.0,190.0,330.0,45.0,81.0,266.0,576.0,339.0,3290.0,130.0,1.0,128.0,985.0,8224.0,1109.0,87.0,333.0,355.0,1298.0,1004.0,26.0,80.0,284.0,1.0,73.0,1240.0,29.0,13937.0,445.0,3303.0,86.0,99.0,53.0,35.0,34.0,1880.0,76.0,66.0,560.0,1266.0,454.0,169.0,302.0,57.0,58.0,1035.0,274.0,19.0,908.0,84.0,1168.0,190.0,113.0,329.0,757.0,194.0,73.0,514.0,1347.0,26.0,263.0,103.0,232.0,27.0,17.0,308.0,563.0,1174.0,723.0,40.0,11.0,70.0,91.0,102.0,131.0,25.0,3039.0,18.0,788.0,71.0,47.0,28.0,4.0,855.0,760.0,480.0,889.0,184.0,48.0,626.0,1058.0,48.0,8.0,25.0,141.0,36.0,56.0,89.0,396.0,2.0,322.0,111.0,78.0,46.0,1927.0,4.0,129.0,27.0,693.0,8.0,2548.0,1719.0,664.0,114.0,23.0,5034.0,721.0,265.0,470.0,161.0,13.0,47.0,82.0,81.0,66.0,33.0,3856.0,120.0,587.0,559.0,386.0,392.0,332.0,272.0,426.0,596.0,8.0,122.0,159.0,513.0,39.0,14.0,134.0,85.0,26.0,525.0,237.0,72.0,63.0,74.0,273.0,497.0,24.0,2432.0,19.0,285.0,377.0,4.0,17.0,338.0,133.0,62.0,213.0,470.0,2250.0,3730.0,662.0,2019-02-17,,2019-7,14.873123355767362,13.074000000000002, +303,303,21.52,192.0,0.0,174.0,5.0,199.0,172.0,411.0,110.0,68.0,373.0,6156.0,2608.0,17.0,469.0,1037.0,36.0,32.0,210.0,2631.0,36.0,15.0,1653.0,5377.0,139.0,380.0,129.0,1711.0,920.0,90.0,41.0,33.0,140.0,1834.0,753.0,719.0,2580.0,41.0,29.0,7.0,38.0,380.0,71.0,45.0,1128.0,1071.0,21.0,7.0,560.0,241.0,1142.0,33.0,239.0,523.0,158.0,99.0,11.0,91.0,537.0,0.0,280.0,19.0,2020.0,915.0,3234.0,269.0,38.0,8239.0,24.0,1733.0,259.0,193.0,173.0,1.0,88.0,15.0,3327.0,320.0,150.0,25.0,386.0,196.0,11.0,194.0,371.0,349.0,1287.0,376.0,41.0,26.0,7.0,5.0,1784.0,176.0,237.0,195.0,90.0,337.0,6570.0,127.0,3874.0,2827.0,57.0,369.0,698.0,2022.0,621.0,0.0,176.0,66.0,1921.0,785.0,2313.0,13.0,1179.0,126.0,2084.0,817.0,1586.0,2490.0,100.0,9.0,1990.0,2537.0,0.0,2755.0,139.0,86.0,21.0,36.0,742.0,701.0,1807.0,16.0,165.0,280.0,59.0,104.0,238.0,692.0,273.0,3019.0,121.0,2.0,136.0,1085.0,2023.0,1239.0,86.0,318.0,389.0,1156.0,845.0,12.0,116.0,255.0,7.0,55.0,1210.0,34.0,11277.0,462.0,2812.0,86.0,65.0,46.0,37.0,19.0,1062.0,85.0,71.0,546.0,1204.0,479.0,166.0,244.0,70.0,42.0,1098.0,265.0,24.0,838.0,174.0,1149.0,213.0,77.0,308.0,726.0,158.0,85.0,484.0,1127.0,19.0,269.0,120.0,213.0,20.0,13.0,319.0,506.0,1008.0,708.0,37.0,3.0,63.0,101.0,110.0,70.0,14.0,3243.0,20.0,772.0,49.0,51.0,30.0,7.0,947.0,653.0,451.0,1337.0,151.0,38.0,566.0,1123.0,36.0,4.0,29.0,160.0,35.0,48.0,77.0,361.0,1.0,379.0,155.0,63.0,55.0,1726.0,5.0,129.0,28.0,720.0,13.0,2675.0,1601.0,707.0,125.0,21.0,4712.0,813.0,233.0,485.0,149.0,2.0,28.0,131.0,89.0,36.0,22.0,3719.0,87.0,509.0,553.0,387.0,332.0,298.0,328.0,416.0,656.0,11.0,115.0,149.0,390.0,71.0,30.0,125.0,65.0,21.0,476.0,216.0,43.0,57.0,91.0,237.0,506.0,36.0,2475.0,13.0,207.0,343.0,6.0,24.0,334.0,97.0,32.0,210.0,396.0,1990.0,3632.0,536.0,2019-02-24,,2019-8,21.476431300588487,18.264, +304,304,23.6,155.0,0.0,202.0,6.0,175.0,182.0,369.0,138.0,49.0,292.0,6082.0,2509.0,28.0,488.0,1015.0,45.0,38.0,198.0,2778.0,38.0,21.0,1519.0,5726.0,153.0,379.0,157.0,1805.0,804.0,84.0,41.0,27.0,89.0,1679.0,711.0,690.0,2806.0,41.0,46.0,8.0,43.0,369.0,67.0,45.0,1064.0,1119.0,30.0,14.0,594.0,249.0,1074.0,55.0,362.0,422.0,155.0,83.0,5.0,79.0,680.0,0.0,282.0,26.0,1925.0,705.0,3095.0,265.0,46.0,7796.0,38.0,1825.0,238.0,204.0,207.0,3.0,66.0,17.0,3916.0,308.0,102.0,23.0,429.0,181.0,18.0,130.0,367.0,389.0,1394.0,395.0,33.0,29.0,5.0,11.0,1803.0,168.0,233.0,194.0,107.0,286.0,6528.0,85.0,4094.0,2667.0,39.0,347.0,842.0,1961.0,604.0,5.0,145.0,53.0,2074.0,860.0,2238.0,18.0,1026.0,108.0,2211.0,755.0,1585.0,2477.0,90.0,14.0,2143.0,2431.0,2.0,2486.0,105.0,67.0,24.0,38.0,657.0,726.0,2036.0,17.0,156.0,282.0,39.0,84.0,227.0,668.0,248.0,3189.0,99.0,1.0,155.0,1060.0,1955.0,1702.0,79.0,264.0,363.0,1191.0,748.0,15.0,115.0,261.0,9.0,67.0,1168.0,28.0,7997.0,566.0,2662.0,51.0,64.0,50.0,58.0,33.0,869.0,60.0,74.0,519.0,1155.0,455.0,168.0,251.0,66.0,42.0,946.0,272.0,21.0,814.0,87.0,943.0,185.0,35.0,351.0,620.0,157.0,96.0,490.0,1070.0,17.0,234.0,130.0,217.0,22.0,7.0,282.0,549.0,997.0,776.0,39.0,2.0,57.0,89.0,145.0,52.0,19.0,2848.0,14.0,632.0,39.0,39.0,18.0,3.0,837.0,607.0,424.0,956.0,158.0,43.0,833.0,988.0,45.0,7.0,37.0,195.0,43.0,48.0,83.0,377.0,4.0,283.0,109.0,50.0,40.0,1741.0,5.0,107.0,35.0,712.0,14.0,2489.0,1633.0,700.0,75.0,13.0,4526.0,831.0,240.0,542.0,150.0,14.0,36.0,143.0,65.0,39.0,23.0,3783.0,80.0,598.0,609.0,384.0,332.0,259.0,247.0,402.0,701.0,7.0,133.0,177.0,396.0,35.0,22.0,126.0,56.0,9.0,500.0,214.0,39.0,49.0,147.0,251.0,474.0,21.0,2450.0,10.0,271.0,291.0,3.0,19.0,383.0,127.0,32.0,193.0,445.0,1930.0,3698.0,576.0,2019-03-03,,2019-9,23.804459924321492,21.454000000000004, +305,305,22.28,134.0,0.0,144.0,6.0,167.0,152.0,296.0,86.0,73.0,302.0,4770.0,2058.0,20.0,387.0,1084.0,49.0,22.0,161.0,1664.0,40.0,8.0,1251.0,4593.0,112.0,345.0,113.0,1395.0,657.0,65.0,46.0,42.0,74.0,1331.0,533.0,596.0,3253.0,24.0,27.0,7.0,37.0,246.0,39.0,37.0,838.0,994.0,20.0,6.0,468.0,209.0,967.0,25.0,168.0,271.0,143.0,75.0,7.0,68.0,515.0,0.0,208.0,24.0,1651.0,592.0,2452.0,196.0,44.0,5732.0,20.0,1567.0,235.0,154.0,150.0,1.0,50.0,9.0,2768.0,270.0,97.0,16.0,324.0,129.0,17.0,111.0,303.0,334.0,1251.0,329.0,44.0,12.0,2.0,8.0,1564.0,121.0,176.0,183.0,89.0,243.0,5590.0,75.0,2660.0,1963.0,15.0,306.0,553.0,1637.0,518.0,0.0,121.0,30.0,1606.0,641.0,1866.0,9.0,837.0,81.0,1604.0,672.0,1353.0,2148.0,61.0,15.0,1762.0,1930.0,0.0,2131.0,99.0,32.0,14.0,22.0,620.0,580.0,1419.0,9.0,170.0,211.0,28.0,74.0,184.0,492.0,210.0,2751.0,99.0,1.0,119.0,877.0,1365.0,999.0,71.0,260.0,306.0,992.0,636.0,21.0,87.0,179.0,5.0,64.0,886.0,35.0,6392.0,480.0,2558.0,69.0,38.0,34.0,41.0,24.0,952.0,76.0,60.0,448.0,947.0,352.0,109.0,208.0,58.0,29.0,790.0,250.0,32.0,718.0,60.0,970.0,165.0,41.0,295.0,548.0,83.0,93.0,434.0,804.0,22.0,212.0,69.0,194.0,18.0,14.0,252.0,460.0,929.0,645.0,30.0,3.0,60.0,60.0,120.0,48.0,20.0,2391.0,10.0,595.0,47.0,36.0,18.0,12.0,750.0,600.0,375.0,702.0,147.0,25.0,751.0,771.0,49.0,0.0,23.0,142.0,37.0,24.0,72.0,253.0,1.0,217.0,90.0,44.0,37.0,1446.0,1.0,99.0,21.0,587.0,7.0,2034.0,1399.0,585.0,99.0,14.0,3482.0,690.0,235.0,401.0,108.0,14.0,28.0,81.0,47.0,52.0,39.0,3073.0,52.0,408.0,481.0,285.0,248.0,237.0,202.0,324.0,405.0,9.0,99.0,116.0,386.0,33.0,21.0,81.0,48.0,8.0,396.0,221.0,53.0,41.0,61.0,188.0,405.0,33.0,1916.0,9.0,185.0,263.0,15.0,23.0,321.0,75.0,34.0,155.0,452.0,1659.0,2917.0,526.0,2019-03-10,,2019-10,22.490858118830438,21.262, +306,306,19.77,119.0,0.0,106.0,2.0,139.0,90.0,222.0,62.0,47.0,264.0,3900.0,1737.0,22.0,363.0,880.0,51.0,22.0,136.0,1312.0,37.0,11.0,1091.0,3874.0,130.0,277.0,109.0,1183.0,593.0,65.0,25.0,31.0,57.0,1095.0,399.0,534.0,3116.0,31.0,40.0,7.0,29.0,247.0,45.0,28.0,713.0,844.0,18.0,9.0,383.0,165.0,763.0,27.0,155.0,218.0,125.0,82.0,10.0,79.0,438.0,0.0,235.0,15.0,1267.0,519.0,2414.0,152.0,33.0,4408.0,21.0,1473.0,197.0,175.0,107.0,2.0,50.0,18.0,2327.0,207.0,91.0,16.0,250.0,98.0,15.0,105.0,323.0,367.0,1027.0,258.0,20.0,11.0,7.0,7.0,1250.0,123.0,156.0,159.0,67.0,213.0,4540.0,35.0,3240.0,1733.0,23.0,246.0,416.0,1360.0,449.0,1.0,124.0,23.0,1249.0,627.0,1564.0,15.0,574.0,53.0,1568.0,565.0,1266.0,1776.0,55.0,11.0,1449.0,1873.0,0.0,1793.0,106.0,72.0,15.0,30.0,516.0,478.0,1265.0,21.0,151.0,189.0,32.0,78.0,156.0,453.0,139.0,2291.0,64.0,0.0,65.0,756.0,1447.0,882.0,57.0,224.0,247.0,845.0,479.0,10.0,78.0,144.0,9.0,56.0,797.0,27.0,5484.0,311.0,2161.0,61.0,44.0,25.0,30.0,20.0,718.0,70.0,65.0,341.0,837.0,296.0,117.0,166.0,61.0,30.0,632.0,212.0,12.0,593.0,57.0,762.0,134.0,72.0,248.0,410.0,73.0,56.0,349.0,748.0,22.0,173.0,53.0,142.0,22.0,7.0,195.0,355.0,823.0,598.0,42.0,3.0,44.0,58.0,125.0,28.0,18.0,2131.0,9.0,557.0,44.0,44.0,25.0,13.0,654.0,494.0,304.0,605.0,120.0,35.0,680.0,654.0,39.0,10.0,22.0,91.0,29.0,32.0,40.0,258.0,1.0,343.0,70.0,40.0,45.0,1237.0,1.0,83.0,16.0,553.0,12.0,1681.0,1137.0,507.0,65.0,29.0,2726.0,610.0,162.0,324.0,93.0,5.0,34.0,73.0,36.0,43.0,18.0,2662.0,51.0,451.0,490.0,227.0,204.0,183.0,204.0,306.0,367.0,9.0,60.0,92.0,267.0,22.0,10.0,67.0,37.0,12.0,358.0,191.0,41.0,49.0,47.0,187.0,386.0,28.0,1555.0,15.0,168.0,256.0,8.0,20.0,324.0,63.0,33.0,130.0,383.0,1342.0,2449.0,366.0,2019-03-17,,2019-11,19.619708829729852,20.876, +307,307,16.74,251.0,2.0,164.0,7.0,207.0,179.0,379.0,103.0,64.0,376.0,4996.0,2541.0,26.0,484.0,1292.0,61.0,48.0,170.0,2813.0,67.0,9.0,1834.0,6145.0,172.0,440.0,111.0,1652.0,898.0,72.0,39.0,42.0,81.0,1590.0,695.0,720.0,2975.0,59.0,35.0,13.0,44.0,369.0,44.0,42.0,1170.0,1195.0,22.0,12.0,629.0,218.0,1017.0,44.0,224.0,277.0,197.0,85.0,6.0,100.0,592.0,0.0,329.0,34.0,2046.0,587.0,3225.0,166.0,44.0,5342.0,18.0,2155.0,341.0,179.0,168.0,1.0,87.0,17.0,3518.0,383.0,123.0,23.0,320.0,152.0,19.0,130.0,458.0,372.0,1289.0,400.0,33.0,12.0,8.0,10.0,1983.0,220.0,230.0,231.0,99.0,332.0,6577.0,88.0,4562.0,2705.0,37.0,371.0,592.0,2194.0,642.0,1.0,162.0,45.0,1999.0,819.0,2125.0,23.0,938.0,80.0,2167.0,815.0,1752.0,2727.0,90.0,12.0,2092.0,2643.0,0.0,2521.0,150.0,73.0,22.0,50.0,668.0,664.0,1779.0,18.0,191.0,298.0,26.0,99.0,227.0,616.0,216.0,3397.0,94.0,0.0,118.0,946.0,1410.0,1350.0,80.0,364.0,363.0,1245.0,743.0,18.0,80.0,306.0,17.0,86.0,1086.0,23.0,7829.0,514.0,3444.0,69.0,83.0,42.0,23.0,25.0,1162.0,99.0,89.0,587.0,1222.0,549.0,149.0,263.0,46.0,56.0,1054.0,301.0,27.0,862.0,70.0,1015.0,198.0,52.0,333.0,548.0,112.0,93.0,840.0,1130.0,20.0,268.0,113.0,263.0,22.0,8.0,264.0,602.0,1074.0,1124.0,46.0,7.0,67.0,99.0,153.0,33.0,28.0,2907.0,10.0,656.0,45.0,70.0,20.0,2.0,810.0,676.0,459.0,1022.0,157.0,51.0,883.0,1015.0,43.0,2.0,29.0,159.0,33.0,44.0,64.0,348.0,1.0,596.0,103.0,54.0,55.0,1668.0,1.0,115.0,31.0,758.0,10.0,2679.0,1697.0,753.0,98.0,30.0,4067.0,904.0,187.0,569.0,129.0,9.0,31.0,110.0,52.0,49.0,24.0,3645.0,74.0,461.0,690.0,513.0,343.0,259.0,268.0,542.0,631.0,6.0,100.0,190.0,398.0,29.0,16.0,88.0,57.0,25.0,510.0,223.0,57.0,61.0,61.0,265.0,531.0,22.0,2235.0,16.0,206.0,343.0,5.0,25.0,469.0,81.0,31.0,193.0,520.0,1909.0,3469.0,514.0,2019-03-24,,2019-12,16.612813142521176,11.112, +308,308,12.87,186.0,0.0,191.0,8.0,136.0,146.0,373.0,90.0,69.0,281.0,4265.0,2382.0,27.0,354.0,1184.0,60.0,24.0,164.0,3267.0,55.0,13.0,1475.0,4880.0,171.0,409.0,138.0,1524.0,849.0,86.0,44.0,71.0,98.0,1525.0,665.0,790.0,2385.0,54.0,37.0,11.0,53.0,322.0,57.0,34.0,1210.0,1141.0,43.0,15.0,545.0,215.0,1108.0,31.0,143.0,199.0,161.0,68.0,12.0,141.0,553.0,0.0,357.0,31.0,1830.0,466.0,2705.0,144.0,32.0,4368.0,28.0,1795.0,321.0,177.0,163.0,2.0,47.0,17.0,3192.0,296.0,93.0,14.0,290.0,161.0,14.0,305.0,414.0,316.0,1214.0,352.0,44.0,14.0,6.0,12.0,2110.0,125.0,245.0,131.0,87.0,305.0,6408.0,98.0,3944.0,2244.0,39.0,330.0,684.0,1955.0,537.0,0.0,117.0,44.0,1685.0,843.0,2136.0,17.0,821.0,66.0,1937.0,721.0,1626.0,2582.0,45.0,19.0,2163.0,2325.0,4.0,2572.0,123.0,47.0,19.0,40.0,741.0,690.0,1379.0,10.0,162.0,326.0,30.0,82.0,246.0,586.0,190.0,3292.0,96.0,0.0,117.0,956.0,1183.0,2018.0,69.0,329.0,288.0,1159.0,781.0,21.0,75.0,252.0,10.0,85.0,1201.0,42.0,6812.0,394.0,3309.0,58.0,63.0,27.0,31.0,30.0,833.0,106.0,91.0,519.0,1067.0,639.0,150.0,223.0,55.0,40.0,1034.0,288.0,18.0,716.0,93.0,916.0,157.0,114.0,314.0,451.0,168.0,78.0,465.0,1045.0,7.0,244.0,89.0,252.0,27.0,18.0,233.0,446.0,908.0,786.0,48.0,8.0,81.0,100.0,142.0,83.0,29.0,2655.0,19.0,559.0,48.0,38.0,20.0,7.0,678.0,631.0,421.0,859.0,117.0,37.0,308.0,882.0,60.0,10.0,34.0,134.0,42.0,49.0,78.0,268.0,1.0,317.0,92.0,42.0,69.0,1689.0,9.0,99.0,31.0,660.0,9.0,2398.0,3049.0,676.0,117.0,36.0,2906.0,1154.0,133.0,457.0,147.0,22.0,37.0,83.0,68.0,67.0,21.0,3551.0,69.0,480.0,625.0,359.0,306.0,232.0,185.0,400.0,515.0,11.0,83.0,147.0,378.0,32.0,21.0,78.0,51.0,13.0,538.0,250.0,49.0,87.0,71.0,256.0,434.0,33.0,2105.0,24.0,215.0,389.0,2.0,32.0,473.0,99.0,49.0,184.0,431.0,1612.0,3184.0,527.0,2019-03-31,,2019-13,12.870941707080881,13.477999999999998, +309,309,8.49,193.0,0.0,176.0,10.0,283.0,153.0,336.0,110.0,65.0,381.0,4371.0,2330.0,38.0,479.0,1073.0,54.0,30.0,182.0,2800.0,41.0,24.0,1503.0,5942.0,103.0,448.0,219.0,1860.0,846.0,72.0,38.0,40.0,83.0,1650.0,636.0,875.0,2455.0,52.0,25.0,10.0,64.0,441.0,136.0,35.0,1224.0,1377.0,35.0,18.0,658.0,222.0,1284.0,33.0,147.0,224.0,167.0,77.0,7.0,330.0,860.0,0.0,393.0,22.0,1990.0,790.0,3055.0,168.0,32.0,4180.0,45.0,1950.0,374.0,178.0,196.0,2.0,62.0,12.0,3334.0,321.0,100.0,24.0,242.0,167.0,15.0,190.0,1120.0,310.0,1279.0,440.0,28.0,24.0,10.0,7.0,2236.0,179.0,211.0,199.0,87.0,368.0,6698.0,89.0,3906.0,2247.0,25.0,335.0,579.0,1844.0,560.0,3.0,162.0,53.0,1662.0,822.0,2313.0,14.0,842.0,104.0,2138.0,817.0,1712.0,2648.0,63.0,12.0,2332.0,2672.0,1.0,2903.0,116.0,61.0,36.0,49.0,838.0,780.0,1511.0,15.0,229.0,305.0,35.0,91.0,237.0,634.0,194.0,3297.0,99.0,1.0,121.0,967.0,1225.0,1317.0,90.0,277.0,371.0,1196.0,903.0,14.0,118.0,290.0,12.0,89.0,1951.0,37.0,6422.0,457.0,5194.0,89.0,72.0,54.0,21.0,38.0,2777.0,90.0,91.0,498.0,1182.0,551.0,132.0,306.0,54.0,74.0,1127.0,284.0,18.0,865.0,102.0,911.0,213.0,67.0,357.0,639.0,164.0,84.0,521.0,1082.0,20.0,204.0,90.0,240.0,47.0,26.0,277.0,545.0,1156.0,810.0,61.0,14.0,73.0,114.0,160.0,86.0,17.0,2561.0,8.0,668.0,73.0,126.0,17.0,11.0,1107.0,817.0,480.0,826.0,182.0,43.0,335.0,910.0,44.0,9.0,33.0,153.0,34.0,48.0,77.0,326.0,2.0,322.0,98.0,62.0,84.0,1772.0,6.0,148.0,24.0,794.0,16.0,2361.0,1578.0,769.0,94.0,29.0,3017.0,1100.0,196.0,499.0,131.0,21.0,30.0,113.0,58.0,58.0,22.0,3679.0,89.0,433.0,651.0,377.0,323.0,266.0,251.0,451.0,478.0,12.0,112.0,207.0,489.0,44.0,24.0,102.0,53.0,17.0,568.0,299.0,61.0,103.0,68.0,267.0,473.0,20.0,1902.0,22.0,239.0,369.0,7.0,47.0,514.0,119.0,52.0,202.0,485.0,1616.0,3342.0,627.0,2019-04-07,,2019-14,8.637562306050818,11.096000000000002, +310,310,4.93,177.0,0.0,185.0,7.0,286.0,157.0,332.0,100.0,70.0,314.0,4914.0,2271.0,35.0,446.0,1187.0,48.0,23.0,176.0,3219.0,25.0,11.0,1287.0,6118.0,140.0,488.0,140.0,1817.0,818.0,85.0,39.0,39.0,86.0,1460.0,689.0,755.0,2920.0,60.0,36.0,55.0,28.0,286.0,124.0,39.0,1317.0,1465.0,23.0,14.0,654.0,201.0,1327.0,33.0,98.0,166.0,129.0,73.0,8.0,107.0,556.0,0.0,358.0,20.0,1886.0,610.0,2809.0,150.0,44.0,3431.0,31.0,2375.0,368.0,168.0,188.0,0.0,69.0,15.0,3245.0,319.0,94.0,19.0,232.0,197.0,23.0,142.0,338.0,324.0,1422.0,432.0,24.0,17.0,6.0,15.0,2231.0,157.0,242.0,201.0,103.0,329.0,6859.0,89.0,4043.0,2417.0,35.0,327.0,574.0,1819.0,511.0,0.0,147.0,53.0,1764.0,876.0,2247.0,7.0,868.0,106.0,1949.0,765.0,1673.0,2452.0,48.0,3.0,2192.0,2507.0,1.0,2695.0,104.0,55.0,17.0,38.0,827.0,768.0,1533.0,13.0,205.0,261.0,27.0,91.0,224.0,650.0,185.0,3288.0,110.0,0.0,112.0,903.0,1235.0,1275.0,58.0,272.0,355.0,1264.0,789.0,18.0,75.0,233.0,16.0,66.0,1039.0,45.0,8975.0,477.0,4230.0,71.0,67.0,53.0,17.0,29.0,1453.0,90.0,50.0,527.0,1131.0,525.0,295.0,481.0,58.0,53.0,1225.0,250.0,13.0,890.0,111.0,1189.0,202.0,33.0,325.0,658.0,146.0,90.0,596.0,1074.0,11.0,206.0,95.0,233.0,16.0,7.0,239.0,539.0,1342.0,780.0,54.0,7.0,69.0,81.0,139.0,46.0,16.0,2526.0,17.0,572.0,44.0,67.0,18.0,2.0,1172.0,705.0,387.0,910.0,170.0,45.0,390.0,956.0,59.0,6.0,29.0,122.0,36.0,43.0,76.0,314.0,0.0,346.0,99.0,63.0,50.0,1859.0,2.0,104.0,29.0,854.0,8.0,2521.0,1784.0,811.0,98.0,29.0,2494.0,1118.0,195.0,474.0,111.0,15.0,54.0,120.0,55.0,54.0,26.0,3753.0,47.0,474.0,694.0,324.0,406.0,272.0,230.0,460.0,524.0,8.0,111.0,200.0,371.0,26.0,11.0,99.0,63.0,7.0,502.0,299.0,67.0,93.0,57.0,215.0,442.0,37.0,1828.0,12.0,237.0,403.0,0.0,8.0,415.0,119.0,28.0,194.0,466.0,1742.0,3530.0,505.0,2019-04-14,,2019-15,4.930291919066235,9.544000000000002, +311,311,3.02,177.0,0.0,151.0,8.0,294.0,174.0,303.0,72.0,65.0,307.0,4752.0,2331.0,46.0,429.0,1037.0,47.0,33.0,233.0,3604.0,49.0,12.0,1175.0,6130.0,152.0,439.0,138.0,1844.0,734.0,76.0,42.0,37.0,127.0,1426.0,627.0,794.0,2970.0,70.0,21.0,7.0,52.0,268.0,67.0,48.0,1389.0,1339.0,29.0,19.0,698.0,253.0,1260.0,46.0,141.0,170.0,165.0,93.0,9.0,105.0,510.0,0.0,341.0,25.0,1949.0,646.0,3055.0,202.0,41.0,3640.0,40.0,1972.0,418.0,188.0,188.0,0.0,96.0,15.0,3417.0,334.0,112.0,9.0,226.0,162.0,26.0,114.0,689.0,273.0,1271.0,447.0,30.0,20.0,6.0,15.0,2418.0,178.0,216.0,200.0,112.0,379.0,7058.0,89.0,4433.0,2250.0,20.0,341.0,614.0,1999.0,549.0,1.0,150.0,42.0,1660.0,811.0,2149.0,12.0,903.0,104.0,2022.0,728.0,1559.0,2243.0,55.0,9.0,2032.0,2490.0,0.0,2899.0,124.0,62.0,11.0,37.0,831.0,835.0,1565.0,19.0,205.0,253.0,45.0,92.0,248.0,647.0,199.0,3315.0,89.0,1.0,121.0,931.0,1287.0,1287.0,73.0,282.0,369.0,1232.0,840.0,17.0,91.0,260.0,20.0,82.0,976.0,44.0,9130.0,477.0,5103.0,63.0,87.0,37.0,26.0,46.0,2740.0,92.0,52.0,522.0,1144.0,564.0,142.0,265.0,62.0,50.0,1201.0,298.0,23.0,950.0,88.0,990.0,202.0,49.0,315.0,655.0,154.0,118.0,480.0,1073.0,16.0,203.0,76.0,223.0,16.0,11.0,247.0,598.0,1126.0,794.0,49.0,5.0,85.0,128.0,181.0,43.0,16.0,2768.0,11.0,641.0,42.0,54.0,11.0,3.0,1016.0,833.0,401.0,946.0,144.0,33.0,367.0,1002.0,44.0,13.0,27.0,177.0,29.0,31.0,68.0,309.0,0.0,338.0,99.0,59.0,56.0,1783.0,0.0,106.0,38.0,770.0,11.0,2314.0,1636.0,959.0,102.0,30.0,2682.0,1185.0,207.0,522.0,133.0,6.0,41.0,139.0,79.0,60.0,32.0,3726.0,68.0,528.0,603.0,336.0,328.0,216.0,215.0,527.0,547.0,9.0,94.0,198.0,327.0,34.0,12.0,84.0,51.0,18.0,517.0,295.0,56.0,88.0,64.0,247.0,464.0,13.0,1733.0,9.0,302.0,319.0,9.0,18.0,420.0,1387.0,34.0,182.0,464.0,1606.0,3440.0,545.0,2019-04-21,,2019-16,3.0156202106738874,7.136000000000002, diff --git a/gsoc_application_projects/2020/influenza/dash/data/final/italy.csv b/gsoc_application_projects/2020/influenza/dash/data/final/italy.csv new file mode 100644 index 0000000..9fda5ce --- /dev/null +++ b/gsoc_application_projects/2020/influenza/dash/data/final/italy.csv @@ -0,0 +1,313 @@ +,Unnamed: 0,incidence,Acrocianosi,Acroosteolisi,Adiadococinesia,Alfuy_virus,Alitosi,Allucinazione_uditiva,Anatossina,Anemia_infettiva_equina,Angioma_stellare,Anossia,Apoi_virus,Arco_senile,Areflessia,Aroa_virus,Ascite,Asterissi,Atetosi,Autofonia,Bacillo_di_Calmette-Guérin,Bagaza_virus,Baiyangdian_virus,Banzi_virus,Bradipnea,Brina_uremica,Bronchite,Broncorrea,Broncospasmo,Broncospasmo_paradosso,Bubbone,Bussuquara_virus,Cacipacore_virus,Carbosap,Carie_dentaria,Cataplessia,Cianosi,Claudicazione,Coilonichia,Congelamento_(medicina),Contrazione_tetanica,Corda_colica,Corea_(medicina),Coriomeningite_linfocitaria,Dakar_bat_virus,Deficit_di_polso,Degrado_ambientale,Dermatomicosi,Desquamazione,Difterite,Digito-compressione,Dirofilariasi,Disbasia,Disfagia,Disfagia_esofagea,Disfagia_lusoria,Disfagia_orofaringea,Disfonia,Dissenteria,Distomatosi,Dracunculiasi,Duck_egg_drop_syndrome_virus,Ecchimosi,Echinococcosi,Echinococcosi_alveolare,Echinococcosi_cistica,Echinococcosi_policistica,Egobroncofonia,Egofonia,Elmintiasi,Ematemesi,Ematochezia,Ematoma_periorbitale,Ematuria,Emianopsia,Emoftoe,Emoglobinuria_da_marcia,Emolacria,Emoperitoneo,Emottisi,Enantema,Encefalite_californiana,Encefalite_di_Murray_Valley,Encefalite_di_Saint-Louis,Encefalite_giapponese,Encefalite_letargica,Encefalite_trasmessa_da_zecche,Encopresi,Endocardite,Endometrite,Enfisema_sottocutaneo,Enoftalmo,Enuresi,Enzimuria,Epatite_A,Epatite_B,Epatite_C,Epatite_D,Epatite_virale,Epatosplenomegalia,Epidemia_di_febbre_emorragica_di_Ebola_in_Africa_Occidentale_del_2014,Epidemia_di_peste_in_Madagascar_del_2014-2015,Epidermodisplasia_verruciforme,Epifora_(medicina),Epistassi,Esantema,Essiccosi,Faccia_ippocratica,Facies_(medicina),Fago_M13,Fago_T2,Fago_lambda,Faringite,Fascioliasi,Fasciolopsiasi_umana,Fascite_necrotizzante,Favo_(medicina),Febbre,Febbre_bottonosa,Febbre_catarrale_dei_piccoli_ruminanti,Febbre_da_zecca_del_Colorado,Febbre_della_Rift_Valley,Febbre_di_Lassa,Febbre_di_Oroya,Febbre_emoglobinurica,Febbre_emorragica_boliviana,Febbre_emorragica_venezuelana,Febbre_gialla,Febbre_maculosa_delle_Montagne_Rocciose,Febbre_ricorrente,Fenomeno_di_Koebner,Feoifomicosi,Festinatio,Flato_vaginale,Flavivirus,Flavivirus_patogeni_per_l'uomo,Flaviviruses_tick-borne_encephalitis,Fremito_vocale_tattile,Galattorrea,Ginecomastia,Grandi_virus_nucleo-citoplasmatici_a_DNA,Hepadnaviridae,Idrope,Iguape_virus,Ilheus_virus,Incontinenza_urinaria,Infiammazione,Infiammazione_cronica,Infiltrazione_(medicina),Influenza_asiatica,Influenza_di_Hong_Kong,Influenza_spagnola,Influenza_suina,Influenzavirus_A_sottotipo_H1N1,Iperpnea,Ipersensibilità_del_seno_carotideo,Ipertelorismo,Ipertermia,Ipertonia,Ipocinesia,Ipomenorrea,Iporiflessia,Ipotermia,Ipotonia,Ipotonia_muscolare,Israel_turkey_meningoencephalomyelitis_virus,Ittero,Jiangsu_virus,Kedougou_virus,Kokobera_virus,Koutango_virus,Labirintite,Lebbra,Leishmaniosi_umana,Leptospirosi,Lesioni_endo-parodontali,Leucocituria,Leucoencefalopatia_multifocale_progressiva,Leucosi_bovina,Linfonodo_di_Virchow,Lingua_scrotale,Lipoatrofia,Lipodistrofia,Lipotimia,Lista_degli_ingredienti_dei_vaccini,Livedo_reticolare,Macchie_di_Brushfield,Macchie_di_Köplik,Malattia_del_sudore,Malattia_di_Aujeszky,Malattia_di_Chagas,Malattia_infettiva,Malattia_vescicolare_del_suino,Manovra_di_Barlow,Manovra_di_Giordano,Manovra_di_Murphy,Manovra_di_Ortolani,Mastite,Mastite_luetica,Melioidosi,Meningite_virale,Menorragia,Metrorragia,Mixomatosi,Modoc_virus,Mucorrea,Narajal_virus,New_Mapoon_virus,Nicturia,Nistagmo,Noduli_di_Bouchard,Noduli_di_Heberden,Nodulo_di_Sister_Mary_Joseph,Ntaya_virus,Oncovirus,Onda_sfigmica,Ortopnea,Pagina_principale,Pallore,Pandemia_influenzale,Pandemia_influenzale_del_2009,Paracoccidioidomicosi,Parametrite,Parodontite,Parvovirosi_canina,Patereccio_erpetico,Pentade_di_Reynolds,Pertosse,Peste_antonina,Peste_di_Atene,Peste_equina_africana,Peste_suina,Petecchia_(medicina),Piodermite,Piuria,Poliomavirus_BK,Poliomavirus_JC,Polipnea,Poliuria,Pollachiuria,Polso_arterioso,Portatore_sano,Priapismo,Prione,Quarta_malattia,Raffreddore,Raffreddore_comune,Reoviridae,Respiro_di_Biot,Respiro_di_Cheyne-Stokes,Respiro_di_Falstaff,Respiro_di_Kussmaul,Respiro_paradosso,Respiro_patologico,Retroviridae,Rettorragia,Rinorrea,Rio_Bravo_virus,Ritenzione_urinaria,Rossore,Rumori_respiratori,SPf66,Saboya_virus,Sbadiglio,Schema_Piazza,Schistosomiasi,Scialorrea,Segni_meningei,Segno_(medicina),Segno_della_fovea,Segno_di_Abadie,Segno_di_Abrahams,Segno_di_Auspitz,Segno_di_Binda,Segno_di_Blumberg,Segno_di_Brudzinski,Segno_di_Cardarelli,Segno_di_Chvostek,Segno_di_Courvoisier,Segno_di_Courvoisier-Terrier,Segno_di_Dalrymple,Segno_di_Higoumenakis,Segno_di_Hoover,Segno_di_Kehr,Segno_di_Kernig,Segno_di_Kussmaul,Segno_di_Leser-Trelat,Segno_di_Nicoladoni,Segno_di_Nikolsky,Segno_di_Rossolimo,Segno_di_Russell,Segno_di_Simmonds-Thompson,Segno_di_Trendelenburg,Segno_di_tetania_latente_di_Trousseau,Sepik_virus,Sincope_(medicina),Sindrome_di_Trousseau,Sindrome_respiratoria_mediorientale_da_Coronavirus,Singhiozzo,Soffio_cardiaco,Soffio_di_Flint,Sokoluk_virus,Sovrallenamento,Spedizione_Balmis,Splenomegalia,Sputnik_(virofago),Stimmate_(medicina),Storia_della_vaccinazione,Stratford_virus,Succussione,TYMV,Tachipnea,Tembusu_virus,Test_di_Allen,Test_di_Schellong,Tetano,Tibia_a_sciabola,Tifo_esantematico,Tifo_murino,Tigna_favosa,Tigna_microsporica,Trasmissione_oro-fecale,Triade_di_Charcot,Triade_di_Hutchinson,Trichomoniasi_vaginale,Tumefazione,Uganda_S_virus,Undressing_paradossale,Unghia_di_Plummer,Uricuria,Vaccinazione,Vaccino,Vaccino_HIV,Vaccino_MPR,Vaccino_anti_febbre_gialla,Vaccino_antibrucellosi,Vaccino_anticarbonchioso,Vaccino_antidifterico,Vaccino_antiencefalite_giapponese,Vaccino_antiepatite_A,Vaccino_antinfluenzale,Vaccino_antipestoso,Vaccino_antipoliomielite,Vaccino_antirabbico,Vaccino_antitetanico,Vaccino_antivaioloso,Vaccino_colibacillare,Vaccino_del_colera,Vaccino_del_morbillo,Vaccino_dell'Haemophilus_influenzae,Vaccino_della_parotite,Vaccino_della_pertosse,Vaccino_della_tricomoniasi,Vaccino_per_l'encefalite_da_morso_di_zecca,Vaccino_per_la_febbre_tifoide,Vaccino_pneumococcico,Vaccino_subtilico,Verruca,Virus_(biologia),Virus_Lassa,Virus_Toscana,Virus_Zika,Virus_adeno-associati,Virus_del_Nilo_occidentale,Virus_del_mosaico_del_tabacco,Virus_del_papilloma_umano,Virus_del_pipistrello_di_Entebbe,Virus_del_sarcoma_di_Rous,Virus_dell'encefalite_di_Murray_Valley,Virus_dell'encefalite_di_Saint_Louis,Virus_dell'immunodeficienza_felina,Virus_della_leucemia_felina,Virus_di_Norwalk,Virus_di_immunodeficienza_delle_scimmie,Virus_difettivi,Virus_oncolitici,Vomito,Xantoma,Xerosi,Yaounde_virus,Yokose_virus,date,estimate,week,estimate_lrr,estimate_rf,estimate_p +0,0,0.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2007-10-21,,2007-42,0.002335061792059991,0.42447258297258306, +1,1,0.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2007-10-28,,2007-43,0.004614608958992613,0.544472582972583, +2,2,0.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2007-11-04,,2007-44,0.005048715476187182,0.438472582972583, +3,3,0.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2007-11-11,,2007-45,0.005587376340111227,0.544472582972583, +4,4,0.51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2007-11-18,,2007-46,0.008878731694837105,0.544472582972583, +5,5,0.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2007-11-25,,2007-47,0.014017366848124314,0.544472582972583, +6,6,0.79,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2007-12-02,,2007-48,0.012489696377154125,0.544472582972583, +7,7,0.89,0.0,0.0,0.0,0.0,13.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,0.0,22.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,28.0,6.0,5.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,7.0,0.0,0.0,0.0,21.0,0.0,0.0,0.0,7.0,7.0,2.0,3.0,0.0,11.0,3.0,2.0,3.0,1.0,0.0,0.0,1.0,7.0,0.0,0.0,7.0,4.0,9.0,0.0,0.0,0.0,16.0,0.0,2.0,0.0,0.0,2.0,0.0,0.0,5.0,10.0,0.0,0.0,0.0,8.0,0.0,0.0,7.0,10.0,0.0,10.0,0.0,0.0,0.0,0.0,0.0,19.0,42.0,0.0,0.0,0.0,2.0,0.0,10.0,21.0,1.0,1.0,0.0,0.0,64.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,18.0,0.0,0.0,0.0,0.0,0.0,16.0,1.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,71.0,0.0,0.0,2.0,1.0,13.0,0.0,0.0,0.0,0.0,0.0,8.0,0.0,2.0,0.0,0.0,17.0,5.0,0.0,0.0,32.0,0.0,0.0,0.0,0.0,6.0,36.0,11.0,28.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,8.0,6.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,6.0,23.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,143883.0,0.0,0.0,0.0,0.0,0.0,16.0,3.0,0.0,0.0,13.0,0.0,0.0,0.0,1.0,0.0,0.0,5.0,0.0,0.0,5.0,23.0,11.0,8.0,3.0,43.0,6.0,0.0,31.0,27.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,18.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,7.0,0.0,0.0,15.0,10.0,6.0,0.0,0.0,0.0,18.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,0.0,0.0,0.0,18.0,0.0,10.0,0.0,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.0,24.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.0,38.0,0.0,0.0,0.0,0.0,1.0,0.0,22.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.0,1.0,0.0,0.0,0.0,2007-12-09,,2007-49,0.45088420836118887,1.0137777777777779, +8,8,1.2,0.0,0.0,20.0,0.0,128.0,0.0,63.0,0.0,0.0,182.0,0.0,0.0,0.0,0.0,783.0,17.0,24.0,13.0,0.0,0.0,0.0,0.0,48.0,0.0,576.0,0.0,0.0,0.0,1.0,0.0,0.0,6.0,566.0,81.0,189.0,0.0,42.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,39.0,60.0,0.0,262.0,8.0,29.0,0.0,463.0,0.0,0.0,0.0,168.0,144.0,27.0,86.0,0.0,350.0,60.0,114.0,214.0,33.0,0.0,9.0,84.0,98.0,1.0,0.0,243.0,141.0,421.0,0.0,0.0,0.0,462.0,0.0,22.0,0.0,0.0,21.0,0.0,0.0,85.0,155.0,0.0,0.0,0.0,73.0,0.0,1.0,209.0,245.0,0.0,417.0,31.0,0.0,0.0,0.0,0.0,791.0,1099.0,0.0,0.0,0.0,44.0,0.0,135.0,307.0,10.0,41.0,0.0,20.0,1573.0,0.0,0.0,0.0,33.0,0.0,0.0,0.0,0.0,0.0,407.0,0.0,0.0,0.0,0.0,0.0,339.0,34.0,0.0,0.0,36.0,1.0,248.0,0.0,0.0,0.0,0.0,0.0,69.0,1630.0,0.0,0.0,46.0,17.0,345.0,0.0,0.0,3.0,0.0,0.0,178.0,0.0,80.0,0.0,0.0,484.0,94.0,0.0,0.0,996.0,0.0,0.0,0.0,0.0,249.0,733.0,434.0,617.0,0.0,0.0,0.0,37.0,44.0,0.0,0.0,0.0,107.0,0.0,0.0,0.0,0.0,0.0,21.0,259.0,254.0,39.0,0.0,0.0,0.0,0.0,61.0,0.0,0.0,0.0,0.0,0.0,71.0,0.0,0.0,0.0,0.0,222.0,617.0,0.0,92.0,0.0,0.0,25.0,0.0,29.0,4050582.0,0.0,0.0,0.0,55.0,0.0,390.0,42.0,0.0,0.0,213.0,0.0,0.0,0.0,47.0,0.0,0.0,101.0,0.0,0.0,45.0,383.0,404.0,75.0,45.0,951.0,355.0,0.0,526.0,416.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,64.0,0.0,1.0,1.0,0.0,6.0,0.0,1.0,0.0,349.0,222.0,0.0,0.0,0.0,6.0,7.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,48.0,34.0,0.0,0.0,250.0,0.0,0.0,275.0,210.0,28.0,0.0,0.0,0.0,301.0,0.0,0.0,0.0,0.0,0.0,0.0,74.0,0.0,0.0,21.0,575.0,0.0,172.0,0.0,46.0,43.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,436.0,583.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1006.0,1254.0,0.0,0.0,0.0,37.0,92.0,0.0,637.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,447.0,37.0,0.0,0.0,0.0,2007-12-16,,2007-50,1.2894355123035028,1.334, +9,9,1.89,1.0,0.0,20.0,0.0,93.0,0.0,42.0,0.0,0.0,138.0,0.0,0.0,0.0,0.0,535.0,12.0,28.0,9.0,0.0,0.0,0.0,0.0,47.0,0.0,624.0,0.0,2.0,0.0,0.0,0.0,0.0,4.0,511.0,84.0,115.0,1.0,55.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,39.0,56.0,0.0,318.0,11.0,25.0,0.0,489.0,0.0,0.0,0.0,125.0,119.0,30.0,74.0,0.0,257.0,81.0,87.0,187.0,24.0,0.0,5.0,69.0,75.0,0.0,0.0,234.0,85.0,345.0,0.0,0.0,0.0,380.0,1.0,22.0,0.0,0.0,21.0,1.0,0.0,69.0,147.0,1.0,0.0,0.0,60.0,0.0,0.0,205.0,289.0,0.0,346.0,23.0,0.0,0.0,0.0,0.0,921.0,1068.0,0.0,0.0,0.0,22.0,0.0,106.0,306.0,16.0,43.0,0.0,17.0,1695.0,0.0,0.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,423.0,0.0,0.0,0.0,0.0,0.0,326.0,22.0,0.0,0.0,39.0,2.0,221.0,0.0,0.0,0.0,0.0,0.0,61.0,1199.0,0.0,0.0,43.0,19.0,320.0,0.0,0.0,0.0,0.0,0.0,165.0,0.0,42.0,0.0,0.0,576.0,66.0,0.0,0.0,731.0,0.0,0.0,0.0,0.0,248.0,703.0,465.0,441.0,0.0,0.0,0.0,20.0,31.0,0.0,0.0,0.0,102.0,0.0,0.0,0.0,0.0,0.0,14.0,217.0,307.0,36.0,0.0,0.0,0.0,0.0,49.0,0.0,0.0,0.0,0.0,1.0,46.0,0.0,0.0,0.0,0.0,175.0,476.0,0.0,59.0,0.0,0.0,35.0,0.0,33.0,3839127.0,2.0,0.0,0.0,50.0,0.0,278.0,50.0,0.0,0.0,243.0,0.0,0.0,0.0,41.0,0.0,0.0,92.0,0.0,0.0,28.0,325.0,307.0,85.0,79.0,918.0,244.0,0.0,543.0,470.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,71.0,0.0,0.0,0.0,0.0,8.0,0.0,4.0,0.0,320.0,204.0,0.0,0.0,0.0,7.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.0,22.0,0.0,0.0,188.0,0.0,0.0,287.0,178.0,30.0,0.0,0.0,0.0,245.0,0.0,0.0,0.0,0.0,0.0,0.0,61.0,0.0,0.0,19.0,515.0,0.0,185.0,0.0,47.0,72.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,650.0,686.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,971.0,1340.0,0.0,0.0,0.0,20.0,51.0,0.0,539.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,454.0,33.0,0.0,0.0,0.0,2007-12-23,,2007-51,1.9208104409577498,1.8820000000000001, +10,10,2.92,1.0,0.0,19.0,0.0,90.0,0.0,50.0,10.0,0.0,122.0,0.0,0.0,0.0,0.0,564.0,13.0,11.0,10.0,0.0,0.0,0.0,0.0,34.0,0.0,719.0,0.0,0.0,0.0,1.0,0.0,0.0,8.0,340.0,70.0,80.0,1.0,42.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.0,56.0,0.0,193.0,10.0,35.0,0.0,375.0,0.0,0.0,0.0,88.0,133.0,23.0,106.0,0.0,196.0,54.0,60.0,117.0,14.0,0.0,2.0,61.0,91.0,1.0,0.0,206.0,77.0,304.0,0.0,0.0,0.0,366.0,0.0,19.0,0.0,0.0,19.0,0.0,0.0,56.0,153.0,0.0,0.0,0.0,51.0,0.0,0.0,140.0,207.0,0.0,356.0,27.0,0.0,0.0,0.0,0.0,589.0,778.0,0.0,0.0,0.0,12.0,21.0,78.0,273.0,15.0,33.0,0.0,10.0,1878.0,0.0,0.0,0.0,32.0,0.0,0.0,0.0,0.0,0.0,316.0,0.0,0.0,0.0,0.0,0.0,298.0,18.0,0.0,0.0,28.0,2.0,176.0,0.0,0.0,0.0,0.0,0.0,44.0,909.0,0.0,0.0,37.0,29.0,415.0,0.0,0.0,1.0,0.0,0.0,133.0,0.0,26.0,0.0,0.0,471.0,65.0,0.0,0.0,686.0,0.0,0.0,0.0,0.0,225.0,743.0,386.0,346.0,0.0,0.0,0.0,19.0,32.0,0.0,0.0,0.0,71.0,0.0,0.0,0.0,0.0,0.0,14.0,183.0,282.0,37.0,0.0,0.0,0.0,0.0,68.0,0.0,0.0,0.0,0.0,3.0,59.0,0.0,0.0,0.0,0.0,152.0,448.0,0.0,96.0,0.0,0.0,17.0,0.0,27.0,3656256.0,0.0,0.0,0.0,26.0,0.0,180.0,41.0,0.0,0.0,179.0,0.0,0.0,0.0,29.0,0.0,0.0,75.0,0.0,0.0,31.0,280.0,251.0,94.0,34.0,828.0,164.0,0.0,613.0,514.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,61.0,0.0,1.0,0.0,0.0,4.0,0.0,3.0,0.0,256.0,207.0,0.0,0.0,0.0,9.0,8.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.0,9.0,0.0,0.0,254.0,0.0,0.0,260.0,151.0,32.0,0.0,0.0,0.0,158.0,0.0,0.0,0.0,0.0,0.0,0.0,38.0,0.0,0.0,10.0,379.0,0.0,145.0,0.0,49.0,67.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,608.0,552.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,822.0,1463.0,0.0,0.0,0.0,22.0,73.0,0.0,419.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,479.0,26.0,0.0,0.0,0.0,2007-12-30,,2007-52,2.7883412890467985,1.825777777777778, +11,11,4.56,42.0,0.0,43.0,0.0,166.0,0.0,62.0,34.0,0.0,212.0,0.0,0.0,10.0,0.0,942.0,18.0,29.0,17.0,0.0,0.0,0.0,0.0,59.0,0.0,1323.0,0.0,41.0,0.0,14.0,0.0,0.0,11.0,757.0,119.0,286.0,0.0,78.0,0.0,5.0,29.0,0.0,0.0,0.0,0.0,70.0,65.0,0.0,385.0,11.0,45.0,0.0,795.0,40.0,16.0,25.0,217.0,301.0,15.0,128.0,0.0,353.0,85.0,101.0,198.0,28.0,0.0,11.0,101.0,169.0,0.0,0.0,405.0,150.0,576.0,0.0,0.0,0.0,717.0,9.0,30.0,0.0,8.0,31.0,1.0,0.0,119.0,339.0,1.0,0.0,13.0,90.0,0.0,315.0,482.0,1503.0,81.0,583.0,54.0,0.0,0.0,0.0,0.0,941.0,1148.0,3.0,0.0,0.0,41.0,38.0,172.0,489.0,18.0,36.0,58.0,38.0,3705.0,0.0,0.0,21.0,47.0,0.0,0.0,7.0,0.0,0.0,540.0,0.0,34.0,0.0,5.0,0.0,481.0,23.0,0.0,0.0,38.0,20.0,401.0,10.0,0.0,40.0,0.0,0.0,65.0,1845.0,0.0,0.0,73.0,30.0,1077.0,0.0,0.0,0.0,0.0,25.0,257.0,23.0,34.0,0.0,11.0,918.0,160.0,20.0,0.0,1333.0,0.0,0.0,0.0,0.0,457.0,1026.0,672.0,591.0,0.0,0.0,36.0,34.0,33.0,22.0,0.0,19.0,189.0,0.0,0.0,0.0,0.0,0.0,27.0,281.0,383.0,77.0,0.0,0.0,0.0,0.0,123.0,12.0,0.0,0.0,35.0,0.0,95.0,0.0,28.0,0.0,0.0,257.0,877.0,0.0,151.0,1.0,0.0,19.0,0.0,43.0,5586150.0,9.0,54.0,0.0,59.0,0.0,367.0,87.0,0.0,0.0,300.0,0.0,0.0,0.0,62.0,0.0,24.0,135.0,0.0,0.0,43.0,552.0,494.0,172.0,67.0,1525.0,249.0,13.0,917.0,776.0,0.0,8.0,20.0,0.0,21.0,0.0,12.0,0.0,89.0,161.0,0.0,50.0,0.0,0.0,14.0,0.0,79.0,9.0,393.0,356.0,0.0,0.0,0.0,23.0,10.0,0.0,0.0,0.0,71.0,0.0,0.0,0.0,0.0,15.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,30.0,6.0,0.0,45.0,3.0,0.0,0.0,711.0,0.0,0.0,507.0,221.0,33.0,0.0,8.0,2.0,337.0,0.0,0.0,0.0,0.0,0.0,0.0,123.0,0.0,0.0,18.0,780.0,0.0,292.0,0.0,92.0,110.0,0.0,0.0,10.0,0.0,3.0,0.0,0.0,0.0,0.0,758.0,822.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,961.5,2985.0,0.0,0.0,0.0,38.0,89.0,11.0,2398.0,0.0,0.0,0.0,0.0,10.0,0.0,1.0,0.0,0.0,0.0,880.0,40.0,19.0,0.0,0.0,2008-01-13,,2008-2,4.618931642875059,4.56, +12,12,5.98,14.0,0.0,41.0,0.0,131.0,0.0,64.0,12.0,0.0,201.0,0.0,0.0,0.0,0.0,862.0,14.0,17.0,10.0,0.0,0.0,0.0,0.0,85.0,0.0,1161.0,0.0,0.0,0.0,0.0,0.0,0.0,7.0,777.0,131.0,210.0,0.0,89.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,79.0,54.0,0.0,430.0,8.0,42.0,0.0,658.0,0.0,0.0,0.0,183.0,191.0,26.0,89.0,0.0,348.0,65.0,112.0,227.0,27.0,0.0,11.0,83.0,144.0,0.0,0.0,274.0,156.0,546.0,0.0,0.0,0.0,613.0,0.0,23.0,0.0,17.0,26.0,0.0,0.0,125.0,260.0,0.0,0.0,0.0,85.0,0.0,104.0,292.0,383.0,0.0,696.0,41.0,0.0,0.0,0.0,0.0,903.0,1274.0,0.0,0.0,0.0,45.0,31.0,181.0,442.0,15.0,30.0,0.0,21.0,2557.0,0.0,0.0,0.0,34.0,0.0,0.0,0.0,0.0,0.0,723.0,0.0,0.0,0.0,0.0,0.0,480.0,28.0,0.0,0.0,40.0,0.0,366.0,0.0,0.0,17.0,0.0,0.0,58.0,1978.0,0.0,0.0,156.0,49.0,593.0,0.0,0.0,0.0,0.0,0.0,255.0,0.0,41.0,0.0,0.0,618.0,131.0,0.0,0.0,1261.0,0.0,0.0,0.0,0.0,411.0,1020.0,663.0,672.0,0.0,0.0,0.0,41.0,38.0,0.0,0.0,0.0,160.0,0.0,0.0,0.0,0.0,0.0,22.0,366.0,398.0,50.0,0.0,0.0,0.0,0.0,86.0,0.0,0.0,0.0,0.0,0.0,58.0,0.0,0.0,0.0,0.0,254.0,799.0,0.0,135.0,0.0,0.0,21.0,0.0,57.0,4412040.0,0.0,0.0,0.0,79.0,0.0,398.0,63.0,0.0,0.0,292.0,0.0,0.0,0.0,37.0,0.0,1.0,121.0,0.0,0.0,43.0,537.0,430.0,175.0,72.0,1292.0,355.0,0.0,550.0,497.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,146.0,0.0,0.0,1.0,0.0,5.0,0.0,2.0,0.0,446.0,313.0,0.0,0.0,0.0,15.0,9.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.0,11.0,0.0,0.0,416.0,0.0,0.0,377.0,292.0,44.0,0.0,0.0,0.0,369.0,0.0,0.0,0.0,0.0,0.0,0.0,98.0,0.0,0.0,20.0,687.0,0.0,240.0,0.0,71.0,93.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1191.0,1195.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1101.0,2148.0,0.0,0.0,0.0,24.0,91.0,0.0,757.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,643.0,51.0,0.0,0.0,0.0,2008-01-20,,2008-3,5.933020915095041,5.98, +13,13,6.54,33.0,0.0,44.0,0.0,156.0,0.0,74.0,16.0,0.0,208.0,0.0,0.0,0.0,0.0,810.0,17.0,28.0,11.0,0.0,0.0,0.0,0.0,79.0,0.0,936.0,0.0,0.0,0.0,0.0,0.0,0.0,8.0,749.0,122.0,209.0,0.0,64.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,72.0,55.0,0.0,388.0,10.0,39.0,0.0,673.0,0.0,0.0,0.0,162.0,183.0,35.0,77.0,0.0,380.0,106.0,126.0,252.0,31.0,0.0,11.0,88.0,154.0,0.0,0.0,513.0,178.0,511.0,0.0,0.0,0.0,585.0,0.0,57.0,0.0,42.0,51.0,0.0,0.0,151.0,263.0,1.0,0.0,0.0,84.0,0.0,95.0,279.0,371.0,0.0,766.0,39.0,0.0,0.0,0.0,0.0,686.0,1433.0,0.0,0.0,0.0,37.0,29.0,223.0,453.0,23.0,55.0,0.0,49.0,2269.0,0.0,0.0,0.0,64.0,0.0,0.0,0.0,0.0,0.0,874.0,0.0,0.0,0.0,0.0,0.0,448.0,33.0,0.0,0.0,48.0,0.0,375.0,0.0,0.0,25.0,0.0,0.0,88.0,2234.0,0.0,0.0,64.0,65.0,511.0,0.0,0.0,0.0,0.0,0.0,238.0,0.0,51.0,0.0,0.0,557.0,119.0,0.0,0.0,1154.0,0.0,0.0,0.0,0.0,430.0,1053.0,761.0,586.0,0.0,0.0,0.0,46.0,36.0,0.0,0.0,0.0,167.0,0.0,0.0,0.0,0.0,0.0,21.0,356.0,415.0,54.0,0.0,0.0,0.0,0.0,92.0,0.0,0.0,0.0,0.0,1.0,89.0,0.0,0.0,0.0,0.0,283.0,803.0,0.0,134.0,0.0,0.0,23.0,0.0,72.0,4433246.0,0.0,0.0,0.0,68.0,0.0,400.0,64.0,0.0,0.0,295.0,0.0,0.0,0.0,44.0,0.0,3.0,161.0,0.0,0.0,114.0,570.0,525.0,162.0,89.0,1222.0,402.0,0.0,540.0,471.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,138.0,0.0,1.0,0.0,0.0,10.0,0.0,6.0,0.0,482.0,306.0,0.0,0.0,0.0,13.0,9.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,46.0,13.0,0.0,0.0,402.0,0.0,0.0,377.0,339.0,54.0,0.0,0.0,0.0,424.0,0.0,0.0,0.0,0.0,0.0,0.0,79.0,0.0,0.0,20.0,710.0,0.0,254.0,0.0,119.0,105.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,976.0,1011.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1240.5,2774.0,0.0,0.0,0.0,41.0,98.0,0.0,1004.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,661.0,44.0,0.0,0.0,0.0,2008-01-27,,2008-4,6.580181040718771,6.540000000000001, +14,14,6.95,88.0,0.0,45.0,0.0,142.0,0.0,92.0,17.0,0.0,222.0,0.0,0.0,0.0,0.0,873.0,20.0,30.0,14.0,0.0,0.0,0.0,0.0,83.0,0.0,1031.0,0.0,0.0,0.0,4.0,0.0,0.0,10.0,874.0,102.0,222.0,2.0,94.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,78.0,42.0,0.0,387.0,17.0,44.0,0.0,625.0,0.0,0.0,0.0,164.0,168.0,31.0,75.0,0.0,371.0,79.0,113.0,230.0,35.0,0.0,16.0,106.0,149.0,1.0,0.0,485.0,160.0,554.0,0.0,0.0,0.0,667.0,2.0,32.0,0.0,20.0,27.0,2.0,0.0,140.0,319.0,1.0,0.0,0.0,81.0,0.0,114.0,243.0,300.0,0.0,792.0,55.0,0.0,0.0,0.0,0.0,748.0,1302.0,0.0,0.0,0.0,60.0,24.0,169.0,477.0,21.0,48.0,0.0,27.0,2470.0,0.0,0.0,0.0,41.0,0.0,0.0,0.0,0.0,0.0,712.0,0.0,0.0,0.0,0.0,0.0,429.0,38.0,0.0,0.0,47.0,2.0,359.0,0.0,0.0,30.0,0.0,0.0,88.0,2273.0,0.0,0.0,57.0,30.0,452.0,0.0,0.0,2.0,0.0,0.0,256.0,0.0,71.0,0.0,0.0,611.0,131.0,0.0,0.0,1123.0,0.0,0.0,0.0,0.0,402.0,1528.0,729.0,574.0,0.0,0.0,0.0,41.0,30.0,0.0,0.0,0.0,137.0,0.0,0.0,0.0,0.0,0.0,16.0,349.0,396.0,59.0,0.0,0.0,0.0,0.0,79.0,0.0,0.0,0.0,0.0,2.0,87.0,0.0,0.0,0.0,0.0,284.0,813.0,0.0,146.0,0.0,0.0,25.0,0.0,76.0,4446840.0,2.0,0.0,0.0,69.0,0.0,443.0,53.0,0.0,0.0,282.0,0.0,0.0,0.0,54.0,0.0,1.0,120.0,0.0,0.0,95.0,484.0,521.0,150.0,46.0,1233.0,434.0,0.0,506.0,415.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,2.0,139.0,0.0,1.0,1.0,0.0,7.0,0.0,3.0,0.0,416.0,290.0,0.0,0.0,0.0,15.0,9.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,53.0,24.0,0.0,0.0,559.0,0.0,0.0,339.0,342.0,42.0,0.0,0.0,0.0,375.0,0.0,0.0,0.0,0.0,0.0,0.0,106.0,0.0,0.0,33.0,907.0,0.0,409.0,0.0,112.0,98.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,837.0,953.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1380.0,2793.0,0.0,0.0,0.0,34.0,76.0,0.0,866.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,0.0,0.0,0.0,514.0,45.0,0.0,0.0,0.0,2008-02-03,,2008-5,6.945998787762553,6.868000000000001, +15,15,7.21,82.0,0.0,36.0,0.0,130.0,0.0,84.0,12.0,0.0,213.0,0.0,0.0,0.0,0.0,888.0,25.0,34.0,15.0,0.0,0.0,0.0,0.0,70.0,0.0,1100.0,0.0,0.0,0.0,0.0,0.0,0.0,11.0,1034.0,121.0,230.0,1.0,70.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,60.0,53.0,0.0,408.0,6.0,33.0,0.0,666.0,0.0,0.0,0.0,212.0,162.0,30.0,72.0,0.0,346.0,89.0,125.0,225.0,34.0,0.0,14.0,88.0,142.0,1.0,0.0,480.0,183.0,641.0,0.0,0.0,0.0,695.0,1.0,26.0,0.0,23.0,23.0,2.0,0.0,145.0,308.0,1.0,0.0,0.0,75.0,0.0,96.0,260.0,352.0,0.0,629.0,69.0,0.0,0.0,0.0,0.0,845.0,1460.0,0.0,0.0,0.0,62.0,25.0,192.0,500.0,9.0,46.0,0.0,51.0,2347.0,0.0,0.0,0.0,31.0,0.0,0.0,0.0,0.0,0.0,634.0,0.0,0.0,0.0,0.0,0.0,589.0,43.0,0.0,0.0,36.0,1.0,374.0,0.0,0.0,32.0,0.0,0.0,79.0,2562.0,0.0,0.0,64.0,18.0,491.0,0.0,0.0,2.0,0.0,0.0,204.0,0.0,56.0,0.0,0.0,567.0,139.0,0.0,0.0,1523.0,0.0,0.0,0.0,0.0,458.0,1337.0,667.0,641.0,0.0,0.0,0.0,40.0,32.0,0.0,0.0,0.0,141.0,0.0,0.0,0.0,0.0,0.0,14.0,353.0,439.0,50.0,0.0,0.0,0.0,0.0,93.0,0.0,0.0,0.0,1.0,0.0,84.0,0.0,0.0,0.0,0.0,287.0,838.0,0.0,137.0,0.0,0.0,27.0,0.0,60.0,4484370.0,1.0,43.0,0.0,72.0,0.0,416.0,54.0,0.0,0.0,316.0,0.0,0.0,0.0,49.0,0.0,0.0,166.0,0.0,0.0,107.0,595.0,553.0,184.0,46.0,1241.0,330.0,0.0,517.0,467.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,1.0,117.0,0.0,2.0,1.0,0.0,11.0,0.0,3.0,0.0,412.0,331.0,0.0,0.0,0.0,11.0,10.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.0,41.0,0.0,0.0,523.0,0.0,0.0,341.0,304.0,34.0,0.0,0.0,0.0,394.0,0.0,0.0,0.0,0.0,0.0,0.0,94.0,0.0,0.0,20.0,635.0,0.0,390.0,0.0,111.0,97.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,796.0,858.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1596.0,2849.0,0.0,0.0,0.0,29.0,76.0,0.0,969.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,611.0,63.0,0.0,0.0,0.0,2008-02-10,,2008-6,7.175326585146432,6.942, +16,16,6.95,66.0,0.0,31.0,0.0,131.0,0.0,59.0,79.0,0.0,172.0,0.0,0.0,0.0,0.0,886.0,15.0,19.0,16.0,0.0,0.0,0.0,0.0,94.0,0.0,1032.0,0.0,0.0,0.0,2.0,0.0,0.0,10.0,963.0,105.0,241.0,2.0,68.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,73.0,72.0,0.0,398.0,6.0,37.0,0.0,661.0,0.0,0.0,0.0,224.0,147.0,33.0,84.0,0.0,384.0,76.0,98.0,238.0,28.0,0.0,20.0,93.0,144.0,1.0,0.0,467.0,208.0,571.0,0.0,0.0,0.0,685.0,1.0,24.0,0.0,16.0,18.0,0.0,0.0,139.0,328.0,0.0,0.0,0.0,55.0,0.0,110.0,240.0,339.0,0.0,833.0,63.0,0.0,0.0,0.0,0.0,760.0,1446.0,0.0,0.0,0.0,70.0,28.0,267.0,542.0,14.0,32.0,0.0,40.0,2666.0,0.0,0.0,0.0,44.0,0.0,0.0,0.0,0.0,0.0,540.0,0.0,0.0,0.0,0.0,0.0,554.0,43.0,0.0,0.0,48.0,1.0,416.0,0.0,0.0,28.0,0.0,0.0,54.0,2701.0,0.0,0.0,26.0,21.0,555.0,0.0,0.0,1.0,0.0,0.0,263.0,0.0,77.0,0.0,0.0,611.0,134.0,0.0,0.0,1451.0,0.0,0.0,0.0,0.0,423.0,1052.0,657.0,573.0,0.0,0.0,0.0,38.0,31.0,0.0,0.0,0.0,152.0,0.0,0.0,0.0,0.0,0.0,15.0,384.0,352.0,40.0,0.0,0.0,0.0,0.0,100.0,0.0,0.0,0.0,0.0,14.0,98.0,0.0,0.0,0.0,0.0,293.0,966.0,0.0,180.0,0.0,0.0,46.0,0.0,75.0,4471838.0,0.0,49.0,0.0,72.0,0.0,469.0,53.0,0.0,0.0,282.0,0.0,0.0,0.0,61.0,0.0,15.0,176.0,0.0,0.0,127.0,592.0,481.0,179.0,66.0,1256.0,429.0,0.0,560.0,490.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,131.0,0.0,0.0,1.0,0.0,12.0,0.0,2.0,0.0,473.0,337.0,0.0,0.0,0.0,16.0,11.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,47.0,38.0,0.0,0.0,464.0,0.0,0.0,352.0,281.0,32.0,0.0,0.0,0.0,356.0,0.0,0.0,0.0,0.0,0.0,0.0,94.0,0.0,0.0,24.0,685.0,0.0,267.0,0.0,104.0,100.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,712.0,747.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1527.0,2788.0,0.0,0.0,0.0,50.0,58.0,0.0,918.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,525.0,53.0,0.0,0.0,0.0,2008-02-17,,2008-7,6.958483815849886,5.99, +17,17,6.61,88.0,0.0,37.0,0.0,164.0,0.0,87.0,34.0,0.0,220.0,0.0,0.0,1.0,0.0,823.0,19.0,22.0,21.0,0.0,0.0,0.0,0.0,64.0,0.0,983.0,0.0,2.0,0.0,1.0,0.0,0.0,4.0,927.0,97.0,260.0,0.0,73.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,100.0,63.0,0.0,432.0,14.0,42.0,0.0,702.0,0.0,0.0,0.0,195.0,168.0,35.0,74.0,0.0,449.0,117.0,129.0,231.0,35.0,0.0,17.0,122.0,125.0,3.0,0.0,474.0,149.0,555.0,0.0,0.0,0.0,684.0,0.0,28.0,0.0,12.0,30.0,2.0,0.0,120.0,329.0,1.0,0.0,0.0,65.0,0.0,117.0,252.0,407.0,2.0,865.0,51.0,0.0,0.0,0.0,0.0,873.0,1492.0,0.0,0.0,0.0,42.0,35.0,257.0,530.0,15.0,35.0,0.0,44.0,2433.0,0.0,0.0,0.0,38.0,0.0,0.0,0.0,0.0,0.0,554.0,0.0,0.0,0.0,0.0,0.0,581.0,29.0,0.0,0.0,38.0,2.0,533.0,0.0,0.0,48.0,0.0,0.0,84.0,2685.0,0.0,0.0,34.0,18.0,490.0,0.0,0.0,1.0,0.0,0.0,270.0,0.0,55.0,0.0,0.0,719.0,129.0,0.0,0.0,1173.0,0.0,0.0,0.0,0.0,456.0,1038.0,694.0,602.0,0.0,0.0,0.0,27.0,30.0,0.0,0.0,0.0,146.0,0.0,0.0,0.0,0.0,0.0,16.0,340.0,445.0,36.0,0.0,0.0,0.0,0.0,82.0,0.0,0.0,0.0,1.0,4.0,73.0,0.0,0.0,0.0,0.0,266.0,1099.0,0.0,105.0,0.0,0.0,41.0,0.0,44.0,4465398.0,1.0,65.0,0.0,79.0,0.0,478.0,43.0,0.0,0.0,275.0,0.0,0.0,0.0,51.0,0.0,49.0,173.0,0.0,0.0,70.0,543.0,519.0,149.0,76.0,1339.0,407.0,0.0,598.0,512.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,137.0,0.0,1.0,0.0,0.0,4.0,0.0,5.0,0.0,444.0,317.0,0.0,0.0,0.0,11.0,7.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,93.0,17.0,0.0,0.0,497.0,0.0,0.0,358.0,296.0,42.0,0.0,0.0,0.0,291.0,0.0,0.0,0.0,0.0,0.0,0.0,94.0,0.0,0.0,18.0,758.0,0.0,280.0,0.0,142.0,92.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,776.0,912.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1456.0,2375.0,0.0,0.0,0.0,25.0,78.0,0.0,889.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,643.0,53.0,0.0,0.0,0.0,2008-02-24,,2008-8,6.585959192367902,6.596000000000001, +18,18,6.32,91.0,0.0,52.0,0.0,159.0,0.0,78.0,31.0,0.0,221.0,0.0,0.0,2.0,0.0,842.0,17.0,31.0,16.0,0.0,0.0,0.0,0.0,88.0,0.0,1233.0,0.0,1.0,0.0,0.0,0.0,0.0,5.0,902.0,119.0,279.0,1.0,78.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,80.0,115.0,1.0,413.0,8.0,40.0,0.0,727.0,0.0,0.0,0.0,245.0,162.0,29.0,67.0,0.0,397.0,82.0,116.0,273.0,38.0,0.0,10.0,107.0,182.0,1.0,0.0,471.0,176.0,657.0,0.0,0.0,0.0,682.0,1.0,32.0,0.0,24.0,36.0,0.0,0.0,126.0,396.0,0.0,0.0,14.0,70.0,0.0,469.0,293.0,354.0,0.0,838.0,55.0,0.0,0.0,0.0,0.0,953.0,1620.0,0.0,0.0,0.0,60.0,26.0,217.0,588.0,12.0,40.0,0.0,61.0,2672.0,0.0,0.0,0.0,40.0,0.0,0.0,0.0,0.0,0.0,782.0,0.0,0.0,0.0,0.0,0.0,541.0,27.0,0.0,0.0,42.0,2.0,474.0,0.0,0.0,47.0,0.0,0.0,80.0,2862.0,0.0,0.0,53.0,38.0,566.0,0.0,0.0,0.0,0.0,0.0,279.0,0.0,54.0,0.0,0.0,728.0,150.0,0.0,0.0,1300.0,0.0,0.0,0.0,0.0,448.0,942.0,793.0,600.0,0.0,0.0,51.0,29.0,33.0,0.0,0.0,0.0,158.0,0.0,0.0,0.0,0.0,0.0,23.0,333.0,492.0,48.0,0.0,0.0,0.0,0.0,105.0,0.0,0.0,0.0,0.0,0.0,107.0,0.0,0.0,0.0,0.0,280.0,1038.0,0.0,160.0,0.0,0.0,50.0,0.0,68.0,4556382.0,0.0,67.0,0.0,89.0,0.0,478.0,46.0,0.0,0.0,357.0,0.0,0.0,0.0,54.0,0.0,76.0,145.0,0.0,0.0,97.0,620.0,529.0,148.0,87.0,1351.0,576.0,0.0,615.0,543.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.0,149.0,0.0,1.0,1.0,0.0,10.0,0.0,3.0,0.0,471.0,331.0,0.0,0.0,0.0,13.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,56.0,42.0,0.0,0.0,496.0,0.0,0.0,377.0,266.0,47.0,0.0,0.0,0.0,341.0,0.0,0.0,0.0,0.0,0.0,0.0,101.0,0.0,0.0,29.0,779.0,0.0,279.0,0.0,168.0,117.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,740.0,876.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1603.0,1896.0,0.0,0.0,0.0,30.0,455.0,0.0,1046.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,650.0,56.0,0.0,0.0,0.0,2008-03-02,,2008-9,6.383576696865267,6.490000000000001, +19,19,5.62,83.0,0.0,25.0,0.0,182.0,0.0,88.0,25.0,0.0,213.0,0.0,0.0,1.0,0.0,877.0,16.0,37.0,11.0,0.0,0.0,0.0,0.0,88.0,0.0,1089.0,0.0,2.0,0.0,0.0,0.0,0.0,5.0,979.0,99.0,199.0,0.0,63.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,95.0,103.0,1.0,371.0,11.0,38.0,0.0,725.0,0.0,0.0,0.0,210.0,164.0,42.0,70.0,0.0,368.0,106.0,130.0,274.0,28.0,0.0,9.0,86.0,173.0,1.0,0.0,326.0,156.0,577.0,0.0,0.0,0.0,601.0,0.0,28.0,0.0,20.0,37.0,0.0,0.0,115.0,381.0,1.0,0.0,35.0,34.0,0.0,306.0,350.0,414.0,0.0,849.0,61.0,0.0,0.0,0.0,0.0,804.0,1757.0,10.0,0.0,0.0,45.0,23.0,154.0,537.0,20.0,44.0,1.0,43.0,2615.0,0.0,0.0,0.0,44.0,0.0,0.0,0.0,0.0,0.0,724.0,0.0,1.0,0.0,0.0,0.0,520.0,34.0,0.0,0.0,36.0,1.0,423.0,0.0,0.0,50.0,0.0,0.0,73.0,2537.0,0.0,0.0,30.0,26.0,411.0,0.0,0.0,1.0,0.0,1.0,254.0,0.0,50.0,0.0,0.0,985.0,135.0,0.0,0.0,1220.0,0.0,0.0,0.0,0.0,482.0,912.0,721.0,574.0,0.0,0.0,52.0,32.0,42.0,0.0,0.0,0.0,166.0,0.0,0.0,0.0,0.0,0.0,15.0,303.0,403.0,61.0,0.0,0.0,0.0,0.0,105.0,0.0,0.0,0.0,0.0,1.0,95.0,0.0,0.0,0.0,0.0,300.0,842.0,0.0,177.0,0.0,0.0,39.0,0.0,67.0,4537396.0,1.0,55.0,0.0,69.0,0.0,440.0,48.0,0.0,0.0,283.0,0.0,0.0,0.0,54.0,0.0,49.0,133.0,0.0,0.0,53.0,651.0,484.0,129.0,55.0,1351.0,398.0,0.0,564.0,486.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,152.0,0.0,0.0,0.0,0.0,7.0,0.0,3.0,0.0,456.0,310.0,0.0,0.0,0.0,11.0,7.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,69.0,27.0,0.0,0.0,506.0,0.0,0.0,357.0,311.0,24.0,0.0,0.0,0.0,340.0,0.0,0.0,0.0,0.0,0.0,0.0,85.0,0.0,0.0,28.0,722.0,0.0,228.0,0.0,189.0,126.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,680.0,908.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1846.0,2354.0,0.0,0.0,0.0,43.0,232.0,0.0,1265.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,611.0,38.0,0.0,0.0,0.0,2008-03-09,,2008-10,5.5764284145958225,4.104, +20,20,4.13,93.0,0.0,26.0,0.0,121.0,0.0,43.0,32.0,0.0,178.0,0.0,0.0,2.0,0.0,831.0,19.0,19.0,17.0,0.0,0.0,0.0,0.0,86.0,0.0,794.0,0.0,1.0,0.0,1.0,0.0,0.0,4.0,740.0,119.0,236.0,1.0,77.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,84.0,64.0,1.0,367.0,7.0,28.0,0.0,595.0,0.0,0.0,0.0,200.0,124.0,26.0,49.0,0.0,306.0,52.0,81.0,202.0,26.0,0.0,12.0,83.0,98.0,0.0,0.0,367.0,127.0,442.0,0.0,0.0,0.0,543.0,0.0,20.0,0.0,12.0,22.0,1.0,0.0,135.0,414.0,0.0,0.0,21.0,51.0,0.0,135.0,247.0,322.0,0.0,566.0,38.0,0.0,0.0,0.0,0.0,746.0,1574.0,10.0,0.0,0.0,59.0,21.0,143.0,423.0,10.0,42.0,0.0,31.0,1652.0,0.0,0.0,0.0,36.0,0.0,0.0,0.0,0.0,0.0,566.0,0.0,0.0,0.0,0.0,0.0,413.0,23.0,0.0,0.0,25.0,1.0,572.0,0.0,0.0,32.0,0.0,0.0,69.0,1981.0,0.0,0.0,24.0,23.0,456.0,0.0,0.0,0.0,0.0,0.0,171.0,0.0,49.0,0.0,0.0,430.0,119.0,0.0,0.0,1047.0,0.0,0.0,0.0,0.0,457.0,664.0,601.0,433.0,0.0,0.0,58.0,31.0,40.0,0.0,0.0,0.0,146.0,0.0,0.0,0.0,0.0,0.0,16.0,280.0,367.0,43.0,0.0,0.0,0.0,0.0,87.0,0.0,0.0,0.0,0.0,1.0,87.0,0.0,0.0,0.0,0.0,226.0,780.0,0.0,119.0,0.0,0.0,29.0,0.0,57.0,3906271.0,0.0,39.0,0.0,39.0,0.0,320.0,42.0,0.0,0.0,262.0,0.0,0.0,0.0,51.0,0.0,42.0,134.0,0.0,0.0,42.0,554.0,432.0,155.0,42.0,1102.0,397.0,1.0,386.0,324.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,103.0,0.0,0.0,0.0,0.0,8.0,0.0,1.0,0.0,368.0,277.0,0.0,0.0,0.0,14.0,8.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.0,12.0,0.0,0.0,453.0,0.0,0.0,323.0,269.0,12.0,0.0,0.0,0.0,289.0,0.0,0.0,0.0,0.0,0.0,0.0,58.0,0.0,0.0,28.0,601.0,0.0,197.0,0.0,126.0,76.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,552.0,677.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1394.0,2447.0,0.0,0.0,0.0,24.0,65.0,0.0,866.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,477.0,36.0,0.0,0.0,0.0,2008-03-16,,2008-11,4.005286866243999,1.006, +21,21,2.75,93.0,0.0,31.0,0.0,167.0,0.0,66.0,40.0,0.0,209.0,0.0,0.0,1.0,0.0,1168.0,16.0,28.0,18.0,0.0,0.0,0.0,0.0,61.0,0.0,868.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,864.0,133.0,206.0,1.0,55.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,109.0,85.0,0.0,453.0,11.0,55.0,0.0,675.0,0.0,0.0,0.0,220.0,138.0,48.0,84.0,0.0,387.0,86.0,125.0,262.0,30.0,0.0,19.0,77.0,149.0,0.0,0.0,360.0,187.0,486.0,0.0,0.0,0.0,592.0,0.0,34.0,0.0,22.0,20.0,0.0,0.0,152.0,636.0,0.0,0.0,24.0,57.0,0.0,169.0,318.0,350.0,0.0,650.0,68.0,0.0,0.0,0.0,0.0,739.0,2260.0,18.0,0.0,0.0,44.0,44.0,194.0,551.0,12.0,40.0,0.0,48.0,2015.0,0.0,0.0,0.0,32.0,0.0,0.0,0.0,0.0,0.0,558.0,0.0,0.0,0.0,0.0,0.0,469.0,45.0,0.0,0.0,27.0,2.0,535.0,0.0,0.0,40.0,0.0,0.0,92.0,2582.0,0.0,0.0,38.0,36.0,441.0,0.0,0.0,0.0,0.0,0.0,326.0,0.0,90.0,0.0,0.0,500.0,135.0,0.0,0.0,1340.0,0.0,0.0,0.0,0.0,542.0,1009.0,795.0,594.0,0.0,0.0,88.0,19.0,59.0,0.0,0.0,0.0,167.0,0.0,0.0,0.0,0.0,0.0,17.0,327.0,424.0,50.0,0.0,0.0,0.0,0.0,151.0,0.0,0.0,0.0,0.0,1.0,87.0,0.0,0.0,0.0,0.0,302.0,902.0,0.0,174.0,0.0,0.0,49.0,0.0,70.0,4543224.0,1.0,57.0,0.0,61.0,0.0,535.0,48.0,0.0,0.0,274.0,0.0,0.0,0.0,59.0,0.0,58.0,126.0,0.0,0.0,46.0,648.0,511.0,156.0,84.0,1384.0,357.0,0.0,429.0,340.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,148.0,0.0,0.0,0.0,0.0,10.0,0.0,3.0,0.0,432.0,407.0,0.0,0.0,0.0,19.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,56.0,14.0,0.0,0.0,486.0,0.0,0.0,497.0,305.0,33.0,0.0,0.0,0.0,339.0,0.0,0.0,0.0,0.0,0.0,0.0,93.0,0.0,0.0,28.0,648.0,0.0,242.0,0.0,170.0,123.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,684.0,697.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1593.0,2563.0,0.0,0.0,0.0,24.0,104.0,0.0,901.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,550.0,52.0,0.0,0.0,0.0,2008-03-23,,2008-12,2.6786352368990523,3.2440000000000007, +22,22,1.92,36.0,0.0,24.0,0.0,135.0,0.0,56.0,65.0,0.0,224.0,0.0,0.0,1.0,0.0,978.0,12.0,17.0,23.0,0.0,0.0,0.0,0.0,36.0,0.0,608.0,0.0,28.0,0.0,0.0,0.0,0.0,5.0,860.0,87.0,230.0,0.0,55.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,51.0,70.0,1.0,378.0,8.0,33.0,0.0,620.0,0.0,0.0,0.0,222.0,137.0,34.0,53.0,0.0,398.0,98.0,115.0,210.0,41.0,0.0,10.0,75.0,163.0,1.0,0.0,287.0,152.0,421.0,0.0,0.0,0.0,601.0,1.0,32.0,0.0,24.0,25.0,1.0,0.0,105.0,397.0,1.0,0.0,18.0,52.0,0.0,89.0,219.0,339.0,0.0,710.0,53.0,0.0,0.0,0.0,0.0,886.0,1948.0,13.0,0.0,0.0,36.0,25.0,153.0,431.0,7.0,31.0,0.0,39.0,1721.0,0.0,0.0,0.0,41.0,0.0,0.0,0.0,0.0,0.0,610.0,0.0,0.0,0.0,0.0,0.0,453.0,53.0,0.0,0.0,22.0,1.0,391.0,0.0,0.0,52.0,0.0,0.0,67.0,2190.0,0.0,0.0,35.0,37.0,341.0,0.0,0.0,2.0,0.0,0.0,330.0,0.0,45.0,0.0,0.0,547.0,112.0,0.0,0.0,1249.0,0.0,0.0,0.0,0.0,503.0,2142.0,647.0,523.0,0.0,0.0,82.0,28.0,57.0,0.0,0.0,0.0,134.0,0.0,0.0,0.0,0.0,0.0,15.0,297.0,363.0,31.0,0.0,0.0,0.0,0.0,107.0,0.0,0.0,0.0,0.0,1.0,114.0,0.0,0.0,0.0,0.0,239.0,898.0,0.0,144.0,0.0,0.0,31.0,0.0,46.0,4422809.0,0.0,40.0,0.0,60.0,0.0,464.0,51.0,0.0,0.0,244.0,0.0,0.0,0.0,38.0,0.0,55.0,122.0,0.0,0.0,36.0,522.0,425.0,150.0,53.0,1687.0,260.0,0.0,436.0,352.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,22.0,0.0,153.0,0.0,1.0,1.0,0.0,8.0,0.0,1.0,0.0,384.0,417.0,0.0,0.0,0.0,15.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,46.0,11.0,0.0,0.0,441.0,0.0,0.0,341.0,220.0,16.0,0.0,1.0,0.0,289.0,0.0,0.0,0.0,0.0,0.0,0.0,68.0,0.0,0.0,13.0,652.0,0.0,236.0,0.0,119.0,84.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,476.0,564.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1615.0,2015.0,0.0,0.0,0.0,32.0,187.0,0.0,856.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,488.0,48.0,0.0,0.0,0.0,2008-03-30,,2008-13,2.0219971840869126,2.594, +23,23,1.34,54.0,0.0,32.0,0.0,188.0,0.0,50.0,79.0,0.0,225.0,0.0,0.0,0.0,0.0,1027.0,11.0,24.0,27.0,0.0,0.0,0.0,0.0,67.0,0.0,673.0,0.0,43.0,0.0,0.0,0.0,0.0,8.0,855.0,202.0,212.0,0.0,72.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,91.0,78.0,1.0,388.0,13.0,46.0,0.0,605.0,0.0,0.0,0.0,171.0,134.0,23.0,82.0,0.0,320.0,91.0,95.0,212.0,14.0,0.0,9.0,85.0,166.0,0.0,0.0,257.0,165.0,483.0,0.0,0.0,0.0,713.0,0.0,20.0,0.0,16.0,18.0,0.0,0.0,634.0,375.0,0.0,0.0,22.0,42.0,0.0,111.0,289.0,382.0,0.0,649.0,74.0,0.0,0.0,0.0,0.0,818.0,2064.0,5.0,0.0,0.0,35.0,34.0,223.0,459.0,12.0,39.0,1.0,18.0,1733.0,0.0,0.0,0.0,38.0,0.0,0.0,0.0,0.0,0.0,635.0,0.0,0.0,0.0,0.0,0.0,485.0,45.0,0.0,0.0,26.0,1.0,450.0,0.0,0.0,53.0,0.0,0.0,87.0,2243.0,0.0,0.0,43.0,32.0,384.0,0.0,0.0,2.0,0.0,0.0,268.0,1.0,45.0,0.0,0.0,636.0,96.0,0.0,0.0,1224.0,0.0,0.0,0.0,0.0,650.0,1429.0,1374.0,558.0,0.0,0.0,64.0,26.0,47.0,0.0,0.0,0.0,183.0,0.0,0.0,0.0,0.0,0.0,9.0,276.0,435.0,39.0,0.0,0.0,0.0,0.0,142.0,0.0,0.0,0.0,0.0,0.0,129.0,0.0,0.0,0.0,0.0,296.0,1032.0,0.0,111.0,0.0,0.0,51.0,0.0,53.0,4635743.0,0.0,51.0,0.0,61.0,0.0,522.0,51.0,0.0,0.0,256.0,0.0,0.0,0.0,43.0,0.0,47.0,123.0,0.0,0.0,44.0,650.0,402.0,138.0,69.0,1309.0,416.0,2.0,453.0,368.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,42.0,1.0,161.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,0.0,397.0,332.0,0.0,0.0,0.0,9.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,57.0,8.0,0.0,0.0,715.0,0.0,0.0,361.0,258.0,18.0,0.0,0.0,0.0,312.0,0.0,0.0,0.0,0.0,0.0,0.0,103.0,0.0,0.0,16.0,741.0,0.0,272.0,0.0,170.0,107.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,518.0,741.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1509.0,2424.0,0.0,0.0,0.0,28.0,139.0,0.0,1055.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,653.0,58.0,0.0,0.0,0.0,2008-04-06,,2008-14,1.3451411508728572,2.418, +24,24,0.97,75.0,0.0,31.0,0.0,161.0,0.0,54.0,51.0,0.0,266.0,0.0,0.0,0.0,0.0,1068.0,17.0,26.0,24.0,0.0,0.0,0.0,0.0,82.0,0.0,762.0,0.0,37.0,0.0,0.0,0.0,0.0,4.0,916.0,150.0,188.0,0.0,74.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,109.0,76.0,0.0,392.0,3.0,41.0,0.0,620.0,0.0,0.0,0.0,198.0,189.0,22.0,77.0,0.0,424.0,68.0,106.0,225.0,27.0,0.0,11.0,82.0,147.0,0.0,0.0,281.0,155.0,577.0,0.0,0.0,0.0,731.0,0.0,21.0,0.0,27.0,27.0,0.0,0.0,116.0,387.0,1.0,0.0,18.0,35.0,0.0,137.0,255.0,371.0,0.0,679.0,78.0,0.0,0.0,0.0,0.0,1020.0,1944.0,18.0,0.0,0.0,25.0,42.0,228.0,504.0,13.0,42.0,0.0,43.0,1653.0,0.0,0.0,0.0,31.0,0.0,0.0,0.0,0.0,0.0,560.0,0.0,0.0,0.0,0.0,0.0,434.0,49.0,0.0,0.0,37.0,0.0,502.0,0.0,0.0,51.0,0.0,0.0,86.0,2675.0,0.0,0.0,25.0,28.0,303.0,0.0,0.0,0.0,0.0,0.0,213.0,0.0,65.0,0.0,0.0,518.0,151.0,0.0,0.0,1364.0,0.0,0.0,0.0,0.0,607.0,899.0,1674.0,611.0,0.0,0.0,92.0,33.0,36.0,0.0,0.0,0.0,134.0,0.0,0.0,0.0,0.0,0.0,14.0,299.0,456.0,43.0,0.0,0.0,0.0,0.0,72.0,0.0,0.0,0.0,0.0,0.0,136.0,0.0,0.0,0.0,0.0,306.0,884.0,0.0,134.0,0.0,0.0,60.0,0.0,41.0,4622375.0,0.0,45.0,0.0,62.0,0.0,493.0,44.0,0.0,0.0,284.0,0.0,0.0,0.0,45.0,0.0,61.0,137.0,0.0,0.0,56.0,706.0,441.0,172.0,82.0,1385.0,329.0,9.0,440.0,347.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.0,0.0,137.0,0.0,0.0,0.0,0.0,10.0,0.0,0.0,0.0,411.0,349.0,0.0,0.0,0.0,13.0,6.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,52.0,8.0,0.0,0.0,730.0,0.0,0.0,381.0,235.0,11.0,0.0,0.0,0.0,307.0,0.0,0.0,0.0,0.0,0.0,0.0,97.0,0.0,0.0,25.0,783.0,0.0,218.0,0.0,141.0,99.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,682.0,763.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1716.0,2632.0,0.0,0.0,0.0,25.0,129.0,0.0,941.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,635.0,57.0,0.0,0.0,0.0,2008-04-13,,2008-15,0.9615045988706141,2.4120000000000004, +25,25,0.68,74.0,0.0,39.0,0.0,174.0,0.0,57.0,55.0,0.0,224.0,0.0,0.0,1.0,0.0,1043.0,18.0,26.0,26.0,0.0,0.0,0.0,0.0,70.0,0.0,630.0,0.0,54.0,0.0,1.0,0.0,0.0,4.0,1041.0,124.0,201.0,1.0,76.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,126.0,84.0,0.0,340.0,10.0,29.0,0.0,576.0,0.0,0.0,0.0,214.0,187.0,34.0,69.0,0.0,424.0,90.0,92.0,239.0,24.0,0.0,8.0,78.0,149.0,1.0,0.0,326.0,203.0,503.0,0.0,0.0,0.0,676.0,1.0,25.0,0.0,24.0,29.0,1.0,0.0,144.0,476.0,1.0,0.0,21.0,90.0,0.0,136.0,254.0,386.0,0.0,576.0,86.0,0.0,0.0,0.0,0.0,906.0,1740.0,9.0,0.0,0.0,41.0,48.0,233.0,535.0,19.0,34.0,0.0,50.0,1710.0,0.0,0.0,0.0,35.0,0.0,0.0,0.0,0.0,0.0,543.0,0.0,0.0,0.0,0.0,0.0,496.0,37.0,0.0,0.0,40.0,1.0,461.0,0.0,0.0,59.0,0.0,0.0,75.0,2736.0,0.0,0.0,43.0,19.0,374.0,0.0,0.0,0.0,0.0,0.0,275.0,0.0,55.0,0.0,0.0,544.0,134.0,0.0,0.0,1430.0,0.0,0.0,0.0,0.0,671.0,878.0,850.0,568.0,0.0,0.0,53.0,40.0,39.0,0.0,0.0,0.0,158.0,0.0,0.0,0.0,0.0,0.0,10.0,352.0,424.0,45.0,0.0,0.0,0.0,0.0,81.0,0.0,0.0,0.0,0.0,1.0,105.0,0.0,0.0,0.0,0.0,308.0,914.0,0.0,129.0,0.0,0.0,31.0,0.0,58.0,4757082.0,1.0,50.0,0.0,62.0,0.0,567.0,64.0,0.0,0.0,311.0,0.0,0.0,0.0,60.0,0.0,67.0,140.0,0.0,0.0,51.0,651.0,467.0,189.0,82.0,1484.0,761.0,1.0,438.0,360.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.0,0.0,128.0,0.0,1.0,1.0,0.0,8.0,0.0,6.0,0.0,397.0,388.0,0.0,0.0,0.0,17.0,9.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,62.0,10.0,0.0,0.0,697.0,0.0,0.0,329.0,274.0,26.0,0.0,0.0,0.0,363.0,0.0,0.0,0.0,0.0,0.0,0.0,80.0,0.0,0.0,17.0,807.0,0.0,239.0,0.0,133.0,153.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,738.0,739.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1837.0,2843.0,0.0,0.0,0.0,25.0,72.0,0.0,852.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,577.0,60.0,0.0,0.0,0.0,2008-04-20,,2008-16,0.746390068671813,1.0319999999999998, +26,26,0.28,66.0,0.0,64.0,0.0,196.0,0.0,74.0,86.0,0.0,238.0,0.0,0.0,16.0,0.0,976.0,17.0,43.0,34.0,0.0,0.0,0.0,0.0,72.0,0.0,701.0,0.0,2.0,0.0,50.0,0.0,0.0,18.0,998.0,147.0,272.0,1.0,130.0,0.0,15.0,39.0,0.0,0.0,0.0,0.0,109.0,59.0,1.0,393.0,14.0,42.0,0.0,1424.0,93.0,45.0,109.0,325.0,405.0,50.0,72.0,0.0,289.0,69.0,97.0,222.0,32.0,0.0,14.0,65.0,273.0,2.0,0.0,468.0,195.0,539.0,0.0,0.0,0.0,807.0,12.0,30.0,0.0,31.0,30.0,1.0,0.0,142.0,290.0,2.0,0.0,28.0,51.0,0.0,864.0,924.0,3200.0,297.0,408.0,101.0,0.0,0.0,0.0,0.0,618.0,903.0,17.0,0.0,0.0,50.0,32.0,153.0,454.0,27.0,37.0,106.0,85.0,2557.0,0.0,0.0,31.0,49.0,0.0,0.0,21.0,0.0,0.0,569.0,0.0,107.0,0.0,18.0,0.0,360.0,68.0,0.0,0.0,39.0,58.0,419.0,40.0,1.0,96.0,0.0,0.0,91.0,2908.0,0.0,0.0,51.0,37.0,501.0,0.0,0.0,1.0,0.0,2.0,279.0,31.0,155.0,0.0,0.0,541.0,223.0,56.0,0.0,1479.0,0.0,0.0,0.0,0.0,758.0,1060.0,876.0,721.0,0.0,0.0,167.0,30.0,37.0,52.0,0.0,85.0,248.0,0.0,0.0,0.0,0.0,0.0,26.0,300.0,391.0,74.0,0.0,0.0,0.0,0.0,263.0,34.0,0.0,0.0,1.0,2.0,155.0,0.0,104.0,0.0,0.0,383.0,916.0,0.0,153.0,17.0,0.0,28.0,0.0,72.0,5693498.0,51.0,69.0,0.0,34.0,0.0,504.0,68.0,0.0,0.0,316.0,0.0,0.0,0.0,59.0,0.0,79.0,206.0,0.0,0.0,60.0,691.0,687.0,223.0,101.0,1714.0,207.0,2.0,885.0,875.0,0.0,27.0,47.0,0.0,35.0,0.0,22.0,23.0,216.0,209.0,0.0,89.0,1.0,0.0,6.0,0.0,210.0,40.0,391.0,400.0,0.0,0.0,0.0,63.0,19.0,0.0,0.0,0.0,217.0,0.0,0.0,0.0,0.0,38.0,0.0,0.0,0.0,0.0,10.0,0.0,0.0,34.0,22.0,0.0,66.0,49.0,0.0,0.0,971.0,0.0,0.0,407.0,243.0,25.0,0.0,44.0,0.0,329.0,0.0,0.0,0.0,0.0,0.0,0.0,86.0,0.0,0.0,15.0,742.0,0.0,227.0,0.0,124.0,121.0,0.0,0.0,0.0,0.0,126.0,0.0,0.0,0.0,0.0,632.0,773.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2683.0,133.0,0.0,0.0,0.0,19.0,731.0,59.0,4230.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,812.0,74.0,44.0,0.0,0.0,2008-10-26,,2008-43,0.29895277887702054,0.426, +27,27,0.27,47.0,0.0,58.0,0.0,226.0,0.0,49.0,45.0,0.0,222.0,0.0,0.0,28.0,0.0,831.0,25.0,31.0,30.0,0.0,0.0,0.0,0.0,64.0,0.0,579.0,0.0,3.0,0.0,41.0,0.0,0.0,19.0,731.0,157.0,177.0,1.0,95.0,0.0,13.0,24.0,0.0,0.0,0.0,0.0,88.0,40.0,0.0,272.0,13.0,17.0,0.0,1075.0,88.0,31.0,98.0,275.0,343.0,23.0,46.0,0.0,237.0,47.0,63.0,175.0,20.0,0.0,15.0,84.0,248.0,4.0,0.0,381.0,163.0,414.0,0.0,0.0,0.0,704.0,8.0,19.0,0.0,17.0,15.0,1.0,0.0,107.0,316.0,3.0,0.0,24.0,38.0,0.0,732.0,782.0,2191.0,241.0,301.0,62.0,0.0,0.0,0.0,0.0,613.0,696.0,4.0,0.0,0.0,40.0,50.0,135.0,330.0,16.0,37.0,127.0,48.0,2043.0,0.0,0.0,27.0,42.0,0.0,0.0,12.0,0.0,0.0,411.0,0.0,84.0,0.0,18.0,0.0,261.0,43.0,0.0,0.0,25.0,44.0,298.0,15.0,10.0,75.0,0.0,0.0,84.0,2475.0,0.0,0.0,40.0,28.0,413.0,0.0,0.0,0.0,0.0,1.0,240.0,38.0,54.0,0.0,0.0,517.0,182.0,51.0,0.0,1219.0,0.0,0.0,0.0,0.0,653.0,737.0,574.0,663.0,0.0,0.0,171.0,22.0,32.0,60.0,0.0,55.0,192.0,0.0,0.0,0.0,0.0,0.0,23.0,272.0,289.0,64.0,0.0,0.0,0.0,0.0,203.0,47.0,0.0,0.0,1.0,4.0,155.0,0.0,81.0,0.0,0.0,324.0,815.0,1.0,169.0,19.0,0.0,15.0,0.0,50.0,4764719.0,50.0,35.0,0.0,41.0,0.0,358.0,37.0,0.0,0.0,200.0,0.0,0.0,0.0,56.0,0.0,98.0,174.0,0.0,0.0,36.0,692.0,594.0,181.0,86.0,1285.0,241.0,0.0,499.0,453.0,0.0,35.0,58.0,0.0,43.0,0.0,23.0,13.0,176.0,163.0,0.0,81.0,1.0,0.0,7.0,0.0,172.0,28.0,322.0,400.0,0.0,0.0,0.0,28.0,18.0,0.0,0.0,0.0,137.0,0.0,0.0,0.0,0.0,31.0,0.0,0.0,0.0,0.0,15.0,0.0,0.0,20.0,12.0,0.0,49.0,69.0,0.0,0.0,722.0,0.0,0.0,379.0,154.0,20.0,0.0,26.0,0.0,301.0,0.0,0.0,0.0,0.0,0.0,0.0,66.0,0.0,0.0,5.0,575.0,0.0,180.0,0.0,72.0,76.0,0.0,0.0,0.0,0.0,75.0,0.0,0.0,0.0,0.0,483.0,706.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2013.0,314.0,0.0,0.0,0.0,13.0,356.0,31.0,642.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,704.0,42.0,42.0,0.0,0.0,2008-11-02,,2008-44,0.27265532644691604,0.5539999999999999, +28,28,0.32,64.0,0.0,45.0,0.0,207.0,0.0,81.0,76.0,0.0,287.0,0.0,0.0,25.0,0.0,983.0,16.0,35.0,27.0,0.0,0.0,0.0,0.0,84.0,0.0,688.0,0.0,4.0,0.0,46.0,0.0,0.0,17.0,981.0,117.0,243.0,0.0,151.0,0.0,9.0,52.0,0.0,0.0,0.0,0.0,99.0,46.0,0.0,390.0,7.0,40.0,0.0,1277.0,94.0,45.0,94.0,291.0,499.0,35.0,52.0,0.0,293.0,68.0,101.0,237.0,19.0,0.0,20.0,77.0,247.0,0.0,0.0,490.0,214.0,517.0,0.0,0.0,0.0,799.0,18.0,24.0,0.0,23.0,26.0,0.0,0.0,117.0,362.0,0.0,0.0,22.0,51.0,0.0,919.0,919.0,3004.0,283.0,433.0,75.0,0.0,0.0,0.0,0.0,634.0,652.0,6.0,0.0,0.0,37.0,29.0,175.0,404.0,38.0,40.0,83.0,87.0,2276.0,0.0,0.0,37.0,57.0,0.0,0.0,16.0,0.0,0.0,531.0,0.0,102.0,0.0,7.0,0.0,320.0,59.0,0.0,0.0,27.0,58.0,383.0,16.0,11.0,99.0,0.0,0.0,83.0,2549.0,0.0,0.0,52.0,26.0,431.0,0.0,0.0,0.0,0.0,0.0,299.0,54.0,92.0,0.0,0.0,500.0,235.0,48.0,0.0,1564.0,0.0,0.0,0.0,0.0,750.0,872.0,726.0,777.0,0.0,0.0,152.0,28.0,26.0,53.0,0.0,65.0,263.0,0.0,0.0,0.0,0.0,0.0,36.0,317.0,421.0,116.0,0.0,0.0,0.0,0.0,253.0,26.0,0.0,0.0,1.0,0.0,126.0,0.0,95.0,0.0,0.0,409.0,868.0,0.0,228.0,12.0,0.0,28.0,0.0,66.0,5716357.0,48.0,71.0,0.0,44.0,0.0,493.0,60.0,0.0,0.0,293.0,0.0,0.0,0.0,54.0,0.0,79.0,214.0,0.0,0.0,50.0,789.0,759.0,228.0,115.0,1877.0,187.0,0.0,558.0,534.0,0.0,38.0,59.0,0.0,37.0,0.0,16.0,12.0,213.0,191.0,0.0,112.0,1.0,0.0,6.0,0.0,182.0,48.0,387.0,477.0,0.0,0.0,0.0,44.0,14.0,0.0,0.0,0.0,172.0,0.0,0.0,1.0,0.0,42.0,0.0,0.0,0.0,0.0,9.0,0.0,0.0,24.0,9.0,0.0,57.0,40.0,0.0,0.0,2931.0,0.0,0.0,388.0,206.0,24.0,0.0,21.0,0.0,387.0,0.0,0.0,0.0,0.0,0.0,0.0,107.0,0.0,0.0,16.0,771.0,0.0,347.0,0.0,108.0,111.0,0.0,0.0,0.0,0.0,87.0,0.0,0.0,0.0,0.0,625.0,805.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2127.0,2305.0,0.0,0.0,0.0,14.0,1128.0,52.0,2141.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,806.0,51.0,44.0,0.0,0.0,2008-11-09,,2008-45,0.28112697734034064,0.3520000000000001, +29,29,0.43,73.0,0.0,73.0,0.0,197.0,0.0,71.0,28.0,0.0,312.0,0.0,0.0,29.0,0.0,1017.0,34.0,46.0,27.0,0.0,0.0,0.0,0.0,84.0,0.0,627.0,0.0,5.0,0.0,41.0,0.0,0.0,19.0,1094.0,169.0,247.0,1.0,140.0,0.0,9.0,58.0,0.0,0.0,0.0,0.0,104.0,48.0,2.0,410.0,9.0,27.0,0.0,1413.0,99.0,41.0,115.0,296.0,474.0,22.0,62.0,0.0,304.0,72.0,80.0,265.0,27.0,0.0,15.0,63.0,298.0,0.0,0.0,490.0,245.0,582.0,0.0,0.0,0.0,865.0,11.0,21.0,0.0,19.0,27.0,2.0,0.0,150.0,393.0,0.0,0.0,30.0,65.0,0.0,1669.0,873.0,4122.0,237.0,477.0,90.0,0.0,0.0,0.0,0.0,732.0,824.0,5.0,0.0,0.0,42.0,61.0,172.0,401.0,23.0,39.0,103.0,100.0,2346.0,0.0,0.0,44.0,57.0,1.0,0.0,12.0,0.0,0.0,548.0,0.0,102.0,0.0,19.0,0.0,319.0,52.0,0.0,0.0,48.0,46.0,400.0,28.0,23.0,101.0,0.0,0.0,83.0,2957.0,0.0,0.0,53.0,37.0,518.0,0.0,0.0,0.0,0.0,0.0,202.0,48.0,100.0,0.0,8.0,621.0,207.0,44.0,0.0,1434.0,0.0,0.0,0.0,0.0,828.0,824.0,731.0,864.0,0.0,0.0,190.0,25.0,33.0,65.0,0.0,82.0,252.0,0.0,0.0,0.0,0.0,0.0,29.0,270.0,364.0,121.0,0.0,0.0,0.0,0.0,229.0,42.0,0.0,0.0,0.0,2.0,130.0,0.0,142.0,0.0,0.0,379.0,919.0,0.0,197.0,14.0,0.0,15.0,0.0,72.0,5630810.0,60.0,70.0,0.0,49.0,0.0,533.0,75.0,0.0,0.0,282.0,0.0,0.0,0.0,78.0,0.0,113.0,167.0,0.0,0.0,56.0,808.0,733.0,245.0,111.0,1536.0,205.0,9.0,501.0,446.0,0.0,18.0,50.0,0.0,29.0,0.0,20.0,14.0,278.0,210.0,0.0,104.0,3.0,0.0,12.0,0.0,200.0,41.0,401.0,490.0,0.0,0.0,0.0,28.0,16.0,0.0,0.0,0.0,221.0,0.0,0.0,0.0,0.0,40.0,0.0,0.0,0.0,0.0,11.0,0.0,0.0,25.0,12.0,0.0,64.0,17.0,0.0,0.0,1229.0,0.0,0.0,460.0,202.0,21.0,0.0,15.0,0.0,455.0,0.0,0.0,0.0,0.0,0.0,0.0,105.0,0.0,0.0,18.0,791.0,0.0,245.0,0.0,152.0,122.0,0.0,0.0,29.0,0.0,104.0,0.0,0.0,0.0,0.0,761.0,924.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2031.0,2194.0,0.0,0.0,0.0,13.0,505.0,65.0,8332.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,847.0,60.0,42.0,0.0,0.0,2008-11-16,,2008-46,0.4880963482176881,0.4960000000000001, +30,30,0.48,83.0,0.0,64.0,0.0,213.0,0.0,57.0,112.0,0.0,375.0,0.0,0.0,33.0,0.0,977.0,16.0,32.0,33.0,0.0,0.0,0.0,0.0,85.0,0.0,616.0,0.0,3.0,0.0,51.0,0.0,0.0,19.0,1076.0,167.0,285.0,0.0,128.0,0.0,13.0,38.0,0.0,0.0,0.0,0.0,112.0,51.0,0.0,454.0,15.0,24.0,0.0,1385.0,83.0,30.0,87.0,302.0,472.0,25.0,94.0,0.0,317.0,67.0,115.0,190.0,26.0,0.0,15.0,107.0,291.0,3.0,0.0,496.0,270.0,575.0,0.0,0.0,0.0,778.0,20.0,19.0,0.0,20.0,22.0,0.0,0.0,144.0,401.0,2.0,0.0,9.0,62.0,0.0,1207.0,1110.0,2917.0,213.0,535.0,89.0,0.0,0.0,0.0,0.0,731.0,678.0,8.0,0.0,0.0,52.0,43.0,168.0,469.0,24.0,46.0,102.0,74.0,2498.0,0.0,0.0,25.0,61.0,0.0,0.0,17.0,0.0,0.0,559.0,0.0,115.0,0.0,17.0,0.0,360.0,33.0,0.0,0.0,33.0,47.0,358.0,27.0,13.0,96.0,0.0,0.0,90.0,3113.0,0.0,0.0,49.0,38.0,542.0,0.0,0.0,0.0,0.0,2.0,143.0,54.0,79.0,0.0,10.0,671.0,180.0,37.0,0.0,1565.0,0.0,0.0,0.0,0.0,811.0,1026.0,704.0,615.0,0.0,0.0,173.0,43.0,49.0,47.0,0.0,92.0,272.0,0.0,0.0,0.0,0.0,0.0,23.0,350.0,394.0,68.0,0.0,0.0,0.0,0.0,245.0,38.0,0.0,0.0,2.0,2.0,159.0,0.0,97.0,0.0,0.0,375.0,853.0,0.0,193.0,11.0,0.0,22.0,0.0,73.0,5642770.0,43.0,70.0,0.0,40.0,0.0,454.0,54.0,0.0,0.0,305.0,0.0,0.0,0.0,58.0,0.0,76.0,181.0,0.0,0.0,62.0,803.0,801.0,240.0,147.0,1507.0,356.0,13.0,544.0,463.0,0.0,21.0,42.0,0.0,63.0,0.0,21.0,23.0,289.0,208.0,0.0,104.0,0.0,0.0,8.0,0.0,224.0,42.0,363.0,475.0,0.0,0.0,0.0,43.0,19.0,0.0,0.0,0.0,201.0,0.0,0.0,0.0,0.0,37.0,0.0,0.0,0.0,0.0,6.0,0.0,0.0,26.0,16.0,0.0,54.0,18.0,0.0,0.0,1147.0,0.0,0.0,455.0,202.0,26.0,0.0,19.0,0.0,387.0,0.0,0.0,0.0,0.0,0.0,0.0,89.0,0.0,0.0,20.0,764.0,0.0,239.0,0.0,144.0,102.0,0.0,0.0,20.0,0.0,81.0,0.0,0.0,0.0,0.0,735.0,1032.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2044.0,1410.0,0.0,0.0,0.0,15.0,308.0,44.0,9585.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,869.0,67.0,27.0,0.0,0.0,2008-11-23,,2008-47,0.41793965407811307,0.41600000000000004, +31,31,0.62,109.0,0.0,65.0,0.0,159.0,0.0,58.0,86.0,0.0,407.0,0.0,0.0,16.0,0.0,959.0,15.0,55.0,33.0,0.0,0.0,0.0,0.0,78.0,0.0,681.0,0.0,2.0,0.0,47.0,0.0,0.0,7.0,1311.0,128.0,275.0,0.0,117.0,0.0,8.0,46.0,0.0,0.0,0.0,0.0,142.0,58.0,0.0,1268.0,12.0,21.0,0.0,1648.0,108.0,46.0,87.0,320.0,452.0,34.0,63.0,0.0,357.0,70.0,95.0,209.0,21.0,0.0,10.0,87.0,272.0,2.0,0.0,431.0,225.0,612.0,0.0,0.0,0.0,800.0,15.0,20.0,0.0,13.0,27.0,0.0,0.0,122.0,386.0,2.0,0.0,3.0,54.0,0.0,1482.0,942.0,3004.0,265.0,447.0,81.0,0.0,0.0,0.0,0.0,732.0,646.0,5.0,0.0,0.0,31.0,54.0,251.0,552.0,21.0,37.0,111.0,74.0,2699.0,0.0,0.0,41.0,56.0,0.0,0.0,14.0,0.0,0.0,524.0,0.0,94.0,0.0,9.0,0.0,291.0,41.0,0.0,0.0,43.0,44.0,348.0,21.0,20.0,102.0,0.0,0.0,98.0,3006.0,0.0,0.0,57.0,32.0,790.0,0.0,0.0,1.0,0.0,1.0,244.0,43.0,83.0,0.0,9.0,776.0,217.0,54.0,0.0,1510.0,0.0,0.0,0.0,0.0,818.0,997.0,741.0,776.0,0.0,0.0,161.0,29.0,29.0,60.0,0.0,74.0,254.0,0.0,0.0,0.0,0.0,0.0,37.0,285.0,456.0,103.0,0.0,0.0,0.0,0.0,225.0,42.0,0.0,0.0,0.0,1.0,180.0,0.0,83.0,0.0,0.0,331.0,897.0,0.0,185.0,12.0,0.0,18.0,0.0,74.0,5797458.0,53.0,62.0,0.0,50.0,0.0,515.0,70.0,0.0,0.0,277.0,0.0,0.0,0.0,69.0,0.0,64.0,205.0,0.0,0.0,52.0,740.0,668.0,232.0,146.0,1561.0,331.0,25.0,734.0,631.0,0.0,21.0,50.0,0.0,37.0,0.0,13.0,13.0,241.0,195.0,0.0,95.0,0.0,0.0,6.0,0.0,180.0,42.0,346.0,434.0,0.0,0.0,0.0,28.0,16.0,0.0,0.0,0.0,232.0,0.0,0.0,0.0,0.0,19.0,0.0,0.0,0.0,0.0,20.0,0.0,0.0,33.0,11.0,0.0,54.0,7.0,0.0,0.0,1293.0,0.0,0.0,448.0,178.0,31.0,0.0,12.0,0.0,423.0,0.0,0.0,0.0,0.0,0.0,0.0,100.0,0.0,0.0,22.0,794.0,0.0,248.0,0.0,126.0,108.0,0.0,0.0,25.0,0.0,27.0,0.0,0.0,0.0,0.0,898.0,1223.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2263.0,3150.0,0.0,0.0,0.0,24.0,309.0,42.0,9801.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,839.0,72.0,36.0,0.0,0.0,2008-11-30,,2008-48,0.5587133049866502,0.6200000000000001, +32,32,0.76,119.0,0.0,60.0,0.0,192.0,0.0,106.0,66.0,0.0,425.0,0.0,0.0,32.0,0.0,830.0,15.0,51.0,31.0,0.0,0.0,0.0,0.0,72.0,0.0,729.0,0.0,2.0,0.0,50.0,0.0,0.0,25.0,1159.0,130.0,309.0,1.0,156.0,0.0,10.0,40.0,0.0,0.0,0.0,0.0,139.0,60.0,1.0,735.0,17.0,34.0,0.0,1387.0,100.0,36.0,136.0,311.0,485.0,29.0,44.0,0.0,347.0,61.0,94.0,219.0,25.0,0.0,16.0,77.0,249.0,0.0,0.0,493.0,195.0,538.0,0.0,0.0,0.0,764.0,16.0,21.0,0.0,11.0,31.0,1.0,0.0,126.0,348.0,0.0,0.0,3.0,88.0,0.0,1989.0,1016.0,1378.0,282.0,534.0,96.0,0.0,0.0,0.0,0.0,1061.0,910.0,7.0,0.0,0.0,52.0,69.0,246.0,460.0,22.0,62.0,104.0,93.0,2759.0,0.0,0.0,27.0,51.0,0.0,0.0,19.0,0.0,0.0,580.0,0.0,85.0,0.0,15.0,0.0,302.0,53.0,0.0,0.0,49.0,41.0,342.0,16.0,26.0,85.0,0.0,0.0,93.0,3071.0,0.0,0.0,53.0,31.0,940.0,0.0,0.0,0.0,0.0,1.0,274.0,52.0,86.0,0.0,7.0,813.0,289.0,55.0,0.0,1407.0,0.0,0.0,0.0,0.0,683.0,1071.0,731.0,699.0,0.0,0.0,147.0,31.0,42.0,58.0,0.0,76.0,278.0,0.0,0.0,0.0,0.0,0.0,34.0,311.0,397.0,121.0,0.0,0.0,0.0,0.0,230.0,43.0,1.0,0.0,0.0,1.0,107.0,0.0,77.0,0.0,0.0,366.0,824.0,0.0,220.0,14.0,0.0,23.0,0.0,99.0,5679374.0,55.0,78.0,0.0,37.0,0.0,463.0,71.0,0.0,0.0,271.0,0.0,0.0,0.0,67.0,0.0,79.0,149.0,0.0,0.0,53.0,645.0,656.0,215.0,114.0,1449.0,228.0,20.0,832.0,733.0,0.0,24.0,47.0,0.0,40.0,0.0,14.0,14.0,239.0,190.0,0.0,125.0,1.0,0.0,7.0,0.0,218.0,48.0,362.0,477.0,0.0,0.0,0.0,37.0,15.0,0.0,0.0,0.0,217.0,0.0,0.0,0.0,0.0,34.0,0.0,0.0,0.0,0.0,18.0,0.0,0.0,40.0,15.0,0.0,45.0,8.0,0.0,0.0,1351.0,0.0,0.0,464.0,206.0,28.0,0.0,12.0,0.0,428.0,0.0,0.0,0.0,0.0,0.0,0.0,89.0,0.0,0.0,12.0,739.0,0.0,264.0,0.0,72.0,102.0,0.0,0.0,31.0,0.0,13.0,0.0,0.0,0.0,0.0,851.0,1450.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2179.0,2404.0,0.0,0.0,0.0,25.0,284.0,53.0,4339.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,866.0,80.0,55.0,0.0,0.0,2008-12-07,,2008-49,0.8200023288364546,0.902, +33,33,0.89,91.0,0.0,53.0,0.0,190.0,0.0,93.0,44.0,0.0,282.0,0.0,0.0,24.0,0.0,982.0,28.0,56.0,26.0,0.0,0.0,0.0,0.0,64.0,0.0,721.0,0.0,0.0,0.0,57.0,0.0,0.0,19.0,1064.0,156.0,271.0,0.0,128.0,0.0,15.0,47.0,0.0,0.0,0.0,0.0,97.0,67.0,0.0,430.0,9.0,42.0,0.0,1497.0,93.0,42.0,117.0,380.0,539.0,27.0,86.0,0.0,308.0,110.0,145.0,223.0,21.0,0.0,13.0,63.0,243.0,1.0,0.0,472.0,217.0,577.0,0.0,0.0,0.0,894.0,21.0,13.0,0.0,18.0,22.0,0.0,0.0,123.0,308.0,0.0,0.0,3.0,81.0,0.0,1748.0,908.0,2277.0,223.0,512.0,81.0,0.0,0.0,0.0,0.0,1156.0,932.0,9.0,0.0,0.0,39.0,45.0,191.0,501.0,24.0,32.0,127.0,94.0,2691.0,0.0,0.0,36.0,34.0,0.0,0.0,13.0,0.0,0.0,554.0,0.0,78.0,0.0,17.0,0.0,390.0,46.0,0.0,0.0,41.0,49.0,400.0,19.0,18.0,92.0,0.0,0.0,111.0,3006.0,0.0,0.0,68.0,46.0,1020.0,0.0,0.0,0.0,0.0,34.0,355.0,37.0,87.0,0.0,6.0,1176.0,246.0,44.0,0.0,1494.0,0.0,0.0,0.0,0.0,714.0,974.0,639.0,798.0,0.0,0.0,109.0,31.0,53.0,57.0,0.0,81.0,246.0,0.0,0.0,0.0,0.0,0.0,33.0,304.0,450.0,89.0,0.0,0.0,0.0,0.0,183.0,23.0,0.0,0.0,0.0,0.0,123.0,0.0,84.0,0.0,0.0,349.0,860.0,0.0,175.0,15.0,0.0,11.0,0.0,92.0,5474661.0,51.0,66.0,0.0,51.0,0.0,460.0,71.0,0.0,0.0,337.0,0.0,0.0,0.0,69.0,0.0,130.0,174.0,0.0,0.0,57.0,657.0,627.0,194.0,135.0,1566.0,469.0,19.0,696.0,594.0,0.0,37.0,78.0,0.0,58.0,0.0,44.0,21.0,260.0,195.0,0.0,119.0,0.0,0.0,8.0,0.0,195.0,37.0,350.0,529.0,0.0,0.0,0.0,25.0,16.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,21.0,0.0,0.0,0.0,0.0,8.0,0.0,0.0,45.0,26.0,0.0,44.0,14.0,0.0,0.0,1226.0,0.0,0.0,503.0,204.0,29.0,0.0,10.0,0.0,414.0,0.0,0.0,0.0,0.0,0.0,0.0,118.0,0.0,0.0,11.0,868.0,0.0,273.0,0.0,113.0,89.0,0.0,0.0,18.0,0.0,7.0,0.0,0.0,0.0,0.0,847.0,1160.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2128.0,2232.0,0.0,0.0,0.0,14.0,205.0,53.0,8442.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,897.0,55.0,40.0,0.0,0.0,2008-12-14,,2008-50,0.8421992913540093,1.262, +34,34,1.15,103.0,0.0,47.0,0.0,177.0,0.0,89.0,67.0,0.0,273.0,0.0,0.0,21.0,0.0,888.0,19.0,48.0,30.0,0.0,0.0,0.0,0.0,55.0,0.0,802.0,0.0,3.0,0.0,45.0,0.0,0.0,10.0,996.0,271.0,270.0,0.0,108.0,0.0,13.0,44.0,0.0,0.0,0.0,0.0,100.0,57.0,0.0,509.0,18.0,30.0,0.0,1263.0,79.0,31.0,88.0,300.0,410.0,30.0,68.0,0.0,352.0,83.0,80.0,243.0,24.0,0.0,16.0,65.0,267.0,1.0,0.0,463.0,193.0,540.0,0.0,0.0,0.0,858.0,23.0,15.0,0.0,14.0,14.0,0.0,0.0,143.0,281.0,2.0,0.0,2.0,133.0,0.0,815.0,1793.0,3967.0,228.0,509.0,72.0,0.0,0.0,0.0,0.0,989.0,1144.0,6.0,0.0,0.0,55.0,63.0,228.0,492.0,18.0,43.0,122.0,48.0,2905.0,0.0,0.0,27.0,40.0,0.0,0.0,12.0,0.0,0.0,532.0,0.0,73.0,0.0,13.0,0.0,335.0,34.0,0.0,0.0,52.0,58.0,374.0,24.0,22.0,101.0,0.0,0.0,85.0,2765.0,0.0,0.0,71.0,38.0,1054.0,0.0,0.0,1.0,1.0,62.0,288.0,28.0,66.0,0.0,8.0,1096.0,219.0,44.0,0.0,1404.0,0.0,0.0,0.0,0.0,702.0,889.0,643.0,718.0,0.0,0.0,133.0,30.0,33.0,63.0,0.0,72.0,237.0,0.0,0.0,0.0,0.0,0.0,33.0,326.0,247.0,109.0,0.0,0.0,0.0,0.0,200.0,30.0,0.0,0.0,20.0,1.0,94.0,0.0,87.0,0.0,0.0,362.0,894.0,0.0,158.0,17.0,0.0,19.0,0.0,101.0,5285663.0,36.0,70.0,0.0,23.0,0.0,430.0,49.0,0.0,0.0,298.0,0.0,0.0,0.0,78.0,0.0,61.0,199.0,0.0,0.0,52.0,665.0,580.0,191.0,115.0,1594.0,523.0,32.0,729.0,633.0,0.0,24.0,46.0,0.0,42.0,0.0,12.0,15.0,220.0,199.0,0.0,148.0,0.0,0.0,4.0,0.0,188.0,33.0,350.0,466.0,0.0,0.0,0.0,33.0,22.0,0.0,0.0,0.0,282.0,0.0,0.0,0.0,0.0,27.0,0.0,0.0,0.0,0.0,15.0,0.0,0.0,48.0,24.0,0.0,42.0,10.0,0.0,0.0,1238.0,0.0,0.0,480.0,193.0,40.0,0.0,8.0,0.0,359.0,0.0,0.0,0.0,0.0,0.0,0.0,98.0,0.0,0.0,23.0,730.0,0.0,277.0,0.0,103.0,100.0,0.0,0.0,24.0,0.0,12.0,0.0,0.0,0.0,0.0,673.0,873.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1822.0,2227.0,0.0,0.0,0.0,16.0,147.0,64.0,6842.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,957.0,63.0,33.0,0.0,0.0,2008-12-21,,2008-51,1.21160732003423,1.272, +35,35,1.56,141.0,0.0,43.0,0.0,182.0,0.0,81.0,77.0,0.0,239.0,0.0,0.0,14.0,0.0,934.0,21.0,48.0,28.0,0.0,0.0,0.0,0.0,55.0,0.0,766.0,0.0,66.0,0.0,64.0,0.0,0.0,18.0,981.0,343.0,274.0,0.0,102.0,1.0,8.0,41.0,0.0,0.0,0.0,0.0,100.0,38.0,3.0,488.0,8.0,40.0,0.0,1059.0,83.0,29.0,94.0,280.0,486.0,20.0,117.0,0.0,283.0,67.0,90.0,182.0,24.0,0.0,14.0,86.0,273.0,1.0,0.0,546.0,190.0,598.0,0.0,0.0,0.0,760.0,23.0,21.0,0.0,17.0,22.0,2.0,0.0,125.0,299.0,0.0,0.0,11.0,151.0,0.0,771.0,829.0,4086.0,227.0,481.0,86.0,0.0,0.0,0.0,0.0,836.0,1060.0,12.0,0.0,0.0,41.0,30.0,206.0,471.0,25.0,41.0,117.0,64.0,3038.0,0.0,0.0,27.0,30.0,0.0,0.0,12.0,0.0,0.0,520.0,0.0,74.0,0.0,14.0,0.0,385.0,23.0,0.0,0.0,42.0,48.0,417.0,21.0,24.0,81.0,0.0,0.0,69.0,2686.0,0.0,0.0,63.0,31.0,842.0,0.0,0.0,0.0,0.0,65.0,295.0,39.0,74.0,0.0,8.0,677.0,228.0,33.0,0.0,1547.0,0.0,0.0,0.0,0.0,624.0,887.0,686.0,588.0,0.0,0.0,135.0,34.0,26.0,52.0,0.0,46.0,212.0,0.0,0.0,0.0,0.0,0.0,25.0,228.0,371.0,88.0,0.0,0.0,0.0,0.0,162.0,23.0,0.0,0.0,115.0,1.0,101.0,0.0,83.0,0.0,0.0,298.0,802.0,0.0,168.0,6.0,0.0,29.0,0.0,89.0,5010826.0,44.0,58.0,0.0,43.0,0.0,437.0,51.0,0.0,0.0,267.0,0.0,0.0,0.0,63.0,0.0,60.0,148.0,0.0,0.0,30.0,587.0,620.0,180.0,112.0,1553.0,201.0,27.0,735.0,624.0,0.0,37.0,34.0,0.0,35.0,0.0,23.0,10.0,247.0,192.0,0.0,128.0,0.0,0.0,3.0,0.0,247.0,42.0,310.0,440.0,0.0,0.0,0.0,26.0,16.0,0.0,0.0,0.0,202.0,0.0,0.0,0.0,0.0,35.0,0.0,0.0,0.0,0.0,10.0,0.0,0.0,39.0,9.0,0.0,55.0,12.0,0.0,0.0,976.0,0.0,0.0,536.0,146.0,22.0,0.0,15.0,29.0,373.0,0.0,0.0,0.0,0.0,0.0,0.0,102.0,0.0,0.0,14.0,714.0,0.0,256.0,0.0,103.0,81.0,0.0,0.0,28.0,0.0,3.0,0.0,0.0,0.0,0.0,592.0,766.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1800.0,1832.0,0.0,0.0,0.0,14.0,128.0,49.0,6942.0,0.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,851.0,61.0,44.0,0.0,0.0,2008-12-28,,2008-52,1.5688908210326948,1.268, +36,36,2.0,52.0,0.0,29.0,0.0,138.0,0.0,38.0,39.0,0.0,164.0,0.0,0.0,17.0,0.0,596.0,18.0,32.0,16.0,0.0,0.0,0.0,0.0,26.0,0.0,701.0,0.0,58.0,0.0,25.0,0.0,0.0,22.0,669.0,113.0,188.0,2.0,70.0,0.0,7.0,31.0,0.0,0.0,0.0,0.0,36.0,35.0,0.0,338.0,7.0,20.0,0.0,778.0,62.0,31.0,49.0,191.0,456.0,28.0,103.0,0.0,211.0,41.0,58.0,109.0,14.0,0.0,20.0,58.0,161.0,1.0,0.0,391.0,136.0,376.0,0.0,0.0,0.0,540.0,16.0,15.0,0.0,11.0,31.0,0.0,0.0,67.0,206.0,0.0,0.0,31.0,122.0,0.0,500.0,488.0,2937.0,133.0,303.0,50.0,0.0,0.0,0.0,0.0,534.0,750.0,9.0,0.0,0.0,21.0,25.0,90.0,355.0,24.0,35.0,101.0,66.0,2913.0,0.0,0.0,34.0,32.0,0.0,0.0,15.0,0.0,0.0,373.0,0.0,65.0,0.0,7.0,0.0,340.0,22.0,0.0,0.0,28.0,39.0,277.0,8.0,22.0,65.0,0.0,0.0,49.0,1396.0,0.0,0.0,39.0,26.0,719.0,0.0,0.0,1.0,0.0,64.0,152.0,39.0,20.0,0.0,12.0,601.0,170.0,37.0,0.0,1121.0,0.0,0.0,0.0,0.0,504.0,851.0,519.0,430.0,0.0,0.0,103.0,17.0,25.0,45.0,0.0,51.0,143.0,0.0,0.0,0.0,0.0,0.0,14.0,172.0,266.0,56.0,0.0,0.0,0.0,0.0,115.0,10.0,0.0,0.0,85.0,3.0,84.0,0.0,58.0,0.0,0.0,197.0,559.0,0.0,131.0,10.0,0.0,10.0,0.0,45.0,4479524.0,32.0,40.0,0.0,27.0,0.0,297.0,65.0,0.0,0.0,298.0,0.0,0.0,0.0,39.0,0.0,42.0,119.0,0.0,0.0,38.0,393.0,365.0,143.0,85.0,1210.0,77.0,26.0,696.0,642.0,0.0,16.0,30.0,0.0,28.0,0.0,9.0,11.0,173.0,138.0,0.0,101.0,3.0,0.0,3.0,0.0,184.0,48.0,216.0,300.0,0.0,0.0,0.0,28.0,15.0,0.0,0.0,0.0,175.0,0.0,0.0,0.0,0.0,21.0,0.0,0.0,0.0,0.0,8.0,0.0,0.0,34.0,16.0,0.0,41.0,3.0,0.0,0.0,793.0,0.0,0.0,438.0,108.0,11.0,0.0,11.0,4.0,234.0,0.0,0.0,0.0,0.0,0.0,0.0,74.0,0.0,0.0,13.0,550.0,0.0,165.0,0.0,63.0,59.0,0.0,0.0,20.0,0.0,6.0,0.0,0.0,0.0,0.0,287.0,338.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1168.0,1344.0,0.0,0.0,0.0,11.0,71.0,42.0,2638.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,877.0,40.0,56.0,0.0,0.0,2009-01-04,,2009-1,2.014843164890842,1.658, +37,37,3.18,43.0,0.0,31.0,0.0,126.0,0.0,23.0,25.0,0.0,137.0,0.0,0.0,8.0,0.0,418.0,7.0,24.0,16.0,0.0,0.0,0.0,0.0,23.0,0.0,664.0,0.0,57.0,0.0,22.0,0.0,0.0,8.0,434.0,68.0,139.0,0.0,59.0,0.0,6.0,19.0,0.0,0.0,0.0,0.0,56.0,27.0,0.0,216.0,6.0,11.0,0.0,480.0,43.0,18.0,43.0,141.0,276.0,10.0,113.0,0.0,167.0,31.0,24.0,60.0,6.0,0.0,4.0,44.0,143.0,1.0,0.0,222.0,83.0,292.0,0.0,0.0,0.0,405.0,9.0,9.0,0.0,4.0,10.0,1.0,0.0,58.0,159.0,1.0,0.0,25.0,82.0,0.0,323.0,351.0,1583.0,102.0,168.0,38.0,0.0,0.0,0.0,0.0,368.0,487.0,4.0,0.0,0.0,35.0,27.0,76.0,212.0,7.0,12.0,80.0,47.0,2056.0,0.0,0.0,22.0,20.0,0.0,0.0,12.0,0.0,0.0,250.0,0.0,26.0,0.0,3.0,0.0,191.0,26.4,0.0,0.0,20.0,23.0,187.0,6.0,23.4,42.0,0.0,0.0,39.0,1018.0,0.0,0.0,53.0,18.0,533.0,0.0,0.0,0.0,0.0,44.0,137.0,16.0,28.0,0.0,3.0,466.0,121.0,17.0,0.0,654.0,0.0,0.0,0.0,0.0,352.0,491.0,316.0,365.0,0.0,0.0,54.0,9.0,14.0,30.0,0.0,24.0,98.0,0.0,0.0,0.0,0.0,0.0,6.0,715.0,105.0,39.0,0.0,0.0,0.0,0.0,73.0,10.0,0.0,0.0,76.0,0.0,62.0,0.0,37.0,0.0,0.0,134.0,366.0,0.0,72.0,9.0,0.0,11.6,0.0,31.0,2812672.0,33.0,54.0,0.0,13.0,0.0,168.0,43.0,0.0,0.0,192.0,0.0,0.0,0.0,42.0,0.0,36.0,103.0,0.0,0.0,24.0,328.0,282.0,102.0,45.0,702.0,55.0,12.0,437.0,395.0,3.0,17.0,29.0,0.0,17.0,0.0,12.0,14.0,113.0,108.0,0.0,84.0,0.0,0.0,4.0,0.0,118.0,15.0,193.0,250.0,0.0,0.0,0.0,14.0,13.0,0.0,0.0,0.0,92.0,0.0,0.0,1.0,0.0,13.0,0.0,0.0,0.0,0.0,11.0,0.0,0.0,31.0,8.0,0.0,40.0,19.0,0.0,0.0,498.0,0.0,0.0,269.0,81.0,11.0,0.0,5.0,8.0,157.0,0.0,0.0,0.0,0.0,0.0,0.0,67.0,0.0,0.0,4.0,405.0,0.0,136.0,0.0,108.0,48.0,0.0,0.0,9.0,0.0,7.0,0.0,0.0,0.0,0.0,239.0,279.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1475.75,1442.0,0.0,0.0,0.0,8.0,24.0,25.0,2150.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,651.0,26.0,26.0,0.0,0.0,2009-01-11,,2009-2,3.139171578480361,2.8080000000000003, +38,38,4.4,115.0,0.0,64.0,0.0,209.0,0.0,116.0,55.0,0.0,327.0,0.0,0.0,21.0,0.0,984.0,20.0,47.0,36.0,0.0,0.0,0.0,0.0,67.0,0.0,1425.0,0.0,85.0,0.0,51.0,0.0,0.0,20.0,1069.0,132.0,391.0,0.0,125.0,0.0,23.0,51.0,0.0,0.0,0.0,0.0,131.0,53.0,1.0,658.0,15.0,40.0,0.0,1194.0,102.0,59.0,97.0,296.0,560.0,21.0,216.0,0.0,365.0,65.0,75.0,281.0,20.0,0.0,25.0,69.0,306.0,2.0,0.0,528.0,275.0,617.0,0.0,0.0,0.0,871.0,12.0,22.0,0.0,19.0,14.0,1.0,0.0,147.0,364.0,0.0,0.0,54.0,129.0,0.0,1459.0,815.0,4547.0,265.0,493.0,89.0,0.0,0.0,0.0,0.0,853.0,1192.0,6.0,0.0,0.0,49.0,67.0,241.0,531.0,15.0,38.0,129.0,120.0,4384.0,0.0,0.0,31.0,31.0,0.0,0.0,17.0,0.0,0.0,576.0,0.0,94.0,0.0,26.0,0.0,460.0,30.8,0.0,0.0,45.0,65.0,416.0,14.0,24.8,127.0,0.0,0.0,73.0,2537.0,0.0,0.0,75.0,33.0,865.0,0.0,0.0,0.0,0.0,62.0,325.0,56.0,90.0,0.0,9.0,1584.0,264.0,43.0,0.0,1719.0,0.0,0.0,0.0,0.0,778.0,1473.0,774.0,723.0,0.0,0.0,128.0,23.0,35.0,66.0,0.0,78.0,272.0,0.0,0.0,0.0,0.0,0.0,17.0,793.0,383.0,68.0,0.0,0.0,0.0,0.0,214.0,31.0,0.0,0.0,180.0,1.0,102.0,0.0,96.0,0.0,0.0,317.0,890.0,0.0,236.0,18.0,0.0,13.2,0.0,87.0,5808567.0,47.0,59.0,0.0,38.0,0.0,487.0,79.0,0.0,0.0,441.0,0.0,0.0,0.0,66.0,0.0,83.0,199.0,0.0,0.0,52.0,671.0,591.0,214.0,114.0,1783.0,141.0,42.0,969.0,845.0,6.0,29.0,67.0,0.0,66.0,0.0,33.0,17.0,282.0,223.0,0.0,128.0,0.0,0.0,4.0,0.0,224.0,35.0,470.0,517.0,0.0,0.0,0.0,38.0,15.0,0.0,0.0,0.0,233.0,0.0,0.0,0.0,0.0,40.0,0.0,0.0,0.0,0.0,10.0,0.0,0.0,59.0,19.0,0.0,67.0,22.0,0.0,0.0,1213.0,0.0,0.0,598.0,216.0,41.0,0.0,14.0,7.0,360.0,0.0,0.0,0.0,0.0,0.0,0.0,162.0,0.0,0.0,21.0,873.0,0.0,297.0,0.0,363.0,108.0,0.0,0.0,32.0,0.0,5.0,0.0,0.0,0.0,0.0,624.0,775.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1783.5,3228.0,0.0,0.0,0.0,16.0,109.0,55.0,1077.0,0.0,0.0,0.0,0.0,10.0,0.0,0.0,0.0,0.0,0.0,1125.0,55.0,51.0,0.0,0.0,2009-01-18,,2009-3,4.405839120047929,4.4, +39,39,6.28,158.0,0.0,97.0,0.0,189.0,0.0,69.0,27.0,0.0,319.0,0.0,0.0,40.0,0.0,1098.0,24.0,70.0,28.0,0.0,0.0,0.0,0.0,86.0,0.0,1284.0,0.0,105.0,0.0,28.0,0.0,0.0,16.0,1397.0,176.0,398.0,0.0,150.0,1.0,27.0,78.0,0.0,0.0,0.0,0.0,118.0,48.0,1.0,622.0,15.0,34.0,0.0,1381.0,99.0,33.0,125.0,334.0,522.0,34.0,197.0,0.0,389.0,119.0,137.0,368.0,21.0,0.0,30.0,87.0,319.0,0.0,0.0,648.0,281.0,700.0,0.0,0.0,0.0,1003.0,24.0,20.0,0.0,13.0,22.0,0.0,0.0,162.0,435.0,0.0,0.0,58.0,190.0,0.0,1042.0,1312.0,1639.0,301.0,555.0,94.0,0.0,0.0,0.0,0.0,964.0,1175.0,7.0,0.0,0.0,35.0,50.0,344.0,551.0,25.0,58.0,231.0,124.0,4574.0,0.0,0.0,60.0,43.0,0.0,0.0,19.0,0.0,0.0,766.0,0.0,122.0,0.0,11.0,0.0,371.0,35.2,0.0,0.0,58.0,72.0,495.0,22.0,26.2,171.0,0.0,0.0,92.0,3179.0,0.0,0.0,84.0,34.0,1465.0,0.0,0.0,0.0,0.0,96.0,329.0,59.0,103.0,0.0,16.0,1180.0,284.0,62.0,0.0,1967.0,0.0,0.0,0.0,0.0,833.0,2721.0,899.0,609.0,0.0,1.0,183.0,26.0,49.0,64.0,0.0,63.0,357.0,0.0,0.0,0.0,0.0,0.0,35.0,456.0,418.0,52.0,0.0,0.0,0.0,0.0,199.0,26.0,0.0,0.0,179.0,0.0,134.0,0.0,111.0,0.0,0.0,339.0,1048.0,0.0,282.0,31.0,0.0,14.8,0.0,85.0,6022091.0,56.0,87.0,0.0,44.0,0.0,584.0,80.0,0.0,0.0,425.0,0.0,0.0,0.0,65.0,0.0,69.0,201.0,0.0,0.0,70.0,760.0,665.0,275.0,92.0,1823.0,151.0,37.0,867.0,857.0,9.0,31.0,78.0,0.0,54.0,0.0,30.0,20.0,303.0,270.0,0.0,163.0,1.0,0.0,4.0,0.0,210.0,38.0,529.0,547.0,0.0,0.0,0.0,53.0,17.0,0.0,0.0,0.0,447.0,0.0,0.0,0.0,0.0,42.0,0.0,0.0,0.0,0.0,13.0,0.0,0.0,53.0,16.0,0.0,58.0,49.0,0.0,0.0,1358.0,0.0,0.0,552.0,221.0,57.0,0.0,14.0,10.0,459.0,0.0,0.0,0.0,0.0,0.0,0.0,178.0,0.0,0.0,25.0,888.0,0.0,324.0,0.0,436.0,96.0,0.0,0.0,27.0,0.0,6.0,0.0,0.0,0.0,0.0,803.0,957.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2091.25,3255.0,0.0,0.0,0.0,19.0,115.0,63.0,6983.0,0.0,0.0,0.0,0.0,8.0,0.0,0.0,0.0,0.0,0.0,1143.0,79.0,55.0,0.0,0.0,2009-01-25,,2009-4,6.290204512649287,5.444000000000001, +40,40,8.23,183.0,0.0,66.0,0.0,299.0,0.0,130.0,80.0,0.0,385.0,0.0,0.0,27.0,0.0,1184.0,42.0,81.0,28.0,0.0,0.0,0.0,0.0,82.0,0.0,1259.0,0.0,182.0,0.0,80.0,0.0,0.0,18.0,1127.0,150.0,515.0,0.0,141.0,0.0,25.0,47.0,0.0,0.0,0.0,0.0,131.0,31.0,0.0,622.0,9.0,25.0,0.0,1372.0,108.0,55.0,104.0,422.0,582.0,38.0,161.0,0.0,459.0,110.0,124.0,374.0,26.0,0.0,35.0,96.0,330.0,2.0,0.0,815.0,308.0,719.0,0.0,0.0,0.0,1058.0,20.0,17.0,0.0,19.0,18.0,0.0,0.0,167.0,423.0,0.0,0.0,66.0,241.0,0.0,970.0,2594.0,1059.0,316.0,602.0,93.0,0.0,0.0,0.0,0.0,957.0,1500.0,11.0,0.0,0.0,76.0,58.0,438.0,600.0,29.0,60.0,293.0,115.0,4817.0,0.0,0.0,47.0,36.0,0.0,0.0,14.0,0.0,0.0,693.0,0.0,107.0,0.0,10.0,0.0,445.0,39.6,0.0,0.0,50.0,76.0,557.0,29.0,27.6,186.0,0.0,0.0,89.0,3593.0,0.0,0.0,76.0,35.0,802.0,0.0,0.0,0.0,0.0,114.0,363.0,64.0,129.0,0.0,18.0,1078.0,316.0,61.0,0.0,2216.0,0.0,0.0,0.0,0.0,894.0,4882.0,944.0,876.0,0.0,0.0,146.0,27.0,47.0,41.0,0.0,71.0,350.0,0.0,0.0,0.0,0.0,0.0,40.0,599.0,565.0,51.0,0.0,0.0,0.0,0.0,229.0,42.0,1.0,0.0,185.0,0.0,118.0,0.0,121.0,0.0,0.0,422.0,1114.0,0.0,315.0,20.0,0.0,16.4,0.0,125.0,6160895.0,61.0,104.0,0.0,37.0,0.0,721.0,61.0,0.0,0.0,496.0,0.0,0.0,0.0,70.0,0.0,110.0,296.0,0.0,0.0,83.0,898.0,803.0,290.0,125.0,1700.0,183.0,39.0,855.0,749.0,12.0,43.0,93.0,0.0,73.0,0.0,25.0,23.0,336.0,259.0,0.0,178.0,0.0,0.0,5.0,0.0,233.0,36.0,393.0,570.0,0.0,0.0,0.0,38.0,18.0,0.0,0.0,0.0,281.0,0.0,0.0,0.0,0.0,41.0,0.0,0.0,0.0,0.0,14.0,0.0,0.0,74.0,20.0,0.0,84.0,15.0,0.0,0.0,1463.0,0.0,0.0,527.0,273.0,46.0,0.0,30.0,9.0,549.0,0.0,0.0,0.0,0.0,0.0,0.0,274.0,0.0,0.0,25.0,933.0,0.0,440.0,0.0,255.0,103.0,0.0,0.0,31.0,0.0,3.0,0.0,0.0,0.0,0.0,860.0,1022.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2399.0,2831.0,0.0,0.0,0.0,27.0,145.0,61.0,2567.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,1149.0,109.0,66.0,0.0,0.0,2009-02-01,,2009-5,8.170958003357448,6.442, +41,41,7.64,176.0,0.0,83.0,0.0,231.0,0.0,127.0,117.0,0.0,427.0,0.0,0.0,53.0,0.0,1087.0,41.0,73.0,42.0,0.0,0.0,0.0,0.0,77.0,0.0,1311.0,0.0,163.0,0.0,74.0,0.0,0.0,16.0,1234.0,192.0,397.0,0.0,115.0,0.0,27.0,74.0,0.0,0.0,0.0,0.0,140.0,49.0,0.0,664.0,11.0,24.0,0.0,1600.0,102.0,43.0,118.0,424.0,569.0,35.0,178.0,0.0,456.0,98.0,134.0,349.0,32.0,0.0,37.0,94.0,383.0,0.0,0.0,791.0,305.0,751.0,0.0,0.0,0.0,1143.0,31.0,18.0,0.0,19.0,27.0,0.0,44.0,169.0,464.0,0.0,0.0,42.0,209.0,0.0,1602.0,1260.0,1084.0,334.0,621.0,126.0,0.0,0.0,0.0,0.0,1058.0,1445.0,10.0,0.0,0.0,54.0,58.0,406.0,559.0,34.0,77.0,225.0,128.0,4756.0,0.0,0.0,39.0,58.0,0.0,0.0,12.0,0.0,0.0,621.0,0.0,142.0,0.0,22.0,0.0,403.0,44.0,0.0,0.0,61.0,89.0,556.0,23.0,29.0,186.0,0.0,0.0,116.0,3916.0,0.0,0.0,81.0,28.0,841.0,0.0,0.0,0.0,0.0,141.0,342.0,54.0,115.0,0.0,6.0,992.0,318.0,52.0,0.0,2862.0,0.0,0.0,0.0,0.0,831.0,3072.0,907.0,819.0,0.0,1.0,198.0,38.0,58.0,76.0,0.0,81.0,327.0,0.0,0.0,0.0,0.0,0.0,39.0,526.0,487.0,49.0,0.0,0.0,0.0,0.0,199.0,29.0,0.0,0.0,211.0,11.0,147.0,0.0,108.0,0.0,0.0,396.0,1041.0,0.0,336.0,13.0,0.0,18.0,0.0,140.0,6125258.0,70.0,85.0,0.0,50.0,0.0,914.0,73.0,0.0,0.0,460.0,0.0,0.0,0.0,77.0,0.0,93.0,233.0,0.0,0.0,83.0,868.0,818.0,282.0,192.0,1721.0,160.0,40.0,796.0,714.0,15.0,44.0,89.0,0.0,74.0,0.0,23.0,26.0,342.0,258.0,0.0,200.0,0.0,0.0,5.0,0.0,254.0,50.0,461.0,531.0,0.0,0.0,0.0,41.0,15.0,0.0,0.0,5.0,298.0,0.0,0.0,0.0,0.0,34.0,0.0,0.0,0.0,0.0,21.0,0.0,0.0,54.0,20.0,0.0,49.0,10.0,0.0,0.0,1609.0,0.0,0.0,505.0,235.0,34.0,0.0,27.0,11.0,520.0,0.0,0.0,0.0,0.0,0.0,0.0,185.0,0.0,0.0,18.0,891.0,0.0,1355.0,0.0,353.0,106.0,0.0,0.0,28.0,0.0,9.0,0.0,0.0,0.0,0.0,880.0,1261.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2380.0,2505.0,0.0,0.0,0.0,24.0,122.0,59.0,8894.0,0.0,0.0,0.0,0.0,13.0,0.0,0.0,0.0,0.0,0.0,1116.0,84.0,75.0,0.0,0.0,2009-02-08,,2009-6,7.6199604634804965,5.41, +42,42,6.64,163.0,0.0,87.0,0.0,176.0,0.0,127.0,98.0,0.0,429.0,0.0,0.0,49.0,0.0,1209.0,41.0,105.0,36.0,0.0,0.0,0.0,0.0,107.0,0.0,1157.0,0.0,170.0,0.0,79.0,0.0,0.0,16.0,1201.0,180.0,528.0,0.0,160.0,0.0,20.0,54.0,0.0,0.0,0.0,0.0,117.0,64.0,0.0,645.0,14.0,71.0,0.0,1578.0,134.0,44.0,117.0,424.0,561.0,25.0,231.0,0.0,460.0,96.0,125.0,345.0,21.0,0.0,46.0,105.0,449.0,5.0,0.0,805.0,333.0,1075.0,0.0,0.0,0.0,1354.0,29.0,14.0,0.0,13.0,27.0,0.0,81.0,160.0,538.0,1.0,0.0,50.0,273.0,0.0,1205.0,2861.0,1175.0,355.0,482.0,136.0,0.0,0.0,0.0,0.0,972.0,1412.0,11.0,0.0,0.0,73.0,62.0,368.0,530.0,30.0,49.0,384.0,138.0,4909.0,0.0,0.0,50.0,53.0,0.0,0.0,19.0,0.0,0.0,851.0,0.0,156.0,0.0,20.0,0.0,422.0,53.0,0.0,0.0,76.0,84.0,527.0,25.0,22.0,192.0,0.0,0.0,69.0,4049.0,0.0,0.0,78.0,36.0,755.0,0.0,0.0,0.0,0.0,136.0,362.0,66.0,87.0,0.0,9.0,890.0,345.0,51.0,0.0,2348.0,0.0,0.0,0.0,0.0,828.0,1826.0,995.0,767.0,0.0,0.0,187.0,45.0,52.0,80.0,0.0,74.0,323.0,0.0,0.0,0.0,0.0,0.0,49.0,500.0,548.0,48.0,0.0,0.0,0.0,0.0,247.0,39.0,0.0,0.0,200.0,62.0,116.0,0.0,102.0,0.0,0.0,388.0,1133.0,0.0,318.0,20.0,0.0,43.0,0.0,151.0,6223532.0,56.0,74.0,0.0,36.0,0.0,833.0,75.0,0.0,0.0,411.0,0.0,0.0,0.0,56.0,0.0,89.0,241.0,0.0,0.0,145.0,887.0,776.0,317.0,130.0,1764.0,207.0,44.0,828.0,720.0,18.0,41.0,84.0,0.0,89.0,0.0,27.0,24.0,430.0,268.0,0.0,187.0,0.0,0.0,6.0,0.0,327.0,64.0,605.0,505.0,0.0,0.0,0.0,46.0,20.0,0.0,0.0,20.0,265.0,0.0,0.0,0.0,0.0,44.0,0.0,0.0,0.0,0.0,18.0,0.0,0.0,58.0,28.0,0.0,51.0,37.0,0.0,0.0,1619.0,0.0,0.0,540.0,224.0,63.0,0.0,23.0,10.0,551.0,0.0,0.0,0.0,0.0,0.0,0.0,148.0,0.0,0.0,17.0,960.0,0.0,681.0,0.0,469.0,111.0,0.0,0.0,25.0,0.0,3.0,0.0,0.0,0.0,0.0,907.0,1228.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2623.0,1376.0,0.0,0.0,0.0,17.0,142.0,63.0,8782.0,0.0,0.0,0.0,0.0,11.0,0.0,0.0,0.0,0.0,0.0,1039.0,82.0,80.0,0.0,0.0,2009-02-15,,2009-7,6.692523694568162,5.468, +43,43,5.13,154.0,0.0,80.0,0.0,223.0,0.0,122.0,84.0,0.0,414.0,0.0,0.0,57.0,0.0,1191.0,36.0,103.0,39.0,0.0,0.0,0.0,0.0,121.0,0.0,922.0,0.0,147.0,0.0,59.0,0.0,0.0,14.0,1216.0,173.0,509.0,0.0,154.0,0.0,17.0,86.0,0.0,0.0,0.0,0.0,122.0,41.0,0.0,496.0,10.0,58.0,0.0,1449.0,109.0,36.0,75.0,392.0,553.0,32.0,97.0,0.0,471.0,77.0,92.0,381.0,24.0,0.0,32.0,67.0,375.0,4.0,0.0,778.0,452.0,763.0,0.0,0.0,0.0,1176.0,31.0,21.0,0.0,11.0,26.0,0.0,75.0,174.0,530.0,0.0,0.0,54.0,292.0,0.0,1824.0,2840.0,1057.0,316.0,492.0,84.0,0.0,0.0,0.0,0.0,990.0,1395.0,8.0,0.0,0.0,62.0,71.0,311.0,565.0,19.0,43.0,217.0,119.0,4156.0,0.0,0.0,44.0,33.0,0.0,0.0,14.0,0.0,0.0,696.0,0.0,106.0,1.0,22.0,0.0,401.0,50.0,0.0,0.0,52.0,106.0,533.0,31.0,25.0,187.0,0.0,0.0,56.0,4078.0,0.0,0.0,56.0,26.0,657.0,0.0,0.0,0.0,1.0,118.0,311.0,66.0,98.0,0.0,13.0,878.0,296.0,67.0,0.0,2295.0,0.0,0.0,0.0,0.0,924.0,2401.0,1196.0,741.0,0.0,2.0,155.0,37.0,43.0,65.0,0.0,102.0,277.0,0.0,0.0,0.0,0.0,0.0,35.0,517.0,549.0,40.0,0.0,0.0,0.0,0.0,291.0,22.0,0.0,0.0,177.0,62.0,116.0,0.0,113.0,0.0,0.0,367.0,1052.0,0.0,282.0,7.0,0.0,41.0,0.0,129.0,6158706.0,61.0,78.0,0.0,26.0,0.0,899.0,68.0,0.0,0.0,430.0,0.0,0.0,0.0,99.0,0.0,96.0,188.0,0.0,0.0,83.0,892.0,723.0,319.0,124.0,1711.0,158.0,42.0,718.0,654.0,22.0,48.0,90.0,0.0,104.0,1.0,34.0,29.0,413.0,251.0,0.0,197.0,0.0,0.0,15.0,0.0,314.0,60.0,531.0,558.0,0.0,0.0,0.0,34.0,15.0,0.0,0.0,74.0,359.0,0.0,0.0,0.0,0.0,47.0,0.0,0.0,0.0,0.0,24.0,0.0,0.0,71.0,20.0,0.0,55.0,69.0,0.0,0.0,1438.0,0.0,0.0,514.0,259.0,32.0,0.0,32.0,8.0,517.0,0.0,0.0,0.0,0.0,0.0,0.0,139.0,0.0,0.0,10.0,1126.0,0.0,500.0,0.0,363.0,132.0,0.0,0.0,35.0,0.0,9.0,0.0,0.0,0.0,0.0,832.0,1041.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2476.0,2297.0,0.0,0.0,0.0,28.0,126.0,71.0,8431.0,0.0,0.0,0.0,0.0,13.0,0.0,0.0,0.0,0.0,0.0,1069.0,100.0,86.0,0.0,0.0,2009-02-22,,2009-8,5.131174449926595,5.158, +44,44,4.17,192.0,0.0,95.0,0.0,148.0,0.0,86.0,87.0,0.0,415.0,0.0,0.0,48.0,0.0,1250.0,24.0,122.0,39.0,0.0,0.0,0.0,0.0,87.0,0.0,967.0,0.0,132.0,0.0,50.0,0.0,0.0,20.0,1268.0,210.0,489.0,0.0,157.0,0.0,20.0,54.0,0.0,0.0,0.0,0.0,143.0,61.0,0.0,559.0,10.0,40.0,0.0,1472.0,98.0,39.0,72.0,392.0,641.0,52.0,192.0,0.0,484.0,61.0,99.0,400.0,17.0,0.0,19.0,94.0,395.0,1.0,0.0,783.0,340.0,766.0,0.0,0.0,2.0,1157.0,38.0,19.0,0.0,19.0,28.0,1.0,82.0,128.0,490.0,0.0,0.0,51.0,210.0,0.0,1032.0,2909.0,2630.0,315.0,533.0,127.0,0.0,0.0,0.0,0.0,1227.0,1405.0,9.0,0.0,0.0,58.0,80.0,314.0,677.0,26.0,68.0,216.0,131.0,4114.0,0.0,0.0,34.0,55.0,0.0,0.0,18.0,0.0,0.0,750.0,0.0,119.0,0.0,19.0,0.0,359.0,48.0,0.0,0.0,48.0,117.0,468.0,25.0,25.0,177.0,0.0,0.0,73.0,4123.0,0.0,0.0,55.0,34.0,698.0,0.0,0.0,0.0,0.0,85.0,382.0,63.0,93.0,0.0,9.0,1512.0,218.0,82.0,0.0,2148.0,0.0,0.0,0.0,0.0,852.0,1822.0,1209.0,728.0,0.0,0.0,204.0,40.0,55.0,66.0,0.0,85.0,267.0,0.0,0.0,0.0,0.0,0.0,14.0,436.0,487.0,35.0,0.0,0.0,0.0,0.0,300.0,26.0,2.0,0.0,197.0,30.0,97.0,0.0,122.0,0.0,0.0,333.0,1072.0,0.0,237.0,30.0,0.0,51.0,0.0,113.0,5973934.0,71.0,82.0,0.0,37.0,0.0,824.0,85.0,0.0,0.0,501.0,0.0,0.0,0.0,49.0,0.0,88.0,194.0,0.0,16.0,78.0,882.0,690.0,289.0,110.0,1538.0,181.0,57.0,793.0,693.0,25.0,64.0,94.0,0.0,94.0,0.0,47.0,16.0,351.0,348.0,0.0,168.0,0.0,0.0,3.0,0.0,263.0,60.0,525.0,601.0,0.0,0.0,0.0,28.0,24.0,0.0,0.0,60.0,1103.0,0.0,0.0,0.0,0.0,29.0,0.0,0.0,0.0,0.0,13.0,0.0,0.0,77.0,14.0,0.0,44.0,48.0,0.0,0.0,1245.0,0.0,0.0,499.0,229.0,20.0,0.0,30.0,16.0,487.0,0.0,0.0,0.0,0.0,0.0,0.0,128.0,0.0,0.0,17.0,1015.0,0.0,397.0,0.0,412.0,141.0,0.0,0.0,21.0,0.0,5.0,0.0,0.0,0.0,0.0,823.0,1101.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2553.0,3746.0,0.0,0.0,0.0,18.0,127.0,54.0,8205.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,1140.0,97.0,97.0,0.0,0.0,2009-03-01,,2009-9,4.14570713707038,3.6820000000000004, +45,45,3.74,207.0,0.0,92.0,0.0,199.0,0.0,85.0,86.0,0.0,329.0,0.0,0.0,43.0,0.0,1155.0,35.0,64.0,26.0,0.0,0.0,0.0,0.0,116.0,0.0,901.0,0.0,163.0,0.0,84.0,0.0,0.0,11.0,1263.0,405.0,493.0,0.0,129.0,0.0,12.0,59.0,0.0,0.0,0.0,0.0,129.0,73.0,0.0,530.0,16.0,34.0,0.0,1672.0,167.0,53.0,93.0,438.0,684.0,31.0,138.0,0.0,453.0,104.0,118.0,484.0,25.0,0.0,27.0,116.0,343.0,1.0,0.0,918.0,278.0,708.0,0.0,0.0,0.0,1102.0,23.0,22.0,0.0,14.0,23.0,2.0,112.0,203.0,532.0,0.0,0.0,45.0,208.0,0.0,1023.0,1052.0,5670.0,316.0,493.0,106.0,0.0,0.0,0.0,0.0,1159.0,1293.0,9.0,0.0,0.0,48.0,52.0,282.0,673.0,15.0,71.0,199.0,127.0,4235.0,0.0,0.0,28.0,25.0,0.0,0.0,16.0,0.0,0.0,631.0,0.0,93.0,2.0,9.0,0.0,394.0,44.0,0.0,0.0,31.0,103.0,472.0,16.0,33.0,136.0,0.0,0.0,88.0,3994.0,0.0,0.0,37.0,30.0,664.0,0.0,0.0,0.0,0.0,158.0,321.0,60.0,77.0,0.0,13.0,949.0,244.0,79.0,0.0,1293.0,0.0,0.0,0.0,0.0,805.0,1303.0,1249.0,662.0,0.0,0.0,281.0,41.0,49.0,61.0,0.0,73.0,277.0,0.0,0.0,0.0,0.0,0.0,25.0,708.0,465.0,48.0,0.0,0.0,0.0,0.0,268.0,24.0,145.0,0.0,226.0,6.0,143.0,0.0,101.0,0.0,0.0,354.0,1044.0,5.0,269.0,21.0,0.0,10.0,0.0,123.0,6008934.0,63.0,74.0,0.0,33.0,0.0,855.0,50.0,0.0,0.0,435.0,0.0,0.0,0.0,72.0,0.0,76.0,231.0,0.0,40.0,86.0,864.0,620.0,277.0,84.0,1809.0,650.0,57.0,835.0,839.0,23.0,48.0,86.0,0.0,81.0,0.0,30.0,27.0,329.0,246.0,0.0,171.0,1.0,0.0,6.0,0.0,310.0,58.0,531.0,445.0,0.0,0.0,0.0,47.0,13.0,0.0,0.0,47.0,540.0,0.0,0.0,0.0,0.0,36.0,0.0,0.0,0.0,0.0,13.0,0.0,0.0,85.0,13.0,0.0,60.0,56.0,0.0,0.0,1336.0,0.0,0.0,551.0,262.0,23.0,0.0,27.0,13.0,474.0,0.0,0.0,0.0,0.0,0.0,0.0,175.0,0.0,0.0,31.0,1085.0,0.0,302.0,0.0,369.0,109.0,0.0,0.0,28.0,0.0,12.0,0.0,0.0,0.0,0.0,813.0,984.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2710.0,2756.0,0.0,0.0,0.0,24.0,114.0,58.0,3907.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1180.0,80.0,121.0,0.0,0.0,2009-03-08,,2009-10,3.7342361323258606,4.248, +46,46,2.91,213.0,0.0,77.0,0.0,166.0,0.0,85.0,89.0,0.0,328.0,0.0,0.0,30.0,0.0,1159.0,32.0,83.0,24.0,0.0,0.0,0.0,0.0,108.0,0.0,1232.0,0.0,139.0,0.0,74.0,0.0,0.0,10.0,1146.0,204.0,461.0,0.0,125.0,0.0,15.0,55.0,0.0,0.0,0.0,0.0,137.0,71.0,0.0,570.0,18.0,21.0,0.0,1628.0,99.0,28.0,114.0,401.0,550.0,27.0,137.0,0.0,491.0,62.0,125.0,405.0,15.0,0.0,24.0,90.0,312.0,3.0,0.0,1023.0,316.0,639.0,0.0,0.0,0.0,1032.0,24.0,18.0,0.0,9.0,25.0,0.0,96.0,162.0,512.0,1.0,0.0,42.0,233.0,0.0,1072.0,2696.0,1611.0,334.0,438.0,107.0,0.0,0.0,0.0,0.0,1196.0,1322.0,8.0,0.0,0.0,61.0,44.0,286.0,675.0,12.0,64.0,635.0,116.0,4116.0,0.0,0.0,52.0,39.0,0.0,0.0,11.0,0.0,0.0,697.0,0.0,104.0,1.0,16.0,0.0,380.0,29.0,0.0,0.0,36.0,127.0,600.0,60.0,28.0,124.0,0.0,0.0,122.0,3689.0,0.0,0.0,75.0,29.0,675.0,0.0,0.0,0.0,0.0,68.0,315.0,75.0,79.0,0.0,17.0,783.0,230.0,65.0,0.0,1647.0,0.0,0.0,0.0,0.0,913.0,3223.0,1004.0,725.0,0.0,0.0,213.0,25.0,48.0,66.0,0.0,96.0,300.0,0.0,0.0,0.0,0.0,0.0,17.0,478.0,518.0,37.0,0.0,0.0,0.0,0.0,384.0,38.0,147.0,0.0,240.0,15.0,141.0,0.0,113.0,0.0,0.0,451.0,1084.0,0.0,319.0,8.0,0.0,38.0,0.0,118.0,6150244.0,60.0,79.0,0.0,33.0,0.0,659.0,73.0,0.0,0.0,461.0,0.0,0.0,0.0,53.0,0.0,76.0,201.0,0.0,49.0,70.0,843.0,698.0,319.0,141.0,1724.0,162.0,43.0,742.0,709.0,17.0,50.0,80.0,0.0,85.0,2.0,46.0,22.0,391.0,290.0,0.0,174.0,0.0,0.0,8.0,0.0,289.0,47.0,532.0,513.0,0.0,0.0,0.0,29.0,14.0,0.0,0.0,37.0,639.0,0.0,0.0,0.0,0.0,47.0,0.0,0.0,0.0,0.0,9.0,0.0,0.0,46.0,13.0,0.0,71.0,8.0,0.0,0.0,1383.0,0.0,0.0,511.0,254.0,13.0,0.0,40.0,11.0,482.0,0.0,0.0,0.0,0.0,0.0,0.0,150.0,0.0,0.0,14.0,927.0,0.0,329.0,0.0,424.0,129.0,0.0,0.0,26.0,0.0,10.0,0.0,0.0,0.0,0.0,850.0,941.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2715.0,3382.0,0.0,0.0,0.0,15.0,117.0,42.0,6233.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1175.0,97.0,85.0,0.0,0.0,2009-03-15,,2009-11,2.9109726176548403,3.208, +47,47,2.15,146.0,0.0,77.0,0.0,234.0,0.0,75.0,117.0,0.0,309.0,0.0,0.0,37.0,0.0,1110.0,25.0,61.0,31.0,0.0,0.0,0.0,0.0,102.0,0.0,1170.0,0.0,123.0,0.0,76.0,0.0,0.0,11.0,1269.0,175.0,429.0,0.0,126.0,0.0,23.0,41.0,0.0,0.0,0.0,0.0,135.0,56.0,0.0,670.0,10.0,40.0,0.0,1517.0,114.0,41.0,83.0,453.0,568.0,45.0,133.0,0.0,433.0,117.0,118.0,472.0,33.0,0.0,22.0,79.0,286.0,2.0,0.0,925.0,306.0,576.0,0.0,0.0,0.0,1079.0,28.0,22.0,0.0,15.0,28.0,0.0,122.0,163.0,540.0,0.0,0.0,36.0,182.0,0.0,932.0,1772.0,1064.0,296.0,472.0,98.0,0.0,0.0,0.0,0.0,1101.0,1433.0,6.0,0.0,0.0,68.0,64.0,288.0,697.0,16.0,77.0,381.0,123.0,3722.0,0.0,0.0,44.0,53.0,0.0,0.0,13.0,0.0,0.0,565.0,0.0,99.0,0.0,11.0,0.0,334.0,44.0,0.0,0.0,30.0,69.0,544.0,32.0,25.0,124.0,0.0,0.0,95.0,3668.0,0.0,0.0,36.0,19.0,646.0,0.0,0.0,0.0,0.0,86.0,314.0,63.0,78.0,0.0,7.0,805.0,207.0,85.0,0.0,2094.0,0.0,0.0,0.0,0.0,881.0,1397.0,1021.0,631.0,0.0,0.0,219.0,35.0,41.0,67.0,0.0,88.0,277.0,0.0,0.0,0.0,0.0,0.0,34.0,471.0,345.0,37.0,0.0,0.0,0.0,0.0,343.0,34.0,74.0,0.0,228.0,8.0,113.0,0.0,101.0,0.0,0.0,395.0,995.0,0.0,297.0,15.0,0.0,18.0,0.0,121.0,5895409.0,75.0,56.0,0.0,34.0,0.0,679.0,72.0,0.0,0.0,432.0,0.0,0.0,0.0,48.0,0.0,82.0,213.0,0.0,36.0,78.0,798.0,726.0,292.0,146.0,1653.0,132.0,44.0,719.0,701.0,20.0,26.0,68.0,0.0,61.0,0.0,32.0,29.0,343.0,253.0,0.0,190.0,0.0,0.0,3.0,0.0,304.0,45.0,591.0,557.0,0.0,0.0,0.0,31.0,21.0,0.0,0.0,40.0,414.0,0.0,0.0,0.0,0.0,38.0,0.0,0.0,0.0,0.0,18.0,0.0,0.0,70.0,18.0,0.0,60.0,24.0,0.0,0.0,1190.0,0.0,0.0,482.0,256.0,17.0,0.0,34.0,7.0,496.0,0.0,0.0,0.0,0.0,0.0,0.0,126.0,0.0,0.0,13.0,983.0,0.0,349.0,0.0,165.0,170.0,0.0,0.0,23.0,0.0,5.0,0.0,0.0,0.0,0.0,727.0,791.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2755.0,4127.0,0.0,0.0,0.0,23.0,167.0,48.0,5943.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,981.0,80.0,85.0,0.0,0.0,2009-03-22,,2009-12,2.2404987809491335,1.8719999999999999, +48,48,1.73,135.0,0.0,76.0,0.0,219.0,0.0,90.0,106.0,0.0,335.0,0.0,0.0,28.0,0.0,1102.0,24.0,77.0,39.0,0.0,0.0,0.0,0.0,112.0,0.0,767.0,0.0,133.0,0.0,75.0,0.0,0.0,23.0,892.0,158.0,430.0,0.0,144.0,0.0,29.0,49.0,0.0,0.0,0.0,0.0,127.0,80.0,6.0,561.0,18.0,25.0,0.0,1458.0,95.0,22.0,77.0,419.0,622.0,32.0,225.0,0.0,450.0,96.0,115.0,430.0,35.0,0.0,24.0,97.0,270.0,1.0,0.0,861.0,249.0,766.0,0.0,0.0,0.0,1283.0,34.0,21.0,0.0,9.0,23.0,0.0,101.0,147.0,581.0,0.0,0.0,45.0,223.0,0.0,1070.0,2676.0,4222.0,320.0,541.0,121.0,0.0,0.0,0.0,0.0,1100.0,1567.0,5.0,0.0,0.0,74.0,42.0,290.0,751.0,28.0,34.0,255.0,134.0,3811.0,0.0,0.0,67.0,42.0,0.0,5.0,31.0,0.0,0.0,732.0,0.0,137.0,0.0,21.0,0.0,347.0,51.0,0.0,0.0,27.0,116.0,684.0,19.0,35.0,143.0,0.0,0.0,65.0,3652.0,0.0,0.0,48.0,36.0,633.0,0.0,0.0,0.0,0.0,81.0,312.0,55.0,75.0,0.0,5.0,691.0,204.0,84.0,0.0,1980.0,0.0,0.0,0.0,0.0,923.0,3644.0,1149.0,769.0,0.0,0.0,234.0,37.0,53.0,76.0,0.0,93.0,295.0,0.0,0.0,0.0,0.0,0.0,31.0,533.0,534.0,36.0,0.0,0.0,0.0,0.0,405.0,32.0,50.0,0.0,205.0,5.0,152.0,0.0,90.0,0.0,0.0,423.0,1020.0,0.0,285.0,19.0,0.0,29.0,0.0,86.0,6054199.0,45.0,67.0,0.0,61.0,0.0,651.0,75.0,0.0,0.0,452.0,0.0,0.0,0.0,52.0,0.0,85.0,213.0,0.0,52.0,88.0,884.0,784.0,285.0,131.0,1689.0,129.0,39.0,700.0,679.0,20.0,51.0,104.0,0.0,88.0,0.0,46.0,22.0,412.0,270.0,0.0,194.0,0.0,0.0,6.0,0.0,305.0,48.0,512.0,518.0,0.0,0.0,0.0,61.0,23.0,0.0,0.0,56.0,269.0,0.0,0.0,0.0,0.0,49.0,0.0,0.0,0.0,0.0,13.0,0.0,0.0,60.0,15.0,0.0,62.0,23.0,0.0,0.0,1907.0,0.0,0.0,499.0,256.0,27.0,0.0,31.0,8.0,523.0,0.0,0.0,0.0,0.0,0.0,0.0,126.0,0.0,0.0,20.0,1310.0,0.0,426.0,0.0,260.0,122.0,0.0,0.0,24.0,0.0,3.0,0.0,0.0,0.0,0.0,844.0,872.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2716.0,1415.0,0.0,0.0,0.0,21.0,167.0,56.0,3975.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1118.0,107.0,73.0,0.0,0.0,2009-03-29,,2009-13,1.7017668458923163,1.814, +49,49,1.44,196.0,0.0,86.0,0.0,237.0,0.0,118.0,119.0,0.0,278.0,0.0,0.0,35.0,0.0,1195.0,34.0,81.0,36.0,0.0,0.0,0.0,0.0,86.0,0.0,793.0,0.0,112.0,0.0,92.0,0.0,0.0,15.0,935.0,161.0,412.0,0.0,144.0,0.0,82.0,100.0,0.0,0.0,0.0,0.0,125.0,66.0,0.0,716.0,11.0,60.0,0.0,1633.0,136.0,38.0,96.0,348.0,643.0,25.0,209.0,0.0,452.0,89.0,101.0,519.0,30.0,0.0,44.0,56.0,342.0,0.0,0.0,908.0,245.0,702.0,0.0,0.0,0.0,1173.0,25.0,27.0,0.0,19.0,32.0,0.0,133.0,175.0,534.0,0.0,0.0,51.0,293.0,0.0,1068.0,1130.0,1217.0,367.0,513.0,108.0,0.0,0.0,0.0,0.0,1113.0,1756.0,7.0,0.0,0.0,69.0,66.0,368.0,738.0,17.0,44.0,301.0,123.0,3873.0,0.0,0.0,46.0,58.0,0.0,20.0,14.0,0.0,0.0,784.0,0.0,117.0,0.0,20.0,0.0,375.0,61.0,0.0,0.0,47.0,100.0,554.0,26.0,21.0,114.0,0.0,0.0,53.0,3984.0,0.0,0.0,38.0,30.0,727.0,0.0,0.0,0.0,0.0,122.0,344.0,52.0,61.0,0.0,7.0,738.0,223.0,68.0,0.0,2096.0,0.0,0.0,0.0,0.0,917.0,2275.0,1155.0,722.0,0.0,0.0,206.0,26.0,54.0,70.0,0.0,72.0,305.0,0.0,0.0,0.0,0.0,0.0,23.0,416.0,552.0,73.0,0.0,0.0,0.0,0.0,442.0,50.0,30.0,0.0,224.0,3.0,164.0,0.0,135.0,0.0,0.0,393.0,997.0,0.0,329.0,23.0,0.0,34.0,0.0,84.0,6116406.0,83.0,62.0,0.0,52.0,0.0,668.0,115.0,0.0,0.0,455.0,1.0,0.0,0.0,151.0,0.0,90.0,226.0,0.0,41.0,87.0,869.0,754.0,315.0,132.0,1610.0,153.0,58.0,742.0,679.0,28.0,44.0,89.0,0.0,111.0,1.0,39.0,29.0,423.0,339.0,0.0,183.0,0.0,0.0,8.0,0.0,330.0,40.0,479.0,547.0,0.0,0.0,0.0,44.0,19.0,0.0,0.0,73.0,268.0,0.0,0.0,0.0,0.0,40.0,0.0,0.0,0.0,0.0,13.0,0.0,0.0,51.0,15.0,0.0,72.0,55.0,0.0,0.0,1332.0,0.0,0.0,504.0,276.0,17.0,0.0,25.0,11.0,522.0,0.0,0.0,0.0,0.0,0.0,0.0,143.0,0.0,0.0,22.0,1357.0,0.0,358.0,0.0,241.0,109.0,0.0,0.0,29.0,0.0,3.0,0.0,0.0,0.0,0.0,737.0,890.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2690.0,1021.0,0.0,0.0,0.0,17.0,116.0,51.0,1434.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1115.0,92.0,417.0,0.0,0.0,2009-04-05,,2009-14,1.4264998882796043,1.958, +50,50,1.16,139.0,0.0,72.0,0.0,182.0,0.0,94.0,104.0,0.0,301.0,0.0,0.0,35.0,0.0,1066.0,32.0,67.0,50.0,0.0,0.0,0.0,0.0,98.0,0.0,843.0,0.0,92.0,0.0,70.0,0.0,0.0,10.0,1258.0,161.0,355.0,0.0,158.0,0.0,41.0,75.0,0.0,0.0,0.0,0.0,108.0,54.0,0.0,767.0,21.0,34.0,0.0,1597.0,93.0,40.0,127.0,383.0,638.0,37.0,189.0,0.0,482.0,93.0,120.0,362.0,22.0,0.0,26.0,93.0,333.0,0.0,0.0,1011.0,323.0,672.0,0.0,0.0,0.0,1123.0,25.0,50.0,0.0,37.0,51.0,1.0,371.0,149.0,522.0,0.0,0.0,39.0,138.0,0.0,1053.0,2032.0,1461.0,299.0,585.0,107.0,0.0,0.0,0.0,0.0,1059.0,1489.0,11.0,0.0,0.0,560.0,62.0,301.0,722.0,14.0,74.0,209.0,135.0,3655.0,0.0,0.0,40.0,35.0,0.0,25.0,21.0,0.0,0.0,616.0,0.0,128.0,0.0,13.0,0.0,586.0,44.0,0.0,0.0,53.0,81.0,561.0,20.0,58.0,127.0,0.0,0.0,61.0,3835.0,0.0,0.0,44.0,27.0,727.0,0.0,0.0,0.0,0.0,129.0,312.0,70.0,82.0,0.0,7.0,660.0,192.0,58.0,0.0,1859.0,0.0,0.0,0.0,0.0,1023.0,1303.0,1141.0,830.0,0.0,0.0,189.0,39.0,46.0,58.0,0.0,79.0,296.0,0.0,0.0,0.0,0.0,0.0,25.0,390.0,443.0,43.0,0.0,0.0,0.0,0.0,509.0,48.0,24.0,0.0,201.0,1.0,107.0,0.0,111.0,0.0,0.0,493.0,957.0,1.0,288.0,17.0,0.0,29.0,0.0,133.0,5899957.0,70.0,65.0,0.0,51.0,0.0,707.0,51.0,0.0,0.0,443.0,0.0,0.0,0.0,68.0,0.0,88.0,249.0,0.0,34.0,72.0,907.0,779.0,275.0,142.0,1785.0,139.0,40.0,649.0,591.0,23.0,38.0,85.0,0.0,86.0,0.0,32.0,31.0,382.0,270.0,0.0,216.0,1.0,0.0,7.0,0.0,339.0,58.0,689.0,570.0,0.0,0.0,0.0,37.0,16.0,0.0,0.0,64.0,487.0,0.0,0.0,0.0,0.0,43.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,77.0,23.0,0.0,48.0,58.0,0.0,0.0,1224.0,0.0,0.0,458.0,264.0,26.0,0.0,35.0,6.0,511.0,0.0,0.0,0.0,0.0,0.0,0.0,141.0,0.0,0.0,33.0,1161.0,0.0,325.0,0.0,298.0,105.0,0.0,0.0,25.0,0.0,1.0,0.0,0.0,0.0,0.0,678.0,761.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2862.0,2390.0,0.0,0.0,0.0,23.0,183.0,68.0,6265.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1128.0,97.0,86.0,0.0,0.0,2009-04-12,,2009-15,1.159420617009701,1.0419999999999998, +51,51,0.76,106.0,0.0,96.0,0.0,162.0,0.0,58.0,76.0,0.0,238.0,0.0,0.0,28.0,0.0,931.0,20.0,71.0,45.0,0.0,0.0,0.0,0.0,73.0,0.0,665.0,0.0,77.0,0.0,72.0,0.0,0.0,12.0,854.0,261.0,318.0,0.0,143.0,0.0,26.0,87.0,0.0,0.0,0.0,0.0,93.0,55.0,0.0,759.0,11.0,29.0,0.0,1263.0,87.0,36.0,67.0,309.0,564.0,35.0,153.0,0.0,360.0,88.0,97.0,307.0,28.0,0.0,25.0,101.0,260.0,2.0,0.0,840.0,246.0,547.0,0.0,0.0,0.0,894.0,17.0,23.0,0.0,22.0,37.0,0.0,163.0,127.0,421.0,0.0,0.0,38.0,246.0,0.0,911.0,1705.0,2323.0,243.0,432.0,73.0,0.0,0.0,0.0,0.0,1025.0,1450.0,22.0,0.0,0.0,238.0,34.0,192.0,592.0,16.0,45.0,206.0,81.0,2777.0,0.0,0.0,49.0,51.0,0.0,26.0,16.0,0.0,0.0,485.0,0.0,87.0,0.0,12.0,0.0,357.0,33.0,0.0,0.0,44.0,77.0,517.0,16.0,12.0,116.0,0.0,0.0,50.0,2887.0,0.0,0.0,53.0,31.0,689.0,0.0,0.0,0.0,0.0,87.0,245.0,56.0,51.0,0.0,9.0,550.0,172.0,73.0,0.0,1747.0,0.0,0.0,0.0,0.0,886.0,2750.0,992.0,683.0,0.0,0.0,183.0,37.0,29.0,71.0,0.0,81.0,248.0,0.0,0.0,0.0,0.0,0.0,23.0,381.0,355.0,25.0,0.0,0.0,0.0,0.0,337.0,29.0,28.0,0.0,177.0,1.0,130.0,0.0,87.0,0.0,0.0,393.0,817.0,0.0,303.0,9.0,0.0,18.0,0.0,90.0,5291471.0,49.0,56.0,0.0,39.0,0.0,597.0,69.0,0.0,0.0,397.0,0.0,0.0,0.0,57.0,0.0,66.0,243.0,0.0,40.0,81.0,630.0,637.0,198.0,112.0,1393.0,145.0,49.0,509.0,475.0,20.0,35.0,70.0,0.0,70.0,0.0,27.0,13.0,315.0,216.0,0.0,163.0,0.0,0.0,3.0,0.0,306.0,46.0,334.0,414.0,0.0,0.0,0.0,34.0,12.0,0.0,0.0,47.0,276.0,0.0,0.0,0.0,0.0,49.0,0.0,0.0,0.0,0.0,26.0,0.0,0.0,57.0,15.0,0.0,88.0,51.0,0.0,0.0,1105.0,0.0,0.0,471.0,193.0,26.0,0.0,43.0,4.0,508.0,0.0,0.0,0.0,0.0,0.0,0.0,110.0,0.0,0.0,24.0,1074.0,0.0,239.0,0.0,170.0,76.0,0.0,0.0,24.0,0.0,4.0,0.0,0.0,0.0,0.0,537.0,577.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2397.0,557.0,0.0,0.0,0.0,14.0,152.0,48.0,9740.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,941.0,83.0,87.0,0.0,0.0,2009-04-19,,2009-16,0.7448321462916008,0.876, +52,52,1.76,74.0,0.0,69.0,0.0,187.0,0.0,43.0,64.0,0.0,250.0,0.0,0.0,34.0,0.0,813.0,34.0,51.0,40.0,0.0,0.0,0.0,0.0,99.0,0.0,585.0,0.0,394.0,0.0,84.0,0.0,0.0,21.0,879.0,150.0,384.0,0.0,125.0,0.0,15.0,56.0,0.0,0.0,0.0,0.0,157.0,50.0,36.0,581.0,9.0,59.0,16.0,1090.0,73.0,15.0,65.0,299.0,410.0,24.0,84.0,0.0,345.0,56.0,92.0,323.0,19.0,0.0,12.0,71.0,236.0,160.0,0.0,1021.0,179.0,388.0,0.0,0.0,0.0,426.0,26.0,25.0,0.0,26.0,26.0,0.0,98.0,123.0,330.0,1.0,0.0,26.0,273.0,0.0,553.0,655.0,650.0,177.0,335.0,85.0,0.0,0.0,0.0,0.0,827.0,761.0,6.0,0.0,0.0,42.0,41.0,178.0,604.0,15.0,26.0,162.0,118.0,3202.0,0.0,0.0,30.0,58.0,0.0,18.0,18.0,0.0,0.0,540.0,0.0,63.0,0.0,24.0,21.0,311.0,55.0,0.0,0.0,50.0,171.0,407.0,11.0,20.0,125.0,0.0,0.0,171.0,2899.0,0.0,0.0,263.0,60.0,992.0,8366.0,0.0,0.0,0.0,81.0,289.0,48.0,87.0,0.0,14.0,1020.0,220.0,106.0,0.0,1445.0,0.0,0.0,0.0,0.0,732.0,912.0,1050.0,776.0,0.0,4.0,184.0,22.0,35.0,82.0,0.0,88.0,277.0,0.0,0.0,0.0,0.0,51.0,39.0,298.0,317.0,35.0,0.0,0.0,0.0,0.0,232.0,25.0,24.0,0.0,193.0,2.0,191.0,0.0,78.0,0.0,0.0,398.0,862.0,0.0,162.0,17.0,0.0,17.0,0.0,128.0,4387622.0,66.0,418.0,797.0,30.0,0.0,820.0,76.0,0.0,0.0,363.0,0.0,0.0,0.0,64.0,0.0,87.0,198.0,0.0,67.0,87.0,739.0,719.0,227.0,149.0,1277.0,408.0,24.0,1546.0,1392.0,14.0,46.0,93.0,0.0,81.0,0.0,34.0,23.0,310.0,307.0,0.0,182.0,0.0,0.0,8.0,0.0,270.0,19.0,325.0,476.0,0.0,44.0,0.0,20.0,11.0,0.0,0.0,95.0,127.0,0.0,0.0,0.0,35.0,43.0,0.0,0.0,0.0,0.0,5.0,0.0,0.0,65.0,16.0,0.0,58.0,56.0,0.0,0.0,1059.0,0.0,0.0,453.0,211.0,13.0,0.0,28.0,7.0,430.0,0.0,18.0,0.0,0.0,0.0,0.0,183.0,0.0,0.0,15.0,1179.0,0.0,201.0,0.0,170.0,108.0,0.0,0.0,10.0,0.0,4.0,0.0,0.0,0.0,0.0,707.0,1151.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1665.0,3029.0,0.0,0.0,0.0,24.0,1150.0,48.0,5990.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,880.0,96.0,71.0,0.0,0.0,2009-10-25,,2009-43,1.77766204071599,2.182, +53,53,4.49,108.0,0.0,86.0,0.0,201.0,0.0,53.0,75.0,0.0,332.0,0.0,0.0,38.0,0.0,969.0,34.0,86.0,37.0,0.0,0.0,0.0,0.0,158.0,0.0,1146.0,0.0,538.0,0.0,102.0,0.0,0.0,40.0,1039.0,170.0,427.0,0.0,149.0,0.0,24.0,69.0,0.0,0.0,0.0,0.0,206.0,70.0,71.0,1159.0,15.0,76.0,27.0,1379.0,118.0,30.0,79.0,371.0,510.0,29.0,98.0,0.0,435.0,72.0,91.0,444.0,24.0,0.0,19.0,100.0,330.0,175.0,0.0,1157.0,263.0,462.0,0.0,0.0,0.0,539.0,18.0,25.0,0.0,21.0,35.0,0.0,106.0,137.0,400.0,0.0,0.0,44.0,398.0,0.0,696.0,749.0,783.0,189.0,409.0,95.0,0.0,0.0,0.0,0.0,1066.0,952.0,11.0,0.0,0.0,49.0,59.0,209.0,762.0,14.0,35.0,209.0,113.0,5353.0,0.0,0.0,54.0,39.0,0.0,10.0,24.0,0.0,0.0,803.0,0.0,100.0,0.0,24.0,31.0,405.0,53.0,0.0,0.0,79.0,167.0,488.0,17.0,32.0,130.0,0.0,0.0,201.0,3482.0,0.0,0.0,365.0,90.0,1361.0,11970.0,0.0,0.0,0.0,107.0,316.0,73.0,103.0,0.0,11.0,1017.0,300.0,171.0,0.0,1751.0,0.0,0.0,0.0,0.0,682.0,1131.0,1677.0,1374.0,0.0,0.0,194.0,27.0,83.0,104.0,0.0,149.0,362.0,0.0,0.0,0.0,0.0,66.0,36.0,331.0,432.0,43.0,0.0,0.0,0.0,0.0,283.0,38.0,35.0,0.0,252.0,0.0,195.0,0.0,85.0,0.0,0.0,495.0,1087.0,0.0,168.0,25.0,0.0,38.0,0.0,169.0,5272221.0,73.0,613.0,1203.0,39.0,0.0,1024.0,68.0,0.0,0.0,332.0,0.0,0.0,0.0,69.0,0.0,110.0,375.0,0.0,67.0,97.0,828.0,855.0,308.0,195.0,1442.0,446.0,28.0,1827.0,1606.0,28.0,91.0,188.0,0.0,138.0,0.0,52.0,23.0,319.0,403.0,0.0,245.0,0.0,0.0,13.0,0.0,439.0,36.0,400.0,652.0,0.0,43.0,0.0,36.0,19.0,0.0,0.0,102.0,319.0,0.0,0.0,0.0,45.0,49.0,0.0,0.0,0.0,0.0,14.0,0.0,0.0,67.0,19.0,0.0,45.0,74.0,0.0,0.0,1299.0,0.0,0.0,516.0,241.0,25.0,0.0,42.0,15.0,462.0,0.0,19.0,0.0,0.0,0.0,0.0,211.0,0.0,0.0,25.0,1329.0,0.0,232.0,0.0,210.0,162.0,0.0,0.0,22.0,0.0,3.0,0.0,0.0,0.0,0.0,925.0,1619.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1939.0,3512.0,0.0,0.0,0.0,12.0,607.0,109.0,7620.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1243.0,127.0,93.0,0.0,0.0,2009-11-01,,2009-44,4.4943700788496965,8.772, +54,54,9.31,102.0,0.0,64.0,0.0,212.0,0.0,68.0,75.0,0.0,419.0,0.0,0.0,39.0,0.0,963.0,42.0,56.0,41.0,0.0,0.0,0.0,0.0,105.0,0.0,1088.0,0.0,564.0,0.0,111.0,0.0,0.0,38.0,1082.0,171.0,421.0,0.0,164.0,0.0,23.0,63.0,0.0,0.0,0.0,0.0,142.0,58.0,60.0,643.0,24.0,51.0,26.0,1256.0,84.0,25.0,145.0,337.0,554.0,22.0,78.0,0.0,694.0,80.0,97.0,408.0,19.0,0.0,12.0,62.0,339.0,172.0,0.0,1175.0,240.0,404.0,0.0,0.0,0.0,531.0,26.0,23.0,0.0,24.0,48.0,0.0,77.0,153.0,445.0,0.0,1.0,96.0,423.0,0.0,633.0,725.0,711.0,190.0,373.0,81.0,0.0,0.0,0.0,0.0,896.0,1832.0,13.0,0.0,0.0,44.0,52.0,237.0,924.0,24.0,31.0,393.0,136.0,6234.0,0.0,0.0,63.0,50.0,0.0,17.0,14.0,0.0,0.0,590.0,0.0,115.0,0.0,20.0,20.0,455.0,57.0,0.0,0.0,65.0,180.0,536.0,8.0,31.0,123.0,0.0,0.0,197.0,3347.0,0.0,0.0,828.0,173.0,2661.0,30763.0,0.0,0.0,0.0,141.0,355.0,60.0,104.0,1.0,10.0,891.0,305.0,134.0,0.0,1751.0,0.0,0.0,0.0,0.0,752.0,1030.0,1345.0,936.0,0.0,1.0,204.0,34.0,63.0,93.0,0.0,103.0,370.0,0.0,0.0,0.0,0.0,89.0,40.0,321.0,487.0,44.0,0.0,0.0,0.0,0.0,212.0,30.0,35.0,0.0,234.0,3.0,175.0,0.0,105.0,0.0,0.0,424.0,1179.0,0.0,204.0,24.0,0.0,26.0,0.0,154.0,5173511.0,66.0,1172.0,2326.0,38.0,0.0,944.0,71.0,0.0,0.0,396.0,1.0,0.0,0.0,86.0,0.0,106.0,564.0,0.0,55.0,103.0,773.0,800.0,291.0,157.0,1503.0,418.0,29.0,1476.0,1394.0,32.0,78.0,178.0,0.0,190.0,0.0,57.0,26.0,365.0,541.0,0.0,205.0,0.0,0.0,10.0,0.0,398.0,36.0,413.0,596.0,0.0,59.0,0.0,37.0,18.0,0.0,0.0,146.0,240.0,0.0,0.0,0.0,54.0,39.0,0.0,0.0,0.0,0.0,18.0,1.0,0.0,82.0,20.0,0.0,56.0,99.0,0.0,0.0,1211.0,0.0,0.0,571.0,290.0,29.0,0.0,115.0,8.0,520.0,0.0,24.0,0.0,0.0,0.0,0.0,208.0,0.0,0.0,28.0,1299.0,0.0,276.0,0.0,245.0,137.0,0.0,0.0,29.0,0.0,5.0,0.0,0.0,0.0,0.0,1039.0,2128.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1755.0,3701.0,0.0,0.0,0.0,30.0,410.0,77.0,7403.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1368.0,125.0,94.0,0.0,0.0,2009-11-08,,2009-45,9.296613081497433,9.978000000000002, +55,55,12.65,122.0,0.0,64.0,0.0,239.0,0.0,73.0,88.0,0.0,423.0,0.0,0.0,63.0,0.0,1050.0,47.0,73.0,37.0,0.0,0.0,0.0,0.0,86.0,0.0,1733.0,0.0,742.0,0.0,118.0,0.0,0.0,84.0,1131.0,238.0,589.0,0.0,141.0,0.0,32.0,49.0,0.0,0.0,0.0,0.0,144.0,70.0,65.0,816.0,25.0,54.0,31.0,1498.0,102.0,49.0,158.0,442.0,546.0,29.0,109.0,0.0,577.0,71.0,91.0,473.0,17.0,0.0,19.0,93.0,324.0,170.0,0.0,1208.0,252.0,533.0,0.0,0.0,0.0,625.0,37.0,21.0,0.0,17.0,35.0,0.0,130.0,152.0,518.0,0.0,0.0,72.0,323.0,0.0,734.0,819.0,787.0,207.0,402.0,97.0,0.0,0.0,0.0,0.0,1055.0,1274.0,11.0,0.0,0.0,57.0,54.0,238.0,1394.0,19.0,35.0,331.0,141.0,7798.0,0.0,0.0,65.0,117.0,0.0,12.0,25.0,0.0,0.0,798.0,0.0,126.0,0.0,23.0,37.0,408.0,42.0,0.0,0.0,95.0,192.0,590.0,9.0,39.0,157.0,0.0,0.0,196.0,3758.0,0.0,0.0,3501.0,817.0,8970.0,49752.0,0.0,0.0,0.0,127.0,362.0,72.0,90.0,0.0,8.0,1095.0,317.0,162.0,0.0,1841.0,0.0,0.0,0.0,0.0,710.0,1242.0,1227.0,864.0,0.0,0.0,198.0,31.0,69.0,92.0,0.0,143.0,408.0,0.0,0.0,0.0,0.0,197.0,48.0,360.0,554.0,63.0,0.0,0.0,0.0,0.0,252.0,29.0,20.0,0.0,227.0,0.0,184.0,0.0,123.0,0.0,0.0,453.0,1229.0,2.0,188.0,20.0,0.0,23.0,0.0,137.0,5525517.0,64.0,5688.0,5686.0,47.0,0.0,1053.0,90.0,0.0,0.0,438.0,0.0,0.0,4.0,157.0,0.0,99.0,528.0,0.0,64.0,112.0,958.0,819.0,333.0,200.0,1620.0,497.0,35.0,1732.0,1592.0,20.0,78.0,180.0,0.0,153.0,0.0,59.0,28.0,378.0,820.0,0.0,231.0,0.0,0.0,10.0,0.0,341.0,50.0,496.0,717.0,0.0,51.0,0.0,49.0,19.0,0.0,0.0,144.0,370.0,0.0,0.0,0.0,75.0,79.0,0.0,0.0,0.0,0.0,17.0,0.0,0.0,126.0,20.0,0.0,69.0,96.0,0.0,0.0,1398.0,0.0,0.0,573.0,325.0,21.0,0.0,58.0,10.0,535.0,0.0,27.0,0.0,0.0,0.0,0.0,231.0,0.0,0.0,27.0,1379.0,0.0,295.0,0.0,191.0,125.0,0.0,0.0,38.0,0.0,2.0,0.0,0.0,0.0,0.0,1940.0,4583.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,2.0,7.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1809.0,6219.0,0.0,0.0,0.0,25.0,333.0,92.0,8074.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1223.0,109.0,104.0,0.0,0.0,2009-11-15,,2009-46,12.652777673749753,12.704, +56,56,12.92,133.0,0.0,72.0,0.0,236.0,0.0,45.0,102.0,0.0,387.0,0.0,0.0,47.0,0.0,1115.0,43.0,81.0,42.0,0.0,0.0,0.0,0.0,127.0,0.0,1505.0,0.0,723.0,0.0,129.0,0.0,0.0,48.0,1238.0,370.0,687.0,0.0,170.0,0.0,46.0,84.0,0.0,0.0,0.0,0.0,118.0,62.0,48.0,810.0,14.0,49.0,27.0,1438.0,189.0,45.0,98.0,357.0,531.0,27.0,91.0,0.0,482.0,95.0,102.0,438.0,20.0,0.0,23.0,96.0,328.0,182.0,0.0,1387.0,272.0,516.0,0.0,0.0,0.0,604.0,45.0,22.0,0.0,18.0,31.0,0.0,110.0,150.0,507.0,0.0,0.0,81.0,336.0,0.0,692.0,743.0,755.0,185.0,476.0,90.0,0.0,0.0,0.0,0.0,1015.0,1154.0,19.0,0.0,0.0,55.0,62.0,247.0,988.0,27.0,33.0,277.0,150.0,7250.0,0.0,0.0,70.0,67.0,0.0,28.0,18.0,0.0,0.0,639.0,0.0,151.0,1.0,16.0,27.0,428.0,47.0,0.0,0.0,62.0,195.0,605.0,15.0,27.0,149.0,0.0,0.0,237.0,3974.0,0.0,0.0,1824.0,296.0,4111.0,25552.0,0.0,0.0,0.0,120.0,378.0,69.0,87.0,0.0,9.0,1288.0,312.0,152.0,0.0,1958.0,0.0,0.0,0.0,0.0,775.0,1186.0,1198.0,774.0,0.0,2.0,230.0,48.0,40.0,96.0,0.0,111.0,391.0,0.0,0.0,0.0,0.0,140.0,53.0,415.0,607.0,69.0,0.0,0.0,0.0,0.0,324.0,44.0,35.0,0.0,210.0,1.0,173.0,0.0,83.0,0.0,0.0,486.0,1266.0,38.0,235.0,24.0,0.0,37.0,0.0,162.0,6068021.0,86.0,2373.0,3069.0,48.0,0.0,1158.0,100.0,0.0,0.0,397.0,0.0,0.0,18.0,98.0,1.0,106.0,431.0,0.0,80.0,116.0,981.0,809.0,284.0,198.0,1679.0,571.0,49.0,1541.0,1392.0,25.0,75.0,140.0,0.0,150.0,0.0,46.0,33.0,397.0,561.0,0.0,236.0,1.0,0.0,13.0,0.0,378.0,38.0,468.0,702.0,0.0,46.0,0.0,46.0,19.0,0.0,0.0,132.0,273.0,0.0,0.0,0.0,49.0,59.0,0.0,0.0,0.0,0.0,15.0,0.0,0.0,122.0,22.0,0.0,67.0,91.0,0.0,0.0,1425.0,0.0,0.0,703.0,328.0,35.0,0.0,39.0,17.0,589.0,0.0,16.0,0.0,0.0,0.0,0.0,242.0,0.0,0.0,27.0,1552.0,0.0,305.0,0.0,212.0,149.0,0.0,0.0,37.0,0.0,1.0,0.0,0.0,0.0,0.0,1348.0,3034.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1827.0,5155.0,0.0,0.0,0.0,28.0,292.0,97.0,8089.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1212.0,113.0,100.0,0.0,0.0,2009-11-22,,2009-47,12.956959070661494,12.812000000000001, +57,57,11.02,89.0,0.0,57.0,0.0,222.0,0.0,44.0,61.0,0.0,311.0,0.0,0.0,38.0,0.0,936.0,31.0,73.0,41.0,0.0,0.0,0.0,0.0,83.0,0.0,923.0,0.0,511.0,0.0,84.0,0.0,0.0,26.0,930.0,277.0,459.0,0.0,100.0,0.0,29.0,68.0,0.0,12.0,0.0,0.0,161.0,40.0,45.0,654.0,12.0,41.0,30.0,1110.0,60.0,34.0,124.0,322.0,436.0,27.0,71.0,0.0,465.0,61.0,71.0,416.0,18.0,0.0,11.0,83.0,266.0,192.0,0.0,1149.0,220.0,364.0,0.0,0.0,0.0,502.0,34.0,17.0,0.0,18.0,28.0,0.0,81.0,115.0,389.0,0.0,0.0,45.0,284.0,0.0,609.0,679.0,656.0,194.0,367.0,85.0,0.0,0.0,0.0,0.0,883.0,887.0,16.0,0.0,0.0,55.0,47.0,230.0,961.0,17.0,35.0,196.0,205.0,5114.0,0.0,0.0,44.0,55.0,0.0,18.0,13.0,0.0,0.0,536.0,0.0,107.0,0.0,20.0,27.0,297.0,47.0,0.0,0.0,54.0,145.0,454.0,14.0,27.0,130.0,0.0,0.0,183.0,3440.0,0.0,0.0,704.0,119.0,2189.0,12874.0,0.0,1.0,0.0,291.0,333.0,44.0,77.0,0.0,10.0,820.0,199.0,126.0,0.0,1529.0,0.0,0.0,0.0,0.0,978.0,880.0,1170.0,628.0,0.0,0.0,182.0,38.0,53.0,98.0,0.0,70.0,334.0,0.0,0.0,0.0,0.0,79.0,40.0,341.0,385.0,54.0,0.0,0.0,0.0,0.0,247.0,28.0,21.0,0.0,177.0,0.0,142.0,0.0,72.0,0.0,0.0,336.0,981.0,64.0,170.0,13.0,0.0,17.0,0.0,126.0,5016644.0,86.0,908.0,1427.0,38.0,0.0,882.0,65.0,0.0,0.0,316.0,0.0,0.0,13.0,87.0,0.0,107.0,333.0,0.0,51.0,130.0,732.0,752.0,247.0,98.0,1332.0,490.0,33.0,1002.0,865.0,23.0,74.0,155.0,0.0,143.0,0.0,48.0,20.0,358.0,449.0,0.0,189.0,0.0,0.0,9.0,0.0,291.0,19.0,340.0,535.0,0.0,33.0,0.0,44.0,27.0,0.0,0.0,121.0,200.0,0.0,0.0,0.0,54.0,51.0,0.0,0.0,0.0,0.0,11.0,0.0,0.0,87.0,23.0,0.0,57.0,91.0,0.0,0.0,1238.0,0.0,0.0,417.0,273.0,35.0,0.0,29.0,9.0,451.0,0.0,17.0,0.0,0.0,0.0,0.0,165.0,0.0,0.0,16.0,1130.0,0.0,281.0,0.0,149.0,95.0,0.0,0.0,29.0,0.0,4.0,0.0,0.0,0.0,0.0,871.0,1402.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1548.0,3843.0,0.0,0.0,0.0,23.0,486.0,92.0,6688.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1127.0,94.0,70.0,0.0,0.0,2009-11-29,,2009-48,10.942463070224349,10.678, +58,58,6.72,116.0,0.0,84.0,0.0,196.0,0.0,51.0,75.0,0.0,279.0,0.0,0.0,31.0,0.0,877.0,32.0,61.0,28.0,0.0,0.0,0.0,0.0,78.0,0.0,686.0,0.0,513.0,0.0,90.0,0.0,0.0,19.0,1035.0,227.0,408.0,0.0,155.0,0.0,22.0,55.0,0.0,17.0,0.0,0.0,97.0,57.0,63.0,642.0,16.0,60.0,22.0,1144.0,75.0,37.0,67.0,334.0,524.0,33.0,100.0,0.0,441.0,59.0,91.0,365.0,21.0,0.0,18.0,67.0,306.0,169.0,0.0,1077.0,232.0,417.0,0.0,0.0,0.0,483.0,45.0,9.0,0.0,17.0,20.0,0.0,73.0,114.0,385.0,0.0,0.0,53.0,284.0,0.0,539.0,648.0,642.0,156.0,417.0,96.0,0.0,0.0,0.0,0.0,687.0,897.0,5.0,0.0,0.0,38.0,55.0,186.0,822.0,26.0,24.0,248.0,139.0,4270.0,0.0,0.0,36.0,44.0,0.0,11.0,19.0,0.0,0.0,516.0,0.0,82.0,0.0,15.0,34.0,480.0,36.0,0.0,0.0,75.0,176.0,462.0,8.0,42.0,129.0,0.0,0.0,170.0,3376.0,0.0,0.0,373.0,90.0,1873.0,7668.0,0.0,0.0,0.0,195.0,327.0,62.0,80.0,1.0,9.0,828.0,248.0,117.0,0.0,1497.0,0.0,0.0,0.0,0.0,613.0,1084.0,1122.0,664.0,0.0,0.0,170.0,23.0,49.0,95.0,0.0,99.0,362.0,0.0,0.0,0.0,0.0,57.0,33.0,343.0,363.0,53.0,0.0,0.0,0.0,0.0,172.0,25.0,22.0,0.0,171.0,4.0,125.0,0.0,89.0,0.0,0.0,369.0,1005.0,91.0,199.0,11.0,0.0,25.0,0.0,114.0,5145113.0,69.0,623.0,907.0,44.0,0.0,813.0,60.0,0.0,0.0,357.0,0.0,0.0,12.0,61.0,0.0,88.0,269.0,0.0,99.0,122.0,740.0,731.0,252.0,115.0,1536.0,502.0,33.0,937.0,802.0,14.0,73.0,109.0,0.0,126.0,0.0,39.0,18.0,339.0,321.0,0.0,185.0,0.0,0.0,6.0,0.0,322.0,15.0,392.0,578.0,0.0,36.0,0.0,29.0,14.0,0.0,0.0,99.0,144.0,0.0,0.0,0.0,45.0,36.0,0.0,0.0,0.0,0.0,16.0,1.0,0.0,97.0,14.0,0.0,66.0,82.0,0.0,0.0,1265.0,0.0,0.0,486.0,314.0,29.0,0.0,31.0,8.0,405.0,0.0,8.0,0.0,0.0,0.0,0.0,198.0,0.0,0.0,35.0,1347.0,0.0,265.0,0.0,191.0,116.0,0.0,0.0,27.0,0.0,2.0,0.0,0.0,0.0,0.0,913.0,1036.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1415.0,3462.0,0.0,0.0,0.0,17.0,791.0,77.0,6445.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1221.0,86.0,88.0,0.0,0.0,2009-12-06,,2009-49,6.70175686098369,6.75, +59,59,3.76,99.0,0.0,59.0,0.0,154.0,0.0,53.0,59.0,0.0,255.0,0.0,0.0,50.0,0.0,835.0,35.0,62.0,48.0,0.0,0.0,0.0,0.0,188.0,0.0,597.0,0.0,383.0,0.0,83.0,0.0,0.0,16.0,878.0,141.0,387.0,0.0,135.0,0.0,22.0,67.0,0.0,25.0,0.0,0.0,90.0,46.0,48.0,972.0,18.0,48.0,23.0,1072.0,47.0,29.0,59.0,295.0,439.0,17.0,97.0,0.0,332.0,69.0,76.0,416.0,21.0,0.0,23.0,80.0,318.0,143.0,0.0,1019.0,237.0,374.0,0.0,0.0,0.0,442.0,34.0,19.0,0.0,15.0,19.0,0.0,123.0,107.0,428.0,0.0,0.0,47.0,238.0,0.0,530.0,598.0,624.0,138.0,318.0,80.0,0.0,0.0,0.0,0.0,738.0,814.0,6.0,0.0,0.0,46.0,37.0,254.0,648.0,37.0,29.0,158.0,101.0,3237.0,0.0,0.0,32.0,24.0,0.0,19.0,17.0,0.0,0.0,497.0,0.0,101.0,0.0,16.0,29.0,326.0,59.0,0.0,0.0,58.0,154.0,414.0,10.0,34.0,164.0,0.0,0.0,140.0,3200.0,0.0,0.0,198.0,41.0,936.0,4085.0,0.0,0.0,0.0,137.0,291.0,49.0,77.0,0.0,16.0,768.0,218.0,112.0,0.0,1537.0,0.0,0.0,0.0,0.0,583.0,972.0,900.0,561.0,0.0,1.0,171.0,35.0,51.0,77.0,0.0,94.0,316.0,0.0,0.0,0.0,0.0,59.0,46.0,337.0,284.0,33.0,0.0,0.0,0.0,0.0,165.0,29.0,14.0,0.0,163.0,0.0,124.0,0.0,77.0,0.0,0.0,311.0,971.0,66.0,159.0,17.0,0.0,23.0,0.0,134.0,4756152.0,69.0,288.0,538.0,37.0,0.0,703.0,96.0,0.0,0.0,287.0,0.0,0.0,20.0,54.0,0.0,86.0,261.0,0.0,62.0,87.0,662.0,633.0,244.0,129.0,1335.0,368.0,37.0,800.0,700.0,24.0,62.0,144.0,0.0,124.0,0.0,25.0,30.0,303.0,214.0,0.0,157.0,0.0,0.0,8.0,0.0,273.0,16.0,404.0,520.0,0.0,40.0,0.0,26.0,20.0,0.0,0.0,139.0,137.0,0.0,0.0,0.0,60.0,40.0,0.0,0.0,0.0,0.0,16.0,0.0,0.0,92.0,15.0,0.0,54.0,90.0,0.0,0.0,1067.0,0.0,0.0,380.0,292.0,29.0,0.0,38.0,15.0,444.0,0.0,22.0,0.0,0.0,0.0,0.0,172.0,0.0,0.0,33.0,953.0,0.0,235.0,0.0,154.0,108.0,0.0,0.0,41.0,0.0,2.0,0.0,0.0,0.0,0.0,776.0,678.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1383.0,2822.0,0.0,0.0,0.0,18.0,192.0,61.0,6115.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1174.0,105.0,68.0,0.0,0.0,2009-12-13,,2009-50,3.792772283095462,3.76, +60,60,2.25,113.0,0.0,78.0,0.0,144.0,0.0,49.0,78.0,0.0,264.0,0.0,0.0,31.0,0.0,901.0,32.0,81.0,41.0,0.0,0.0,0.0,0.0,96.0,0.0,547.0,0.0,324.0,0.0,43.0,0.0,0.0,13.0,902.0,237.0,463.0,0.0,113.0,0.0,27.0,60.0,0.0,9.0,0.0,7.0,109.0,38.0,42.0,570.0,13.0,33.0,15.0,1006.0,76.0,37.0,75.0,261.0,463.0,22.0,84.0,0.0,325.0,60.0,48.0,348.0,18.0,0.0,17.0,60.0,282.0,205.0,0.0,1064.0,213.0,393.0,0.0,0.0,0.0,446.0,25.0,18.0,0.0,12.0,33.0,0.0,86.0,87.0,304.0,0.0,0.0,65.0,231.0,0.0,479.0,546.0,545.0,160.0,314.0,81.0,0.0,0.0,0.0,0.0,822.0,780.0,9.0,0.0,0.0,51.0,46.0,228.0,558.0,17.0,30.0,176.0,97.0,2959.0,0.0,0.0,27.0,19.0,0.0,15.0,13.0,0.0,0.0,490.0,0.0,78.0,0.0,15.0,28.0,326.0,35.0,0.0,0.0,78.0,146.0,401.0,9.0,28.0,300.0,0.0,0.0,131.0,2875.0,0.0,0.0,111.0,40.0,822.0,2554.0,0.0,1.0,0.0,133.0,256.0,56.0,63.0,0.0,7.0,875.0,190.0,113.0,0.0,1578.0,0.0,0.0,0.0,0.0,483.0,964.0,857.0,575.0,0.0,0.0,179.0,27.0,41.0,72.0,0.0,100.0,305.0,0.0,0.0,0.0,0.0,49.0,36.0,368.0,277.0,44.0,0.0,0.0,0.0,0.0,157.0,21.0,12.0,0.0,167.0,1.0,93.0,0.0,86.0,0.0,0.0,339.0,1010.0,70.0,174.0,18.0,0.0,18.0,0.0,118.0,4696461.0,58.0,222.0,352.0,29.0,0.0,643.0,74.0,0.0,0.0,243.0,0.0,0.0,6.0,52.0,0.0,82.0,254.0,0.0,61.0,100.0,674.0,644.0,237.0,108.0,1307.0,413.0,31.0,886.0,745.0,21.0,47.0,138.0,0.0,123.0,0.0,25.0,21.0,291.0,254.0,0.0,169.0,0.0,0.0,6.0,0.0,247.0,3.0,361.0,498.0,0.0,28.0,0.0,33.0,17.0,0.0,0.0,141.0,149.0,0.0,0.0,0.0,54.0,52.0,0.0,0.0,0.0,0.0,15.0,0.0,0.0,77.0,18.0,0.0,34.0,67.0,0.0,0.0,1087.0,0.0,0.0,457.0,227.0,28.0,0.0,20.0,22.0,375.0,0.0,15.0,0.0,0.0,0.0,0.0,198.0,0.0,0.0,35.0,987.0,0.0,230.0,0.0,165.0,92.0,0.0,0.0,27.0,0.0,2.0,0.0,0.0,0.0,0.0,639.0,639.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1249.0,2423.0,0.0,0.0,0.0,24.0,243.0,62.0,5336.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1193.0,99.0,63.0,0.0,0.0,2009-12-20,,2009-51,2.1923464973980176,2.474, +61,61,1.84,174.0,0.0,58.0,0.0,166.0,0.0,56.0,47.0,0.0,332.0,0.0,0.0,22.0,0.0,952.0,29.0,89.0,21.0,0.0,0.0,0.0,0.0,52.0,0.0,550.0,0.0,340.0,0.0,44.0,0.0,0.0,14.0,958.0,174.0,448.0,0.0,117.0,0.0,31.0,69.0,0.0,15.0,0.0,10.0,95.0,35.0,52.0,561.0,5.0,42.0,13.0,1033.0,56.0,38.0,50.0,296.0,485.0,20.0,103.0,0.0,343.0,50.0,78.0,326.0,12.0,0.0,8.0,62.0,264.0,171.0,0.0,1044.0,242.0,407.0,0.0,0.0,0.0,449.0,31.0,11.0,0.0,14.0,23.0,0.0,52.0,114.0,391.0,0.0,0.0,40.0,235.0,0.0,549.0,617.0,576.0,133.0,345.0,66.0,0.0,0.0,0.0,0.0,1114.0,845.0,10.0,0.0,0.0,46.0,28.0,203.0,627.0,18.0,24.0,188.0,119.0,3008.0,0.0,0.0,31.0,38.0,0.0,17.0,14.0,0.0,0.0,520.0,0.0,80.0,0.0,13.0,28.0,335.0,45.0,0.0,0.0,56.0,151.0,407.0,11.0,27.0,134.0,0.0,0.0,121.0,3174.0,0.0,0.0,73.0,27.0,609.0,1712.0,0.0,0.0,0.0,136.0,277.0,38.0,88.0,0.0,7.0,1513.0,223.0,90.0,0.0,1646.0,0.0,0.0,0.0,0.0,557.0,1187.0,895.0,509.0,0.0,1.0,138.0,33.0,35.0,90.0,0.0,82.0,284.0,0.0,0.0,0.0,0.0,40.0,33.0,328.0,305.0,30.0,0.0,0.0,0.0,0.0,172.0,17.0,14.0,0.0,158.0,1.0,149.0,0.0,79.0,0.0,0.0,335.0,936.0,85.0,149.0,26.0,0.0,25.0,0.0,124.0,5022272.0,55.0,116.0,306.0,27.0,0.0,710.0,91.0,0.0,0.0,279.0,0.0,0.0,9.0,53.0,0.0,68.0,224.0,0.0,69.0,64.0,626.0,605.0,260.0,98.0,1321.0,408.0,37.0,1075.0,874.0,20.0,77.0,197.0,1.0,144.0,0.0,43.0,13.0,329.0,244.0,0.0,162.0,0.0,0.0,5.0,0.0,272.0,17.0,396.0,537.0,0.0,34.0,0.0,30.0,15.0,0.0,0.0,109.0,122.0,0.0,0.0,0.0,66.0,48.0,0.0,0.0,0.0,0.0,13.0,0.0,0.0,68.0,15.0,0.0,37.0,90.0,0.0,0.0,1155.0,0.0,0.0,530.0,344.0,35.0,0.0,29.0,10.0,382.0,0.0,16.0,0.0,0.0,0.0,0.0,189.0,0.0,0.0,15.0,964.0,0.0,187.0,0.0,174.0,109.0,0.0,0.0,21.0,0.0,4.0,0.0,0.0,0.0,0.0,696.0,619.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1250.0,2478.0,0.0,0.0,0.0,25.0,140.0,56.0,5875.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1058.0,87.0,82.0,0.0,0.0,2009-12-27,,2009-52,1.8811858349950485,3.18, +62,62,1.32,144.0,0.0,44.0,0.0,147.0,0.0,41.0,53.0,0.0,276.0,0.0,0.0,19.0,0.0,772.0,22.0,41.0,36.0,0.0,0.0,0.0,0.0,51.0,0.0,621.0,0.0,321.0,0.0,69.0,0.0,0.0,20.0,836.0,121.0,281.0,0.0,103.0,0.0,25.0,52.0,0.0,17.0,0.0,7.0,43.0,40.0,29.0,489.0,7.0,50.0,16.0,842.0,45.0,16.0,65.0,222.0,506.0,15.0,83.0,0.0,282.0,64.0,65.0,291.0,13.0,0.0,22.0,61.0,273.0,111.0,0.0,828.0,145.0,228.0,0.0,0.0,0.0,364.0,34.0,11.0,0.0,16.0,28.0,0.0,46.0,63.0,284.0,0.0,0.0,28.0,175.0,0.0,419.0,447.0,472.0,133.0,281.0,50.0,0.0,0.0,0.0,0.0,882.0,759.0,7.0,0.0,0.0,49.0,25.0,121.0,630.0,12.0,19.0,144.0,89.0,2813.0,0.0,0.0,26.0,24.0,0.0,13.0,12.0,0.0,0.0,364.0,0.0,59.0,0.0,14.0,22.0,335.0,28.0,0.0,0.0,43.0,119.0,368.0,9.0,22.0,88.0,0.0,0.0,113.0,2064.0,0.0,0.0,76.0,28.0,666.0,1326.0,0.0,0.0,0.0,114.0,318.0,45.0,36.0,0.0,4.0,1212.0,127.0,77.0,0.0,1350.0,0.0,0.0,0.0,0.0,493.0,850.0,731.0,450.0,0.0,0.0,121.0,18.0,40.0,74.0,0.0,73.0,256.0,0.0,0.0,0.0,0.0,41.0,30.0,218.0,187.0,26.0,0.0,0.0,0.0,0.0,145.0,17.0,13.0,0.0,128.0,0.0,117.0,0.0,69.0,0.0,0.0,276.0,739.0,125.0,130.0,14.0,0.0,19.0,0.0,116.0,5112082.0,45.0,96.0,238.0,28.0,0.0,475.0,63.0,0.0,0.0,241.0,0.0,0.0,6.0,48.0,0.0,78.0,149.0,0.0,31.0,58.0,480.0,425.0,191.0,73.0,1356.0,294.0,62.0,1344.0,1255.0,15.0,44.0,119.0,0.0,101.0,1.0,39.0,12.0,281.0,200.0,0.0,128.0,3.0,0.0,7.0,0.0,243.0,19.0,272.0,466.0,0.0,23.0,0.0,23.0,11.0,0.0,0.0,116.0,115.0,0.0,0.0,0.0,38.0,25.0,0.0,0.0,0.0,0.0,13.0,0.0,0.0,52.0,18.0,0.0,32.0,41.0,0.0,0.0,1018.0,0.0,0.0,473.0,228.0,36.0,0.0,25.0,13.0,319.0,0.0,13.0,0.0,0.0,0.0,0.0,136.0,0.0,0.0,12.0,746.0,0.0,220.0,0.0,126.0,111.0,0.0,0.0,17.0,0.0,1.0,0.0,0.0,0.0,0.0,444.0,359.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1205.0,1621.0,0.0,0.0,0.0,16.0,94.0,41.0,4874.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1244.0,66.0,60.0,0.0,0.0,2010-01-03,,2009-53,1.2839434453855307,1.968, +63,63,1.36,140.0,0.0,50.0,0.0,240.0,0.0,48.0,82.0,0.0,345.0,0.0,0.0,33.0,0.0,857.0,29.0,67.0,41.0,0.0,0.0,0.0,0.0,58.0,0.0,786.0,0.0,420.0,0.0,54.0,0.0,0.0,23.0,1002.0,138.0,488.0,0.0,135.0,0.0,53.0,64.0,0.0,13.0,0.0,8.0,182.0,39.0,50.0,800.0,11.0,2103.0,23.0,1177.0,83.0,28.0,70.0,300.0,615.0,36.0,82.0,0.0,333.0,76.0,78.0,387.0,22.0,0.0,14.0,86.0,333.0,178.0,0.0,1128.0,275.0,436.0,0.0,0.0,0.0,555.0,38.0,24.0,0.0,17.0,23.0,0.0,73.0,128.0,364.0,1.0,0.0,57.0,318.0,0.0,562.0,623.0,657.0,169.0,331.0,83.0,0.0,0.0,0.0,0.0,1117.0,882.0,7.0,0.0,0.0,42.0,49.0,195.0,727.0,19.0,18.0,241.0,117.0,3291.0,0.0,0.0,29.0,33.0,0.0,8.0,19.0,0.0,0.0,511.0,0.0,70.0,0.0,21.0,23.0,394.0,30.2,0.0,0.0,72.0,133.0,470.0,11.0,23.6,142.0,0.0,0.0,164.0,3161.0,0.0,0.0,54.0,24.0,625.0,1264.0,0.0,0.0,0.0,125.0,327.0,51.0,69.0,2.0,15.0,1125.0,223.0,104.0,0.0,1715.0,0.0,0.0,0.0,0.0,561.0,1101.0,1329.0,668.0,0.0,0.0,126.0,31.0,44.0,82.0,0.0,108.0,357.0,0.0,0.0,0.0,0.0,53.0,28.0,314.0,344.0,37.0,0.0,0.0,0.0,0.0,166.0,32.0,20.0,0.0,193.0,0.0,131.0,0.0,87.0,0.0,0.0,396.0,1036.0,65.0,160.0,16.0,0.0,20.8,0.0,177.0,5145754.0,70.0,95.0,258.0,37.0,0.0,680.0,81.0,0.0,0.0,319.0,0.0,0.0,6.0,41.0,1.0,101.0,213.0,0.0,57.0,73.0,665.0,671.0,283.0,112.0,1601.0,591.0,53.0,1265.0,1179.0,16.5,69.0,163.0,1.0,134.0,0.0,43.0,12.4,292.0,288.0,0.0,198.0,0.0,0.0,7.0,0.0,356.0,27.0,444.0,629.0,0.0,45.0,0.0,20.0,16.0,0.0,0.0,138.0,150.0,0.0,0.0,0.0,72.0,63.0,0.0,0.0,0.0,0.0,10.0,0.0,0.0,68.0,22.0,0.0,63.0,96.0,0.0,0.0,1311.0,0.0,0.0,614.0,364.0,55.0,0.0,23.0,10.0,454.0,0.0,17.0,0.0,0.0,0.0,0.0,247.0,0.0,0.0,22.0,1004.0,0.0,314.0,0.0,158.0,104.0,0.0,0.0,19.0,0.0,1.0,0.0,0.0,0.0,0.0,708.0,539.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1481.75,3077.0,0.0,0.0,0.0,16.0,117.0,71.0,5262.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1483.0,121.0,97.0,0.0,0.0,2010-01-10,,2010-1,1.2906776890948795,1.3600000000000003, +64,64,1.47,215.0,0.0,86.0,0.0,191.0,0.0,69.0,107.0,0.0,477.0,0.0,0.0,54.0,0.0,1122.0,45.0,78.0,61.0,0.0,0.0,0.0,0.0,100.0,0.0,836.0,0.0,449.0,0.0,92.0,0.0,0.0,32.0,1419.0,193.0,585.0,0.0,154.0,0.0,52.0,109.0,0.0,20.0,0.0,8.0,124.0,54.0,60.0,751.0,12.0,1158.0,18.0,1593.0,106.0,30.0,88.0,420.0,776.0,34.0,103.0,0.0,457.0,79.0,75.0,525.0,21.0,0.0,22.0,117.0,450.0,223.0,0.0,1333.0,359.0,474.0,0.0,0.0,0.0,635.0,34.0,17.0,0.0,20.0,39.0,0.0,71.0,153.0,390.0,0.0,0.0,85.0,346.0,0.0,672.0,789.0,753.0,222.0,410.0,116.0,0.0,0.0,0.0,0.0,1184.0,1138.0,8.0,0.0,0.0,69.0,72.0,322.0,590.0,15.0,22.0,991.0,125.0,3511.0,0.0,0.0,32.0,55.0,0.0,15.0,10.0,0.0,0.0,760.0,0.0,96.0,2.0,13.0,30.0,414.0,32.4,0.0,0.0,64.0,172.0,578.0,9.0,25.2,171.0,0.0,0.0,184.0,4165.0,0.0,0.0,69.0,49.0,609.0,1000.0,0.0,1.0,0.0,179.0,378.0,67.0,78.0,0.0,15.0,1134.0,261.0,139.0,0.0,2085.0,0.0,0.0,0.0,0.0,749.0,1838.0,1210.0,679.0,0.0,0.0,209.0,31.0,58.0,112.0,0.0,126.0,374.0,0.0,0.0,0.0,0.0,69.0,55.0,351.0,465.0,47.0,0.0,0.0,0.0,0.0,221.0,34.0,21.0,0.0,227.0,0.0,146.0,0.0,98.0,0.0,0.0,462.0,1188.0,87.0,236.0,19.0,0.0,22.6,0.0,200.0,5592351.0,73.0,139.0,236.0,38.0,0.0,814.0,91.0,0.0,0.0,382.0,0.0,0.0,6.0,56.0,1.0,121.0,328.0,0.0,71.0,112.0,838.0,760.0,354.0,116.0,1682.0,590.0,79.0,1317.0,1242.0,18.0,83.0,180.0,1.0,154.0,0.0,46.0,12.8,431.0,309.0,0.0,248.0,0.0,0.0,3.0,0.0,362.0,32.0,557.0,737.0,0.0,57.0,0.0,29.0,18.0,0.0,0.0,217.0,149.0,0.0,0.0,0.0,76.0,50.0,0.0,0.0,0.0,0.0,22.0,0.0,0.0,80.0,24.0,0.0,65.0,122.0,0.0,0.0,1568.0,0.0,0.0,581.0,480.0,47.0,0.0,38.0,8.0,517.0,0.0,14.0,0.0,0.0,0.0,0.0,337.0,0.0,0.0,49.0,1337.0,0.0,620.0,0.0,198.0,160.0,0.0,0.0,30.0,0.0,2.0,0.0,0.0,0.0,0.0,958.0,757.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1758.5,3566.0,0.0,0.0,0.0,21.0,149.0,75.0,7494.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1596.0,116.0,110.0,0.0,0.0,2010-01-17,,2010-2,1.5247091274434084,1.6, +65,65,1.67,166.0,0.0,77.0,0.0,216.0,0.0,63.0,81.0,0.0,292.0,0.0,0.0,50.0,0.0,977.0,40.0,88.0,30.0,0.0,0.0,0.0,0.0,114.0,0.0,573.0,0.0,404.0,0.0,49.0,0.0,0.0,28.0,1208.0,173.0,448.0,0.0,144.0,0.0,28.0,63.0,0.0,16.0,0.0,5.0,131.0,50.0,54.0,736.0,12.0,568.0,12.0,1201.0,62.0,37.0,70.0,308.0,580.0,21.0,79.0,0.0,371.0,70.0,80.0,397.0,15.0,0.0,14.0,70.0,356.0,201.0,0.0,1146.0,287.0,452.0,0.0,0.0,0.0,525.0,40.0,27.0,0.0,19.0,29.0,0.0,58.0,128.0,412.0,0.0,0.0,62.0,335.0,0.0,659.0,716.0,751.0,177.0,398.0,83.0,0.0,0.0,0.0,0.0,1018.0,905.0,10.0,0.0,0.0,71.0,57.0,294.0,622.0,7.0,23.0,226.0,81.0,2855.0,0.0,0.0,19.0,35.0,0.0,14.0,6.0,0.0,0.0,488.0,0.0,76.0,0.0,13.0,17.0,351.0,34.6,0.0,0.0,67.0,217.0,471.0,5.0,26.8,131.0,0.0,0.0,178.0,3337.0,0.0,0.0,42.0,13.0,443.0,677.0,0.0,0.0,0.0,146.0,289.0,66.0,62.0,0.0,6.0,906.0,246.0,135.0,0.0,1665.0,0.0,0.0,0.0,0.0,600.0,1939.0,1149.0,586.0,0.0,2.0,167.0,27.0,57.0,78.0,0.0,111.0,382.0,0.0,0.0,0.0,0.0,39.0,38.0,507.0,374.0,30.0,0.0,0.0,0.0,0.0,169.0,26.0,14.0,0.0,162.0,2.0,113.0,0.0,87.0,0.0,0.0,327.0,1049.0,55.0,146.0,11.0,0.0,24.4,0.0,177.0,4193212.0,68.0,86.0,178.0,40.0,0.0,742.0,70.0,0.0,0.0,318.0,0.0,0.0,6.0,49.0,0.0,90.0,240.0,0.0,88.0,90.0,639.0,582.0,248.0,104.0,1256.0,520.0,55.0,1119.0,984.0,19.5,95.0,191.0,0.0,175.0,0.0,51.0,13.2,340.0,211.0,0.0,197.0,0.0,0.0,5.0,0.0,319.0,22.0,393.0,633.0,0.0,40.0,0.0,24.0,17.0,0.0,0.0,129.0,128.0,0.0,0.0,0.0,62.0,34.0,0.0,0.0,0.0,0.0,10.0,0.0,0.0,54.0,19.0,0.0,42.0,92.0,0.0,0.0,1455.0,0.0,0.0,413.0,426.0,43.0,0.0,21.0,5.0,428.0,0.0,16.0,0.0,0.0,0.0,0.0,174.0,0.0,0.0,23.0,1064.0,0.0,403.0,0.0,183.0,117.0,0.0,0.0,11.0,0.0,1.0,0.0,0.0,0.0,0.0,779.0,639.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2035.25,2680.0,0.0,0.0,0.0,24.0,132.0,45.0,6044.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1331.0,87.0,84.0,0.0,0.0,2010-01-24,,2010-3,1.6658668671115793,1.67, +66,66,1.91,243.0,0.0,91.0,0.0,296.0,0.0,125.0,104.0,0.0,429.0,0.0,0.0,49.0,0.0,1338.0,56.0,129.0,46.0,0.0,0.0,0.0,0.0,162.0,0.0,861.0,0.0,515.0,0.0,98.0,0.0,0.0,30.0,1262.0,203.0,662.0,0.0,222.0,0.0,60.0,62.0,0.0,21.0,0.0,10.0,147.0,59.0,54.0,974.0,27.0,562.0,30.0,1507.0,98.0,45.0,97.0,417.0,684.0,28.0,145.0,0.0,466.0,66.0,108.0,506.0,23.0,0.0,25.0,100.0,463.0,235.0,0.0,1328.0,367.0,592.0,0.0,0.0,0.0,665.0,44.0,16.0,0.0,15.0,29.0,0.0,96.0,155.0,509.0,0.0,0.0,99.0,376.0,0.0,748.0,794.0,826.0,217.0,473.0,132.0,0.0,0.0,0.0,0.0,1292.0,1316.0,17.0,0.0,0.0,83.0,72.0,345.0,973.0,17.0,29.0,339.0,161.0,3986.0,0.0,0.0,42.0,34.0,0.0,23.0,11.0,0.0,0.0,676.0,0.0,126.0,0.0,17.0,28.0,490.0,36.8,0.0,0.0,104.0,201.0,566.0,28.0,28.4,217.0,0.0,0.0,232.0,4213.0,0.0,0.0,62.0,32.0,573.0,777.0,0.0,0.0,0.0,210.0,455.0,81.0,117.0,0.0,13.0,1268.0,324.0,142.0,0.0,2725.0,0.0,0.0,0.0,0.0,623.0,4046.0,1277.0,788.0,0.0,0.0,210.0,42.0,81.0,124.0,3.0,141.0,459.0,0.0,0.0,0.0,0.0,70.0,56.0,432.0,498.0,44.0,0.0,0.0,0.0,0.0,270.0,27.0,28.0,0.0,226.0,0.0,149.0,0.0,105.0,0.0,0.0,491.0,1288.0,96.0,270.0,24.0,0.0,26.2,2.0,231.0,5675409.0,80.0,123.0,166.0,45.0,0.0,944.0,75.0,0.0,0.0,431.0,0.0,0.0,11.0,59.0,0.0,138.0,354.0,0.0,101.0,131.0,1040.0,852.0,454.0,187.0,1657.0,686.0,113.0,1511.0,1431.0,21.0,133.0,248.0,0.0,231.0,0.0,72.0,13.6,496.0,352.0,0.0,240.0,1.0,0.0,9.0,0.0,508.0,14.0,480.0,764.0,0.0,26.0,0.0,32.0,33.0,0.0,0.0,237.0,176.0,0.0,0.0,0.0,94.0,53.0,0.0,0.0,0.0,0.0,14.0,0.0,0.0,76.0,17.0,0.0,57.0,123.0,0.0,0.0,1711.0,0.0,0.0,580.0,579.0,83.0,0.0,43.0,9.0,542.0,0.0,15.0,0.0,0.0,0.0,0.0,272.0,0.0,0.0,23.0,1441.0,0.0,3758.0,0.0,201.0,115.0,0.0,0.0,21.0,0.0,1.0,0.0,0.0,0.0,0.0,1066.0,705.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2312.0,4083.0,0.0,0.0,0.0,26.0,244.0,70.0,7940.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1603.0,149.0,108.0,0.0,0.0,2010-01-31,,2010-4,1.9510085283921494,2.16, +67,67,2.0,250.0,0.0,129.0,0.0,304.0,0.0,117.0,111.0,0.0,426.0,0.0,0.0,67.0,0.0,1384.0,56.0,130.0,46.0,0.0,0.0,0.0,0.0,132.0,0.0,848.0,0.0,656.0,0.0,91.0,0.0,0.0,29.0,1393.0,247.0,685.0,0.0,190.0,0.0,53.0,78.0,0.0,28.0,0.0,8.0,134.0,89.0,55.0,1199.0,15.0,449.0,36.0,1535.0,110.0,55.0,85.0,446.0,738.0,31.0,84.0,0.0,528.0,80.0,121.0,501.0,20.0,0.0,37.0,130.0,595.0,251.0,0.0,1434.0,428.0,645.0,0.0,0.0,0.0,725.0,50.0,19.0,0.0,28.0,33.0,2.0,89.0,160.0,574.0,0.0,0.0,82.0,444.0,0.0,798.0,834.0,780.0,243.0,514.0,133.0,0.0,0.0,0.0,0.0,1464.0,1410.0,21.0,0.0,0.0,89.0,58.0,319.0,692.0,23.0,46.0,310.0,137.0,3954.0,0.0,0.0,49.0,41.0,0.0,19.0,22.0,0.0,0.0,654.0,0.0,113.0,0.0,27.0,41.0,446.0,39.0,0.0,0.0,108.0,224.0,783.0,17.0,30.0,245.0,0.0,0.0,226.0,4896.0,0.0,0.0,65.0,31.0,641.0,779.0,0.0,0.0,0.0,207.0,432.0,81.0,118.0,0.0,20.0,1900.0,344.0,124.0,0.0,2439.0,0.0,0.0,0.0,0.0,700.0,8451.0,1381.0,793.0,0.0,0.0,216.0,27.0,113.0,134.0,0.0,1126.0,493.0,0.0,0.0,0.0,0.0,53.0,37.0,423.0,526.0,34.0,0.0,0.0,0.0,0.0,222.0,30.0,22.0,0.0,254.0,1.0,169.0,0.0,100.0,0.0,0.0,577.0,1418.0,91.0,266.0,23.0,0.0,28.0,0.0,242.0,5829350.0,75.0,137.0,155.0,49.0,0.0,920.0,109.0,0.0,0.0,499.0,0.0,0.0,11.0,94.0,0.0,85.0,281.0,0.0,85.0,185.0,1015.0,896.0,395.0,176.0,1968.0,630.0,120.0,1650.0,1564.0,22.5,108.0,220.0,0.0,259.0,0.0,63.0,14.0,480.0,425.0,0.0,273.0,0.0,0.0,3.0,0.0,405.0,20.0,579.0,795.0,0.0,62.0,0.0,24.0,19.0,0.0,0.0,238.0,216.0,0.0,0.0,0.0,112.0,60.0,0.0,0.0,0.0,0.0,17.0,0.0,0.0,108.0,18.0,0.0,41.0,187.0,0.0,0.0,1702.0,0.0,0.0,558.0,584.0,85.0,0.0,41.0,14.0,638.0,0.0,13.0,0.0,0.0,0.0,0.0,293.0,0.0,0.0,39.0,1652.0,0.0,744.0,0.0,201.0,131.0,0.0,0.0,32.0,0.0,1.0,0.0,0.0,0.0,0.0,1037.0,859.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2323.0,3959.0,0.0,0.0,0.0,33.0,149.0,119.0,8605.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1762.0,179.0,126.0,0.0,0.0,2010-02-07,,2010-5,1.985675287404181,2.288, +68,68,2.12,266.0,0.0,94.0,0.0,286.0,0.0,75.0,124.0,0.0,381.0,0.0,0.0,40.0,0.0,1246.0,58.0,129.0,34.0,0.0,0.0,0.0,0.0,153.0,0.0,959.0,0.0,533.0,0.0,91.0,0.0,0.0,16.0,1279.0,183.0,634.0,0.0,187.0,0.0,44.0,67.0,0.0,23.0,0.0,4.0,128.0,75.0,67.0,1224.0,15.0,310.0,30.0,1419.0,149.0,35.0,75.0,377.0,652.0,19.0,82.0,0.0,476.0,94.0,106.0,541.0,36.0,0.0,29.0,114.0,481.0,227.0,0.0,1360.0,317.0,595.0,0.0,0.0,0.0,683.0,66.0,9.0,0.0,9.0,22.0,0.0,73.0,146.0,455.0,0.0,0.0,96.0,370.0,0.0,696.0,801.0,747.0,223.0,467.0,112.0,0.0,0.0,0.0,0.0,1212.0,1171.0,11.0,0.0,0.0,82.0,36.0,274.0,512.0,23.0,30.0,279.0,110.0,3675.0,0.0,0.0,45.0,36.0,0.0,18.0,21.0,0.0,0.0,637.0,0.0,112.0,0.0,18.0,33.0,401.0,67.0,0.0,0.0,73.0,185.0,544.0,12.0,29.0,222.0,0.0,0.0,229.0,4051.0,0.0,0.0,62.0,25.0,606.0,672.0,0.0,0.0,0.0,219.0,352.0,91.0,106.0,0.0,17.0,1549.0,382.0,153.0,0.0,2316.0,0.0,0.0,0.0,0.0,515.0,1840.0,1309.0,681.0,0.0,0.0,226.0,35.0,55.0,110.0,0.0,493.0,399.0,0.0,0.0,0.0,0.0,53.0,33.0,427.0,447.0,42.0,0.0,0.0,0.0,0.0,161.0,27.0,20.0,0.0,204.0,1.0,161.0,0.0,83.0,0.0,0.0,508.0,1324.0,83.0,237.0,26.0,0.0,32.0,0.0,218.0,5359931.0,69.0,92.0,147.0,35.0,0.0,931.0,84.0,0.0,0.0,482.0,0.0,0.0,12.0,49.0,1.0,99.0,289.0,0.0,84.0,161.0,963.0,756.0,343.0,121.0,1527.0,636.0,153.0,1403.0,1275.0,24.0,86.0,194.0,0.0,199.0,0.0,40.0,23.0,397.0,348.0,0.0,271.0,0.0,0.0,6.0,0.0,324.0,18.0,508.0,741.0,0.0,47.0,0.0,29.0,23.0,0.0,0.0,221.0,196.0,0.0,0.0,0.0,112.0,47.0,0.0,0.0,0.0,0.0,21.0,0.0,0.0,100.0,17.0,0.0,56.0,95.0,0.0,0.0,1540.0,0.0,0.0,472.0,534.0,40.0,0.0,47.0,6.0,545.0,0.0,18.0,0.0,0.0,0.0,0.0,284.0,0.0,0.0,20.0,1434.0,0.0,395.0,0.0,177.0,108.0,0.0,0.0,29.0,0.0,4.0,0.0,0.0,0.0,1.0,1049.0,810.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2057.0,3424.0,0.0,0.0,0.0,33.0,167.0,96.0,9091.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1634.0,131.0,125.0,0.0,0.0,2010-02-14,,2010-6,2.0948867603262524,1.8840000000000003, +69,69,2.07,228.0,0.0,134.0,0.0,335.0,0.0,64.0,128.0,0.0,375.0,0.0,0.0,71.0,0.0,1307.0,45.0,109.0,38.0,0.0,0.0,0.0,0.0,174.0,0.0,995.0,0.0,566.0,0.0,88.0,0.0,0.0,36.0,1384.0,167.0,718.0,0.0,198.0,0.0,48.0,54.0,0.0,34.0,0.0,6.0,153.0,53.0,56.0,981.0,22.0,287.0,33.0,1588.0,179.0,53.0,90.0,423.0,702.0,54.0,401.0,0.0,524.0,74.0,71.0,491.0,19.0,0.0,20.0,131.0,511.0,253.0,0.0,1413.0,328.0,636.0,0.0,0.0,0.0,730.0,50.0,11.0,0.0,10.0,25.0,0.0,90.0,145.0,551.0,0.0,0.0,82.0,348.0,0.0,736.0,790.0,769.0,191.0,470.0,125.0,0.0,0.0,0.0,0.0,1278.0,1723.0,20.0,0.0,0.0,84.0,74.0,363.0,689.0,16.0,43.0,288.0,118.0,3951.0,0.0,0.0,34.0,36.0,0.0,25.0,19.0,0.0,0.0,568.0,0.0,116.0,0.0,25.0,32.0,402.0,62.0,0.0,0.0,107.0,179.0,1965.0,13.0,48.0,238.0,0.0,0.0,205.0,4588.0,1.0,0.0,53.0,31.0,650.0,655.0,0.0,2.0,0.0,203.0,433.0,84.0,96.0,0.0,6.0,1017.0,315.0,178.0,0.0,2243.0,0.0,0.0,0.0,0.0,564.0,1442.0,1308.0,817.0,0.0,4.0,229.0,24.0,70.0,140.0,0.0,148.0,539.0,0.0,1.0,0.0,0.0,49.0,34.0,443.0,480.0,31.0,0.0,0.0,0.0,0.0,211.0,36.0,22.0,0.0,206.0,0.0,156.0,0.0,107.0,0.0,0.0,435.0,1334.0,96.0,263.0,40.0,0.0,34.0,0.0,265.0,5482989.0,88.0,97.0,164.0,47.0,0.0,925.0,75.0,0.0,0.0,510.0,1.0,0.0,8.0,58.0,0.0,105.0,264.0,0.0,89.0,142.0,1023.0,726.0,380.0,203.0,1580.0,624.0,138.0,1319.0,1165.0,31.0,124.0,243.0,0.0,232.0,0.0,37.0,29.0,461.0,342.0,0.0,275.0,0.0,0.0,6.0,0.0,353.0,16.0,567.0,764.0,0.0,50.0,0.0,31.0,24.0,0.0,0.0,209.0,568.0,0.0,0.0,0.0,93.0,63.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,109.0,24.0,0.0,49.0,73.0,0.0,0.0,1566.0,0.0,0.0,493.0,540.0,46.0,0.0,48.0,20.0,493.0,0.0,16.0,0.0,0.0,0.0,0.0,311.0,0.0,0.0,28.0,1515.0,0.0,325.0,0.0,140.0,103.0,0.0,0.0,30.0,0.0,1.0,0.0,0.0,0.0,0.0,1344.0,804.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2215.0,3554.0,0.0,0.0,0.0,36.0,143.0,71.0,7792.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1940.0,143.0,100.0,0.0,0.0,2010-02-21,,2010-7,2.083060478049598,1.8599999999999999, +70,70,1.98,183.0,0.0,112.0,0.0,312.0,0.0,52.0,127.0,0.0,295.0,0.0,0.0,49.0,0.0,1149.0,38.0,95.0,36.0,0.0,0.0,0.0,0.0,156.0,0.0,873.0,0.0,543.0,0.0,67.0,0.0,0.0,23.0,1145.0,157.0,504.0,0.0,173.0,0.0,47.0,53.0,0.0,20.0,0.0,6.0,184.0,60.0,56.0,870.0,18.0,203.0,20.0,1355.0,182.0,48.0,71.0,519.0,666.0,15.0,95.0,0.0,518.0,58.0,87.0,464.0,19.0,0.0,33.0,111.0,361.0,230.0,0.0,1170.0,298.0,490.0,0.0,0.0,0.0,613.0,45.0,9.0,0.0,15.0,27.0,0.0,84.0,145.0,477.0,1.0,0.0,103.0,318.0,0.0,721.0,754.0,682.0,174.0,523.0,114.0,0.0,0.0,0.0,0.0,1030.0,1180.0,47.0,0.0,0.0,58.0,43.0,221.0,680.0,21.0,30.0,261.0,122.0,3325.0,0.0,0.0,36.0,43.0,0.0,17.0,28.0,0.0,0.0,559.0,0.0,94.0,1.0,10.0,31.0,379.0,67.0,0.0,0.0,69.0,168.0,752.0,7.0,41.0,131.0,0.0,0.0,219.0,3907.0,0.0,0.0,50.0,29.0,552.0,504.0,0.0,0.0,0.0,139.0,382.0,59.0,119.0,1.0,5.0,871.0,379.0,152.0,0.0,1914.0,0.0,0.0,0.0,0.0,582.0,1234.0,1255.0,603.0,0.0,0.0,176.0,41.0,46.0,105.0,0.0,123.0,436.0,0.0,0.0,0.0,0.0,58.0,53.0,360.0,464.0,28.0,0.0,0.0,0.0,0.0,204.0,18.0,12.0,0.0,178.0,0.0,145.0,0.0,98.0,0.0,0.0,434.0,1148.0,103.0,261.0,39.0,0.0,27.0,0.0,214.0,4961881.0,93.0,92.0,124.0,45.0,0.0,934.0,76.0,0.0,0.0,453.0,0.0,0.0,11.0,45.0,0.0,107.0,298.0,0.0,70.0,152.0,853.0,733.0,300.0,167.0,1419.0,517.0,148.0,931.0,786.0,34.0,103.0,203.0,0.0,206.0,0.0,42.0,23.0,341.0,289.0,0.0,243.0,0.0,0.0,4.0,0.0,3354.0,34.0,483.0,652.0,0.0,44.0,0.0,41.0,20.0,0.0,0.0,178.0,195.0,0.0,0.0,0.0,103.0,48.0,0.0,0.0,0.0,0.0,21.0,2.0,0.0,82.0,21.0,0.0,61.0,59.0,0.0,0.0,1311.0,0.0,0.0,472.0,458.0,45.0,0.0,44.0,8.0,521.0,0.0,22.0,0.0,0.0,0.0,0.0,331.0,0.0,0.0,21.0,1370.0,0.0,304.0,0.0,205.0,147.0,0.0,0.0,24.0,0.0,4.0,0.0,0.0,0.0,1.0,1045.0,800.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2142.0,3134.0,0.0,0.0,0.0,33.0,120.0,74.0,7931.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1614.0,128.0,76.0,0.0,0.0,2010-02-28,,2010-8,1.9712296731498924,1.758, +71,71,1.81,178.0,0.0,111.0,0.0,316.0,0.0,64.0,120.0,0.0,321.0,0.0,0.0,41.0,0.0,1081.0,33.0,70.0,37.0,0.0,0.0,0.0,0.0,173.0,0.0,910.0,0.0,546.0,0.0,74.0,0.0,0.0,24.0,1216.0,221.0,486.0,0.0,205.0,0.0,39.0,59.0,0.0,21.0,0.0,5.0,125.0,59.0,70.0,716.0,10.0,216.0,21.0,1301.0,91.0,32.0,71.0,463.0,1201.0,32.0,92.0,0.0,397.0,86.0,87.0,461.0,31.0,0.0,31.0,104.0,367.0,228.0,0.0,1221.0,239.0,454.0,0.0,0.0,0.0,554.0,58.0,26.0,0.0,20.0,25.0,0.0,86.0,127.0,439.0,0.0,0.0,60.0,247.0,0.0,662.0,724.0,657.0,193.0,435.0,104.0,0.0,0.0,0.0,0.0,1074.0,1222.0,59.0,0.0,0.0,43.0,52.0,203.0,713.0,15.0,30.0,223.0,95.0,3378.0,0.0,0.0,36.0,39.0,0.0,14.0,18.0,0.0,0.0,509.0,0.0,87.0,1.0,16.0,26.0,444.0,53.0,0.0,0.0,63.0,170.0,604.0,11.0,35.0,136.0,0.0,0.0,148.0,3837.0,0.0,0.0,69.0,37.0,691.0,435.0,0.0,0.0,0.0,156.0,448.0,64.0,95.0,1.0,9.0,947.0,269.0,160.0,0.0,2091.0,0.0,0.0,0.0,0.0,612.0,1430.0,1244.0,643.0,0.0,0.0,205.0,31.0,57.0,106.0,0.0,142.0,427.0,0.0,0.0,0.0,0.0,59.0,46.0,356.0,395.0,33.0,0.0,0.0,0.0,0.0,181.0,26.0,19.0,0.0,213.0,1.0,148.0,0.0,91.0,0.0,0.0,434.0,1145.0,66.0,213.0,21.0,0.0,32.0,0.0,147.0,5146616.0,75.0,86.0,149.0,47.0,0.0,979.0,110.0,0.0,0.0,455.0,0.0,0.0,26.0,46.0,0.0,89.0,208.0,0.0,71.0,145.0,806.0,686.0,319.0,126.0,1886.0,529.0,140.0,817.0,762.0,13.0,111.0,196.0,0.0,218.0,0.0,54.0,13.0,351.0,283.0,0.0,232.0,0.0,0.0,5.0,0.0,558.0,26.0,544.0,651.0,0.0,49.0,0.0,27.0,21.0,0.0,0.0,164.0,210.0,0.0,0.0,0.0,66.0,42.0,0.0,0.0,0.0,0.0,20.0,0.0,0.0,54.0,14.0,0.0,43.0,63.0,0.0,0.0,1496.0,0.0,0.0,487.0,493.0,54.0,0.0,49.0,13.0,498.0,0.0,14.0,0.0,0.0,0.0,0.0,212.0,0.0,0.0,18.0,1353.0,0.0,303.0,0.0,167.0,114.0,0.0,0.0,32.0,0.0,1.0,0.0,0.0,0.0,0.0,933.0,698.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2146.0,2978.0,0.0,0.0,0.0,22.0,193.0,65.0,7688.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1742.0,178.0,85.0,0.0,0.0,2010-03-07,,2010-9,1.7795751697363293,1.8100000000000003, +72,72,1.65,227.0,0.0,106.0,0.0,359.0,0.0,54.0,84.0,0.0,295.0,0.0,2.0,31.0,0.0,1046.0,26.0,100.0,29.0,0.0,0.0,0.0,0.0,159.0,0.0,914.0,0.0,523.0,0.0,89.0,0.0,0.0,31.0,1058.0,153.0,529.0,0.0,220.0,0.0,44.0,72.0,0.0,14.0,0.0,5.0,123.0,51.0,60.0,721.0,12.0,197.0,22.0,1102.0,80.0,44.0,59.0,337.0,728.0,34.0,72.0,0.0,360.0,69.0,69.0,375.0,15.0,0.0,24.0,100.0,349.0,234.0,0.0,1265.0,290.0,497.0,0.0,0.0,0.0,554.0,28.0,14.0,0.0,14.0,29.0,0.0,72.0,148.0,371.0,0.0,0.0,62.0,261.0,0.0,674.0,740.0,633.0,163.0,434.0,95.0,0.0,0.0,0.0,0.0,1155.0,1321.0,58.0,0.0,0.0,48.0,40.0,172.0,610.0,20.0,36.0,215.0,98.0,3229.0,0.0,0.0,48.0,51.0,0.0,9.0,12.0,0.0,0.0,416.0,0.0,92.0,0.0,12.0,27.0,377.0,37.0,0.0,0.0,74.0,164.0,492.0,14.0,25.0,144.0,0.0,0.0,188.0,3482.0,0.0,0.0,53.0,30.0,543.0,428.0,0.0,0.0,0.0,117.0,329.0,74.0,112.0,0.0,13.0,1039.0,213.0,124.0,0.0,1777.0,0.0,0.0,0.0,0.0,502.0,1249.0,1267.0,628.0,0.0,0.0,169.0,42.0,42.0,117.0,0.0,121.0,443.0,0.0,0.0,0.0,0.0,53.0,35.0,336.0,458.0,31.0,0.0,0.0,0.0,0.0,179.0,19.0,24.0,0.0,197.0,1.0,139.0,0.0,100.0,0.0,0.0,423.0,1046.0,90.0,219.0,13.0,0.0,14.0,0.0,169.0,5060966.0,62.0,71.0,106.0,47.0,0.0,1168.0,73.0,0.0,0.0,456.0,0.0,0.0,7.0,47.0,0.0,71.0,238.0,0.0,74.0,122.0,777.0,781.0,281.0,118.0,2261.0,466.0,149.0,796.0,731.0,23.0,93.0,181.0,0.0,181.0,0.0,66.0,28.0,412.0,264.0,0.0,215.0,0.0,0.0,7.0,0.0,488.0,28.0,466.0,585.0,0.0,44.0,0.0,37.0,15.0,0.0,0.0,163.0,161.0,0.0,0.0,0.0,67.0,45.0,0.0,0.0,0.0,0.0,14.0,0.0,0.0,73.0,15.0,0.0,116.0,71.0,0.0,0.0,1315.0,0.0,0.0,517.0,474.0,40.0,0.0,42.0,6.0,429.0,0.0,9.0,0.0,0.0,0.0,0.0,225.0,0.0,0.0,26.0,1379.0,0.0,297.0,0.0,159.0,89.0,0.0,0.0,20.0,0.0,1.0,0.0,0.0,0.0,0.0,959.0,717.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1938.0,2968.0,0.0,0.0,0.0,29.0,128.0,74.0,7456.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1340.0,222.0,115.0,0.0,0.0,2010-03-14,,2010-10,1.672925605086415,1.4660000000000002, +73,73,1.38,205.0,0.0,97.0,0.0,296.0,0.0,50.0,73.0,0.0,218.0,0.0,0.0,33.0,0.0,1007.0,24.0,60.0,30.0,0.0,0.0,0.0,0.0,109.0,0.0,890.0,0.0,426.0,0.0,95.0,0.0,0.0,17.0,1018.0,198.0,523.0,0.0,242.0,0.0,30.0,54.0,0.0,13.0,0.0,2.0,115.0,46.0,53.0,658.0,10.0,103.0,24.0,1256.0,70.0,27.0,60.0,344.0,871.0,24.0,111.0,0.0,455.0,52.0,73.0,368.0,14.0,0.0,28.0,72.0,362.0,193.0,0.0,1196.0,248.0,501.0,0.0,0.0,0.0,533.0,42.0,14.0,0.0,15.0,37.0,0.0,75.0,126.0,405.0,0.0,0.0,70.0,244.0,0.0,633.0,642.0,650.0,163.0,390.0,75.0,0.0,0.0,0.0,0.0,1044.0,1182.0,64.0,0.0,0.0,40.0,23.0,234.0,752.0,18.0,49.0,203.0,107.0,3203.0,1.0,0.0,25.0,21.0,0.0,17.0,14.0,0.0,0.0,464.0,0.0,98.0,0.0,25.0,23.0,448.0,43.0,0.0,0.0,58.0,161.0,674.0,12.0,21.0,147.0,0.0,0.0,163.0,3416.0,0.0,0.0,41.0,24.0,427.0,386.0,0.0,0.0,0.0,166.0,333.0,67.0,87.0,0.0,5.0,733.0,281.0,110.0,0.0,1594.0,0.0,0.0,0.0,0.0,504.0,1086.0,1119.0,541.0,0.0,2.0,198.0,30.0,55.0,129.0,0.0,129.0,429.0,0.0,0.0,0.0,0.0,42.0,32.0,324.0,355.0,29.0,0.0,0.0,0.0,0.0,184.0,25.0,19.0,0.0,171.0,0.0,130.0,0.0,99.0,0.0,0.0,383.0,1037.0,102.0,241.0,30.0,0.0,17.0,0.0,141.0,4924688.0,55.0,73.0,95.0,27.0,0.0,834.0,71.0,0.0,0.0,408.0,0.0,0.0,8.0,45.0,0.0,85.0,173.0,0.0,43.0,140.0,802.0,667.0,275.0,117.0,1444.0,434.0,138.0,755.0,708.0,13.0,116.0,194.0,0.0,247.0,0.0,110.0,13.0,380.0,289.0,0.0,228.0,2.0,0.0,4.0,0.0,536.0,32.0,475.0,635.0,0.0,32.0,0.0,53.0,17.0,0.0,0.0,149.0,201.0,0.0,0.0,0.0,45.0,48.0,0.0,0.0,1.0,0.0,14.0,0.0,0.0,67.0,18.0,0.0,472.0,69.0,0.0,0.0,1342.0,0.0,0.0,451.0,439.0,42.0,0.0,46.0,8.0,422.0,0.0,13.0,0.0,0.0,0.0,0.0,213.0,0.0,0.0,16.0,1361.0,0.0,230.0,0.0,179.0,124.0,0.0,0.0,20.0,0.0,4.0,0.0,0.0,0.0,0.0,777.0,638.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2076.0,2415.0,0.0,0.0,0.0,28.0,114.0,39.0,7321.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1551.0,200.0,96.0,0.0,0.0,2010-03-21,,2010-11,1.3837978369734598,1.4020000000000001, +74,74,1.28,183.0,0.0,92.0,0.0,236.0,0.0,51.0,90.0,0.0,244.0,0.0,0.0,26.0,0.0,979.0,24.0,58.0,39.0,0.0,0.0,0.0,0.0,193.0,0.0,928.0,0.0,469.0,0.0,91.0,0.0,0.0,22.0,1063.0,179.0,424.0,0.0,241.0,0.0,34.0,72.0,0.0,16.0,0.0,3.0,134.0,57.0,45.0,638.0,16.0,123.0,26.0,1202.0,78.0,31.0,39.0,322.0,801.0,21.0,88.0,0.0,402.0,58.0,73.0,367.0,17.0,0.0,23.0,70.0,333.0,177.0,0.0,1147.0,256.0,435.0,0.0,0.0,0.0,548.0,38.0,17.0,0.0,13.0,29.0,0.0,64.0,119.0,396.0,0.0,0.0,68.0,222.0,0.0,660.0,684.0,663.0,187.0,363.0,79.0,0.0,0.0,0.0,0.0,903.0,1133.0,68.0,0.0,0.0,44.0,34.0,194.0,638.0,19.0,55.0,234.0,134.0,3139.0,0.0,0.0,24.0,31.0,0.0,15.0,13.0,0.0,0.0,448.0,0.0,69.0,0.0,15.0,26.0,425.0,33.0,0.0,0.0,52.0,152.0,616.0,2.0,12.0,163.0,0.0,0.0,145.0,3519.0,0.0,0.0,35.0,21.0,463.0,381.0,0.0,2.0,0.0,197.0,319.0,55.0,103.0,0.0,5.0,701.0,223.0,134.0,0.0,1657.0,0.0,0.0,0.0,0.0,564.0,1085.0,1089.0,569.0,0.0,0.0,175.0,21.0,54.0,112.0,0.0,139.0,448.0,0.0,0.0,0.0,0.0,61.0,29.0,283.0,403.0,22.0,0.0,0.0,0.0,0.0,166.0,14.0,21.0,0.0,211.0,0.0,128.0,0.0,83.0,0.0,0.0,403.0,1115.0,77.0,213.0,11.0,0.0,11.0,0.0,158.0,4861098.0,54.0,81.0,118.0,33.0,0.0,779.0,64.0,0.0,0.0,411.0,0.0,0.0,10.0,46.0,0.0,85.0,220.0,0.0,55.0,121.0,710.0,694.0,273.0,97.0,1482.0,460.0,150.0,721.0,647.0,25.0,120.0,175.0,1.0,186.0,0.0,131.0,16.0,335.0,225.0,0.0,211.0,1.0,0.0,5.0,0.0,474.0,25.0,491.0,561.0,0.0,37.0,0.0,29.0,12.0,0.0,0.0,162.0,171.0,0.0,0.0,0.0,64.0,35.0,0.0,0.0,0.0,0.0,14.0,0.0,0.0,70.0,17.0,0.0,62.0,50.0,0.0,0.0,1385.0,0.0,0.0,415.0,430.0,42.0,0.0,47.0,6.0,392.0,0.0,15.0,0.0,0.0,0.0,0.0,220.0,0.0,0.0,19.0,1325.0,0.0,357.0,0.0,141.0,85.0,0.0,0.0,26.0,0.0,1.0,0.0,0.0,0.0,0.0,841.0,638.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2123.0,2399.0,0.0,0.0,0.0,18.0,152.0,59.0,7060.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1513.0,148.0,78.0,0.0,0.0,2010-03-28,,2010-12,1.2944171372310898,1.192, +75,75,1.05,152.0,0.0,103.0,0.0,272.0,0.0,50.0,113.0,0.0,243.0,0.0,0.0,33.0,0.0,1030.0,30.0,50.0,32.0,0.0,0.0,0.0,0.0,122.0,0.0,805.0,0.0,368.0,0.0,62.0,0.0,0.0,18.0,983.0,339.0,426.0,0.0,276.0,0.0,28.0,57.0,0.0,20.0,0.0,2.0,77.0,38.0,65.0,541.0,19.0,170.0,16.0,1011.0,73.0,40.0,59.0,285.0,800.0,38.0,95.0,0.0,371.0,57.0,64.0,387.0,19.0,0.0,22.0,95.0,311.0,222.0,0.0,1147.0,211.0,455.0,0.0,0.0,0.0,497.0,45.0,15.0,0.0,19.0,28.0,0.0,79.0,91.0,388.0,0.0,0.0,53.0,225.0,0.0,569.0,609.0,544.0,149.0,317.0,66.0,0.0,0.0,0.0,0.0,1047.0,1114.0,70.0,0.0,0.0,28.0,25.0,174.0,771.0,19.0,31.0,222.0,120.0,2804.0,0.0,0.0,32.0,36.0,0.0,10.0,10.0,0.0,0.0,383.0,0.0,91.0,0.0,15.0,21.0,378.0,68.0,0.0,0.0,78.0,137.0,553.0,3.0,24.0,134.0,0.0,0.0,136.0,3216.0,0.0,0.0,35.0,23.0,399.0,302.0,0.0,0.0,0.0,157.0,333.0,68.0,69.0,0.0,13.0,638.0,206.0,101.0,0.0,2097.0,0.0,0.0,0.0,0.0,512.0,1024.0,1080.0,561.0,0.0,1.0,190.0,18.0,51.0,99.0,0.0,115.0,388.0,0.0,0.0,0.0,0.0,43.0,26.0,281.0,348.0,20.0,0.0,0.0,0.0,0.0,158.0,15.0,18.0,0.0,168.0,1.0,132.0,0.0,74.0,0.0,0.0,315.0,1043.0,68.0,251.0,19.0,0.0,17.0,33.0,128.0,5030693.0,45.0,48.0,115.0,36.0,0.0,720.0,81.0,0.0,0.0,397.0,0.0,0.0,12.0,50.0,0.0,94.0,233.0,0.0,48.0,82.0,754.0,603.0,250.0,102.0,1508.0,455.0,182.0,702.0,642.0,11.0,109.0,180.0,0.0,173.0,0.0,96.0,11.0,363.0,230.0,0.0,214.0,0.0,0.0,2.0,0.0,521.0,34.0,555.0,521.0,0.0,37.0,0.0,25.0,17.0,0.0,0.0,123.0,125.0,0.0,0.0,0.0,80.0,33.0,0.0,0.0,0.0,0.0,16.0,0.0,0.0,62.0,15.0,0.0,87.0,66.0,0.0,0.0,1296.0,0.0,0.0,504.0,395.0,49.0,0.0,42.0,5.0,407.0,0.0,11.0,0.0,0.0,0.0,0.0,182.0,0.0,0.0,16.0,1254.0,0.0,257.0,0.0,171.0,92.0,0.0,0.0,19.0,0.0,0.0,0.0,0.0,0.0,0.0,719.0,500.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2113.0,1998.0,0.0,0.0,0.0,12.0,127.0,57.0,6318.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1420.0,171.0,70.0,0.0,0.0,2010-04-04,,2010-13,1.0587629776518153,1.1500000000000001, +76,76,0.93,181.0,0.0,110.0,0.0,219.0,0.0,54.0,105.0,0.0,301.0,0.0,0.0,36.0,0.0,994.0,27.0,57.0,41.0,0.0,0.0,0.0,0.0,166.0,0.0,818.0,0.0,410.0,0.0,92.0,0.0,0.0,12.0,994.0,175.0,507.0,0.0,370.0,0.0,33.0,49.0,0.0,21.0,0.0,4.0,111.0,47.0,42.0,700.0,11.0,208.0,25.0,1113.0,98.0,39.0,62.0,323.0,731.0,34.0,134.0,0.0,433.0,38.0,67.0,327.0,29.0,0.0,19.0,91.0,385.0,318.0,0.0,1314.0,241.0,437.0,0.0,0.0,0.0,540.0,44.0,13.0,0.0,13.0,28.0,0.0,119.0,116.0,411.0,0.0,0.0,55.0,474.0,1.0,545.0,614.0,637.0,172.0,338.0,77.0,0.0,0.0,0.0,0.0,1188.0,1056.0,58.0,0.0,0.0,40.0,37.0,201.0,952.0,19.0,34.0,234.0,128.0,2993.0,0.0,0.0,32.0,22.0,0.0,16.0,11.0,0.0,0.0,451.0,0.0,94.0,0.0,11.0,35.0,427.0,30.0,0.0,0.0,85.0,152.0,661.0,8.0,30.0,150.0,0.0,0.0,152.0,3163.0,0.0,0.0,59.0,19.0,463.0,364.0,0.0,0.0,0.0,160.0,370.0,58.0,66.0,0.0,6.0,857.0,229.0,133.0,0.0,2052.0,0.0,0.0,0.0,0.0,518.0,2512.0,1165.0,657.0,0.0,0.0,214.0,22.0,65.0,97.0,0.0,142.0,384.0,0.0,0.0,0.0,0.0,47.0,31.0,308.0,386.0,21.0,0.0,0.0,0.0,0.0,223.0,15.0,17.0,0.0,217.0,3.0,139.0,0.0,95.0,0.0,0.0,358.0,916.0,70.0,213.0,20.0,0.0,24.0,38.0,145.0,4947975.0,57.0,73.0,92.0,34.0,0.0,730.0,91.0,0.0,0.0,346.0,0.0,0.0,7.0,36.0,0.0,102.0,221.0,0.0,56.0,101.0,737.0,649.0,302.0,114.0,1421.0,368.0,133.0,706.0,583.0,17.0,150.0,217.0,0.0,215.0,0.0,130.0,24.0,371.0,257.0,0.0,221.0,0.0,0.0,9.0,0.0,479.0,25.0,515.0,586.0,0.0,46.0,0.0,17.0,21.0,0.0,0.0,149.0,176.0,0.0,0.0,0.0,71.0,52.0,0.0,0.0,0.0,0.0,17.0,0.0,0.0,62.0,17.0,0.0,91.0,55.0,0.0,0.0,1319.0,0.0,0.0,400.0,427.0,80.0,0.0,37.0,11.0,413.0,0.0,14.0,0.0,0.0,0.0,0.0,173.0,0.0,0.0,19.0,1341.0,0.0,268.0,0.0,159.0,104.0,0.0,0.0,23.0,0.0,1.0,0.0,0.0,0.0,0.0,792.0,521.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.0,0.0,0.0,1.0,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2058.0,2379.0,0.0,0.0,0.0,17.0,141.0,53.0,6169.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1566.0,167.0,87.0,0.0,0.0,2010-04-11,,2010-14,0.8956650888809223,1.87, +77,77,0.82,200.0,0.0,93.0,0.0,249.0,0.0,50.0,115.0,0.0,320.0,0.0,0.0,23.0,0.0,1073.0,25.0,79.0,40.0,0.0,0.0,0.0,0.0,212.0,0.0,907.0,0.0,444.0,0.0,84.0,0.0,0.0,21.0,1168.0,185.0,435.0,0.0,201.0,0.0,35.0,78.0,0.0,20.0,0.0,3.0,165.0,44.0,67.0,693.0,7.0,225.0,32.0,1237.0,105.0,28.0,57.0,324.0,789.0,21.0,109.0,0.0,427.0,86.0,93.0,412.0,17.0,0.0,11.0,116.0,340.0,253.0,0.0,1404.0,258.0,391.0,0.0,0.0,0.0,524.0,43.0,13.0,0.0,10.0,28.0,0.0,97.0,110.0,460.0,0.0,0.0,48.0,419.0,0.0,578.0,629.0,617.0,163.0,395.0,95.0,0.0,0.0,0.0,0.0,1033.0,1126.0,15.0,0.0,0.0,63.0,36.0,158.0,975.0,11.0,37.0,323.0,95.0,2727.0,0.0,0.0,35.0,36.0,0.0,21.0,13.0,0.0,0.0,531.0,0.0,67.0,0.0,12.0,15.0,398.0,41.0,0.0,0.0,70.0,191.0,845.0,6.0,21.0,187.0,0.0,0.0,143.0,3458.0,0.0,0.0,37.0,17.0,446.0,347.0,0.0,0.0,0.0,218.0,404.0,64.0,112.0,0.0,7.0,985.0,256.0,132.0,0.0,1831.0,0.0,0.0,0.0,0.0,505.0,1330.0,1357.0,644.0,0.0,0.0,197.0,26.0,45.0,109.0,0.0,140.0,426.0,0.0,0.0,0.0,0.0,57.0,49.0,421.0,347.0,26.0,0.0,0.0,0.0,0.0,175.0,17.0,18.0,0.0,197.0,0.0,154.0,0.0,100.0,0.0,0.0,411.0,903.0,69.0,181.0,18.0,0.0,17.0,62.0,139.0,4909960.0,62.0,53.0,97.0,37.0,0.0,777.0,92.0,0.0,0.0,367.0,0.0,0.0,12.0,47.0,0.0,107.0,216.0,0.0,66.0,145.0,761.0,729.0,316.0,124.0,1508.0,463.0,174.0,1045.0,591.0,14.0,85.0,174.0,0.0,194.0,0.0,100.0,13.0,362.0,305.0,0.0,219.0,1.0,0.0,7.0,0.0,484.0,37.0,449.0,584.0,0.0,32.0,0.0,18.0,18.0,0.0,0.0,149.0,144.0,0.0,0.0,0.0,51.0,41.0,0.0,0.0,0.0,0.0,13.0,1.0,0.0,73.0,18.0,0.0,74.0,67.0,0.0,0.0,1309.0,0.0,0.0,366.0,439.0,36.0,0.0,38.0,7.0,488.0,0.0,20.0,0.0,0.0,0.0,0.0,219.0,0.0,0.0,17.0,1425.0,0.0,270.0,0.0,154.0,103.0,0.0,0.0,20.0,0.0,1.0,0.0,0.0,0.0,0.0,933.0,593.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2257.0,2728.0,0.0,0.0,0.0,13.0,169.0,85.0,7178.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1413.0,115.0,88.0,0.0,0.0,2010-04-18,,2010-15,0.8138798786464889,0.9979999999999999, +78,78,0.72,154.0,0.0,107.0,0.0,578.0,0.0,47.0,114.0,0.0,391.0,0.0,0.0,48.0,0.0,1395.0,34.0,85.0,42.0,0.0,0.0,0.0,0.0,134.0,0.0,1226.0,0.0,505.0,0.0,127.0,0.0,0.0,24.0,1258.0,220.0,577.0,0.0,173.0,0.0,23.0,91.0,28.0,23.0,0.0,2.0,178.0,103.0,84.0,885.0,14.0,169.0,27.0,1830.0,90.0,43.0,70.0,561.0,1141.0,64.0,132.0,0.0,480.0,73.0,107.0,502.0,17.0,0.0,35.0,112.0,426.0,255.0,0.0,1443.0,280.0,497.0,0.0,0.0,0.0,584.0,43.0,16.0,0.0,20.0,60.0,116.0,98.0,126.0,507.0,0.0,0.0,73.0,492.0,0.0,737.0,808.0,795.0,218.0,410.0,119.0,0.0,0.0,40.0,0.0,1101.0,1285.0,19.0,0.0,0.0,56.0,46.0,259.0,1116.0,18.0,37.0,358.0,149.0,4060.0,0.0,0.0,25.0,39.0,0.0,21.0,18.0,0.0,0.0,682.0,14.0,99.0,22.0,21.0,12.0,595.0,61.0,0.0,0.0,75.0,266.0,1445.0,9.0,16.0,242.0,0.0,0.0,237.0,4594.0,0.0,0.0,57.0,24.0,503.0,377.0,0.0,0.0,0.0,198.0,517.0,74.0,117.0,0.0,11.0,1152.0,320.0,230.0,0.0,1978.0,0.0,0.0,0.0,0.0,669.0,1469.0,1535.0,1088.0,0.0,1.0,450.0,38.0,95.0,130.0,0.0,190.0,479.0,0.0,0.0,0.0,0.0,88.0,40.0,406.0,450.0,34.0,0.0,0.0,0.0,46.0,280.0,29.0,17.0,0.0,253.0,1.0,392.0,0.0,105.0,0.0,0.0,658.0,1483.0,77.0,264.0,22.0,0.0,21.0,61.0,192.0,6017999.0,84.0,78.0,96.0,47.0,0.0,993.0,103.0,0.0,0.0,477.0,0.0,0.0,13.0,54.0,0.0,236.0,204.0,0.0,70.0,186.0,1121.0,2205.0,494.0,162.0,1564.0,614.0,114.0,1444.0,1505.0,18.0,96.0,184.0,0.0,198.0,0.0,126.0,22.0,539.0,349.0,0.0,330.0,0.0,0.0,4.0,0.0,536.0,28.0,560.0,816.0,0.0,48.0,0.0,12.0,18.0,0.0,35.0,265.0,349.0,0.0,31.0,0.0,45.0,47.0,0.0,0.0,0.0,0.0,17.0,0.0,0.0,97.0,21.0,0.0,62.0,90.0,30.0,0.0,1977.0,0.0,0.0,633.0,543.0,34.0,0.0,45.0,13.0,600.0,0.0,18.0,0.0,0.0,0.0,0.0,291.0,0.0,0.0,22.0,1866.0,0.0,321.0,0.0,339.0,98.0,0.0,28.0,24.0,0.0,1.0,0.0,0.0,15.0,0.0,1117.0,810.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2516.0,3625.0,0.0,0.0,0.0,17.0,401.0,65.0,12452.0,0.0,0.0,0.0,0.0,0.0,55.0,0.0,11.0,0.0,0.0,1693.0,212.0,155.0,0.0,0.0,2010-10-24,,2010-42,0.7308624829836887,0.948, +79,79,0.81,178.0,0.0,111.0,0.0,512.0,0.0,34.0,138.0,0.0,366.0,0.0,0.0,36.0,0.0,1288.0,29.0,89.0,52.0,0.0,0.0,0.0,0.0,105.0,0.0,1058.0,0.0,589.0,0.0,103.0,0.0,0.0,19.0,1232.0,218.0,538.0,0.0,144.0,0.0,52.0,100.0,30.0,19.0,0.0,1.0,149.0,73.0,76.0,1583.0,8.0,128.0,35.0,1783.0,112.0,45.0,71.0,450.0,878.0,36.0,103.0,0.0,452.0,57.0,107.0,571.0,26.0,0.0,28.0,123.0,398.0,260.0,0.0,1532.0,300.0,459.0,0.0,0.0,0.0,558.0,40.0,26.0,0.0,21.0,58.0,92.0,92.0,123.0,513.0,0.0,0.0,82.0,458.0,1.0,647.0,721.0,744.0,177.0,354.0,104.0,0.0,0.0,71.0,0.0,1062.0,1146.0,9.0,0.0,0.0,49.0,65.0,159.0,1051.0,13.0,35.0,299.0,145.0,4006.0,0.0,0.0,35.0,52.0,0.0,23.0,18.0,0.0,0.0,592.0,18.0,56.0,20.0,17.0,20.0,512.0,40.0,0.0,0.0,79.0,270.0,1969.0,15.0,33.0,218.0,0.0,0.0,281.0,4490.0,0.0,0.0,66.0,33.0,473.0,332.0,0.0,1.0,0.0,169.0,524.0,88.0,133.0,0.0,20.0,1273.0,298.0,184.0,0.0,2025.0,0.0,0.0,0.0,0.0,701.0,1232.0,1430.0,1824.0,0.0,0.0,386.0,28.0,84.0,152.0,0.0,139.0,480.0,0.0,0.0,0.0,0.0,72.0,35.0,341.0,414.0,35.0,0.0,0.0,0.0,52.0,292.0,22.0,13.0,0.0,260.0,2.0,287.0,0.0,103.0,0.0,0.0,585.0,1470.0,80.0,230.0,24.0,0.0,24.0,64.0,165.0,6086019.0,81.0,101.0,97.0,47.0,0.0,964.0,115.0,0.0,0.0,502.0,0.0,0.0,35.0,50.0,0.0,202.0,255.0,0.0,76.0,176.0,1072.0,967.0,381.0,157.0,2254.0,506.0,124.0,1614.0,1321.0,28.0,104.0,191.0,0.0,224.0,0.0,154.0,11.0,473.0,267.0,0.0,291.0,0.0,0.0,14.0,0.0,629.0,31.0,522.0,855.0,0.0,34.0,0.0,18.0,14.0,0.0,32.0,234.0,325.0,0.0,23.0,0.0,57.0,56.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,109.0,20.0,0.0,58.0,105.0,40.0,0.0,2151.0,0.0,0.0,726.0,628.0,23.0,0.0,45.0,16.0,596.0,0.0,14.0,0.0,0.0,0.0,0.0,245.0,0.0,0.0,18.0,1911.0,0.0,330.0,0.0,289.0,88.0,0.0,32.0,22.0,0.0,5.0,0.0,0.0,7.0,0.0,1186.0,815.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,7.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2423.0,3113.0,0.0,0.0,0.0,28.0,405.0,60.0,9431.0,0.0,1.0,0.0,0.0,0.0,47.0,0.0,9.0,0.0,0.0,1576.0,185.0,143.0,0.0,0.0,2010-10-31,,2010-43,0.7755521466395479,0.8100000000000002, +80,80,0.82,181.0,0.0,125.0,0.0,574.0,0.0,55.0,115.0,0.0,438.0,0.0,0.0,45.0,0.0,1386.0,31.0,117.0,52.0,0.0,0.0,0.0,0.0,104.0,0.0,1067.0,0.0,548.0,0.0,320.0,0.0,0.0,25.0,1195.0,259.0,533.0,0.0,174.0,0.0,56.0,104.0,30.0,31.0,0.0,1.0,186.0,56.0,96.0,1029.0,17.0,156.0,35.0,1802.0,66.0,43.0,64.0,478.0,954.0,58.0,109.0,0.0,508.0,101.0,92.0,503.0,24.0,0.0,24.0,102.0,449.0,294.0,0.0,1563.0,279.0,432.0,0.0,0.0,0.0,552.0,54.0,24.0,0.0,19.0,59.0,124.0,80.0,175.0,539.0,0.0,0.0,89.0,467.0,0.0,714.0,822.0,776.0,226.0,391.0,116.0,0.0,0.0,75.0,0.0,1112.0,1243.0,11.0,0.0,0.0,52.0,61.0,164.0,1117.0,16.0,35.0,293.0,152.0,4113.0,0.0,0.0,32.0,54.0,0.0,29.0,12.0,0.0,0.0,761.0,21.0,97.0,28.0,23.0,19.0,528.0,80.0,0.0,0.0,86.0,255.0,2854.0,10.0,27.0,206.0,0.0,0.0,240.0,4413.0,1.0,13.0,60.0,77.0,506.0,309.0,0.0,1.0,0.0,191.0,540.0,92.0,92.0,0.0,17.0,1018.0,263.0,184.0,0.0,2231.0,0.0,0.0,0.0,0.0,770.0,1284.0,1803.0,2093.0,0.0,0.0,393.0,32.0,97.0,149.0,0.0,178.0,525.0,0.0,0.0,0.0,0.0,64.0,64.0,370.0,427.0,45.0,0.0,0.0,0.0,68.0,267.0,32.0,20.0,0.0,257.0,1.0,268.0,0.0,116.0,0.0,0.0,658.0,1486.0,89.0,224.0,19.0,0.0,19.0,78.0,174.0,6134019.0,89.0,91.0,105.0,25.0,0.0,1002.0,100.0,0.0,0.0,450.0,0.0,0.0,17.0,69.0,1.0,176.0,261.0,0.0,71.0,153.0,1074.0,1090.0,411.0,161.0,3581.0,490.0,145.0,1816.0,1310.0,32.0,104.0,189.0,0.0,209.0,0.0,138.0,16.0,517.0,278.0,0.0,336.0,0.0,0.0,6.0,0.0,634.0,28.0,582.0,889.0,0.0,50.0,0.0,25.0,21.0,0.0,39.0,275.0,290.0,0.0,28.0,0.0,78.0,49.0,0.0,0.0,0.0,0.0,27.0,0.0,0.0,89.0,30.0,0.0,36.0,113.0,35.0,0.0,1947.0,0.0,0.0,700.0,514.0,40.0,0.0,38.0,16.0,622.0,0.0,19.0,0.0,0.0,0.0,0.0,261.0,0.0,0.0,22.0,2852.0,0.0,297.0,0.0,186.0,102.0,0.0,32.0,19.0,0.0,0.0,0.0,0.0,11.0,0.0,1101.0,787.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2748.0,3541.0,0.0,0.0,0.0,28.0,386.0,71.0,8892.0,0.0,0.0,0.0,0.0,0.0,47.0,0.0,13.0,0.0,0.0,1797.0,197.0,144.0,0.0,0.0,2010-11-07,,2010-44,0.8223283494223441,1.1, +81,81,0.94,174.0,0.0,125.0,0.0,490.0,0.0,58.0,136.0,0.0,387.0,0.0,0.0,64.0,0.0,1449.0,33.0,106.0,37.0,0.0,0.0,0.0,0.0,97.0,0.0,1133.0,0.0,550.0,0.0,168.0,0.0,0.0,42.0,1260.0,615.0,621.0,0.0,389.0,0.0,52.0,110.0,32.0,31.0,0.0,1.0,237.0,65.0,98.0,954.0,6.0,151.0,36.0,1803.0,75.0,38.0,54.0,578.0,949.0,53.0,104.0,0.0,561.0,117.0,90.0,551.0,22.0,0.0,23.0,131.0,446.0,265.0,0.0,1741.0,322.0,526.0,0.0,0.0,0.0,687.0,78.0,23.0,0.0,28.0,68.0,99.0,72.0,185.0,552.0,0.0,0.0,81.0,612.0,0.0,746.0,812.0,796.0,230.0,408.0,134.0,0.0,0.0,62.0,0.0,1117.0,1343.0,8.0,0.0,0.0,99.0,118.0,300.0,1141.0,34.0,28.0,306.0,164.0,4077.0,0.0,0.0,32.0,31.0,0.0,14.0,20.0,0.0,0.0,773.0,28.0,69.0,26.0,14.0,22.0,587.0,45.0,0.0,0.0,100.0,255.0,1643.0,11.0,23.0,262.0,0.0,0.0,256.0,4656.0,1.0,13.0,83.0,32.0,593.0,335.0,0.0,1.0,0.0,218.0,558.0,86.0,79.0,0.0,11.0,927.0,320.0,199.0,0.0,2330.0,0.0,0.0,0.0,0.0,662.0,1487.0,1534.0,1317.0,0.0,0.0,335.0,33.0,102.0,163.0,0.0,244.0,493.0,0.0,0.0,0.0,0.0,65.0,54.0,360.0,500.0,45.0,0.0,0.0,1.0,71.0,272.0,14.0,15.0,0.0,273.0,0.0,222.0,0.0,109.0,0.0,0.0,735.0,1528.0,68.0,208.0,21.0,0.0,47.0,64.0,213.0,6024952.0,94.0,148.0,94.0,43.0,0.0,1015.0,109.0,0.0,0.0,477.0,0.0,0.0,19.0,54.0,0.0,197.0,238.0,0.0,108.0,137.0,1173.0,1189.0,385.0,184.0,2516.0,536.0,120.0,1058.0,1060.0,20.0,88.0,185.0,0.0,180.0,0.0,125.0,33.0,545.0,321.0,0.0,348.0,2.0,0.0,4.0,0.0,674.0,28.0,603.0,877.0,0.0,49.0,0.0,22.0,23.0,0.0,29.0,281.0,294.0,0.0,24.0,0.0,98.0,57.0,0.0,0.0,0.0,0.0,17.0,0.0,0.0,78.0,24.0,0.0,35.0,114.0,39.0,0.0,2150.0,0.0,0.0,778.0,638.0,26.0,0.0,36.0,12.0,854.0,0.0,10.0,0.0,0.0,0.0,0.0,301.0,0.0,0.0,23.0,2778.0,0.0,317.0,0.0,122.0,118.0,0.0,43.0,24.0,0.0,1.0,0.0,0.0,12.0,0.0,1326.0,1101.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2625.0,4063.0,0.0,0.0,0.0,37.0,461.0,68.0,9599.0,0.0,0.0,0.0,0.0,0.0,53.0,0.0,19.0,0.0,0.0,1620.0,237.0,154.0,0.0,0.0,2010-11-14,,2010-45,0.9518628880750146,1.24, +82,82,1.07,210.0,0.0,101.0,0.0,520.0,0.0,74.0,162.0,0.0,455.0,0.0,0.0,53.0,0.0,1400.0,41.0,96.0,21.0,0.0,0.0,0.0,0.0,117.0,0.0,1120.0,0.0,565.0,0.0,182.0,0.0,0.0,36.0,1249.0,260.0,534.0,0.0,207.0,0.0,46.0,101.0,24.0,14.0,0.0,3.0,183.0,69.0,91.0,1107.0,11.0,168.0,37.0,1905.0,91.0,29.0,70.0,502.0,948.0,53.0,118.0,0.0,537.0,103.0,110.0,526.0,36.0,0.0,26.0,152.0,475.0,362.0,0.0,1670.0,305.0,529.0,0.0,0.0,0.0,595.0,67.0,17.0,0.0,15.0,51.0,140.0,61.0,175.0,607.0,0.0,0.0,77.0,539.0,0.0,691.0,775.0,718.0,176.0,404.0,113.0,0.0,0.0,75.0,0.0,1289.0,1461.0,11.0,0.0,0.0,48.0,58.0,281.0,1125.0,22.0,34.0,320.0,118.0,4402.0,0.0,0.0,32.0,39.0,0.0,18.0,18.0,0.0,0.0,764.0,19.0,108.0,39.0,24.0,26.0,515.0,56.0,0.0,0.0,90.0,286.0,1401.0,24.0,30.0,251.0,0.0,0.0,268.0,4833.0,0.0,12.0,66.0,27.0,648.0,365.0,0.0,1.0,0.0,208.0,559.0,82.0,92.0,1.0,14.0,1069.0,318.0,177.0,0.0,2261.0,0.0,0.0,0.0,0.0,710.0,1553.0,1336.0,1161.0,0.0,0.0,386.0,36.0,101.0,126.0,0.0,184.0,473.0,0.0,0.0,0.0,0.0,79.0,55.0,400.0,595.0,40.0,0.0,0.0,10.0,74.0,240.0,19.0,23.0,0.0,297.0,0.0,253.0,0.0,109.0,0.0,0.0,657.0,1545.0,87.0,206.0,33.0,0.0,29.0,86.0,196.0,6076183.0,74.0,90.0,63.0,44.0,0.0,1053.0,100.0,0.0,0.0,578.0,0.0,0.0,27.0,45.0,0.0,179.0,233.0,0.0,97.0,149.0,1065.0,1164.0,401.0,193.0,2236.0,590.0,139.0,1104.0,922.0,18.0,102.0,211.0,0.0,199.0,1.0,132.0,25.0,512.0,320.0,0.0,345.0,1.0,0.0,12.0,0.0,692.0,43.0,684.0,801.0,0.0,48.0,0.0,25.0,30.0,0.0,39.0,291.0,301.0,0.0,39.0,0.0,89.0,61.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,103.0,23.0,0.0,36.0,79.0,43.0,0.0,2132.0,0.0,0.0,747.0,626.0,29.0,0.0,35.0,6.0,634.0,0.0,15.0,0.0,0.0,0.0,0.0,292.0,0.0,0.0,17.0,2501.0,0.0,438.0,0.0,186.0,97.0,0.0,40.0,20.0,0.0,2.0,0.0,0.0,9.0,0.0,1392.0,1004.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2538.0,3685.0,0.0,0.0,0.0,27.0,342.0,89.0,9263.0,0.0,0.0,0.0,0.0,0.0,52.0,0.0,7.0,0.0,0.0,1847.0,240.0,149.0,0.0,0.0,2010-11-21,,2010-46,1.0909759379251422,1.5200000000000002, +83,83,1.28,214.0,0.0,151.0,0.0,552.0,0.0,60.0,113.0,0.0,494.0,0.0,0.0,42.0,0.0,1449.0,55.0,79.0,65.0,0.0,0.0,0.0,0.0,111.0,0.0,1127.0,0.0,564.0,0.0,194.0,0.0,0.0,32.0,1290.0,276.0,690.0,0.0,201.0,0.0,55.0,98.0,31.0,16.0,0.0,1.0,249.0,71.0,82.0,937.0,7.0,199.0,31.0,1906.0,95.0,47.0,78.0,540.0,937.0,54.0,146.0,0.0,516.0,110.0,93.0,564.0,38.0,0.0,23.0,129.0,497.0,277.0,0.0,1558.0,340.0,535.0,0.0,0.0,0.0,654.0,80.0,19.0,0.0,16.0,64.0,137.0,73.0,204.0,607.0,0.0,0.0,103.0,605.0,0.0,750.0,834.0,813.0,222.0,424.0,119.0,0.0,0.0,94.0,0.0,1217.0,1336.0,10.0,0.0,0.0,82.0,82.0,224.0,1320.0,33.0,44.0,321.0,117.0,4677.0,0.0,0.0,37.0,43.0,0.0,17.0,23.0,0.0,0.0,738.0,19.0,87.0,23.0,24.0,21.0,567.0,71.0,0.0,0.0,89.0,277.0,1255.0,20.0,28.0,254.0,0.0,0.0,302.0,5024.0,0.0,10.0,60.0,21.0,511.0,338.0,0.0,0.0,0.0,227.0,592.0,78.0,103.0,0.0,20.0,1651.0,298.0,185.0,0.0,2397.0,0.0,0.0,0.0,0.0,631.0,1490.0,1178.0,1130.0,0.0,0.0,370.0,33.0,115.0,149.0,0.0,212.0,479.0,0.0,0.0,0.0,0.0,73.0,63.0,315.0,634.0,58.0,0.0,0.0,0.0,67.0,271.0,22.0,20.0,0.0,238.0,0.0,240.0,0.0,95.0,0.0,0.0,613.0,1510.0,63.0,172.0,26.0,0.0,30.0,92.0,190.0,6265909.0,92.0,87.0,98.0,53.0,0.0,1012.0,94.0,0.0,0.0,568.0,0.0,0.0,26.0,81.0,0.0,200.0,245.0,0.0,81.0,144.0,1091.0,1102.0,412.0,207.0,2075.0,484.0,164.0,1732.0,1180.0,20.0,124.0,261.0,0.0,239.0,2.0,169.0,23.0,523.0,316.0,0.0,346.0,0.0,0.0,5.0,0.0,666.0,26.0,574.0,870.0,0.0,43.0,0.0,16.0,23.0,0.0,25.0,268.0,170.0,0.0,35.0,0.0,99.0,62.0,0.0,0.0,0.0,0.0,16.0,0.0,0.0,87.0,18.0,0.0,42.0,124.0,66.0,0.0,1919.0,0.0,0.0,732.0,688.0,61.0,0.0,49.0,8.0,603.0,0.0,13.0,0.0,0.0,0.0,0.0,322.0,0.0,0.0,24.0,2132.0,0.0,395.0,0.0,261.0,79.0,0.0,46.0,14.0,0.0,4.0,0.0,0.0,6.0,0.0,1566.0,965.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2463.0,3991.0,0.0,0.0,0.0,29.0,292.0,95.0,10413.0,0.0,0.0,0.0,0.0,0.0,56.0,0.0,14.0,0.0,0.0,1797.0,225.0,142.0,0.0,0.0,2010-11-28,,2010-47,1.299341726935058,1.4060000000000001, +84,84,1.42,221.0,0.0,112.0,0.0,433.0,0.0,57.0,123.0,0.0,361.0,0.0,0.0,41.0,0.0,1274.0,29.0,79.0,48.0,0.0,0.0,0.0,0.0,115.0,0.0,1065.0,0.0,505.0,0.0,106.0,0.0,0.0,26.0,1123.0,221.0,602.0,0.0,185.0,0.0,37.0,86.0,20.0,31.0,0.0,0.0,223.0,50.0,90.0,918.0,5.0,130.0,36.0,1627.0,68.0,52.0,58.0,479.0,781.0,40.0,291.0,0.0,486.0,101.0,88.0,523.0,33.0,0.0,12.0,110.0,454.0,251.0,0.0,1365.0,294.0,505.0,0.0,0.0,0.0,605.0,67.0,18.0,0.0,20.0,48.0,92.0,53.0,145.0,521.0,0.0,0.0,97.0,424.0,0.0,592.0,684.0,722.0,175.0,303.0,105.0,0.0,0.0,74.0,0.0,1286.0,1216.0,7.0,0.0,0.0,45.0,45.0,230.0,1126.0,28.0,35.0,794.0,109.0,4217.0,0.0,0.0,37.0,32.0,0.0,17.0,22.0,0.0,0.0,710.0,24.0,72.0,30.0,13.0,33.0,545.0,52.0,0.0,0.0,68.0,234.0,1101.0,7.0,31.0,197.0,0.0,0.0,280.0,4174.0,134.0,15.0,61.0,18.0,493.0,231.0,0.0,0.0,0.0,218.0,566.0,71.0,97.0,0.0,8.0,1569.0,310.0,160.0,0.0,2020.0,0.0,0.0,0.0,0.0,564.0,2328.0,1016.0,1028.0,0.0,0.0,365.0,26.0,87.0,155.0,0.0,190.0,489.0,0.0,0.0,0.0,0.0,57.0,84.0,323.0,513.0,47.0,0.0,0.0,0.0,84.0,228.0,30.0,24.0,0.0,199.0,0.0,197.0,0.0,108.0,0.0,0.0,543.0,1346.0,67.0,177.0,31.0,0.0,22.0,85.0,185.0,5597304.0,61.0,88.0,98.0,54.0,0.0,835.0,89.0,0.0,0.0,480.0,0.0,0.0,13.0,52.0,0.0,150.0,207.0,0.0,42.0,116.0,914.0,913.0,394.0,172.0,1682.0,477.0,170.0,1361.0,1056.0,21.0,95.0,223.0,0.0,218.0,0.0,144.0,20.0,474.0,261.0,0.0,284.0,0.0,0.0,6.0,0.0,575.0,37.0,463.0,775.0,0.0,34.0,0.0,29.0,11.0,0.0,27.0,246.0,167.0,0.0,32.0,0.0,96.0,47.0,0.0,0.0,0.0,0.0,15.0,0.0,0.0,86.0,24.0,0.0,32.0,129.0,51.0,0.0,1655.0,3.0,0.0,632.0,518.0,32.0,0.0,43.0,16.0,557.0,0.0,10.0,0.0,0.0,0.0,0.0,263.0,0.0,0.0,13.0,1691.0,0.0,285.0,0.0,191.0,72.0,238.0,50.0,27.0,0.0,0.0,0.0,0.0,5.0,15.0,1278.0,764.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2070.0,3553.0,0.0,0.0,0.0,17.0,245.0,67.0,9285.0,0.0,1.0,0.0,0.0,0.0,38.0,0.0,10.0,0.0,0.0,1728.0,238.0,164.0,0.0,0.0,2010-12-05,,2010-48,1.4285530637471915,1.42, +85,85,1.71,226.0,0.0,117.0,0.0,479.0,0.0,79.0,103.0,0.0,536.0,0.0,0.0,53.0,0.0,1484.0,32.0,105.0,41.0,0.0,0.0,0.0,0.0,128.0,0.0,1216.0,0.0,522.0,0.0,176.0,0.0,0.0,27.0,1326.0,222.0,724.0,0.0,172.0,0.0,52.0,132.0,24.0,24.0,0.0,3.0,141.0,38.0,116.0,1098.0,9.0,152.0,26.0,1625.0,68.0,40.0,59.0,516.0,1065.0,42.0,179.0,0.0,599.0,112.0,70.0,507.0,27.0,0.0,28.0,120.0,556.0,295.0,0.0,1575.0,365.0,579.0,0.0,0.0,0.0,736.0,73.0,22.0,0.0,25.0,56.0,125.0,56.0,169.0,575.0,2.0,0.0,117.0,583.0,0.0,681.0,731.0,770.0,229.0,397.0,103.0,0.0,0.0,71.0,0.0,1367.0,1395.0,15.0,0.0,0.0,44.0,61.0,258.0,1206.0,25.0,45.0,380.0,143.0,5202.0,0.0,0.0,35.0,51.0,0.0,25.0,18.0,0.0,0.0,698.0,30.0,78.0,41.0,29.0,18.0,568.0,57.0,0.0,0.0,101.0,229.0,1138.0,19.0,35.0,204.0,0.0,0.0,229.0,4412.0,165.0,17.0,81.0,25.0,651.0,350.0,0.0,1.0,0.0,205.0,551.0,85.0,114.0,0.0,11.0,1422.0,274.0,170.0,0.0,2391.0,0.0,0.0,0.0,0.0,575.0,1655.0,1192.0,879.0,0.0,0.0,402.0,35.0,118.0,146.0,0.0,202.0,485.0,0.0,0.0,0.0,0.0,79.0,58.0,438.0,568.0,34.0,0.0,0.0,0.0,67.0,226.0,25.0,20.0,0.0,245.0,0.0,233.0,0.0,121.0,0.0,0.0,563.0,1556.0,64.0,166.0,21.0,0.0,27.0,83.0,205.0,6000971.0,89.0,114.0,80.0,52.0,0.0,957.0,98.0,0.0,0.0,453.0,0.0,0.0,17.0,62.0,1.0,168.0,248.0,0.0,82.0,158.0,1034.0,1055.0,419.0,166.0,1873.0,594.0,219.0,1186.0,1297.0,16.0,112.0,252.0,0.0,248.0,0.0,162.0,21.0,652.0,311.0,0.0,302.0,0.0,0.0,4.0,0.0,629.0,31.0,528.0,787.0,0.0,34.0,0.0,18.0,17.0,0.0,16.0,321.0,210.0,0.0,26.0,0.0,176.0,44.0,0.0,0.0,0.0,0.0,27.0,0.0,0.0,103.0,18.0,0.0,51.0,133.0,50.0,0.0,2053.0,18.0,0.0,878.0,544.0,47.0,0.0,35.0,7.0,643.0,0.0,19.0,0.0,0.0,0.0,0.0,342.0,0.0,0.0,20.0,1988.0,0.0,368.0,0.0,209.0,97.0,252.0,53.0,29.0,0.0,1.0,0.0,0.0,9.0,19.0,1412.0,1017.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2254.0,3948.0,0.0,0.0,0.0,24.0,293.0,52.0,9472.0,0.0,1.0,0.0,0.0,0.0,41.0,0.0,14.0,0.0,0.0,1971.0,215.0,139.0,0.0,0.0,2010-12-12,,2010-49,1.6223580164540845,1.7939999999999998, +86,86,2.32,335.0,0.0,135.0,0.0,489.0,0.0,76.0,110.0,0.0,457.0,0.0,0.0,47.0,0.0,1400.0,49.0,120.0,53.0,0.0,0.0,0.0,0.0,117.0,0.0,1469.0,0.0,483.0,0.0,156.0,0.0,0.0,31.0,1231.0,230.0,777.0,0.0,170.0,0.0,65.0,105.0,29.0,25.0,0.0,3.0,170.0,49.0,100.0,1165.0,10.0,147.0,31.0,1718.0,84.0,51.0,67.0,438.0,1143.0,44.0,144.0,0.0,581.0,76.0,75.0,482.0,23.0,0.0,41.0,101.0,506.0,268.0,0.0,1499.0,313.0,627.0,0.0,0.0,0.0,752.0,87.0,27.0,0.0,17.0,44.0,118.0,53.0,143.0,504.0,0.0,0.0,104.0,530.0,0.0,647.0,767.0,893.0,208.0,399.0,103.0,0.0,0.0,74.0,0.0,1445.0,1306.0,13.0,0.0,0.0,43.0,78.0,237.0,1205.0,20.0,30.0,432.0,112.0,5821.0,0.0,0.0,46.0,31.0,0.0,18.0,14.0,0.0,0.0,744.0,24.0,98.0,30.0,18.0,28.0,494.0,103.0,0.0,0.0,83.0,259.0,1205.0,10.0,40.0,242.0,0.0,0.0,238.0,4500.0,122.0,20.0,56.0,22.0,489.0,362.0,0.0,0.0,0.0,248.0,607.0,75.0,132.0,0.0,10.0,3089.0,258.0,174.0,0.0,2231.0,0.0,0.0,0.0,0.0,580.0,1496.0,1106.0,778.0,0.0,0.0,282.0,32.0,94.0,146.0,0.0,168.0,495.0,0.0,0.0,0.0,0.0,67.0,63.0,421.0,577.0,44.0,0.0,11.0,23.0,72.0,248.0,20.0,20.0,0.0,224.0,0.0,207.0,0.0,78.0,0.0,0.0,465.0,1575.0,81.0,214.0,41.0,0.0,38.0,114.0,177.0,6002748.0,87.0,74.0,69.0,38.0,0.0,1005.0,120.0,0.0,0.0,509.0,0.0,0.0,27.0,61.0,0.0,152.0,241.0,0.0,105.0,140.0,957.0,911.0,431.0,168.0,1811.0,636.0,203.0,1229.0,1282.0,38.0,96.0,246.0,1.0,229.0,2.0,98.0,26.0,527.0,340.0,0.0,292.0,3.0,0.0,8.0,0.0,762.0,21.0,525.0,845.0,0.0,58.0,0.0,26.0,17.0,0.0,21.0,267.0,149.0,0.0,37.0,0.0,145.0,32.0,0.0,0.0,0.0,0.0,21.0,0.0,0.0,94.0,21.0,0.0,27.0,117.0,50.0,0.0,1973.0,50.0,0.0,687.0,500.0,76.0,0.0,32.0,12.0,554.0,0.0,12.0,0.0,0.0,0.0,0.0,284.0,0.0,0.0,18.0,1812.0,0.0,359.0,0.0,207.0,70.0,239.0,54.0,20.0,0.0,1.0,0.0,0.0,10.0,20.0,1360.0,840.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2032.0,3945.0,0.0,0.0,0.0,27.0,247.0,79.0,9549.0,0.0,0.0,0.0,0.0,0.0,44.0,0.0,15.0,0.0,0.0,1980.0,156.0,173.0,0.0,0.0,2010-12-19,,2010-50,2.398601415922524,2.32, +87,87,3.16,190.0,0.0,81.0,0.0,395.0,0.0,47.0,83.0,0.0,273.0,0.0,0.0,36.0,0.0,1194.0,36.0,69.0,38.0,0.0,0.0,0.0,0.0,87.0,0.0,1447.0,0.0,499.0,0.0,126.0,0.0,0.0,18.0,1060.0,166.0,469.0,0.0,150.0,0.0,45.0,71.0,27.0,16.0,0.0,2.0,142.0,39.0,96.0,714.0,13.0,1042.0,26.0,1422.0,73.0,38.0,60.0,369.0,970.0,23.0,98.0,0.0,445.0,51.0,46.0,364.0,21.0,0.0,27.0,82.0,388.0,182.0,0.0,1270.0,249.0,382.0,0.0,0.0,0.0,485.0,62.0,23.0,0.0,24.0,58.0,206.0,66.0,107.0,502.0,0.0,0.0,73.0,377.0,1.0,539.0,557.0,766.0,162.0,336.0,71.0,0.0,0.0,93.0,0.0,1161.0,1346.0,10.0,0.0,0.0,31.0,27.0,104.0,1177.0,17.0,30.0,356.0,108.0,5932.0,0.0,0.0,36.0,42.0,0.0,24.0,22.0,0.0,0.0,544.0,20.0,72.0,23.0,10.0,23.0,423.0,58.0,0.0,0.0,63.0,189.0,930.0,16.0,23.0,152.0,0.0,0.0,174.0,3283.0,79.0,26.0,66.0,20.0,475.0,379.0,0.0,0.0,0.0,153.0,474.0,49.0,67.0,0.0,13.0,1495.0,204.0,161.0,0.0,1733.0,0.0,0.0,0.0,0.0,566.0,1258.0,982.0,716.0,0.0,0.0,243.0,19.0,73.0,132.0,0.0,132.0,349.0,0.0,0.0,0.0,0.0,66.0,53.0,266.0,512.0,19.0,0.0,14.0,12.0,68.0,257.0,27.0,19.0,0.0,174.0,0.0,149.0,0.0,85.0,0.0,0.0,340.0,1113.0,68.0,186.0,29.0,0.0,25.0,53.0,157.0,5794684.0,58.0,60.0,63.0,41.0,0.0,716.0,80.0,0.0,0.0,455.0,0.0,0.0,19.0,61.0,0.0,160.0,178.0,0.0,68.0,97.0,651.0,618.0,271.0,131.0,1451.0,365.0,184.0,1193.0,1257.0,29.0,84.0,149.0,0.0,158.0,0.0,80.0,15.0,472.0,272.0,0.0,272.0,1.0,0.0,4.0,0.0,748.0,47.0,402.0,617.0,0.0,35.0,0.0,26.0,14.0,0.0,52.0,202.0,377.0,0.0,26.0,0.0,68.0,27.0,0.0,0.0,0.0,0.0,18.0,0.0,0.0,91.0,21.0,0.0,31.0,70.0,31.0,0.0,1746.0,27.0,0.0,659.0,364.0,31.0,0.0,28.0,10.0,439.0,0.0,28.0,0.0,0.0,0.0,0.0,179.0,0.0,0.0,10.0,1509.0,0.0,259.0,0.0,185.0,62.0,199.0,37.0,15.0,0.0,1.0,0.0,0.0,8.0,7.0,906.0,550.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2010.0,2243.0,0.0,0.0,0.0,23.0,195.0,42.0,7718.0,0.0,0.0,0.0,0.0,0.0,35.0,0.0,16.0,0.0,0.0,2063.0,125.0,130.0,0.0,0.0,2010-12-26,,2010-51,3.1591305690876315,2.8000000000000003, +88,88,4.4,178.0,0.0,65.0,0.0,329.0,0.0,46.0,72.0,0.0,259.0,0.0,0.0,40.0,0.0,915.0,26.0,66.0,34.0,0.0,0.0,0.0,0.0,63.0,0.0,1436.0,0.0,430.0,0.0,97.0,0.0,0.0,28.0,730.0,199.0,386.0,0.0,136.0,0.0,34.0,80.0,22.0,14.0,0.0,2.0,105.0,36.0,65.0,652.0,8.0,649.0,25.0,1269.0,50.0,31.0,58.0,302.0,853.0,28.0,81.0,0.0,331.0,56.0,39.0,308.0,17.0,0.0,15.0,58.0,282.0,151.0,0.0,931.0,208.0,345.0,0.0,0.0,0.0,423.0,52.0,18.0,0.0,18.0,42.0,81.0,38.0,92.0,394.0,0.0,0.0,50.0,352.0,0.0,434.0,456.0,685.0,131.0,229.0,74.0,0.0,0.0,45.0,0.0,936.0,941.0,7.0,0.0,0.0,30.0,32.0,125.0,1124.0,11.0,18.0,245.0,110.0,5869.0,0.0,0.0,37.0,21.0,0.0,12.0,11.0,0.0,0.0,590.0,23.0,62.0,33.0,11.0,24.0,354.0,42.0,0.0,0.0,56.0,149.0,774.0,12.0,26.0,145.0,0.0,0.0,150.0,2864.0,67.0,12.0,65.0,15.0,435.0,388.0,0.0,0.0,0.0,145.0,406.0,40.0,84.0,0.0,11.0,1311.0,188.0,106.0,0.0,1455.0,0.0,0.0,0.0,0.0,443.0,1008.0,848.0,526.0,0.0,0.0,236.0,19.0,43.0,88.0,0.0,129.0,304.0,0.0,0.0,0.0,0.0,59.0,43.0,222.0,337.0,25.0,0.0,21.0,9.0,51.0,219.0,13.0,14.0,0.0,146.0,0.0,161.0,0.0,59.0,0.0,0.0,318.0,970.0,42.0,137.0,13.0,0.0,12.0,59.0,110.0,4320070.0,46.0,54.0,65.0,23.0,0.0,510.0,81.0,0.0,0.0,327.0,0.0,0.0,6.0,40.0,0.0,120.0,143.0,0.0,39.0,64.0,665.0,577.0,240.0,88.0,1081.0,307.0,137.0,1764.0,1226.0,20.0,94.0,154.0,5.0,156.0,1.0,103.0,16.0,325.0,240.0,0.0,196.0,0.0,0.0,8.0,0.0,448.0,19.0,261.0,491.0,0.0,41.0,0.0,10.0,16.0,0.0,27.0,169.0,220.0,0.0,27.0,0.0,64.0,24.0,0.0,0.0,0.0,0.0,13.0,0.0,0.0,60.0,15.0,0.0,25.0,95.0,32.0,0.0,1442.0,30.0,0.0,569.0,341.0,35.0,0.0,15.0,11.0,332.0,0.0,9.0,0.0,0.0,0.0,0.0,166.0,0.0,0.0,10.0,1132.0,0.0,229.0,0.0,143.0,52.0,164.0,25.0,17.0,0.0,1.0,0.0,0.0,6.0,13.0,655.0,426.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1548.0,2082.0,0.0,0.0,0.0,12.0,138.0,43.0,5355.0,0.0,0.0,0.0,0.0,0.0,34.0,0.0,9.0,0.0,0.0,1632.0,135.0,150.0,0.0,0.0,2011-01-02,,2010-52,4.360244860963061,3.7060000000000004, +89,89,4.98,299.0,0.0,126.0,0.0,603.0,0.0,72.0,117.0,0.0,524.0,0.0,0.0,56.0,0.0,1523.0,41.0,108.0,68.0,0.0,0.0,0.0,0.0,110.0,0.0,2027.0,0.0,512.0,0.0,179.0,0.0,0.0,23.0,1293.0,275.0,759.0,1.0,233.0,0.0,46.0,76.0,51.0,15.0,0.0,2.0,251.0,50.0,103.0,2079.0,5.0,632.0,21.0,1821.0,69.0,45.0,57.0,442.0,1442.0,65.0,136.0,0.0,630.0,80.0,60.0,458.0,17.0,0.0,32.0,120.0,579.0,237.0,0.0,1618.0,369.0,604.0,0.0,0.0,0.0,746.0,104.0,15.0,0.0,23.0,45.0,155.0,52.0,160.0,633.0,0.0,0.0,111.0,593.0,0.0,615.0,679.0,924.0,197.0,407.0,126.0,0.0,0.0,56.0,0.0,1674.0,1291.0,10.0,0.0,0.0,121.0,104.0,435.0,1563.0,25.0,38.0,521.0,141.0,9613.0,0.0,0.0,43.0,39.0,0.0,34.0,22.0,0.0,0.0,901.0,19.0,105.0,48.0,24.0,29.0,611.0,46.0,0.0,0.0,109.0,298.0,1352.0,18.0,29.8,262.0,0.0,0.0,294.0,4432.0,134.0,20.0,111.0,45.0,756.0,2782.0,0.0,1.0,0.0,277.0,691.0,87.0,111.0,0.0,9.0,2020.0,366.0,233.0,0.0,2519.0,0.0,0.0,0.0,0.0,764.0,1610.0,1666.0,839.0,0.0,0.0,219.0,19.0,91.0,153.0,0.0,238.0,470.0,0.0,0.0,0.0,0.0,94.0,53.0,430.0,633.0,33.0,0.0,34.0,68.0,75.0,319.0,30.0,26.0,0.0,238.0,0.0,236.0,0.0,76.0,0.0,0.0,481.0,1573.0,83.0,243.0,21.0,0.0,16.0,82.0,242.0,6547620.0,75.0,134.0,174.0,47.0,0.0,923.0,105.0,0.0,0.0,553.0,0.0,0.0,9.0,79.0,0.0,173.0,244.0,0.0,83.0,143.0,993.0,910.0,382.0,203.0,1758.0,951.0,168.0,2802.0,1786.0,23.33333333333333,158.0,231.0,0.0,266.0,3.0,150.0,52.0,498.0,424.0,0.0,308.0,1.0,0.0,6.0,0.0,651.0,36.0,555.0,925.0,0.0,46.0,0.0,25.0,20.0,0.0,72.0,285.0,456.0,0.0,44.0,0.0,121.0,31.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,49.0,22.0,0.0,45.0,178.0,50.0,0.0,2285.0,24.0,0.0,838.0,518.0,75.0,0.0,29.0,12.0,568.0,0.0,15.0,0.0,0.0,0.0,0.0,288.0,0.0,0.0,16.0,2162.0,0.0,366.0,1.0,174.0,56.0,233.0,57.0,34.0,0.0,2.0,0.0,0.0,14.0,14.0,1423.0,908.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1807.0,4178.0,0.0,0.0,0.0,22.0,252.0,60.0,7324.0,0.0,1.0,0.0,0.0,0.0,63.0,0.0,12.0,0.0,0.0,2522.0,214.0,142.0,0.0,0.0,2011-01-09,,2011-1,4.988720071539664,3.0040000000000004, +90,90,6.44,313.0,0.0,132.0,0.0,552.0,0.0,125.0,146.0,0.0,610.0,0.0,0.0,62.0,0.0,1852.0,64.0,133.0,48.0,0.0,0.0,0.0,0.0,103.0,0.0,1993.0,0.0,619.0,0.0,156.0,0.0,0.0,23.0,1549.0,262.0,811.0,0.0,240.0,0.0,58.0,119.0,48.0,33.0,0.0,7.0,269.0,63.0,123.0,1918.0,14.0,359.0,40.0,2322.0,136.0,60.0,94.0,599.0,1553.0,64.0,163.0,0.0,731.0,138.0,94.0,655.0,26.0,0.0,40.0,143.0,655.0,341.0,0.0,1835.0,470.0,739.0,0.0,0.0,1.0,842.0,113.0,21.0,0.0,14.0,56.0,114.0,56.0,172.0,769.0,0.0,0.0,148.0,721.0,0.0,923.0,978.0,1105.0,285.0,567.0,153.0,0.0,0.0,88.0,0.0,1774.0,1477.0,15.0,0.0,0.0,67.0,64.0,252.0,1612.0,29.0,33.0,467.0,165.0,10045.0,0.0,0.0,55.0,39.0,0.0,23.0,21.0,0.0,0.0,1077.0,45.0,120.0,46.0,18.0,24.0,540.0,50.0,0.0,0.0,124.0,304.0,1535.0,20.0,33.6,336.0,0.0,0.0,310.0,5833.0,199.0,24.0,115.0,41.0,1101.0,3578.0,0.0,1.0,0.0,338.0,764.0,97.0,169.0,0.0,18.0,1957.0,408.0,251.0,0.0,3059.0,0.0,0.0,0.0,0.0,892.0,2845.0,1409.0,1793.0,0.0,0.0,374.0,17.0,99.0,161.0,0.0,262.0,658.0,0.0,0.0,0.0,0.0,111.0,74.0,521.0,1108.0,42.0,0.0,61.0,73.0,107.0,340.0,22.0,34.0,0.0,300.0,0.0,275.0,0.0,117.0,0.0,0.0,589.0,1959.0,104.0,313.0,28.0,0.0,20.0,76.0,269.0,6780606.0,101.0,180.0,216.0,61.0,0.0,1375.0,97.0,0.0,0.0,676.0,0.0,0.0,20.0,106.0,1.0,224.0,293.0,0.0,127.0,174.0,1264.0,1114.0,462.0,243.0,2077.0,908.0,163.0,2438.0,1646.0,26.66666666666667,189.0,305.0,0.0,322.0,1.0,160.0,88.0,643.0,547.0,0.0,401.0,1.0,0.0,4.0,0.0,750.0,38.0,936.0,1131.0,0.0,58.0,0.0,27.0,26.0,0.0,90.0,397.0,485.0,0.0,54.0,0.0,140.0,52.0,0.0,58.0,0.0,0.0,16.0,0.0,0.0,58.0,16.0,0.0,55.0,251.0,63.0,0.0,2520.0,45.0,0.0,885.0,764.0,98.0,0.0,44.0,12.0,736.0,0.0,21.0,0.0,0.0,0.0,0.0,351.0,0.0,0.0,36.0,2457.0,0.0,479.0,0.0,218.0,90.0,355.0,65.0,19.0,0.0,2.0,0.0,0.0,14.0,17.0,2085.0,1264.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2066.0,5425.0,0.0,0.0,0.0,28.0,213.0,82.0,10835.0,0.0,0.0,0.0,0.0,0.0,71.0,0.0,8.0,0.0,0.0,2554.0,231.0,200.0,0.0,0.0,2011-01-16,,2011-2,6.481044731751556,4.188000000000001, +91,91,8.2,348.0,0.0,172.0,0.0,529.0,0.0,106.0,141.0,0.0,599.0,0.0,0.0,72.0,0.0,1849.0,80.0,158.0,54.0,0.0,0.0,0.0,0.0,135.0,0.0,2196.0,0.0,798.0,0.0,199.0,0.0,0.0,29.0,1834.0,252.0,968.0,0.0,250.0,0.0,68.0,138.0,43.0,25.0,0.0,2.0,233.0,74.0,117.0,1405.0,9.0,456.0,29.0,2651.0,151.0,60.0,104.0,570.0,1417.0,67.0,200.0,0.0,832.0,129.0,80.0,673.0,33.0,0.0,39.0,131.0,725.0,324.0,0.0,1767.0,498.0,865.0,0.0,0.0,0.0,940.0,122.0,25.0,0.0,25.0,62.0,770.0,85.0,173.0,762.0,0.0,0.0,193.0,676.0,0.0,873.0,922.0,1002.0,223.0,501.0,175.0,0.0,0.0,66.0,0.0,1813.0,1624.0,16.0,30.0,0.0,57.0,56.0,326.0,1523.0,38.0,47.0,371.0,158.0,10473.0,0.0,0.0,49.0,42.0,0.0,24.0,26.0,0.0,0.0,984.0,33.0,151.0,58.0,34.0,40.0,1689.0,54.0,0.0,0.0,117.0,319.0,1641.0,21.0,37.4,344.0,0.0,0.0,355.0,6023.0,249.0,18.0,116.0,47.0,1041.0,2969.0,0.0,1.0,0.0,329.0,843.0,96.0,165.0,0.0,11.0,2608.0,476.0,270.0,0.0,3364.0,0.0,0.0,0.0,0.0,821.0,4990.0,1588.0,1386.0,0.0,0.0,404.0,39.0,163.0,188.0,0.0,223.0,602.0,0.0,0.0,0.0,0.0,116.0,61.0,818.0,799.0,40.0,0.0,55.0,73.0,126.0,349.0,24.0,29.0,0.0,297.0,1.0,209.0,0.0,97.0,0.0,0.0,642.0,1998.0,106.0,282.0,30.0,0.0,24.0,109.0,263.0,6557465.0,155.0,170.0,222.0,51.0,0.0,1294.0,114.0,0.0,0.0,693.0,0.0,0.0,12.0,95.0,0.0,148.0,263.0,0.0,114.0,232.0,1329.0,1150.0,597.0,240.0,7131.0,840.0,181.0,2306.0,1456.0,30.0,187.0,336.0,1.0,347.0,0.0,185.0,124.0,697.0,514.0,0.0,384.0,1.0,0.0,8.0,0.0,736.0,38.0,907.0,1138.0,0.0,67.0,0.0,23.0,28.0,0.0,54.0,400.0,293.0,0.0,46.0,0.0,169.0,42.0,0.0,84.0,0.0,0.0,26.0,0.0,0.0,62.0,27.0,0.0,52.0,234.0,75.0,0.0,2587.0,40.0,0.0,952.0,752.0,102.0,0.0,41.0,11.0,876.0,0.0,16.0,0.0,0.0,0.0,0.0,375.0,0.0,0.0,32.0,2555.0,0.0,484.0,0.0,204.0,121.0,338.0,57.0,26.0,0.0,1.0,0.0,0.0,14.0,29.0,1921.0,1072.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2325.0,5154.0,0.0,0.0,0.0,33.0,232.0,126.0,11227.0,0.0,0.0,0.0,0.0,0.0,56.0,0.0,13.0,0.0,0.0,2463.0,278.0,209.0,0.0,0.0,2011-01-23,,2011-3,8.184365271834624,7.486000000000001, +92,92,10.41,411.0,0.0,166.0,0.0,525.0,0.0,94.0,156.0,0.0,588.0,0.0,0.0,68.0,0.0,1595.0,56.0,134.0,60.0,0.0,0.0,0.0,0.0,146.0,0.0,2532.0,0.0,808.0,0.0,169.0,0.0,0.0,36.0,1658.0,268.0,848.0,0.0,199.0,0.0,71.0,102.0,53.0,33.0,0.0,4.0,169.0,68.0,112.0,1214.0,12.0,354.0,51.0,2206.0,85.0,47.0,103.0,513.0,1050.0,49.0,122.0,0.0,676.0,119.0,94.0,654.0,24.0,0.0,26.0,152.0,618.0,369.0,0.0,1652.0,400.0,660.0,1.0,0.0,0.0,825.0,83.0,32.0,0.0,24.0,48.0,190.0,82.0,195.0,804.0,0.0,0.0,127.0,572.0,0.0,960.0,1019.0,1125.0,317.0,516.0,166.0,0.0,0.0,63.0,0.0,1759.0,1602.0,23.0,42.0,0.0,85.0,54.0,404.0,1545.0,23.0,45.0,543.0,166.0,9242.0,0.0,0.0,53.0,51.0,0.0,22.0,15.0,0.0,0.0,848.0,27.0,179.0,53.0,27.0,42.0,815.0,58.0,0.0,0.0,109.0,298.0,1470.0,23.0,41.2,330.0,0.0,0.0,360.0,5299.0,236.0,34.0,110.0,40.0,812.0,2293.0,0.0,0.0,0.0,246.0,845.0,97.0,145.0,0.0,15.0,2059.0,425.0,247.0,0.0,2916.0,0.0,0.0,0.0,0.0,805.0,7389.0,1386.0,774.0,0.0,0.0,369.0,31.0,98.0,122.0,0.0,211.0,579.0,0.0,0.0,0.0,0.0,94.0,51.0,490.0,766.0,24.0,0.0,57.0,95.0,128.0,318.0,20.0,29.0,0.0,283.0,0.0,177.0,0.0,93.0,0.0,0.0,510.0,1930.0,116.0,288.0,24.0,0.0,28.0,126.0,269.0,6537252.0,107.0,114.0,185.0,62.0,0.0,1136.0,149.0,0.0,0.0,681.0,0.0,0.0,18.0,57.0,8.0,181.0,307.0,0.0,92.0,171.0,1177.0,1023.0,546.0,212.0,5827.0,688.0,189.0,1834.0,1606.0,33.333333333333336,156.0,311.0,0.0,318.0,1.0,141.0,160.0,665.0,483.0,0.0,417.0,2.0,0.0,7.0,0.0,595.0,43.0,636.0,979.0,0.0,43.0,0.0,26.0,33.0,0.0,37.0,336.0,314.0,0.0,51.0,0.0,145.0,47.0,0.0,73.0,0.0,0.0,25.0,0.0,0.0,55.0,29.0,0.0,59.0,200.0,58.0,0.0,2113.0,40.0,0.0,738.0,660.0,92.0,0.0,51.0,6.0,666.0,0.0,12.0,0.0,0.0,0.0,0.0,364.0,0.0,0.0,24.0,2170.0,0.0,1046.0,0.0,270.0,105.0,324.0,72.0,21.0,0.0,1.0,0.0,0.0,9.0,28.0,2080.0,1040.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2584.0,4166.0,0.0,0.0,0.0,26.0,307.0,101.0,9624.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,13.0,0.0,0.0,2269.0,219.0,201.0,0.0,0.0,2011-01-30,,2011-4,10.445270506812724,8.936000000000002, +93,93,11.04,340.0,0.0,136.0,0.0,555.0,0.0,109.0,145.0,0.0,584.0,0.0,0.0,54.0,0.0,1462.0,50.0,122.0,48.0,0.0,0.0,0.0,0.0,114.0,0.0,2306.0,0.0,854.0,0.0,141.0,0.0,0.0,35.0,1513.0,250.0,721.0,0.0,241.0,0.0,49.0,105.0,52.0,28.0,0.0,2.0,187.0,56.0,95.0,8676.0,14.0,386.0,41.0,2029.0,115.0,47.0,80.0,478.0,941.0,35.0,121.0,0.0,513.0,113.0,103.0,637.0,31.0,0.0,31.0,144.0,536.0,447.0,0.0,1690.0,386.0,580.0,0.0,0.0,0.0,721.0,90.0,19.0,0.0,20.0,89.0,139.0,84.0,231.0,825.0,0.0,0.0,112.0,500.0,1.0,854.0,918.0,986.0,247.0,507.0,130.0,0.0,0.0,83.0,0.0,1728.0,1505.0,11.0,70.0,0.0,62.0,67.0,284.0,1713.0,33.0,36.0,366.0,157.0,8766.0,0.0,0.0,40.0,41.0,0.0,22.0,19.0,0.0,0.0,870.0,34.0,175.0,58.0,24.0,26.0,666.0,62.0,0.0,0.0,101.0,283.0,1678.0,12.0,45.0,363.0,0.0,0.0,355.0,4946.0,286.0,40.0,64.0,33.0,714.0,1663.0,0.0,1.0,0.0,243.0,703.0,116.0,151.0,0.0,12.0,3163.0,415.0,237.0,0.0,2591.0,0.0,0.0,0.0,0.0,816.0,2697.0,1478.0,748.0,0.0,0.0,335.0,30.0,88.0,138.0,0.0,181.0,649.0,0.0,0.0,0.0,0.0,91.0,58.0,478.0,794.0,43.0,0.0,72.0,142.0,115.0,287.0,19.0,23.0,0.0,343.0,0.0,157.0,0.0,116.0,0.0,0.0,522.0,1649.0,125.0,321.0,30.0,0.0,32.0,124.0,211.0,6265328.0,101.0,127.0,104.0,43.0,0.0,972.0,105.0,0.0,0.0,686.0,0.0,0.0,17.0,64.0,0.0,229.0,233.0,0.0,104.0,191.0,1016.0,907.0,502.0,214.0,2745.0,730.0,195.0,1469.0,1646.0,36.66666666666667,166.0,307.0,0.0,301.0,0.0,133.0,196.0,568.0,425.0,0.0,372.0,0.0,0.0,11.0,0.0,505.0,30.0,545.0,874.0,0.0,56.0,0.0,19.0,26.0,0.0,41.0,339.0,268.0,0.0,61.0,0.0,166.0,44.0,0.0,71.0,0.0,0.0,22.0,0.0,0.0,48.0,24.0,0.0,54.0,182.0,62.0,0.0,1901.0,34.0,0.0,724.0,719.0,84.0,0.0,41.0,14.0,683.0,0.0,11.0,0.0,0.0,0.0,0.0,279.0,0.0,0.0,16.0,2166.0,0.0,664.0,0.0,286.0,72.0,360.0,65.0,31.0,0.0,2.0,0.0,0.0,21.0,25.0,1980.0,925.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2438.0,3717.0,0.0,0.0,0.0,19.0,192.0,105.0,8459.0,0.0,1.0,0.0,0.0,0.0,77.0,0.0,9.0,0.0,0.0,2020.0,220.0,186.0,0.0,0.0,2011-02-06,,2011-5,11.017399413713061,8.766, +94,94,10.05,377.0,0.0,145.0,0.0,553.0,0.0,114.0,143.0,0.0,574.0,0.0,0.0,66.0,0.0,1563.0,61.0,168.0,53.0,0.0,0.0,0.0,0.0,133.0,0.0,2434.0,0.0,812.0,0.0,170.0,0.0,0.0,25.0,1527.0,227.0,820.0,0.0,184.0,0.0,63.0,112.0,66.0,25.0,0.0,3.0,137.0,67.0,84.0,2809.0,16.0,354.0,51.0,1944.0,106.0,47.0,80.0,505.0,994.0,40.0,156.0,0.0,549.0,108.0,80.0,659.0,24.0,0.0,28.0,161.0,565.0,360.0,0.0,1719.0,406.0,733.0,0.0,0.0,0.0,815.0,85.0,20.0,0.0,29.0,69.0,133.0,72.0,209.0,729.0,0.0,0.0,110.0,518.0,0.0,912.0,1039.0,1090.0,277.0,548.0,135.0,0.0,0.0,84.0,0.0,1647.0,1527.0,18.0,44.0,0.0,84.0,84.0,333.0,1649.0,23.0,45.0,498.0,183.0,8434.0,0.0,0.0,63.0,42.0,0.0,42.0,31.0,0.0,0.0,1111.0,35.0,172.0,57.0,20.0,39.0,555.0,54.0,0.0,0.0,128.0,311.0,11395.0,26.0,56.0,352.0,0.0,0.0,333.0,5138.0,293.0,21.0,81.0,53.0,794.0,1370.0,0.0,1.0,0.0,275.0,774.0,79.0,152.0,0.0,23.0,1618.0,384.0,243.0,0.0,2587.0,0.0,0.0,0.0,0.0,836.0,2131.0,1488.0,755.0,0.0,0.0,331.0,42.0,78.0,186.0,0.0,166.0,680.0,0.0,0.0,0.0,0.0,77.0,58.0,465.0,835.0,43.0,35.0,65.0,159.0,152.0,375.0,36.0,26.0,0.0,314.0,0.0,187.0,0.0,127.0,0.0,0.0,523.0,1853.0,114.0,292.0,24.0,0.0,31.0,123.0,247.0,6236701.0,93.0,146.0,145.0,52.0,0.0,1057.0,138.0,0.0,0.0,740.0,0.0,0.0,16.0,51.0,0.0,285.0,253.0,0.0,121.0,196.0,1044.0,861.0,552.0,219.0,1899.0,642.0,248.0,1590.0,1762.0,40.0,228.0,364.0,0.0,334.0,0.0,216.0,361.0,583.0,425.0,0.0,423.0,2.0,0.0,5.0,0.0,571.0,40.0,573.0,844.0,0.0,98.0,0.0,17.0,21.0,0.0,43.0,338.0,312.0,0.0,45.0,0.0,126.0,41.0,0.0,78.0,0.0,0.0,25.0,0.0,0.0,69.0,32.0,0.0,65.0,155.0,69.0,0.0,2100.0,43.0,0.0,806.0,663.0,66.0,0.0,62.0,12.0,648.0,0.0,18.0,0.0,0.0,0.0,0.0,383.0,0.0,0.0,27.0,2336.0,0.0,499.0,0.0,261.0,94.0,321.0,61.0,32.0,0.0,1.0,0.0,0.0,20.0,27.0,1934.0,932.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2498.0,4178.0,0.0,0.0,0.0,30.0,211.0,90.0,8168.0,0.0,0.0,0.0,0.0,0.0,81.0,0.0,14.0,0.0,0.0,2101.0,276.0,188.0,0.0,0.0,2011-02-13,,2011-6,10.057483513338143,9.666, +95,95,7.77,276.0,0.0,140.0,0.0,545.0,0.0,117.0,118.0,0.0,513.0,0.0,0.0,60.0,0.0,1626.0,40.0,148.0,50.0,0.0,0.0,0.0,0.0,126.0,0.0,2033.0,0.0,750.0,0.0,162.0,0.0,0.0,44.0,1532.0,247.0,808.0,1.0,176.0,0.0,60.0,124.0,56.0,43.0,0.0,10.0,192.0,62.0,104.0,1288.0,9.0,309.0,40.0,1983.0,118.0,62.0,83.0,535.0,998.0,49.0,126.0,0.0,582.0,123.0,100.0,721.0,25.0,0.0,38.0,153.0,601.0,403.0,0.0,1779.0,408.0,714.0,0.0,0.0,0.0,836.0,80.0,17.0,0.0,24.0,64.0,132.0,83.0,221.0,720.0,0.0,0.0,128.0,475.0,0.0,1042.0,1011.0,1087.0,276.0,601.0,152.0,0.0,0.0,75.0,0.0,1417.0,1571.0,16.0,36.0,0.0,84.0,81.0,366.0,1560.0,27.0,38.0,613.0,137.0,6939.0,0.0,0.0,49.0,54.0,0.0,27.0,24.0,0.0,0.0,779.0,38.0,197.0,67.0,19.0,30.0,599.0,68.0,0.0,0.0,111.0,301.0,2138.0,33.0,30.0,400.0,0.0,0.0,318.0,5147.0,345.0,30.0,119.0,30.0,747.0,1115.0,0.0,0.0,0.0,325.0,718.0,96.0,142.0,0.0,9.0,1513.0,406.0,258.0,0.0,2682.0,0.0,0.0,0.0,0.0,798.0,1854.0,1435.0,755.0,0.0,0.0,359.0,36.0,116.0,152.0,0.0,207.0,595.0,0.0,0.0,0.0,0.0,73.0,64.0,472.0,778.0,45.0,43.0,71.0,134.0,159.0,321.0,37.0,24.0,0.0,389.0,1.0,165.0,0.0,116.0,0.0,0.0,520.0,1692.0,118.0,308.0,29.0,0.0,38.0,144.0,261.0,6214533.0,95.0,148.0,128.0,70.0,1.0,1241.0,117.0,0.0,0.0,695.0,0.0,0.0,22.0,76.0,1.0,235.0,252.0,0.0,90.0,155.0,1262.0,925.0,583.0,206.0,2296.0,669.0,220.0,1415.0,1549.0,40.0,146.0,298.0,1.0,319.0,0.0,172.0,372.0,565.0,381.0,0.0,518.0,0.0,0.0,4.0,0.0,587.0,33.0,637.0,1728.0,0.0,71.0,0.0,25.0,31.0,0.0,41.0,316.0,296.0,0.0,30.0,0.0,182.0,52.0,0.0,75.0,0.0,0.0,33.0,0.0,0.0,63.0,33.0,0.0,67.0,158.0,54.0,0.0,2157.0,46.0,0.0,794.0,664.0,41.0,0.0,57.0,11.0,681.0,0.0,16.0,0.0,0.0,0.0,0.0,345.0,0.0,0.0,25.0,2178.0,0.0,419.0,0.0,220.0,85.0,338.0,58.0,32.0,0.0,1.0,0.0,0.0,13.0,44.0,1826.0,964.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2356.0,3864.0,0.0,0.0,0.0,34.0,173.0,100.0,8010.0,0.0,0.0,0.0,0.0,0.0,66.0,0.0,15.0,0.0,0.0,2056.0,239.0,181.0,0.0,0.0,2011-02-20,,2011-7,7.749057347787036,6.898, +96,96,5.45,276.0,0.0,157.0,0.0,555.0,0.0,111.0,143.0,0.0,373.0,0.0,0.0,53.0,0.0,1523.0,58.0,139.0,56.0,0.0,0.0,0.0,0.0,110.0,0.0,1744.0,0.0,624.0,0.0,165.0,0.0,0.0,27.0,1582.0,177.0,733.0,0.0,191.0,0.0,87.0,113.0,61.0,24.0,0.0,2.0,188.0,68.0,98.0,1203.0,8.0,286.0,33.0,2001.0,124.0,56.0,83.0,530.0,863.0,48.0,126.0,0.0,573.0,145.0,107.0,684.0,34.0,0.0,28.0,153.0,578.0,350.0,0.0,1661.0,353.0,629.0,0.0,0.0,0.0,755.0,70.0,20.0,0.0,15.0,52.0,151.0,92.0,172.0,694.0,0.0,0.0,105.0,478.0,0.0,844.0,899.0,1003.0,250.0,526.0,129.0,0.0,0.0,81.0,0.0,1629.0,1784.0,21.0,50.0,0.0,62.0,83.0,385.0,1548.0,28.0,23.0,469.0,162.0,6022.0,0.0,0.0,49.0,56.0,0.0,30.0,19.0,0.0,0.0,793.0,24.0,139.0,48.0,13.0,45.0,618.0,74.0,0.0,0.0,102.0,258.0,1608.0,23.0,50.0,360.0,0.0,0.0,336.0,4968.0,309.0,18.0,56.0,25.0,707.0,775.0,0.0,0.0,0.0,305.0,626.0,90.0,140.0,0.0,13.0,1623.0,420.0,264.0,0.0,2506.0,0.0,0.0,0.0,0.0,906.0,1548.0,1267.0,767.0,0.0,0.0,371.0,37.0,93.0,189.0,0.0,194.0,546.0,0.0,0.0,0.0,0.0,92.0,65.0,484.0,816.0,47.0,37.0,73.0,157.0,140.0,343.0,29.0,18.0,0.0,372.0,1.0,194.0,0.0,139.0,0.0,0.0,510.0,1747.0,119.0,280.0,33.0,0.0,23.0,104.0,251.0,5930236.0,88.0,95.0,98.0,61.0,0.0,1233.0,127.0,0.0,0.0,692.0,0.0,0.0,18.0,78.0,0.0,184.0,261.0,0.0,101.0,168.0,1065.0,901.0,533.0,196.0,1921.0,573.0,198.0,1319.0,1550.0,48.0,113.0,258.0,0.0,271.0,0.0,135.0,361.0,637.0,395.0,0.0,490.0,1.0,0.0,8.0,0.0,527.0,64.0,667.0,1131.0,0.0,62.0,0.0,24.0,26.0,0.0,46.0,285.0,237.0,0.0,36.0,0.0,148.0,47.0,0.0,79.0,0.0,0.0,34.0,0.0,0.0,41.0,31.0,0.0,54.0,127.0,63.0,0.0,1995.0,43.0,0.0,1062.0,729.0,34.0,0.0,50.0,16.0,650.0,0.0,15.0,0.0,0.0,0.0,0.0,306.0,0.0,0.0,15.0,6358.0,0.0,515.0,0.0,183.0,77.0,354.0,72.0,30.0,0.0,2.0,0.0,0.0,21.0,32.0,2041.0,1099.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2460.0,3654.0,0.0,0.0,0.0,27.0,221.0,87.0,15651.0,0.0,0.0,0.0,0.0,0.0,58.0,1.0,18.0,0.0,0.0,2127.0,219.0,190.0,0.0,0.0,2011-02-27,,2011-8,5.427825392918911,5.45, +97,97,4.12,247.0,0.0,125.0,0.0,519.0,0.0,98.0,114.0,0.0,374.0,0.0,0.0,34.0,0.0,1437.0,38.0,85.0,49.0,0.0,0.0,0.0,0.0,91.0,0.0,1691.0,0.0,710.0,0.0,152.0,0.0,0.0,41.0,1370.0,207.0,599.0,0.0,181.0,0.0,51.0,83.0,41.0,32.0,0.0,1.0,187.0,64.0,88.0,1074.0,14.0,344.0,30.0,1786.0,91.0,54.0,82.0,452.0,928.0,30.0,175.0,0.0,494.0,129.0,75.0,538.0,34.0,0.0,27.0,121.0,525.0,360.0,0.0,1682.0,289.0,534.0,0.0,0.0,0.0,708.0,50.0,15.0,0.0,21.0,74.0,132.0,81.0,172.0,659.0,0.0,0.0,77.0,447.0,0.0,984.0,1027.0,1128.0,287.0,557.0,113.0,0.0,0.0,61.0,0.0,1465.0,1506.0,23.0,37.0,0.0,44.0,47.0,277.0,1560.0,22.0,35.0,467.0,123.0,5456.0,0.0,0.0,45.0,47.0,0.0,13.0,21.0,0.0,0.0,670.0,23.0,164.0,56.0,15.0,20.0,748.0,71.0,0.0,0.0,74.0,252.0,1609.0,20.0,30.0,262.0,0.0,0.0,295.0,4500.0,188.0,16.0,41.0,23.0,726.0,699.0,0.0,0.0,0.0,181.0,556.0,75.0,118.0,0.0,7.0,2346.0,317.0,232.0,0.0,2194.0,0.0,0.0,0.0,0.0,864.0,2592.0,1186.0,708.0,0.0,0.0,345.0,34.0,126.0,144.0,0.0,159.0,624.0,0.0,0.0,0.0,0.0,95.0,80.0,368.0,684.0,34.0,40.0,63.0,90.0,120.0,364.0,29.0,29.0,0.0,334.0,0.0,183.0,0.0,117.0,0.0,0.0,476.0,1555.0,107.0,273.0,27.0,0.0,22.0,77.0,185.0,5995356.0,77.0,79.0,79.0,62.0,0.0,1038.0,121.0,0.0,0.0,583.0,0.0,0.0,33.0,60.0,0.0,217.0,198.0,0.0,66.0,139.0,953.0,852.0,468.0,190.0,1845.0,555.0,193.0,1335.0,1483.0,21.0,127.0,206.0,1.0,247.0,0.0,145.0,337.0,534.0,369.0,0.0,438.0,1.0,0.0,9.0,0.0,626.0,32.0,558.0,833.0,0.0,60.0,0.0,12.0,21.0,0.0,20.0,252.0,200.0,0.0,38.0,0.0,89.0,37.0,0.0,71.0,0.0,0.0,25.0,1.0,0.0,43.0,25.0,0.0,57.0,86.0,58.0,0.0,1988.0,29.0,0.0,739.0,680.0,27.0,0.0,50.0,11.0,610.0,0.0,7.0,0.0,0.0,0.0,0.0,242.0,0.0,0.0,17.0,2252.0,0.0,1844.0,0.0,187.0,88.0,427.0,133.0,23.0,0.0,6.0,0.0,0.0,12.0,24.0,1825.0,1021.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2388.0,3360.0,0.0,0.0,0.0,30.0,178.0,89.0,8813.0,0.0,1.0,0.0,0.0,0.0,80.0,0.0,15.0,0.0,0.0,2027.0,183.0,200.0,0.0,0.0,2011-03-06,,2011-9,4.098925373972591,3.2800000000000007, +98,98,3.1,322.0,0.0,126.0,0.0,522.0,0.0,87.0,176.0,0.0,377.0,0.0,0.0,30.0,0.0,1407.0,49.0,93.0,38.0,0.0,0.0,0.0,0.0,108.0,0.0,1592.0,0.0,634.0,0.0,199.0,0.0,0.0,24.0,1396.0,247.0,672.0,0.0,192.0,0.0,40.0,105.0,42.0,24.0,0.0,1.0,213.0,60.0,99.0,1836.0,16.0,237.0,27.0,1899.0,84.0,50.0,86.0,432.0,805.0,28.0,208.0,0.0,494.0,127.0,82.0,534.0,24.0,0.0,19.0,107.0,415.0,366.0,0.0,1789.0,272.0,529.0,0.0,0.0,0.0,707.0,49.0,12.0,0.0,20.0,63.0,156.0,74.0,164.0,672.0,0.0,0.0,63.0,466.0,1.0,859.0,936.0,1016.0,255.0,498.0,112.0,0.0,0.0,58.0,0.0,1450.0,1492.0,22.0,33.0,0.0,49.0,56.0,208.0,1462.0,19.0,30.0,427.0,158.0,5336.0,0.0,0.0,37.0,46.0,0.0,20.0,11.0,0.0,0.0,648.0,13.0,119.0,50.0,19.0,35.0,751.0,51.0,0.0,0.0,75.0,257.0,1550.0,14.0,38.0,275.0,0.0,0.0,296.0,4410.0,217.0,22.0,61.0,37.0,851.0,481.0,0.0,0.0,0.0,226.0,565.0,96.0,121.0,0.0,18.0,1553.0,341.0,232.0,0.0,2117.0,0.0,0.0,0.0,0.0,802.0,1616.0,1385.0,673.0,0.0,1.0,313.0,27.0,143.0,149.0,0.0,188.0,655.0,0.0,0.0,0.0,0.0,108.0,81.0,636.0,675.0,32.0,39.0,59.0,111.0,87.0,355.0,46.0,18.0,0.0,343.0,0.0,184.0,0.0,119.0,0.0,0.0,478.0,1523.0,111.0,258.0,24.0,0.0,32.0,96.0,211.0,6105131.0,84.0,95.0,94.0,64.0,0.0,909.0,94.0,0.0,0.0,593.0,0.0,0.0,31.0,64.0,0.0,182.0,198.0,0.0,71.0,145.0,954.0,828.0,482.0,139.0,1823.0,453.0,209.0,1350.0,1578.0,32.0,110.0,257.0,0.0,255.0,0.0,127.0,316.0,489.0,390.0,0.0,467.0,1.0,0.0,8.0,0.0,517.0,48.0,501.0,765.0,0.0,79.0,0.0,17.0,23.0,0.0,27.0,265.0,186.0,0.0,25.0,0.0,76.0,35.0,0.0,76.0,0.0,0.0,17.0,0.0,0.0,40.0,32.0,0.0,49.0,80.0,53.0,0.0,1877.0,29.0,0.0,717.0,683.0,26.0,0.0,62.0,9.0,559.0,0.0,14.0,0.0,0.0,0.0,0.0,250.0,0.0,0.0,16.0,1956.0,0.0,396.0,0.0,159.0,68.0,311.0,75.0,26.0,0.0,4.0,0.0,0.0,10.0,17.0,1717.0,789.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2354.0,3084.0,0.0,0.0,0.0,23.0,186.0,81.0,8388.0,0.0,0.0,0.0,0.0,0.0,82.0,0.0,15.0,0.0,0.0,2066.0,198.0,223.0,0.0,0.0,2011-03-13,,2011-10,3.096028164525479,2.588, +99,99,2.1,252.0,0.0,130.0,0.0,527.0,0.0,61.0,135.0,0.0,337.0,0.0,0.0,28.0,0.0,1351.0,46.0,75.0,56.0,0.0,0.0,0.0,0.0,103.0,0.0,1516.0,0.0,658.0,0.0,150.0,0.0,0.0,25.0,1289.0,259.0,578.0,0.0,198.0,0.0,46.0,92.0,59.0,29.0,0.0,5.0,180.0,58.0,81.0,1007.0,10.0,185.0,37.0,1786.0,88.0,59.0,81.0,455.0,869.0,32.0,155.0,0.0,488.0,92.0,84.0,526.0,21.0,0.0,29.0,113.0,424.0,348.0,0.0,1572.0,288.0,517.0,0.0,0.0,0.0,630.0,53.0,11.0,0.0,19.0,55.0,125.0,70.0,200.0,698.0,0.0,0.0,75.0,430.0,0.0,818.0,864.0,924.0,242.0,520.0,99.0,0.0,0.0,62.0,0.0,1233.0,1477.0,14.0,48.0,0.0,72.0,62.0,205.0,1429.0,20.0,34.0,388.0,137.0,5015.0,0.0,0.0,40.0,49.0,0.0,35.0,15.0,0.0,0.0,650.0,28.0,119.0,43.0,13.0,21.0,616.0,36.0,0.0,0.0,87.0,275.0,1433.0,20.0,18.0,243.0,0.0,0.0,294.0,3930.0,241.0,24.0,58.0,37.0,854.0,406.0,0.0,0.0,0.0,212.0,541.0,83.0,124.0,0.0,10.0,1161.0,322.0,250.0,0.0,2110.0,0.0,0.0,0.0,0.0,884.0,1200.0,1181.0,741.0,0.0,0.0,293.0,24.0,118.0,139.0,0.0,168.0,586.0,0.0,0.0,0.0,0.0,133.0,50.0,354.0,692.0,31.0,34.0,56.0,98.0,94.0,254.0,17.0,32.0,0.0,350.0,0.0,182.0,0.0,122.0,0.0,0.0,451.0,1467.0,91.0,231.0,30.0,0.0,15.0,93.0,188.0,6083942.0,87.0,146.0,90.0,53.0,0.0,901.0,108.0,0.0,0.0,620.0,0.0,0.0,14.0,57.0,1.0,180.0,246.0,0.0,69.0,133.0,994.0,867.0,445.0,138.0,1772.0,476.0,196.0,1102.0,1290.0,26.0,155.0,257.0,0.0,276.0,0.0,166.0,228.0,540.0,353.0,0.0,454.0,3.0,0.0,7.0,0.0,513.0,45.0,534.0,726.0,0.0,55.0,0.0,8.0,19.0,0.0,28.0,279.0,202.0,0.0,32.0,0.0,81.0,42.0,0.0,69.0,0.0,0.0,19.0,0.0,0.0,45.0,31.0,0.0,43.0,87.0,39.0,0.0,1866.0,34.0,0.0,816.0,640.0,25.0,0.0,60.0,10.0,497.0,0.0,17.0,0.0,0.0,0.0,0.0,290.0,0.0,0.0,21.0,1866.0,0.0,386.0,0.0,162.0,44.0,267.0,55.0,30.0,0.0,3.0,0.0,0.0,17.0,28.0,1622.0,687.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2438.0,2782.0,0.0,0.0,0.0,27.0,155.0,90.0,7671.0,0.0,0.0,0.0,0.0,0.0,73.0,0.0,20.0,0.0,0.0,2022.0,201.0,174.0,0.0,0.0,2011-03-20,,2011-11,2.1012708968064278,1.788, +100,100,1.63,207.0,0.0,115.0,0.0,499.0,0.0,72.0,118.0,0.0,398.0,0.0,0.0,48.0,0.0,1331.0,50.0,83.0,54.0,0.0,0.0,0.0,0.0,93.0,0.0,1453.0,1.0,658.0,0.0,159.0,0.0,0.0,26.0,1359.0,235.0,581.0,1.0,166.0,0.0,51.0,119.0,38.0,39.0,0.0,3.0,175.0,58.0,123.0,979.0,13.0,153.0,32.0,1860.0,98.0,46.0,85.0,437.0,858.0,52.0,116.0,0.0,521.0,118.0,83.0,583.0,27.0,0.0,23.0,99.0,452.0,377.0,0.0,1663.0,281.0,537.0,0.0,0.0,1.0,688.0,44.0,17.0,0.0,19.0,53.0,134.0,101.0,217.0,859.0,1.0,0.0,61.0,375.0,0.0,929.0,935.0,1033.0,258.0,572.0,148.0,0.0,0.0,87.0,0.0,1633.0,1545.0,21.0,41.0,0.0,56.0,76.0,253.0,1533.0,21.0,49.0,492.0,139.0,4420.0,0.0,0.0,28.0,53.0,0.0,523.0,12.0,0.0,0.0,629.0,17.0,127.0,54.0,17.0,26.0,566.0,52.0,0.0,0.0,115.0,257.0,1362.0,29.0,33.0,230.0,0.0,0.0,310.0,4179.0,210.0,23.0,38.0,25.0,634.0,445.0,0.0,1.0,0.0,240.0,635.0,102.0,129.0,0.0,14.0,1337.0,359.0,252.0,0.0,2084.0,0.0,0.0,0.0,0.0,1136.0,1618.0,1464.0,709.0,0.0,0.0,336.0,29.0,83.0,165.0,0.0,177.0,617.0,0.0,0.0,0.0,0.0,82.0,71.0,376.0,666.0,27.0,39.0,47.0,126.0,92.0,321.0,22.0,29.0,0.0,364.0,1.0,223.0,0.0,112.0,0.0,0.0,476.0,1586.0,91.0,253.0,25.0,0.0,21.0,85.0,190.0,6016915.0,91.0,96.0,85.0,57.0,1.0,833.0,100.0,0.0,0.0,649.0,0.0,0.0,17.0,59.0,2.0,181.0,202.0,0.0,96.0,162.0,1039.0,753.0,428.0,167.0,1824.0,427.0,248.0,1288.0,1349.0,29.0,138.0,235.0,0.0,242.0,0.0,144.0,292.0,543.0,405.0,0.0,437.0,3.0,0.0,6.0,0.0,516.0,41.0,484.0,739.0,0.0,46.0,0.0,15.0,33.0,0.0,17.0,284.0,161.0,0.0,25.0,0.0,99.0,50.0,0.0,69.0,0.0,0.0,14.0,0.0,0.0,37.0,28.0,0.0,49.0,81.0,64.0,0.0,1878.0,40.0,0.0,842.0,844.0,23.0,0.0,59.0,8.0,624.0,0.0,16.0,0.0,0.0,0.0,0.0,265.0,0.0,0.0,17.0,2002.0,0.0,422.0,0.0,199.0,76.0,289.0,47.0,17.0,0.0,4.0,0.0,0.0,11.0,27.0,1659.0,841.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2652.0,3112.0,0.0,0.0,0.0,23.0,173.0,61.0,8750.0,0.0,1.0,0.0,0.0,0.0,53.0,0.0,15.0,0.0,0.0,2050.0,220.0,183.0,0.0,0.0,2011-03-27,,2011-12,1.6272184349832113,3.3240000000000003, +101,101,1.14,228.0,0.0,124.0,0.0,482.0,0.0,57.0,133.0,0.0,363.0,0.0,0.0,38.0,0.0,1334.0,58.0,102.0,37.0,0.0,0.0,0.0,0.0,112.0,0.0,1374.0,0.0,606.0,0.0,164.0,0.0,0.0,34.0,1289.0,209.0,519.0,1.0,198.0,0.0,58.0,120.0,115.0,28.0,0.0,2.0,173.0,63.0,86.0,1050.0,17.0,174.0,41.0,1745.0,122.0,47.0,90.0,459.0,850.0,38.0,97.0,0.0,481.0,112.0,72.0,523.0,22.0,0.0,16.0,157.0,446.0,490.0,0.0,1787.0,290.0,514.0,0.0,0.0,0.0,688.0,54.0,13.0,0.0,20.0,53.0,174.0,142.0,170.0,657.0,0.0,0.0,88.0,395.0,0.0,825.0,906.0,1008.0,238.0,521.0,121.0,0.0,0.0,84.0,0.0,1558.0,1487.0,23.0,36.0,0.0,55.0,50.0,228.0,1664.0,30.0,30.0,501.0,163.0,4161.0,0.0,0.0,42.0,40.0,0.0,30.0,12.0,0.0,0.0,616.0,22.0,122.0,45.0,27.0,28.0,549.0,49.0,0.0,0.0,89.0,254.0,1473.0,19.0,21.0,274.0,0.0,0.0,299.0,4160.0,231.0,23.0,40.0,29.0,684.0,301.0,0.0,0.0,0.0,225.0,598.0,71.0,154.0,0.0,15.0,1020.0,383.0,259.0,0.0,2086.0,0.0,0.0,0.0,0.0,1181.0,1403.0,1329.0,753.0,0.0,0.0,324.0,37.0,99.0,148.0,0.0,190.0,603.0,0.0,0.0,0.0,0.0,75.0,59.0,363.0,664.0,54.0,32.0,50.0,110.0,96.0,308.0,26.0,30.0,0.0,339.0,0.0,205.0,0.0,130.0,0.0,0.0,442.0,1603.0,63.0,244.0,28.0,0.0,30.0,89.0,183.0,5794205.0,89.0,79.0,80.0,49.0,0.0,942.0,103.0,0.0,0.0,618.0,0.0,0.0,20.0,59.0,0.0,196.0,233.0,0.0,97.0,140.0,1018.0,839.0,446.0,146.0,1712.0,504.0,263.0,1089.0,1124.0,23.0,145.0,267.0,0.0,281.0,1.0,188.0,245.0,493.0,390.0,0.0,431.0,1.0,0.0,13.0,0.0,457.0,36.0,520.0,751.0,0.0,56.0,0.0,25.0,32.0,0.0,29.0,262.0,167.0,0.0,35.0,0.0,114.0,48.0,0.0,59.0,0.0,0.0,21.0,0.0,0.0,45.0,27.0,0.0,68.0,115.0,59.0,0.0,1833.0,32.0,0.0,771.0,622.0,36.0,0.0,50.0,9.0,569.0,0.0,19.0,0.0,0.0,0.0,0.0,239.0,0.0,0.0,21.0,2068.0,0.0,323.0,0.0,254.0,65.0,342.0,60.0,32.0,0.0,1.0,0.0,9.0,16.0,26.0,1505.0,761.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2579.0,2682.0,0.0,0.0,0.0,30.0,183.0,93.0,10079.0,0.0,0.0,0.0,0.0,0.0,64.0,0.0,14.0,0.0,0.0,1975.0,239.0,163.0,0.0,0.0,2011-04-03,,2011-13,1.2126879435080493,1.0999999999999999, +102,102,0.94,184.0,0.0,157.0,0.0,459.0,0.0,83.0,162.0,0.0,412.0,0.0,0.0,40.0,0.0,1434.0,41.0,82.0,47.0,0.0,0.0,0.0,0.0,85.0,0.0,1514.0,3.0,654.0,0.0,179.0,0.0,0.0,30.0,1232.0,225.0,622.0,3.0,178.0,0.0,43.0,97.0,62.0,25.0,0.0,3.0,146.0,79.0,96.0,1080.0,13.0,180.0,36.0,1677.0,110.0,62.0,88.0,453.0,887.0,45.0,101.0,0.0,515.0,105.0,78.0,549.0,28.0,0.0,23.0,150.0,370.0,291.0,0.0,1546.0,315.0,514.0,0.0,0.0,3.0,640.0,74.0,10.0,0.0,22.0,48.0,98.0,181.0,208.0,709.0,3.0,0.0,91.0,438.0,0.0,789.0,830.0,937.0,234.0,449.0,105.0,0.0,0.0,70.0,0.0,1460.0,1637.0,26.0,32.0,0.0,57.0,43.0,200.0,1593.0,14.0,42.0,371.0,156.0,4175.0,0.0,0.0,35.0,34.0,0.0,20.0,17.0,0.0,0.0,612.0,15.0,121.0,67.0,21.0,30.0,487.0,62.0,0.0,0.0,105.0,246.0,1674.0,15.0,24.0,276.0,0.0,0.0,311.0,4298.0,249.0,25.0,32.0,30.0,538.0,253.0,0.0,1.0,0.0,214.0,735.0,77.0,122.0,0.0,10.0,1027.0,336.0,235.0,0.0,2053.0,0.0,0.0,0.0,0.0,1077.0,1276.0,1896.0,953.0,0.0,1.0,383.0,37.0,119.0,162.0,0.0,159.0,597.0,0.0,0.0,0.0,0.0,106.0,61.0,470.0,627.0,39.0,28.0,59.0,141.0,98.0,324.0,38.0,28.0,0.0,310.0,5.0,288.0,0.0,99.0,0.0,0.0,425.0,1398.0,76.0,270.0,23.0,0.0,17.0,101.0,187.0,5579745.0,83.0,59.0,68.0,44.0,3.0,804.0,112.0,0.0,0.0,697.0,0.0,0.0,18.0,59.0,0.0,182.0,235.0,0.0,106.0,175.0,875.0,715.0,455.0,151.0,3043.0,707.0,332.0,1039.0,1169.0,22.0,126.0,248.0,1.0,239.0,0.0,143.0,261.0,514.0,391.0,0.0,451.0,1.0,0.0,6.0,0.0,501.0,40.0,513.0,728.0,0.0,44.0,0.0,29.0,19.0,0.0,35.0,286.0,225.0,0.0,38.0,0.0,125.0,40.0,0.0,69.0,0.0,0.0,23.0,0.0,0.0,48.0,24.0,0.0,61.0,124.0,75.0,0.0,2004.0,37.0,0.0,694.0,676.0,45.0,0.0,52.0,13.0,580.0,0.0,20.0,0.0,0.0,0.0,0.0,249.0,0.0,0.0,19.0,2073.0,0.0,407.0,0.0,229.0,65.0,323.0,81.0,26.0,0.0,3.0,0.0,44.0,13.0,20.0,1586.0,754.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2680.0,2617.0,0.0,0.0,0.0,20.0,194.0,78.0,8545.0,0.0,0.0,0.0,0.0,0.0,61.0,0.0,14.0,0.0,0.0,1765.0,268.0,161.0,0.0,0.0,2011-04-10,,2011-14,0.945814784190965,0.94, +103,103,0.82,237.0,0.0,195.0,0.0,462.0,0.0,77.0,139.0,0.0,367.0,0.0,0.0,54.0,0.0,1467.0,48.0,127.0,69.0,0.0,0.0,0.0,0.0,86.0,0.0,1313.0,9.0,675.0,0.0,183.0,0.0,0.0,21.0,1277.0,187.0,737.0,9.0,239.0,0.0,48.0,114.0,53.0,18.0,0.0,5.0,149.0,66.0,102.0,1082.0,10.0,269.0,47.0,1774.0,87.0,49.0,67.0,441.0,904.0,52.0,127.0,0.0,473.0,107.0,79.0,571.0,29.0,0.0,34.0,159.0,521.0,314.0,0.0,1660.0,319.0,513.0,0.0,0.0,9.0,693.0,117.0,22.0,0.0,28.0,53.0,128.0,152.0,142.0,582.0,9.0,0.0,70.0,407.0,0.0,787.0,867.0,961.0,234.0,507.0,120.0,0.0,0.0,71.0,0.0,1564.0,1690.0,43.0,41.0,0.0,70.0,63.0,239.0,1533.0,29.0,35.0,397.0,150.0,4035.0,0.0,0.0,45.0,43.0,0.0,46.0,20.0,0.0,0.0,606.0,27.0,124.0,59.0,17.0,33.0,535.0,69.0,0.0,0.0,105.0,233.0,1527.0,10.0,23.0,334.0,0.0,0.0,328.0,4275.0,269.0,33.0,55.0,28.0,616.0,271.0,0.0,1.0,0.0,260.0,708.0,80.0,136.0,0.0,12.0,982.0,346.0,267.0,0.0,2172.0,0.0,0.0,0.0,0.0,1109.0,1297.0,1855.0,906.0,0.0,0.0,340.0,28.0,100.0,146.0,0.0,185.0,609.0,0.0,0.0,0.0,0.0,93.0,52.0,447.0,677.0,33.0,50.0,108.0,168.0,157.0,256.0,23.0,32.0,0.0,301.0,11.0,258.0,0.0,122.0,0.0,0.0,404.0,1631.0,101.0,284.0,34.0,0.0,27.0,140.0,178.0,5793506.0,82.0,89.0,70.0,49.0,9.0,970.0,113.0,0.0,0.0,648.0,0.0,0.0,11.0,71.0,0.0,209.0,209.0,0.0,116.0,151.0,897.0,765.0,500.0,171.0,6662.0,603.0,426.0,1070.0,1052.0,38.0,157.0,276.0,0.0,291.0,0.0,150.0,298.0,479.0,383.0,0.0,423.0,2.0,0.0,6.0,0.0,526.0,28.0,582.0,712.0,0.0,39.0,0.0,28.0,37.0,0.0,26.0,255.0,166.0,0.0,48.0,0.0,128.0,41.0,0.0,78.0,0.0,0.0,28.0,0.0,0.0,52.0,29.0,0.0,46.0,102.0,63.0,0.0,1870.0,69.0,0.0,669.0,706.0,68.0,0.0,48.0,7.0,628.0,0.0,20.0,0.0,0.0,0.0,0.0,293.0,0.0,0.0,26.0,2121.0,0.0,439.0,0.0,206.0,68.0,331.0,95.0,25.0,0.0,3.0,0.0,49.0,11.0,24.0,1731.0,786.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2590.0,2671.0,0.0,0.0,0.0,34.0,158.0,69.0,8768.0,0.0,0.0,0.0,0.0,0.0,44.0,1.0,16.0,0.0,0.0,2009.0,211.0,163.0,0.0,0.0,2011-04-17,,2011-15,0.8024107970687009,1.6440000000000001, +104,104,0.47,169.0,0.0,104.0,0.0,647.0,0.0,68.0,128.0,0.0,348.0,0.0,0.0,54.0,0.0,1145.0,44.0,85.0,43.0,0.0,0.0,0.0,0.0,164.0,11.0,1539.0,0.0,651.0,0.0,280.0,0.0,0.0,11.0,1144.0,106.0,670.0,0.0,145.0,0.0,52.0,100.0,51.0,33.0,0.0,3.0,145.0,55.0,101.0,1003.0,12.0,122.0,35.0,1454.0,52.0,34.0,83.0,394.0,668.0,33.0,110.0,0.0,671.0,103.0,109.0,563.0,15.0,0.0,33.0,147.0,375.0,291.0,0.0,1560.0,249.0,412.0,0.0,0.0,0.0,658.0,59.0,14.0,0.0,33.0,70.0,135.0,93.0,146.0,4922.0,3.0,0.0,76.0,478.0,0.0,620.0,637.0,673.0,186.0,365.0,118.0,0.0,0.0,58.0,35.0,1152.0,1044.0,8.0,73.0,0.0,62.0,45.0,188.0,1105.0,19.0,26.0,531.0,159.0,3507.0,0.0,0.0,52.0,34.0,0.0,28.0,11.0,0.0,0.0,687.0,31.0,97.0,53.0,23.0,29.0,562.0,61.0,0.0,0.0,94.0,186.0,895.0,14.0,40.0,214.0,0.0,0.0,436.0,3497.0,150.0,18.0,76.0,28.0,535.0,261.0,0.0,27.0,2.0,170.0,558.0,69.0,74.0,1.0,5.0,1078.0,351.0,210.0,0.0,1952.0,0.0,0.0,0.0,0.0,1698.0,1248.0,1161.0,714.0,0.0,1.0,289.0,31.0,164.0,115.0,1.0,185.0,579.0,0.0,10.0,0.0,0.0,76.0,70.0,443.0,508.0,41.0,55.0,125.0,165.0,107.0,561.0,24.0,31.0,0.0,335.0,2.0,268.0,0.0,65.0,0.0,0.0,475.0,1369.0,72.0,149.0,29.0,0.0,26.0,76.0,182.0,5154268.0,69.0,113.0,52.0,44.0,0.0,1162.0,153.0,0.0,0.0,612.0,0.0,0.0,14.0,117.0,1.0,181.0,235.0,0.0,134.0,134.0,925.0,772.0,437.0,265.0,1521.0,424.0,153.0,1487.0,1898.0,29.0,115.0,238.0,0.0,238.0,0.0,141.0,63.0,311.0,363.0,0.0,426.0,6.0,0.0,9.0,0.0,668.0,15.0,512.0,645.0,0.0,63.0,0.0,14.0,23.0,0.0,26.0,245.0,148.0,0.0,60.0,0.0,111.0,39.0,0.0,63.0,0.0,0.0,18.0,0.0,0.0,50.0,37.0,0.0,74.0,94.0,70.0,0.0,1534.0,37.0,0.0,1080.0,1342.0,32.0,0.0,43.0,10.0,461.0,11.0,8.0,0.0,0.0,0.0,0.0,282.0,0.0,0.0,18.0,2106.0,0.0,311.0,0.0,275.0,76.0,258.0,44.0,19.0,0.0,5.0,0.0,7.0,17.0,27.0,1623.0,718.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2402.0,2231.0,0.0,0.0,0.0,26.0,2421.0,66.0,6587.0,0.0,0.0,0.0,0.0,1.0,62.0,0.0,12.0,32.0,0.0,1724.0,182.0,137.0,0.0,0.0,2011-10-23,,2011-42,0.48864786763394186,0.47, +105,105,0.54,143.0,0.0,117.0,0.0,753.0,0.0,76.0,126.0,0.0,418.0,0.0,0.0,51.0,0.0,1263.0,54.0,82.0,45.0,1.0,0.0,0.0,0.0,111.0,9.0,1765.0,0.0,704.0,0.0,206.0,0.0,0.0,17.0,1335.0,102.0,663.0,0.0,155.0,0.0,45.0,112.0,47.0,14.0,0.0,5.0,114.0,93.0,81.0,942.0,10.0,150.0,39.0,1718.0,86.0,60.0,122.0,417.0,770.0,29.0,141.0,0.0,582.0,98.0,77.0,551.0,18.0,0.0,23.0,120.0,434.0,311.0,0.0,1673.0,279.0,392.0,0.0,0.0,0.0,550.0,80.0,12.0,0.0,20.0,68.0,123.0,87.0,160.0,2582.0,0.0,0.0,65.0,427.0,0.0,643.0,689.0,704.0,208.0,371.0,95.0,0.0,0.0,62.0,34.0,1509.0,1164.0,10.0,53.0,0.0,50.0,54.0,195.0,1357.0,29.0,41.0,310.0,136.0,3696.0,0.0,0.0,17.0,41.0,0.0,23.0,18.0,0.0,0.0,577.0,38.0,88.0,61.0,15.0,36.0,611.0,46.0,0.0,0.0,96.0,186.0,891.0,12.0,39.0,201.0,0.0,0.0,418.0,3662.0,171.0,27.0,70.0,25.0,631.0,260.0,0.0,23.0,2.0,228.0,652.0,86.0,109.0,0.0,9.0,1066.0,305.0,216.0,0.0,2578.0,0.0,0.0,0.0,0.0,2616.0,1759.0,1245.0,719.0,0.0,0.0,385.0,45.0,196.0,138.0,0.0,169.0,559.0,0.0,8.0,0.0,1.0,94.0,65.0,414.0,611.0,29.0,35.0,152.0,180.0,100.0,593.0,21.0,26.0,0.0,386.0,1.0,235.0,0.0,79.0,0.0,0.0,456.0,1547.0,65.0,195.0,15.0,0.0,24.0,107.0,207.0,5415763.0,88.0,83.0,68.0,47.0,0.0,1356.0,158.0,0.0,0.0,643.0,0.0,0.0,24.0,156.0,2.0,208.0,232.0,61.0,139.0,97.0,978.0,812.0,495.0,193.0,1555.0,467.0,198.0,1401.0,1747.0,21.0,109.0,245.0,1.0,270.0,0.0,157.0,72.0,408.0,352.0,0.0,500.0,1.0,0.0,8.0,0.0,635.0,19.0,565.0,669.0,0.0,45.0,0.0,19.0,21.0,0.0,14.0,262.0,128.0,0.0,50.0,0.0,111.0,31.0,0.0,75.0,0.0,0.0,14.0,0.0,0.0,46.0,25.0,0.0,66.0,113.0,87.0,0.0,1655.0,35.0,0.0,1110.0,1442.0,37.0,0.0,61.0,9.0,542.0,10.0,16.0,0.0,0.0,0.0,0.0,285.0,0.0,0.0,17.0,2299.0,0.0,353.0,0.0,297.0,68.0,279.0,55.0,16.0,0.0,7.0,0.0,10.0,13.0,18.0,1689.0,641.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2498.0,2194.0,0.0,0.0,0.0,21.0,1239.0,57.0,8150.0,0.0,2.0,0.0,0.0,0.0,69.0,0.0,13.0,28.0,0.0,1825.0,173.0,139.0,0.0,0.0,2011-10-30,,2011-43,0.5374889612691742,0.5860000000000001, +106,106,0.53,145.0,0.0,117.0,0.0,871.0,0.0,66.0,121.0,0.0,391.0,0.0,0.0,73.0,0.0,1324.0,53.0,103.0,50.0,2.0,0.0,0.0,0.0,121.0,18.0,1923.0,0.0,673.0,0.0,249.0,0.0,0.0,14.0,1286.0,108.0,801.0,0.0,133.0,0.0,84.0,122.0,62.0,31.0,0.0,4.0,138.0,65.0,106.0,1009.0,6.0,262.0,32.0,1923.0,101.0,59.0,125.0,416.0,915.0,41.0,149.0,0.0,711.0,125.0,64.0,587.0,17.0,0.0,21.0,135.0,463.0,332.0,0.0,1785.0,369.0,446.0,0.0,0.0,0.0,590.0,48.0,9.0,0.0,18.0,51.0,123.0,108.0,149.0,850.0,0.0,0.0,86.0,531.0,1.0,682.0,765.0,833.0,201.0,448.0,96.0,0.0,0.0,59.0,40.0,1345.0,1537.0,13.0,58.0,0.0,68.0,85.0,264.0,1514.0,17.0,45.0,449.0,157.0,3962.0,0.0,0.0,43.0,37.0,0.0,15.0,17.0,0.0,0.0,615.0,28.0,96.0,56.0,15.0,32.0,688.0,57.0,0.0,0.0,114.0,192.0,959.0,22.0,44.0,225.0,0.0,0.0,448.0,3577.0,213.0,45.0,48.0,19.0,819.0,309.0,0.0,42.0,1.0,223.0,648.0,93.0,86.0,0.0,14.0,1128.0,374.0,230.0,0.0,2212.0,0.0,0.0,0.0,0.0,6232.0,1757.0,1285.0,1182.0,0.0,0.0,376.0,25.0,225.0,151.0,1.0,162.0,737.0,0.0,13.0,0.0,0.0,91.0,66.0,474.0,514.0,52.0,39.0,144.0,216.0,107.0,625.0,25.0,25.0,0.0,380.0,4.0,252.0,0.0,98.0,0.0,0.0,545.0,1787.0,80.0,189.0,15.0,0.0,38.0,94.0,275.0,5721738.0,98.0,100.0,71.0,59.0,0.0,1292.0,164.0,0.0,0.0,724.0,0.0,0.0,17.0,101.0,0.0,206.0,263.0,26.0,127.0,121.0,1091.0,881.0,503.0,209.0,1774.0,574.0,211.0,1399.0,1783.0,32.0,110.0,276.0,0.0,291.0,0.0,156.0,88.0,420.0,333.0,0.0,561.0,2.0,0.0,8.0,0.0,856.0,13.0,502.0,716.0,0.0,65.0,0.0,16.0,25.0,0.0,34.0,304.0,175.0,0.0,74.0,0.0,107.0,48.0,0.0,70.0,0.0,0.0,22.0,0.0,0.0,39.0,30.0,0.0,58.0,112.0,100.0,0.0,2103.0,35.0,0.0,1363.0,2547.0,40.0,0.0,60.0,14.0,529.0,15.0,20.0,0.0,0.0,0.0,0.0,301.0,0.0,0.0,16.0,2017.0,0.0,336.0,0.0,303.0,75.0,296.0,52.0,16.0,0.0,2.0,0.0,22.0,17.0,33.0,1590.0,672.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2760.0,2678.0,0.0,0.0,0.0,25.0,733.0,96.0,8475.0,0.0,0.0,0.0,0.0,0.0,77.0,1.0,19.0,42.0,0.0,2173.0,215.0,122.0,0.0,0.0,2011-11-06,,2011-44,0.5249813881163936,1.014, +107,107,0.72,220.0,0.0,153.0,0.0,558.0,0.0,78.0,133.0,0.0,444.0,0.0,0.0,55.0,0.0,1472.0,59.0,105.0,27.0,0.0,0.0,0.0,0.0,152.0,17.0,2046.0,0.0,811.0,0.0,237.0,0.0,0.0,17.0,1440.0,229.0,720.0,0.0,167.0,0.0,74.0,126.0,54.0,18.0,0.0,1.0,176.0,72.0,120.0,1208.0,6.0,184.0,31.0,2034.0,84.0,62.0,120.0,522.0,881.0,27.0,137.0,0.0,650.0,118.0,103.0,665.0,12.0,0.0,30.0,144.0,440.0,367.0,0.0,1892.0,328.0,499.0,0.0,0.0,0.0,660.0,73.0,10.0,0.0,20.0,65.0,105.0,90.0,133.0,643.0,0.0,0.0,99.0,529.0,1.0,720.0,799.0,901.0,217.0,473.0,135.0,0.0,0.0,60.0,43.0,1311.0,1487.0,8.0,71.0,0.0,44.0,52.0,220.0,1490.0,23.0,34.0,578.0,157.0,4158.0,0.0,0.0,27.0,44.0,0.0,21.0,16.0,0.0,0.0,672.0,37.0,123.0,80.0,13.0,31.0,731.0,43.0,0.0,0.0,137.0,233.0,1293.0,11.0,42.0,308.0,0.0,0.0,491.0,4349.0,231.0,27.0,47.0,22.0,784.0,275.0,0.0,40.0,3.0,286.0,750.0,100.0,102.0,1.0,6.0,1613.0,425.0,253.0,0.0,2309.0,0.0,0.0,0.0,0.0,2652.0,1568.0,1316.0,920.0,0.0,3.0,351.0,45.0,282.0,166.0,0.0,185.0,758.0,0.0,16.0,0.0,1.0,102.0,62.0,678.0,664.0,32.0,34.0,150.0,203.0,84.0,680.0,24.0,24.0,0.0,404.0,1.0,207.0,0.0,100.0,0.0,0.0,607.0,1804.0,84.0,217.0,36.0,0.0,47.0,105.0,265.0,5786064.0,87.0,93.0,75.0,41.0,0.0,1386.0,171.0,0.0,0.0,797.0,0.0,0.0,12.0,237.0,1.0,223.0,263.0,26.0,116.0,139.0,1220.0,2112.0,563.0,260.0,1918.0,593.0,229.0,1226.0,1545.0,31.0,148.0,277.0,0.0,271.0,0.0,199.0,69.0,467.0,369.0,0.0,585.0,0.0,0.0,4.0,0.0,653.0,15.0,604.0,805.0,0.0,67.0,0.0,10.0,24.0,0.0,26.0,312.0,242.0,0.0,97.0,0.0,124.0,31.0,0.0,92.0,0.0,2.0,19.0,1.0,0.0,47.0,36.0,0.0,54.0,109.0,114.0,0.0,2106.0,50.0,0.0,1395.0,1911.0,42.0,0.0,72.0,4.0,641.0,6.0,13.0,0.0,0.0,0.0,0.0,344.0,0.0,0.0,27.0,2067.0,0.0,404.0,0.0,307.0,73.0,360.0,64.0,20.0,0.0,1.0,0.0,42.0,13.0,24.0,1996.0,775.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,45.0,394.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2881.0,2900.0,0.0,0.0,0.0,25.0,561.0,65.0,8750.0,0.0,0.0,0.0,0.0,1.0,83.0,0.0,8.0,39.0,0.0,2118.0,236.0,100.0,0.0,0.0,2011-11-13,,2011-45,0.7105237734914684,0.8340000000000001, +108,108,0.89,220.0,0.0,143.0,0.0,598.0,0.0,116.0,126.0,0.0,382.0,0.0,0.0,61.0,0.0,1441.0,74.0,101.0,53.0,0.0,0.0,0.0,0.0,168.0,14.0,2038.0,0.0,802.0,0.0,261.0,0.0,0.0,19.0,1441.0,143.0,802.0,0.0,161.0,0.0,60.0,136.0,72.0,29.0,0.0,2.0,178.0,74.0,130.0,1160.0,12.0,128.0,30.0,1884.0,79.0,58.0,123.0,516.0,870.0,59.0,173.0,0.0,686.0,169.0,137.0,690.0,29.0,0.0,24.0,167.0,510.0,363.0,0.0,1948.0,294.0,505.0,0.0,0.0,0.0,769.0,107.0,24.0,0.0,35.0,66.0,152.0,111.0,166.0,904.0,0.0,0.0,109.0,567.0,0.0,788.0,817.0,884.0,217.0,519.0,108.0,0.0,0.0,65.0,28.0,1607.0,1476.0,16.0,51.0,0.0,74.0,63.0,233.0,1437.0,24.0,32.0,498.0,164.0,4139.0,0.0,0.0,32.0,48.0,0.0,17.0,24.0,0.0,0.0,748.0,33.0,107.0,73.0,13.0,29.0,729.0,60.0,0.0,0.0,121.0,233.0,1004.0,12.0,52.0,272.0,0.0,0.0,445.0,4278.0,184.0,37.0,40.0,21.0,725.0,210.0,0.0,32.0,0.0,294.0,645.0,105.0,113.0,1.0,12.0,1454.0,383.0,239.0,0.0,2394.0,0.0,0.0,0.0,0.0,2214.0,1555.0,1162.0,920.0,0.0,0.0,673.0,37.0,238.0,160.0,0.0,168.0,701.0,0.0,9.0,0.0,0.0,86.0,79.0,704.0,610.0,40.0,43.0,147.0,234.0,107.0,624.0,30.0,21.0,0.0,386.0,3.0,215.0,0.0,89.0,0.0,0.0,521.0,1795.0,67.0,203.0,27.0,0.0,45.0,121.0,221.0,5625548.0,72.0,93.0,136.0,48.0,0.0,1374.0,185.0,0.0,0.0,651.0,63.0,0.0,19.0,253.0,1.0,219.0,267.0,20.0,105.0,129.0,1131.0,1007.0,520.0,279.0,1898.0,542.0,255.0,1431.0,1789.0,27.0,122.0,260.0,0.0,287.0,1.0,205.0,84.0,459.0,374.0,0.0,517.0,1.0,0.0,1.0,0.0,725.0,14.0,534.0,853.0,0.0,48.0,0.0,16.0,20.0,0.0,27.0,314.0,192.0,0.0,73.0,0.0,148.0,26.0,0.0,102.0,0.0,0.0,22.0,0.0,0.0,59.0,30.0,0.0,60.0,109.0,102.0,0.0,2133.0,40.0,0.0,1373.0,1618.0,46.0,0.0,65.0,9.0,565.0,9.0,13.0,0.0,0.0,0.0,0.0,366.0,0.0,0.0,24.0,2115.0,0.0,348.0,0.0,365.0,90.0,336.0,68.0,20.0,0.0,2.0,0.0,27.0,17.0,31.0,1902.0,960.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,100.0,826.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2635.0,2839.0,0.0,0.0,0.0,28.0,460.0,100.0,8986.0,0.0,1.0,0.0,0.0,0.0,97.0,0.0,12.0,40.0,0.0,2110.0,205.0,145.0,0.0,0.0,2011-11-20,,2011-46,0.9358177978428035,0.8039999999999999, +109,109,1.14,233.0,0.0,144.0,0.0,568.0,0.0,93.0,157.0,0.0,328.0,0.0,0.0,62.0,0.0,1463.0,60.0,70.0,47.0,1.0,0.0,0.0,0.0,125.0,12.0,2018.0,0.0,842.0,0.0,263.0,0.0,0.0,14.0,1460.0,188.0,925.0,1.0,126.0,0.0,58.0,143.0,68.0,35.0,0.0,0.0,200.0,120.0,101.0,1180.0,8.0,217.0,35.0,1923.0,70.0,72.0,123.0,483.0,833.0,39.0,151.0,0.0,649.0,185.0,112.0,735.0,33.0,0.0,32.0,150.0,491.0,327.0,0.0,2065.0,333.0,473.0,0.0,0.0,0.0,717.0,98.0,15.0,0.0,30.0,79.0,155.0,92.0,136.0,821.0,0.0,0.0,97.0,493.0,0.0,753.0,867.0,899.0,220.0,432.0,132.0,0.0,0.0,84.0,41.0,1494.0,1548.0,8.0,68.0,0.0,52.0,43.0,231.0,1512.0,23.0,32.0,365.0,153.0,4367.0,0.0,0.0,30.0,48.0,0.0,21.0,23.0,0.0,0.0,814.0,48.0,100.0,89.0,16.0,23.0,1294.0,75.0,0.0,0.0,138.0,206.0,1145.0,15.0,62.0,265.0,0.0,0.0,533.0,4412.0,242.0,29.0,78.0,50.0,867.0,250.0,0.0,39.0,1.0,268.0,663.0,84.0,97.0,1.0,8.0,1307.0,377.0,222.0,0.0,2290.0,0.0,0.0,0.0,0.0,2349.0,1785.0,1228.0,1003.0,0.0,0.0,417.0,43.0,232.0,163.0,0.0,254.0,726.0,0.0,10.0,0.0,1.0,103.0,97.0,525.0,698.0,48.0,36.0,164.0,193.0,98.0,644.0,27.0,23.0,0.0,455.0,4.0,235.0,0.0,92.0,0.0,0.0,502.0,1830.0,79.0,225.0,27.0,0.0,45.0,117.0,214.0,5537101.0,100.0,117.0,156.0,50.0,0.0,1317.0,204.0,0.0,0.0,868.0,33.0,0.0,16.0,144.0,1.0,258.0,265.0,20.0,151.0,126.0,1098.0,955.0,568.0,244.0,1934.0,603.0,273.0,1363.0,1830.0,45.0,114.0,245.0,0.0,245.0,0.0,125.0,80.0,488.0,375.0,0.0,582.0,1.0,0.0,6.0,0.0,755.0,16.0,830.0,780.0,0.0,55.0,0.0,12.0,25.0,0.0,63.0,286.0,297.0,0.0,77.0,0.0,122.0,44.0,0.0,109.0,0.0,0.0,24.0,0.0,0.0,47.0,28.0,0.0,67.0,162.0,102.0,0.0,1975.0,44.0,0.0,1382.0,1578.0,49.0,0.0,80.0,2.0,586.0,5.0,8.0,0.0,0.0,0.0,0.0,335.0,0.0,0.0,17.0,2156.0,0.0,478.0,0.0,344.0,74.0,376.0,77.0,16.0,0.0,3.0,0.0,39.0,9.0,24.0,2020.0,1010.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,80.0,1129.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2704.0,3263.0,0.0,0.0,0.0,13.0,400.0,107.0,8391.0,0.0,4.0,0.0,0.0,1.0,84.0,0.0,14.0,23.0,0.0,2276.0,234.0,150.0,0.0,0.0,2011-11-27,,2011-47,1.1306824952010253,1.234, +110,110,1.29,218.0,0.0,136.0,0.0,613.0,0.0,88.0,134.0,0.0,370.0,0.0,0.0,57.0,0.0,1536.0,63.0,87.0,51.0,1.0,0.0,0.0,0.0,153.0,8.0,2029.0,0.0,773.0,0.0,327.0,0.0,0.0,29.0,1609.0,132.0,730.0,1.0,147.0,0.0,60.0,127.0,78.0,22.0,0.0,1.0,183.0,55.0,104.0,1867.0,11.0,254.0,41.0,1860.0,93.0,77.0,82.0,426.0,983.0,39.0,141.0,0.0,717.0,133.0,96.0,669.0,18.0,0.0,18.0,132.0,513.0,322.0,0.0,1984.0,294.0,512.0,0.0,0.0,1.0,698.0,97.0,12.0,0.0,24.0,79.0,173.0,104.0,153.0,716.0,1.0,0.0,83.0,395.0,1.0,846.0,1220.0,994.0,268.0,457.0,135.0,0.0,0.0,70.0,35.0,1423.0,1468.0,15.0,60.0,0.0,67.0,65.0,242.0,1532.0,16.0,36.0,398.0,149.0,4403.0,0.0,0.0,25.0,54.0,0.0,12.0,23.0,0.0,0.0,810.0,31.0,83.0,82.0,19.0,27.0,777.0,62.0,0.0,0.0,93.0,203.0,1846.0,15.0,73.0,310.0,0.0,0.0,516.0,4227.0,209.0,34.0,60.0,37.0,853.0,290.0,0.0,40.0,1.0,260.0,764.0,120.0,122.0,0.0,8.0,1156.0,351.0,244.0,0.0,2293.0,0.0,0.0,0.0,0.0,2191.0,1421.0,1335.0,917.0,0.0,0.0,352.0,18.0,242.0,140.0,0.0,276.0,713.0,0.0,11.0,0.0,0.0,106.0,104.0,488.0,606.0,51.0,30.0,127.0,234.0,90.0,685.0,22.0,22.0,0.0,372.0,2.0,248.0,0.0,88.0,0.0,0.0,536.0,1722.0,68.0,211.0,23.0,0.0,64.0,96.0,223.0,5482605.0,91.0,121.0,165.0,48.0,0.0,1379.0,201.0,0.0,0.0,785.0,51.0,0.0,16.0,201.0,1.0,216.0,248.0,29.0,109.0,132.0,1048.0,916.0,478.0,280.0,1784.0,646.0,280.0,1491.0,1831.0,39.0,114.0,276.0,0.0,279.0,0.0,165.0,124.0,451.0,404.0,0.0,534.0,0.0,0.0,54.0,0.0,752.0,17.0,585.0,803.0,0.0,52.0,0.0,21.0,18.0,0.0,32.0,347.0,201.0,0.0,86.0,0.0,124.0,31.0,0.0,69.0,0.0,1.0,22.0,0.0,0.0,54.0,23.0,0.0,57.0,151.0,107.0,0.0,2027.0,44.0,0.0,1320.0,1471.0,38.0,0.0,53.0,5.0,618.0,5.0,18.0,0.0,0.0,1.0,0.0,391.0,0.0,0.0,33.0,2095.0,0.0,381.0,0.0,321.0,77.0,364.0,54.0,24.0,0.0,2.0,0.0,29.0,10.0,18.0,2047.0,875.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,97.0,761.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2646.0,3232.0,0.0,0.0,0.0,26.0,351.0,87.0,8719.0,0.0,0.0,0.0,0.0,0.0,93.0,0.0,10.0,36.0,0.0,2437.0,208.0,158.0,0.0,0.0,2011-12-04,,2011-48,1.2518515292986727,1.1960000000000002, +111,111,1.36,159.0,0.0,144.0,0.0,479.0,0.0,107.0,127.0,0.0,369.0,0.0,0.0,63.0,0.0,1351.0,57.0,104.0,49.0,0.0,0.0,0.0,0.0,128.0,12.0,1877.0,0.0,700.0,0.0,226.0,0.0,0.0,17.0,1207.0,126.0,763.0,0.0,137.0,0.0,57.0,114.0,66.0,38.0,0.0,0.0,154.0,67.0,86.0,1489.0,5.0,301.0,30.0,1699.0,72.0,71.0,87.0,399.0,921.0,41.0,137.0,0.0,681.0,126.0,79.0,644.0,23.0,0.0,22.0,138.0,440.0,324.0,0.0,1718.0,301.0,478.0,0.0,0.0,0.0,651.0,95.0,9.0,0.0,22.0,56.0,159.0,80.0,103.0,665.0,0.0,0.0,102.0,462.0,0.0,949.0,3429.0,4166.0,296.0,439.0,130.0,0.0,0.0,37.0,32.0,1426.0,1402.0,6.0,60.0,0.0,52.0,53.0,245.0,1395.0,18.0,33.0,537.0,182.0,4161.0,0.0,0.0,22.0,43.0,0.0,15.0,16.0,0.0,0.0,726.0,48.0,97.0,72.0,23.0,31.0,751.0,52.0,0.0,0.0,117.0,181.0,1243.0,35.0,52.0,304.0,0.0,0.0,534.0,4024.0,254.0,24.0,46.0,28.0,786.0,209.0,0.0,41.0,1.0,271.0,606.0,99.0,104.0,1.0,7.0,1042.0,330.0,235.0,0.0,2334.0,0.0,0.0,0.0,0.0,1935.0,1524.0,1269.0,832.0,0.0,3.0,340.0,34.0,221.0,160.0,0.0,167.0,624.0,0.0,14.0,0.0,0.0,90.0,49.0,432.0,504.0,25.0,50.0,145.0,240.0,127.0,611.0,20.0,24.0,0.0,421.0,0.0,197.0,0.0,75.0,0.0,0.0,501.0,1750.0,79.0,208.0,21.0,0.0,58.0,99.0,194.0,5329139.0,75.0,92.0,131.0,75.0,0.0,1080.0,164.0,0.0,0.0,764.0,40.0,0.0,12.0,104.0,1.0,201.0,254.0,22.0,130.0,149.0,1055.0,817.0,452.0,220.0,1856.0,519.0,269.0,1208.0,1566.0,32.0,137.0,285.0,0.0,268.0,0.0,136.0,91.0,416.0,367.0,0.0,506.0,0.0,0.0,25.0,0.0,677.0,21.0,515.0,802.0,0.0,40.0,0.0,13.0,18.0,0.0,26.0,344.0,225.0,0.0,70.0,0.0,178.0,38.0,0.0,57.0,0.0,0.0,27.0,0.0,0.0,51.0,22.0,0.0,59.0,110.0,92.0,0.0,1727.0,56.0,0.0,1232.0,1085.0,57.0,0.0,48.0,5.0,568.0,7.0,11.0,0.0,0.0,0.0,0.0,436.0,0.0,0.0,22.0,1857.0,0.0,372.0,0.0,279.0,85.0,321.0,87.0,37.0,0.0,1.0,0.0,37.0,9.0,26.0,1530.0,617.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,88.0,453.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2420.0,2501.0,0.0,0.0,0.0,16.0,270.0,116.0,7590.0,0.0,0.0,0.0,0.0,0.0,64.0,2.0,12.0,23.0,0.0,2152.0,207.0,132.0,0.0,0.0,2011-12-11,,2011-49,1.4393656938532597,2.28, +112,112,1.76,198.0,0.0,147.0,0.0,453.0,0.0,146.0,121.0,0.0,435.0,0.0,0.0,68.0,0.0,1516.0,63.0,104.0,51.0,0.0,0.0,0.0,0.0,154.0,26.0,1998.0,0.0,717.0,0.0,261.0,0.0,0.0,19.0,1453.0,109.0,837.0,0.0,169.0,0.0,59.0,144.0,53.0,28.0,0.0,2.0,154.0,67.0,91.0,1437.0,12.0,288.0,27.0,1771.0,49.0,45.0,97.0,440.0,921.0,59.0,173.0,0.0,964.0,143.0,68.0,691.0,18.0,0.0,27.0,157.0,427.0,294.0,0.0,1762.0,302.0,472.0,0.0,0.0,0.0,658.0,103.0,7.0,0.0,23.0,58.0,207.0,97.0,123.0,2397.0,0.0,0.0,108.0,521.0,2.0,1826.0,3784.0,5178.0,263.0,383.0,129.0,0.0,0.0,59.0,29.0,1441.0,1383.0,8.0,69.0,0.0,54.0,65.0,264.0,1507.0,22.0,51.0,493.0,188.0,4339.0,0.0,0.0,27.0,36.0,0.0,16.0,18.0,0.0,0.0,762.0,38.0,98.0,67.0,18.0,20.0,757.0,63.0,0.0,0.0,122.0,192.0,1131.0,31.0,53.0,340.0,0.0,0.0,478.0,4238.0,276.0,30.0,44.0,22.0,736.0,186.0,0.0,49.0,1.0,296.0,702.0,108.0,145.0,0.0,5.0,1173.0,385.0,260.0,0.0,2416.0,0.0,0.0,0.0,0.0,2119.0,1636.0,1309.0,853.0,0.0,1.0,355.0,29.0,210.0,151.0,0.0,192.0,681.0,0.0,15.0,0.0,1.0,96.0,84.0,507.0,582.0,49.0,68.0,160.0,220.0,114.0,571.0,22.0,25.0,0.0,335.0,2.0,173.0,0.0,91.0,0.0,0.0,458.0,1584.0,62.0,179.0,26.0,0.0,46.0,137.0,202.0,5409683.0,86.0,107.0,140.0,62.0,0.0,1494.0,172.0,0.0,0.0,804.0,23.0,0.0,9.0,181.0,3.0,204.0,236.0,29.0,116.0,135.0,959.0,877.0,602.0,312.0,1828.0,600.0,295.0,1041.0,1533.0,48.0,148.0,324.0,0.0,328.0,0.0,154.0,95.0,422.0,366.0,0.0,479.0,0.0,0.0,14.0,0.0,848.0,27.0,623.0,853.0,0.0,43.0,0.0,9.0,22.0,0.0,37.0,370.0,235.0,0.0,98.0,0.0,200.0,36.0,3.0,56.0,0.0,0.0,31.0,0.0,0.0,52.0,26.0,0.0,67.0,187.0,120.0,0.0,2070.0,56.0,0.0,1226.0,1142.0,72.0,0.0,55.0,4.0,614.0,7.0,11.0,0.0,0.0,0.0,0.0,345.0,0.0,0.0,25.0,2064.0,0.0,388.0,0.0,301.0,72.0,353.0,102.0,29.0,0.0,3.0,0.0,24.0,4.0,21.0,1596.0,742.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,67.0,345.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2495.0,2893.0,0.0,0.0,0.0,38.0,282.0,87.0,7991.0,0.0,0.0,0.0,0.0,1.0,74.0,0.0,6.0,31.0,0.0,2093.0,208.0,126.0,0.0,0.0,2011-12-18,,2011-50,1.7443339133234286,3.044, +113,113,2.2,114.0,0.0,71.0,0.0,242.0,0.0,56.0,53.0,0.0,167.0,0.0,0.0,24.0,0.0,750.0,36.0,60.0,25.0,0.0,0.0,0.0,0.0,46.0,8.0,1214.0,0.0,470.0,0.0,114.0,0.0,0.0,27.0,761.0,60.0,321.0,0.0,71.0,0.0,37.0,71.0,47.0,12.0,0.0,2.0,45.0,28.0,50.0,818.0,6.0,120.0,19.0,948.0,54.0,39.0,32.0,247.0,545.0,18.0,94.0,0.0,459.0,65.0,43.0,352.0,17.0,0.0,7.0,66.0,245.0,157.0,0.0,968.0,161.0,279.0,0.0,0.0,0.0,376.0,53.0,3.0,0.0,10.0,25.0,86.0,51.0,57.0,864.0,0.0,0.0,49.0,248.0,1.0,1071.0,2126.0,2871.0,160.0,247.0,59.0,0.0,0.0,24.0,19.0,861.0,746.0,5.0,33.0,0.0,26.0,27.0,110.0,851.0,8.0,24.0,259.0,90.0,2475.0,0.0,0.0,19.0,21.0,0.0,8.0,7.0,0.0,0.0,439.0,20.0,58.0,41.0,8.0,17.0,404.0,31.0,0.0,0.0,58.0,105.0,683.0,21.0,29.0,148.0,0.0,0.0,274.0,2350.0,133.0,18.0,39.0,19.0,482.0,145.0,0.0,17.0,1.0,166.0,301.0,47.0,46.0,0.0,1.0,1013.0,161.0,116.0,0.0,1243.0,0.0,0.0,0.0,0.0,1101.0,770.0,727.0,468.0,0.0,0.0,209.0,17.0,137.0,108.0,0.0,84.0,317.0,0.0,6.0,0.0,0.0,57.0,38.0,268.0,281.0,14.0,25.0,74.0,129.0,68.0,295.0,10.0,9.0,0.0,171.0,0.0,92.0,0.0,42.0,0.0,0.0,210.0,836.0,40.0,118.0,13.0,0.0,28.0,60.0,123.0,3091016.0,40.0,70.0,85.0,35.0,0.0,660.0,120.0,0.0,0.0,455.0,21.0,0.0,4.0,60.0,1.0,123.0,106.0,5.0,52.0,60.0,469.0,427.0,269.0,145.0,1019.0,272.0,135.0,712.0,1143.0,12.0,60.0,157.0,0.0,133.0,0.0,85.0,43.0,239.0,168.0,0.0,285.0,0.0,0.0,2.0,0.0,385.0,14.0,388.0,386.0,0.0,25.0,0.0,14.0,10.0,0.0,13.0,161.0,94.0,0.0,48.0,0.0,92.0,20.0,0.0,36.0,0.0,0.0,12.0,0.0,0.0,43.0,14.0,0.0,28.0,68.0,59.0,0.0,944.0,28.0,0.0,657.0,645.0,32.0,0.0,30.0,5.0,307.0,0.0,7.0,0.0,0.0,0.0,0.0,186.0,0.0,0.0,16.0,1045.0,0.0,196.0,0.0,165.0,30.0,190.0,44.0,8.0,0.0,0.0,0.0,27.0,19.0,10.0,939.0,393.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,58.0,147.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1185.0,1477.0,0.0,0.0,0.0,17.0,709.0,34.0,4256.0,0.0,0.0,0.0,0.0,0.0,44.0,0.0,8.0,12.0,0.0,1191.0,103.0,76.0,0.0,0.0,2011-12-25,,2011-51,2.1100377707748876,1.846, +114,114,3.07,182.0,0.0,95.0,0.0,451.0,0.0,45.0,106.0,0.0,342.0,0.0,0.0,49.0,0.0,1166.0,42.0,84.0,48.0,1.0,0.0,0.0,0.0,65.0,8.0,2453.0,0.0,753.0,0.0,205.0,0.0,0.0,19.0,1091.0,224.0,508.0,1.0,146.0,0.0,46.0,96.0,53.0,27.0,0.0,2.0,82.0,47.0,115.0,1194.0,3.0,444.0,31.0,1571.0,93.0,56.0,58.0,334.0,1109.0,31.0,130.0,0.0,858.0,104.0,69.0,464.0,15.0,0.0,23.0,111.0,408.0,253.0,0.0,1385.0,243.0,390.0,0.0,0.0,0.0,608.0,68.0,27.0,0.0,24.0,53.0,130.0,64.0,86.0,632.0,0.0,0.0,87.0,459.0,0.0,1287.0,2527.0,3730.0,216.0,328.0,94.0,0.0,0.0,42.0,15.0,1533.0,1193.0,10.0,60.0,0.0,33.0,31.0,137.0,1585.0,18.0,38.0,347.0,160.0,6398.0,0.0,0.0,36.0,42.0,0.0,18.0,20.0,0.0,0.0,585.0,27.0,80.0,81.0,20.0,34.0,759.0,42.0,0.0,0.0,63.0,166.0,1128.0,14.0,33.0,188.0,0.0,0.0,355.0,3045.0,153.0,13.0,75.0,39.0,804.0,318.0,0.0,29.0,0.0,184.0,548.0,61.0,78.0,1.0,12.0,1503.0,274.0,159.0,0.0,2009.0,0.0,0.0,0.0,0.0,1447.0,1554.0,1125.0,757.0,0.0,0.0,259.0,31.0,143.0,134.0,0.0,175.0,546.0,0.0,9.0,0.0,0.0,93.0,50.0,380.0,450.0,43.0,32.0,61.0,157.0,96.0,517.0,21.0,21.0,0.0,285.0,1.0,230.0,0.0,91.0,0.0,0.0,397.0,1300.0,70.0,188.0,21.0,0.0,64.0,88.0,173.0,5622375.0,64.0,95.0,114.0,49.0,0.0,940.0,179.0,0.0,0.0,877.0,26.0,0.0,13.0,76.0,3.0,175.0,190.0,8.0,60.0,94.0,751.0,1152.0,340.0,186.0,1747.0,414.0,225.0,1623.0,2048.0,41.0,107.0,216.0,0.0,189.0,0.0,148.0,61.0,451.0,321.0,0.0,381.0,2.0,0.0,6.0,0.0,603.0,16.0,510.0,713.0,0.0,43.0,0.0,8.0,24.0,0.0,23.0,271.0,193.0,0.0,66.0,0.0,97.0,35.0,0.0,64.0,0.0,0.0,10.0,0.0,0.0,54.0,17.0,0.0,46.0,98.0,81.0,0.0,1683.0,45.0,0.0,1316.0,830.0,52.0,0.0,50.0,10.0,466.0,5.0,14.0,0.0,0.0,0.0,0.0,248.0,0.0,0.0,24.0,1680.0,0.0,391.0,0.0,233.0,72.0,226.0,53.0,20.0,0.0,1.0,0.0,33.0,16.0,18.0,1019.0,484.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,47.0,142.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2238.0,2068.0,0.0,0.0,0.0,27.0,187.0,48.0,5730.0,0.0,0.0,0.0,0.0,0.0,65.0,0.0,15.0,23.0,0.0,2894.0,156.0,128.0,0.0,0.0,2012-01-01,,2011-52,3.092977535322208,2.194, +115,115,3.13,229.0,0.0,141.0,0.0,604.0,0.0,122.0,138.0,0.0,553.0,0.0,8.0,73.0,0.0,1513.0,94.0,110.0,36.0,0.0,0.0,0.0,0.0,108.0,18.0,3364.0,1.0,989.0,0.0,377.0,0.0,0.0,14.0,1612.0,165.0,806.0,0.0,186.0,10.0,73.0,138.0,81.0,43.0,0.0,6.0,126.0,78.0,123.0,1635.0,8.0,193.0,21.0,2030.0,139.0,77.0,97.0,445.0,1423.0,54.0,161.0,0.0,1235.0,131.0,72.0,621.0,21.0,2.0,23.0,133.0,552.0,339.0,0.0,1930.0,346.0,546.0,1.0,491.0,10.0,785.0,94.0,12.0,0.0,25.0,71.0,165.0,94.0,135.0,912.0,0.0,0.0,118.0,866.0,0.0,1967.0,3876.0,5495.0,343.0,467.0,123.0,0.0,0.0,71.0,48.0,1969.0,1491.0,22.0,62.0,0.0,51.0,76.0,244.0,1771.0,21.0,39.0,401.0,180.0,6634.0,0.0,0.0,37.0,53.0,0.0,37.0,30.0,2.0,0.0,974.0,51.0,135.0,82.0,22.0,28.0,966.0,49.2,0.0,0.0,136.0,233.0,1381.0,14.0,43.6,336.0,0.0,0.0,540.0,3977.0,272.0,31.0,63.0,35.0,1126.0,335.0,0.0,62.0,1.0,268.0,940.0,104.0,109.0,0.0,10.0,1710.0,354.0,172.0,0.0,2555.0,0.0,0.0,0.0,0.0,2605.0,2927.0,1601.0,1079.0,9.0,1.0,308.0,31.0,229.0,199.0,1.0,211.0,728.0,0.0,11.0,9.0,1.0,105.0,90.0,669.0,658.0,44.0,42.0,171.0,273.0,139.0,718.0,21.0,31.0,29.0,451.0,1.0,231.0,0.0,82.0,0.0,0.0,552.0,1714.0,89.0,266.0,59.0,0.0,64.2,130.0,245.0,6129441.0,89.0,148.0,153.0,62.0,0.0,1355.0,245.0,0.0,0.0,950.0,52.0,0.0,15.0,112.0,31.0,250.0,287.0,26.0,104.0,116.0,1057.0,977.0,526.0,263.0,2401.0,642.0,259.0,1143.0,2677.0,43.0,138.0,331.0,4.0,312.0,9.0,174.0,72.0,485.0,465.0,0.0,542.0,0.0,0.0,20.0,0.0,868.0,25.0,903.0,993.0,0.0,51.0,10.0,14.0,18.0,4.0,27.0,445.0,237.0,0.0,138.0,0.0,154.0,41.0,6.0,80.0,8.0,18.0,36.0,0.0,0.0,62.0,28.0,0.0,51.0,179.0,122.0,0.0,2012.0,59.0,0.0,1650.0,1233.0,85.0,0.0,58.0,6.0,607.0,6.0,20.0,0.0,0.0,0.0,0.0,397.0,0.0,11.0,24.0,2565.0,4.0,567.0,0.0,229.0,76.0,383.0,124.0,27.0,15.0,4.0,0.0,52.0,14.0,17.0,1645.0,780.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,68.0,200.0,0.0,13.0,19.0,28.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2341.25,2895.0,0.0,0.0,0.0,41.0,256.0,93.0,6728.0,0.0,2.0,0.0,0.0,1.0,136.0,30.0,28.0,27.0,0.0,3059.0,234.0,143.0,0.0,0.0,2012-01-08,,2012-1,3.117827847622877,2.4480000000000004, +116,116,4.24,318.0,0.0,148.0,0.0,523.0,0.0,156.0,147.0,0.0,575.0,0.0,0.0,77.0,0.0,1601.0,97.0,137.0,74.0,0.0,0.0,0.0,0.0,152.0,22.0,3028.0,0.0,860.0,0.0,294.0,0.0,0.0,12.0,1688.0,140.0,1025.0,0.0,192.0,0.0,88.0,134.0,77.0,44.0,0.0,2.0,177.0,80.0,136.0,1653.0,6.0,135.0,36.0,2251.0,140.0,62.0,90.0,505.0,1182.0,61.0,165.0,0.0,1068.0,156.0,106.0,833.0,25.0,0.0,27.0,182.0,570.0,382.0,0.0,2117.0,415.0,638.0,0.0,145.0,0.0,878.0,101.0,16.0,0.0,32.0,77.0,164.0,86.0,168.0,801.0,0.0,1.0,95.0,1044.0,0.0,2277.0,4696.0,6171.0,376.0,510.0,143.0,0.0,0.0,62.0,35.0,1971.0,1522.0,11.0,66.0,0.0,72.0,67.0,289.0,1602.0,38.0,50.0,394.0,153.0,5885.0,0.0,0.0,38.0,45.0,0.0,22.0,28.0,0.0,0.0,897.0,36.0,104.0,99.0,23.0,38.0,747.0,56.4,0.0,0.0,121.0,250.0,1498.0,19.0,54.2,361.0,0.0,0.0,544.0,5073.0,326.0,25.0,69.0,38.0,877.0,297.0,0.0,89.0,1.0,338.0,801.0,114.0,115.0,1.0,13.0,2808.0,422.0,238.0,0.0,3024.0,0.0,0.0,0.0,0.0,2335.0,2405.0,2121.0,1089.0,0.0,0.0,378.0,22.0,290.0,132.0,0.0,232.0,803.0,0.0,31.0,0.0,0.0,104.0,80.0,719.0,639.0,54.0,48.0,199.0,266.0,166.0,627.0,22.0,20.0,0.0,473.0,0.0,211.0,0.0,87.0,0.0,0.0,476.0,1945.0,99.0,230.0,36.0,0.0,64.4,121.0,316.0,5713394.0,76.0,106.0,140.0,54.0,0.0,1539.0,193.0,0.0,0.0,824.0,33.0,0.0,13.0,110.0,3.0,240.0,226.0,23.0,138.0,137.0,1181.0,929.0,651.0,344.0,3565.0,655.0,251.0,1149.0,2087.0,45.0,166.0,340.0,0.0,353.0,0.0,180.0,83.0,473.0,409.0,0.0,524.0,0.0,0.0,9.0,0.0,877.0,10.0,811.0,1016.0,0.0,40.0,0.0,30.0,27.0,0.0,21.0,429.0,212.0,0.0,115.0,0.0,166.0,40.0,1.0,98.0,0.0,0.0,27.0,0.0,0.0,61.0,38.0,0.0,47.0,220.0,123.0,0.0,1997.0,55.0,0.0,1519.0,1396.0,113.0,0.0,57.0,6.0,695.0,9.0,12.0,0.0,0.0,0.0,0.0,367.0,0.0,0.0,22.0,2451.0,0.0,469.0,0.0,331.0,82.0,375.0,106.0,37.0,0.0,1.0,0.0,59.0,13.0,25.0,2255.0,918.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,120.0,197.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2444.5,3580.0,0.0,0.0,0.0,25.0,264.0,83.0,8653.0,0.0,0.0,0.0,0.0,1.0,86.0,17.0,16.0,43.0,0.0,2759.0,264.0,156.0,0.0,0.0,2012-01-15,,2012-2,4.253760218362636,5.516000000000001, +117,117,6.3,308.0,0.0,214.0,0.0,473.0,0.0,144.0,140.0,0.0,622.0,0.0,0.0,67.0,0.0,1650.0,86.0,145.0,46.0,0.0,0.0,0.0,0.0,141.0,18.0,2885.0,0.0,949.0,1.0,324.0,0.0,0.0,13.0,1732.0,140.0,1045.0,0.0,212.0,0.0,78.0,122.0,77.0,32.0,0.0,1.0,190.0,59.0,134.0,2015.0,7.0,118.0,25.0,2692.0,103.0,71.0,86.0,435.0,1048.0,63.0,175.0,0.0,1260.0,165.0,80.0,844.0,29.0,0.0,23.0,176.0,521.0,386.0,0.0,2090.0,465.0,568.0,0.0,38.0,0.0,798.0,105.0,5.0,0.0,16.0,80.0,756.0,61.0,152.0,821.0,0.0,0.0,127.0,667.0,0.0,2261.0,4573.0,5904.0,396.0,450.0,131.0,0.0,0.0,58.0,32.0,2132.0,1615.0,12.0,63.0,0.0,68.0,94.0,331.0,1504.0,22.0,32.0,377.0,185.0,6756.0,0.0,0.0,17.0,29.0,0.0,16.0,21.0,0.0,0.0,838.0,46.0,106.0,115.0,11.0,22.0,731.0,63.6,0.0,0.0,146.0,256.0,1253.0,20.0,64.8,338.0,0.0,0.0,509.0,5087.0,329.0,36.0,69.0,34.0,880.0,329.0,0.0,77.0,1.0,342.0,850.0,98.0,151.0,1.0,9.0,4482.0,430.0,278.0,0.0,2874.0,0.0,0.0,0.0,0.0,2112.0,2024.0,1795.0,1072.0,0.0,14.0,404.0,39.0,274.0,165.0,0.0,209.0,930.0,0.0,13.0,0.0,1.0,95.0,110.0,554.0,721.0,30.0,60.0,190.0,304.0,169.0,510.0,14.0,22.0,1.0,433.0,2.0,154.0,0.0,85.0,0.0,0.0,467.0,1911.0,120.0,297.0,25.0,0.0,64.6,161.0,290.0,5997603.0,79.0,124.0,171.0,47.0,0.0,1731.0,204.0,0.0,0.0,968.0,40.0,0.0,7.0,98.0,0.0,274.0,260.0,27.0,141.0,166.0,1157.0,935.0,659.0,262.0,2404.0,685.0,286.0,1342.0,1984.0,47.0,165.0,353.0,0.0,376.0,0.0,234.0,94.0,557.0,405.0,0.0,632.0,1.0,0.0,13.0,0.0,819.0,22.0,806.0,947.0,0.0,46.0,0.0,15.0,18.0,0.0,36.0,405.0,233.0,0.0,131.0,0.0,197.0,41.0,38.0,93.0,0.0,9.0,28.0,0.0,0.0,70.0,26.0,0.0,70.0,208.0,161.0,0.0,2162.0,64.0,0.0,1404.0,1446.0,91.0,0.0,78.0,3.0,663.0,11.0,18.0,0.0,0.0,0.0,66.0,483.0,0.0,0.0,21.0,2301.0,20.0,669.0,0.0,235.0,63.0,411.0,100.0,23.0,0.0,3.0,0.0,92.0,16.0,20.0,2322.0,922.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,108.0,202.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2547.75,3642.0,0.0,0.0,0.0,36.0,220.0,93.0,8288.0,0.0,0.0,0.0,0.0,0.0,92.0,76.0,7.0,39.0,0.0,2659.0,282.0,182.0,0.0,0.0,2012-01-22,,2012-3,6.3075490542349,7.4959999999999996, +118,118,8.86,261.0,0.0,169.0,0.0,396.0,0.0,155.0,133.0,0.0,565.0,0.0,0.0,81.0,0.0,1522.0,70.0,138.0,57.0,0.0,0.0,0.0,0.0,138.0,22.0,3068.0,0.0,1055.0,0.0,295.0,0.0,0.0,21.0,1563.0,136.0,1216.0,0.0,155.0,0.0,81.0,104.0,88.0,40.0,0.0,3.0,121.0,64.0,128.0,1971.0,7.0,124.0,44.0,2068.0,90.0,75.0,93.0,433.0,1065.0,57.0,171.0,0.0,1098.0,150.0,76.0,861.0,33.0,0.0,37.0,161.0,636.0,360.0,0.0,2039.0,421.0,609.0,0.0,52.0,0.0,850.0,105.0,15.0,0.0,36.0,78.0,190.0,90.0,131.0,742.0,0.0,0.0,151.0,648.0,1.0,2122.0,4610.0,5719.0,328.0,409.0,151.0,0.0,0.0,59.0,40.0,1989.0,1741.0,13.0,72.0,0.0,74.0,61.0,387.0,1261.0,25.0,28.0,1009.0,193.0,6978.0,0.0,0.0,41.0,33.0,0.0,31.0,24.0,0.0,0.0,885.0,35.0,123.0,100.0,11.0,24.0,681.0,70.8,0.0,0.0,131.0,251.0,1421.0,21.0,75.4,355.0,0.0,0.0,566.0,4825.0,364.0,31.0,53.0,37.0,838.0,369.0,0.0,56.0,0.0,320.0,814.0,116.0,143.0,0.0,9.0,2372.0,458.0,225.0,0.0,2778.0,0.0,0.0,0.0,0.0,1959.0,3201.0,1678.0,854.0,0.0,0.0,352.0,28.0,213.0,194.0,0.0,210.0,993.0,0.0,16.0,0.0,1.0,112.0,64.0,626.0,690.0,36.0,73.0,191.0,312.0,187.0,519.0,16.0,33.0,0.0,449.0,2.0,186.0,0.0,80.0,0.0,0.0,548.0,1894.0,122.0,269.0,31.0,0.0,64.8,165.0,323.0,5733342.0,91.0,148.0,181.0,46.0,0.0,1459.0,227.0,0.0,0.0,1000.0,37.0,0.0,15.0,121.0,2.0,222.0,256.0,30.0,128.0,204.0,1117.0,909.0,690.0,297.0,2144.0,682.0,246.0,1568.0,2266.0,49.0,206.0,394.0,0.0,424.0,0.0,193.0,105.0,470.0,433.0,0.0,593.0,0.0,0.0,6.0,0.0,860.0,20.0,781.0,1007.0,0.0,50.0,0.0,21.0,27.0,0.0,36.0,403.0,226.0,0.0,118.0,0.0,225.0,43.0,60.0,97.0,7.0,1.0,38.0,0.0,0.0,78.0,45.0,0.0,64.0,194.0,154.0,0.0,1967.0,48.0,0.0,1278.0,1442.0,96.0,0.0,69.0,5.0,658.0,29.0,13.0,0.0,0.0,0.0,9.0,471.0,0.0,0.0,19.0,2189.0,28.0,3117.0,0.0,318.0,81.0,384.0,100.0,39.0,0.0,3.0,0.0,69.0,11.0,20.0,2203.0,978.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,107.0,199.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2651.0,3482.0,0.0,0.0,0.0,49.0,269.0,92.0,8270.0,0.0,1.0,0.0,0.0,0.0,95.0,52.0,9.0,50.0,0.0,2354.0,274.0,171.0,0.0,0.0,2012-01-29,,2012-4,8.831701457099257,6.497999999999999, +119,119,9.64,295.0,0.0,187.0,0.0,443.0,0.0,166.0,111.0,0.0,692.0,0.0,0.0,60.0,0.0,1425.0,93.0,119.0,66.0,1.0,0.0,0.0,0.0,171.0,17.0,2927.0,0.0,956.0,0.0,267.0,0.0,0.0,26.0,1608.0,158.0,1034.0,1.0,188.0,0.0,82.0,132.0,79.0,42.0,0.0,1.0,153.0,47.0,110.0,2255.0,10.0,150.0,30.0,2027.0,131.0,93.0,93.0,455.0,1227.0,50.0,200.0,0.0,1179.0,137.0,68.0,760.0,17.0,0.0,25.0,159.0,562.0,410.0,0.0,2063.0,469.0,662.0,0.0,40.0,0.0,912.0,121.0,11.0,0.0,30.0,62.0,190.0,76.0,129.0,713.0,0.0,0.0,136.0,609.0,0.0,2159.0,4613.0,5606.0,453.0,506.0,145.0,0.0,0.0,54.0,62.0,2183.0,1616.0,10.0,74.0,0.0,87.0,68.0,344.0,1113.0,23.0,29.0,622.0,213.0,7682.0,0.0,0.0,36.0,52.0,0.0,43.0,16.0,0.0,0.0,854.0,32.0,125.0,82.0,16.0,41.0,658.0,78.0,0.0,0.0,136.0,281.0,1339.0,10.0,86.0,371.0,0.0,0.0,591.0,4726.0,311.0,29.0,85.0,35.0,1063.0,364.0,0.0,81.0,1.0,299.0,893.0,121.0,117.0,1.0,12.0,4748.0,420.0,252.0,0.0,2925.0,0.0,0.0,0.0,0.0,1665.0,3072.0,1548.0,910.0,0.0,1.0,354.0,19.0,218.0,178.0,0.0,154.0,883.0,0.0,16.0,0.0,1.0,128.0,59.0,573.0,550.0,25.0,44.0,194.0,302.0,153.0,487.0,16.0,38.0,0.0,442.0,0.0,159.0,0.0,77.0,0.0,0.0,482.0,1950.0,117.0,292.0,31.0,0.0,65.0,196.0,364.0,4782907.0,69.0,149.0,218.0,28.0,0.0,1408.0,167.0,0.0,0.0,957.0,52.0,0.0,9.0,92.0,0.0,217.0,249.0,40.0,131.0,151.0,1000.0,922.0,599.0,297.0,2109.0,753.0,221.0,1462.0,2238.0,51.0,164.0,383.0,0.0,426.0,0.0,182.0,116.0,452.0,437.0,0.0,559.0,0.0,0.0,6.0,0.0,1019.0,15.0,891.0,907.0,0.0,55.0,0.0,12.0,22.0,0.0,26.0,410.0,229.0,0.0,132.0,0.0,226.0,43.0,125.0,90.0,14.0,1.0,27.0,0.0,0.0,66.0,29.0,0.0,63.0,208.0,157.0,0.0,2194.0,57.0,0.0,1299.0,1313.0,117.0,0.0,50.0,1.0,624.0,22.0,20.0,0.0,0.0,0.0,6.0,412.0,0.0,0.0,26.0,2295.0,72.0,835.0,1.0,253.0,72.0,341.0,90.0,38.0,0.0,1.0,0.0,115.0,14.0,24.0,2030.0,899.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,107.0,240.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2691.0,3276.0,0.0,0.0,0.0,33.0,1113.0,69.0,12137.0,0.0,0.0,0.0,0.0,1.0,74.0,97.0,15.0,46.0,0.0,2352.0,271.0,183.0,0.0,0.0,2012-02-05,,2012-5,9.64134117665539,6.948, +120,120,8.87,397.0,0.0,196.0,0.0,536.0,0.0,167.0,132.0,0.0,669.0,0.0,0.0,103.0,0.0,1714.0,87.0,139.0,69.0,2.0,0.0,0.0,0.0,129.0,20.0,3037.0,0.0,975.0,0.0,283.0,0.0,0.0,16.0,1669.0,136.0,1114.0,0.0,234.0,0.0,97.0,130.0,55.0,27.0,0.0,7.0,110.0,58.0,128.0,1860.0,18.0,194.0,37.0,2083.0,98.0,65.0,86.0,474.0,1094.0,48.0,158.0,0.0,1206.0,141.0,80.0,762.0,19.0,0.0,30.0,202.0,546.0,380.0,0.0,2072.0,551.0,688.0,0.0,29.0,0.0,875.0,92.0,17.0,0.0,28.0,72.0,179.0,89.0,142.0,1129.0,0.0,0.0,145.0,634.0,0.0,2124.0,4547.0,5728.0,394.0,520.0,115.0,0.0,0.0,68.0,55.0,2222.0,1573.0,12.0,91.0,0.0,98.0,55.0,308.0,1267.0,26.0,37.0,645.0,202.0,7219.0,1.0,0.0,37.0,45.0,0.0,32.0,24.0,0.0,0.0,809.0,40.0,116.0,113.0,20.0,29.0,699.0,71.0,0.0,0.0,173.0,251.0,1452.0,19.0,82.0,416.0,0.0,0.0,566.0,4896.0,373.0,29.0,84.0,27.0,957.0,295.0,0.0,62.0,1.0,342.0,915.0,115.0,132.0,0.0,7.0,5256.0,406.0,226.0,0.0,2980.0,0.0,0.0,0.0,0.0,1926.0,3578.0,1959.0,842.0,0.0,0.0,379.0,22.0,260.0,164.0,0.0,178.0,946.0,0.0,21.0,0.0,0.0,101.0,65.0,591.0,679.0,28.0,74.0,219.0,322.0,168.0,493.0,12.0,11.0,0.0,457.0,1.0,181.0,0.0,84.0,0.0,0.0,585.0,2001.0,107.0,289.0,28.0,0.0,84.0,144.0,349.0,4577903.0,80.0,144.0,186.0,41.0,0.0,1572.0,205.0,0.0,0.0,1157.0,20.0,0.0,13.0,91.0,1.0,235.0,245.0,22.0,127.0,167.0,1162.0,976.0,649.0,304.0,2071.0,835.0,286.0,1445.0,2145.0,53.0,171.0,422.0,0.0,379.0,0.0,167.0,116.0,475.0,416.0,0.0,630.0,1.0,0.0,14.0,0.0,859.0,16.0,816.0,995.0,0.0,56.0,35.0,18.0,31.0,0.0,30.0,464.0,298.0,0.0,107.0,0.0,225.0,36.0,48.0,106.0,14.0,1.0,55.0,0.0,0.0,79.0,38.0,0.0,66.0,196.0,143.0,0.0,2435.0,83.0,0.0,1320.0,1249.0,114.0,0.0,61.0,4.0,654.0,16.0,10.0,0.0,0.0,0.0,6.0,343.0,0.0,0.0,24.0,2518.0,36.0,558.0,0.0,296.0,62.0,344.0,131.0,31.0,0.0,1.0,0.0,113.0,6.0,15.0,1920.0,952.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,85.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2826.0,3508.0,0.0,0.0,0.0,24.0,282.0,101.0,8692.0,0.0,1.0,0.0,0.0,0.0,108.0,136.0,8.0,56.0,0.0,2285.0,242.0,189.0,0.0,0.0,2012-02-12,,2012-6,8.882353165094834,8.752, +121,121,7.14,366.0,0.0,188.0,0.0,524.0,0.0,146.0,139.0,0.0,493.0,0.0,0.0,83.0,0.0,1613.0,71.0,114.0,64.0,0.0,0.0,0.0,0.0,148.0,9.0,2840.0,0.0,885.0,0.0,280.0,0.0,0.0,22.0,1631.0,270.0,1143.0,0.0,179.0,0.0,108.0,133.0,78.0,42.0,0.0,3.0,154.0,75.0,128.0,1632.0,8.0,126.0,37.0,2108.0,102.0,68.0,120.0,456.0,957.0,46.0,149.0,0.0,1284.0,134.0,99.0,757.0,26.0,0.0,30.0,182.0,517.0,480.0,0.0,1935.0,469.0,697.0,0.0,13.0,0.0,873.0,110.0,14.0,0.0,27.0,53.0,192.0,123.0,238.0,779.0,0.0,0.0,146.0,551.0,0.0,2325.0,4486.0,5791.0,388.0,534.0,145.0,0.0,0.0,74.0,39.0,2312.0,1531.0,18.0,105.0,0.0,60.0,70.0,328.0,1358.0,20.0,35.0,590.0,195.0,6971.0,0.0,0.0,27.0,40.0,0.0,17.0,23.0,0.0,0.0,771.0,33.0,114.0,107.0,25.0,46.0,702.0,118.0,0.0,0.0,137.0,251.0,1351.0,16.0,67.0,323.0,0.0,0.0,570.0,4948.0,407.0,31.0,66.0,26.0,888.0,278.0,0.0,70.0,1.0,348.0,864.0,98.0,127.0,0.0,8.0,2357.0,397.0,276.0,0.0,3068.0,0.0,0.0,0.0,0.0,1948.0,2279.0,1818.0,821.0,0.0,0.0,358.0,37.0,249.0,152.0,0.0,207.0,1078.0,0.0,26.0,0.0,1.0,86.0,58.0,554.0,646.0,34.0,90.0,178.0,291.0,188.0,478.0,14.0,33.0,0.0,395.0,1.0,168.0,0.0,71.0,0.0,0.0,553.0,1790.0,102.0,278.0,28.0,0.0,54.0,176.0,381.0,4413176.0,88.0,97.0,158.0,51.0,0.0,1499.0,152.0,0.0,0.0,927.0,52.0,0.0,13.0,87.0,3.0,238.0,234.0,47.0,178.0,159.0,1107.0,902.0,646.0,406.0,1850.0,744.0,244.0,1402.0,2142.0,44.0,183.0,454.0,0.0,421.0,0.0,203.0,106.0,483.0,390.0,0.0,659.0,2.0,0.0,4.0,0.0,817.0,17.0,858.0,965.0,0.0,64.0,39.0,19.0,25.0,0.0,49.0,588.0,261.0,0.0,110.0,0.0,220.0,35.0,55.0,85.0,14.0,0.0,30.0,0.0,0.0,58.0,43.0,0.0,59.0,180.0,156.0,0.0,2396.0,70.0,0.0,1434.0,1372.0,87.0,0.0,79.0,4.0,665.0,13.0,11.0,0.0,0.0,1.0,9.0,370.0,0.0,0.0,16.0,2414.0,31.0,656.0,0.0,240.0,77.0,315.0,112.0,32.0,0.0,3.0,0.0,36.0,6.0,16.0,1899.0,940.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,91.0,188.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2862.0,3440.0,0.0,0.0,0.0,34.0,226.0,108.0,8795.0,0.0,0.0,0.0,0.0,1.0,86.0,83.0,17.0,53.0,0.0,2611.0,294.0,199.0,0.0,0.0,2012-02-19,,2012-7,7.088934369807136,7.039999999999999, +122,122,5.75,316.0,0.0,174.0,0.0,551.0,0.0,158.0,118.0,0.0,498.0,0.0,0.0,56.0,0.0,1717.0,84.0,109.0,61.0,0.0,0.0,0.0,0.0,116.0,19.0,2809.0,0.0,971.0,0.0,292.0,0.0,0.0,12.0,1721.0,149.0,1138.0,0.0,202.0,0.0,114.0,144.0,66.0,33.0,0.0,0.0,149.0,51.0,157.0,1620.0,10.0,102.0,27.0,2085.0,110.0,72.0,123.0,517.0,1225.0,57.0,159.0,0.0,1136.0,131.0,118.0,844.0,24.0,0.0,38.0,190.0,541.0,437.0,0.0,2186.0,325.0,639.0,0.0,26.0,0.0,956.0,88.0,13.0,0.0,27.0,65.0,174.0,92.0,169.0,906.0,1.0,0.0,123.0,594.0,0.0,2410.0,4786.0,6345.0,415.0,530.0,151.0,0.0,0.0,54.0,60.0,2275.0,1822.0,26.0,108.0,0.0,80.0,83.0,386.0,1532.0,26.0,38.0,468.0,203.0,7253.0,0.0,0.0,38.0,34.0,0.0,24.0,22.0,0.0,0.0,814.0,40.0,143.0,95.0,16.0,37.0,669.0,64.0,0.0,0.0,128.0,226.0,1315.0,12.0,63.0,330.0,0.0,0.0,574.0,5032.0,308.0,36.0,55.0,27.0,980.0,274.0,0.0,96.0,1.0,392.0,944.0,133.0,117.0,3.0,6.0,2206.0,401.0,256.0,0.0,3021.0,0.0,0.0,0.0,0.0,2773.0,2165.0,1549.0,793.0,0.0,0.0,409.0,30.0,224.0,175.0,0.0,361.0,1062.0,0.0,19.0,0.0,1.0,101.0,50.0,559.0,726.0,35.0,73.0,185.0,306.0,182.0,475.0,21.0,18.0,0.0,432.0,3.0,217.0,0.0,62.0,0.0,0.0,580.0,1898.0,119.0,257.0,40.0,0.0,113.0,176.0,332.0,4343539.0,88.0,110.0,129.0,56.0,0.0,1612.0,180.0,0.0,0.0,1045.0,36.0,0.0,14.0,103.0,3.0,235.0,260.0,30.0,115.0,166.0,1080.0,929.0,676.0,392.0,1991.0,796.0,275.0,1467.0,2116.0,40.0,149.0,367.0,0.0,377.0,1.0,147.0,116.0,548.0,814.0,0.0,670.0,0.0,0.0,9.0,0.0,835.0,16.0,891.0,936.0,0.0,68.0,36.0,15.0,37.0,0.0,30.0,397.0,270.0,0.0,90.0,0.0,225.0,51.0,54.0,93.0,19.0,1.0,41.0,0.0,0.0,49.0,33.0,0.0,90.0,201.0,114.0,0.0,2396.0,73.0,0.0,1502.0,1434.0,58.0,0.0,93.0,6.0,715.0,19.0,18.0,0.0,0.0,0.0,7.0,364.0,0.0,0.0,25.0,2547.0,48.0,475.0,1.0,271.0,68.0,316.0,82.0,34.0,0.0,0.0,0.0,50.0,16.0,12.0,2077.0,911.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,101.0,174.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2962.0,3761.0,0.0,0.0,0.0,34.0,253.0,92.0,8743.0,0.0,0.0,0.0,0.0,0.0,96.0,60.0,23.0,40.0,0.0,2644.0,249.0,197.0,0.0,0.0,2012-02-26,,2012-8,5.764995909141305,5.242000000000001, +123,123,4.03,273.0,0.0,138.0,0.0,452.0,0.0,114.0,146.0,0.0,429.0,0.0,0.0,55.0,0.0,1562.0,74.0,94.0,47.0,0.0,0.0,0.0,0.0,130.0,20.0,2511.0,0.0,934.0,1.0,268.0,0.0,0.0,10.0,1586.0,766.0,1040.0,1.0,167.0,0.0,91.0,139.0,73.0,30.0,0.0,5.0,171.0,68.0,100.0,2039.0,6.0,183.0,35.0,2083.0,99.0,64.0,127.0,451.0,1064.0,35.0,146.0,0.0,1024.0,126.0,63.0,641.0,27.0,0.0,35.0,151.0,467.0,329.0,0.0,2054.0,298.0,607.0,0.0,20.0,1.0,776.0,81.0,12.0,0.0,29.0,52.0,152.0,111.0,143.0,799.0,0.0,0.0,95.0,451.0,0.0,2207.0,4388.0,6152.0,358.0,498.0,114.0,0.0,0.0,53.0,36.0,2128.0,1606.0,18.0,82.0,0.0,55.0,70.0,271.0,1486.0,23.0,37.0,521.0,201.0,5741.0,0.0,0.0,31.0,59.0,0.0,18.0,19.0,0.0,0.0,819.0,34.0,120.0,109.0,19.0,21.0,667.0,58.0,0.0,0.0,98.0,221.0,1283.0,10.0,46.0,290.0,0.0,0.0,622.0,4438.0,274.0,27.0,57.0,30.0,856.0,188.0,0.0,90.0,1.0,292.0,721.0,123.0,130.0,0.0,8.0,1449.0,409.0,250.0,0.0,2669.0,0.0,0.0,0.0,0.0,2791.0,1845.0,1574.0,846.0,0.0,0.0,376.0,26.0,273.0,148.0,0.0,176.0,971.0,0.0,32.0,0.0,0.0,114.0,74.0,495.0,695.0,28.0,69.0,153.0,222.0,163.0,541.0,18.0,21.0,0.0,400.0,1.0,218.0,0.0,92.0,0.0,0.0,537.0,1845.0,80.0,231.0,33.0,0.0,62.0,113.0,249.0,4339305.0,78.0,117.0,156.0,40.0,1.0,1446.0,215.0,0.0,0.0,879.0,41.0,0.0,23.0,101.0,1.0,197.0,256.0,33.0,145.0,163.0,1039.0,834.0,629.0,327.0,1908.0,681.0,281.0,1266.0,1893.0,41.0,239.0,308.0,66.0,419.0,0.0,140.0,82.0,441.0,408.0,0.0,615.0,0.0,0.0,11.0,0.0,827.0,18.0,761.0,980.0,0.0,57.0,44.0,9.0,30.0,0.0,18.0,326.0,219.0,0.0,75.0,0.0,138.0,47.0,51.0,98.0,12.0,0.0,55.0,0.0,0.0,44.0,32.0,0.0,58.0,131.0,129.0,0.0,2346.0,50.0,0.0,1352.0,1447.0,41.0,0.0,91.0,4.0,654.0,16.0,11.0,0.0,0.0,0.0,3.0,356.0,0.0,0.0,24.0,2429.0,33.0,393.0,0.0,234.0,64.0,328.0,85.0,36.0,0.0,2.0,0.0,39.0,20.0,22.0,1955.0,890.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,106.0,169.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3053.0,3278.0,0.0,0.0,0.0,27.0,336.0,108.0,8719.0,0.0,1.0,0.0,0.0,0.0,91.0,41.0,14.0,29.0,0.0,2599.0,240.0,193.0,0.0,0.0,2012-03-04,,2012-9,4.046821879904607,3.3340000000000005, +124,124,2.95,220.0,0.0,142.0,0.0,596.0,0.0,68.0,130.0,0.0,424.0,0.0,120.0,38.0,0.0,1586.0,55.0,72.0,53.0,0.0,0.0,0.0,0.0,109.0,17.0,2278.0,0.0,858.0,1.0,303.0,0.0,0.0,12.0,1603.0,2004.0,784.0,0.0,201.0,0.0,63.0,159.0,66.0,22.0,0.0,2.0,198.0,66.0,121.0,1356.0,13.0,179.0,34.0,2058.0,84.0,63.0,113.0,476.0,994.0,26.0,140.0,0.0,1082.0,137.0,84.0,768.0,19.0,0.0,32.0,154.0,526.0,332.0,0.0,1591.0,340.0,530.0,0.0,21.0,0.0,611.0,85.0,6.0,0.0,27.0,66.0,147.0,113.0,163.0,776.0,0.0,0.0,80.0,513.0,2.0,2035.0,4183.0,4129.0,291.0,465.0,156.0,0.0,0.0,47.0,37.0,1880.0,1285.0,21.0,66.0,0.0,60.0,58.0,236.0,1520.0,12.0,34.0,504.0,216.0,5105.0,0.0,0.0,21.0,46.0,0.0,23.0,21.0,0.0,0.0,670.0,35.0,88.0,95.0,10.0,24.0,776.0,50.0,0.0,0.0,94.0,222.0,1244.0,11.0,42.0,278.0,0.0,0.0,686.0,4138.0,216.0,49.0,45.0,22.0,743.0,317.0,0.0,60.0,1.0,275.0,740.0,97.0,129.0,0.0,6.0,1277.0,368.0,268.0,0.0,2520.0,0.0,0.0,0.0,0.0,2630.0,1478.0,1710.0,813.0,0.0,1.0,390.0,30.0,230.0,127.0,0.0,166.0,1070.0,0.0,24.0,0.0,0.0,104.0,63.0,493.0,648.0,40.0,54.0,175.0,234.0,118.0,499.0,16.0,13.0,0.0,409.0,1.0,212.0,0.0,78.0,0.0,0.0,553.0,2013.0,90.0,250.0,16.0,0.0,58.0,89.0,265.0,4286315.0,84.0,117.0,107.0,51.0,0.0,1579.0,164.0,1.0,0.0,868.0,24.0,0.0,13.0,75.0,1.0,232.0,264.0,35.0,133.0,117.0,1038.0,875.0,564.0,231.0,1792.0,669.0,266.0,1231.0,1754.0,27.0,126.0,305.0,152.0,355.0,0.0,122.0,76.0,359.0,394.0,0.0,573.0,2.0,0.0,7.0,0.0,640.0,25.0,670.0,775.0,0.0,271.0,25.0,13.0,39.0,0.0,25.0,323.0,195.0,0.0,59.0,0.0,127.0,35.0,37.0,208.0,13.0,0.0,45.0,2.0,0.0,67.0,46.0,0.0,66.0,135.0,122.0,0.0,2218.0,67.0,0.0,1442.0,1453.0,50.0,0.0,81.0,8.0,634.0,21.0,12.0,0.0,0.0,0.0,5.0,327.0,0.0,0.0,21.0,2429.0,21.0,414.0,0.0,258.0,63.0,290.0,58.0,19.0,0.0,4.0,0.0,37.0,7.0,18.0,1441.0,772.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,101.0,120.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2976.0,2689.0,0.0,0.0,0.0,20.0,200.0,107.0,8266.0,0.0,1.0,0.0,0.0,0.0,85.0,117.0,10.0,20.0,0.0,2504.0,327.0,190.0,0.0,0.0,2012-03-11,,2012-10,2.9404517869037505,1.8960000000000001, +125,125,2.13,245.0,0.0,154.0,0.0,409.0,0.0,81.0,140.0,0.0,430.0,0.0,21.0,44.0,0.0,1365.0,53.0,95.0,46.0,1.0,0.0,0.0,0.0,98.0,9.0,1776.0,0.0,730.0,0.0,275.0,0.0,0.0,14.0,1518.0,308.0,734.0,0.0,179.0,0.0,71.0,130.0,59.0,29.0,0.0,2.0,124.0,56.0,98.0,1236.0,13.0,108.0,36.0,1825.0,95.0,50.0,81.0,447.0,834.0,38.0,142.0,0.0,1010.0,96.0,82.0,676.0,17.0,0.0,25.0,141.0,432.0,340.0,0.0,1845.0,389.0,554.0,79.0,37.0,0.0,505.0,93.0,10.0,0.0,24.0,47.0,114.0,107.0,134.0,665.0,0.0,0.0,75.0,444.0,0.0,1848.0,4335.0,5294.0,304.0,424.0,108.0,0.0,0.0,44.0,44.0,1825.0,1463.0,19.0,74.0,0.0,48.0,54.0,215.0,1444.0,14.0,35.0,430.0,168.0,4163.0,0.0,0.0,26.0,62.0,0.0,34.0,17.0,0.0,0.0,567.0,48.0,111.0,66.0,17.0,33.0,553.0,71.0,0.0,0.0,92.0,223.0,1491.0,21.0,46.0,263.0,0.0,0.0,544.0,3802.0,211.0,80.0,92.0,69.0,863.0,219.0,0.0,54.0,1.0,251.0,749.0,117.0,141.0,1.0,12.0,1113.0,380.0,316.0,0.0,1994.0,0.0,0.0,0.0,0.0,1871.0,1666.0,1828.0,787.0,0.0,2.0,401.0,19.0,179.0,165.0,0.0,167.0,953.0,0.0,36.0,0.0,1.0,118.0,63.0,567.0,651.0,33.0,48.0,123.0,202.0,118.0,421.0,10.0,22.0,0.0,382.0,1.0,227.0,0.0,96.0,0.0,0.0,493.0,1798.0,93.0,252.0,29.0,0.0,51.0,131.0,241.0,4224666.0,84.0,396.0,184.0,63.0,0.0,1287.0,134.0,0.0,0.0,803.0,31.0,0.0,11.0,69.0,3.0,232.0,171.0,27.0,108.0,105.0,1024.0,755.0,613.0,224.0,1518.0,519.0,192.0,1142.0,1564.0,33.0,113.0,235.0,76.0,270.0,0.0,110.0,99.0,440.0,424.0,0.0,549.0,0.0,0.0,7.0,0.0,627.0,15.0,718.0,741.0,0.0,58.0,24.0,26.0,30.0,0.0,44.0,297.0,246.0,0.0,68.0,0.0,124.0,34.0,51.0,127.0,8.0,1.0,44.0,0.0,0.0,54.0,35.0,0.0,66.0,155.0,129.0,0.0,2046.0,57.0,0.0,1234.0,1200.0,37.0,0.0,55.0,9.0,641.0,6.0,19.0,0.0,0.0,0.0,6.0,322.0,0.0,0.0,25.0,2614.0,27.0,370.0,0.0,844.0,153.0,302.0,66.0,15.0,0.0,1.0,0.0,22.0,9.0,21.0,1877.0,786.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,122.0,134.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2972.0,2966.0,0.0,0.0,0.0,25.0,209.0,81.0,8428.0,0.0,0.0,0.0,0.0,1.0,93.0,61.0,13.0,31.0,0.0,2068.0,225.0,195.0,0.0,0.0,2012-03-18,,2012-11,2.1260110907294605,2.54, +126,126,1.49,240.0,0.0,117.0,0.0,459.0,0.0,95.0,135.0,0.0,434.0,0.0,17.0,58.0,0.0,1391.0,36.0,110.0,50.0,0.0,0.0,0.0,0.0,115.0,17.0,1633.0,0.0,721.0,0.0,341.0,0.0,0.0,14.0,1424.0,962.0,688.0,1.0,165.0,20.0,48.0,125.0,73.0,30.0,0.0,0.0,118.0,53.0,103.0,1168.0,4.0,110.0,35.0,1887.0,91.0,45.0,98.0,423.0,895.0,41.0,222.0,0.0,964.0,152.0,72.0,696.0,27.0,0.0,19.0,143.0,443.0,333.0,0.0,1610.0,337.0,511.0,21.0,15.0,0.0,607.0,90.0,8.0,0.0,27.0,67.0,170.0,118.0,121.0,806.0,0.0,0.0,64.0,478.0,0.0,1757.0,3708.0,4762.0,344.0,447.0,129.0,0.0,0.0,40.0,56.0,1566.0,1469.0,15.0,60.0,0.0,59.0,69.0,207.0,1352.0,25.0,35.0,379.0,156.0,3857.0,0.0,0.0,26.0,62.0,0.0,28.0,24.0,0.0,0.0,644.0,45.0,104.0,64.0,28.0,28.0,563.0,47.0,0.0,0.0,138.0,233.0,1516.0,15.0,47.0,240.0,0.0,0.0,432.0,3705.0,209.0,35.0,45.0,38.0,737.0,149.0,0.0,56.0,1.0,249.0,644.0,96.0,120.0,1.0,8.0,943.0,411.0,273.0,0.0,2072.0,0.0,0.0,0.0,0.0,1908.0,1505.0,1379.0,665.0,0.0,3.0,397.0,24.0,172.0,128.0,0.0,176.0,993.0,0.0,33.0,0.0,0.0,134.0,63.0,456.0,640.0,30.0,47.0,153.0,222.0,107.0,486.0,18.0,11.0,0.0,376.0,2.0,235.0,0.0,79.0,0.0,0.0,443.0,1628.0,115.0,260.0,27.0,0.0,45.0,133.0,222.0,4167097.0,73.0,129.0,116.0,40.0,0.0,1160.0,207.0,0.0,0.0,809.0,71.0,0.0,18.0,74.0,1.0,185.0,205.0,42.0,99.0,124.0,1061.0,749.0,671.0,255.0,1581.0,549.0,248.0,1067.0,1332.0,26.0,123.0,234.0,66.0,313.0,0.0,121.0,91.0,492.0,403.0,0.0,541.0,2.0,0.0,4.0,0.0,609.0,24.0,617.0,762.0,0.0,50.0,33.0,21.0,28.0,0.0,26.0,327.0,169.0,0.0,80.0,0.0,111.0,41.0,52.0,90.0,13.0,0.0,50.0,0.0,0.0,39.0,23.0,0.0,75.0,120.0,107.0,0.0,2148.0,37.0,0.0,1096.0,1154.0,52.0,0.0,64.0,2.0,601.0,9.0,17.0,0.0,0.0,0.0,5.0,394.0,0.0,0.0,23.0,2454.0,33.0,359.0,0.0,233.0,77.0,263.0,81.0,24.0,0.0,1.0,0.0,60.0,49.0,23.0,1516.0,743.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,102.0,90.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2373.0,2773.0,0.0,0.0,0.0,24.0,292.0,116.0,8210.0,0.0,0.0,0.0,0.0,1.0,103.0,109.0,19.0,27.0,0.0,1809.0,204.0,184.0,0.0,0.0,2012-03-25,,2012-12,1.4682328422012585,1.228, +127,127,1.13,241.0,0.0,118.0,0.0,412.0,0.0,84.0,131.0,0.0,430.0,0.0,22.0,51.0,0.0,1533.0,42.0,98.0,66.0,0.0,0.0,0.0,0.0,91.0,21.0,1839.0,0.0,868.0,0.0,387.0,0.0,0.0,11.0,1368.0,869.0,718.0,0.0,195.0,48.0,64.0,112.0,58.0,38.0,0.0,3.0,149.0,51.0,93.0,1299.0,19.0,119.0,33.0,1830.0,80.0,52.0,120.0,412.0,869.0,49.0,179.0,0.0,969.0,157.0,59.0,606.0,18.0,0.0,20.0,136.0,438.0,325.0,0.0,1508.0,300.0,533.0,24.0,18.0,0.0,674.0,100.0,7.0,0.0,26.0,46.0,128.0,137.0,158.0,931.0,0.0,0.0,92.0,448.0,0.0,1918.0,3931.0,4885.0,357.0,443.0,139.0,0.0,0.0,54.0,41.0,1663.0,1577.0,32.0,62.0,0.0,56.0,62.0,197.0,1494.0,20.0,37.0,462.0,192.0,3295.0,0.0,0.0,29.0,51.0,0.0,28.0,32.0,0.0,0.0,606.0,52.0,90.0,88.0,13.0,24.0,548.0,66.0,0.0,0.0,113.0,205.0,1625.0,14.0,62.0,234.0,0.0,0.0,456.0,3761.0,271.0,55.0,46.0,28.0,690.0,160.0,0.0,77.0,0.0,270.0,645.0,84.0,102.0,0.0,7.0,1154.0,312.0,218.0,0.0,2178.0,0.0,0.0,0.0,0.0,2121.0,1453.0,1478.0,673.0,0.0,0.0,324.0,26.0,183.0,138.0,0.0,199.0,885.0,0.0,17.0,0.0,1.0,232.0,69.0,484.0,592.0,32.0,46.0,141.0,183.0,111.0,557.0,19.0,19.0,0.0,370.0,0.0,200.0,0.0,80.0,0.0,0.0,452.0,1559.0,101.0,221.0,45.0,0.0,53.0,108.0,215.0,4075028.0,91.0,100.0,118.0,53.0,0.0,1140.0,175.0,0.0,0.0,855.0,27.0,0.0,7.0,84.0,1.0,197.0,211.0,25.0,66.0,131.0,1071.0,706.0,635.0,194.0,1867.0,572.0,215.0,930.0,1246.0,30.0,136.0,260.0,81.0,275.0,0.0,150.0,82.0,422.0,429.0,0.0,592.0,2.0,0.0,4.0,0.0,669.0,13.0,767.0,757.0,0.0,57.0,74.0,19.0,30.0,0.0,22.0,290.0,160.0,0.0,77.0,0.0,144.0,37.0,50.0,94.0,18.0,0.0,37.0,1.0,0.0,42.0,42.0,0.0,45.0,111.0,122.0,0.0,2087.0,52.0,0.0,1065.0,1560.0,38.0,0.0,80.0,9.0,648.0,7.0,14.0,0.0,0.0,0.0,9.0,348.0,0.0,0.0,13.0,2368.0,33.0,391.0,0.0,342.0,74.0,293.0,59.0,19.0,0.0,2.0,0.0,42.0,12.0,29.0,1250.0,762.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,100.0,80.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2647.0,2472.0,0.0,0.0,0.0,15.0,225.0,72.0,7207.0,0.0,0.0,0.0,0.0,0.0,74.0,79.0,11.0,26.0,0.0,1677.0,242.0,171.0,0.0,0.0,2012-04-01,,2012-13,1.16025104175728,1.13, +128,128,0.85,223.0,0.0,120.0,0.0,373.0,0.0,73.0,96.0,0.0,412.0,0.0,28.0,26.0,0.0,1424.0,63.0,93.0,58.0,0.0,0.0,0.0,0.0,95.0,9.0,1547.0,0.0,695.0,0.0,356.0,0.0,0.0,15.0,1142.0,196.0,804.0,0.0,153.0,85.0,73.0,114.0,69.0,17.0,0.0,4.0,94.0,39.0,77.0,1062.0,9.0,150.0,25.0,1732.0,76.0,60.0,100.0,383.0,844.0,27.0,149.0,0.0,946.0,99.0,76.0,568.0,17.0,0.0,23.0,158.0,386.0,270.0,0.0,1395.0,251.0,383.0,25.0,19.0,0.0,522.0,89.0,10.0,0.0,18.0,61.0,862.0,137.0,155.0,837.0,0.0,0.0,46.0,435.0,0.0,1840.0,3605.0,4769.0,328.0,382.0,117.0,0.0,0.0,44.0,47.0,1402.0,1501.0,22.0,71.0,0.0,56.0,41.0,178.0,1275.0,15.0,19.0,429.0,191.0,3135.0,0.0,0.0,51.0,47.0,0.0,25.0,23.0,0.0,0.0,553.0,57.0,103.0,64.0,16.0,26.0,497.0,57.0,0.0,0.0,81.0,181.0,1393.0,20.0,48.0,172.0,0.0,0.0,416.0,3475.0,223.0,19.0,37.0,36.0,883.0,130.0,0.0,64.0,0.0,260.0,534.0,79.0,82.0,0.0,5.0,1386.0,328.0,217.0,0.0,1989.0,0.0,0.0,0.0,0.0,2005.0,1762.0,1563.0,763.0,0.0,0.0,367.0,24.0,175.0,141.0,0.0,159.0,782.0,0.0,20.0,0.0,0.0,105.0,52.0,549.0,545.0,34.0,53.0,163.0,208.0,128.0,585.0,12.0,24.0,0.0,333.0,0.0,210.0,0.0,85.0,0.0,0.0,456.0,1439.0,95.0,208.0,34.0,0.0,35.0,94.0,223.0,4066053.0,88.0,76.0,118.0,34.0,0.0,1021.0,171.0,0.0,0.0,811.0,50.0,0.0,14.0,113.0,3.0,226.0,229.0,28.0,120.0,97.0,853.0,672.0,548.0,152.0,1671.0,490.0,298.0,749.0,963.0,34.0,134.0,253.0,74.0,283.0,0.0,166.0,81.0,390.0,344.0,0.0,611.0,0.0,0.0,4.0,0.0,693.0,10.0,591.0,709.0,0.0,54.0,36.0,17.0,21.0,0.0,18.0,304.0,203.0,0.0,86.0,0.0,125.0,37.0,45.0,109.0,7.0,0.0,46.0,0.0,0.0,46.0,34.0,0.0,56.0,116.0,130.0,0.0,1995.0,69.0,0.0,993.0,989.0,37.0,0.0,64.0,6.0,534.0,12.0,30.0,0.0,0.0,0.0,2.0,329.0,0.0,0.0,10.0,2074.0,19.0,452.0,0.0,306.0,59.0,259.0,82.0,20.0,0.0,2.0,0.0,49.0,12.0,14.0,962.0,570.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,100.0,76.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2576.0,1949.0,0.0,0.0,0.0,12.0,223.0,79.0,6437.0,0.0,0.0,0.0,0.0,1.0,97.0,74.0,7.0,31.0,0.0,1655.0,203.0,173.0,0.0,0.0,2012-04-08,,2012-14,0.8462121637165305,1.504, +129,129,0.84,260.0,0.0,132.0,0.0,529.0,0.0,86.0,111.0,0.0,494.0,0.0,18.0,43.0,0.0,1436.0,54.0,75.0,58.0,0.0,0.0,0.0,0.0,107.0,10.0,1559.0,0.0,630.0,0.0,375.0,0.0,0.0,10.0,1347.0,154.0,817.0,1.0,198.0,41.0,76.0,144.0,74.0,30.0,0.0,1.0,156.0,60.0,89.0,1171.0,8.0,128.0,34.0,1842.0,54.0,61.0,100.0,458.0,854.0,35.0,208.0,0.0,909.0,118.0,55.0,548.0,17.0,0.0,16.0,167.0,478.0,285.0,0.0,1365.0,313.0,491.0,26.0,183.0,0.0,657.0,84.0,8.0,0.0,32.0,70.0,666.0,173.0,198.0,899.0,0.0,0.0,77.0,452.0,0.0,1939.0,4123.0,4516.0,299.0,388.0,143.0,0.0,0.0,46.0,48.0,1439.0,1335.0,27.0,77.0,0.0,54.0,59.0,202.0,1375.0,27.0,31.0,412.0,196.0,3296.0,0.0,0.0,35.0,59.0,0.0,45.0,13.0,0.0,0.0,626.0,41.0,90.0,99.0,16.0,22.0,550.0,61.0,0.0,0.0,88.0,184.0,1241.0,19.0,71.0,222.0,0.0,0.0,539.0,3703.0,219.0,42.0,48.0,24.0,807.0,191.0,0.0,61.0,0.0,288.0,530.0,80.0,96.0,0.0,6.0,2347.0,436.0,233.0,0.0,2138.0,0.0,0.0,0.0,0.0,2218.0,3422.0,1497.0,724.0,0.0,0.0,394.0,30.0,223.0,140.0,1.0,406.0,887.0,0.0,31.0,0.0,0.0,101.0,63.0,577.0,619.0,23.0,59.0,160.0,195.0,123.0,624.0,16.0,26.0,0.0,342.0,2.0,216.0,0.0,82.0,0.0,0.0,494.0,1731.0,95.0,201.0,39.0,0.0,60.0,101.0,218.0,4263969.0,95.0,112.0,158.0,39.0,0.0,1319.0,215.0,0.0,0.0,884.0,34.0,0.0,10.0,92.0,2.0,198.0,209.0,38.0,114.0,116.0,1074.0,900.0,620.0,202.0,1820.0,554.0,249.0,872.0,1109.0,34.0,127.0,256.0,84.0,313.0,0.0,126.0,95.0,350.0,367.0,0.0,605.0,1.0,0.0,3.0,0.0,600.0,19.0,732.0,831.0,0.0,49.0,41.0,16.0,31.0,0.0,25.0,317.0,258.0,0.0,73.0,0.0,132.0,23.0,44.0,97.0,16.0,0.0,56.0,0.0,0.0,62.0,24.0,0.0,62.0,116.0,131.0,0.0,2773.0,55.0,0.0,1133.0,1487.0,37.0,0.0,73.0,4.0,591.0,4.0,21.0,0.0,0.0,0.0,6.0,329.0,0.0,0.0,17.0,2420.0,37.0,465.0,0.0,265.0,44.0,288.0,76.0,22.0,0.0,3.0,0.0,43.0,8.0,16.0,1270.0,808.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,128.0,80.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2615.0,2460.0,0.0,0.0,0.0,26.0,177.0,79.0,6420.0,0.0,0.0,0.0,0.0,0.0,99.0,75.0,14.0,34.0,0.0,1981.0,257.0,181.0,0.0,0.0,2012-04-15,,2012-15,0.8573681185779582,0.774, +130,130,0.34,162.0,0.0,112.0,0.0,647.0,0.0,98.0,190.0,0.0,440.0,2.0,51.0,96.0,2.0,1786.0,66.0,95.0,66.0,2.0,2.0,0.0,2.0,112.0,15.0,1250.0,0.0,1045.0,0.0,299.0,0.0,2.0,13.0,1649.0,182.0,763.0,3.0,211.0,63.0,49.0,226.0,95.0,36.0,2.0,6.0,174.0,71.0,122.0,3091.0,10.0,115.0,57.0,1955.0,80.0,120.0,82.0,498.0,1153.0,66.0,224.0,0.0,868.0,379.0,72.0,618.0,26.0,11.0,28.0,160.0,598.0,440.0,0.0,1669.0,457.0,580.0,24.0,30.0,70.0,802.0,102.0,13.0,0.0,34.0,75.0,156.0,181.0,174.0,969.0,0.0,0.0,99.0,696.0,1.0,2868.0,4876.0,6138.0,389.0,393.0,154.0,0.0,0.0,58.0,132.0,1346.0,1169.0,18.0,84.0,0.0,45.0,76.0,206.0,1562.0,24.0,24.0,548.0,227.0,4226.0,0.0,0.0,25.0,61.0,0.0,31.0,26.0,11.0,0.0,796.0,41.0,145.0,122.0,28.0,24.0,765.0,41.0,0.0,0.0,118.0,287.0,1300.0,25.0,46.0,282.0,0.0,2.0,1310.0,4474.0,323.0,152.0,76.0,51.0,2109.0,221.0,0.0,105.0,1.0,274.0,732.0,107.0,173.0,0.0,11.0,1327.0,489.0,267.0,2.0,2665.0,0.0,2.0,2.0,2.0,3377.0,1682.0,1207.0,1387.0,0.0,4.0,519.0,21.0,202.0,222.0,1.0,355.0,1163.0,0.0,23.0,0.0,2.0,172.0,106.0,481.0,843.0,21.0,59.0,292.0,333.0,150.0,1054.0,19.0,30.0,867.0,553.0,5.0,431.0,0.0,84.0,0.0,0.0,702.0,2003.0,79.0,214.0,43.0,2.0,67.0,84.0,284.0,3943441.0,108.0,185.0,169.0,39.0,13.0,2064.0,472.0,0.0,0.0,1180.0,61.0,0.0,9.0,131.0,269.0,376.0,360.0,104.0,301.0,151.0,1275.0,1250.0,722.0,223.0,1781.0,776.0,310.0,1771.0,1868.0,19.0,161.0,338.0,48.0,389.0,0.0,194.0,69.0,539.0,401.0,2.0,896.0,6.0,0.0,4.0,2.0,899.0,27.0,673.0,1016.0,0.0,154.0,140.0,18.0,23.0,0.0,39.0,443.0,292.0,0.0,86.0,0.0,152.0,25.0,67.0,103.0,12.0,71.0,47.0,0.0,0.0,63.0,37.0,0.0,64.0,132.0,128.0,2.0,2809.0,70.0,0.0,1566.0,2109.0,51.0,0.0,120.0,9.0,680.0,18.0,13.0,0.0,0.0,0.0,16.0,348.0,2.0,0.0,18.0,2797.0,38.0,429.0,3.0,402.0,108.0,551.0,96.0,29.0,228.0,5.0,2.0,51.0,10.0,46.0,2133.0,1184.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,750.0,0.0,92.0,116.0,353.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4226.0,3570.0,0.0,0.0,0.0,35.0,908.0,112.0,10082.0,0.0,0.0,0.0,0.0,3.0,297.0,67.0,29.0,32.0,0.0,1986.0,237.0,231.0,2.0,2.0,2012-10-21,,2012-42,0.3295773783526581,2.758, +131,131,0.46,166.0,0.0,146.0,0.0,564.0,0.0,104.0,166.0,0.0,485.0,0.0,32.0,68.0,0.0,1752.0,70.0,115.0,78.0,1.0,0.0,0.0,0.0,131.0,20.0,1314.0,0.0,1030.0,0.0,290.0,0.0,0.0,11.0,1736.0,191.0,819.0,3.0,151.0,61.0,74.0,208.0,92.0,50.0,0.0,7.0,190.0,67.0,102.0,1400.0,6.0,113.0,45.0,2018.0,94.0,79.0,105.0,524.0,1319.0,45.0,210.0,0.0,942.0,356.0,81.0,641.0,32.0,9.0,41.0,150.0,583.0,377.0,0.0,1640.0,432.0,552.0,36.0,47.0,85.0,743.0,137.0,15.0,0.0,27.0,97.0,190.0,155.0,190.0,977.0,0.0,0.0,121.0,751.0,1.0,2834.0,4967.0,5791.0,370.0,483.0,144.0,0.0,0.0,211.0,129.0,1340.0,1363.0,26.0,88.0,0.0,52.0,66.0,237.0,1700.0,23.0,50.0,584.0,264.0,4192.0,0.0,0.0,24.0,51.0,0.0,46.0,26.0,19.0,0.0,754.0,24.0,131.0,142.0,19.0,25.0,783.0,56.0,0.0,0.0,156.0,300.0,1408.0,24.0,51.0,313.0,0.0,0.0,1278.0,4838.0,339.0,160.0,59.0,36.0,1358.0,192.0,0.0,102.0,0.0,243.0,846.0,103.0,191.0,2.0,12.0,1228.0,525.0,251.0,0.0,2794.0,0.0,0.0,0.0,0.0,3596.0,1664.0,1394.0,1293.0,0.0,0.0,535.0,30.0,208.0,199.0,46.0,308.0,1240.0,0.0,27.0,0.0,3.0,150.0,101.0,671.0,891.0,36.0,60.0,258.0,353.0,183.0,1096.0,21.0,20.0,595.0,552.0,4.0,363.0,2.0,71.0,0.0,0.0,669.0,2034.0,83.0,293.0,35.0,0.0,49.0,114.0,334.0,4050638.0,127.0,146.0,207.0,24.0,18.0,1809.0,413.0,0.0,0.0,1181.0,50.0,0.0,20.0,94.0,277.0,405.0,327.0,108.0,170.0,151.0,1287.0,1247.0,832.0,252.0,1964.0,658.0,259.0,1178.0,2309.0,28.0,150.0,307.0,65.0,341.0,0.0,176.0,62.0,508.0,359.0,0.0,797.0,2.0,0.0,10.0,0.0,1029.0,18.0,669.0,1115.0,0.0,155.0,110.0,21.0,26.0,0.0,41.0,472.0,197.0,0.0,110.0,0.0,120.0,34.0,53.0,101.0,14.0,141.0,75.0,0.0,0.0,81.0,34.0,0.0,67.0,140.0,151.0,0.0,2792.0,56.0,0.0,1536.0,2135.0,62.0,0.0,146.0,7.0,666.0,14.0,29.0,0.0,0.0,0.0,14.0,433.0,0.0,0.0,34.0,2855.0,28.0,447.0,2.0,277.0,94.0,734.0,78.0,25.0,181.0,4.0,0.0,40.0,18.0,49.0,1738.0,1454.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.0,1061.0,0.0,98.0,115.0,423.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.0,3907.0,3510.0,0.0,0.0,0.0,31.0,1324.0,124.0,11567.0,0.0,1.0,0.0,0.0,0.0,300.0,61.0,47.0,37.0,0.0,2021.0,305.0,229.0,0.0,0.0,2012-10-28,,2012-43,0.4646938371570659,0.838, +132,132,0.51,171.0,0.0,120.0,0.0,501.0,0.0,59.0,142.0,0.0,438.0,0.0,55.0,69.0,0.0,1451.0,55.0,103.0,51.0,1.0,0.0,0.0,0.0,114.0,6.0,1163.0,0.0,923.0,0.0,271.0,0.0,0.0,15.0,1557.0,153.0,717.0,6.0,134.0,51.0,63.0,157.0,132.0,36.0,0.0,7.0,149.0,56.0,107.0,1300.0,7.0,137.0,35.0,1687.0,98.0,61.0,104.0,397.0,1053.0,43.0,172.0,0.0,981.0,252.0,68.0,512.0,20.0,11.0,37.0,139.0,440.0,342.0,0.0,1419.0,404.0,459.0,18.0,54.0,57.0,633.0,126.0,11.0,0.0,30.0,57.0,194.0,146.0,177.0,824.0,0.0,0.0,122.0,686.0,0.0,2167.0,3886.0,5069.0,328.0,378.0,110.0,0.0,0.0,176.0,124.0,1175.0,1229.0,30.0,71.0,0.0,75.0,42.0,263.0,1440.0,24.0,26.0,420.0,211.0,3897.0,1.0,0.0,35.0,67.0,0.0,17.0,18.0,8.0,0.0,759.0,36.0,84.0,137.0,15.0,19.0,770.0,44.0,0.0,0.0,170.0,284.0,1104.0,10.0,58.0,276.0,0.0,0.0,1094.0,3823.0,275.0,124.0,46.0,34.0,1180.0,148.0,0.0,107.0,1.0,214.0,677.0,82.0,132.0,2.0,8.0,1715.0,373.0,220.0,0.0,2421.0,0.0,0.0,0.0,0.0,2970.0,1341.0,1167.0,1281.0,0.0,0.0,457.0,19.0,231.0,148.0,49.0,216.0,1071.0,0.0,30.0,0.0,0.0,119.0,85.0,439.0,775.0,50.0,47.0,242.0,321.0,135.0,1042.0,16.0,22.0,416.0,370.0,6.0,291.0,0.0,72.0,0.0,0.0,580.0,1777.0,61.0,189.0,33.0,0.0,41.0,137.0,270.0,3839116.0,109.0,121.0,141.0,28.0,13.0,1716.0,304.0,0.0,0.0,982.0,54.0,0.0,12.0,105.0,246.0,419.0,294.0,89.0,161.0,124.0,1043.0,1067.0,672.0,188.0,1600.0,566.0,271.0,1419.0,1807.0,41.0,134.0,255.0,55.0,313.0,0.0,117.0,77.0,511.0,359.0,0.0,761.0,5.0,0.0,7.0,0.0,963.0,19.0,575.0,975.0,0.0,111.0,108.0,15.0,25.0,0.0,28.0,412.0,152.0,0.0,79.0,0.0,119.0,37.0,41.0,83.0,17.0,111.0,81.0,0.0,0.0,50.0,21.0,0.0,68.0,130.0,126.0,0.0,2568.0,41.0,0.0,1308.0,1505.0,44.0,0.0,89.0,4.0,529.0,7.0,15.0,0.0,0.0,0.0,4.0,282.0,0.0,0.0,24.0,2316.0,32.0,377.0,0.0,149.0,70.0,483.0,85.0,33.0,152.0,6.0,0.0,40.0,19.0,44.0,1153.0,1089.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.0,567.0,0.0,63.0,100.0,306.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.0,3371.0,2751.0,0.0,0.0,0.0,26.0,717.0,69.0,8435.0,0.0,0.0,0.0,0.0,1.0,244.0,60.0,29.0,17.0,0.0,1942.0,225.0,222.0,0.0,0.0,2012-11-04,,2012-44,0.5077832472933181,1.252, +133,133,0.69,180.0,0.0,127.0,0.0,526.0,0.0,87.0,148.0,0.0,459.0,0.0,42.0,69.0,0.0,1703.0,81.0,111.0,60.0,1.0,0.0,0.0,0.0,116.0,13.0,1356.0,0.0,1090.0,0.0,293.0,0.0,0.0,14.0,1789.0,227.0,825.0,4.0,175.0,62.0,74.0,230.0,123.0,38.0,0.0,11.0,201.0,72.0,128.0,1278.0,16.0,125.0,38.0,1864.0,92.0,58.0,80.0,459.0,1195.0,40.0,145.0,0.0,957.0,235.0,52.0,577.0,22.0,7.0,35.0,198.0,516.0,430.0,0.0,1718.0,470.0,539.0,32.0,42.0,73.0,644.0,124.0,10.0,0.0,24.0,89.0,173.0,144.0,191.0,854.0,0.0,0.0,100.0,797.0,0.0,2529.0,4490.0,5874.0,369.0,465.0,136.0,0.0,0.0,98.0,121.0,1345.0,1405.0,37.0,84.0,0.0,58.0,68.0,267.0,1544.0,26.0,39.0,515.0,213.0,3969.0,0.0,0.0,20.0,88.0,0.0,23.0,25.0,21.0,0.0,882.0,45.0,108.0,142.0,15.0,19.0,781.0,58.0,0.0,0.0,172.0,241.0,1348.0,17.0,59.0,321.0,0.0,0.0,1274.0,4614.0,258.0,134.0,75.0,34.0,1500.0,181.0,0.0,90.0,0.0,225.0,802.0,141.0,148.0,1.0,11.0,1383.0,444.0,275.0,0.0,3021.0,0.0,0.0,0.0,0.0,3239.0,1519.0,1226.0,1653.0,0.0,1.0,535.0,37.0,260.0,186.0,26.0,186.0,2001.0,0.0,27.0,0.0,2.0,143.0,103.0,509.0,794.0,32.0,57.0,291.0,412.0,170.0,934.0,21.0,21.0,305.0,481.0,4.0,334.0,0.0,92.0,0.0,0.0,558.0,2093.0,83.0,247.0,43.0,0.0,76.0,180.0,337.0,3961804.0,80.0,119.0,149.0,26.0,17.0,2404.0,269.0,0.0,0.0,1407.0,52.0,0.0,12.0,135.0,267.0,374.0,381.0,75.0,129.0,134.0,1126.0,1185.0,744.0,247.0,1711.0,660.0,296.0,554.0,2286.0,34.0,126.0,270.0,56.0,314.0,0.0,134.0,63.0,483.0,415.0,0.0,856.0,3.0,0.0,8.0,0.0,1161.0,21.0,655.0,1027.0,0.0,114.0,147.0,20.0,39.0,0.0,49.0,454.0,173.0,0.0,102.0,0.0,142.0,42.0,42.0,113.0,20.0,137.0,105.0,0.0,0.0,63.0,33.0,0.0,58.0,183.0,215.0,0.0,3001.0,69.0,0.0,1596.0,2049.0,39.0,0.0,115.0,16.0,582.0,8.0,24.0,0.0,0.0,1.0,11.0,334.0,0.0,174.0,22.0,2467.0,31.0,408.0,3.0,127.0,99.0,462.0,150.0,31.0,174.0,6.0,0.0,93.0,13.0,32.0,1371.0,1217.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.0,852.0,0.0,67.0,118.0,421.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.0,3349.0,3418.0,0.0,0.0,0.0,26.0,766.0,89.0,10085.0,0.0,0.0,0.0,0.0,0.0,308.0,79.0,35.0,33.0,0.0,2099.0,297.0,291.0,0.0,0.0,2012-11-11,,2012-45,0.7042507224222447,0.69, +134,134,0.77,179.0,0.0,169.0,0.0,491.0,0.0,123.0,174.0,0.0,473.0,0.0,63.0,83.0,0.0,1758.0,79.0,107.0,78.0,0.0,0.0,0.0,0.0,124.0,11.0,1172.0,0.0,1075.0,0.0,329.0,0.0,0.0,14.0,1801.0,158.0,789.0,2.0,196.0,69.0,67.0,246.0,142.0,45.0,0.0,8.0,228.0,53.0,126.0,1319.0,9.0,108.0,42.0,1999.0,75.0,54.0,85.0,435.0,1141.0,41.0,215.0,0.0,914.0,232.0,69.0,592.0,26.0,6.0,35.0,164.0,517.0,366.0,0.0,1639.0,478.0,673.0,31.0,38.0,62.0,780.0,135.0,12.0,0.0,41.0,83.0,200.0,132.0,213.0,854.0,0.0,0.0,104.0,752.0,0.0,2505.0,5016.0,6408.0,483.0,481.0,132.0,0.0,0.0,77.0,109.0,1351.0,1395.0,29.0,84.0,0.0,80.0,93.0,265.0,1818.0,15.0,34.0,504.0,218.0,4058.0,0.0,0.0,18.0,52.0,0.0,27.0,26.0,10.0,0.0,939.0,39.0,119.0,149.0,25.0,40.0,933.0,64.0,0.0,0.0,198.0,389.0,1345.0,14.0,53.0,323.0,0.0,0.0,1265.0,4730.0,332.0,115.0,62.0,28.0,1299.0,204.0,0.0,120.0,0.0,262.0,721.0,137.0,168.0,1.0,6.0,1394.0,554.0,344.0,0.0,2880.0,0.0,0.0,0.0,0.0,3766.0,1569.0,1236.0,1575.0,0.0,0.0,616.0,15.0,269.0,218.0,28.0,237.0,1284.0,0.0,31.0,0.0,0.0,157.0,102.0,548.0,748.0,32.0,57.0,269.0,353.0,173.0,1073.0,24.0,24.0,438.0,455.0,3.0,326.0,0.0,107.0,0.0,0.0,559.0,2314.0,85.0,262.0,41.0,0.0,54.0,131.0,282.0,3974272.0,94.0,98.0,120.0,31.0,18.0,2472.0,273.0,0.0,0.0,1351.0,50.0,0.0,15.0,112.0,272.0,338.0,311.0,84.0,139.0,135.0,1142.0,1311.0,778.0,242.0,1946.0,750.0,340.0,518.0,2386.0,32.0,142.0,316.0,60.0,404.0,0.0,172.0,67.0,574.0,413.0,0.0,925.0,3.0,0.0,4.0,0.0,1058.0,17.0,617.0,1153.0,0.0,225.0,131.0,18.0,20.0,64.0,51.0,448.0,225.0,0.0,188.0,0.0,134.0,46.0,45.0,134.0,20.0,145.0,92.0,0.0,0.0,80.0,31.0,0.0,50.0,166.0,226.0,0.0,2999.0,65.0,0.0,1433.0,1900.0,57.0,0.0,131.0,5.0,662.0,8.0,16.0,0.0,0.0,1.0,11.0,372.0,0.0,250.0,32.0,2577.0,46.0,415.0,3.0,130.0,81.0,365.0,163.0,37.0,183.0,6.0,0.0,36.0,22.0,45.0,1597.0,1341.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,1195.0,0.0,86.0,102.0,435.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.0,3665.0,3349.0,0.0,0.0,0.0,27.0,844.0,89.0,9740.0,0.0,0.0,0.0,0.0,6.0,279.0,50.0,46.0,32.0,0.0,2147.0,345.0,221.0,0.0,0.0,2012-11-18,,2012-46,0.7437231135645419,0.8780000000000001, +135,135,0.89,206.0,0.0,237.0,0.0,516.0,0.0,135.0,163.0,0.0,428.0,0.0,66.0,103.0,0.0,1830.0,63.0,118.0,66.0,0.0,0.0,0.0,0.0,131.0,17.0,1763.0,0.0,1118.0,0.0,373.0,0.0,0.0,12.0,1921.0,180.0,808.0,2.0,171.0,94.0,78.0,202.0,118.0,41.0,0.0,5.0,195.0,78.0,128.0,1337.0,9.0,90.0,44.0,2192.0,118.0,75.0,92.0,554.0,1132.0,39.0,179.0,0.0,966.0,286.0,94.0,641.0,27.0,4.0,36.0,198.0,513.0,393.0,0.0,1654.0,447.0,627.0,24.0,30.0,91.0,704.0,119.0,12.0,0.0,18.0,57.0,180.0,125.0,247.0,899.0,0.0,0.0,102.0,1203.0,0.0,2737.0,5114.0,6145.0,416.0,497.0,140.0,0.0,0.0,622.0,116.0,1333.0,1437.0,24.0,87.0,0.0,74.0,53.0,231.0,1803.0,13.0,51.0,596.0,201.0,4198.0,0.0,0.0,31.0,50.0,0.0,20.0,14.0,18.0,0.0,922.0,56.0,111.0,84.0,30.0,37.0,1104.0,38.0,0.0,0.0,182.0,236.0,1247.0,13.0,66.0,368.0,0.0,0.0,1093.0,4849.0,343.0,108.0,47.0,26.0,1303.0,176.0,0.0,140.0,0.0,268.0,748.0,122.0,172.0,3.0,9.0,1383.0,533.0,297.0,0.0,2738.0,0.0,0.0,0.0,0.0,4021.0,1598.0,1208.0,1247.0,0.0,0.0,519.0,35.0,282.0,213.0,24.0,165.0,1282.0,0.0,39.0,0.0,0.0,145.0,98.0,530.0,919.0,34.0,61.0,283.0,398.0,135.0,1041.0,27.0,64.0,524.0,425.0,3.0,322.0,0.0,72.0,0.0,0.0,509.0,2204.0,97.0,254.0,37.0,0.0,47.0,111.0,290.0,3942575.0,122.0,95.0,141.0,41.0,10.0,2045.0,285.0,0.0,0.0,1393.0,48.0,0.0,13.0,107.0,326.0,369.0,304.0,113.0,145.0,142.0,1235.0,1201.0,764.0,214.0,1887.0,663.0,332.0,465.0,2294.0,35.0,149.0,300.0,59.0,371.0,0.0,187.0,69.0,631.0,376.0,0.0,904.0,5.0,0.0,4.0,0.0,1159.0,17.0,659.0,1107.0,0.0,198.0,121.0,13.0,18.0,23.0,28.0,419.0,156.0,0.0,96.0,0.0,162.0,36.0,53.0,106.0,20.0,93.0,43.0,0.0,0.0,57.0,23.0,0.0,85.0,143.0,178.0,0.0,3016.0,59.0,0.0,1608.0,1986.0,54.0,0.0,97.0,12.0,631.0,14.0,22.0,0.0,0.0,0.0,7.0,369.0,0.0,100.0,29.0,2784.0,37.0,356.0,1.0,99.0,80.0,478.0,147.0,42.0,199.0,6.0,0.0,35.0,11.0,56.0,1727.0,1272.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.0,1428.0,0.0,123.0,212.0,407.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.0,3696.0,3352.0,0.0,0.0,0.0,29.0,640.0,95.0,10289.0,0.0,1.0,0.0,0.0,1.0,369.0,96.0,38.0,21.0,0.0,2286.0,271.0,200.0,0.0,0.0,2012-11-25,,2012-47,0.8853974619976768,0.9740000000000001, +136,136,1.07,208.0,0.0,208.0,0.0,420.0,0.0,96.0,142.0,0.0,522.0,0.0,48.0,81.0,0.0,1780.0,56.0,123.0,50.0,0.0,0.0,0.0,0.0,113.0,17.0,2329.0,0.0,1083.0,0.0,517.0,0.0,0.0,30.0,1698.0,170.0,786.0,3.0,205.0,96.0,95.0,220.0,88.0,48.0,0.0,8.0,203.0,60.0,119.0,1351.0,14.0,117.0,56.0,1996.0,76.0,98.0,88.0,488.0,1207.0,43.0,185.0,0.0,1152.0,263.0,65.0,637.0,19.0,7.0,28.0,159.0,541.0,446.0,0.0,1769.0,437.0,596.0,25.0,35.0,65.0,653.0,137.0,16.0,0.0,26.0,108.0,210.0,123.0,248.0,1047.0,0.0,0.0,144.0,758.0,0.0,2678.0,5325.0,6391.0,442.0,647.0,148.0,0.0,0.0,101.0,139.0,1307.0,1516.0,40.0,88.0,0.0,107.0,93.0,301.0,1796.0,19.0,38.0,606.0,173.0,4180.0,0.0,0.0,22.0,55.0,0.0,24.0,27.0,20.0,0.0,877.0,45.0,126.0,127.0,25.0,30.0,760.0,48.0,0.0,0.0,180.0,210.0,1766.0,14.0,50.0,303.0,0.0,0.0,1065.0,4625.0,254.0,110.0,52.0,27.0,1538.0,192.0,0.0,127.0,0.0,296.0,746.0,153.0,202.0,0.0,10.0,1517.0,533.0,251.0,0.0,2776.0,0.0,0.0,0.0,0.0,3836.0,1760.0,1213.0,1144.0,0.0,1.0,481.0,23.0,233.0,174.0,29.0,455.0,1454.0,0.0,35.0,0.0,0.0,177.0,94.0,465.0,922.0,35.0,55.0,316.0,352.0,162.0,1021.0,14.0,30.0,420.0,440.0,3.0,338.0,0.0,71.0,0.0,0.0,502.0,1962.0,78.0,226.0,52.0,0.0,50.0,123.0,292.0,3957990.0,97.0,111.0,126.0,30.0,19.0,1968.0,224.0,0.0,0.0,1486.0,65.0,0.0,12.0,92.0,408.0,380.0,342.0,94.0,152.0,148.0,1126.0,1260.0,805.0,257.0,1761.0,683.0,386.0,412.0,2133.0,50.0,162.0,337.0,56.0,420.0,0.0,171.0,91.0,532.0,466.0,0.0,817.0,2.0,0.0,6.0,0.0,1015.0,20.0,710.0,1096.0,0.0,199.0,92.0,18.0,23.0,21.0,28.0,456.0,197.0,0.0,142.0,0.0,161.0,32.0,50.0,109.0,24.0,145.0,68.0,0.0,0.0,72.0,35.0,0.0,75.0,143.0,192.0,0.0,2975.0,73.0,0.0,1624.0,1739.0,70.0,0.0,112.0,12.0,656.0,17.0,19.0,0.0,0.0,0.0,12.0,351.0,0.0,94.0,22.0,2620.0,33.0,417.0,3.0,95.0,106.0,450.0,114.0,38.0,172.0,3.0,0.0,52.0,18.0,50.0,1641.0,1163.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.0,1328.0,0.0,96.0,336.0,353.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0,3344.0,3345.0,0.0,0.0,0.0,33.0,828.0,91.0,9825.0,0.0,0.0,0.0,0.0,3.0,394.0,271.0,45.0,38.0,0.0,2381.0,343.0,195.0,0.0,0.0,2012-12-02,,2012-48,1.0891500008017267,1.1900000000000002, +137,137,1.31,212.0,0.0,196.0,0.0,528.0,0.0,125.0,148.0,0.0,440.0,0.0,52.0,103.0,0.0,1621.0,68.0,112.0,66.0,0.0,0.0,0.0,0.0,110.0,17.0,2181.0,89.0,1117.0,0.0,381.0,0.0,0.0,36.0,1725.0,351.0,893.0,3.0,186.0,108.0,73.0,192.0,99.0,56.0,0.0,11.0,180.0,47.0,113.0,2841.0,4.0,107.0,34.0,1802.0,72.0,86.0,98.0,421.0,1022.0,41.0,182.0,0.0,1161.0,231.0,60.0,605.0,29.0,5.0,31.0,176.0,542.0,400.0,0.0,1530.0,441.0,599.0,31.0,38.0,78.0,738.0,139.0,16.0,0.0,23.0,77.0,321.0,89.0,248.0,926.0,0.0,0.0,137.0,772.0,1.0,2538.0,4649.0,5319.0,359.0,503.0,143.0,0.0,0.0,108.0,127.0,1599.0,1321.0,31.0,93.0,0.0,70.0,63.0,257.0,1567.0,17.0,26.0,428.0,190.0,4152.0,0.0,0.0,27.0,60.0,0.0,18.0,29.0,11.0,0.0,909.0,51.0,106.0,113.0,22.0,25.0,697.0,61.0,0.0,0.0,168.0,209.0,1264.0,13.0,72.0,316.0,0.0,0.0,917.0,4336.0,280.0,104.0,67.0,37.0,1465.0,155.0,0.0,133.0,0.0,284.0,734.0,128.0,167.0,2.0,12.0,2471.0,482.0,234.0,0.0,2793.0,0.0,0.0,0.0,0.0,3211.0,1504.0,1124.0,1284.0,0.0,4.0,460.0,21.0,186.0,200.0,38.0,248.0,1101.0,0.0,42.0,0.0,0.0,136.0,84.0,449.0,779.0,35.0,63.0,292.0,496.0,192.0,873.0,12.0,28.0,279.0,407.0,7.0,252.0,0.0,61.0,0.0,0.0,434.0,1934.0,79.0,217.0,105.0,0.0,71.0,133.0,300.0,3829856.0,93.0,115.0,124.0,36.0,18.0,1839.0,283.0,0.0,0.0,1308.0,65.0,0.0,12.0,77.0,305.0,333.0,263.0,84.0,149.0,119.0,1145.0,1081.0,632.0,226.0,2131.0,630.0,327.0,456.0,2370.0,54.0,161.0,340.0,60.0,379.0,0.0,194.0,92.0,490.0,462.0,0.0,785.0,8.0,0.0,5.0,0.0,914.0,10.0,712.0,992.0,0.0,209.0,96.0,29.0,15.0,21.0,42.0,484.0,189.0,0.0,134.0,0.0,178.0,46.0,48.0,102.0,27.0,121.0,52.0,0.0,0.0,62.0,40.0,0.0,76.0,142.0,221.0,0.0,2610.0,70.0,0.0,1481.0,1654.0,64.0,0.0,105.0,11.0,549.0,12.0,18.0,0.0,0.0,0.0,6.0,340.0,0.0,92.0,23.0,2131.0,37.0,492.0,1.0,68.0,73.0,391.0,125.0,39.0,170.0,10.0,0.0,60.0,17.0,46.0,1450.0,1124.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.0,1050.0,0.0,91.0,121.0,313.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,2933.0,3376.0,0.0,0.0,0.0,42.0,851.0,91.0,8889.0,0.0,0.0,0.0,0.0,0.0,346.0,190.0,41.0,33.0,0.0,2501.0,274.0,225.0,0.0,0.0,2012-12-09,,2012-49,1.2868135474684532,1.2620000000000002, +138,138,1.67,286.0,0.0,184.0,0.0,528.0,0.0,125.0,126.0,0.0,514.0,0.0,53.0,94.0,0.0,1745.0,61.0,127.0,65.0,0.0,0.0,0.0,0.0,116.0,19.0,2151.0,19.0,1203.0,0.0,333.0,0.0,0.0,18.0,1715.0,202.0,804.0,5.0,166.0,133.0,77.0,195.0,114.0,58.0,0.0,7.0,201.0,53.0,86.0,1542.0,13.0,122.0,30.0,1805.0,79.0,75.0,106.0,432.0,1104.0,45.0,154.0,0.0,1178.0,264.0,55.0,574.0,24.0,8.0,34.0,189.0,553.0,408.0,0.0,1534.0,484.0,643.0,31.0,50.0,88.0,841.0,139.0,17.0,0.0,34.0,67.0,183.0,129.0,228.0,935.0,0.0,0.0,154.0,734.0,0.0,2376.0,4646.0,5209.0,404.0,514.0,149.0,0.0,0.0,55.0,114.0,1582.0,1421.0,29.0,86.0,0.0,74.0,91.0,291.0,1756.0,20.0,31.0,396.0,243.0,4533.0,1.0,0.0,22.0,59.0,0.0,34.0,21.0,21.0,0.0,880.0,36.0,119.0,143.0,33.0,35.0,759.0,88.0,0.0,0.0,182.0,235.0,1168.0,17.0,73.0,388.0,0.0,0.0,983.0,4516.0,346.0,115.0,46.0,35.0,1377.0,232.0,0.0,119.0,0.0,355.0,820.0,142.0,211.0,0.0,6.0,2170.0,432.0,182.0,0.0,2741.0,0.0,0.0,0.0,0.0,3250.0,2361.0,1534.0,1069.0,0.0,1.0,409.0,36.0,213.0,157.0,44.0,270.0,1152.0,0.0,38.0,37.0,0.0,195.0,112.0,458.0,845.0,30.0,57.0,286.0,360.0,172.0,910.0,20.0,39.0,386.0,378.0,5.0,239.0,0.0,62.0,0.0,0.0,490.0,1929.0,97.0,221.0,40.0,0.0,68.0,127.0,271.0,3793905.0,87.0,121.0,133.0,29.0,21.0,1574.0,244.0,0.0,0.0,1245.0,66.0,0.0,15.0,106.0,310.0,348.0,297.0,99.0,172.0,149.0,1181.0,1047.0,750.0,223.0,1787.0,721.0,461.0,486.0,2401.0,51.0,153.0,317.0,54.0,422.0,0.0,144.0,92.0,528.0,429.0,0.0,764.0,8.0,0.0,5.0,0.0,1011.0,16.0,635.0,1045.0,0.0,215.0,95.0,19.0,21.0,24.0,41.0,450.0,238.0,0.0,177.0,0.0,210.0,45.0,56.0,88.0,23.0,236.0,87.0,0.0,0.0,97.0,45.0,0.0,86.0,163.0,275.0,0.0,2793.0,72.0,0.0,1463.0,1450.0,66.0,0.0,79.0,13.0,656.0,6.0,16.0,0.0,0.0,0.0,7.0,379.0,0.0,147.0,31.0,2366.0,41.0,382.0,1.0,65.0,87.0,422.0,134.0,44.0,159.0,4.0,0.0,84.0,13.0,60.0,1577.0,1026.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,755.0,0.0,125.0,154.0,333.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.0,2874.0,3557.0,0.0,0.0,0.0,38.0,504.0,88.0,8826.0,0.0,0.0,0.0,0.0,1.0,334.0,175.0,20.0,39.0,0.0,2494.0,269.0,268.0,0.0,0.0,2012-12-16,,2012-50,1.6624504301235454,1.5760000000000003, +139,139,2.24,233.0,0.0,137.0,0.0,503.0,0.0,110.0,103.0,0.0,397.0,0.0,57.0,62.0,0.0,1541.0,69.0,110.0,72.0,0.0,0.0,0.0,0.0,91.0,16.0,2639.0,14.0,1205.0,0.0,289.0,0.0,0.0,25.0,1578.0,128.0,665.0,4.0,156.0,78.0,50.0,133.0,135.0,57.0,0.0,3.0,132.0,54.0,103.0,1158.0,12.0,123.0,25.0,1520.0,70.0,53.0,65.0,333.0,1128.0,37.0,131.0,0.0,900.0,213.0,130.0,489.0,14.0,8.0,29.0,129.0,428.0,307.0,0.0,1411.0,368.0,619.0,30.0,35.0,89.0,688.0,104.0,14.0,0.0,26.0,54.0,150.0,83.0,191.0,790.0,0.0,0.0,74.0,486.0,2.0,1931.0,4341.0,4618.0,304.0,397.0,118.0,0.0,0.0,54.0,100.0,1297.0,1338.0,40.0,78.0,0.0,62.0,61.0,213.0,1728.0,21.0,32.0,351.0,189.0,4747.0,0.0,0.0,35.0,44.0,0.0,27.0,23.0,17.0,0.0,731.0,47.0,131.0,105.0,15.0,22.0,739.0,62.0,0.0,0.0,156.0,172.0,1095.0,18.0,75.0,287.0,0.0,0.0,818.0,4088.0,288.0,128.0,64.0,29.0,2354.0,142.0,0.0,74.0,0.0,201.0,583.0,88.0,116.0,2.0,13.0,1653.0,322.0,209.0,0.0,2462.0,0.0,0.0,0.0,0.0,3103.0,1483.0,1547.0,858.0,0.0,0.0,472.0,33.0,203.0,198.0,24.0,263.0,919.0,0.0,39.0,61.0,0.0,123.0,82.0,418.0,750.0,22.0,46.0,210.0,303.0,132.0,923.0,16.0,36.0,295.0,312.0,6.0,235.0,0.0,58.0,0.0,0.0,362.0,1550.0,82.0,206.0,34.0,0.0,55.0,80.0,244.0,3576627.0,83.0,123.0,113.0,28.0,15.0,1569.0,269.0,0.0,0.0,1226.0,55.0,0.0,14.0,71.0,261.0,281.0,232.0,93.0,165.0,148.0,878.0,890.0,587.0,221.0,1620.0,592.0,387.0,434.0,2232.0,48.0,103.0,252.0,42.0,305.0,80.0,107.0,64.0,411.0,352.0,0.0,724.0,4.0,0.0,5.0,0.0,886.0,14.0,532.0,947.0,0.0,165.0,60.0,17.0,9.0,26.0,47.0,350.0,174.0,0.0,122.0,0.0,162.0,34.0,44.0,88.0,20.0,165.0,60.0,0.0,0.0,64.0,40.0,0.0,52.0,125.0,179.0,0.0,2438.0,69.0,0.0,1445.0,1308.0,52.0,0.0,80.0,14.0,539.0,10.0,18.0,0.0,0.0,0.0,8.0,264.0,0.0,139.0,27.0,2024.0,26.0,335.0,5.0,77.0,52.0,395.0,107.0,37.0,172.0,6.0,0.0,56.0,17.0,46.0,1799.0,744.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.0,411.0,0.0,129.0,113.0,315.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.0,2635.0,2733.0,0.0,0.0,0.0,21.0,327.0,81.0,7905.0,0.0,0.0,0.0,0.0,2.0,337.0,183.0,34.0,33.0,0.0,2338.0,200.0,188.0,0.0,0.0,2012-12-23,,2012-51,2.2753562379096195,2.24, +140,140,2.56,162.0,0.0,106.0,0.0,463.0,0.0,72.0,74.0,0.0,368.0,0.0,48.0,80.0,0.0,1397.0,69.0,80.0,45.0,0.0,0.0,0.0,0.0,139.0,15.0,3039.0,12.0,1299.0,0.0,284.0,0.0,0.0,16.0,1456.0,203.0,627.0,5.0,151.0,97.0,51.0,141.0,90.0,48.0,0.0,6.0,97.0,53.0,128.0,1175.0,9.0,149.0,35.0,1448.0,95.0,50.0,103.0,349.0,1290.0,40.0,168.0,0.0,867.0,172.0,76.0,463.0,35.0,7.0,24.0,122.0,444.0,231.0,0.0,1190.0,306.0,449.0,38.0,65.0,62.0,628.0,75.0,13.0,0.0,33.0,71.0,252.0,83.0,161.0,666.0,0.0,0.0,74.0,526.0,0.0,1640.0,3024.0,4147.0,259.0,372.0,111.0,0.0,0.0,40.0,101.0,1352.0,1379.0,33.0,62.0,0.0,60.0,46.0,139.0,1981.0,20.0,36.0,451.0,172.0,6247.0,0.0,0.0,46.0,43.0,0.0,28.0,37.0,20.0,0.0,664.0,47.0,135.0,74.0,19.0,39.0,791.0,56.0,0.0,0.0,122.0,145.0,1322.0,13.0,34.0,259.0,0.0,0.0,755.0,2872.0,184.0,67.0,78.0,40.0,1905.0,214.0,0.0,74.0,1.0,162.0,677.0,85.0,103.0,2.0,8.0,1815.0,314.0,171.0,0.0,2222.0,0.0,0.0,0.0,0.0,3079.0,4721.0,1218.0,885.0,0.0,1.0,321.0,36.0,181.0,175.0,24.0,162.0,862.0,0.0,28.0,80.0,0.0,150.0,114.0,336.0,655.0,26.0,44.0,207.0,276.0,118.0,822.0,18.0,44.0,237.0,320.0,2.0,264.0,0.0,59.0,0.0,0.0,400.0,1461.0,68.0,230.0,49.0,0.0,51.0,106.0,204.0,4124293.0,109.0,120.0,150.0,19.0,8.0,1113.0,324.0,0.0,0.0,1334.0,44.0,0.0,14.0,105.0,259.0,296.0,200.0,62.0,109.0,102.0,834.0,868.0,399.0,161.0,1623.0,528.0,431.0,615.0,3226.0,47.0,136.0,255.0,45.0,280.0,66.0,132.0,72.0,424.0,392.0,0.0,743.0,2.0,0.0,9.0,0.0,1026.0,14.0,508.0,882.0,0.0,138.0,56.0,19.0,25.0,19.0,25.0,345.0,144.0,0.0,110.0,0.0,102.0,39.0,54.0,80.0,24.0,138.0,68.0,0.0,0.0,54.0,26.0,0.0,46.0,154.0,138.0,0.0,2821.0,71.0,0.0,1805.0,908.0,74.0,0.0,64.0,10.0,452.0,6.0,20.0,0.0,0.0,0.0,12.0,290.0,0.0,128.0,21.0,1890.0,41.0,584.0,1.0,97.0,58.0,333.0,65.0,31.0,127.0,2.0,0.0,48.0,26.0,30.0,1001.0,660.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.0,314.0,0.0,91.0,114.0,186.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.0,2883.0,2565.0,0.0,0.0,0.0,20.0,222.0,57.0,5752.0,0.0,0.0,0.0,0.0,0.0,319.0,158.0,36.0,31.0,0.0,3420.0,209.0,178.0,0.0,0.0,2012-12-30,,2012-52,2.5845338040317634,2.9960000000000004, +141,141,3.52,199.0,0.0,120.0,0.0,958.0,0.0,88.0,163.0,0.0,415.0,0.0,52.0,82.0,0.0,1806.0,71.0,124.0,60.0,0.0,0.0,0.0,0.0,94.0,23.0,4001.0,19.0,1406.0,8.0,306.0,0.0,0.0,20.0,1680.0,608.0,765.0,22.0,161.0,123.0,78.0,162.0,129.0,52.0,0.0,4.0,148.0,72.0,136.0,1595.0,22.0,136.0,32.0,1761.0,102.0,95.0,109.0,382.0,1628.0,59.0,153.0,0.0,870.0,225.0,52.0,573.0,22.0,8.0,31.0,151.0,526.0,344.0,0.0,1440.0,389.0,588.0,30.0,61.0,61.0,749.0,78.0,15.0,0.0,36.0,74.0,175.0,142.0,211.0,888.0,0.0,0.0,117.0,596.0,0.0,2185.0,3973.0,4869.0,350.0,484.0,125.0,0.0,0.0,122.0,140.0,1420.0,1550.0,26.0,71.0,0.0,53.0,66.0,190.0,2275.0,20.0,32.0,542.0,226.0,6324.0,0.0,0.0,34.0,46.0,0.0,19.0,30.0,24.0,4.0,1056.0,46.0,111.0,108.0,19.0,36.0,924.0,59.2,0.0,0.0,157.0,199.0,1371.0,9.0,45.6,351.0,0.0,0.0,996.0,3642.0,291.0,105.0,81.0,36.0,1478.0,1044.0,58.0,96.0,0.0,261.0,743.0,98.0,129.0,0.0,15.0,2536.0,389.0,207.0,0.0,2576.0,0.0,0.0,0.0,0.0,3551.0,2592.0,1942.0,1088.0,51.0,0.0,407.0,26.0,228.0,193.0,22.0,185.0,1056.0,0.0,56.0,73.0,0.0,171.0,106.0,563.0,772.0,39.0,73.0,282.0,367.0,142.0,838.0,16.0,48.0,407.0,420.0,55.0,223.0,0.0,79.0,0.0,0.0,504.0,1789.0,118.0,321.0,74.0,0.0,53.0,121.0,313.0,3813988.0,113.0,141.0,308.0,42.0,15.0,1304.0,262.0,17.0,0.0,1281.0,69.0,0.0,13.0,202.0,363.0,280.0,300.0,99.0,125.0,138.0,1021.0,1016.0,578.0,205.0,1771.0,714.0,346.0,521.0,3412.0,49.66666666666666,165.0,318.0,61.0,398.0,113.0,173.0,84.0,463.0,502.0,0.0,860.0,3.0,0.0,4.0,0.0,1124.0,18.0,576.0,1038.0,0.0,202.0,111.0,23.0,32.0,30.0,45.0,479.0,161.0,0.0,162.0,0.0,156.0,42.0,50.0,140.0,21.0,208.0,70.0,0.0,0.0,83.0,28.0,0.0,51.0,167.0,181.0,0.0,2861.0,68.0,38.0,1776.0,1151.0,110.0,0.0,69.0,7.0,590.0,9.0,25.0,0.0,0.0,0.0,9.0,349.0,0.0,164.0,29.0,2286.0,38.0,510.0,6.0,150.0,75.0,398.0,105.0,48.0,170.0,40.0,0.0,62.0,19.0,46.0,1587.0,1028.0,0.0,51.0,0.0,3.0,5.0,8.0,0.0,68.0,333.0,3.0,186.0,202.0,374.0,34.0,0.0,4.0,4.0,0.0,0.0,7.0,0.0,0.0,0.0,6.0,11.0,3209.25,3215.0,0.0,0.0,0.0,31.0,314.0,72.0,6784.0,0.0,0.0,0.0,0.0,19.0,384.0,154.0,42.0,31.0,0.0,3283.0,301.0,191.0,0.0,0.0,2013-01-13,,2013-2,3.5460434828094396,3.7740000000000005, +142,142,5.18,321.0,0.0,216.0,0.0,737.0,0.0,135.0,143.0,0.0,566.0,0.0,57.0,100.0,0.0,2243.0,92.0,157.0,84.0,0.0,0.0,0.0,0.0,101.0,20.0,3426.0,26.0,1401.0,0.0,376.0,0.0,0.0,22.0,2233.0,171.0,959.0,1.0,246.0,90.0,106.0,187.0,131.0,62.0,0.0,3.0,262.0,71.0,125.0,2117.0,18.0,113.0,48.0,2283.0,75.0,90.0,88.0,538.0,1573.0,67.0,233.0,0.0,1032.0,256.0,99.0,742.0,33.0,9.0,27.0,193.0,734.0,449.0,0.0,1757.0,495.0,782.0,32.0,69.0,94.0,1020.0,118.0,17.0,0.0,29.0,79.0,210.0,131.0,305.0,1095.0,0.0,0.0,134.0,766.0,0.0,2562.0,5352.0,6139.0,413.0,594.0,176.0,0.0,0.0,71.0,156.0,1690.0,1479.0,33.0,69.0,0.0,84.0,74.0,308.0,2456.0,9.0,27.0,578.0,221.0,6979.0,1.0,0.0,29.0,53.0,0.0,25.0,29.0,16.0,0.0,1167.0,50.0,130.0,134.0,20.0,57.0,905.0,62.4,0.0,0.0,246.0,221.0,1545.0,12.0,57.2,414.0,0.0,0.0,1145.0,5199.0,374.0,122.0,148.0,138.0,1988.0,772.0,0.0,125.0,0.0,335.0,890.0,148.0,229.0,1.0,8.0,1818.0,496.0,271.0,0.0,3197.0,0.0,0.0,0.0,0.0,4135.0,2127.0,1883.0,1300.0,30.0,2.0,483.0,25.0,266.0,189.0,36.0,355.0,1430.0,0.0,70.0,87.0,0.0,156.0,98.0,558.0,1036.0,28.0,81.0,304.0,418.0,209.0,1019.0,20.0,38.0,270.0,509.0,4.0,292.0,0.0,80.0,0.0,0.0,698.0,2412.0,103.0,372.0,47.0,0.0,55.0,201.0,393.0,4061951.0,110.0,184.0,261.0,39.0,14.0,2086.0,251.0,0.0,0.0,1848.0,68.0,0.0,22.0,125.0,333.0,342.0,338.0,116.0,214.0,182.0,1282.0,1286.0,921.0,238.0,2120.0,859.0,283.0,548.0,3069.0,52.33333333333334,173.0,308.0,51.0,470.0,128.0,169.0,96.0,493.0,485.0,0.0,959.0,1.0,0.0,3.0,0.0,1284.0,24.0,733.0,1266.0,0.0,215.0,118.0,25.0,26.0,25.0,50.0,536.0,196.0,0.0,188.0,0.0,284.0,41.0,65.0,138.0,22.0,298.0,86.0,0.0,0.0,93.0,50.0,0.0,78.0,237.0,264.0,0.0,3286.0,78.0,0.0,1751.0,1799.0,126.0,0.0,106.0,15.0,706.0,14.0,16.0,0.0,0.0,1.0,13.0,404.0,0.0,254.0,41.0,2887.0,34.0,513.0,1.0,113.0,63.0,447.0,147.0,35.0,194.0,3.0,0.0,171.0,24.0,56.0,2025.0,1356.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.0,475.0,0.0,143.0,187.0,436.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0,3535.5,4530.0,0.0,0.0,0.0,28.0,384.0,125.0,10374.0,0.0,2.0,0.0,0.0,1.0,394.0,139.0,33.0,39.0,0.0,2836.0,331.0,265.0,0.0,0.0,2013-01-20,,2013-3,5.1876293053856575,5.422000000000001, +143,143,6.64,316.0,0.0,220.0,0.0,716.0,0.0,172.0,147.0,0.0,640.0,0.0,70.0,88.0,0.0,2245.0,108.0,191.0,70.0,0.0,0.0,0.0,0.0,140.0,25.0,3159.0,14.0,1652.0,0.0,351.0,0.0,0.0,27.0,2342.0,156.0,1077.0,0.0,244.0,142.0,85.0,219.0,178.0,61.0,0.0,6.0,305.0,74.0,156.0,1841.0,16.0,179.0,44.0,2377.0,83.0,156.0,102.0,541.0,1883.0,63.0,185.0,0.0,1195.0,268.0,65.0,738.0,17.0,12.0,35.0,201.0,791.0,510.0,0.0,1770.0,721.0,856.0,27.0,33.0,107.0,1007.0,137.0,11.0,0.0,28.0,76.0,741.0,134.0,355.0,1310.0,0.0,0.0,163.0,968.0,0.0,2812.0,5512.0,6312.0,498.0,622.0,150.0,0.0,0.0,72.0,185.0,1816.0,1881.0,40.0,90.0,0.0,102.0,90.0,391.0,2487.0,18.0,35.0,681.0,199.0,7441.0,0.0,0.0,37.0,61.0,0.0,25.0,22.0,20.0,0.0,1167.0,56.0,117.0,174.0,12.0,51.0,960.0,65.6,0.0,0.0,264.0,224.0,1727.0,16.0,68.8,472.0,0.0,0.0,1315.0,6069.0,466.0,120.0,106.0,82.0,2085.0,388.0,0.0,143.0,0.0,348.0,902.0,162.0,277.0,3.0,7.0,2422.0,606.0,285.0,0.0,3214.0,0.0,0.0,0.0,0.0,4118.0,2867.0,1478.0,1372.0,31.0,0.0,694.0,28.0,270.0,221.0,49.0,239.0,1541.0,0.0,61.0,94.0,0.0,165.0,136.0,621.0,1076.0,36.0,69.0,382.0,461.0,231.0,1132.0,23.0,35.0,268.0,595.0,0.0,303.0,0.0,70.0,0.0,0.0,743.0,2442.0,118.0,376.0,52.0,0.0,57.0,169.0,429.0,4004920.0,134.0,165.0,195.0,38.0,20.0,2321.0,240.0,0.0,0.0,1557.0,66.0,0.0,20.0,99.0,326.0,349.0,327.0,127.0,236.0,193.0,1421.0,1381.0,925.0,352.0,2326.0,1054.0,397.0,522.0,3069.0,55.0,176.0,415.0,76.0,523.0,134.0,194.0,108.0,603.0,561.0,0.0,1127.0,1.0,0.0,5.0,0.0,1313.0,21.0,930.0,1283.0,0.0,205.0,123.0,19.0,34.0,35.0,40.0,570.0,287.0,0.0,209.0,0.0,267.0,55.0,57.0,173.0,28.0,376.0,112.0,0.0,0.0,99.0,30.0,0.0,85.0,302.0,271.0,0.0,3398.0,94.0,0.0,1840.0,2247.0,151.0,0.0,95.0,6.0,733.0,16.0,16.0,0.0,0.0,0.0,13.0,463.0,0.0,228.0,28.0,2783.0,43.0,603.0,2.0,120.0,87.0,509.0,140.0,43.0,182.0,2.0,0.0,62.0,28.0,67.0,2120.0,1355.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,413.0,0.0,175.0,205.0,446.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.0,3861.75,4760.0,0.0,0.0,0.0,51.0,359.0,128.0,11232.0,0.0,0.0,0.0,0.0,2.0,400.0,99.0,32.0,44.0,0.0,3111.0,288.0,279.0,0.0,0.0,2013-01-27,,2013-4,6.639537904939553,5.908000000000001, +144,144,8.25,348.0,0.0,180.0,0.0,1079.0,0.0,186.0,115.0,0.0,753.0,0.0,111.0,98.0,0.0,2192.0,97.0,228.0,64.0,0.0,0.0,0.0,0.0,224.0,20.0,3976.0,21.0,1699.0,0.0,377.0,0.0,0.0,15.0,2503.0,212.0,1644.0,0.0,222.0,125.0,99.0,225.0,161.0,61.0,0.0,8.0,251.0,62.0,146.0,3458.0,16.0,111.0,52.0,2747.0,117.0,201.0,113.0,535.0,1858.0,48.0,177.0,0.0,1246.0,281.0,84.0,737.0,28.0,5.0,44.0,208.0,1105.0,506.0,0.0,2068.0,644.0,890.0,25.0,42.0,126.0,1180.0,161.0,12.0,0.0,29.0,83.0,222.0,127.0,255.0,1566.0,0.0,0.0,175.0,954.0,0.0,3253.0,6275.0,6744.0,505.0,628.0,158.0,0.0,0.0,83.0,204.0,2070.0,1788.0,38.0,112.0,0.0,78.0,78.0,359.0,2444.0,17.0,31.0,571.0,224.0,8421.0,0.0,0.0,39.0,48.0,0.0,17.0,31.0,22.0,0.0,1022.0,55.0,175.0,152.0,32.0,61.0,908.0,68.8,0.0,0.0,270.0,199.0,1652.0,21.0,80.4,451.0,0.0,0.0,1353.0,6031.0,410.0,140.0,96.0,50.0,1953.0,412.0,0.0,143.0,0.0,407.0,1196.0,187.0,222.0,1.0,10.0,2492.0,624.0,392.0,0.0,3840.0,0.0,0.0,0.0,0.0,4130.0,4129.0,1552.0,1205.0,34.0,0.0,662.0,27.0,302.0,211.0,54.0,274.0,1577.0,0.0,66.0,86.0,0.0,161.0,123.0,638.0,1100.0,34.0,83.0,418.0,560.0,223.0,3112.0,23.0,48.0,246.0,614.0,1.0,274.0,0.0,65.0,0.0,0.0,750.0,2551.0,125.0,344.0,51.0,0.0,59.0,204.0,452.0,4100507.0,137.0,161.0,178.0,38.0,25.0,2605.0,307.0,0.0,0.0,1489.0,53.0,0.0,13.0,106.0,508.0,348.0,433.0,136.0,259.0,233.0,1750.0,1717.0,1400.0,321.0,2769.0,993.0,468.0,588.0,3095.0,57.66666666666666,235.0,789.0,47.0,1247.0,148.0,233.0,120.0,705.0,527.0,0.0,1299.0,0.0,0.0,4.0,0.0,1459.0,30.0,861.0,1346.0,0.0,220.0,139.0,17.0,22.0,28.0,62.0,644.0,256.0,0.0,248.0,0.0,303.0,49.0,52.0,150.0,31.0,341.0,154.0,0.0,0.0,89.0,53.0,0.0,68.0,289.0,350.0,0.0,3687.0,107.0,0.0,1809.0,2094.0,151.0,0.0,107.0,9.0,734.0,13.0,19.0,0.0,0.0,0.0,12.0,498.0,0.0,276.0,17.0,2460.0,32.0,1392.0,2.0,105.0,93.0,517.0,202.0,47.0,229.0,0.0,0.0,60.0,23.0,74.0,2292.0,1420.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.0,305.0,0.0,180.0,231.0,474.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.0,4188.0,4419.0,0.0,0.0,0.0,46.0,365.0,123.0,11006.0,0.0,0.0,0.0,0.0,0.0,435.0,100.0,37.0,34.0,0.0,3164.0,367.0,299.0,0.0,0.0,2013-02-03,,2013-5,8.244730472822143,6.258000000000001, +145,145,9.57,304.0,0.0,248.0,0.0,942.0,0.0,179.0,145.0,0.0,727.0,0.0,86.0,85.0,0.0,1940.0,80.0,222.0,74.0,0.0,0.0,0.0,0.0,121.0,17.0,4639.0,32.0,1670.0,0.0,296.0,0.0,0.0,18.0,2390.0,200.0,1228.0,0.0,228.0,124.0,103.0,209.0,182.0,60.0,0.0,6.0,167.0,79.0,146.0,4164.0,17.0,119.0,43.0,2445.0,86.0,82.0,123.0,490.0,1716.0,62.0,189.0,0.0,1167.0,473.0,78.0,752.0,35.0,10.0,30.0,186.0,763.0,529.0,0.0,1711.0,656.0,767.0,42.0,40.0,126.0,1095.0,176.0,10.0,0.0,25.0,65.0,427.0,115.0,291.0,1174.0,0.0,0.0,209.0,986.0,0.0,3173.0,5588.0,6212.0,472.0,679.0,170.0,0.0,0.0,77.0,194.0,2050.0,1807.0,29.0,100.0,0.0,92.0,83.0,351.0,2679.0,36.0,34.0,658.0,244.0,8641.0,0.0,0.0,30.0,45.0,0.0,25.0,23.0,17.0,0.0,1031.0,67.0,161.0,145.0,31.0,42.0,991.0,72.0,0.0,0.0,292.0,209.0,1771.0,22.0,92.0,367.0,0.0,0.0,1320.0,5948.0,422.0,125.0,108.0,46.0,2166.0,345.0,0.0,164.0,0.0,353.0,908.0,185.0,262.0,3.0,10.0,1981.0,610.0,270.0,0.0,3692.0,0.0,0.0,0.0,0.0,3786.0,3002.0,1520.0,1296.0,32.0,1.0,631.0,32.0,306.0,215.0,43.0,264.0,1603.0,0.0,65.0,83.0,0.0,138.0,137.0,664.0,1077.0,27.0,105.0,351.0,597.0,244.0,1347.0,27.0,34.0,742.0,618.0,2.0,290.0,0.0,102.0,0.0,0.0,612.0,2474.0,124.0,350.0,63.0,0.0,61.0,212.0,429.0,3659611.0,114.0,166.0,167.0,35.0,14.0,2287.0,289.0,0.0,0.0,1699.0,67.0,0.0,8.0,105.0,666.0,422.0,322.0,134.0,271.0,232.0,1260.0,1262.0,863.0,304.0,3760.0,1013.0,402.0,652.0,3246.0,60.33333333333333,230.0,438.0,64.0,576.0,166.0,195.0,132.0,660.0,598.0,0.0,1074.0,0.0,0.0,8.0,0.0,1468.0,17.0,796.0,1234.0,0.0,218.0,158.0,26.0,31.0,28.0,68.0,614.0,222.0,0.0,257.0,0.0,272.0,43.0,78.0,162.0,44.0,330.0,119.0,3.0,0.0,105.0,32.0,0.0,91.0,253.0,341.0,0.0,4046.0,75.0,0.0,1829.0,2290.0,180.0,0.0,113.0,9.0,571.0,12.0,24.0,0.0,0.0,0.0,9.0,431.0,0.0,266.0,16.0,2277.0,71.0,1229.0,5.0,101.0,90.0,448.0,159.0,57.0,197.0,4.0,0.0,87.0,27.0,44.0,1965.0,1430.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31.0,286.0,0.0,230.0,230.0,528.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.0,4205.0,4035.0,0.0,0.0,0.0,54.0,404.0,122.0,11039.0,0.0,0.0,0.0,0.0,1.0,407.0,94.0,44.0,56.0,0.0,2915.0,387.0,293.0,0.0,0.0,2013-02-10,,2013-6,9.585626354621336,8.314, +146,146,9.99,278.0,0.0,242.0,0.0,1395.0,0.0,173.0,96.0,0.0,611.0,0.0,108.0,95.0,0.0,1821.0,104.0,185.0,62.0,0.0,0.0,0.0,0.0,144.0,19.0,4502.0,33.0,1661.0,0.0,296.0,0.0,0.0,13.0,2297.0,154.0,1174.0,0.0,229.0,182.0,75.0,169.0,175.0,42.0,0.0,5.0,186.0,61.0,171.0,1930.0,22.0,91.0,40.0,2276.0,127.0,94.0,165.0,469.0,1499.0,48.0,180.0,0.0,1099.0,388.0,76.0,701.0,34.0,17.0,38.0,187.0,829.0,400.0,0.0,1545.0,634.0,672.0,50.0,40.0,111.0,1110.0,118.0,11.0,0.0,23.0,63.0,211.0,95.0,243.0,1542.0,1.0,0.0,162.0,966.0,1.0,3220.0,5628.0,6287.0,513.0,742.0,155.0,0.0,0.0,87.0,228.0,1899.0,1744.0,27.0,104.0,0.0,84.0,62.0,280.0,2545.0,27.0,24.0,612.0,213.0,6231.0,0.0,0.0,38.0,55.0,0.0,26.0,15.0,14.0,0.0,907.0,48.0,159.0,130.0,25.0,27.0,715.0,75.0,0.0,0.0,263.0,153.0,1588.0,30.0,81.0,415.0,0.0,0.0,1037.0,5898.0,430.0,88.0,124.0,47.0,2090.0,781.0,0.0,113.0,0.0,300.0,809.0,181.0,247.0,0.0,11.0,2962.0,598.0,244.0,0.0,3635.0,0.0,0.0,0.0,0.0,3405.0,3110.0,1443.0,999.0,23.0,0.0,599.0,29.0,293.0,223.0,44.0,299.0,1343.0,0.0,57.0,97.0,0.0,143.0,118.0,559.0,959.0,48.0,70.0,331.0,535.0,211.0,1104.0,25.0,41.0,375.0,591.0,1.0,238.0,0.0,74.0,0.0,0.0,686.0,1929.0,123.0,303.0,49.0,0.0,76.0,192.0,369.0,2715616.0,118.0,146.0,166.0,29.0,17.0,2227.0,232.0,0.0,0.0,1598.0,68.0,0.0,17.0,96.0,566.0,440.0,325.0,95.0,235.0,253.0,1299.0,1295.0,816.0,255.0,2775.0,1077.0,411.0,617.0,3311.0,63.0,191.0,364.0,66.0,457.0,188.0,188.0,128.0,506.0,582.0,0.0,1019.0,1.0,0.0,5.0,0.0,1310.0,31.0,694.0,1261.0,0.0,195.0,174.0,21.0,23.0,28.0,47.0,447.0,198.0,0.0,141.0,0.0,236.0,29.0,59.0,151.0,28.0,288.0,127.0,0.0,0.0,96.0,40.0,0.0,77.0,243.0,254.0,0.0,3595.0,64.0,0.0,1590.0,1916.0,138.0,0.0,119.0,8.0,566.0,35.0,28.0,0.0,0.0,0.0,5.0,450.0,0.0,230.0,26.0,2164.0,61.0,601.0,1.0,99.0,90.0,416.0,134.0,34.0,234.0,2.0,0.0,69.0,23.0,55.0,1968.0,1366.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,33.0,194.0,0.0,267.0,191.0,461.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.0,3552.0,3947.0,0.0,0.0,0.0,48.0,305.0,116.0,11620.0,0.0,0.0,0.0,0.0,1.0,371.0,98.0,45.0,49.0,0.0,2564.0,309.0,305.0,0.0,0.0,2013-02-17,,2013-7,9.979690319814239,7.582000000000001, +147,147,9.72,350.0,0.0,246.0,0.0,1261.0,0.0,200.0,147.0,0.0,692.0,0.0,67.0,99.0,0.0,1795.0,81.0,142.0,60.0,0.0,0.0,0.0,0.0,119.0,22.0,4618.0,37.0,1480.0,0.0,281.0,0.0,0.0,13.0,2137.0,143.0,1313.0,0.0,185.0,194.0,80.0,171.0,153.0,57.0,0.0,3.0,222.0,54.0,143.0,2140.0,11.0,118.0,51.0,2233.0,115.0,84.0,145.0,411.0,1509.0,47.0,195.0,0.0,973.0,348.0,47.0,645.0,17.0,9.0,33.0,179.0,776.0,424.0,0.0,1652.0,574.0,745.0,39.0,51.0,125.0,1169.0,133.0,15.0,0.0,28.0,77.0,219.0,112.0,211.0,1171.0,0.0,0.0,117.0,811.0,0.0,2777.0,5452.0,5788.0,503.0,613.0,142.0,0.0,0.0,65.0,138.0,2191.0,1682.0,32.0,87.0,0.0,71.0,51.0,311.0,2495.0,23.0,35.0,520.0,196.0,6490.0,0.0,0.0,36.0,63.0,0.0,26.0,20.0,26.0,0.0,803.0,43.0,162.0,159.0,16.0,27.0,752.0,57.0,0.0,0.0,226.0,173.0,1563.0,23.0,74.0,408.0,0.0,0.0,1030.0,5750.0,387.0,118.0,73.0,37.0,1731.0,359.0,0.0,133.0,0.0,325.0,785.0,131.0,193.0,0.0,9.0,1964.0,616.0,171.0,0.0,3397.0,0.0,0.0,0.0,0.0,3198.0,1948.0,1275.0,1122.0,27.0,0.0,586.0,33.0,224.0,254.0,44.0,235.0,1188.0,0.0,56.0,82.0,0.0,191.0,120.0,554.0,927.0,33.0,85.0,269.0,541.0,197.0,1093.0,18.0,29.0,272.0,624.0,2.0,260.0,0.0,87.0,0.0,0.0,627.0,1868.0,111.0,276.0,46.0,0.0,77.0,169.0,329.0,2783003.0,101.0,126.0,178.0,23.0,15.0,2009.0,234.0,0.0,0.0,1523.0,61.0,0.0,18.0,66.0,485.0,366.0,328.0,102.0,228.0,140.0,1290.0,1268.0,795.0,221.0,1801.0,832.0,411.0,620.0,3143.0,43.0,151.0,344.0,66.0,404.0,176.0,173.0,131.0,496.0,604.0,0.0,1027.0,0.0,0.0,4.0,0.0,1169.0,23.0,637.0,1245.0,0.0,152.0,136.0,17.0,32.0,31.0,51.0,497.0,205.0,0.0,124.0,0.0,219.0,48.0,49.0,117.0,37.0,250.0,100.0,0.0,0.0,75.0,47.0,0.0,66.0,169.0,207.0,0.0,3583.0,76.0,0.0,1686.0,1681.0,56.0,0.0,118.0,8.0,522.0,15.0,20.0,0.0,0.0,0.0,9.0,394.0,0.0,192.0,14.0,2110.0,38.0,446.0,6.0,106.0,91.0,489.0,127.0,39.0,209.0,0.0,0.0,101.0,19.0,53.0,1961.0,1201.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.0,246.0,0.0,229.0,213.0,379.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.0,3204.0,3805.0,0.0,0.0,0.0,46.0,289.0,147.0,10591.0,0.0,1.0,0.0,0.0,0.0,365.0,102.0,48.0,39.0,0.0,2406.0,1265.0,293.0,0.0,0.0,2013-02-24,,2013-8,9.71986013277538,9.72, +148,148,9.24,389.0,0.0,261.0,0.0,1146.0,0.0,142.0,156.0,0.0,610.0,0.0,78.0,83.0,0.0,1893.0,96.0,137.0,66.0,0.0,0.0,0.0,0.0,111.0,22.0,4872.0,26.0,1276.0,0.0,300.0,0.0,0.0,22.0,1933.0,163.0,1179.0,0.0,235.0,123.0,99.0,162.0,157.0,57.0,0.0,4.0,175.0,82.0,113.0,1887.0,11.0,116.0,46.0,2467.0,113.0,105.0,171.0,426.0,1557.0,44.0,146.0,0.0,1031.0,342.0,58.0,677.0,34.0,12.0,119.0,176.0,687.0,438.0,0.0,1736.0,531.0,754.0,35.0,39.0,110.0,1141.0,146.0,16.0,0.0,41.0,86.0,300.0,128.0,185.0,989.0,0.0,0.0,151.0,880.0,0.0,2728.0,6117.0,6050.0,537.0,733.0,174.0,0.0,0.0,73.0,149.0,1848.0,1665.0,37.0,100.0,0.0,97.0,66.0,308.0,2293.0,24.0,22.0,598.0,220.0,6736.0,0.0,0.0,37.0,52.0,0.0,29.0,19.0,25.0,0.0,797.0,55.0,162.0,133.0,26.0,35.0,694.0,71.0,0.0,0.0,200.0,177.0,1419.0,17.0,91.0,361.0,0.0,0.0,1162.0,5905.0,425.0,122.0,82.0,48.0,1111.0,446.0,0.0,106.0,0.0,347.0,802.0,135.0,175.0,0.0,11.0,1874.0,553.0,211.0,0.0,2993.0,0.0,0.0,0.0,0.0,3574.0,1734.0,1301.0,973.0,23.0,0.0,592.0,24.0,230.0,211.0,44.0,702.0,1198.0,0.0,70.0,100.0,0.0,174.0,116.0,529.0,1040.0,19.0,87.0,293.0,365.0,221.0,971.0,21.0,45.0,306.0,554.0,1.0,240.0,0.0,96.0,0.0,0.0,645.0,2037.0,92.0,236.0,43.0,0.0,81.0,150.0,304.0,2632608.0,114.0,137.0,176.0,52.0,15.0,1879.0,227.0,0.0,0.0,1467.0,60.0,0.0,20.0,72.0,463.0,335.0,333.0,112.0,219.0,142.0,1124.0,1309.0,831.0,261.0,1925.0,967.0,358.0,525.0,3166.0,52.0,161.0,363.0,67.0,464.0,168.0,152.0,121.0,592.0,506.0,0.0,1096.0,1.0,0.0,6.0,0.0,1521.0,16.0,667.0,1072.0,0.0,137.0,109.0,20.0,26.0,20.0,61.0,463.0,225.0,0.0,153.0,0.0,192.0,48.0,52.0,148.0,32.0,221.0,85.0,0.0,0.0,76.0,45.0,0.0,70.0,155.0,185.0,0.0,3299.0,68.0,0.0,1816.0,1998.0,66.0,0.0,194.0,5.0,546.0,20.0,17.0,0.0,0.0,0.0,16.0,370.0,0.0,229.0,26.0,2210.0,56.0,428.0,1.0,108.0,98.0,458.0,127.0,45.0,185.0,0.0,0.0,51.0,26.0,62.0,2181.0,1323.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.0,218.0,0.0,271.0,219.0,379.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3472.0,3726.0,0.0,0.0,0.0,55.0,294.0,123.0,11534.0,0.0,1.0,0.0,0.0,1.0,351.0,105.0,61.0,46.0,0.0,2380.0,900.0,270.0,0.0,0.0,2013-03-03,,2013-9,9.22738658853929,8.032000000000002, +149,149,7.68,332.0,0.0,165.0,0.0,1158.0,0.0,101.0,104.0,0.0,542.0,0.0,60.0,91.0,0.0,1730.0,92.0,148.0,68.0,0.0,0.0,0.0,0.0,108.0,14.0,4390.0,24.0,1107.0,0.0,267.0,0.0,0.0,18.0,1925.0,147.0,1001.0,1.0,225.0,99.0,96.0,159.0,123.0,54.0,0.0,5.0,180.0,79.0,102.0,2176.0,16.0,86.0,38.0,2071.0,110.0,80.0,151.0,452.0,1693.0,53.0,144.0,0.0,1015.0,272.0,65.0,526.0,20.0,4.0,41.0,160.0,524.0,393.0,0.0,1609.0,412.0,600.0,23.0,25.0,86.0,894.0,143.0,10.0,0.0,22.0,64.0,169.0,122.0,214.0,941.0,0.0,0.0,115.0,682.0,0.0,2142.0,5642.0,5524.0,403.0,520.0,146.0,0.0,0.0,62.0,127.0,1588.0,1334.0,28.0,85.0,0.0,59.0,56.0,241.0,1934.0,11.0,30.0,620.0,195.0,5657.0,0.0,0.0,38.0,36.0,0.0,18.0,9.0,18.0,0.0,773.0,73.0,133.0,127.0,27.0,40.0,935.0,64.0,0.0,0.0,195.0,132.0,1465.0,21.0,71.0,261.0,0.0,0.0,946.0,4640.0,313.0,104.0,80.0,48.0,1671.0,357.0,0.0,100.0,0.0,235.0,729.0,140.0,246.0,1.0,16.0,1472.0,484.0,203.0,0.0,2615.0,0.0,0.0,0.0,0.0,3397.0,1526.0,1225.0,946.0,15.0,1.0,553.0,26.0,178.0,198.0,43.0,393.0,1211.0,0.0,56.0,86.0,0.0,143.0,111.0,451.0,1012.0,23.0,56.0,249.0,316.0,151.0,798.0,20.0,23.0,245.0,526.0,0.0,218.0,0.0,62.0,0.0,0.0,510.0,1861.0,100.0,301.0,46.0,0.0,63.0,134.0,310.0,2487850.0,120.0,129.0,142.0,25.0,11.0,2184.0,292.0,0.0,0.0,1211.0,80.0,0.0,14.0,76.0,438.0,346.0,271.0,148.0,185.0,145.0,1056.0,1032.0,755.0,254.0,1677.0,814.0,321.0,501.0,2907.0,30.0,142.0,298.0,54.0,417.0,134.0,154.0,73.0,468.0,474.0,0.0,910.0,2.0,0.0,9.0,0.0,976.0,27.0,483.0,1023.0,0.0,135.0,114.0,14.0,21.0,29.0,50.0,382.0,196.0,0.0,93.0,0.0,173.0,29.0,45.0,104.0,51.0,187.0,67.0,0.0,0.0,64.0,29.0,0.0,70.0,146.0,180.0,0.0,2904.0,57.0,0.0,1444.0,1650.0,76.0,0.0,148.0,7.0,387.0,24.0,20.0,0.0,0.0,1.0,17.0,336.0,0.0,156.0,34.0,1927.0,40.0,377.0,4.0,127.0,91.0,370.0,103.0,27.0,213.0,4.0,0.0,61.0,22.0,54.0,1664.0,1089.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.0,173.0,0.0,202.0,237.0,266.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0,3525.0,3677.0,0.0,0.0,0.0,29.0,279.0,120.0,9858.0,0.0,0.0,0.0,0.0,2.0,325.0,78.0,32.0,31.0,0.0,2430.0,385.0,272.0,0.0,0.0,2013-03-10,,2013-10,7.660154772909967,7.169999999999999, +150,150,5.94,279.0,0.0,157.0,0.0,1224.0,0.0,103.0,104.0,0.0,533.0,0.0,73.0,72.0,0.0,1766.0,64.0,125.0,61.0,0.0,0.0,0.0,0.0,95.0,21.0,4165.0,48.0,1040.0,0.0,328.0,0.0,0.0,16.0,1978.0,147.0,951.0,0.0,211.0,98.0,68.0,174.0,113.0,33.0,0.0,8.0,170.0,85.0,112.0,1793.0,13.0,123.0,44.0,2253.0,93.0,98.0,155.0,408.0,1453.0,58.0,147.0,0.0,1068.0,254.0,68.0,625.0,22.0,7.0,37.0,151.0,518.0,421.0,0.0,1740.0,440.0,603.0,23.0,30.0,93.0,852.0,122.0,6.0,0.0,35.0,92.0,237.0,132.0,219.0,872.0,0.0,0.0,85.0,794.0,0.0,2645.0,5505.0,6392.0,392.0,578.0,121.0,0.0,0.0,119.0,137.0,1548.0,1497.0,38.0,85.0,0.0,85.0,76.0,237.0,1993.0,16.0,26.0,538.0,172.0,5289.0,0.0,0.0,42.0,46.0,0.0,21.0,20.0,17.0,0.0,872.0,44.0,126.0,113.0,20.0,31.0,926.0,47.0,0.0,0.0,164.0,161.0,1474.0,30.0,74.0,356.0,0.0,0.0,950.0,4730.0,322.0,101.0,91.0,47.0,1729.0,332.0,0.0,117.0,0.0,291.0,790.0,111.0,182.0,0.0,15.0,1276.0,510.0,193.0,0.0,2460.0,0.0,0.0,0.0,0.0,3817.0,1711.0,1215.0,1032.0,29.0,0.0,560.0,23.0,180.0,203.0,53.0,639.0,1208.0,0.0,54.0,78.0,0.0,156.0,94.0,483.0,999.0,33.0,49.0,263.0,317.0,182.0,894.0,16.0,27.0,380.0,501.0,0.0,240.0,0.0,64.0,0.0,0.0,525.0,1909.0,110.0,269.0,39.0,0.0,85.0,120.0,272.0,2538354.0,101.0,118.0,141.0,46.0,13.0,3111.0,220.0,0.0,0.0,1133.0,90.0,0.0,12.0,91.0,449.0,335.0,239.0,146.0,192.0,128.0,1119.0,1135.0,798.0,264.0,1759.0,918.0,306.0,435.0,2731.0,34.0,127.0,273.0,66.0,388.0,110.0,163.0,118.0,487.0,452.0,0.0,840.0,1.0,0.0,8.0,0.0,990.0,27.0,630.0,1006.0,0.0,176.0,135.0,9.0,21.0,32.0,49.0,374.0,144.0,0.0,109.0,0.0,136.0,37.0,40.0,122.0,24.0,187.0,76.0,0.0,0.0,66.0,30.0,0.0,63.0,141.0,152.0,0.0,2975.0,42.0,0.0,1532.0,1556.0,63.0,0.0,140.0,6.0,428.0,27.0,18.0,0.0,0.0,0.0,10.0,362.0,0.0,180.0,34.0,2642.0,26.0,431.0,1.0,87.0,72.0,468.0,89.0,21.0,195.0,2.0,0.0,45.0,29.0,65.0,1836.0,1499.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.0,156.0,0.0,202.0,229.0,352.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,3620.0,3988.0,0.0,0.0,0.0,39.0,319.0,119.0,9296.0,0.0,0.0,0.0,0.0,4.0,386.0,485.0,53.0,38.0,0.0,2511.0,352.0,275.0,0.0,0.0,2013-03-17,,2013-11,5.935299862770123,3.4640000000000004, +151,151,4.31,270.0,0.0,149.0,0.0,1267.0,0.0,108.0,113.0,0.0,559.0,0.0,83.0,96.0,0.0,1705.0,79.0,105.0,75.0,0.0,0.0,0.0,0.0,113.0,20.0,3474.0,49.0,1048.0,0.0,349.0,0.0,0.0,10.0,1987.0,153.0,770.0,1.0,193.0,118.0,83.0,145.0,127.0,40.0,0.0,5.0,252.0,95.0,140.0,1681.0,10.0,121.0,43.0,2127.0,109.0,67.0,135.0,487.0,1189.0,58.0,139.0,0.0,1045.0,271.0,49.0,547.0,13.0,12.0,31.0,162.0,573.0,421.0,0.0,1607.0,452.0,580.0,26.0,47.0,47.0,864.0,152.0,18.0,0.0,27.0,65.0,494.0,140.0,205.0,1130.0,0.0,0.0,108.0,761.0,1.0,2968.0,6512.0,6486.0,577.0,634.0,143.0,0.0,0.0,132.0,207.0,2350.0,1495.0,48.0,93.0,0.0,73.0,78.0,288.0,1876.0,36.0,27.0,471.0,198.0,4518.0,0.0,0.0,23.0,55.0,0.0,29.0,18.0,17.0,0.0,757.0,66.0,122.0,115.0,24.0,40.0,743.0,60.0,0.0,0.0,173.0,161.0,1539.0,16.0,59.0,303.0,0.0,0.0,967.0,4898.0,323.0,97.0,69.0,37.0,1491.0,264.0,0.0,108.0,0.0,284.0,754.0,117.0,184.0,1.0,7.0,1428.0,483.0,253.0,0.0,2563.0,0.0,0.0,0.0,0.0,3811.0,2095.0,1313.0,1014.0,29.0,0.0,620.0,24.0,199.0,214.0,62.0,226.0,1231.0,0.0,64.0,79.0,0.0,164.0,109.0,561.0,964.0,20.0,55.0,238.0,286.0,149.0,787.0,19.0,43.0,329.0,497.0,1.0,231.0,0.0,67.0,0.0,0.0,517.0,1731.0,115.0,296.0,54.0,0.0,66.0,125.0,282.0,2562144.0,86.0,120.0,130.0,36.0,15.0,2094.0,229.0,0.0,0.0,1080.0,59.0,0.0,10.0,139.0,512.0,367.0,292.0,153.0,184.0,156.0,1117.0,1073.0,750.0,256.0,1678.0,809.0,378.0,395.0,2326.0,42.0,155.0,283.0,56.0,400.0,104.0,136.0,80.0,472.0,503.0,0.0,839.0,0.0,0.0,7.0,0.0,986.0,18.0,569.0,1081.0,0.0,140.0,93.0,18.0,33.0,26.0,40.0,389.0,154.0,0.0,108.0,0.0,144.0,45.0,72.0,141.0,30.0,203.0,76.0,0.0,0.0,81.0,34.0,0.0,61.0,135.0,168.0,0.0,2933.0,63.0,0.0,1453.0,1128.0,51.0,0.0,127.0,5.0,461.0,16.0,21.0,0.0,0.0,0.0,13.0,307.0,0.0,175.0,24.0,2446.0,43.0,504.0,0.0,104.0,67.0,444.0,105.0,28.0,245.0,1.0,0.0,44.0,33.0,51.0,1695.0,1241.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.0,153.0,0.0,192.0,221.0,362.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0,3840.0,3954.0,0.0,0.0,0.0,30.0,332.0,124.0,9210.0,0.0,0.0,0.0,0.0,1.0,460.0,228.0,35.0,28.0,0.0,2312.0,352.0,270.0,0.0,0.0,2013-03-24,,2013-12,4.300764924406602,3.602, +152,152,3.2,275.0,0.0,160.0,0.0,1089.0,0.0,92.0,101.0,0.0,561.0,0.0,89.0,72.0,0.0,1704.0,95.0,111.0,81.0,0.0,0.0,0.0,0.0,127.0,23.0,2800.0,47.0,1094.0,0.0,338.0,0.0,0.0,25.0,1881.0,219.0,914.0,1.0,178.0,152.0,42.0,176.0,159.0,38.0,0.0,2.0,237.0,71.0,145.0,2527.0,16.0,191.0,45.0,2096.0,102.0,102.0,123.0,432.0,1668.0,29.0,137.0,0.0,1089.0,352.0,55.0,554.0,20.0,10.0,25.0,167.0,528.0,428.0,0.0,1641.0,480.0,623.0,22.0,48.0,88.0,840.0,220.0,21.0,0.0,23.0,62.0,269.0,124.0,235.0,1082.0,0.0,0.0,92.0,702.0,0.0,2551.0,4913.0,5055.0,484.0,556.0,159.0,0.0,0.0,77.0,124.0,1959.0,1870.0,42.0,84.0,0.0,47.0,59.0,260.0,2027.0,15.0,22.0,568.0,195.0,4342.0,0.0,0.0,28.0,50.0,0.0,25.0,21.0,25.0,0.0,797.0,42.0,139.0,132.0,22.0,20.0,754.0,81.0,0.0,0.0,177.0,166.0,1720.0,22.0,84.0,345.0,0.0,0.0,1119.0,4940.0,302.0,85.0,79.0,41.0,1627.0,216.0,0.0,82.0,0.0,271.0,787.0,113.0,193.0,0.0,11.0,1538.0,466.0,254.0,0.0,2479.0,0.0,0.0,0.0,0.0,4076.0,1704.0,1551.0,946.0,54.0,1.0,480.0,23.0,224.0,197.0,48.0,263.0,1198.0,0.0,52.0,131.0,0.0,160.0,102.0,484.0,994.0,16.0,46.0,316.0,360.0,163.0,1000.0,19.0,29.0,377.0,455.0,3.0,230.0,0.0,82.0,0.0,0.0,565.0,1921.0,139.0,298.0,41.0,0.0,81.0,146.0,243.0,2489770.0,130.0,123.0,132.0,34.0,17.0,2570.0,249.0,0.0,0.0,1116.0,72.0,0.0,16.0,112.0,468.0,440.0,259.0,156.0,196.0,155.0,1145.0,1101.0,784.0,277.0,1618.0,845.0,332.0,463.0,2266.0,42.0,130.0,266.0,56.0,350.0,126.0,148.0,86.0,508.0,524.0,0.0,807.0,0.0,0.0,5.0,0.0,904.0,25.0,660.0,1047.0,0.0,134.0,133.0,12.0,19.0,40.0,49.0,408.0,178.0,0.0,100.0,0.0,183.0,45.0,54.0,99.0,36.0,253.0,84.0,0.0,0.0,68.0,36.0,0.0,60.0,159.0,179.0,0.0,3039.0,65.0,0.0,1395.0,1062.0,55.0,0.0,123.0,7.0,465.0,24.0,21.0,0.0,0.0,0.0,8.0,368.0,0.0,164.0,38.0,2664.0,48.0,434.0,1.0,105.0,65.0,419.0,138.0,25.0,190.0,2.0,0.0,70.0,29.0,62.0,1969.0,1264.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.0,160.0,0.0,278.0,220.0,360.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,3865.0,4324.0,0.0,0.0,0.0,44.0,286.0,259.0,9485.0,0.0,0.0,0.0,0.0,1.0,379.0,95.0,36.0,38.0,0.0,2264.0,341.0,274.0,0.0,0.0,2013-03-31,,2013-13,3.196812492971712,2.8060000000000005, +153,153,2.22,240.0,0.0,109.0,0.0,1053.0,0.0,45.0,100.0,0.0,758.0,0.0,66.0,79.0,0.0,1502.0,78.0,79.0,72.0,0.0,0.0,0.0,0.0,91.0,22.0,2382.0,27.0,890.0,0.0,465.0,0.0,0.0,25.0,1788.0,140.0,770.0,1.0,170.0,111.0,56.0,183.0,144.0,50.0,0.0,4.0,197.0,54.0,119.0,1217.0,9.0,263.0,57.0,1835.0,94.0,78.0,111.0,362.0,1325.0,36.0,161.0,0.0,1205.0,289.0,68.0,517.0,19.0,7.0,27.0,133.0,437.0,368.0,0.0,1490.0,361.0,499.0,21.0,32.0,60.0,675.0,107.0,11.0,0.0,28.0,54.0,195.0,138.0,185.0,873.0,0.0,0.0,103.0,571.0,0.0,2108.0,4139.0,4249.0,319.0,398.0,124.0,0.0,0.0,80.0,118.0,1339.0,1494.0,41.0,72.0,0.0,52.0,51.0,207.0,1891.0,20.0,29.0,610.0,214.0,3811.0,0.0,0.0,26.0,43.0,0.0,15.0,18.0,46.0,2051.0,674.0,44.0,139.0,135.0,12.0,27.0,681.0,40.0,0.0,0.0,168.0,115.0,1606.0,17.0,68.0,309.0,0.0,0.0,869.0,4215.0,318.0,88.0,60.0,35.0,1574.0,205.0,0.0,88.0,0.0,286.0,612.0,119.0,112.0,0.0,8.0,3178.0,399.0,282.0,0.0,2394.0,0.0,0.0,0.0,0.0,3726.0,810.0,1321.0,925.0,22.0,2.0,492.0,31.0,182.0,208.0,33.0,228.0,1096.0,0.0,51.0,78.0,0.0,162.0,99.0,418.0,806.0,19.0,46.0,231.0,274.0,103.0,885.0,17.0,40.0,290.0,379.0,3.0,251.0,0.0,91.0,0.0,0.0,438.0,1733.0,128.0,268.0,49.0,0.0,63.0,89.0,246.0,2373334.0,92.0,100.0,127.0,38.0,8.0,2505.0,232.0,0.0,0.0,1131.0,44.0,0.0,12.0,87.0,443.0,395.0,261.0,130.0,149.0,147.0,1033.0,1065.0,657.0,198.0,1515.0,583.0,338.0,349.0,2054.0,34.0,136.0,270.0,69.0,368.0,122.0,163.0,71.0,457.0,405.0,0.0,541.0,0.0,0.0,7.0,0.0,845.0,16.0,675.0,936.0,0.0,110.0,100.0,14.0,12.0,32.0,42.0,352.0,174.0,0.0,112.0,0.0,150.0,34.0,54.0,115.0,32.0,122.0,75.0,0.0,0.0,54.0,26.0,0.0,58.0,109.0,130.0,0.0,2645.0,42.0,0.0,1315.0,888.0,75.0,0.0,147.0,6.0,392.0,13.0,18.0,0.0,0.0,0.0,11.0,286.0,0.0,139.0,34.0,2320.0,43.0,393.0,1.0,123.0,67.0,323.0,107.0,20.0,163.0,2.0,0.0,69.0,29.0,56.0,1594.0,997.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,155.0,0.0,205.0,240.0,282.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,3455.0,3753.0,0.0,0.0,0.0,43.0,428.0,107.0,9805.0,0.0,0.0,0.0,0.0,1.0,378.0,129.0,39.0,41.0,0.0,2130.0,279.0,249.0,0.0,0.0,2013-04-07,,2013-14,2.2217683641954578,2.0380000000000003, +154,154,1.56,202.0,0.0,160.0,0.0,1156.0,0.0,84.0,117.0,0.0,556.0,0.0,70.0,81.0,0.0,1779.0,68.0,100.0,60.0,0.0,0.0,0.0,0.0,88.0,14.0,2516.0,36.0,943.0,0.0,445.0,0.0,0.0,16.0,1934.0,244.0,900.0,0.0,170.0,114.0,56.0,161.0,172.0,49.0,0.0,3.0,210.0,78.0,117.0,1370.0,21.0,181.0,38.0,2073.0,97.0,95.0,122.0,439.0,1455.0,27.0,113.0,0.0,1119.0,344.0,63.0,726.0,37.0,13.0,23.0,119.0,501.0,360.0,0.0,1567.0,329.0,576.0,27.0,30.0,75.0,824.0,134.0,7.0,0.0,18.0,73.0,198.0,170.0,205.0,1080.0,0.0,0.0,94.0,763.0,0.0,2372.0,4197.0,4484.0,410.0,415.0,145.0,0.0,0.0,69.0,121.0,1433.0,1366.0,45.0,67.0,0.0,47.0,47.0,259.0,2103.0,18.0,16.0,525.0,166.0,4126.0,0.0,0.0,41.0,57.0,0.0,18.0,21.0,21.0,356.0,1012.0,51.0,145.0,115.0,13.0,24.0,846.0,66.0,0.0,0.0,175.0,153.0,1672.0,19.0,80.0,357.0,0.0,0.0,1118.0,4571.0,316.0,94.0,79.0,68.0,1662.0,230.0,0.0,89.0,0.0,254.0,734.0,106.0,130.0,0.0,8.0,1555.0,379.0,265.0,0.0,2588.0,0.0,0.0,0.0,0.0,4033.0,1122.0,1502.0,927.0,11.0,0.0,506.0,17.0,185.0,231.0,53.0,375.0,1199.0,0.0,74.0,81.0,0.0,152.0,82.0,474.0,959.0,21.0,38.0,233.0,370.0,154.0,922.0,13.0,48.0,375.0,440.0,2.0,266.0,0.0,75.0,0.0,0.0,577.0,1814.0,116.0,293.0,43.0,0.0,52.0,120.0,261.0,2495142.0,116.0,101.0,144.0,27.0,6.0,2073.0,228.0,0.0,0.0,1076.0,67.0,0.0,14.0,103.0,433.0,378.0,256.0,167.0,167.0,140.0,1140.0,1065.0,817.0,282.0,1718.0,733.0,332.0,432.0,2921.0,30.0,161.0,274.0,65.0,414.0,133.0,161.0,95.0,461.0,467.0,0.0,149.0,2.0,0.0,12.0,0.0,1091.0,18.0,553.0,1009.0,0.0,134.0,137.0,19.0,35.0,24.0,30.0,392.0,133.0,0.0,118.0,0.0,149.0,44.0,57.0,122.0,26.0,75.0,87.0,0.0,0.0,38.0,25.0,0.0,78.0,164.0,208.0,0.0,2845.0,56.0,0.0,1435.0,968.0,50.0,0.0,114.0,12.0,423.0,22.0,16.0,0.0,0.0,0.0,13.0,309.0,0.0,174.0,25.0,2460.0,39.0,476.0,4.0,132.0,63.0,388.0,105.0,30.0,205.0,1.0,0.0,76.0,28.0,75.0,1750.0,1214.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.0,148.0,0.0,244.0,293.0,297.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.0,4093.0,3692.0,0.0,0.0,0.0,23.0,295.0,104.0,10900.0,0.0,1.0,0.0,0.0,0.0,470.0,124.0,27.0,24.0,0.0,2582.0,304.0,238.0,0.0,0.0,2013-04-14,,2013-15,1.549502590734292,1.5600000000000003, +155,155,1.14,262.0,0.0,164.0,0.0,1123.0,0.0,99.0,119.0,0.0,520.0,0.0,104.0,84.0,0.0,1731.0,65.0,90.0,61.0,0.0,0.0,0.0,0.0,240.0,10.0,2462.0,64.0,981.0,0.0,317.0,0.0,0.0,11.0,1870.0,153.0,1067.0,1.0,168.0,163.0,54.0,156.0,180.0,49.0,0.0,4.0,224.0,62.0,138.0,1356.0,18.0,194.0,31.0,2191.0,95.0,105.0,109.0,440.0,1315.0,60.0,136.0,0.0,1387.0,268.0,52.0,587.0,16.0,8.0,46.0,156.0,600.0,385.0,0.0,1810.0,364.0,560.0,32.0,33.0,63.0,959.0,113.0,12.0,0.0,36.0,101.0,189.0,215.0,242.0,921.0,0.0,0.0,79.0,830.0,0.0,2936.0,4571.0,4366.0,340.0,486.0,111.0,0.0,0.0,86.0,142.0,1551.0,1437.0,50.0,114.0,0.0,46.0,62.0,240.0,2141.0,12.0,36.0,565.0,204.0,4479.0,0.0,0.0,24.0,40.0,0.0,10.0,8.0,18.0,80.0,746.0,55.0,137.0,133.0,23.0,31.0,2893.0,46.0,0.0,0.0,160.0,177.0,1589.0,18.0,71.0,370.0,0.0,0.0,1077.0,4939.0,365.0,112.0,69.0,38.0,1861.0,261.0,0.0,82.0,0.0,261.0,1446.0,207.0,174.0,0.0,4.0,2010.0,433.0,447.0,0.0,2723.0,0.0,0.0,0.0,0.0,3801.0,932.0,1491.0,1115.0,16.0,1.0,571.0,21.0,249.0,245.0,47.0,854.0,1229.0,0.0,60.0,85.0,0.0,175.0,92.0,495.0,1253.0,22.0,49.0,254.0,326.0,164.0,832.0,22.0,38.0,284.0,458.0,2.0,335.0,0.0,108.0,0.0,0.0,714.0,1763.0,102.0,306.0,44.0,0.0,38.0,125.0,278.0,2075146.0,108.0,109.0,161.0,42.0,10.0,2085.0,392.0,0.0,0.0,1109.0,58.0,0.0,8.0,104.0,476.0,389.0,466.0,102.0,127.0,169.0,1648.0,1238.0,1111.0,242.0,1627.0,742.0,384.0,375.0,2666.0,37.0,212.0,811.0,76.0,785.0,111.0,166.0,79.0,677.0,443.0,0.0,233.0,1.0,0.0,5.0,0.0,871.0,19.0,532.0,1009.0,0.0,127.0,138.0,28.0,29.0,29.0,32.0,446.0,141.0,0.0,128.0,0.0,123.0,34.0,47.0,112.0,22.0,82.0,80.0,0.0,0.0,47.0,17.0,0.0,124.0,142.0,148.0,0.0,3057.0,57.0,0.0,1352.0,990.0,64.0,0.0,137.0,6.0,420.0,15.0,19.0,0.0,0.0,0.0,5.0,453.0,0.0,176.0,22.0,2539.0,41.0,482.0,2.0,122.0,65.0,432.0,112.0,26.0,184.0,2.0,0.0,46.0,23.0,67.0,2054.0,1203.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.0,153.0,0.0,312.0,280.0,381.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,4179.0,4300.0,0.0,0.0,0.0,35.0,293.0,94.0,10017.0,0.0,0.0,0.0,0.0,0.0,461.0,69.0,31.0,27.0,0.0,2655.0,328.0,238.0,0.0,0.0,2013-04-21,,2013-16,1.1545188041932501,2.7640000000000002, +156,156,0.36,152.0,0.0,104.0,0.0,842.0,0.0,52.0,69.0,0.0,402.0,0.0,70.0,55.0,0.0,1339.0,84.0,72.0,42.0,0.0,0.0,0.0,0.0,100.0,8.0,1852.0,42.0,843.0,37.0,156.0,0.0,0.0,5.0,1457.0,135.0,565.0,70.0,113.0,99.0,55.0,121.0,157.0,36.0,0.0,1.0,126.0,143.0,97.0,1153.0,8.0,104.0,36.0,1758.0,93.0,81.0,119.0,384.0,911.0,34.0,135.0,0.0,774.0,232.0,40.0,493.0,19.0,9.0,19.0,120.0,380.0,329.0,0.0,1423.0,366.0,417.0,25.0,49.0,54.0,616.0,84.0,12.0,0.0,22.0,79.0,144.0,144.0,225.0,630.0,1.0,0.0,78.0,619.0,0.0,1932.0,3137.0,2846.0,165.0,454.0,73.0,0.0,0.0,49.0,76.0,919.0,1173.0,12.0,72.0,0.0,45.0,44.0,125.0,1240.0,4.0,19.0,614.0,170.0,2851.0,0.0,0.0,22.0,41.0,0.0,22.0,21.0,18.0,48.0,567.0,43.0,76.0,112.0,33.0,33.0,985.0,61.0,0.0,0.0,111.0,204.0,980.0,23.0,45.0,306.0,0.0,0.0,751.0,3620.0,252.0,126.0,80.0,31.0,1144.0,182.0,0.0,64.0,0.0,172.0,571.0,111.0,128.0,0.0,5.0,867.0,302.0,206.0,0.0,2154.0,0.0,0.0,0.0,0.0,3227.0,1554.0,1144.0,1038.0,27.0,0.0,410.0,14.0,235.0,138.0,45.0,170.0,901.0,0.0,68.0,50.0,0.0,115.0,99.0,460.0,554.0,26.0,44.0,260.0,253.0,126.0,676.0,12.0,19.0,367.0,407.0,4.0,274.0,0.0,61.0,0.0,0.0,514.0,1484.0,82.0,191.0,24.0,0.0,63.0,116.0,200.0,1825748.0,62.0,111.0,126.0,24.0,16.0,1790.0,228.0,0.0,0.0,947.0,49.0,0.0,14.0,76.0,538.0,351.0,260.0,94.0,135.0,133.0,1114.0,1063.0,611.0,160.0,1497.0,625.0,302.0,329.0,2361.0,44.0,152.0,258.0,56.0,313.0,100.0,141.0,64.0,414.0,341.0,0.0,857.0,11.0,0.0,9.0,0.0,575.0,11.0,514.0,975.0,0.0,163.0,98.0,14.0,18.0,14.0,31.0,361.0,138.0,0.0,124.0,0.0,75.0,23.0,63.0,107.0,16.0,128.0,57.0,0.0,0.0,50.0,35.0,0.0,60.0,123.0,196.0,0.0,2064.0,48.0,281.0,1012.0,1501.0,50.0,0.0,178.0,7.0,499.0,10.0,13.0,0.0,0.0,1.0,13.0,269.0,0.0,252.0,54.0,2180.0,33.0,441.0,22.0,521.0,98.0,311.0,74.0,23.0,156.0,368.0,0.0,34.0,16.0,32.0,916.0,800.0,0.0,317.0,0.0,4.0,16.0,20.0,10.0,94.0,682.0,12.0,299.0,179.0,731.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,3130.0,2347.0,0.0,0.0,0.0,37.0,950.0,92.0,6229.0,0.0,0.0,0.0,0.0,1.0,455.0,82.0,28.0,17.0,0.0,1731.0,234.0,181.0,0.0,0.0,2013-10-27,,2013-43,0.33504732600782283,0.9480000000000001, +157,157,0.46,118.0,0.0,130.0,0.0,813.0,0.0,51.0,83.0,0.0,397.0,0.0,58.0,74.0,0.0,1452.0,85.0,76.0,52.0,0.0,0.0,0.0,0.0,65.0,6.0,1854.0,56.0,793.0,28.0,178.0,0.0,0.0,10.0,1327.0,162.0,504.0,64.0,140.0,96.0,56.0,148.0,142.0,36.0,0.0,4.0,153.0,78.0,104.0,1093.0,5.0,92.0,20.0,1753.0,90.0,85.0,133.0,377.0,839.0,35.0,142.0,0.0,779.0,237.0,33.0,462.0,15.0,9.0,19.0,124.0,388.0,356.0,0.0,1361.0,367.0,488.0,34.0,43.0,71.0,584.0,68.0,14.0,0.0,30.0,64.0,146.0,156.0,225.0,676.0,0.0,0.0,70.0,609.0,0.0,1790.0,3059.0,2753.0,157.0,469.0,96.0,0.0,0.0,66.0,97.0,900.0,1300.0,24.0,53.0,0.0,46.0,57.0,158.0,1145.0,5.0,25.0,477.0,148.0,2673.0,0.0,0.0,15.0,31.0,0.0,20.0,6.0,24.0,19.0,614.0,36.0,67.0,116.0,18.0,36.0,757.0,29.0,0.0,0.0,122.0,194.0,1058.0,16.0,41.0,319.0,0.0,0.0,669.0,3469.0,294.0,84.0,55.0,23.0,1162.0,136.0,0.0,65.0,0.0,177.0,632.0,111.0,123.0,0.0,12.0,800.0,364.0,243.0,0.0,1858.0,0.0,0.0,0.0,0.0,3352.0,1407.0,1115.0,1223.0,21.0,0.0,405.0,15.0,137.0,183.0,61.0,183.0,877.0,0.0,71.0,46.0,0.0,164.0,90.0,444.0,584.0,21.0,42.0,250.0,256.0,117.0,653.0,16.0,29.0,460.0,436.0,0.0,249.0,0.0,61.0,0.0,0.0,566.0,1461.0,82.0,201.0,49.0,0.0,67.0,119.0,200.0,1862934.0,62.0,105.0,81.0,17.0,10.0,1580.0,222.0,8.0,0.0,846.0,48.0,0.0,11.0,74.0,521.0,363.0,271.0,96.0,132.0,124.0,1075.0,1071.0,612.0,152.0,1569.0,551.0,386.0,254.0,1920.0,37.0,164.0,253.0,64.0,356.0,85.0,158.0,77.0,324.0,326.0,0.0,833.0,7.0,0.0,5.0,0.0,678.0,31.0,559.0,873.0,0.0,161.0,104.0,14.0,20.0,20.0,26.0,385.0,152.0,0.0,73.0,0.0,82.0,28.0,44.0,85.0,17.0,153.0,50.0,0.0,0.0,58.0,30.0,0.0,62.0,107.0,150.0,0.0,2293.0,55.0,111.0,993.0,1492.0,27.0,0.0,166.0,4.0,542.0,15.0,18.0,0.0,0.0,0.0,11.0,238.0,0.0,180.0,57.0,2114.0,32.0,364.0,27.0,435.0,80.0,239.0,71.0,25.0,148.0,361.0,0.0,27.0,17.0,45.0,1031.0,936.0,0.0,291.0,0.0,6.0,8.0,30.0,6.0,102.0,736.0,9.0,335.0,179.0,718.0,0.0,0.0,0.0,0.0,0.0,0.0,38.0,0.0,0.0,0.0,0.0,4.0,3311.0,2198.0,0.0,0.0,0.0,34.0,769.0,91.0,6509.0,0.0,0.0,0.0,0.0,1.0,458.0,49.0,66.0,14.0,0.0,1753.0,230.0,146.0,0.0,0.0,2013-11-03,,2013-44,0.4569975170200351,1.254, +158,158,0.46,115.0,0.0,103.0,0.0,763.0,0.0,61.0,70.0,0.0,323.0,0.0,61.0,62.0,0.0,1408.0,97.0,75.0,43.0,0.0,0.0,0.0,0.0,64.0,12.0,1656.0,46.0,674.0,27.0,166.0,0.0,0.0,11.0,1313.0,152.0,536.0,103.0,98.0,88.0,46.0,127.0,124.0,26.0,0.0,5.0,98.0,81.0,88.0,973.0,4.0,82.0,22.0,1792.0,84.0,81.0,123.0,292.0,742.0,37.0,126.0,0.0,870.0,336.0,49.0,509.0,22.0,14.0,34.0,92.0,317.0,312.0,0.0,1311.0,318.0,394.0,29.0,41.0,48.0,519.0,75.0,16.0,0.0,40.0,57.0,131.0,105.0,232.0,556.0,0.0,0.0,64.0,560.0,0.0,2201.0,2910.0,2623.0,174.0,446.0,82.0,0.0,0.0,70.0,92.0,892.0,1338.0,30.0,62.0,0.0,57.0,34.0,160.0,1123.0,4.0,14.0,524.0,144.0,2471.0,0.0,0.0,10.0,37.0,0.0,24.0,15.0,65.0,33.0,557.0,26.0,64.0,78.0,18.0,35.0,864.0,54.0,0.0,0.0,132.0,194.0,964.0,23.0,47.0,283.0,0.0,0.0,592.0,3147.0,290.0,67.0,51.0,19.0,1212.0,118.0,0.0,71.0,0.0,193.0,614.0,90.0,139.0,0.0,9.0,823.0,285.0,180.0,0.0,2699.0,0.0,0.0,0.0,0.0,3068.0,1179.0,914.0,1091.0,21.0,1.0,416.0,16.0,144.0,154.0,32.0,176.0,846.0,0.0,71.0,59.0,0.0,113.0,75.0,384.0,480.0,19.0,34.0,244.0,228.0,85.0,628.0,10.0,30.0,337.0,346.0,0.0,226.0,0.0,68.0,0.0,0.0,512.0,1311.0,71.0,185.0,53.0,0.0,45.0,108.0,188.0,1813865.0,76.0,70.0,81.0,25.0,12.0,1429.0,210.0,20.0,0.0,757.0,48.0,0.0,10.0,86.0,608.0,301.0,219.0,85.0,119.0,92.0,905.0,986.0,558.0,136.0,2308.0,496.0,455.0,207.0,1478.0,27.0,106.0,226.0,42.0,294.0,66.0,117.0,56.0,355.0,246.0,0.0,843.0,9.0,0.0,5.0,0.0,624.0,18.0,492.0,919.0,0.0,137.0,123.0,13.0,20.0,21.0,37.0,313.0,140.0,0.0,67.0,0.0,85.0,24.0,33.0,103.0,11.0,127.0,52.0,0.0,0.0,46.0,21.0,0.0,61.0,106.0,135.0,0.0,2050.0,45.0,201.0,982.0,1217.0,31.0,0.0,169.0,9.0,512.0,8.0,14.0,0.0,0.0,0.0,9.0,207.0,0.0,163.0,54.0,2252.0,34.0,300.0,26.0,530.0,68.0,267.0,76.0,16.0,159.0,336.0,0.0,75.0,17.0,49.0,986.0,791.0,0.0,273.0,0.0,7.0,11.0,33.0,9.0,130.0,773.0,15.0,332.0,166.0,731.0,0.0,0.0,0.0,0.0,0.0,0.0,16.0,0.0,0.0,0.0,0.0,5.0,2951.0,2112.0,0.0,0.0,0.0,26.0,1090.0,72.0,5633.0,0.0,0.0,0.0,0.0,2.0,442.0,49.0,59.0,16.0,0.0,1592.0,227.0,146.0,0.0,0.0,2013-11-10,,2013-45,0.48229095514729536,0.8140000000000001, +159,159,0.67,130.0,0.0,112.0,0.0,1014.0,0.0,65.0,92.0,0.0,400.0,0.0,62.0,62.0,0.0,1361.0,119.0,93.0,37.0,0.0,0.0,0.0,0.0,52.0,12.0,1700.0,57.0,734.0,26.0,212.0,0.0,0.0,8.0,1429.0,126.0,567.0,91.0,155.0,113.0,83.0,144.0,141.0,34.0,0.0,7.0,111.0,109.0,89.0,1003.0,13.0,111.0,25.0,1883.0,82.0,119.0,125.0,378.0,869.0,28.0,158.0,0.0,843.0,235.0,37.0,503.0,14.0,5.0,45.0,100.0,352.0,303.0,0.0,1560.0,395.0,429.0,25.0,45.0,65.0,568.0,75.0,21.0,0.0,29.0,62.0,136.0,143.0,202.0,645.0,0.0,0.0,78.0,607.0,0.0,1912.0,3251.0,3156.0,171.0,474.0,65.0,0.0,0.0,62.0,87.0,870.0,1319.0,17.0,63.0,0.0,30.0,35.0,152.0,1363.0,5.0,15.0,567.0,167.0,3288.0,0.0,0.0,26.0,42.0,0.0,22.0,23.0,25.0,29.0,615.0,30.0,63.0,100.0,15.0,32.0,625.0,44.0,0.0,0.0,136.0,220.0,1031.0,16.0,60.0,285.0,0.0,0.0,664.0,3676.0,295.0,88.0,49.0,23.0,1177.0,139.0,0.0,71.0,0.0,241.0,515.0,113.0,136.0,0.0,6.0,887.0,340.0,199.0,0.0,2054.0,0.0,0.0,0.0,0.0,3241.0,2111.0,910.0,1392.0,16.0,1.0,424.0,25.0,167.0,161.0,37.0,164.0,917.0,0.0,64.0,54.0,0.0,109.0,72.0,403.0,663.0,19.0,49.0,266.0,245.0,98.0,794.0,17.0,27.0,484.0,371.0,1.0,238.0,0.0,86.0,0.0,0.0,508.0,1496.0,116.0,202.0,34.0,0.0,64.0,90.0,204.0,1818181.0,52.0,77.0,192.0,29.0,20.0,2016.0,168.0,23.0,0.0,986.0,59.0,0.0,7.0,89.0,577.0,303.0,221.0,123.0,172.0,94.0,1186.0,978.0,622.0,237.0,3602.0,470.0,412.0,216.0,1624.0,31.0,104.0,227.0,42.0,252.0,103.0,112.0,64.0,333.0,293.0,0.0,836.0,8.0,0.0,4.0,0.0,606.0,18.0,607.0,985.0,0.0,170.0,121.0,18.0,16.0,25.0,43.0,312.0,148.0,0.0,90.0,0.0,83.0,26.0,32.0,103.0,23.0,148.0,56.0,0.0,0.0,62.0,33.0,0.0,74.0,107.0,158.0,0.0,2318.0,56.0,193.0,1197.0,1495.0,34.0,0.0,138.0,8.0,553.0,10.0,11.0,0.0,0.0,0.0,11.0,235.0,0.0,184.0,57.0,2281.0,27.0,341.0,29.0,476.0,69.0,350.0,89.0,16.0,149.0,363.0,0.0,46.0,17.0,49.0,1123.0,998.0,0.0,293.0,0.0,9.0,7.0,38.0,10.0,160.0,1354.0,32.0,505.0,231.0,760.0,7.0,0.0,0.0,0.0,0.0,0.0,24.0,0.0,0.0,0.0,0.0,4.0,3323.0,2736.0,0.0,0.0,0.0,28.0,674.0,95.0,7484.0,0.0,0.0,0.0,0.0,39.0,437.0,40.0,33.0,24.0,0.0,1976.0,289.0,136.0,0.0,0.0,2013-11-17,,2013-46,0.7161265520210565,0.6900000000000001, +160,160,0.77,134.0,0.0,110.0,0.0,945.0,0.0,62.0,78.0,0.0,398.0,0.0,55.0,66.0,0.0,1484.0,115.0,83.0,65.0,2.0,0.0,0.0,0.0,65.0,16.0,1807.0,52.0,746.0,27.0,172.0,0.0,0.0,5.0,1939.0,139.0,670.0,92.0,119.0,93.0,73.0,184.0,170.0,28.0,0.0,3.0,123.0,80.0,108.0,1133.0,9.0,74.0,20.0,1877.0,71.0,112.0,130.0,351.0,1152.0,45.0,134.0,0.0,716.0,213.0,33.0,562.0,26.0,25.0,36.0,133.0,395.0,321.0,0.0,1741.0,365.0,445.0,23.0,34.0,72.0,726.0,59.0,4.0,0.0,28.0,44.0,179.0,146.0,324.0,709.0,0.0,0.0,60.0,561.0,0.0,1737.0,3152.0,3017.0,136.0,475.0,103.0,0.0,0.0,96.0,87.0,1110.0,1361.0,15.0,56.0,0.0,82.0,54.0,174.0,1590.0,8.0,21.0,458.0,142.0,3802.0,0.0,0.0,21.0,36.0,0.0,18.0,18.0,18.0,19.0,683.0,182.0,64.0,64.0,16.0,37.0,610.0,53.0,0.0,0.0,135.0,191.0,1250.0,19.0,34.0,297.0,0.0,0.0,646.0,4654.0,301.0,125.0,46.0,27.0,1041.0,127.0,0.0,88.0,1.0,222.0,604.0,123.0,122.0,0.0,14.0,1156.0,348.0,211.0,0.0,2402.0,0.0,0.0,0.0,0.0,3959.0,1791.0,1095.0,1432.0,33.0,0.0,446.0,14.0,163.0,196.0,42.0,163.0,911.0,0.0,86.0,60.0,0.0,91.0,171.0,457.0,714.0,15.0,47.0,197.0,255.0,117.0,712.0,12.0,35.0,409.0,516.0,2.0,259.0,0.0,72.0,0.0,0.0,468.0,1714.0,90.0,267.0,44.0,0.0,65.0,117.0,220.0,1817817.0,69.0,71.0,122.0,24.0,15.0,1735.0,345.0,15.0,0.0,1199.0,71.0,0.0,6.0,76.0,532.0,321.0,250.0,88.0,144.0,107.0,1271.0,1017.0,616.0,211.0,5573.0,561.0,514.0,258.0,1972.0,30.0,109.0,253.0,43.0,284.0,114.0,111.0,62.0,338.0,338.0,0.0,896.0,5.0,0.0,5.0,0.0,954.0,13.0,611.0,1164.0,0.0,153.0,98.0,10.0,20.0,28.0,27.0,395.0,122.0,0.0,85.0,0.0,94.0,24.0,41.0,113.0,22.0,161.0,61.0,0.0,0.0,61.0,32.0,0.0,55.0,121.0,154.0,0.0,3073.0,57.0,265.0,1641.0,1417.0,62.0,0.0,162.0,4.0,658.0,10.0,15.0,0.0,0.0,0.0,10.0,279.0,0.0,202.0,47.0,2778.0,28.0,304.0,19.0,423.0,71.0,284.0,149.0,30.0,124.0,378.0,0.0,49.0,13.0,41.0,1452.0,1293.0,0.0,337.0,0.0,9.0,18.0,36.0,5.0,115.0,2102.0,14.0,398.0,192.0,710.0,17.0,0.0,0.0,0.0,0.0,0.0,20.0,0.0,0.0,0.0,0.0,4.0,2806.0,2673.0,0.0,0.0,0.0,34.0,538.0,96.0,9742.0,0.0,0.0,0.0,0.0,105.0,380.0,70.0,34.0,17.0,0.0,2306.0,248.0,188.0,0.0,0.0,2013-11-24,,2013-47,0.7527874673950361,0.806, +161,161,0.95,162.0,0.0,146.0,0.0,980.0,0.0,94.0,88.0,0.0,429.0,0.0,70.0,56.0,0.0,1610.0,105.0,110.0,43.0,0.0,0.0,0.0,0.0,80.0,16.0,2282.0,75.0,778.0,33.0,196.0,0.0,0.0,6.0,1782.0,149.0,637.0,120.0,138.0,127.0,65.0,186.0,188.0,48.0,0.0,5.0,175.0,90.0,507.0,1373.0,3.0,77.0,20.0,1783.0,61.0,92.0,110.0,386.0,949.0,24.0,134.0,0.0,930.0,241.0,25.0,584.0,12.0,5.0,26.0,139.0,350.0,296.0,0.0,1705.0,496.0,447.0,22.0,25.0,82.0,666.0,74.0,4.0,0.0,26.0,52.0,142.0,103.0,272.0,704.0,0.0,0.0,82.0,574.0,0.0,1737.0,3304.0,3117.0,229.0,545.0,77.0,0.0,0.0,80.0,97.0,1294.0,1242.0,20.0,72.0,0.0,35.0,38.0,176.0,1363.0,1.0,9.0,583.0,139.0,3317.0,0.0,0.0,20.0,33.0,0.0,15.0,17.0,13.0,17.0,759.0,60.0,87.0,94.0,16.0,34.0,871.0,50.0,0.0,0.0,125.0,256.0,1097.0,18.0,57.0,377.0,0.0,0.0,638.0,4622.0,360.0,126.0,52.0,28.0,1140.0,129.0,0.0,89.0,0.0,191.0,596.0,158.0,161.0,0.0,7.0,1809.0,422.0,193.0,0.0,3012.0,0.0,0.0,0.0,0.0,4538.0,1332.0,1130.0,1302.0,20.0,0.0,499.0,12.0,158.0,192.0,50.0,149.0,1128.0,0.0,170.0,62.0,0.0,201.0,127.0,522.0,690.0,23.0,57.0,200.0,258.0,103.0,637.0,18.0,70.0,443.0,491.0,0.0,241.0,0.0,70.0,0.0,0.0,518.0,1875.0,98.0,250.0,45.0,0.0,45.0,101.0,210.0,1776178.0,74.0,89.0,102.0,27.0,10.0,2072.0,245.0,21.0,0.0,1245.0,49.0,0.0,6.0,72.0,589.0,298.0,270.0,75.0,161.0,116.0,1194.0,1108.0,625.0,214.0,1782.0,768.0,518.0,267.0,1846.0,41.0,135.0,211.0,42.0,296.0,90.0,116.0,68.0,348.0,363.0,0.0,765.0,8.0,0.0,6.0,0.0,784.0,26.0,529.0,1366.0,0.0,158.0,90.0,33.0,13.0,25.0,44.0,447.0,154.0,0.0,100.0,0.0,97.0,26.0,40.0,89.0,18.0,167.0,56.0,0.0,0.0,62.0,32.0,0.0,49.0,173.0,145.0,0.0,2760.0,55.0,150.0,1437.0,1374.0,62.0,0.0,165.0,8.0,629.0,5.0,12.0,0.0,0.0,0.0,7.0,245.0,0.0,210.0,49.0,2930.0,30.0,454.0,24.0,295.0,62.0,291.0,109.0,27.0,162.0,528.0,0.0,65.0,16.0,43.0,1505.0,1342.0,0.0,380.0,0.0,11.0,10.0,42.0,9.0,138.0,2093.0,11.0,373.0,179.0,735.0,13.0,0.0,0.0,39.0,0.0,0.0,17.0,0.0,0.0,0.0,13.0,4.0,2904.0,2868.0,0.0,0.0,0.0,24.0,554.0,95.0,7938.0,0.0,0.0,0.0,0.0,101.0,346.0,69.0,24.0,25.0,0.0,1953.0,238.0,204.0,0.0,0.0,2013-12-01,,2013-48,0.9581239036186187,0.7959999999999999, +162,162,1.23,169.0,0.0,97.0,0.0,633.0,0.0,90.0,84.0,0.0,415.0,0.0,68.0,69.0,0.0,1334.0,133.0,101.0,36.0,0.0,0.0,0.0,0.0,74.0,17.0,1702.0,54.0,703.0,40.0,205.0,0.0,0.0,9.0,1416.0,144.0,676.0,64.0,108.0,172.0,94.0,230.0,198.0,36.0,0.0,6.0,150.0,118.0,512.0,1277.0,6.0,104.0,34.0,1554.0,87.0,87.0,126.0,332.0,698.0,36.0,175.0,0.0,1018.0,232.0,48.0,476.0,26.0,16.0,40.0,116.0,364.0,296.0,0.0,1858.0,482.0,479.0,24.0,37.0,83.0,609.0,80.0,16.0,0.0,27.0,57.0,160.0,98.0,249.0,666.0,0.0,0.0,70.0,580.0,0.0,1733.0,3102.0,3205.0,209.0,588.0,135.0,0.0,0.0,56.0,103.0,1621.0,1284.0,13.0,77.0,0.0,47.0,36.0,164.0,1223.0,2.0,22.0,623.0,144.0,2787.0,0.0,0.0,28.0,62.0,0.0,15.0,13.0,18.0,13.0,812.0,45.0,82.0,101.0,14.0,34.0,642.0,50.0,0.0,0.0,135.0,239.0,885.0,18.0,50.0,340.0,0.0,0.0,718.0,3471.0,258.0,119.0,41.0,27.0,1366.0,159.0,0.0,78.0,0.0,230.0,605.0,122.0,165.0,0.0,9.0,1690.0,516.0,180.0,0.0,2705.0,0.0,0.0,0.0,0.0,4025.0,1311.0,873.0,1110.0,21.0,0.0,473.0,13.0,181.0,191.0,43.0,180.0,1222.0,0.0,187.0,39.0,0.0,110.0,107.0,569.0,695.0,23.0,33.0,178.0,275.0,101.0,591.0,8.0,36.0,338.0,351.0,0.0,215.0,0.0,70.0,0.0,0.0,447.0,1497.0,97.0,281.0,38.0,0.0,53.0,145.0,191.0,1782593.0,83.0,86.0,103.0,16.0,15.0,1861.0,183.0,29.0,0.0,855.0,52.0,0.0,11.0,88.0,554.0,280.0,201.0,105.0,169.0,96.0,950.0,1094.0,570.0,222.0,1555.0,664.0,580.0,288.0,1907.0,55.0,148.0,242.0,40.0,262.0,107.0,121.0,57.0,362.0,343.0,0.0,703.0,7.0,0.0,10.0,0.0,597.0,18.0,521.0,1090.0,0.0,144.0,90.0,10.0,16.0,31.0,31.0,466.0,128.0,0.0,108.0,0.0,121.0,30.0,38.0,117.0,17.0,146.0,55.0,0.0,0.0,49.0,30.0,0.0,54.0,148.0,125.0,0.0,2608.0,47.0,118.0,1140.0,1327.0,67.0,0.0,125.0,8.0,516.0,10.0,17.0,0.0,0.0,0.0,18.0,252.0,0.0,178.0,64.0,2069.0,39.0,377.0,31.0,347.0,79.0,311.0,91.0,30.0,166.0,517.0,0.0,72.0,11.0,44.0,1034.0,1044.0,0.0,391.0,0.0,5.0,18.0,45.0,5.0,148.0,1790.0,16.0,354.0,171.0,638.0,20.0,0.0,0.0,9.0,23.0,0.0,11.0,0.0,0.0,0.0,14.0,4.0,2616.0,2319.0,0.0,0.0,0.0,47.0,444.0,116.0,6498.0,0.0,0.0,0.0,0.0,141.0,395.0,79.0,44.0,21.0,0.0,1742.0,210.0,253.0,0.0,0.0,2013-12-08,,2013-49,1.2162531482400194,1.604, +163,163,1.42,171.0,0.0,118.0,0.0,538.0,0.0,82.0,82.0,0.0,381.0,0.0,62.0,72.0,0.0,1292.0,111.0,112.0,47.0,0.0,0.0,0.0,0.0,65.0,11.0,1932.0,56.0,786.0,49.0,219.0,0.0,0.0,18.0,1273.0,131.0,669.0,88.0,123.0,148.0,74.0,198.0,210.0,36.0,0.0,4.0,141.0,65.0,199.0,1229.0,15.0,122.0,31.0,1495.0,79.0,91.0,128.0,367.0,789.0,32.0,179.0,0.0,749.0,264.0,39.0,529.0,16.0,6.0,31.0,108.0,423.0,342.0,0.0,1542.0,452.0,428.0,24.0,56.0,89.0,584.0,95.0,9.0,0.0,16.0,63.0,208.0,117.0,230.0,675.0,0.0,0.0,84.0,551.0,0.0,1759.0,3450.0,4673.0,186.0,566.0,96.0,0.0,0.0,67.0,134.0,1282.0,1249.0,20.0,61.0,0.0,36.0,46.0,183.0,1310.0,9.0,19.0,707.0,176.0,2957.0,0.0,0.0,21.0,50.0,0.0,9.0,16.0,14.0,15.0,847.0,31.0,69.0,97.0,24.0,25.0,700.0,57.0,0.0,0.0,138.0,248.0,1002.0,12.0,58.0,381.0,0.0,0.0,806.0,3334.0,298.0,104.0,49.0,37.0,1317.0,150.0,16.0,97.0,0.0,252.0,593.0,128.0,144.0,0.0,9.0,1132.0,301.0,164.0,0.0,2009.0,0.0,0.0,0.0,0.0,3629.0,1248.0,876.0,1018.0,34.0,0.0,523.0,12.0,182.0,194.0,38.0,180.0,1194.0,0.0,114.0,55.0,0.0,97.0,111.0,480.0,664.0,29.0,52.0,241.0,257.0,105.0,594.0,15.0,41.0,450.0,348.0,46.0,222.0,0.0,57.0,0.0,0.0,411.0,1464.0,88.0,209.0,43.0,0.0,56.0,116.0,209.0,2054160.0,68.0,119.0,95.0,20.0,15.0,1950.0,231.0,166.0,0.0,1104.0,118.0,0.0,6.0,59.0,623.0,289.0,198.0,90.0,197.0,133.0,850.0,953.0,619.0,290.0,1390.0,582.0,480.0,275.0,2014.0,73.0,167.0,315.0,58.0,295.0,88.0,141.0,66.0,377.0,339.0,0.0,741.0,8.0,0.0,8.0,0.0,630.0,21.0,560.0,1108.0,0.0,194.0,126.0,22.0,24.0,34.0,47.0,462.0,133.0,0.0,115.0,0.0,136.0,26.0,36.0,100.0,14.0,169.0,56.0,0.0,0.0,61.0,36.0,0.0,56.0,160.0,185.0,0.0,2138.0,60.0,120.0,1125.0,1303.0,77.0,0.0,167.0,9.0,570.0,13.0,10.0,0.0,0.0,0.0,8.0,250.0,0.0,234.0,57.0,2054.0,31.0,393.0,27.0,295.0,80.0,291.0,110.0,37.0,163.0,456.0,0.0,46.0,18.0,43.0,1153.0,1054.0,0.0,593.0,0.0,11.0,15.0,46.0,10.0,180.0,1419.0,15.0,310.0,165.0,633.0,174.0,0.0,11.0,23.0,12.0,0.0,88.0,0.0,0.0,0.0,12.0,5.0,2708.0,2544.0,0.0,0.0,0.0,45.0,319.0,90.0,6645.0,0.0,0.0,0.0,0.0,109.0,402.0,90.0,52.0,26.0,0.0,1842.0,252.0,251.0,0.0,0.0,2013-12-15,,2013-50,1.430766653003996,1.9100000000000001, +164,164,1.71,159.0,0.0,115.0,0.0,474.0,0.0,80.0,64.0,0.0,352.0,0.0,54.0,58.0,0.0,1218.0,121.0,108.0,40.0,1.0,0.0,0.0,0.0,76.0,12.0,1777.0,45.0,785.0,24.0,227.0,0.0,0.0,11.0,1106.0,113.0,592.0,163.0,134.0,143.0,87.0,166.0,178.0,65.0,0.0,4.0,141.0,49.0,127.0,1030.0,14.0,83.0,30.0,1397.0,97.0,108.0,128.0,312.0,692.0,47.0,182.0,0.0,540.0,212.0,40.0,487.0,21.0,10.0,35.0,127.0,356.0,304.0,0.0,1276.0,339.0,419.0,16.0,37.0,74.0,611.0,81.0,9.0,0.0,29.0,56.0,172.0,92.0,166.0,645.0,0.0,0.0,70.0,421.0,0.0,1759.0,3174.0,4220.0,172.0,484.0,113.0,0.0,0.0,68.0,130.0,1074.0,1161.0,25.0,62.0,0.0,40.0,53.0,189.0,1115.0,3.0,27.0,747.0,173.0,2625.0,0.0,0.0,22.0,40.0,0.0,25.0,24.0,20.0,14.0,663.0,40.0,81.0,136.0,20.0,31.0,520.0,49.0,0.0,0.0,147.0,220.0,898.0,13.0,63.0,284.0,0.0,0.0,700.0,3019.0,281.0,83.0,45.0,21.0,1007.0,117.0,219.0,99.0,1.0,227.0,545.0,138.0,110.0,0.0,15.0,1079.0,302.0,186.0,0.0,1908.0,0.0,0.0,0.0,0.0,2409.0,1271.0,880.0,780.0,23.0,1.0,436.0,15.0,158.0,159.0,29.0,118.0,871.0,0.0,111.0,67.0,0.0,121.0,115.0,457.0,594.0,23.0,52.0,196.0,240.0,93.0,627.0,11.0,34.0,406.0,301.0,132.0,167.0,0.0,54.0,0.0,0.0,358.0,1421.0,100.0,187.0,45.0,0.0,56.0,118.0,198.0,2236312.0,64.0,84.0,102.0,32.0,8.0,1546.0,177.0,60.0,0.0,1024.0,75.0,0.0,14.0,72.0,477.0,283.0,221.0,78.0,171.0,96.0,820.0,757.0,555.0,131.0,3041.0,528.0,393.0,274.0,1763.0,52.0,119.0,283.0,38.0,300.0,102.0,105.0,101.0,340.0,356.0,0.0,668.0,12.0,0.0,4.0,0.0,514.0,24.0,1133.0,885.0,0.0,146.0,109.0,16.0,19.0,44.0,53.0,379.0,177.0,0.0,134.0,0.0,137.0,43.0,36.0,92.0,13.0,218.0,73.0,0.0,0.0,100.0,30.0,0.0,50.0,244.0,185.0,0.0,2062.0,66.0,91.0,956.0,1058.0,75.0,0.0,161.0,6.0,454.0,6.0,9.0,0.0,0.0,0.0,19.0,232.0,0.0,198.0,62.0,1896.0,33.0,396.0,20.0,231.0,58.0,266.0,107.0,37.0,183.0,388.0,0.0,40.0,14.0,40.0,968.0,892.0,0.0,327.0,0.0,3.0,10.0,49.0,15.0,168.0,954.0,23.0,308.0,149.0,519.0,38.0,0.0,17.0,16.0,7.0,41.0,21.0,0.0,0.0,0.0,10.0,3.0,2104.0,2229.0,0.0,0.0,0.0,33.0,235.0,85.0,5713.0,0.0,0.0,0.0,0.0,128.0,321.0,65.0,47.0,23.0,0.0,1610.0,230.0,237.0,0.0,0.0,2013-12-22,,2013-51,1.6808733697312679,2.134, +165,165,1.95,116.0,0.0,87.0,0.0,399.0,0.0,68.0,75.0,0.0,269.0,0.0,67.0,48.0,0.0,1147.0,79.0,61.0,30.0,2.0,0.0,0.0,0.0,63.0,13.0,1770.0,29.0,658.0,31.0,203.0,0.0,0.0,15.0,981.0,120.0,534.0,62.0,105.0,103.0,64.0,163.0,163.0,50.0,0.0,3.0,93.0,56.0,96.0,946.0,6.0,106.0,22.0,1189.0,85.0,87.0,101.0,270.0,583.0,55.0,107.0,0.0,421.0,188.0,46.0,486.0,21.0,17.0,38.0,92.0,280.0,267.0,0.0,1069.0,283.0,358.0,25.0,25.0,61.0,501.0,74.0,10.0,0.0,26.0,46.0,119.0,85.0,137.0,712.0,0.0,0.0,102.0,333.0,0.0,1704.0,2722.0,3087.0,171.0,432.0,71.0,0.0,0.0,43.0,99.0,890.0,798.0,17.0,49.0,0.0,29.0,47.0,122.0,1060.0,6.0,19.0,462.0,197.0,2388.0,0.0,0.0,23.0,32.0,0.0,13.0,8.0,23.0,8.0,526.0,37.0,72.0,75.0,24.0,29.0,710.0,52.0,0.0,0.0,114.0,130.0,719.0,15.0,52.0,216.0,0.0,0.0,547.0,2351.0,256.0,73.0,40.0,25.0,686.0,144.0,170.0,84.0,1.0,170.0,426.0,110.0,78.0,0.0,12.0,794.0,235.0,135.0,0.0,1468.0,0.0,0.0,0.0,0.0,2135.0,1253.0,771.0,970.0,17.0,0.0,716.0,6.0,124.0,158.0,28.0,120.0,670.0,0.0,71.0,40.0,0.0,91.0,71.0,366.0,427.0,23.0,48.0,162.0,242.0,67.0,399.0,8.0,16.0,422.0,193.0,228.0,123.0,0.0,61.0,0.0,0.0,306.0,1080.0,112.0,223.0,44.0,0.0,55.0,100.0,191.0,1950982.0,48.0,66.0,88.0,32.0,32.0,1060.0,180.0,60.0,0.0,847.0,61.0,0.0,7.0,70.0,435.0,231.0,165.0,59.0,134.0,89.0,693.0,567.0,442.0,116.0,1130.0,519.0,372.0,294.0,1842.0,35.0,118.0,203.0,40.0,237.0,88.0,118.0,94.0,315.0,305.0,0.0,559.0,8.0,0.0,7.0,0.0,412.0,18.0,512.0,760.0,0.0,127.0,99.0,11.0,17.0,33.0,49.0,279.0,114.0,0.0,112.0,0.0,128.0,25.0,45.0,69.0,16.0,164.0,57.0,0.0,0.0,76.0,25.0,0.0,47.0,162.0,145.0,0.0,1778.0,71.0,83.0,849.0,745.0,76.0,0.0,142.0,14.0,449.0,10.0,29.0,0.0,0.0,0.0,15.0,182.0,0.0,141.0,46.0,1610.0,32.0,358.0,24.0,218.0,61.0,208.0,86.0,27.0,147.0,304.0,0.0,36.0,16.0,43.0,785.0,689.0,0.0,235.0,0.0,7.0,14.0,39.0,11.0,147.0,526.0,20.0,281.0,156.0,479.0,33.0,0.0,11.0,11.0,11.0,15.0,19.0,0.0,0.0,0.0,16.0,8.0,1712.0,1596.0,0.0,0.0,0.0,40.0,193.0,52.0,4636.0,0.0,0.0,0.0,0.0,121.0,291.0,87.0,37.0,24.0,0.0,1345.0,175.0,134.0,0.0,0.0,2013-12-29,,2013-52,1.972643213075008,1.9500000000000002, +166,166,2.23,84.0,0.0,89.0,0.0,392.0,0.0,39.0,52.0,0.0,217.0,0.0,43.0,47.0,0.0,901.0,64.0,56.0,34.0,0.0,0.0,0.0,0.0,45.0,10.0,1749.0,20.0,634.0,22.0,193.0,0.0,0.0,10.0,655.0,96.0,368.0,44.0,87.0,88.0,37.0,127.0,128.0,25.0,0.0,9.0,40.0,46.0,64.0,2132.0,8.0,157.0,23.0,994.0,66.0,71.0,93.0,202.0,625.0,33.0,131.0,0.0,350.0,145.0,31.0,345.0,21.0,9.0,24.0,73.0,243.0,150.0,0.0,811.0,189.0,274.0,18.0,21.0,47.0,406.0,51.0,9.0,0.0,21.0,45.0,117.0,63.0,105.0,454.0,0.0,0.0,64.0,284.0,0.0,1016.0,1705.0,2082.0,106.0,303.0,90.0,0.0,0.0,62.0,83.0,760.0,769.0,23.0,33.0,0.0,19.0,29.0,78.0,902.0,7.0,12.0,360.0,161.0,2432.0,0.0,0.0,18.0,32.0,0.0,25.0,18.0,24.0,8.0,573.0,35.0,55.0,64.0,17.0,19.0,481.0,32.0,0.0,0.0,69.0,148.0,681.0,6.0,26.0,181.0,0.0,0.0,765.0,1529.0,175.0,63.0,49.0,23.0,727.0,89.0,124.0,48.0,0.0,162.0,405.0,66.0,37.0,1.0,16.0,720.0,154.0,103.0,0.0,1412.0,0.0,0.0,0.0,0.0,1741.0,1002.0,675.0,570.0,28.0,1.0,220.0,14.0,130.0,133.0,22.0,81.0,521.0,0.0,54.0,62.0,1.0,106.0,42.0,382.0,335.0,24.0,36.0,130.0,177.0,61.0,319.0,12.0,30.0,350.0,163.0,185.0,114.0,0.0,45.0,0.0,0.0,241.0,888.0,73.0,162.0,27.0,0.0,68.0,55.0,139.0,1794778.0,37.0,73.0,83.0,23.0,19.0,652.0,167.0,59.0,0.0,767.0,59.0,0.0,8.0,39.0,361.0,177.0,129.0,39.0,58.0,66.0,575.0,463.0,303.0,104.0,1071.0,380.0,367.0,283.0,1800.0,27.0,90.0,161.0,34.0,183.0,63.0,79.0,51.0,305.0,271.0,0.0,481.0,16.0,0.0,4.0,0.0,358.0,14.0,337.0,619.0,0.0,85.0,67.0,14.0,14.0,18.0,31.0,221.0,109.0,0.0,90.0,0.0,79.0,29.0,34.0,66.0,19.0,147.0,45.0,0.0,0.0,50.0,23.0,0.0,36.0,87.0,103.0,0.0,1625.0,42.0,90.0,749.0,469.0,61.0,0.0,107.0,5.0,279.0,9.0,34.0,0.0,0.0,1.0,4.0,162.0,0.0,79.0,46.0,1252.0,30.0,262.0,27.0,142.0,55.0,168.0,64.0,27.0,123.0,190.0,0.0,73.0,19.0,22.0,607.0,522.0,0.0,364.0,0.0,7.0,13.0,31.0,4.0,109.0,336.0,12.0,232.0,130.0,294.0,49.0,0.0,13.0,18.0,7.0,5.0,17.0,0.0,0.0,0.0,14.0,2.0,1502.0,1248.0,0.0,0.0,0.0,17.0,232.0,40.0,2602.0,0.0,0.0,0.0,0.0,120.0,274.0,81.0,38.0,9.0,0.0,1357.0,146.0,104.0,0.0,0.0,2014-01-05,,2014-1,2.2048944968514483,1.7460000000000002, +167,167,2.96,112.0,0.0,90.0,0.0,400.0,1.0,38.0,54.0,0.0,263.0,0.0,64.0,38.0,0.0,830.0,94.0,57.0,26.0,1.0,0.0,0.0,0.0,62.0,10.0,2014.0,29.0,607.0,24.0,173.0,0.0,0.0,14.0,724.0,173.0,399.0,48.0,94.0,153.0,63.0,119.0,139.0,31.0,0.0,1.0,79.0,65.0,82.0,749.0,9.0,98.0,16.0,1077.0,59.0,67.0,105.0,224.0,663.0,26.0,111.0,0.0,430.0,163.0,39.0,377.0,20.0,12.0,27.0,103.0,244.0,193.0,8.0,841.0,255.0,328.0,14.0,36.0,38.0,459.0,51.0,18.0,4.0,21.0,51.0,127.0,78.0,129.0,505.0,9.0,0.0,67.0,381.0,0.0,1074.0,1852.0,2083.0,131.0,370.0,84.0,341.0,0.0,73.0,91.0,646.0,792.0,30.0,42.0,0.0,29.0,31.0,100.0,943.0,4.0,23.0,352.0,167.0,2416.0,14.0,0.0,14.0,43.0,0.0,18.0,15.0,23.0,14.0,507.0,33.0,51.0,124.0,14.0,28.0,508.0,40.4,0.0,0.0,87.0,111.0,987.0,18.0,41.6,182.0,0.0,0.0,489.0,1830.0,188.0,45.0,39.0,40.0,873.0,133.0,273.0,53.0,0.0,142.0,431.0,81.0,63.0,1.0,6.0,2521.0,208.0,113.0,0.0,1223.0,0.0,0.0,0.0,0.0,1524.0,1087.0,758.0,688.0,19.0,1.0,222.0,13.0,124.0,111.0,23.0,88.0,553.0,5.0,54.0,52.0,0.0,117.0,71.0,288.0,391.0,31.0,47.0,160.0,201.0,86.0,331.0,18.0,26.0,320.0,169.0,170.0,120.0,0.0,54.0,0.0,0.0,222.0,996.0,87.0,160.0,40.0,0.0,66.8,89.0,149.0,1765034.0,55.0,83.0,124.0,22.0,13.0,738.0,172.0,91.0,0.0,746.0,93.0,0.0,9.0,62.0,322.0,175.0,148.0,68.0,82.0,77.0,616.0,524.0,368.0,133.0,1072.0,425.0,229.0,266.0,1747.0,31.66666666666667,101.0,171.0,41.0,199.0,77.0,96.0,64.8,289.0,278.0,0.0,508.0,13.0,0.0,8.0,0.0,308.0,21.0,346.0,684.0,0.0,108.0,82.0,16.0,10.0,22.0,40.0,235.0,123.0,6.0,112.0,0.0,95.0,29.0,33.0,80.0,31.0,179.0,39.0,9.0,0.0,56.0,29.0,0.0,43.0,149.0,115.0,0.0,1429.0,62.0,148.0,698.0,478.0,80.0,0.0,127.0,2.0,339.0,8.0,28.0,0.0,0.0,0.0,6.0,180.0,0.0,131.0,44.0,1321.0,31.0,360.0,24.0,175.0,50.0,248.0,84.0,26.0,122.0,163.0,0.0,121.0,16.0,29.0,646.0,683.0,0.0,204.0,10.0,16.0,15.0,42.0,8.0,132.0,297.0,18.0,273.0,156.0,358.0,56.0,0.0,16.0,25.0,19.0,13.0,35.0,0.0,0.0,0.0,9.0,5.0,1720.25,1430.0,0.0,9.0,0.0,23.0,456.0,56.0,2684.0,0.0,0.0,9.0,0.0,75.0,296.0,69.0,32.0,19.0,0.0,1201.0,148.0,96.0,0.0,0.0,2014-01-12,,2014-2,2.9694776956383615,2.158, +168,168,4.12,161.0,0.0,106.0,0.0,499.0,0.0,91.0,64.0,0.0,361.0,0.0,61.0,50.0,0.0,1303.0,130.0,114.0,45.0,1.0,0.0,0.0,0.0,69.0,11.0,2626.0,24.0,734.0,41.0,352.0,0.0,0.0,10.0,1148.0,175.0,665.0,141.0,144.0,152.0,87.0,202.0,345.0,35.0,0.0,2.0,103.0,63.0,85.0,1182.0,10.0,115.0,30.0,1516.0,103.0,79.0,116.0,322.0,732.0,37.0,124.0,0.0,545.0,282.0,47.0,518.0,17.0,4.0,33.0,120.0,395.0,269.0,0.0,1274.0,393.0,452.0,18.0,65.0,60.0,594.0,75.0,8.0,0.0,23.0,70.0,166.0,108.0,194.0,667.0,1.0,0.0,97.0,429.0,0.0,1603.0,2954.0,3069.0,164.0,562.0,79.0,0.0,0.0,82.0,143.0,959.0,949.0,30.0,59.0,0.0,35.0,60.0,170.0,1274.0,3.0,29.0,483.0,224.0,3243.0,0.0,0.0,25.0,47.0,0.0,24.0,17.0,22.0,20.0,718.0,44.0,78.0,137.0,14.0,27.0,752.0,48.8,0.0,0.0,163.0,184.0,961.0,24.0,57.2,302.0,0.0,0.0,727.0,2921.0,314.0,105.0,59.0,29.0,1038.0,184.0,362.0,82.0,1.0,219.0,685.0,150.0,114.0,0.0,13.0,1148.0,283.0,209.0,0.0,1749.0,0.0,0.0,0.0,0.0,2494.0,1462.0,1101.0,949.0,35.0,0.0,343.0,21.0,151.0,207.0,37.0,118.0,870.0,0.0,191.0,58.0,0.0,157.0,76.0,435.0,598.0,28.0,82.0,181.0,286.0,122.0,522.0,17.0,27.0,369.0,263.0,298.0,140.0,0.0,60.0,0.0,0.0,326.0,1501.0,98.0,223.0,36.0,0.0,65.6,140.0,218.0,2532413.0,68.0,114.0,147.0,28.0,14.0,1156.0,202.0,88.0,0.0,905.0,107.0,0.0,9.0,80.0,399.0,226.0,193.0,78.0,125.0,111.0,973.0,728.0,663.0,146.0,1342.0,595.0,330.0,317.0,1988.0,36.333333333333336,221.0,374.0,59.0,423.0,105.0,174.0,78.6,365.0,321.0,0.0,636.0,9.0,0.0,2.0,0.0,436.0,18.0,503.0,929.0,0.0,152.0,90.0,24.0,17.0,35.0,31.0,377.0,131.0,0.0,103.0,0.0,133.0,74.0,38.0,90.0,31.0,218.0,59.0,0.0,0.0,66.0,22.0,0.0,45.0,189.0,179.0,0.0,2351.0,61.0,110.0,941.0,1000.0,131.0,0.0,133.0,14.0,446.0,25.0,50.0,0.0,0.0,0.0,6.0,258.0,0.0,198.0,62.0,1955.0,33.0,471.0,29.0,259.0,73.0,329.0,92.0,29.0,168.0,220.0,0.0,40.0,12.0,35.0,1288.0,913.0,0.0,385.0,0.0,6.0,13.0,71.0,10.0,231.0,335.0,19.0,412.0,218.0,533.0,99.0,0.0,8.0,12.0,5.0,6.0,33.0,0.0,0.0,0.0,14.0,10.0,1938.5,2510.0,0.0,0.0,0.0,41.0,250.0,70.0,4989.0,0.0,0.0,0.0,0.0,111.0,360.0,79.0,41.0,24.0,0.0,1482.0,244.0,152.0,0.0,0.0,2014-01-19,,2014-3,4.1327885748782425,3.936000000000001, +169,169,5.05,199.0,0.0,143.0,0.0,616.0,0.0,125.0,96.0,0.0,423.0,0.0,69.0,72.0,0.0,1495.0,129.0,144.0,58.0,0.0,0.0,0.0,0.0,75.0,10.0,2748.0,40.0,901.0,35.0,489.0,0.0,0.0,15.0,1222.0,189.0,773.0,96.0,169.0,129.0,102.0,154.0,275.0,41.0,0.0,2.0,129.0,82.0,101.0,2026.0,9.0,144.0,36.0,1941.0,128.0,146.0,122.0,474.0,740.0,34.0,167.0,0.0,694.0,262.0,44.0,663.0,20.0,7.0,37.0,123.0,474.0,347.0,0.0,1484.0,431.0,544.0,23.0,31.0,59.0,715.0,88.0,14.0,0.0,31.0,77.0,185.0,127.0,206.0,825.0,0.0,0.0,111.0,611.0,0.0,1775.0,3422.0,3548.0,230.0,607.0,139.0,0.0,0.0,99.0,138.0,1125.0,1183.0,24.0,71.0,0.0,55.0,58.0,229.0,1314.0,7.0,30.0,583.0,211.0,3544.0,0.0,0.0,34.0,54.0,0.0,17.0,26.0,29.0,23.0,842.0,44.0,89.0,130.0,18.0,30.0,686.0,57.2,0.0,0.0,218.0,224.0,1154.0,13.0,72.8,344.0,0.0,0.0,821.0,3311.0,409.0,111.0,64.0,31.0,1306.0,774.0,2912.0,111.0,0.0,264.0,631.0,150.0,149.0,0.0,10.0,1005.0,325.0,193.0,0.0,2185.0,0.0,0.0,0.0,0.0,2785.0,1802.0,1336.0,857.0,27.0,2.0,376.0,19.0,207.0,189.0,48.0,204.0,1071.0,0.0,115.0,76.0,0.0,147.0,77.0,626.0,674.0,35.0,93.0,270.0,344.0,147.0,754.0,14.0,33.0,561.0,319.0,458.0,173.0,0.0,70.0,0.0,0.0,486.0,1669.0,114.0,244.0,41.0,0.0,64.4,157.0,281.0,3343864.0,60.0,396.0,526.0,29.0,19.0,1429.0,323.0,101.0,0.0,1107.0,105.0,0.0,16.0,106.0,557.0,259.0,249.0,105.0,145.0,154.0,1086.0,928.0,729.0,150.0,2071.0,728.0,418.0,307.0,1840.0,41.0,204.0,391.0,62.0,736.0,119.0,166.0,92.4,433.0,365.0,0.0,775.0,6.0,0.0,9.0,0.0,513.0,19.0,653.0,1122.0,0.0,195.0,147.0,25.0,14.0,23.0,56.0,434.0,185.0,3.0,174.0,0.0,186.0,45.0,56.0,116.0,31.0,272.0,86.0,0.0,0.0,81.0,46.0,0.0,60.0,229.0,212.0,0.0,4160.0,66.0,127.0,1006.0,1234.0,140.0,0.0,189.0,8.0,658.0,9.0,61.0,0.0,0.0,1.0,9.0,296.0,0.0,249.0,64.0,2174.0,34.0,614.0,27.0,348.0,80.0,383.0,132.0,34.0,195.0,313.0,0.0,52.0,19.0,38.0,1247.0,969.0,0.0,471.0,0.0,13.0,25.0,77.0,8.0,267.0,606.0,27.0,460.0,315.0,648.0,87.0,0.0,11.0,26.0,8.0,12.0,38.0,0.0,0.0,0.0,16.0,5.0,2156.75,2736.0,0.0,0.0,0.0,40.0,293.0,57.0,5854.0,0.0,0.0,0.0,0.0,99.0,391.0,88.0,52.0,35.0,0.0,1611.0,262.0,150.0,0.0,0.0,2014-01-26,,2014-4,5.044070189485128,6.800000000000001, +170,170,5.79,152.0,0.0,125.0,0.0,605.0,0.0,95.0,76.0,0.0,441.0,0.0,78.0,64.0,0.0,1425.0,144.0,136.0,51.0,0.0,0.0,0.0,0.0,109.0,6.0,2699.0,35.0,915.0,29.0,264.0,0.0,0.0,12.0,1180.0,157.0,711.0,102.0,151.0,161.0,89.0,190.0,273.0,62.0,0.0,3.0,135.0,69.0,91.0,4039.0,8.0,134.0,37.0,1890.0,139.0,118.0,136.0,335.0,766.0,51.0,159.0,0.0,692.0,250.0,62.0,623.0,22.0,16.0,39.0,126.0,373.0,422.0,0.0,1541.0,443.0,536.0,24.0,42.0,65.0,623.0,83.0,8.0,0.0,29.0,55.0,158.0,158.0,209.0,882.0,1.0,0.0,96.0,551.0,0.0,2045.0,3697.0,3449.0,235.0,599.0,113.0,0.0,0.0,100.0,141.0,1158.0,1245.0,20.0,68.0,0.0,57.0,73.0,219.0,1273.0,8.0,32.0,542.0,207.0,3653.0,0.0,0.0,25.0,68.0,0.0,19.0,26.0,28.0,15.0,847.0,62.0,107.0,119.0,14.0,30.0,607.0,65.6,0.0,0.0,165.0,192.0,1107.0,20.0,88.4,309.0,0.0,0.0,800.0,3433.0,376.0,102.0,41.0,28.0,962.0,308.0,512.0,117.0,0.0,245.0,581.0,148.0,146.0,0.0,9.0,1143.0,292.0,214.0,0.0,2163.0,0.0,0.0,0.0,0.0,2610.0,2037.0,1170.0,992.0,27.0,1.0,429.0,18.0,223.0,237.0,30.0,167.0,967.0,0.0,123.0,86.0,0.0,150.0,77.0,462.0,653.0,32.0,95.0,235.0,346.0,1127.0,630.0,14.0,43.0,419.0,302.0,408.0,129.0,0.0,70.0,0.0,0.0,468.0,1652.0,103.0,275.0,32.0,0.0,63.2,151.0,253.0,2716834.0,76.0,91.0,241.0,24.0,18.0,1420.0,251.0,101.0,0.0,1211.0,68.0,0.0,22.0,88.0,439.0,252.0,228.0,101.0,184.0,151.0,1067.0,883.0,715.0,219.0,1699.0,717.0,513.0,365.0,1951.0,45.66666666666667,175.0,352.0,55.0,377.0,140.0,128.0,106.2,435.0,393.0,0.0,755.0,9.0,0.0,2.0,0.0,491.0,23.0,585.0,1105.0,0.0,189.0,117.0,17.0,23.0,30.0,61.0,412.0,184.0,0.0,152.0,0.0,157.0,34.0,41.0,129.0,25.0,263.0,75.0,0.0,0.0,90.0,23.0,0.0,56.0,208.0,196.0,0.0,2404.0,89.0,91.0,906.0,1146.0,135.0,0.0,188.0,7.0,646.0,12.0,122.0,0.0,0.0,0.0,4.0,291.0,0.0,254.0,42.0,2166.0,39.0,847.0,33.0,259.0,73.0,383.0,108.0,31.0,176.0,276.0,0.0,44.0,16.0,51.0,1114.0,1063.0,0.0,509.0,0.0,8.0,26.0,79.0,10.0,240.0,268.0,18.0,526.0,366.0,658.0,92.0,0.0,12.0,20.0,7.0,8.0,46.0,0.0,0.0,0.0,10.0,7.0,2375.0,2554.0,0.0,0.0,0.0,39.0,241.0,74.0,5821.0,0.0,0.0,0.0,0.0,84.0,416.0,80.0,58.0,27.0,0.0,1544.0,241.0,141.0,0.0,0.0,2014-02-02,,2014-5,5.765505595402029,4.8100000000000005, +171,171,6.55,206.0,0.0,119.0,0.0,519.0,0.0,80.0,85.0,0.0,545.0,0.0,72.0,71.0,0.0,1376.0,130.0,118.0,56.0,0.0,0.0,0.0,0.0,90.0,3.0,2705.0,35.0,902.0,29.0,342.0,0.0,0.0,14.0,1147.0,150.0,756.0,119.0,155.0,185.0,116.0,123.0,265.0,64.0,0.0,0.0,99.0,61.0,82.0,1858.0,6.0,136.0,33.0,1854.0,148.0,109.0,145.0,318.0,733.0,42.0,148.0,0.0,963.0,299.0,43.0,665.0,27.0,10.0,40.0,125.0,426.0,332.0,0.0,1525.0,476.0,577.0,22.0,48.0,92.0,733.0,74.0,11.0,0.0,32.0,57.0,180.0,102.0,170.0,851.0,0.0,0.0,98.0,531.0,0.0,1778.0,3670.0,3432.0,278.0,598.0,129.0,0.0,0.0,99.0,168.0,1159.0,1193.0,20.0,77.0,0.0,52.0,57.0,240.0,1202.0,7.0,27.0,704.0,164.0,3967.0,0.0,0.0,39.0,62.0,0.0,69.0,19.0,29.0,21.0,716.0,56.0,64.0,83.0,27.0,40.0,637.0,74.0,0.0,0.0,192.0,232.0,1160.0,13.0,104.0,314.0,0.0,0.0,791.0,3440.0,391.0,143.0,92.0,40.0,998.0,316.0,469.0,76.0,0.0,237.0,606.0,133.0,139.0,0.0,7.0,1314.0,300.0,197.0,0.0,2235.0,0.0,0.0,0.0,0.0,2500.0,1857.0,1192.0,937.0,21.0,0.0,367.0,20.0,180.0,223.0,38.0,146.0,1059.0,0.0,143.0,60.0,1.0,139.0,89.0,463.0,600.0,40.0,85.0,250.0,336.0,1866.0,547.0,16.0,46.0,408.0,341.0,431.0,163.0,0.0,69.0,0.0,0.0,414.0,1674.0,138.0,316.0,61.0,0.0,62.0,162.0,299.0,2577921.0,73.0,111.0,219.0,31.0,11.0,1562.0,230.0,98.0,0.0,1248.0,117.0,0.0,11.0,80.0,632.0,239.0,242.0,98.0,158.0,146.0,1019.0,857.0,680.0,210.0,1628.0,703.0,442.0,357.0,1931.0,50.33333333333334,184.0,374.0,46.0,382.0,109.0,133.0,120.0,457.0,373.0,0.0,765.0,9.0,0.0,6.0,0.0,441.0,12.0,572.0,1007.0,0.0,184.0,125.0,12.0,17.0,26.0,65.0,449.0,192.0,0.0,186.0,0.0,180.0,37.0,55.0,76.0,27.0,286.0,86.0,0.0,0.0,84.0,33.0,0.0,54.0,206.0,189.0,0.0,2743.0,74.0,98.0,912.0,1160.0,143.0,0.0,229.0,9.0,636.0,14.0,26.0,0.0,0.0,0.0,6.0,266.0,0.0,266.0,69.0,2159.0,46.0,1681.0,31.0,220.0,48.0,327.0,129.0,34.0,153.0,285.0,0.0,48.0,16.0,45.0,1128.0,1096.0,0.0,431.0,0.0,8.0,16.0,57.0,10.0,242.0,269.0,13.0,476.0,368.0,624.0,108.0,0.0,6.0,16.0,8.0,5.0,48.0,0.0,0.0,0.0,9.0,3.0,2299.0,2880.0,0.0,0.0,0.0,33.0,204.0,102.0,5794.0,0.0,0.0,0.0,0.0,95.0,408.0,104.0,41.0,27.0,0.0,1561.0,301.0,178.0,0.0,0.0,2014-02-09,,2014-6,6.566670401460584,5.9, +172,172,6.67,178.0,0.0,161.0,0.0,521.0,0.0,105.0,66.0,0.0,426.0,0.0,56.0,59.0,0.0,1505.0,136.0,132.0,47.0,1.0,0.0,0.0,0.0,98.0,15.0,2767.0,33.0,871.0,29.0,244.0,0.0,0.0,4.0,1239.0,764.0,756.0,81.0,152.0,148.0,92.0,163.0,210.0,72.0,0.0,1.0,126.0,91.0,113.0,1564.0,5.0,110.0,27.0,1911.0,132.0,115.0,120.0,342.0,835.0,43.0,150.0,0.0,741.0,285.0,52.0,704.0,24.0,19.0,34.0,144.0,482.0,377.0,0.0,1506.0,423.0,553.0,30.0,38.0,88.0,656.0,91.0,8.0,0.0,24.0,68.0,154.0,127.0,176.0,808.0,0.0,0.0,104.0,547.0,0.0,1880.0,3626.0,3603.0,239.0,680.0,138.0,0.0,0.0,129.0,141.0,1181.0,1182.0,24.0,90.0,0.0,63.0,50.0,219.0,1265.0,5.0,23.0,720.0,181.0,3871.0,0.0,0.0,27.0,51.0,0.0,34.0,16.0,18.0,26.0,1121.0,52.0,98.0,109.0,13.0,43.0,893.0,58.0,0.0,0.0,195.0,200.0,1108.0,31.0,91.0,303.0,0.0,0.0,863.0,3417.0,436.0,84.0,58.0,39.0,1004.0,288.0,445.0,96.0,0.0,218.0,589.0,116.0,145.0,2.0,11.0,1097.0,259.0,193.0,0.0,2179.0,0.0,0.0,0.0,0.0,2547.0,1517.0,1194.0,904.0,28.0,0.0,411.0,9.0,183.0,206.0,35.0,180.0,1033.0,0.0,134.0,75.0,1.0,165.0,88.0,556.0,582.0,28.0,98.0,230.0,346.0,1009.0,542.0,13.0,43.0,457.0,307.0,429.0,147.0,0.0,69.0,0.0,0.0,403.0,1837.0,111.0,250.0,42.0,0.0,61.0,183.0,266.0,2075174.0,63.0,110.0,213.0,39.0,9.0,1632.0,254.0,124.0,0.0,1098.0,105.0,0.0,12.0,147.0,546.0,241.0,228.0,94.0,159.0,167.0,1088.0,888.0,675.0,203.0,1984.0,840.0,452.0,330.0,1975.0,55.0,172.0,376.0,59.0,397.0,90.0,145.0,129.0,469.0,390.0,0.0,754.0,13.0,0.0,4.0,0.0,431.0,18.0,567.0,1106.0,1.0,181.0,140.0,14.0,22.0,26.0,61.0,433.0,186.0,0.0,139.0,0.0,183.0,36.0,33.0,66.0,43.0,256.0,100.0,0.0,0.0,54.0,34.0,0.0,45.0,160.0,165.0,0.0,2521.0,93.0,74.0,911.0,1162.0,83.0,0.0,233.0,9.0,634.0,11.0,38.0,0.0,0.0,0.0,10.0,316.0,0.0,254.0,57.0,2237.0,40.0,672.0,35.0,248.0,67.0,323.0,121.0,33.0,187.0,340.0,0.0,448.0,23.0,40.0,1191.0,1073.0,0.0,413.0,0.0,9.0,21.0,85.0,11.0,212.0,290.0,18.0,464.0,366.0,625.0,80.0,0.0,8.0,15.0,8.0,5.0,46.0,0.0,0.0,0.0,13.0,4.0,2341.0,2972.0,0.0,0.0,0.0,38.0,217.0,90.0,6004.0,0.0,0.0,0.0,0.0,102.0,352.0,631.0,64.0,45.0,0.0,1594.0,296.0,181.0,0.0,0.0,2014-02-16,,2014-7,6.6635783141969505,6.646, +173,173,6.27,189.0,0.0,134.0,0.0,503.0,0.0,85.0,82.0,0.0,417.0,0.0,76.0,49.0,0.0,1637.0,134.0,122.0,34.0,2.0,0.0,0.0,0.0,104.0,10.0,2772.0,36.0,849.0,31.0,309.0,0.0,0.0,12.0,1330.0,233.0,642.0,68.0,135.0,110.0,83.0,168.0,188.0,50.0,0.0,5.0,139.0,80.0,107.0,1414.0,9.0,109.0,38.0,1647.0,148.0,85.0,120.0,321.0,811.0,53.0,135.0,0.0,687.0,240.0,44.0,567.0,17.0,11.0,44.0,157.0,418.0,383.0,0.0,1485.0,445.0,533.0,28.0,173.0,88.0,710.0,89.0,12.0,0.0,27.0,69.0,154.0,111.0,201.0,790.0,1.0,0.0,104.0,511.0,0.0,1814.0,3508.0,3447.0,233.0,579.0,120.0,0.0,0.0,209.0,147.0,1193.0,1260.0,23.0,63.0,0.0,45.0,64.0,278.0,1309.0,3.0,27.0,14590.0,202.0,3805.0,0.0,0.0,30.0,46.0,0.0,18.0,34.0,21.0,19.0,735.0,57.0,91.0,118.0,29.0,41.0,722.0,60.0,0.0,0.0,149.0,211.0,1100.0,22.0,101.0,324.0,0.0,0.0,843.0,3430.0,400.0,57.0,59.0,31.0,943.0,310.0,470.0,101.0,0.0,221.0,602.0,125.0,104.0,0.0,5.0,988.0,288.0,182.0,0.0,2108.0,0.0,0.0,0.0,0.0,2443.0,1419.0,1084.0,857.0,37.0,0.0,381.0,19.0,216.0,165.0,38.0,182.0,990.0,0.0,170.0,73.0,0.0,118.0,74.0,481.0,644.0,24.0,100.0,243.0,351.0,147.0,555.0,11.0,45.0,306.0,293.0,400.0,134.0,0.0,64.0,0.0,0.0,489.0,1642.0,88.0,233.0,43.0,0.0,71.0,134.0,257.0,1994109.0,72.0,123.0,173.0,22.0,19.0,1631.0,229.0,106.0,0.0,1167.0,96.0,0.0,12.0,115.0,611.0,234.0,223.0,111.0,167.0,153.0,1030.0,861.0,666.0,190.0,1719.0,643.0,411.0,344.0,1942.0,78.0,154.0,348.0,56.0,372.0,87.0,144.0,128.0,462.0,379.0,0.0,838.0,12.0,0.0,4.0,0.0,481.0,12.0,573.0,1072.0,0.0,205.0,136.0,19.0,12.0,53.0,90.0,445.0,194.0,11.0,133.0,0.0,174.0,28.0,45.0,83.0,24.0,201.0,82.0,0.0,0.0,65.0,39.0,0.0,70.0,189.0,198.0,0.0,2776.0,74.0,111.0,831.0,1207.0,50.0,0.0,243.0,9.0,618.0,16.0,45.0,0.0,0.0,0.0,8.0,303.0,0.0,271.0,84.0,2315.0,31.0,521.0,20.0,256.0,74.0,342.0,134.0,49.0,188.0,304.0,0.0,136.0,19.0,53.0,1093.0,1065.0,0.0,345.0,0.0,11.0,22.0,83.0,12.0,196.0,236.0,18.0,419.0,253.0,611.0,113.0,0.0,11.0,30.0,9.0,7.0,50.0,0.0,0.0,0.0,9.0,5.0,2441.0,2691.0,0.0,0.0,0.0,37.0,202.0,98.0,6484.0,0.0,1.0,0.0,0.0,99.0,327.0,92.0,47.0,31.0,0.0,1534.0,245.0,157.0,0.0,0.0,2014-02-23,,2014-8,6.271140096433806,5.406, +174,174,5.54,187.0,0.0,143.0,0.0,548.0,0.0,82.0,76.0,0.0,377.0,0.0,59.0,75.0,0.0,1671.0,148.0,112.0,32.0,0.0,0.0,0.0,0.0,93.0,18.0,2516.0,40.0,881.0,30.0,387.0,0.0,0.0,18.0,1217.0,195.0,716.0,73.0,154.0,117.0,97.0,163.0,220.0,66.0,0.0,1.0,116.0,63.0,98.0,1367.0,5.0,101.0,35.0,1685.0,138.0,114.0,142.0,318.0,763.0,43.0,138.0,0.0,701.0,235.0,57.0,609.0,32.0,10.0,40.0,136.0,466.0,378.0,0.0,1571.0,415.0,505.0,19.0,27.0,95.0,683.0,97.0,13.0,0.0,34.0,72.0,143.0,122.0,185.0,841.0,0.0,0.0,107.0,497.0,0.0,1907.0,3456.0,3441.0,238.0,647.0,109.0,0.0,0.0,73.0,137.0,1322.0,1234.0,19.0,62.0,0.0,86.0,61.0,261.0,1322.0,7.0,25.0,1007.0,186.0,3744.0,0.0,0.0,28.0,50.0,0.0,29.0,15.0,30.0,18.0,634.0,53.0,88.0,123.0,13.0,37.0,909.0,78.0,0.0,0.0,145.0,184.0,986.0,26.0,92.0,364.0,0.0,0.0,785.0,3442.0,425.0,78.0,68.0,30.0,961.0,325.0,816.0,79.0,0.0,180.0,571.0,131.0,114.0,0.0,16.0,1255.0,282.0,249.0,0.0,2116.0,0.0,0.0,0.0,0.0,2568.0,1364.0,1260.0,1003.0,32.0,0.0,424.0,19.0,188.0,236.0,29.0,178.0,993.0,0.0,154.0,108.0,1.0,160.0,66.0,494.0,608.0,21.0,80.0,217.0,369.0,171.0,533.0,19.0,15.0,397.0,365.0,399.0,140.0,0.0,99.0,0.0,0.0,399.0,1642.0,112.0,261.0,44.0,0.0,84.0,151.0,269.0,2085013.0,71.0,126.0,173.0,39.0,16.0,1674.0,225.0,105.0,0.0,1018.0,115.0,1.0,24.0,109.0,630.0,225.0,196.0,112.0,173.0,119.0,1015.0,790.0,741.0,164.0,2031.0,805.0,473.0,308.0,1814.0,53.0,159.0,354.0,46.0,411.0,119.0,158.0,127.0,524.0,382.0,0.0,851.0,12.0,0.0,10.0,0.0,550.0,32.0,596.0,966.0,0.0,154.0,131.0,19.0,29.0,32.0,50.0,377.0,158.0,19.0,110.0,0.0,200.0,37.0,46.0,83.0,35.0,193.0,94.0,0.0,0.0,66.0,46.0,0.0,77.0,173.0,154.0,0.0,2807.0,86.0,107.0,919.0,1253.0,50.0,0.0,284.0,16.0,665.0,10.0,33.0,0.0,0.0,1.0,12.0,312.0,0.0,181.0,79.0,2344.0,38.0,583.0,43.0,221.0,64.0,393.0,159.0,30.0,182.0,332.0,0.0,41.0,19.0,32.0,1011.0,1035.0,0.0,344.0,0.0,20.0,16.0,76.0,10.0,234.0,188.0,24.0,391.0,265.0,653.0,105.0,0.0,12.0,17.0,14.0,13.0,51.0,0.0,0.0,0.0,18.0,8.0,2392.0,2547.0,0.0,0.0,0.0,41.0,233.0,89.0,5935.0,0.0,0.0,0.0,0.0,118.0,368.0,101.0,41.0,37.0,0.0,1598.0,253.0,198.0,0.0,0.0,2014-03-02,,2014-9,5.54460364087179,4.6000000000000005, +175,175,4.73,202.0,0.0,121.0,0.0,493.0,0.0,90.0,85.0,0.0,359.0,0.0,85.0,58.0,0.0,1362.0,133.0,83.0,37.0,0.0,0.0,0.0,0.0,88.0,6.0,2460.0,34.0,825.0,26.0,263.0,0.0,0.0,9.0,1178.0,160.0,667.0,76.0,93.0,114.0,88.0,135.0,168.0,42.0,0.0,4.0,127.0,69.0,90.0,1427.0,13.0,95.0,34.0,1638.0,147.0,91.0,130.0,343.0,884.0,40.0,157.0,0.0,513.0,227.0,48.0,628.0,18.0,12.0,52.0,140.0,385.0,294.0,0.0,1385.0,391.0,432.0,36.0,47.0,67.0,620.0,102.0,17.0,0.0,31.0,63.0,125.0,119.0,186.0,748.0,0.0,0.0,78.0,468.0,0.0,1767.0,3470.0,3494.0,220.0,575.0,98.0,0.0,0.0,117.0,114.0,1165.0,1258.0,24.0,64.0,0.0,83.0,66.0,186.0,1253.0,6.0,35.0,752.0,183.0,3458.0,0.0,0.0,30.0,58.0,0.0,20.0,17.0,21.0,24.0,740.0,67.0,85.0,109.0,13.0,36.0,603.0,60.0,0.0,0.0,142.0,184.0,963.0,27.0,75.0,289.0,0.0,0.0,811.0,3165.0,333.0,79.0,62.0,35.0,1101.0,278.0,508.0,73.0,0.0,190.0,535.0,86.0,103.0,1.0,13.0,916.0,233.0,189.0,0.0,1897.0,0.0,0.0,0.0,0.0,2608.0,1294.0,1136.0,822.0,35.0,2.0,402.0,18.0,189.0,156.0,30.0,150.0,829.0,0.0,111.0,69.0,0.0,146.0,89.0,521.0,576.0,18.0,54.0,254.0,294.0,129.0,432.0,12.0,37.0,345.0,297.0,358.0,117.0,0.0,74.0,0.0,0.0,407.0,1431.0,86.0,239.0,36.0,0.0,68.0,162.0,223.0,2101930.0,71.0,111.0,178.0,26.0,18.0,1627.0,225.0,106.0,0.0,1013.0,102.0,1.0,12.0,76.0,539.0,222.0,193.0,111.0,142.0,121.0,990.0,798.0,622.0,166.0,2099.0,727.0,455.0,301.0,1665.0,55.0,122.0,341.0,64.0,363.0,87.0,160.0,110.0,469.0,359.0,0.0,781.0,14.0,0.0,7.0,0.0,459.0,34.0,538.0,1159.0,0.0,156.0,120.0,24.0,15.0,26.0,48.0,356.0,138.0,28.0,98.0,0.0,158.0,37.0,45.0,59.0,31.0,159.0,66.0,0.0,0.0,58.0,23.0,0.0,79.0,168.0,165.0,0.0,2407.0,66.0,105.0,860.0,1105.0,54.0,0.0,240.0,7.0,570.0,21.0,28.0,0.0,0.0,0.0,12.0,271.0,0.0,193.0,78.0,2190.0,29.0,516.0,30.0,212.0,70.0,375.0,107.0,36.0,155.0,275.0,0.0,55.0,13.0,33.0,1236.0,1161.0,0.0,411.0,0.0,8.0,18.0,109.0,15.0,211.0,158.0,21.0,483.0,238.0,627.0,117.0,0.0,13.0,30.0,9.0,12.0,72.0,0.0,0.0,0.0,16.0,8.0,2253.0,2363.0,0.0,0.0,0.0,33.0,193.0,98.0,6131.0,0.0,0.0,0.0,0.0,103.0,440.0,78.0,46.0,34.0,0.0,1495.0,229.0,177.0,0.0,0.0,2014-03-09,,2014-10,4.743031017301534,5.2, +176,176,3.94,149.0,0.0,89.0,0.0,444.0,0.0,53.0,57.0,0.0,342.0,0.0,65.0,48.0,0.0,1347.0,102.0,82.0,34.0,0.0,0.0,0.0,0.0,94.0,6.0,2274.0,27.0,756.0,34.0,215.0,0.0,0.0,9.0,1116.0,122.0,512.0,73.0,119.0,86.0,72.0,112.0,140.0,43.0,0.0,2.0,128.0,68.0,76.0,1120.0,6.0,218.0,34.0,1584.0,121.0,79.0,108.0,324.0,710.0,30.0,132.0,0.0,567.0,179.0,36.0,542.0,13.0,5.0,39.0,98.0,342.0,336.0,0.0,1299.0,333.0,391.0,29.0,31.0,54.0,538.0,87.0,12.0,0.0,22.0,70.0,124.0,118.0,166.0,698.0,0.0,0.0,91.0,448.0,0.0,1709.0,3310.0,3112.0,173.0,566.0,106.0,0.0,0.0,124.0,101.0,1069.0,1156.0,27.0,70.0,0.0,38.0,44.0,133.0,1229.0,6.0,19.0,622.0,153.0,3157.0,0.0,0.0,25.0,59.0,0.0,10.0,17.0,17.0,20.0,609.0,53.0,81.0,86.0,13.0,25.0,583.0,72.0,0.0,0.0,137.0,153.0,958.0,359.0,73.0,263.0,0.0,0.0,674.0,2890.0,288.0,52.0,52.0,28.0,1229.0,212.0,427.0,64.0,0.0,182.0,527.0,78.0,76.0,1.0,6.0,991.0,224.0,225.0,0.0,1704.0,0.0,0.0,0.0,0.0,2413.0,1107.0,996.0,706.0,25.0,0.0,392.0,13.0,158.0,212.0,40.0,104.0,799.0,0.0,95.0,74.0,0.0,136.0,72.0,430.0,504.0,33.0,57.0,194.0,266.0,119.0,412.0,10.0,35.0,278.0,336.0,348.0,141.0,0.0,63.0,0.0,0.0,373.0,1428.0,76.0,231.0,41.0,0.0,79.0,87.0,193.0,2017654.0,59.0,111.0,160.0,24.0,8.0,1378.0,227.0,86.0,0.0,1033.0,96.0,0.0,10.0,78.0,441.0,238.0,172.0,90.0,121.0,123.0,893.0,710.0,563.0,174.0,1518.0,736.0,445.0,278.0,1608.0,35.0,133.0,249.0,53.0,303.0,52.0,153.0,75.0,436.0,308.0,0.0,773.0,18.0,0.0,6.0,0.0,445.0,25.0,437.0,877.0,0.0,186.0,96.0,13.0,14.0,27.0,41.0,334.0,141.0,42.0,90.0,0.0,95.0,43.0,34.0,56.0,40.0,144.0,59.0,0.0,0.0,38.0,34.0,0.0,73.0,113.0,133.0,0.0,2253.0,45.0,99.0,846.0,983.0,40.0,0.0,248.0,5.0,549.0,27.0,35.0,0.0,0.0,1.0,14.0,222.0,0.0,173.0,54.0,2049.0,32.0,388.0,31.0,201.0,58.0,261.0,84.0,24.0,156.0,267.0,0.0,91.0,13.0,29.0,980.0,1108.0,0.0,347.0,0.0,5.0,19.0,76.0,12.0,204.0,139.0,10.0,359.0,216.0,633.0,152.0,0.0,7.0,21.0,6.0,12.0,61.0,0.0,0.0,0.0,16.0,5.0,2312.0,2892.0,0.0,0.0,0.0,18.0,175.0,74.0,5368.0,0.0,0.0,0.0,0.0,102.0,364.0,48.0,54.0,31.0,0.0,1448.0,228.0,194.0,0.0,0.0,2014-03-16,,2014-11,3.937854154520199,3.94, +177,177,3.38,130.0,0.0,104.0,0.0,454.0,0.0,75.0,81.0,0.0,379.0,0.0,73.0,44.0,0.0,1299.0,103.0,96.0,36.0,0.0,0.0,0.0,0.0,80.0,6.0,2397.0,47.0,784.0,39.0,242.0,0.0,0.0,11.0,1227.0,143.0,552.0,76.0,136.0,105.0,84.0,138.0,129.0,31.0,0.0,2.0,138.0,75.0,100.0,1198.0,5.0,141.0,28.0,1581.0,96.0,91.0,112.0,287.0,690.0,42.0,144.0,0.0,527.0,221.0,53.0,570.0,15.0,14.0,45.0,146.0,340.0,370.0,0.0,1478.0,305.0,402.0,23.0,41.0,59.0,531.0,89.0,7.0,0.0,28.0,56.0,128.0,168.0,171.0,754.0,1.0,0.0,83.0,470.0,0.0,1692.0,3253.0,3277.0,181.0,506.0,114.0,0.0,0.0,73.0,132.0,1235.0,1158.0,26.0,67.0,0.0,45.0,55.0,143.0,1280.0,8.0,24.0,608.0,135.0,3071.0,0.0,0.0,23.0,49.0,0.0,14.0,19.0,15.0,19.0,662.0,53.0,63.0,102.0,10.0,26.0,578.0,69.0,0.0,0.0,131.0,162.0,952.0,52.0,68.0,289.0,0.0,0.0,637.0,2911.0,300.0,75.0,66.0,25.0,998.0,182.0,377.0,63.0,0.0,192.0,569.0,109.0,73.0,1.0,9.0,973.0,235.0,248.0,0.0,1797.0,0.0,0.0,0.0,0.0,2190.0,1039.0,1286.0,873.0,21.0,0.0,363.0,12.0,136.0,223.0,45.0,151.0,846.0,0.0,129.0,124.0,0.0,128.0,62.0,490.0,545.0,23.0,62.0,226.0,219.0,104.0,520.0,8.0,38.0,313.0,368.0,356.0,133.0,0.0,83.0,0.0,0.0,371.0,1403.0,94.0,244.0,47.0,0.0,85.0,107.0,241.0,1903352.0,72.0,87.0,123.0,36.0,24.0,1325.0,248.0,118.0,0.0,1090.0,93.0,1.0,8.0,93.0,497.0,228.0,188.0,91.0,132.0,123.0,933.0,712.0,572.0,151.0,1400.0,618.0,502.0,296.0,1592.0,40.0,123.0,252.0,58.0,287.0,57.0,147.0,108.0,430.0,354.0,0.0,789.0,21.0,0.0,5.0,0.0,754.0,31.0,548.0,896.0,0.0,182.0,104.0,12.0,14.0,25.0,42.0,356.0,119.0,30.0,101.0,0.0,123.0,48.0,44.0,78.0,37.0,146.0,61.0,0.0,0.0,47.0,39.0,0.0,52.0,111.0,174.0,0.0,2317.0,68.0,100.0,762.0,1102.0,39.0,0.0,254.0,9.0,493.0,4.0,25.0,0.0,0.0,0.0,9.0,225.0,0.0,199.0,61.0,2243.0,27.0,454.0,38.0,204.0,64.0,261.0,91.0,28.0,129.0,281.0,0.0,47.0,14.0,48.0,1352.0,1019.0,0.0,394.0,0.0,10.0,19.0,91.0,9.0,218.0,146.0,26.0,341.0,205.0,690.0,143.0,0.0,6.0,31.0,11.0,10.0,61.0,0.0,0.0,0.0,19.0,5.0,2299.0,2339.0,0.0,0.0,0.0,26.0,198.0,81.0,6019.0,0.0,0.0,0.0,0.0,96.0,369.0,84.0,33.0,21.0,0.0,1430.0,228.0,185.0,0.0,0.0,2014-03-23,,2014-12,3.382681578356914,3.38, +178,178,2.88,163.0,0.0,122.0,0.0,409.0,1.0,76.0,92.0,0.0,375.0,0.0,67.0,51.0,0.0,1432.0,100.0,65.0,36.0,1.0,0.0,0.0,0.0,86.0,10.0,2207.0,44.0,853.0,35.0,236.0,0.0,0.0,11.0,1121.0,125.0,547.0,92.0,115.0,106.0,83.0,142.0,158.0,23.0,0.0,5.0,157.0,75.0,84.0,1854.0,10.0,92.0,28.0,1620.0,102.0,126.0,136.0,358.0,732.0,43.0,111.0,0.0,652.0,203.0,53.0,544.0,21.0,14.0,38.0,136.0,384.0,389.0,0.0,1463.0,349.0,398.0,33.0,54.0,72.0,530.0,105.0,9.0,0.0,31.0,95.0,121.0,200.0,185.0,774.0,0.0,0.0,66.0,452.0,0.0,1751.0,3323.0,3408.0,137.0,553.0,129.0,0.0,0.0,68.0,114.0,1121.0,1137.0,28.0,57.0,0.0,49.0,39.0,120.0,1273.0,4.0,52.0,635.0,149.0,2828.0,0.0,0.0,31.0,63.0,0.0,21.0,23.0,23.0,21.0,704.0,43.0,85.0,91.0,23.0,41.0,583.0,56.0,0.0,0.0,136.0,197.0,960.0,26.0,55.0,313.0,0.0,0.0,666.0,2903.0,348.0,75.0,79.0,25.0,1028.0,236.0,344.0,65.0,0.0,180.0,612.0,86.0,82.0,1.0,8.0,1015.0,270.0,260.0,0.0,1696.0,0.0,0.0,0.0,0.0,2594.0,1026.0,1240.0,759.0,21.0,3.0,424.0,12.0,154.0,222.0,38.0,141.0,840.0,0.0,147.0,141.0,3.0,147.0,85.0,456.0,547.0,26.0,39.0,247.0,252.0,85.0,544.0,19.0,30.0,329.0,334.0,364.0,124.0,0.0,76.0,0.0,0.0,356.0,1404.0,96.0,266.0,32.0,0.0,79.0,96.0,196.0,1966058.0,70.0,99.0,141.0,30.0,12.0,1264.0,352.0,90.0,0.0,1087.0,72.0,1.0,12.0,99.0,569.0,200.0,197.0,126.0,116.0,108.0,882.0,732.0,634.0,149.0,1461.0,696.0,467.0,285.0,1452.0,48.0,116.0,271.0,72.0,281.0,67.0,150.0,79.0,405.0,348.0,0.0,768.0,19.0,0.0,4.0,0.0,539.0,13.0,480.0,847.0,0.0,182.0,109.0,17.0,14.0,28.0,63.0,343.0,163.0,22.0,96.0,0.0,108.0,49.0,45.0,79.0,40.0,177.0,72.0,0.0,0.0,46.0,29.0,0.0,54.0,111.0,146.0,0.0,2305.0,57.0,80.0,893.0,1005.0,36.0,0.0,309.0,4.0,542.0,9.0,39.0,0.0,0.0,0.0,8.0,253.0,0.0,156.0,58.0,2257.0,33.0,437.0,28.0,186.0,56.0,342.0,114.0,27.0,159.0,315.0,0.0,37.0,21.0,35.0,1272.0,1159.0,0.0,736.0,0.0,15.0,22.0,115.0,11.0,230.0,137.0,17.0,355.0,196.0,636.0,117.0,0.0,10.0,32.0,12.0,10.0,49.0,0.0,0.0,0.0,13.0,5.0,2402.0,2501.0,0.0,0.0,0.0,38.0,271.0,103.0,6052.0,0.0,0.0,0.0,0.0,85.0,339.0,73.0,48.0,24.0,0.0,1395.0,241.0,191.0,0.0,0.0,2014-03-30,,2014-13,2.8820458510839186,1.7960000000000003, +179,179,2.07,199.0,0.0,105.0,0.0,498.0,0.0,95.0,73.0,0.0,406.0,0.0,81.0,46.0,0.0,1423.0,91.0,91.0,51.0,1.0,0.0,0.0,0.0,93.0,4.0,2090.0,54.0,782.0,22.0,227.0,0.0,0.0,17.0,1208.0,150.0,534.0,75.0,129.0,92.0,78.0,132.0,177.0,44.0,0.0,5.0,126.0,74.0,108.0,1399.0,9.0,95.0,29.0,1627.0,75.0,95.0,146.0,327.0,723.0,26.0,219.0,0.0,609.0,244.0,36.0,580.0,20.0,15.0,44.0,119.0,382.0,314.0,0.0,1405.0,334.0,438.0,25.0,36.0,64.0,568.0,122.0,11.0,0.0,36.0,98.0,160.0,214.0,168.0,763.0,1.0,0.0,64.0,409.0,0.0,1845.0,3490.0,3464.0,175.0,556.0,116.0,0.0,0.0,78.0,140.0,1195.0,1033.0,18.0,51.0,0.0,46.0,42.0,139.0,1378.0,9.0,37.0,777.0,153.0,2649.0,0.0,0.0,27.0,85.0,4.0,23.0,25.0,41.0,21.0,662.0,66.0,81.0,103.0,14.0,27.0,545.0,56.0,0.0,0.0,137.0,152.0,1052.0,51.0,66.0,283.0,0.0,0.0,717.0,2843.0,313.0,80.0,91.0,52.0,1611.0,243.0,409.0,74.0,0.0,198.0,526.0,78.0,108.0,0.0,13.0,884.0,277.0,258.0,0.0,1730.0,0.0,0.0,0.0,0.0,2314.0,1267.0,1048.0,1256.0,37.0,1.0,359.0,22.0,190.0,196.0,36.0,165.0,964.0,0.0,180.0,98.0,4.0,168.0,78.0,470.0,605.0,28.0,43.0,207.0,239.0,86.0,440.0,15.0,32.0,347.0,336.0,355.0,169.0,0.0,68.0,0.0,0.0,373.0,1446.0,107.0,273.0,47.0,0.0,89.0,88.0,200.0,1843900.0,75.0,205.0,959.0,25.0,23.0,1404.0,517.0,116.0,0.0,1189.0,95.0,1.0,17.0,93.0,616.0,211.0,213.0,106.0,136.0,99.0,943.0,740.0,575.0,186.0,1358.0,758.0,369.0,279.0,1349.0,34.0,143.0,284.0,53.0,307.0,61.0,124.0,90.0,457.0,341.0,0.0,809.0,19.0,0.0,4.0,0.0,510.0,18.0,579.0,843.0,0.0,162.0,111.0,15.0,13.0,28.0,54.0,342.0,154.0,25.0,111.0,0.0,91.0,57.0,45.0,50.0,42.0,183.0,88.0,0.0,0.0,69.0,34.0,0.0,63.0,118.0,172.0,0.0,2289.0,74.0,124.0,816.0,1030.0,40.0,0.0,264.0,12.0,536.0,15.0,36.0,0.0,0.0,0.0,14.0,250.0,0.0,139.0,58.0,2375.0,39.0,462.0,29.0,256.0,93.0,321.0,84.0,26.0,157.0,277.0,0.0,34.0,18.0,50.0,1463.0,1394.0,0.0,1339.0,0.0,13.0,25.0,90.0,11.0,205.0,128.0,17.0,515.0,199.0,673.0,137.0,0.0,7.0,32.0,11.0,14.0,66.0,0.0,0.0,0.0,15.0,2.0,2349.0,2550.0,0.0,0.0,0.0,29.0,252.0,95.0,6156.0,0.0,0.0,0.0,0.0,76.0,376.0,86.0,46.0,34.0,0.0,1436.0,268.0,198.0,0.0,0.0,2014-04-06,,2014-14,2.0836857054991356,2.118, +180,180,1.64,172.0,0.0,124.0,0.0,455.0,0.0,73.0,81.0,0.0,425.0,0.0,74.0,65.0,0.0,1404.0,99.0,88.0,60.0,3.0,0.0,0.0,0.0,98.0,11.0,2041.0,46.0,782.0,42.0,718.0,0.0,0.0,11.0,1055.0,159.0,585.0,81.0,129.0,112.0,80.0,143.0,200.0,34.0,0.0,3.0,158.0,69.0,107.0,1290.0,6.0,101.0,29.0,1626.0,100.0,108.0,129.0,330.0,746.0,33.0,176.0,0.0,648.0,225.0,49.0,565.0,20.0,7.0,47.0,137.0,341.0,277.0,0.0,1322.0,341.0,438.0,34.0,34.0,71.0,540.0,102.0,12.0,0.0,28.0,81.0,163.0,241.0,222.0,815.0,0.0,0.0,84.0,462.0,0.0,1677.0,3282.0,3411.0,180.0,570.0,117.0,0.0,0.0,84.0,105.0,1043.0,1143.0,30.0,64.0,0.0,62.0,52.0,159.0,1477.0,6.0,21.0,1045.0,159.0,2728.0,0.0,0.0,35.0,59.0,0.0,17.0,21.0,48.0,32.0,747.0,67.0,89.0,95.0,22.0,31.0,503.0,72.0,0.0,0.0,159.0,166.0,1112.0,25.0,90.0,266.0,0.0,0.0,632.0,2826.0,284.0,92.0,72.0,46.0,1218.0,215.0,278.0,70.0,0.0,242.0,560.0,94.0,113.0,1.0,15.0,949.0,265.0,247.0,0.0,1833.0,0.0,0.0,0.0,0.0,2205.0,1261.0,1234.0,925.0,19.0,1.0,392.0,18.0,172.0,182.0,36.0,168.0,927.0,0.0,133.0,100.0,0.0,145.0,67.0,471.0,603.0,22.0,51.0,241.0,275.0,84.0,468.0,8.0,57.0,281.0,332.0,374.0,172.0,0.0,79.0,0.0,0.0,408.0,1398.0,79.0,222.0,47.0,0.0,107.0,107.0,205.0,1778507.0,62.0,100.0,163.0,30.0,10.0,1362.0,245.0,91.0,0.0,1127.0,116.0,0.0,11.0,94.0,956.0,245.0,177.0,110.0,137.0,101.0,984.0,728.0,603.0,178.0,1613.0,864.0,399.0,269.0,1203.0,45.0,105.0,249.0,51.0,266.0,65.0,118.0,95.0,448.0,309.0,0.0,751.0,12.0,0.0,2.0,0.0,459.0,24.0,637.0,835.0,0.0,154.0,114.0,22.0,9.0,23.0,63.0,326.0,179.0,13.0,129.0,0.0,153.0,50.0,45.0,66.0,30.0,194.0,68.0,0.0,0.0,44.0,30.0,0.0,59.0,108.0,184.0,0.0,2309.0,75.0,80.0,758.0,1066.0,44.0,0.0,250.0,8.0,556.0,19.0,31.0,0.0,0.0,1.0,10.0,249.0,0.0,153.0,56.0,2472.0,35.0,469.0,40.0,245.0,98.0,297.0,106.0,38.0,155.0,308.0,0.0,49.0,10.0,45.0,977.0,1229.0,0.0,551.0,0.0,17.0,32.0,81.0,10.0,218.0,129.0,37.0,419.0,205.0,716.0,134.0,0.0,6.0,21.0,12.0,9.0,54.0,0.0,0.0,0.0,14.0,6.0,2381.0,2749.0,0.0,0.0,0.0,25.0,217.0,87.0,5856.0,0.0,0.0,0.0,0.0,96.0,411.0,92.0,48.0,44.0,0.0,1338.0,222.0,173.0,0.0,0.0,2014-04-13,,2014-15,1.6124457075182752,2.4720000000000004, +181,181,1.23,183.0,0.0,100.0,0.0,414.0,0.0,72.0,120.0,0.0,354.0,0.0,80.0,62.0,0.0,1346.0,114.0,92.0,66.0,0.0,0.0,0.0,0.0,67.0,15.0,1757.0,65.0,737.0,37.0,233.0,0.0,0.0,17.0,1023.0,146.0,518.0,77.0,115.0,98.0,77.0,124.0,164.0,36.0,0.0,3.0,127.0,66.0,97.0,1223.0,16.0,110.0,32.0,1566.0,76.0,97.0,150.0,318.0,760.0,43.0,156.0,0.0,640.0,233.0,49.0,573.0,27.0,17.0,46.0,109.0,328.0,301.0,0.0,1205.0,392.0,408.0,34.0,41.0,79.0,552.0,93.0,12.0,0.0,36.0,92.0,156.0,261.0,204.0,709.0,0.0,0.0,76.0,453.0,0.0,1913.0,2998.0,3064.0,197.0,534.0,97.0,0.0,0.0,55.0,121.0,952.0,1125.0,20.0,78.0,0.0,48.0,62.0,227.0,1404.0,9.0,24.0,675.0,162.0,2456.0,0.0,0.0,31.0,76.0,0.0,26.0,16.0,64.0,110.0,786.0,46.0,69.0,95.0,22.0,33.0,562.0,59.0,0.0,0.0,140.0,183.0,1166.0,33.0,92.0,273.0,0.0,0.0,598.0,2743.0,301.0,81.0,48.0,44.0,1090.0,166.0,269.0,68.0,0.0,310.0,588.0,84.0,75.0,0.0,12.0,859.0,254.0,264.0,0.0,1816.0,0.0,0.0,0.0,0.0,2235.0,1388.0,1375.0,886.0,25.0,1.0,379.0,22.0,171.0,148.0,32.0,132.0,929.0,0.0,121.0,66.0,4.0,146.0,80.0,468.0,585.0,22.0,41.0,216.0,291.0,100.0,415.0,15.0,34.0,304.0,334.0,356.0,151.0,0.0,67.0,0.0,0.0,337.0,1385.0,83.0,235.0,37.0,0.0,101.0,108.0,212.0,1754045.0,57.0,120.0,167.0,45.0,11.0,1269.0,187.0,77.0,0.0,1077.0,85.0,0.0,23.0,81.0,848.0,227.0,211.0,86.0,120.0,113.0,870.0,671.0,593.0,184.0,1846.0,624.0,452.0,237.0,1136.0,58.0,130.0,283.0,47.0,286.0,72.0,160.0,121.0,405.0,334.0,0.0,721.0,14.0,0.0,5.0,0.0,444.0,17.0,586.0,812.0,0.0,134.0,154.0,18.0,16.0,18.0,59.0,331.0,148.0,40.0,119.0,0.0,156.0,63.0,52.0,49.0,29.0,187.0,90.0,0.0,0.0,42.0,35.0,0.0,62.0,129.0,200.0,0.0,2336.0,79.0,185.0,718.0,975.0,40.0,0.0,281.0,1.0,530.0,7.0,29.0,0.0,0.0,0.0,11.0,264.0,0.0,152.0,52.0,2211.0,31.0,607.0,46.0,255.0,87.0,313.0,111.0,26.0,129.0,268.0,0.0,61.0,20.0,44.0,938.0,1163.0,0.0,486.0,0.0,20.0,33.0,83.0,10.0,205.0,112.0,31.0,392.0,227.0,693.0,131.0,0.0,16.0,23.0,12.0,15.0,51.0,0.0,0.0,0.0,14.0,8.0,2279.0,2315.0,0.0,0.0,0.0,24.0,289.0,117.0,5227.0,0.0,0.0,0.0,0.0,97.0,432.0,76.0,44.0,23.0,0.0,1356.0,224.0,150.0,0.0,0.0,2014-04-20,,2014-16,1.227239772541191,2.1140000000000003, +182,182,0.35,96.0,0.0,138.0,0.0,272.0,0.0,154.0,82.0,0.0,324.0,0.0,77.0,62.0,0.0,1200.0,113.0,61.0,47.0,1.0,0.0,0.0,0.0,73.0,14.0,1196.0,57.0,546.0,24.0,242.0,0.0,0.0,13.0,896.0,100.0,559.0,62.0,181.0,106.0,67.0,144.0,171.0,43.0,0.0,4.0,110.0,52.0,66.0,849.0,4.0,96.0,34.0,1373.0,54.0,118.0,140.0,338.0,506.0,36.0,145.0,0.0,513.0,208.0,38.0,498.0,17.0,10.0,27.0,113.0,301.0,285.0,18.0,960.0,410.0,384.0,25.0,53.0,67.0,594.0,114.0,17.0,0.0,26.0,65.0,157.0,123.0,158.0,686.0,2.0,0.0,71.0,550.0,0.0,1491.0,2423.0,2730.0,144.0,488.0,120.0,5578.0,0.0,59.0,127.0,775.0,1888.0,85.0,46.0,0.0,41.0,61.0,157.0,918.0,4.0,21.0,693.0,147.0,1847.0,152.0,0.0,21.0,93.0,0.0,19.0,35.0,47.0,36.0,847.0,96.0,77.0,231.0,13.0,32.0,380.0,57.0,0.0,0.0,148.0,143.0,911.0,13.0,63.0,212.0,0.0,0.0,716.0,2147.0,215.0,64.0,157.0,89.0,2549.0,316.0,356.0,57.0,1.0,229.0,553.0,94.0,84.0,1.0,3.0,623.0,569.0,215.0,0.0,1604.0,0.0,0.0,0.0,0.0,1757.0,1219.0,1113.0,1234.0,22.0,1.0,302.0,15.0,166.0,108.0,17.0,107.0,786.0,23.0,71.0,113.0,0.0,330.0,67.0,490.0,450.0,30.0,63.0,203.0,296.0,138.0,367.0,12.0,26.0,275.0,247.0,305.0,285.0,0.0,55.0,0.0,0.0,345.0,1215.0,249.0,296.0,48.0,0.0,94.0,80.0,257.0,1619879.0,58.0,214.0,326.0,25.0,11.0,1099.0,206.0,125.0,0.0,588.0,128.0,0.0,21.0,58.0,994.0,229.0,142.0,93.0,82.0,89.0,730.0,718.0,559.0,222.0,1080.0,680.0,222.0,128.0,1532.0,39.0,271.0,444.0,74.0,613.0,93.0,204.0,119.0,425.0,257.0,0.0,754.0,10.0,1.0,8.0,0.0,385.0,17.0,629.0,650.0,0.0,147.0,184.0,10.0,15.0,42.0,57.0,303.0,1838.0,27.0,154.0,0.0,111.0,30.0,71.0,62.0,63.0,342.0,129.0,31.0,0.0,162.0,24.0,0.0,74.0,156.0,182.0,0.0,1857.0,83.0,350.0,581.0,806.0,102.0,0.0,193.0,8.0,442.0,23.0,34.0,0.0,0.0,0.0,9.0,235.0,0.0,212.0,65.0,1529.0,35.0,532.0,43.0,70.0,53.0,391.0,100.0,37.0,120.0,234.0,0.0,38.0,11.0,42.0,893.0,1171.0,0.0,328.0,0.0,11.0,25.0,74.0,23.0,125.0,307.0,32.0,439.0,169.0,598.0,134.0,0.0,18.0,31.0,21.0,22.0,96.0,0.0,0.0,0.0,18.0,2.0,1921.0,3098.0,0.0,69.0,0.0,21.0,514.0,81.0,3753.0,0.0,0.0,0.0,0.0,87.0,323.0,75.0,64.0,19.0,0.0,1006.0,201.0,96.0,0.0,0.0,2014-10-26,,2014-43,0.3521978667759491,2.906, +183,183,0.48,79.0,0.0,194.0,0.0,248.0,0.0,113.0,77.0,0.0,294.0,0.0,73.0,55.0,0.0,1084.0,102.0,100.0,37.0,5.0,0.0,0.0,0.0,71.0,13.0,1019.0,48.0,409.0,35.0,225.0,0.0,0.0,9.0,782.0,309.0,537.0,68.0,230.0,127.0,73.0,127.0,151.0,47.0,0.0,4.0,110.0,52.0,95.0,794.0,10.0,71.0,34.0,1259.0,70.0,124.0,106.0,347.0,572.0,20.0,140.0,0.0,460.0,179.0,32.0,445.0,18.0,7.0,26.0,108.0,273.0,240.0,20.0,819.0,369.0,493.0,30.0,44.0,53.0,561.0,113.0,18.0,0.0,26.0,65.0,207.0,110.0,149.0,741.0,0.0,1.0,63.0,502.0,0.0,1212.0,2150.0,2528.0,188.0,472.0,92.0,4128.0,0.0,61.0,160.0,704.0,876.0,107.0,55.0,0.0,39.0,53.0,175.0,748.0,6.0,25.0,449.0,134.0,1599.0,123.0,0.0,19.0,64.0,0.0,35.0,13.0,30.0,32.0,584.0,85.0,69.0,175.0,16.0,28.0,508.0,78.0,0.0,0.0,192.0,122.0,811.0,24.0,79.0,199.0,0.0,0.0,588.0,1903.0,197.0,44.0,93.0,56.0,1347.0,174.0,282.0,60.0,0.0,191.0,499.0,76.0,66.0,0.0,5.0,704.0,182.0,203.0,0.0,1387.0,0.0,0.0,0.0,0.0,1456.0,1017.0,1031.0,1002.0,23.0,1.0,317.0,20.0,176.0,100.0,21.0,115.0,680.0,23.0,76.0,72.0,0.0,216.0,49.0,457.0,520.0,24.0,52.0,172.0,282.0,95.0,651.0,9.0,38.0,300.0,218.0,272.0,278.0,0.0,44.0,0.0,0.0,307.0,1151.0,295.0,338.0,79.0,0.0,70.0,90.0,254.0,1655268.0,52.0,162.0,182.0,24.0,7.0,844.0,201.0,91.0,0.0,492.0,88.0,1.0,14.0,92.0,647.0,228.0,126.0,87.0,103.0,103.0,694.0,662.0,566.0,148.0,3633.0,651.0,203.0,118.0,1177.0,51.0,341.0,495.0,87.0,644.0,92.0,169.0,133.0,357.0,244.0,0.0,691.0,15.0,0.0,9.0,0.0,308.0,25.0,563.0,2936.0,0.0,154.0,176.0,14.0,8.0,40.0,107.0,265.0,294.0,20.0,173.0,0.0,140.0,47.0,59.0,59.0,54.0,490.0,169.0,44.0,0.0,119.0,28.0,0.0,78.0,160.0,172.0,0.0,1591.0,104.0,226.0,408.0,722.0,145.0,0.0,178.0,10.0,443.0,10.0,35.0,0.0,0.0,0.0,16.0,236.0,0.0,190.0,51.0,1359.0,34.0,469.0,41.0,69.0,50.0,296.0,153.0,49.0,108.0,215.0,0.0,55.0,17.0,55.0,699.0,1767.0,0.0,286.0,8.0,14.0,32.0,66.0,14.0,134.0,368.0,16.0,374.0,168.0,527.0,95.0,0.0,15.0,29.0,29.0,30.0,89.0,0.0,0.0,0.0,21.0,7.0,1642.0,2389.0,0.0,51.0,0.0,22.0,379.0,87.0,3359.0,0.0,0.0,0.0,0.0,77.0,296.0,64.0,34.0,39.0,0.0,857.0,180.0,107.0,0.0,0.0,2014-11-02,,2014-44,0.48753231585072765,1.4920000000000002, +184,184,0.65,91.0,0.0,118.0,0.0,202.0,0.0,54.0,63.0,0.0,241.0,0.0,50.0,51.0,0.0,856.0,79.0,63.0,37.0,2.0,0.0,0.0,0.0,73.0,10.0,935.0,47.0,372.0,25.0,267.0,0.0,0.0,6.0,669.0,116.0,426.0,46.0,127.0,98.0,54.0,102.0,150.0,30.0,0.0,2.0,87.0,44.0,63.0,765.0,7.0,94.0,34.0,1280.0,72.0,96.0,72.0,253.0,395.0,30.0,335.0,0.0,528.0,370.0,27.0,369.0,10.0,16.0,29.0,103.0,212.0,185.0,24.0,734.0,335.0,370.0,28.0,40.0,62.0,434.0,109.0,16.0,0.0,25.0,53.0,186.0,84.0,132.0,561.0,0.0,0.0,64.0,335.0,0.0,1069.0,2321.0,2060.0,140.0,413.0,93.0,3552.0,0.0,64.0,153.0,676.0,856.0,48.0,66.0,0.0,49.0,46.0,124.0,632.0,2.0,32.0,353.0,128.0,1728.0,71.0,0.0,15.0,72.0,0.0,26.0,7.0,33.0,33.0,488.0,49.0,59.0,129.0,13.0,22.0,359.0,64.0,0.0,0.0,132.0,117.0,637.0,12.0,61.0,170.0,0.0,0.0,533.0,1768.0,201.0,46.0,71.0,33.0,1250.0,154.0,210.0,56.0,0.0,153.0,445.0,80.0,59.0,0.0,7.0,803.0,163.0,170.0,0.0,1161.0,0.0,0.0,0.0,0.0,1327.0,886.0,718.0,837.0,23.0,1.0,279.0,17.0,131.0,104.0,22.0,90.0,546.0,28.0,117.0,73.0,0.0,133.0,80.0,385.0,410.0,19.0,41.0,163.0,203.0,87.0,366.0,19.0,43.0,220.0,199.0,223.0,303.0,0.0,63.0,0.0,0.0,292.0,1097.0,153.0,205.0,43.0,0.0,88.0,76.0,161.0,1613510.0,41.0,106.0,194.0,13.0,8.0,876.0,179.0,102.0,0.0,541.0,93.0,3.0,16.0,63.0,447.0,182.0,113.0,77.0,98.0,86.0,642.0,440.0,422.0,133.0,877.0,577.0,187.0,140.0,1145.0,45.0,198.0,307.0,56.0,342.0,70.0,151.0,106.0,298.0,241.0,0.0,556.0,18.0,0.0,10.0,0.0,349.0,16.0,445.0,829.0,1.0,108.0,108.0,10.0,17.0,35.0,64.0,275.0,153.0,14.0,126.0,0.0,106.0,28.0,45.0,64.0,39.0,241.0,89.0,35.0,0.0,72.0,21.0,0.0,64.0,139.0,149.0,0.0,1291.0,61.0,163.0,368.0,582.0,336.0,0.0,158.0,6.0,387.0,27.0,25.0,0.0,0.0,0.0,13.0,180.0,0.0,147.0,54.0,1210.0,25.0,318.0,30.0,70.0,30.0,2431.0,113.0,23.0,96.0,196.0,0.0,180.0,20.0,42.0,633.0,1384.0,0.0,340.0,25.0,15.0,27.0,64.0,8.0,117.0,450.0,17.0,2018.0,133.0,406.0,179.0,0.0,16.0,27.0,13.0,24.0,39.0,0.0,0.0,0.0,11.0,2.0,1288.0,2132.0,0.0,27.0,0.0,24.0,268.0,93.0,2974.0,0.0,0.0,0.0,0.0,61.0,273.0,65.0,60.0,32.0,0.0,751.0,178.0,128.0,0.0,0.0,2014-11-09,,2014-45,0.6440813637153235,0.724, +185,185,0.81,86.0,0.0,98.0,0.0,234.0,0.0,72.0,80.0,0.0,317.0,0.0,50.0,51.0,0.0,902.0,96.0,72.0,39.0,3.0,0.0,0.0,0.0,65.0,7.0,972.0,68.0,422.0,16.0,194.0,0.0,0.0,13.0,718.0,109.0,401.0,59.0,98.0,115.0,57.0,110.0,168.0,29.0,0.0,2.0,117.0,58.0,79.0,707.0,10.0,84.0,34.0,1255.0,71.0,77.0,90.0,262.0,457.0,36.0,126.0,0.0,480.0,226.0,40.0,399.0,17.0,20.0,31.0,97.0,286.0,253.0,24.0,724.0,322.0,337.0,31.0,26.0,56.0,441.0,92.0,11.0,0.0,25.0,67.0,148.0,101.0,180.0,576.0,1.0,0.0,70.0,358.0,0.0,1097.0,1967.0,2258.0,156.0,380.0,75.0,1982.0,0.0,80.0,146.0,663.0,715.0,21.0,45.0,0.0,26.0,50.0,156.0,659.0,6.0,29.0,397.0,123.0,1334.0,66.0,0.0,33.0,67.0,0.0,22.0,13.0,22.0,23.0,469.0,54.0,54.0,80.0,17.0,37.0,378.0,47.0,0.0,0.0,117.0,102.0,628.0,23.0,75.0,192.0,0.0,0.0,573.0,1884.0,237.0,50.0,61.0,32.0,1304.0,121.0,172.0,51.0,1.0,167.0,470.0,83.0,85.0,1.0,5.0,684.0,207.0,184.0,0.0,1155.0,0.0,0.0,0.0,0.0,1395.0,764.0,737.0,826.0,31.0,0.0,282.0,17.0,117.0,105.0,25.0,73.0,664.0,22.0,105.0,60.0,0.0,130.0,69.0,443.0,407.0,22.0,45.0,196.0,240.0,79.0,387.0,18.0,18.0,209.0,179.0,241.0,222.0,0.0,49.0,0.0,0.0,293.0,1165.0,102.0,186.0,51.0,0.0,56.0,103.0,159.0,1683009.0,38.0,114.0,136.0,19.0,7.0,1100.0,228.0,96.0,0.0,515.0,75.0,0.0,10.0,67.0,337.0,215.0,97.0,71.0,111.0,92.0,744.0,532.0,481.0,181.0,898.0,658.0,162.0,114.0,962.0,46.0,107.0,204.0,48.0,242.0,69.0,113.0,96.0,315.0,211.0,0.0,677.0,14.0,0.0,5.0,0.0,432.0,16.0,434.0,741.0,0.0,135.0,120.0,17.0,15.0,30.0,30.0,262.0,120.0,24.0,84.0,0.0,98.0,22.0,43.0,55.0,32.0,146.0,76.0,36.0,0.0,36.0,31.0,0.0,51.0,129.0,140.0,0.0,1460.0,51.0,153.0,449.0,633.0,94.0,0.0,147.0,12.0,422.0,98.0,35.0,0.0,0.0,0.0,13.0,176.0,0.0,169.0,56.0,1208.0,32.0,344.0,34.0,67.0,49.0,273.0,94.0,22.0,98.0,220.0,0.0,81.0,10.0,39.0,511.0,864.0,0.0,318.0,31.0,17.0,33.0,52.0,8.0,137.0,634.0,16.0,344.0,127.0,405.0,96.0,0.0,12.0,31.0,27.0,35.0,61.0,0.0,0.0,0.0,14.0,4.0,1379.0,1972.0,0.0,32.0,0.0,26.0,259.0,112.0,3162.0,0.0,0.0,0.0,0.0,71.0,270.0,68.0,33.0,30.0,0.0,827.0,153.0,120.0,0.0,0.0,2014-11-16,,2014-46,0.8123063860083919,1.604, +186,186,0.85,89.0,0.0,102.0,0.0,265.0,0.0,61.0,66.0,0.0,291.0,0.0,53.0,57.0,0.0,1010.0,98.0,57.0,36.0,2.0,0.0,0.0,0.0,88.0,11.0,950.0,41.0,457.0,26.0,168.0,0.0,0.0,12.0,801.0,243.0,547.0,78.0,117.0,148.0,64.0,123.0,172.0,32.0,0.0,3.0,110.0,56.0,62.0,666.0,9.0,67.0,29.0,1333.0,71.0,78.0,80.0,264.0,500.0,19.0,113.0,0.0,440.0,182.0,23.0,423.0,20.0,8.0,19.0,105.0,308.0,213.0,22.0,704.0,311.0,351.0,32.0,41.0,55.0,447.0,99.0,9.0,0.0,19.0,58.0,170.0,102.0,157.0,543.0,1.0,0.0,61.0,346.0,0.0,1127.0,2107.0,2126.0,132.0,370.0,100.0,1981.0,0.0,75.0,140.0,604.0,823.0,22.0,67.0,0.0,39.0,38.0,144.0,643.0,1.0,18.0,376.0,136.0,1369.0,37.0,0.0,21.0,56.0,0.0,18.0,24.0,22.0,33.0,479.0,36.0,57.0,90.0,20.0,29.0,391.0,56.0,0.0,0.0,126.0,102.0,669.0,21.0,74.0,228.0,0.0,0.0,582.0,2032.0,203.0,57.0,53.0,26.0,878.0,129.0,170.0,61.0,0.0,174.0,562.0,99.0,111.0,1.0,6.0,945.0,208.0,182.0,0.0,1182.0,0.0,0.0,0.0,0.0,1391.0,877.0,680.0,836.0,34.0,0.0,302.0,18.0,142.0,105.0,27.0,100.0,644.0,27.0,81.0,62.0,0.0,134.0,60.0,700.0,437.0,36.0,35.0,208.0,222.0,91.0,368.0,14.0,27.0,211.0,161.0,268.0,216.0,0.0,61.0,0.0,0.0,315.0,1114.0,105.0,194.0,51.0,0.0,68.0,123.0,194.0,1684251.0,44.0,74.0,148.0,16.0,6.0,1128.0,182.0,92.0,0.0,464.0,82.0,0.0,9.0,77.0,342.0,202.0,181.0,91.0,108.0,94.0,1035.0,561.0,637.0,129.0,979.0,586.0,164.0,112.0,825.0,44.0,127.0,217.0,61.0,257.0,92.0,143.0,79.0,360.0,214.0,0.0,859.0,14.0,0.0,15.0,0.0,310.0,15.0,505.0,674.0,0.0,125.0,121.0,19.0,15.0,26.0,32.0,292.0,126.0,16.0,86.0,0.0,110.0,30.0,41.0,57.0,34.0,157.0,62.0,37.0,0.0,43.0,28.0,0.0,70.0,129.0,150.0,0.0,1554.0,67.0,146.0,498.0,596.0,55.0,0.0,180.0,8.0,419.0,45.0,38.0,0.0,0.0,2.0,6.0,216.0,0.0,140.0,62.0,1172.0,28.0,299.0,21.0,62.0,34.0,241.0,104.0,33.0,161.0,219.0,0.0,49.0,13.0,44.0,804.0,844.0,0.0,351.0,47.0,22.0,22.0,52.0,13.0,118.0,743.0,31.0,381.0,1142.0,374.0,83.0,0.0,19.0,27.0,16.0,25.0,75.0,0.0,0.0,0.0,14.0,6.0,1371.0,1887.0,0.0,33.0,0.0,46.0,275.0,115.0,3420.0,0.0,0.0,0.0,0.0,77.0,281.0,77.0,30.0,23.0,0.0,895.0,186.0,100.0,0.0,0.0,2014-11-23,,2014-47,0.8552056768566416,1.5679999999999996, +187,187,1.03,77.0,0.0,97.0,0.0,228.0,0.0,60.0,68.0,0.0,300.0,0.0,69.0,53.0,0.0,912.0,92.0,62.0,50.0,1.0,0.0,0.0,0.0,73.0,5.0,953.0,58.0,441.0,21.0,183.0,0.0,0.0,10.0,763.0,675.0,493.0,49.0,85.0,123.0,79.0,109.0,162.0,29.0,0.0,3.0,102.0,56.0,69.0,561.0,9.0,85.0,28.0,1240.0,63.0,96.0,77.0,249.0,476.0,34.0,111.0,0.0,409.0,186.0,38.0,387.0,18.0,7.0,26.0,94.0,306.0,231.0,28.0,759.0,318.0,340.0,31.0,37.0,59.0,430.0,110.0,7.0,0.0,32.0,42.0,133.0,107.0,163.0,532.0,1.0,0.0,61.0,363.0,0.0,1192.0,2196.0,2184.0,166.0,411.0,107.0,1843.0,0.0,77.0,115.0,567.0,750.0,15.0,63.0,0.0,29.0,34.0,152.0,696.0,3.0,18.0,440.0,109.0,1549.0,52.0,0.0,29.0,54.0,0.0,27.0,27.0,27.0,33.0,460.0,36.0,57.0,104.0,14.0,28.0,434.0,52.0,0.0,0.0,118.0,121.0,602.0,15.0,54.0,204.0,0.0,0.0,475.0,1929.0,219.0,46.0,43.0,34.0,860.0,106.0,137.0,49.0,0.0,186.0,528.0,90.0,79.0,0.0,6.0,882.0,198.0,196.0,0.0,1176.0,0.0,0.0,0.0,0.0,1464.0,826.0,694.0,787.0,28.0,1.0,2658.0,12.0,129.0,106.0,29.0,114.0,620.0,29.0,85.0,65.0,0.0,151.0,77.0,396.0,428.0,28.0,42.0,188.0,239.0,76.0,335.0,8.0,26.0,211.0,191.0,263.0,196.0,0.0,54.0,0.0,0.0,304.0,1078.0,120.0,221.0,40.0,0.0,46.0,77.0,196.0,1569842.0,55.0,85.0,131.0,32.0,14.0,1102.0,166.0,86.0,0.0,455.0,74.0,0.0,7.0,58.0,306.0,174.0,158.0,76.0,117.0,72.0,819.0,580.0,550.0,137.0,793.0,561.0,148.0,105.0,921.0,40.0,144.0,218.0,47.0,237.0,63.0,107.0,92.0,359.0,234.0,0.0,688.0,16.0,0.0,5.0,0.0,309.0,20.0,418.0,590.0,0.0,111.0,109.0,6.0,14.0,23.0,40.0,298.0,143.0,9.0,96.0,0.0,93.0,23.0,60.0,63.0,35.0,162.0,57.0,28.0,0.0,60.0,23.0,0.0,48.0,110.0,132.0,0.0,1205.0,65.0,152.0,486.0,525.0,49.0,0.0,149.0,12.0,400.0,17.0,30.0,0.0,0.0,0.0,9.0,205.0,0.0,143.0,63.0,1179.0,25.0,274.0,33.0,55.0,33.0,256.0,78.0,34.0,141.0,187.0,0.0,38.0,16.0,53.0,624.0,837.0,0.0,296.0,45.0,12.0,17.0,45.0,11.0,136.0,668.0,46.0,306.0,716.0,324.0,91.0,0.0,7.0,37.0,14.0,21.0,55.0,0.0,0.0,0.0,21.0,2.0,1315.0,1607.0,0.0,34.0,0.0,31.0,261.0,86.0,3419.0,0.0,0.0,0.0,0.0,212.0,265.0,62.0,24.0,23.0,0.0,861.0,183.0,110.0,0.0,0.0,2014-11-30,,2014-48,1.0279311053111826,1.9819999999999998, +188,188,1.23,79.0,0.0,110.0,0.0,215.0,0.0,74.0,64.0,0.0,297.0,0.0,69.0,51.0,0.0,823.0,77.0,68.0,51.0,0.0,0.0,0.0,0.0,64.0,7.0,1032.0,49.0,411.0,26.0,264.0,0.0,0.0,3.0,745.0,208.0,632.0,58.0,97.0,69.0,68.0,116.0,100.0,31.0,0.0,5.0,103.0,50.0,80.0,1315.0,8.0,79.0,34.0,1217.0,68.0,78.0,69.0,292.0,506.0,23.0,107.0,0.0,394.0,255.0,33.0,421.0,23.0,11.0,25.0,115.0,245.0,245.0,24.0,708.0,302.0,327.0,32.0,31.0,46.0,431.0,99.0,16.0,0.0,26.0,55.0,147.0,111.0,165.0,515.0,0.0,0.0,78.0,322.0,1.0,1128.0,2416.0,3800.0,177.0,474.0,86.0,2781.0,0.0,71.0,96.0,566.0,1799.0,18.0,46.0,0.0,23.0,49.0,155.0,652.0,6.0,26.0,368.0,138.0,1418.0,39.0,0.0,16.0,54.0,0.0,25.0,19.0,22.0,29.0,503.0,43.0,45.0,82.0,24.0,26.0,383.0,76.0,0.0,0.0,119.0,135.0,654.0,36.0,71.0,220.0,0.0,0.0,592.0,1871.0,207.0,43.0,75.0,43.0,1017.0,134.0,218.0,67.0,0.0,168.0,440.0,89.0,90.0,0.0,6.0,693.0,202.0,180.0,0.0,1185.0,0.0,0.0,0.0,0.0,1294.0,835.0,833.0,832.0,27.0,0.0,246.0,15.0,133.0,118.0,32.0,134.0,589.0,44.0,74.0,68.0,0.0,158.0,54.0,310.0,447.0,41.0,39.0,196.0,218.0,89.0,361.0,8.0,20.0,240.0,170.0,246.0,187.0,0.0,62.0,0.0,0.0,253.0,1103.0,112.0,228.0,50.0,0.0,63.0,92.0,174.0,1527722.0,41.0,121.0,197.0,24.0,11.0,998.0,187.0,81.0,0.0,570.0,82.0,0.0,18.0,49.0,329.0,201.0,132.0,105.0,97.0,80.0,708.0,565.0,462.0,144.0,3846.0,564.0,181.0,90.0,909.0,40.0,137.0,218.0,32.0,243.0,60.0,107.0,122.0,333.0,222.0,0.0,616.0,14.0,0.0,9.0,0.0,317.0,19.0,464.0,624.0,0.0,118.0,94.0,14.0,17.0,26.0,57.0,269.0,171.0,14.0,122.0,0.0,105.0,23.0,61.0,72.0,28.0,187.0,61.0,35.0,0.0,64.0,21.0,0.0,39.0,124.0,153.0,0.0,1054.0,71.0,377.0,473.0,532.0,58.0,0.0,214.0,9.0,380.0,10.0,17.0,0.0,0.0,0.0,16.0,187.0,0.0,147.0,52.0,1205.0,36.0,306.0,33.0,38.0,31.0,266.0,96.0,37.0,130.0,215.0,0.0,28.0,7.0,47.0,1304.0,1564.0,0.0,684.0,35.0,10.0,13.0,77.0,8.0,123.0,1184.0,46.0,410.0,269.0,401.0,154.0,0.0,12.0,42.0,20.0,28.0,60.0,0.0,0.0,0.0,17.0,4.0,1216.0,1294.0,0.0,33.0,0.0,46.0,216.0,91.0,3362.0,0.0,0.0,0.0,0.0,55.0,276.0,76.0,57.0,30.0,0.0,809.0,170.0,108.0,0.0,0.0,2014-12-07,,2014-49,1.2239347823974462,1.7040000000000004, +189,189,1.42,80.0,0.0,107.0,0.0,242.0,0.0,59.0,72.0,0.0,318.0,0.0,61.0,54.0,0.0,843.0,95.0,81.0,43.0,3.0,0.0,0.0,0.0,84.0,6.0,1115.0,57.0,435.0,17.0,165.0,0.0,0.0,9.0,797.0,161.0,433.0,58.0,81.0,56.0,57.0,132.0,135.0,39.0,0.0,4.0,108.0,42.0,77.0,804.0,6.0,93.0,29.0,1226.0,50.0,104.0,62.0,338.0,473.0,29.0,103.0,0.0,536.0,191.0,35.0,423.0,13.0,7.0,16.0,103.0,259.0,265.0,22.0,752.0,280.0,329.0,19.0,42.0,70.0,499.0,89.0,9.0,253.0,188.0,50.0,125.0,159.0,144.0,519.0,37.0,0.0,55.0,305.0,0.0,1124.0,7810.0,2794.0,155.0,503.0,86.0,1386.0,0.0,61.0,103.0,626.0,2220.0,22.0,59.0,0.0,40.0,44.0,128.0,804.0,1.0,21.0,409.0,117.0,1324.0,40.0,0.0,21.0,46.0,0.0,28.0,16.0,18.0,20.0,484.0,53.0,53.0,81.0,22.0,19.0,315.0,67.0,0.0,0.0,140.0,103.0,739.0,26.0,67.0,167.0,0.0,0.0,579.0,1888.0,231.0,44.0,107.0,35.0,923.0,143.0,191.0,53.0,0.0,149.0,419.0,69.0,83.0,0.0,5.0,683.0,162.0,130.0,0.0,1359.0,0.0,0.0,0.0,0.0,1264.0,776.0,650.0,725.0,19.0,1.0,241.0,9.0,133.0,138.0,13.0,152.0,620.0,33.0,59.0,44.0,0.0,113.0,60.0,330.0,410.0,32.0,59.0,215.0,268.0,117.0,325.0,9.0,33.0,303.0,160.0,246.0,145.0,0.0,47.0,0.0,0.0,246.0,1102.0,87.0,178.0,52.0,0.0,71.0,86.0,141.0,1530900.0,50.0,128.0,164.0,26.0,9.0,944.0,140.0,70.0,0.0,491.0,85.0,0.0,22.0,56.0,258.0,214.0,102.0,77.0,94.0,99.0,657.0,478.0,441.0,110.0,1112.0,584.0,177.0,95.0,885.0,40.0,122.0,212.0,34.0,233.0,74.0,107.0,121.0,276.0,227.0,0.0,578.0,9.0,0.0,4.0,0.0,264.0,17.0,403.0,560.0,0.0,106.0,96.0,22.0,15.0,18.0,41.0,305.0,147.0,21.0,91.0,0.0,111.0,35.0,45.0,57.0,26.0,187.0,59.0,47.0,0.0,77.0,22.0,0.0,44.0,102.0,129.0,0.0,1061.0,68.0,98.0,509.0,510.0,67.0,0.0,175.0,7.0,389.0,12.0,21.0,0.0,0.0,0.0,7.0,205.0,0.0,164.0,69.0,1090.0,38.0,336.0,27.0,62.0,43.0,252.0,117.0,33.0,126.0,194.0,0.0,28.0,12.0,33.0,758.0,1353.0,0.0,393.0,32.0,22.0,23.0,66.0,13.0,139.0,757.0,37.0,407.0,202.0,331.0,118.0,0.0,16.0,34.0,14.0,31.0,68.0,0.0,0.0,0.0,11.0,5.0,1179.0,1130.0,0.0,43.0,0.0,38.0,181.0,92.0,3308.0,0.0,0.0,0.0,0.0,50.0,3864.0,67.0,68.0,16.0,0.0,801.0,195.0,127.0,0.0,0.0,2014-12-14,,2014-50,1.4207078730030336,1.8760000000000003, +190,190,1.75,115.0,0.0,113.0,0.0,279.0,0.0,61.0,63.0,0.0,280.0,0.0,77.0,57.0,0.0,785.0,100.0,78.0,39.0,3.0,0.0,0.0,0.0,74.0,16.0,1194.0,51.0,477.0,18.0,145.0,0.0,0.0,10.0,819.0,368.0,412.0,57.0,120.0,94.0,59.0,102.0,122.0,31.0,0.0,5.0,91.0,40.0,61.0,594.0,5.0,123.0,30.0,1130.0,48.0,95.0,71.0,301.0,455.0,31.0,419.0,0.0,439.0,175.0,44.0,374.0,19.0,12.0,24.0,119.0,255.0,227.0,28.0,697.0,299.0,357.0,23.0,35.0,68.0,478.0,89.0,9.0,38.0,28.0,45.0,139.0,88.0,139.0,390.0,33.0,0.0,67.0,378.0,0.0,985.0,1739.0,2365.0,226.0,474.0,77.0,1113.0,0.0,82.0,90.0,621.0,785.0,21.0,53.0,0.0,36.0,37.0,138.0,683.0,3.0,11.0,320.0,130.0,1480.0,66.0,0.0,22.0,30.0,0.0,21.0,29.0,17.0,15.0,392.0,25.0,52.0,126.0,13.0,34.0,399.0,68.0,0.0,0.0,113.0,76.0,690.0,30.0,107.0,157.0,0.0,0.0,461.0,1666.0,251.0,27.0,60.0,38.0,750.0,114.0,160.0,52.0,0.0,189.0,357.0,74.0,81.0,1.0,6.0,763.0,200.0,168.0,0.0,1322.0,0.0,0.0,0.0,0.0,1156.0,870.0,628.0,658.0,22.0,1.0,218.0,21.0,112.0,103.0,20.0,107.0,567.0,15.0,96.0,53.0,0.0,120.0,59.0,337.0,418.0,31.0,52.0,169.0,225.0,96.0,251.0,9.0,27.0,341.0,155.0,270.0,129.0,0.0,52.0,0.0,0.0,221.0,1053.0,103.0,183.0,45.0,0.0,90.0,91.0,146.0,1474649.0,48.0,97.0,111.0,30.0,13.0,872.0,136.0,81.0,0.0,520.0,86.0,0.0,10.0,67.0,234.0,152.0,110.0,67.0,81.0,86.0,532.0,424.0,454.0,130.0,883.0,548.0,207.0,113.0,993.0,41.0,122.0,225.0,43.0,255.0,72.0,113.0,116.0,245.0,240.0,0.0,505.0,16.0,0.0,3.0,0.0,267.0,10.0,384.0,553.0,0.0,115.0,90.0,13.0,13.0,30.0,68.0,252.0,154.0,20.0,112.0,0.0,146.0,24.0,42.0,50.0,31.0,213.0,59.0,26.0,0.0,80.0,22.0,0.0,38.0,128.0,162.0,0.0,1085.0,79.0,121.0,505.0,448.0,66.0,0.0,160.0,6.0,370.0,8.0,29.0,0.0,0.0,0.0,5.0,178.0,0.0,157.0,77.0,998.0,35.0,301.0,39.0,49.0,27.0,245.0,118.0,42.0,93.0,197.0,0.0,164.0,11.0,32.0,553.0,1005.0,0.0,305.0,194.0,24.0,18.0,66.0,9.0,109.0,288.0,21.0,304.0,147.0,294.0,91.0,0.0,17.0,204.0,13.0,28.0,66.0,0.0,0.0,0.0,20.0,10.0,1100.0,1266.0,0.0,42.0,0.0,36.0,437.0,86.0,2779.0,0.0,0.0,6.0,0.0,41.0,226.0,69.0,35.0,33.0,0.0,792.0,204.0,85.0,0.0,0.0,2014-12-21,,2014-51,1.792516832244166,2.486, +191,191,2.25,119.0,0.0,92.0,0.0,207.0,0.0,59.0,53.0,0.0,237.0,0.0,60.0,47.0,0.0,819.0,95.0,60.0,44.0,2.0,0.0,0.0,0.0,65.0,21.0,1197.0,29.0,426.0,17.0,114.0,0.0,0.0,8.0,688.0,140.0,331.0,49.0,101.0,92.0,54.0,122.0,97.0,38.0,0.0,9.0,100.0,40.0,67.0,631.0,5.0,77.0,41.0,1065.0,53.0,94.0,92.0,186.0,474.0,31.0,185.0,0.0,339.0,158.0,42.0,410.0,14.0,9.0,23.0,107.0,238.0,207.0,26.0,670.0,287.0,325.0,22.0,36.0,64.0,372.0,61.0,12.0,12.0,29.0,43.0,222.0,96.0,131.0,510.0,56.0,0.0,61.0,342.0,0.0,932.0,1882.0,1960.0,153.0,418.0,71.0,890.0,0.0,51.0,98.0,466.0,747.0,21.0,44.0,0.0,26.0,51.0,124.0,693.0,3.0,29.0,296.0,118.0,1505.0,57.0,0.0,14.0,40.0,0.0,20.0,16.0,16.0,12.0,420.0,51.0,57.0,91.0,12.0,17.0,285.0,67.0,0.0,0.0,134.0,99.0,757.0,23.0,73.0,191.0,0.0,0.0,428.0,1610.0,194.0,30.0,73.0,43.0,951.0,106.0,152.0,38.0,0.0,140.0,388.0,78.0,73.0,0.0,5.0,643.0,184.0,138.0,0.0,1042.0,0.0,0.0,0.0,0.0,1159.0,781.0,634.0,592.0,23.0,0.0,239.0,15.0,204.0,90.0,23.0,103.0,488.0,27.0,63.0,58.0,2.0,99.0,57.0,313.0,349.0,32.0,30.0,190.0,205.0,79.0,201.0,7.0,20.0,251.0,148.0,245.0,104.0,0.0,44.0,0.0,0.0,253.0,930.0,99.0,194.0,44.0,0.0,55.0,83.0,136.0,1458962.0,42.0,91.0,81.0,21.0,10.0,825.0,140.0,89.0,0.0,497.0,74.0,0.0,19.0,67.0,208.0,169.0,94.0,63.0,102.0,96.0,531.0,415.0,423.0,122.0,783.0,542.0,190.0,97.0,2057.0,44.0,113.0,199.0,42.0,217.0,86.0,90.0,94.0,274.0,222.0,0.0,491.0,12.0,0.0,9.0,0.0,248.0,14.0,3569.0,526.0,1.0,100.0,75.0,13.0,6.0,20.0,41.0,260.0,134.0,20.0,118.0,0.0,152.0,23.0,42.0,51.0,44.0,149.0,61.0,50.0,0.0,81.0,29.0,0.0,31.0,136.0,160.0,0.0,877.0,68.0,145.0,449.0,447.0,80.0,0.0,138.0,10.0,337.0,16.0,21.0,0.0,0.0,0.0,14.0,162.0,0.0,124.0,46.0,1052.0,29.0,333.0,25.0,43.0,23.0,208.0,125.0,38.0,86.0,174.0,0.0,41.0,12.0,29.0,404.0,692.0,0.0,272.0,55.0,12.0,30.0,54.0,12.0,119.0,227.0,16.0,227.0,360.0,312.0,87.0,0.0,11.0,45.0,46.0,92.0,56.0,0.0,0.0,0.0,12.0,5.0,1043.0,953.0,0.0,34.0,0.0,48.0,256.0,106.0,3059.0,0.0,0.0,6.0,0.0,36.0,267.0,73.0,34.0,25.0,0.0,739.0,150.0,92.0,0.0,0.0,2014-12-28,,2014-52,2.2390450126481243,2.5240000000000005, +192,192,2.63,84.0,0.0,60.0,0.0,214.0,0.0,46.0,44.0,0.0,178.0,0.0,44.0,42.0,0.0,532.0,68.0,44.0,30.0,0.0,0.0,0.0,0.0,43.0,27.0,1046.0,32.0,352.0,21.0,112.0,0.0,0.0,18.0,484.0,95.0,240.0,42.0,85.0,80.0,32.0,95.0,85.0,23.0,0.0,3.0,52.0,33.0,56.0,491.0,8.0,58.0,30.0,820.0,48.0,63.0,55.0,186.0,409.0,22.0,113.0,0.0,337.0,108.0,29.0,244.0,14.0,6.0,19.0,62.0,155.0,170.0,26.0,398.0,174.0,191.0,8.0,41.0,35.0,319.0,55.0,5.0,17.0,20.0,27.0,81.0,62.0,98.0,275.0,20.0,0.0,46.0,240.0,0.0,527.0,978.0,1222.0,87.0,193.0,50.0,677.0,0.0,45.0,60.0,441.0,587.0,16.0,44.0,0.0,14.0,26.0,84.0,596.0,3.0,11.0,278.0,88.0,1339.0,28.0,0.0,22.0,30.0,0.0,17.0,16.0,18.0,16.0,278.0,41.0,48.0,62.0,13.0,20.0,230.0,44.0,0.0,0.0,92.0,74.0,601.0,20.0,51.0,132.0,0.0,0.0,318.0,1017.0,125.0,29.0,49.0,23.0,797.0,73.0,128.0,33.0,0.0,104.0,290.0,40.0,29.0,0.0,7.0,976.0,137.0,105.0,0.0,722.0,0.0,0.0,0.0,0.0,798.0,616.0,385.0,371.0,13.0,0.0,148.0,10.0,90.0,90.0,23.0,68.0,367.0,31.0,50.0,33.0,0.0,91.0,55.0,220.0,229.0,33.0,25.0,133.0,165.0,66.0,211.0,9.0,18.0,157.0,79.0,120.0,121.0,0.0,45.0,0.0,0.0,164.0,643.0,58.0,142.0,33.0,0.0,52.0,54.0,109.0,1251708.0,27.0,65.0,65.0,22.0,9.0,492.0,119.0,64.0,0.0,357.0,51.0,0.0,14.0,51.0,191.0,97.0,76.0,52.0,68.0,56.0,386.0,290.0,255.0,105.0,709.0,326.0,142.0,125.0,1021.0,27.0,76.0,130.0,23.0,144.0,48.0,48.0,61.0,199.0,168.0,0.0,364.0,11.0,0.0,15.0,0.0,160.0,12.0,255.0,369.0,0.0,97.0,57.0,17.0,9.0,18.0,39.0,194.0,115.0,11.0,62.0,0.0,71.0,9.0,33.0,41.0,31.0,166.0,57.0,29.0,0.0,48.0,26.0,0.0,30.0,87.0,102.0,0.0,706.0,47.0,94.0,419.0,266.0,48.0,0.0,95.0,10.0,216.0,9.0,17.0,0.0,0.0,0.0,8.0,106.0,0.0,99.0,51.0,677.0,27.0,240.0,18.0,41.0,18.0,163.0,59.0,27.0,84.0,122.0,0.0,73.0,10.0,14.0,236.0,470.0,0.0,170.0,29.0,17.0,13.0,31.0,10.0,56.0,141.0,18.0,138.0,241.0,228.0,78.0,0.0,8.0,18.0,13.0,19.0,45.0,0.0,0.0,0.0,8.0,5.0,733.0,628.0,0.0,25.0,0.0,20.0,129.0,56.0,1707.0,0.0,0.0,2.0,0.0,34.0,189.0,51.0,28.0,22.0,0.0,672.0,102.0,70.0,0.0,0.0,2015-01-04,,2015-1,2.581002239414749,2.85, +193,193,4.09,65.0,0.0,45.0,0.0,122.0,0.0,26.0,17.0,0.0,129.0,0.0,34.0,20.0,0.0,337.0,48.0,24.0,17.0,0.0,0.0,0.0,0.0,31.0,14.0,835.0,10.0,206.0,23.0,69.0,0.0,0.0,5.0,280.0,44.0,170.0,34.0,46.0,71.0,23.0,31.0,52.0,11.0,0.0,1.0,25.0,26.0,34.0,263.0,3.0,47.0,4.0,445.0,19.0,28.0,31.0,79.0,210.0,11.0,49.0,0.0,164.0,71.0,16.0,164.0,4.0,6.0,8.0,48.0,121.0,89.0,17.0,252.0,128.0,136.0,9.0,70.0,19.0,233.0,28.0,4.0,8.0,13.0,13.0,43.0,42.0,41.0,187.0,12.0,0.0,29.0,141.0,0.0,325.0,575.0,604.0,66.0,144.0,33.0,445.0,0.0,33.0,45.0,251.0,319.0,10.0,28.0,0.0,16.0,22.0,61.0,400.0,2.0,11.0,163.0,48.0,964.0,14.0,0.0,11.0,19.0,0.0,8.0,8.0,7.0,8.0,207.0,26.0,26.0,47.0,9.0,16.0,165.0,47.0,0.0,0.0,51.0,47.0,611.0,8.0,55.6,85.0,0.0,0.0,180.0,650.0,92.0,16.0,34.0,10.0,443.0,69.0,175.0,38.0,0.0,70.0,201.0,35.0,20.0,0.0,7.0,684.0,64.0,60.0,0.0,443.0,0.0,0.0,0.0,0.0,396.0,352.0,228.0,270.0,7.0,0.0,80.0,8.0,43.0,60.0,6.0,36.0,208.0,8.0,33.0,18.0,0.0,60.0,32.0,239.0,122.0,29.0,14.0,85.0,106.0,33.0,115.0,7.0,19.0,82.0,59.0,99.0,60.0,0.0,23.0,0.0,0.0,103.0,447.0,41.0,108.0,19.0,0.0,56.8,40.0,86.0,715215.0,28.0,41.0,53.0,8.0,3.0,285.0,70.0,46.0,0.0,227.0,50.0,0.0,6.0,22.0,102.0,70.0,50.0,30.0,42.0,40.0,221.0,165.0,169.0,66.0,442.0,188.0,72.0,79.0,603.0,29.66666666666667,59.0,94.0,18.0,106.0,37.0,46.0,67.4,121.0,132.0,0.0,230.0,7.0,0.0,2.0,0.0,106.0,5.0,161.0,237.0,0.0,61.0,34.0,8.0,5.0,7.0,16.0,121.0,48.0,15.0,51.0,0.0,38.0,6.0,25.0,28.0,13.0,62.0,21.0,9.0,0.0,35.0,11.0,0.0,20.0,52.0,60.0,0.0,448.0,35.0,55.0,268.0,132.0,43.0,0.0,68.0,8.0,120.0,6.0,13.0,0.0,0.0,0.0,5.0,74.0,0.0,64.0,23.0,442.0,23.0,145.0,12.0,30.0,13.0,101.0,34.0,15.0,51.0,69.0,0.0,54.0,6.0,8.0,168.0,315.0,0.0,86.0,14.0,11.0,10.0,20.0,3.0,38.0,84.0,10.0,106.0,77.0,117.0,42.0,0.0,6.0,16.0,6.0,8.0,24.0,0.0,0.0,0.0,7.0,3.0,869.25,490.0,0.0,15.0,0.0,12.0,87.0,38.0,876.0,0.0,0.0,2.0,0.0,22.0,108.0,25.0,9.0,10.0,0.0,419.0,78.0,46.0,0.0,0.0,2015-01-11,,2015-2,4.0604983636068255,3.352, +194,194,6.14,141.0,1.0,103.0,0.0,243.0,0.0,79.0,67.0,0.0,291.0,0.0,60.0,57.0,0.0,837.0,115.0,73.0,45.0,8.0,0.0,0.0,0.0,38.0,37.0,2066.0,27.0,485.0,21.0,121.0,0.0,0.0,10.0,731.0,116.0,430.0,46.0,96.0,108.0,80.0,97.0,106.0,25.0,0.0,1.0,100.0,29.0,54.0,725.0,2.0,66.0,8.0,1047.0,82.0,80.0,85.0,220.0,483.0,28.0,135.0,0.0,346.0,169.0,28.0,391.0,11.0,10.0,26.0,93.0,280.0,227.0,26.0,613.0,332.0,354.0,13.0,42.0,52.0,471.0,91.0,5.0,13.0,17.0,42.0,129.0,232.0,145.0,475.0,33.0,1.0,78.0,382.0,1.0,861.0,1485.0,2055.0,158.0,319.0,77.0,976.0,0.0,68.0,107.0,690.0,724.0,20.0,60.0,0.0,35.0,38.0,159.0,865.0,4.0,22.0,346.0,132.0,2216.0,27.0,0.0,14.0,32.0,2.0,15.0,16.0,25.0,13.0,465.0,34.0,50.0,122.0,18.0,21.0,385.0,50.0,0.0,0.0,163.0,109.0,1267.0,28.0,60.2,190.0,0.0,0.0,455.0,1712.0,238.0,28.0,74.0,27.0,868.0,200.0,502.0,35.0,0.0,138.0,441.0,61.0,95.0,420.0,5.0,929.0,165.0,138.0,0.0,1111.0,0.0,0.0,0.0,0.0,1104.0,807.0,654.0,583.0,27.0,1.0,184.0,16.0,142.0,68.0,19.0,116.0,556.0,26.0,80.0,41.0,0.0,111.0,51.0,359.0,327.0,32.0,56.0,222.0,236.0,106.0,301.0,9.0,23.0,190.0,186.0,227.0,102.0,0.0,41.0,0.0,0.0,248.0,1008.0,96.0,184.0,35.0,0.0,61.6,120.0,194.0,1547093.0,42.0,82.0,112.0,14.0,5.0,714.0,123.0,78.0,0.0,485.0,77.0,1.0,17.0,67.0,256.0,155.0,87.0,66.0,82.0,90.0,476.0,412.0,377.0,123.0,843.0,478.0,161.0,164.0,1327.0,32.333333333333336,131.0,228.0,40.0,260.0,88.0,84.0,73.8,292.0,277.0,0.0,501.0,6.0,0.0,6.0,0.0,371.0,21.0,386.0,518.0,0.0,130.0,83.0,16.0,11.0,28.0,62.0,291.0,176.0,15.0,134.0,0.0,142.0,19.0,47.0,41.0,41.0,237.0,90.0,26.0,0.0,74.0,25.0,0.0,48.0,149.0,161.0,0.0,1079.0,48.0,122.0,535.0,546.0,79.0,0.0,143.0,4.0,348.0,12.0,18.0,0.0,0.0,0.0,1.0,174.0,0.0,173.0,49.0,970.0,31.0,328.0,21.0,56.0,36.0,285.0,104.0,40.0,113.0,191.0,0.0,53.0,10.0,20.0,491.0,870.0,0.0,314.0,39.0,13.0,17.0,50.0,11.0,92.0,176.0,23.0,281.0,164.0,349.0,85.0,0.0,13.0,37.0,10.0,30.0,58.0,0.0,0.0,0.0,10.0,2.0,1005.5,1319.0,0.0,18.0,0.0,32.0,215.0,76.0,2761.0,0.0,0.0,2.0,0.0,54.0,292.0,67.0,30.0,27.0,0.0,780.0,197.0,105.0,0.0,0.0,2015-01-18,,2015-3,6.144307969304135,7.0280000000000005, +195,195,8.94,151.0,0.0,121.0,0.0,242.0,0.0,90.0,70.0,0.0,295.0,0.0,89.0,58.0,0.0,978.0,105.0,90.0,61.0,5.0,0.0,0.0,0.0,73.0,35.0,1896.0,33.0,593.0,26.0,121.0,0.0,0.0,5.0,2144.0,146.0,479.0,84.0,113.0,114.0,74.0,101.0,138.0,43.0,0.0,6.0,111.0,38.0,66.0,908.0,3.0,72.0,33.0,1311.0,72.0,72.0,117.0,315.0,521.0,29.0,278.0,0.0,372.0,198.0,35.0,390.0,10.0,7.0,17.0,100.0,288.0,238.0,33.0,746.0,357.0,398.0,19.0,40.0,80.0,497.0,79.0,7.0,16.0,16.0,47.0,143.0,70.0,135.0,549.0,33.0,0.0,80.0,349.0,0.0,1086.0,1942.0,2112.0,154.0,414.0,128.0,780.0,0.0,77.0,119.0,584.0,809.0,16.0,46.0,0.0,43.0,41.0,180.0,833.0,4.0,20.0,450.0,132.0,2406.0,34.0,0.0,4.0,47.0,0.0,10.0,17.0,18.0,9.0,501.0,54.0,53.0,131.0,10.0,16.0,404.0,53.0,0.0,0.0,160.0,112.0,1527.0,13.0,64.8,188.0,0.0,0.0,597.0,2008.0,290.0,32.0,76.0,29.0,1019.0,2698.0,1557.0,64.0,0.0,177.0,434.0,87.0,118.0,139.0,6.0,841.0,184.0,165.0,0.0,1392.0,0.0,0.0,0.0,0.0,1233.0,1047.0,734.0,670.0,23.0,1.0,274.0,9.0,170.0,94.0,25.0,102.0,638.0,11.0,81.0,45.0,0.0,140.0,70.0,388.0,342.0,32.0,56.0,258.0,277.0,137.0,355.0,9.0,26.0,202.0,209.0,291.0,129.0,0.0,58.0,0.0,0.0,257.0,1103.0,137.0,259.0,57.0,0.0,66.4,116.0,197.0,1580686.0,41.0,85.0,242.0,23.0,7.0,996.0,153.0,76.0,0.0,585.0,78.0,0.0,9.0,105.0,250.0,209.0,110.0,76.0,104.0,109.0,607.0,534.0,518.0,152.0,948.0,582.0,186.0,104.0,1137.0,35.0,111.0,235.0,37.0,274.0,85.0,88.0,80.2,284.0,271.0,0.0,609.0,8.0,0.0,2.0,0.0,494.0,13.0,473.0,608.0,0.0,125.0,105.0,13.0,14.0,24.0,63.0,300.0,192.0,22.0,133.0,0.0,128.0,25.0,43.0,64.0,39.0,272.0,100.0,26.0,0.0,64.0,28.0,0.0,62.0,154.0,187.0,0.0,1200.0,70.0,148.0,528.0,609.0,85.0,0.0,161.0,10.0,441.0,7.0,22.0,0.0,0.0,0.0,4.0,179.0,0.0,208.0,68.0,1126.0,29.0,351.0,22.0,42.0,32.0,272.0,102.0,41.0,116.0,201.0,0.0,56.0,12.0,32.0,518.0,781.0,0.0,369.0,40.0,15.0,20.0,80.0,12.0,119.0,196.0,17.0,275.0,170.0,413.0,124.0,0.0,16.0,45.0,19.0,26.0,70.0,0.0,0.0,0.0,16.0,7.0,1141.75,2017.0,0.0,37.0,0.0,34.0,203.0,86.0,3378.0,0.0,0.0,1.0,0.0,53.0,285.0,56.0,17.0,19.0,0.0,753.0,198.0,109.0,0.0,0.0,2015-01-25,,2015-4,8.93170988302144,8.021999999999998, +196,196,10.87,190.0,0.0,131.0,0.0,310.0,0.0,101.0,65.0,0.0,336.0,0.0,133.0,58.0,0.0,1068.0,116.0,99.0,53.0,0.0,0.0,0.0,0.0,83.0,30.0,2049.0,33.0,637.0,26.0,121.0,0.0,0.0,12.0,864.0,126.0,514.0,76.0,110.0,100.0,78.0,112.0,144.0,30.0,0.0,3.0,81.0,44.0,57.0,926.0,6.0,87.0,32.0,1458.0,90.0,99.0,110.0,368.0,565.0,27.0,119.0,0.0,432.0,220.0,52.0,413.0,18.0,11.0,24.0,107.0,394.0,227.0,39.0,826.0,395.0,374.0,26.0,41.0,70.0,585.0,116.0,7.0,21.0,28.0,40.0,166.0,88.0,113.0,589.0,32.0,0.0,68.0,413.0,0.0,1057.0,2042.0,2212.0,219.0,414.0,107.0,774.0,0.0,68.0,129.0,614.0,877.0,20.0,45.0,0.0,51.0,42.0,190.0,874.0,6.0,24.0,858.0,131.0,2531.0,43.0,0.0,18.0,35.0,0.0,16.0,11.0,20.0,30.0,473.0,43.0,56.0,109.0,15.0,28.0,384.0,56.0,0.0,0.0,144.0,122.0,1376.0,14.0,69.4,220.0,0.0,0.0,576.0,2137.0,284.0,29.0,106.0,52.0,1016.0,1940.0,2040.0,84.0,0.0,196.0,511.0,100.0,95.0,54.0,2.0,857.0,221.0,176.0,0.0,1466.0,0.0,0.0,0.0,0.0,1277.0,1132.0,725.0,669.0,29.0,0.0,291.0,18.0,145.0,95.0,31.0,109.0,605.0,15.0,74.0,52.0,0.0,259.0,62.0,395.0,360.0,26.0,51.0,221.0,318.0,129.0,373.0,7.0,21.0,256.0,159.0,258.0,115.0,0.0,51.0,0.0,0.0,280.0,1288.0,128.0,270.0,47.0,0.0,71.2,117.0,199.0,1531328.0,55.0,131.0,211.0,15.0,7.0,1003.0,152.0,77.0,0.0,567.0,78.0,0.0,13.0,118.0,263.0,193.0,121.0,92.0,105.0,107.0,650.0,517.0,546.0,172.0,1028.0,612.0,173.0,113.0,1044.0,37.66666666666666,161.0,296.0,56.0,311.0,101.0,121.0,86.6,319.0,272.0,0.0,611.0,16.0,0.0,3.0,0.0,275.0,14.0,412.0,613.0,0.0,153.0,124.0,11.0,10.0,30.0,58.0,334.0,212.0,15.0,144.0,0.0,163.0,21.0,32.0,57.0,45.0,278.0,92.0,29.0,0.0,86.0,20.0,0.0,71.0,166.0,184.0,0.0,1202.0,65.0,137.0,528.0,566.0,98.0,0.0,201.0,5.0,390.0,8.0,20.0,0.0,0.0,0.0,4.0,232.0,0.0,212.0,53.0,1082.0,21.0,711.0,42.0,53.0,30.0,288.0,118.0,42.0,128.0,228.0,0.0,46.0,11.0,26.0,634.0,912.0,0.0,414.0,44.0,14.0,21.0,56.0,6.0,119.0,224.0,14.0,352.0,161.0,410.0,120.0,0.0,17.0,43.0,13.0,26.0,74.0,0.0,0.0,0.0,19.0,2.0,1278.0,2025.0,0.0,31.0,0.0,39.0,200.0,77.0,3449.0,0.0,0.0,0.0,0.0,59.0,285.0,64.0,33.0,42.0,0.0,933.0,213.0,105.0,0.0,0.0,2015-02-01,,2015-5,10.880369294898365,6.852, +197,197,10.58,168.0,0.0,147.0,0.0,402.0,0.0,86.0,71.0,0.0,583.0,0.0,71.0,43.0,0.0,1024.0,118.0,122.0,35.0,0.0,0.0,0.0,0.0,77.0,38.0,1877.0,33.0,579.0,31.0,155.0,0.0,0.0,10.0,893.0,132.0,513.0,75.0,124.0,108.0,102.0,108.0,140.0,30.0,0.0,0.0,60.0,43.0,73.0,1536.0,11.0,67.0,19.0,1450.0,82.0,99.0,109.0,405.0,564.0,31.0,108.0,0.0,497.0,184.0,29.0,427.0,10.0,9.0,30.0,103.0,281.0,261.0,33.0,912.0,363.0,426.0,14.0,25.0,67.0,670.0,108.0,10.0,16.0,21.0,46.0,126.0,88.0,123.0,611.0,54.0,0.0,70.0,385.0,0.0,1032.0,2036.0,2047.0,197.0,497.0,78.0,610.0,0.0,64.0,139.0,704.0,938.0,24.0,51.0,0.0,46.0,50.0,189.0,856.0,3.0,20.0,545.0,125.0,2477.0,42.0,0.0,20.0,31.0,0.0,21.0,23.0,10.0,24.0,536.0,42.0,111.0,120.0,13.0,21.0,379.0,59.0,0.0,0.0,154.0,108.0,1282.0,13.0,74.0,213.0,0.0,0.0,640.0,2144.0,288.0,34.0,131.0,42.0,1292.0,1261.0,1856.0,85.0,0.0,182.0,512.0,100.0,92.0,59.0,6.0,934.0,192.0,163.0,0.0,1605.0,0.0,0.0,0.0,0.0,1487.0,931.0,736.0,644.0,21.0,0.0,264.0,8.0,154.0,103.0,32.0,128.0,653.0,25.0,112.0,53.0,0.0,210.0,78.0,813.0,381.0,20.0,42.0,231.0,339.0,128.0,369.0,13.0,28.0,296.0,192.0,229.0,105.0,0.0,48.0,0.0,0.0,242.0,1412.0,142.0,259.0,45.0,0.0,76.0,131.0,192.0,1554372.0,60.0,124.0,275.0,17.0,8.0,1126.0,145.0,84.0,0.0,599.0,85.0,0.0,8.0,93.0,238.0,168.0,123.0,98.0,111.0,128.0,642.0,498.0,518.0,140.0,930.0,609.0,180.0,112.0,1072.0,40.33333333333333,180.0,290.0,41.0,324.0,118.0,117.0,93.0,299.0,248.0,0.0,632.0,6.0,0.0,6.0,0.0,261.0,12.0,868.0,641.0,0.0,128.0,123.0,20.0,10.0,42.0,63.0,338.0,196.0,19.0,135.0,0.0,160.0,41.0,46.0,65.0,41.0,258.0,92.0,30.0,0.0,90.0,21.0,0.0,70.0,184.0,194.0,0.0,1384.0,70.0,85.0,449.0,555.0,91.0,0.0,191.0,6.0,406.0,14.0,31.0,0.0,0.0,0.0,11.0,243.0,0.0,222.0,44.0,1266.0,27.0,1403.0,34.0,67.0,28.0,336.0,121.0,37.0,112.0,199.0,0.0,75.0,14.0,36.0,877.0,1125.0,0.0,361.0,57.0,23.0,14.0,83.0,4.0,140.0,180.0,33.0,378.0,451.0,446.0,183.0,0.0,26.0,48.0,15.0,28.0,54.0,0.0,0.0,0.0,14.0,5.0,1369.0,3495.0,0.0,20.0,0.0,28.0,164.0,100.0,3405.0,0.0,1.0,0.0,0.0,52.0,304.0,75.0,39.0,37.0,0.0,964.0,181.0,134.0,0.0,0.0,2015-02-08,,2015-6,10.573250709059199,8.514000000000001, +198,198,9.98,165.0,0.0,137.0,0.0,277.0,0.0,85.0,53.0,0.0,350.0,0.0,69.0,53.0,0.0,920.0,111.0,98.0,54.0,1.0,0.0,0.0,0.0,90.0,25.0,1907.0,30.0,593.0,16.0,154.0,0.0,0.0,7.0,771.0,126.0,588.0,73.0,105.0,119.0,90.0,137.0,113.0,31.0,0.0,2.0,78.0,41.0,68.0,966.0,4.0,72.0,25.0,1400.0,64.0,92.0,111.0,292.0,523.0,23.0,103.0,0.0,453.0,205.0,38.0,413.0,19.0,9.0,29.0,100.0,343.0,264.0,42.0,789.0,354.0,369.0,20.0,32.0,74.0,557.0,90.0,9.0,17.0,32.0,44.0,157.0,88.0,148.0,579.0,42.0,0.0,86.0,484.0,0.0,1088.0,1976.0,2064.0,184.0,445.0,91.0,716.0,0.0,62.0,117.0,640.0,983.0,13.0,91.0,0.0,43.0,62.0,196.0,839.0,5.0,13.0,552.0,99.0,2411.0,45.0,0.0,23.0,37.0,0.0,16.0,14.0,19.0,12.0,561.0,43.0,57.0,98.0,19.0,31.0,424.0,63.0,0.0,0.0,165.0,112.0,1016.0,13.0,79.0,202.0,0.0,0.0,551.0,2092.0,314.0,24.0,96.0,44.0,970.0,1197.0,1853.0,79.0,0.0,178.0,526.0,90.0,71.0,71.0,6.0,932.0,199.0,170.0,0.0,1515.0,0.0,0.0,0.0,0.0,2292.0,875.0,673.0,618.0,16.0,1.0,286.0,11.0,125.0,77.0,26.0,99.0,649.0,12.0,128.0,67.0,1.0,154.0,70.0,375.0,351.0,29.0,54.0,245.0,287.0,116.0,339.0,9.0,34.0,264.0,172.0,281.0,108.0,0.0,31.0,0.0,0.0,305.0,1370.0,111.0,219.0,45.0,0.0,109.0,134.0,215.0,1526515.0,34.0,109.0,192.0,24.0,7.0,1231.0,193.0,76.0,0.0,655.0,127.0,0.0,18.0,74.0,263.0,155.0,87.0,72.0,115.0,118.0,638.0,501.0,500.0,134.0,1028.0,632.0,192.0,109.0,1049.0,43.0,143.0,287.0,50.0,330.0,106.0,116.0,108.0,289.0,271.0,0.0,631.0,15.0,0.0,10.0,0.0,281.0,14.0,474.0,621.0,1.0,127.0,125.0,11.0,11.0,24.0,50.0,309.0,230.0,24.0,127.0,0.0,147.0,22.0,44.0,67.0,28.0,256.0,75.0,33.0,0.0,79.0,36.0,0.0,64.0,159.0,164.0,0.0,1371.0,60.0,98.0,471.0,561.0,63.0,0.0,176.0,3.0,400.0,11.0,18.0,0.0,0.0,0.0,4.0,188.0,0.0,167.0,48.0,1276.0,24.0,546.0,27.0,35.0,23.0,305.0,109.0,28.0,126.0,226.0,0.0,159.0,12.0,23.0,752.0,1148.0,0.0,581.0,56.0,14.0,25.0,78.0,4.0,128.0,226.0,21.0,414.0,199.0,386.0,160.0,0.0,16.0,120.0,21.0,36.0,74.0,0.0,0.0,0.0,28.0,3.0,1160.0,1299.0,0.0,33.0,0.0,37.0,184.0,71.0,3761.0,0.0,0.0,1.0,0.0,52.0,278.0,78.0,37.0,19.0,0.0,889.0,187.0,100.0,0.0,0.0,2015-02-15,,2015-7,9.964456497903733,8.486000000000002, +199,199,8.22,183.0,0.0,114.0,0.0,202.0,0.0,84.0,58.0,0.0,308.0,0.0,73.0,57.0,0.0,991.0,88.0,84.0,41.0,0.0,0.0,0.0,0.0,66.0,40.0,1813.0,41.0,513.0,18.0,140.0,0.0,0.0,8.0,709.0,105.0,480.0,77.0,99.0,133.0,99.0,124.0,96.0,32.0,0.0,1.0,84.0,41.0,56.0,1045.0,9.0,96.0,20.0,1240.0,55.0,100.0,67.0,250.0,472.0,32.0,96.0,0.0,379.0,171.0,52.0,410.0,12.0,11.0,25.0,107.0,312.0,240.0,39.0,793.0,358.0,377.0,20.0,32.0,59.0,509.0,88.0,13.0,17.0,17.0,40.0,135.0,89.0,134.0,546.0,45.0,0.0,71.0,355.0,0.0,1027.0,1939.0,1993.0,211.0,396.0,56.0,580.0,27.0,54.0,106.0,521.0,958.0,15.0,72.0,0.0,50.0,45.0,204.0,678.0,5.0,14.0,457.0,107.0,2232.0,60.0,0.0,21.0,29.0,0.0,16.0,19.0,14.0,10.0,474.0,45.0,64.0,104.0,17.0,26.0,361.0,45.0,0.0,0.0,117.0,113.0,775.0,17.0,84.0,204.0,0.0,0.0,476.0,1980.0,262.0,27.0,69.0,45.0,1052.0,887.0,1281.0,64.0,0.0,168.0,463.0,89.0,85.0,58.0,4.0,1295.0,176.0,162.0,0.0,1343.0,0.0,0.0,0.0,0.0,1392.0,1695.0,680.0,596.0,22.0,1.0,282.0,16.0,133.0,107.0,25.0,99.0,635.0,17.0,157.0,57.0,0.0,156.0,53.0,339.0,393.0,26.0,47.0,267.0,279.0,116.0,276.0,2.0,32.0,292.0,164.0,283.0,131.0,0.0,32.0,0.0,0.0,271.0,1146.0,102.0,186.0,49.0,0.0,93.0,114.0,196.0,1474747.0,41.0,124.0,217.0,23.0,10.0,1003.0,131.0,75.0,0.0,604.0,66.0,0.0,12.0,90.0,260.0,180.0,127.0,95.0,117.0,95.0,589.0,447.0,475.0,153.0,1060.0,547.0,161.0,106.0,1008.0,32.0,130.0,243.0,45.0,285.0,90.0,107.0,119.0,260.0,274.0,0.0,623.0,16.0,0.0,4.0,0.0,301.0,15.0,343.0,586.0,0.0,110.0,124.0,14.0,9.0,30.0,67.0,318.0,203.0,21.0,111.0,0.0,157.0,18.0,38.0,54.0,31.0,241.0,70.0,40.0,0.0,68.0,29.0,0.0,51.0,124.0,166.0,0.0,1148.0,52.0,119.0,476.0,455.0,52.0,0.0,177.0,8.0,370.0,8.0,20.0,0.0,0.0,0.0,3.0,170.0,0.0,197.0,54.0,1408.0,24.0,384.0,26.0,50.0,27.0,222.0,110.0,40.0,112.0,197.0,0.0,76.0,12.0,36.0,651.0,961.0,0.0,465.0,42.0,15.0,18.0,82.0,6.0,138.0,166.0,14.0,390.0,181.0,368.0,126.0,0.0,14.0,89.0,14.0,25.0,58.0,0.0,0.0,0.0,19.0,7.0,1095.0,1270.0,0.0,34.0,0.0,32.0,199.0,88.0,3156.0,0.0,0.0,0.0,0.0,57.0,272.0,112.0,36.0,19.0,0.0,776.0,208.0,125.0,0.0,0.0,2015-02-22,,2015-8,8.22389153993226,8.22, +200,200,6.89,200.0,0.0,161.0,0.0,244.0,0.0,84.0,69.0,0.0,314.0,0.0,76.0,59.0,0.0,1001.0,117.0,94.0,48.0,0.0,0.0,0.0,0.0,80.0,42.0,1789.0,41.0,494.0,20.0,190.0,0.0,0.0,6.0,852.0,255.0,495.0,68.0,92.0,108.0,92.0,103.0,154.0,35.0,0.0,2.0,95.0,38.0,77.0,1252.0,12.0,98.0,20.0,1315.0,63.0,110.0,107.0,269.0,539.0,40.0,95.0,0.0,415.0,190.0,41.0,382.0,19.0,15.0,34.0,125.0,281.0,250.0,35.0,856.0,339.0,417.0,19.0,39.0,48.0,499.0,90.0,18.0,10.0,18.0,49.0,339.0,88.0,140.0,624.0,35.0,0.0,87.0,354.0,0.0,1141.0,2096.0,2373.0,183.0,386.0,108.0,682.0,104.0,64.0,128.0,608.0,825.0,16.0,62.0,0.0,58.0,53.0,174.0,711.0,0.0,22.0,435.0,127.0,2060.0,55.0,0.0,12.0,35.0,0.0,15.0,12.0,9.0,12.0,453.0,50.0,55.0,116.0,8.0,27.0,381.0,56.0,0.0,0.0,153.0,113.0,764.0,15.0,86.0,195.0,0.0,0.0,479.0,2219.0,295.0,24.0,80.0,41.0,963.0,705.0,845.0,64.0,0.0,209.0,537.0,81.0,72.0,63.0,6.0,764.0,176.0,171.0,0.0,1387.0,0.0,0.0,0.0,0.0,1409.0,1068.0,779.0,662.0,19.0,0.0,288.0,14.0,135.0,97.0,25.0,109.0,712.0,17.0,139.0,49.0,0.0,174.0,52.0,494.0,372.0,17.0,86.0,276.0,345.0,143.0,329.0,9.0,27.0,367.0,154.0,229.0,94.0,0.0,50.0,0.0,0.0,248.0,1155.0,106.0,206.0,54.0,0.0,83.0,122.0,204.0,1450178.0,42.0,90.0,237.0,25.0,10.0,1122.0,159.0,90.0,0.0,610.0,74.0,0.0,10.0,67.0,292.0,162.0,103.0,84.0,114.0,113.0,617.0,479.0,519.0,138.0,1371.0,572.0,155.0,86.0,995.0,39.0,121.0,286.0,53.0,280.0,116.0,91.0,113.0,335.0,270.0,0.0,588.0,12.0,0.0,7.0,0.0,377.0,20.0,448.0,641.0,0.0,153.0,117.0,5.0,11.0,35.0,58.0,328.0,209.0,28.0,123.0,0.0,195.0,26.0,47.0,65.0,35.0,263.0,74.0,35.0,0.0,67.0,19.0,0.0,69.0,143.0,189.0,0.0,1234.0,72.0,150.0,463.0,542.0,44.0,0.0,227.0,7.0,416.0,8.0,22.0,0.0,0.0,0.0,7.0,195.0,0.0,220.0,60.0,1197.0,27.0,345.0,25.0,52.0,32.0,276.0,118.0,47.0,131.0,218.0,0.0,39.0,14.0,45.0,609.0,1221.0,0.0,419.0,48.0,16.0,18.0,73.0,10.0,116.0,149.0,12.0,323.0,196.0,483.0,137.0,0.0,16.0,68.0,25.0,31.0,64.0,0.0,0.0,0.0,20.0,4.0,1152.0,1275.0,0.0,38.0,0.0,38.0,155.0,76.0,3570.0,0.0,0.0,1.0,0.0,48.0,321.0,73.0,25.0,38.0,0.0,856.0,244.0,127.0,0.0,0.0,2015-03-01,,2015-9,6.881426329787121,6.742000000000001, +201,201,5.47,171.0,0.0,120.0,0.0,229.0,0.0,58.0,60.0,0.0,310.0,0.0,77.0,42.0,0.0,937.0,117.0,78.0,44.0,0.0,0.0,0.0,0.0,79.0,26.0,1618.0,59.0,530.0,17.0,185.0,0.0,0.0,3.0,1713.0,140.0,385.0,59.0,86.0,103.0,68.0,150.0,158.0,35.0,0.0,3.0,74.0,33.0,77.0,873.0,7.0,80.0,35.0,1305.0,62.0,101.0,101.0,288.0,519.0,23.0,107.0,0.0,408.0,208.0,60.0,441.0,27.0,21.0,19.0,110.0,282.0,216.0,37.0,744.0,298.0,322.0,38.0,35.0,60.0,459.0,63.0,8.0,24.0,41.0,52.0,140.0,91.0,374.0,581.0,66.0,0.0,72.0,496.0,0.0,1129.0,1955.0,2132.0,160.0,398.0,95.0,503.0,98.0,63.0,103.0,548.0,877.0,9.0,44.0,0.0,30.0,52.0,146.0,830.0,5.0,23.0,395.0,107.0,1731.0,38.0,0.0,22.0,33.0,0.0,17.0,28.0,15.0,11.0,502.0,43.0,53.0,91.0,8.0,25.0,326.0,48.0,0.0,0.0,122.0,83.0,813.0,15.0,79.0,163.0,0.0,0.0,543.0,2010.0,267.0,54.0,72.0,26.0,949.0,528.0,960.0,60.0,0.0,209.0,456.0,88.0,111.0,59.0,4.0,842.0,195.0,185.0,0.0,1228.0,0.0,0.0,0.0,0.0,1412.0,971.0,822.0,693.0,34.0,1.0,280.0,10.0,154.0,86.0,17.0,118.0,645.0,31.0,114.0,54.0,0.0,141.0,54.0,357.0,412.0,19.0,42.0,201.0,239.0,89.0,312.0,4.0,120.0,361.0,150.0,254.0,145.0,0.0,47.0,0.0,0.0,256.0,1418.0,137.0,226.0,40.0,0.0,88.0,101.0,187.0,1413588.0,68.0,76.0,200.0,42.0,4.0,1093.0,168.0,75.0,0.0,587.0,81.0,0.0,18.0,94.0,254.0,163.0,102.0,73.0,113.0,98.0,638.0,445.0,518.0,143.0,900.0,799.0,190.0,84.0,981.0,57.0,115.0,235.0,42.0,275.0,89.0,102.0,113.0,281.0,243.0,0.0,614.0,20.0,0.0,6.0,0.0,311.0,22.0,511.0,681.0,1.0,208.0,93.0,17.0,14.0,29.0,45.0,273.0,184.0,22.0,115.0,0.0,146.0,28.0,44.0,54.0,26.0,186.0,81.0,46.0,0.0,52.0,18.0,0.0,49.0,119.0,155.0,0.0,1172.0,76.0,171.0,464.0,535.0,46.0,0.0,205.0,6.0,405.0,9.0,27.0,0.0,0.0,1.0,6.0,177.0,0.0,135.0,69.0,1208.0,33.0,337.0,35.0,59.0,24.0,288.0,96.0,28.0,117.0,208.0,0.0,37.0,10.0,28.0,727.0,1008.0,0.0,592.0,42.0,27.0,20.0,91.0,12.0,126.0,142.0,13.0,291.0,186.0,372.0,189.0,0.0,19.0,71.0,27.0,19.0,76.0,0.0,0.0,0.0,13.0,8.0,1290.0,1252.0,0.0,41.0,0.0,33.0,138.0,86.0,3610.0,0.0,0.0,0.0,0.0,43.0,328.0,77.0,32.0,29.0,0.0,840.0,192.0,112.0,0.0,0.0,2015-03-08,,2015-10,5.479546117895802,3.6780000000000004, +202,202,4.35,162.0,0.0,93.0,0.0,215.0,0.0,47.0,54.0,0.0,302.0,0.0,92.0,50.0,0.0,876.0,85.0,77.0,35.0,0.0,0.0,0.0,0.0,72.0,42.0,1444.0,45.0,458.0,25.0,164.0,0.0,0.0,10.0,858.0,118.0,444.0,60.0,99.0,79.0,56.0,123.0,148.0,17.0,0.0,1.0,105.0,48.0,66.0,814.0,6.0,312.0,17.0,1195.0,71.0,83.0,79.0,228.0,487.0,32.0,114.0,0.0,387.0,161.0,37.0,324.0,9.0,7.0,21.0,117.0,267.0,243.0,40.0,714.0,345.0,373.0,28.0,33.0,54.0,456.0,73.0,14.0,13.0,28.0,50.0,117.0,74.0,156.0,527.0,64.0,0.0,55.0,312.0,0.0,1276.0,1882.0,2079.0,145.0,364.0,79.0,468.0,96.0,41.0,109.0,594.0,884.0,19.0,42.0,0.0,51.0,59.0,138.0,772.0,3.0,17.0,426.0,111.0,1681.0,42.0,0.0,19.0,42.0,0.0,11.0,20.0,22.0,21.0,426.0,32.0,94.0,66.0,11.0,26.0,304.0,44.0,0.0,0.0,105.0,96.0,799.0,20.0,77.0,160.0,0.0,0.0,456.0,1950.0,218.0,38.0,75.0,31.0,841.0,376.0,506.0,54.0,0.0,232.0,418.0,63.0,90.0,68.0,4.0,711.0,155.0,150.0,0.0,1087.0,0.0,0.0,0.0,0.0,1426.0,795.0,717.0,623.0,21.0,0.0,283.0,15.0,131.0,79.0,24.0,122.0,664.0,21.0,108.0,47.0,0.0,121.0,53.0,346.0,410.0,22.0,43.0,204.0,262.0,98.0,237.0,6.0,495.0,255.0,186.0,298.0,116.0,0.0,47.0,0.0,0.0,252.0,1354.0,82.0,174.0,43.0,0.0,72.0,71.0,227.0,1502994.0,69.0,93.0,114.0,27.0,9.0,899.0,140.0,89.0,0.0,527.0,87.0,0.0,13.0,262.0,258.0,151.0,96.0,82.0,92.0,87.0,563.0,447.0,431.0,115.0,837.0,721.0,183.0,100.0,892.0,45.0,135.0,236.0,65.0,308.0,72.0,128.0,86.0,257.0,272.0,0.0,575.0,9.0,0.0,8.0,0.0,317.0,28.0,377.0,578.0,0.0,103.0,119.0,8.0,6.0,16.0,51.0,293.0,150.0,24.0,116.0,0.0,101.0,23.0,38.0,52.0,31.0,167.0,57.0,36.0,0.0,70.0,30.0,0.0,63.0,111.0,154.0,0.0,1064.0,46.0,116.0,475.0,525.0,49.0,0.0,212.0,9.0,463.0,8.0,22.0,0.0,0.0,0.0,7.0,194.0,0.0,146.0,42.0,1253.0,36.0,309.0,31.0,31.0,32.0,299.0,91.0,29.0,106.0,198.0,0.0,53.0,21.0,41.0,587.0,957.0,0.0,458.0,52.0,15.0,32.0,63.0,11.0,129.0,98.0,17.0,320.0,192.0,359.0,97.0,0.0,20.0,69.0,9.0,29.0,59.0,0.0,0.0,0.0,22.0,2.0,1142.0,1218.0,0.0,31.0,0.0,26.0,139.0,113.0,3212.0,0.0,0.0,0.0,0.0,56.0,297.0,66.0,51.0,34.0,0.0,710.0,206.0,109.0,0.0,0.0,2015-03-15,,2015-11,4.3385995335539045,4.3500000000000005, +203,203,3.73,157.0,0.0,107.0,0.0,198.0,0.0,51.0,60.0,0.0,285.0,0.0,66.0,50.0,0.0,825.0,106.0,48.0,37.0,0.0,0.0,0.0,0.0,81.0,31.0,1315.0,30.0,434.0,14.0,173.0,0.0,0.0,10.0,744.0,94.0,410.0,59.0,102.0,104.0,61.0,108.0,114.0,40.0,0.0,1.0,103.0,38.0,65.0,1039.0,3.0,142.0,29.0,1235.0,94.0,84.0,87.0,246.0,443.0,38.0,117.0,0.0,360.0,167.0,47.0,358.0,26.0,12.0,23.0,102.0,252.0,276.0,52.0,819.0,238.0,369.0,22.0,150.0,69.0,423.0,106.0,10.0,18.0,36.0,48.0,132.0,115.0,148.0,550.0,45.0,0.0,74.0,325.0,0.0,1236.0,1841.0,1775.0,128.0,417.0,96.0,456.0,99.0,65.0,114.0,607.0,906.0,20.0,54.0,0.0,38.0,64.0,90.0,719.0,8.0,21.0,383.0,124.0,1591.0,47.0,0.0,17.0,43.0,0.0,12.0,15.0,14.0,10.0,383.0,40.0,66.0,74.0,9.0,31.0,353.0,43.0,0.0,0.0,129.0,107.0,901.0,18.0,45.0,171.0,0.0,0.0,458.0,1851.0,255.0,28.0,71.0,26.0,816.0,552.0,551.0,50.0,0.0,141.0,433.0,91.0,74.0,55.0,5.0,643.0,208.0,175.0,0.0,1066.0,0.0,0.0,0.0,0.0,1365.0,934.0,700.0,591.0,35.0,1.0,293.0,11.0,114.0,89.0,27.0,116.0,652.0,18.0,110.0,61.0,1.0,119.0,68.0,301.0,306.0,14.0,41.0,210.0,223.0,78.0,236.0,7.0,41.0,221.0,140.0,237.0,108.0,0.0,52.0,0.0,0.0,244.0,1111.0,107.0,209.0,42.0,0.0,71.0,90.0,157.0,1736961.0,55.0,121.0,106.0,35.0,9.0,932.0,160.0,86.0,0.0,487.0,64.0,0.0,19.0,181.0,285.0,166.0,111.0,86.0,79.0,113.0,565.0,415.0,417.0,114.0,1021.0,558.0,218.0,93.0,922.0,25.0,123.0,228.0,37.0,232.0,82.0,85.0,71.0,269.0,266.0,0.0,563.0,21.0,0.0,7.0,0.0,260.0,21.0,385.0,575.0,0.0,93.0,155.0,28.0,16.0,36.0,38.0,280.0,144.0,31.0,88.0,0.0,106.0,25.0,34.0,57.0,45.0,157.0,71.0,41.0,0.0,72.0,28.0,0.0,53.0,108.0,137.0,0.0,1043.0,62.0,143.0,388.0,510.0,29.0,0.0,221.0,9.0,363.0,13.0,16.0,0.0,0.0,0.0,7.0,194.0,0.0,150.0,46.0,1253.0,27.0,339.0,37.0,53.0,30.0,264.0,79.0,30.0,102.0,193.0,0.0,88.0,7.0,27.0,653.0,988.0,0.0,670.0,55.0,8.0,17.0,67.0,9.0,115.0,110.0,32.0,590.0,206.0,396.0,1109.0,0.0,21.0,114.0,16.0,34.0,54.0,0.0,0.0,0.0,27.0,4.0,1200.0,1114.0,0.0,34.0,0.0,26.0,125.0,93.0,3147.0,0.0,0.0,0.0,0.0,44.0,295.0,47.0,34.0,23.0,0.0,818.0,184.0,108.0,0.0,0.0,2015-03-22,,2015-12,3.7375740388917293,3.204, +204,204,3.21,147.0,0.0,78.0,0.0,217.0,0.0,44.0,48.0,72.0,286.0,0.0,78.0,54.0,0.0,868.0,82.0,58.0,47.0,2.0,0.0,0.0,0.0,66.0,29.0,1337.0,25.0,457.0,22.0,127.0,0.0,0.0,5.0,794.0,103.0,426.0,51.0,100.0,134.0,69.0,110.0,114.0,43.0,0.0,5.0,118.0,33.0,50.0,1199.0,5.0,75.0,24.0,1208.0,90.0,85.0,74.0,247.0,484.0,17.0,72.0,0.0,345.0,199.0,36.0,383.0,9.0,11.0,17.0,101.0,245.0,229.0,46.0,780.0,287.0,321.0,18.0,59.0,43.0,429.0,95.0,5.0,21.0,26.0,57.0,157.0,116.0,128.0,538.0,51.0,0.0,48.0,342.0,0.0,1131.0,1785.0,1877.0,151.0,339.0,64.0,447.0,54.0,56.0,105.0,493.0,775.0,16.0,46.0,0.0,43.0,41.0,146.0,705.0,2.0,11.0,464.0,114.0,1414.0,40.0,0.0,13.0,42.0,0.0,14.0,7.0,20.0,13.0,449.0,32.0,54.0,89.0,13.0,27.0,337.0,35.0,0.0,0.0,95.0,100.0,747.0,12.0,45.0,154.0,0.0,0.0,480.0,1867.0,310.0,26.0,67.0,27.0,716.0,226.0,303.0,40.0,0.0,131.0,416.0,71.0,98.0,67.0,3.0,604.0,177.0,148.0,0.0,1146.0,0.0,0.0,0.0,0.0,1337.0,724.0,689.0,598.0,54.0,1.0,209.0,8.0,111.0,90.0,24.0,90.0,705.0,20.0,100.0,55.0,0.0,121.0,50.0,338.0,320.0,15.0,52.0,210.0,218.0,92.0,272.0,9.0,21.0,211.0,143.0,246.0,103.0,0.0,49.0,0.0,0.0,263.0,1232.0,98.0,220.0,43.0,0.0,63.0,101.0,136.0,1381025.0,36.0,67.0,88.0,21.0,10.0,1043.0,174.0,70.0,0.0,491.0,59.0,0.0,7.0,152.0,248.0,149.0,104.0,77.0,92.0,94.0,611.0,413.0,464.0,123.0,890.0,612.0,238.0,89.0,868.0,35.0,120.0,262.0,46.0,298.0,76.0,94.0,59.0,287.0,228.0,0.0,596.0,8.0,0.0,2.0,0.0,274.0,19.0,393.0,549.0,0.0,106.0,82.0,14.0,6.0,17.0,55.0,363.0,146.0,20.0,97.0,0.0,88.0,22.0,41.0,48.0,39.0,188.0,81.0,21.0,0.0,38.0,15.0,0.0,41.0,89.0,131.0,0.0,1176.0,57.0,205.0,450.0,497.0,33.0,0.0,184.0,5.0,422.0,7.0,22.0,0.0,0.0,0.0,5.0,157.0,0.0,169.0,39.0,1214.0,26.0,309.0,42.0,50.0,17.0,211.0,61.0,28.0,105.0,182.0,0.0,86.0,8.0,31.0,644.0,914.0,0.0,438.0,39.0,13.0,15.0,64.0,10.0,105.0,104.0,15.0,315.0,161.0,406.0,1055.0,0.0,14.0,60.0,16.0,18.0,40.0,0.0,0.0,0.0,13.0,5.0,1218.0,1295.0,0.0,32.0,0.0,18.0,139.0,84.0,3952.0,0.0,0.0,2.0,0.0,38.0,277.0,65.0,22.0,23.0,0.0,716.0,172.0,112.0,0.0,0.0,2015-03-29,,2015-13,3.1968811200822165,3.658, +205,205,2.44,120.0,0.0,97.0,0.0,234.0,0.0,52.0,88.0,38.0,311.0,0.0,71.0,46.0,0.0,832.0,113.0,88.0,50.0,0.0,0.0,0.0,0.0,76.0,34.0,1261.0,42.0,467.0,18.0,135.0,0.0,0.0,10.0,760.0,91.0,428.0,59.0,108.0,102.0,57.0,94.0,120.0,31.0,0.0,2.0,119.0,42.0,75.0,947.0,6.0,110.0,23.0,1134.0,71.0,87.0,73.0,219.0,462.0,23.0,83.0,0.0,347.0,203.0,38.0,374.0,11.0,5.0,16.0,76.0,253.0,243.0,54.0,768.0,272.0,332.0,22.0,32.0,52.0,406.0,80.0,7.0,17.0,23.0,44.0,109.0,118.0,143.0,508.0,45.0,0.0,68.0,341.0,2.0,1146.0,1667.0,1862.0,147.0,370.0,86.0,337.0,48.0,58.0,92.0,518.0,743.0,22.0,44.0,0.0,34.0,39.0,127.0,720.0,2.0,14.0,573.0,90.0,1449.0,56.0,0.0,21.0,29.0,0.0,17.0,16.0,8.0,8.0,525.0,67.0,68.0,71.0,14.0,26.0,350.0,50.0,0.0,0.0,119.0,101.0,742.0,15.0,65.0,190.0,0.0,0.0,486.0,1799.0,260.0,35.0,62.0,29.0,888.0,202.0,678.0,51.0,0.0,193.0,383.0,59.0,68.0,45.0,2.0,609.0,219.0,165.0,0.0,1099.0,0.0,0.0,0.0,0.0,1449.0,1005.0,731.0,748.0,55.0,0.0,279.0,15.0,129.0,95.0,25.0,103.0,613.0,16.0,99.0,50.0,0.0,99.0,63.0,347.0,351.0,20.0,51.0,203.0,248.0,79.0,288.0,8.0,19.0,223.0,145.0,289.0,100.0,0.0,40.0,0.0,0.0,253.0,1225.0,84.0,171.0,42.0,0.0,64.0,74.0,159.0,1401615.0,48.0,138.0,100.0,21.0,7.0,967.0,122.0,70.0,0.0,450.0,64.0,0.0,7.0,93.0,220.0,181.0,105.0,98.0,103.0,93.0,599.0,431.0,444.0,145.0,790.0,562.0,196.0,78.0,794.0,31.0,132.0,270.0,51.0,283.0,81.0,121.0,84.0,270.0,244.0,0.0,614.0,37.0,0.0,10.0,0.0,246.0,13.0,396.0,486.0,0.0,113.0,93.0,12.0,9.0,24.0,39.0,326.0,151.0,21.0,102.0,0.0,126.0,20.0,36.0,56.0,21.0,174.0,54.0,25.0,0.0,55.0,18.0,0.0,37.0,98.0,145.0,0.0,1108.0,60.0,516.0,414.0,504.0,42.0,0.0,184.0,6.0,379.0,13.0,22.0,0.0,0.0,0.0,5.0,182.0,0.0,151.0,66.0,1193.0,32.0,347.0,49.0,42.0,22.0,251.0,69.0,29.0,119.0,212.0,0.0,69.0,9.0,22.0,584.0,876.0,0.0,388.0,54.0,19.0,26.0,60.0,10.0,85.0,102.0,20.0,304.0,178.0,387.0,331.0,0.0,30.0,49.0,25.0,28.0,41.0,0.0,0.0,0.0,26.0,2.0,1098.0,1151.0,0.0,40.0,0.0,42.0,142.0,93.0,3403.0,0.0,0.0,0.0,0.0,43.0,304.0,43.0,27.0,32.0,0.0,693.0,206.0,113.0,0.0,0.0,2015-04-05,,2015-14,2.4638877766350493,2.1959999999999997, +206,206,1.9,112.0,0.0,89.0,0.0,160.0,1.0,50.0,64.0,45.0,232.0,0.0,66.0,43.0,0.0,730.0,101.0,52.0,27.0,0.0,0.0,0.0,0.0,77.0,31.0,1005.0,42.0,355.0,18.0,102.0,0.0,0.0,10.0,663.0,93.0,446.0,62.0,90.0,58.0,41.0,76.0,124.0,34.0,0.0,4.0,74.0,45.0,69.0,736.0,10.0,66.0,24.0,927.0,56.0,70.0,52.0,225.0,424.0,25.0,67.0,0.0,322.0,154.0,39.0,318.0,15.0,13.0,23.0,99.0,229.0,188.0,33.0,683.0,223.0,266.0,25.0,26.0,52.0,388.0,54.0,17.0,32.0,24.0,43.0,137.0,124.0,107.0,488.0,36.0,0.0,48.0,295.0,0.0,1107.0,1609.0,1621.0,99.0,260.0,51.0,317.0,56.0,55.0,85.0,460.0,743.0,17.0,36.0,0.0,37.0,29.0,120.0,638.0,6.0,16.0,629.0,115.0,1192.0,64.0,0.0,17.0,49.0,0.0,14.0,13.0,14.0,14.0,368.0,28.0,61.0,85.0,7.0,16.0,282.0,49.0,0.0,0.0,111.0,78.0,767.0,15.0,46.0,150.0,0.0,0.0,372.0,1529.0,203.0,27.0,33.0,30.0,589.0,140.0,497.0,53.0,0.0,148.0,414.0,62.0,50.0,47.0,7.0,535.0,165.0,148.0,0.0,937.0,0.0,0.0,0.0,0.0,1166.0,729.0,1134.0,750.0,34.0,2.0,234.0,23.0,104.0,112.0,18.0,100.0,597.0,14.0,70.0,53.0,0.0,127.0,25.0,326.0,324.0,14.0,30.0,174.0,199.0,56.0,261.0,16.0,27.0,261.0,160.0,218.0,108.0,0.0,28.0,0.0,0.0,220.0,1030.0,78.0,152.0,48.0,0.0,69.0,76.0,167.0,1327476.0,41.0,69.0,80.0,24.0,13.0,760.0,103.0,62.0,0.0,390.0,71.0,0.0,10.0,61.0,211.0,156.0,112.0,67.0,85.0,93.0,462.0,412.0,371.0,103.0,2634.0,463.0,210.0,80.0,658.0,33.0,115.0,227.0,48.0,210.0,49.0,85.0,72.0,229.0,208.0,0.0,521.0,12.0,0.0,7.0,0.0,210.0,23.0,377.0,465.0,1.0,79.0,79.0,10.0,10.0,21.0,59.0,238.0,175.0,28.0,82.0,0.0,98.0,6.0,29.0,43.0,29.0,196.0,71.0,28.0,0.0,56.0,26.0,0.0,46.0,91.0,126.0,0.0,925.0,54.0,276.0,393.0,449.0,34.0,0.0,180.0,16.0,342.0,13.0,16.0,0.0,0.0,0.0,3.0,175.0,0.0,130.0,47.0,1003.0,23.0,338.0,31.0,47.0,12.0,206.0,76.0,29.0,96.0,162.0,0.0,43.0,12.0,29.0,467.0,726.0,0.0,366.0,45.0,11.0,23.0,57.0,13.0,107.0,74.0,11.0,259.0,127.0,331.0,152.0,0.0,25.0,40.0,17.0,19.0,49.0,0.0,0.0,0.0,14.0,4.0,970.0,829.0,0.0,46.0,0.0,26.0,141.0,61.0,2702.0,0.0,1.0,3.0,0.0,34.0,244.0,72.0,28.0,28.0,0.0,643.0,173.0,111.0,0.0,0.0,2015-04-12,,2015-15,1.8363911347297188,1.64, +207,207,1.48,127.0,0.0,82.0,0.0,262.0,0.0,49.0,49.0,61.0,252.0,0.0,50.0,38.0,0.0,730.0,87.0,66.0,38.0,0.0,0.0,0.0,0.0,52.0,36.0,1037.0,39.0,357.0,23.0,88.0,0.0,0.0,22.0,751.0,74.0,377.0,51.0,80.0,92.0,56.0,89.0,118.0,39.0,0.0,1.0,123.0,43.0,72.0,888.0,4.0,66.0,25.0,936.0,72.0,72.0,49.0,206.0,430.0,29.0,103.0,0.0,368.0,154.0,26.0,307.0,11.0,15.0,26.0,97.0,219.0,219.0,34.0,685.0,270.0,262.0,26.0,41.0,42.0,391.0,55.0,16.0,15.0,25.0,56.0,111.0,140.0,122.0,408.0,40.0,0.0,59.0,327.0,0.0,904.0,1495.0,1610.0,150.0,322.0,64.0,347.0,53.0,54.0,89.0,535.0,698.0,28.0,53.0,0.0,44.0,35.0,112.0,584.0,2.0,14.0,466.0,75.0,1186.0,56.0,0.0,8.0,56.0,0.0,16.0,11.0,19.0,12.0,360.0,35.0,41.0,181.0,10.0,12.0,316.0,32.0,0.0,0.0,82.0,87.0,643.0,8.0,74.0,156.0,0.0,0.0,373.0,1496.0,199.0,22.0,57.0,44.0,680.0,138.0,228.0,59.0,0.0,135.0,355.0,52.0,87.0,40.0,10.0,513.0,131.0,126.0,0.0,1041.0,0.0,0.0,0.0,0.0,1210.0,758.0,5971.0,628.0,19.0,1.0,243.0,13.0,105.0,96.0,33.0,120.0,485.0,23.0,92.0,46.0,0.0,100.0,61.0,393.0,539.0,19.0,34.0,168.0,235.0,54.0,231.0,16.0,30.0,206.0,167.0,271.0,132.0,0.0,39.0,0.0,0.0,229.0,916.0,93.0,171.0,39.0,0.0,59.0,84.0,145.0,1328566.0,36.0,82.0,98.0,20.0,7.0,820.0,126.0,62.0,0.0,445.0,60.0,0.0,8.0,63.0,228.0,146.0,112.0,68.0,98.0,91.0,504.0,431.0,348.0,120.0,1219.0,609.0,171.0,76.0,742.0,39.0,83.0,188.0,27.0,244.0,65.0,82.0,91.0,244.0,239.0,0.0,481.0,24.0,0.0,6.0,0.0,258.0,21.0,490.0,485.0,0.0,89.0,109.0,4.0,12.0,27.0,44.0,269.0,149.0,21.0,81.0,0.0,89.0,24.0,33.0,43.0,22.0,176.0,68.0,34.0,0.0,45.0,28.0,0.0,54.0,79.0,129.0,0.0,977.0,38.0,201.0,409.0,389.0,37.0,0.0,183.0,10.0,354.0,7.0,27.0,0.0,0.0,0.0,11.0,188.0,0.0,124.0,54.0,1058.0,24.0,286.0,41.0,47.0,25.0,230.0,84.0,22.0,98.0,170.0,0.0,48.0,15.0,34.0,460.0,824.0,0.0,313.0,48.0,16.0,20.0,53.0,22.0,90.0,79.0,10.0,241.0,172.0,382.0,154.0,0.0,25.0,34.0,18.0,27.0,47.0,0.0,0.0,0.0,34.0,13.0,1140.0,1077.0,0.0,96.0,0.0,38.0,142.0,85.0,3676.0,0.0,0.0,1.0,0.0,48.0,259.0,67.0,20.0,22.0,0.0,730.0,191.0,122.0,0.0,0.0,2015-04-19,,2015-16,1.4938124351476025,2.064, +208,208,0.4,70.0,0.0,93.0,0.0,166.0,0.0,39.0,46.0,60.0,273.0,0.0,46.0,26.0,0.0,681.0,83.0,50.0,34.0,0.0,0.0,0.0,0.0,43.0,17.0,633.0,38.0,303.0,23.0,104.0,0.0,0.0,8.0,594.0,98.0,311.0,55.0,61.0,389.0,54.0,76.0,136.0,19.0,0.0,1.0,102.0,43.0,54.0,934.0,5.0,61.0,20.0,1078.0,32.0,60.0,60.0,191.0,282.0,22.0,87.0,0.0,252.0,130.0,20.0,244.0,5.0,13.0,32.0,75.0,220.0,175.0,28.0,475.0,282.0,231.0,19.0,19.0,56.0,354.0,49.0,6.0,14.0,20.0,30.0,155.0,82.0,111.0,327.0,57.0,0.0,46.0,258.0,3.0,820.0,1347.0,1567.0,120.0,237.0,67.0,250.0,51.0,59.0,142.0,393.0,570.0,11.0,33.0,0.0,23.0,29.0,96.0,490.0,4.0,12.0,366.0,98.0,919.0,29.0,136.0,17.0,33.0,0.0,11.0,13.0,16.0,5.0,328.0,83.0,37.0,58.0,6.0,34.0,217.0,28.0,0.0,0.0,88.0,123.0,542.0,9.0,34.0,137.0,0.0,0.0,344.0,1352.0,166.0,42.0,43.0,20.0,634.0,87.0,128.0,34.0,0.0,141.0,380.0,58.0,87.0,61.0,3.0,1008.0,131.0,130.0,0.0,842.0,0.0,0.0,0.0,0.0,944.0,608.0,492.0,550.0,28.0,0.0,189.0,11.0,95.0,73.0,18.0,132.0,538.0,67.0,50.0,38.0,0.0,103.0,36.0,318.0,302.0,17.0,30.0,156.0,186.0,67.0,224.0,7.0,24.0,172.0,139.0,134.0,109.0,0.0,48.0,0.0,0.0,240.0,714.0,77.0,132.0,40.0,0.0,62.0,88.0,112.0,1221225.0,22.0,58.0,80.0,16.0,12.0,778.0,138.0,52.0,9.0,2984.0,53.0,34.0,12.0,45.0,240.0,153.0,105.0,65.0,97.0,72.0,650.0,477.0,330.0,121.0,595.0,370.0,113.0,76.0,1003.0,22.0,115.0,223.0,40.0,236.0,103.0,96.0,78.0,182.0,215.0,0.0,428.0,8.0,0.0,5.0,0.0,187.0,24.0,300.0,442.0,0.0,128.0,94.0,10.0,4.0,20.0,36.0,268.0,120.0,18.0,54.0,0.0,78.0,9.0,24.0,35.0,19.0,132.0,54.0,20.0,0.0,51.0,15.0,0.0,30.0,108.0,97.0,0.0,1035.0,54.0,120.0,352.0,404.0,35.0,0.0,153.0,8.0,286.0,8.0,22.0,0.0,0.0,15.0,7.0,127.0,0.0,170.0,52.0,1133.0,26.0,190.0,28.0,23.0,19.0,330.0,68.0,22.0,74.0,193.0,0.0,113.0,8.0,27.0,1294.0,1659.0,0.0,710.0,52.0,10.0,13.0,98.0,12.0,143.0,307.0,27.0,634.0,138.0,350.0,245.0,0.0,18.0,89.0,0.0,39.0,466.0,0.0,0.0,0.0,17.0,3.0,888.0,1435.0,0.0,54.0,0.0,17.0,210.0,52.0,2347.0,0.0,0.0,0.0,0.0,0.0,205.0,35.0,29.0,9.0,0.0,502.0,138.0,91.0,0.0,0.0,2015-10-25,,2015-43,0.41280816671584963,0.42000000000000004, +209,209,0.5,70.0,0.0,88.0,0.0,161.0,0.0,40.0,41.0,64.0,228.0,0.0,54.0,35.0,0.0,634.0,73.0,49.0,33.0,0.0,0.0,0.0,0.0,55.0,21.0,676.0,29.0,319.0,13.0,98.0,0.0,0.0,9.0,568.0,81.0,355.0,52.0,85.0,76.0,51.0,86.0,113.0,13.0,0.0,2.0,99.0,44.0,53.0,969.0,2.0,54.0,31.0,951.0,25.0,63.0,57.0,157.0,293.0,25.0,72.0,0.0,275.0,164.0,25.0,254.0,12.0,5.0,16.0,67.0,306.0,187.0,38.0,464.0,267.0,267.0,16.0,17.0,54.0,376.0,67.0,3.0,10.0,14.0,36.0,138.0,59.0,93.0,382.0,54.0,0.0,55.0,252.0,4.0,737.0,1323.0,1401.0,96.0,225.0,68.0,212.0,30.0,35.0,115.0,368.0,550.0,13.0,49.0,50.0,35.0,33.0,108.0,516.0,2.0,22.0,353.0,126.0,922.0,36.0,57.0,11.0,22.0,0.0,7.0,13.0,9.0,9.0,334.0,25.0,39.0,57.0,16.0,27.0,284.0,50.0,0.0,0.0,95.0,84.0,493.0,15.0,66.0,162.0,0.0,0.0,344.0,1278.0,173.0,34.0,45.0,26.0,599.0,79.0,141.0,41.0,0.0,122.0,286.0,45.0,76.0,70.0,3.0,614.0,146.0,103.0,0.0,773.0,0.0,0.0,0.0,0.0,891.0,623.0,477.0,471.0,12.0,0.0,195.0,7.0,89.0,77.0,16.0,130.0,455.0,89.0,67.0,49.0,0.0,94.0,42.0,319.0,271.0,15.0,39.0,168.0,201.0,78.0,232.0,2.0,19.0,199.0,127.0,167.0,103.0,0.0,29.0,0.0,0.0,240.0,766.0,61.0,134.0,24.0,0.0,50.0,75.0,136.0,1184435.0,40.0,53.0,75.0,15.0,12.0,721.0,129.0,57.0,5.0,1151.0,76.0,47.0,4.0,55.0,269.0,156.0,96.0,56.0,80.0,87.0,627.0,480.0,355.0,109.0,520.0,425.0,83.0,65.0,854.0,36.0,120.0,236.0,34.0,247.0,88.0,88.0,55.0,212.0,170.0,0.0,375.0,11.0,0.0,7.0,0.0,173.0,19.0,314.0,458.0,0.0,121.0,83.0,5.0,5.0,16.0,17.0,266.0,100.0,16.0,75.0,0.0,61.0,13.0,32.0,58.0,20.0,99.0,48.0,22.0,0.0,48.0,20.0,0.0,46.0,85.0,103.0,0.0,1142.0,33.0,95.0,287.0,358.0,17.0,0.0,132.0,8.0,279.0,10.0,30.0,0.0,0.0,22.0,7.0,154.0,0.0,157.0,40.0,1200.0,29.0,194.0,27.0,32.0,12.0,268.0,62.0,20.0,100.0,133.0,0.0,43.0,8.0,17.0,1038.0,1624.0,0.0,632.0,55.0,16.0,26.0,110.0,6.0,95.0,332.0,31.0,616.0,138.0,344.0,250.0,0.0,21.0,59.0,1.0,34.0,165.0,0.0,0.0,0.0,24.0,1.0,858.0,1399.0,0.0,31.0,0.0,18.0,204.0,68.0,2026.0,0.0,0.0,0.0,0.0,3.0,228.0,51.0,25.0,14.0,0.0,486.0,136.0,117.0,0.0,0.0,2015-11-01,,2015-44,0.5751632627601562,0.684, +210,210,0.68,71.0,0.0,72.0,0.0,121.0,42.0,41.0,36.0,61.0,202.0,0.0,52.0,20.0,0.0,643.0,73.0,45.0,36.0,0.0,0.0,0.0,0.0,57.0,27.0,645.0,29.0,360.0,16.0,112.0,0.0,0.0,10.0,536.0,119.0,368.0,51.0,79.0,89.0,50.0,68.0,87.0,21.0,0.0,1.0,73.0,55.0,58.0,770.0,4.0,61.0,18.0,966.0,36.0,71.0,51.0,188.0,274.0,21.0,69.0,0.0,330.0,124.0,30.0,233.0,17.0,4.0,7.0,51.0,346.0,159.0,30.0,496.0,259.0,246.0,13.0,30.0,42.0,354.0,54.0,2.0,7.0,17.0,34.0,101.0,69.0,99.0,356.0,50.0,0.0,48.0,265.0,6.0,723.0,1152.0,1389.0,91.0,204.0,56.0,156.0,34.0,44.0,125.0,366.0,515.0,5.0,47.0,23.0,19.0,39.0,78.0,460.0,6.0,11.0,374.0,98.0,849.0,46.0,65.0,13.0,25.0,0.0,6.0,13.0,15.0,9.0,338.0,32.0,46.0,76.0,11.0,25.0,263.0,25.0,0.0,0.0,91.0,91.0,520.0,17.0,36.0,123.0,0.0,0.0,367.0,1253.0,165.0,32.0,41.0,26.0,622.0,100.0,155.0,38.0,0.0,122.0,240.0,63.0,65.0,37.0,5.0,502.0,120.0,108.0,0.0,865.0,0.0,0.0,0.0,0.0,893.0,728.0,480.0,560.0,15.0,0.0,214.0,12.0,98.0,71.0,24.0,115.0,648.0,42.0,67.0,43.0,0.0,77.0,37.0,273.0,237.0,11.0,31.0,147.0,192.0,84.0,257.0,3.0,19.0,132.0,134.0,161.0,106.0,0.0,37.0,0.0,0.0,230.0,728.0,69.0,133.0,32.0,0.0,49.0,74.0,114.0,1170387.0,39.0,75.0,85.0,6.0,15.0,678.0,135.0,47.0,8.0,761.0,65.0,39.0,5.0,50.0,290.0,155.0,98.0,54.0,103.0,75.0,558.0,473.0,342.0,106.0,598.0,545.0,103.0,64.0,675.0,25.0,146.0,257.0,46.0,270.0,94.0,117.0,49.0,223.0,156.0,0.0,369.0,10.0,0.0,4.0,0.0,174.0,19.0,286.0,444.0,0.0,102.0,71.0,8.0,6.0,21.0,31.0,259.0,119.0,27.0,87.0,0.0,71.0,12.0,33.0,51.0,20.0,140.0,40.0,19.0,0.0,40.0,28.0,0.0,29.0,77.0,98.0,0.0,1069.0,48.0,82.0,329.0,401.0,41.0,0.0,140.0,6.0,258.0,8.0,26.0,0.0,0.0,19.0,8.0,130.0,0.0,152.0,45.0,898.0,20.0,204.0,29.0,34.0,21.0,218.0,58.0,24.0,90.0,164.0,0.0,66.0,8.0,23.0,651.0,1174.0,0.0,407.0,54.0,8.0,38.0,81.0,6.0,147.0,285.0,17.0,365.0,133.0,291.0,163.0,0.0,26.0,46.0,0.0,26.0,102.0,0.0,0.0,0.0,17.0,1.0,782.0,1289.0,0.0,30.0,0.0,36.0,207.0,57.0,2316.0,0.0,0.0,0.0,0.0,0.0,204.0,39.0,31.0,15.0,0.0,482.0,123.0,105.0,0.0,0.0,2015-11-08,,2015-45,0.6681542567127545,0.7200000000000002, +211,211,0.76,76.0,0.0,88.0,0.0,147.0,44.0,41.0,47.0,75.0,233.0,0.0,55.0,34.0,0.0,716.0,86.0,56.0,37.0,0.0,0.0,0.0,0.0,53.0,22.0,626.0,26.0,343.0,24.0,99.0,0.0,0.0,6.0,528.0,89.0,343.0,58.0,73.0,95.0,57.0,93.0,117.0,23.0,0.0,3.0,79.0,32.0,53.0,737.0,6.0,58.0,30.0,979.0,48.0,47.0,38.0,191.0,293.0,19.0,71.0,0.0,371.0,123.0,23.0,247.0,6.0,9.0,21.0,87.0,210.0,137.0,43.0,482.0,294.0,321.0,14.0,31.0,39.0,388.0,72.0,2.0,8.0,14.0,38.0,118.0,84.0,103.0,329.0,44.0,0.0,66.0,238.0,3.0,783.0,1231.0,1712.0,102.0,262.0,56.0,182.0,40.0,51.0,119.0,422.0,580.0,14.0,38.0,29.0,34.0,32.0,110.0,427.0,2.0,24.0,379.0,119.0,877.0,42.0,97.0,14.0,24.0,0.0,14.0,19.0,11.0,9.0,387.0,29.0,41.0,75.0,7.0,31.0,256.0,27.0,0.0,0.0,122.0,87.0,465.0,7.0,45.0,144.0,0.0,0.0,332.0,1320.0,169.0,27.0,64.0,33.0,717.0,91.0,130.0,26.0,0.0,135.0,307.0,45.0,85.0,41.0,8.0,681.0,142.0,99.0,0.0,928.0,0.0,0.0,0.0,0.0,890.0,627.0,625.0,1073.0,11.0,0.0,183.0,6.0,107.0,103.0,15.0,111.0,677.0,48.0,59.0,40.0,0.0,94.0,35.0,250.0,294.0,12.0,31.0,184.0,214.0,79.0,246.0,5.0,24.0,151.0,161.0,179.0,73.0,0.0,31.0,0.0,0.0,220.0,682.0,73.0,158.0,23.0,0.0,46.0,69.0,143.0,1181718.0,31.0,69.0,88.0,13.0,12.0,706.0,141.0,62.0,7.0,609.0,71.0,61.0,8.0,47.0,322.0,156.0,103.0,55.0,96.0,56.0,623.0,450.0,366.0,128.0,589.0,450.0,124.0,56.0,679.0,12.0,132.0,227.0,53.0,250.0,93.0,143.0,50.0,204.0,180.0,0.0,368.0,7.0,0.0,2.0,0.0,191.0,20.0,352.0,438.0,0.0,99.0,76.0,10.0,26.0,19.0,28.0,277.0,149.0,13.0,73.0,0.0,81.0,12.0,41.0,55.0,19.0,150.0,54.0,26.0,0.0,48.0,20.0,0.0,40.0,101.0,120.0,0.0,1114.0,50.0,85.0,372.0,386.0,35.0,0.0,174.0,8.0,316.0,15.0,26.0,0.0,0.0,25.0,4.0,134.0,0.0,164.0,58.0,1017.0,24.0,229.0,23.0,22.0,28.0,236.0,73.0,26.0,109.0,161.0,0.0,40.0,12.0,30.0,702.0,1015.0,0.0,324.0,69.0,13.0,23.0,86.0,12.0,189.0,371.0,18.0,322.0,155.0,344.0,310.0,0.0,51.0,48.0,0.0,35.0,94.0,0.0,0.0,0.0,33.0,3.0,859.0,1495.0,0.0,29.0,0.0,26.0,195.0,64.0,2096.0,0.0,0.0,0.0,0.0,2.0,235.0,30.0,24.0,9.0,0.0,502.0,169.0,97.0,0.0,0.0,2015-11-15,,2015-46,0.7273751756501006,2.1140000000000003, +212,212,0.88,71.0,0.0,94.0,0.0,174.0,27.0,53.0,61.0,72.0,200.0,0.0,55.0,27.0,0.0,682.0,66.0,56.0,28.0,0.0,0.0,0.0,0.0,58.0,26.0,616.0,33.0,340.0,20.0,105.0,0.0,0.0,8.0,544.0,75.0,363.0,53.0,57.0,104.0,47.0,69.0,100.0,20.0,0.0,3.0,78.0,45.0,40.0,724.0,8.0,234.0,22.0,1034.0,36.0,56.0,38.0,180.0,292.0,18.0,95.0,0.0,334.0,147.0,22.0,264.0,12.0,8.0,19.0,70.0,197.0,177.0,45.0,503.0,284.0,316.0,21.0,21.0,44.0,305.0,67.0,8.0,11.0,18.0,40.0,109.0,74.0,121.0,344.0,55.0,0.0,44.0,241.0,5.0,779.0,1176.0,2001.0,128.0,221.0,61.0,173.0,32.0,43.0,106.0,446.0,591.0,13.0,38.0,26.0,34.0,37.0,120.0,434.0,23.0,47.0,295.0,107.0,861.0,49.0,82.0,14.0,23.0,0.0,18.0,13.0,9.0,9.0,437.0,28.0,44.0,79.0,5.0,30.0,242.0,31.0,0.0,0.0,103.0,94.0,601.0,15.0,45.0,154.0,0.0,0.0,371.0,1320.0,186.0,33.0,45.0,20.0,696.0,88.0,159.0,42.0,0.0,128.0,311.0,42.0,64.0,57.0,4.0,531.0,126.0,134.0,0.0,888.0,0.0,0.0,0.0,0.0,968.0,559.0,1413.0,606.0,21.0,0.0,218.0,10.0,102.0,76.0,12.0,101.0,500.0,41.0,73.0,34.0,0.0,100.0,81.0,348.0,244.0,10.0,31.0,164.0,238.0,84.0,246.0,6.0,18.0,172.0,137.0,197.0,109.0,0.0,32.0,0.0,0.0,266.0,786.0,84.0,136.0,38.0,0.0,64.0,62.0,151.0,1211703.0,34.0,73.0,77.0,11.0,7.0,747.0,177.0,48.0,4.0,539.0,58.0,36.0,5.0,54.0,311.0,140.0,82.0,66.0,81.0,93.0,615.0,442.0,359.0,105.0,539.0,385.0,121.0,45.0,583.0,17.0,132.0,207.0,56.0,226.0,76.0,139.0,70.0,179.0,166.0,0.0,420.0,7.0,0.0,10.0,0.0,232.0,14.0,358.0,480.0,0.0,131.0,78.0,4.0,11.0,22.0,32.0,267.0,121.0,17.0,74.0,0.0,91.0,19.0,28.0,44.0,26.0,129.0,51.0,28.0,0.0,65.0,21.0,0.0,44.0,102.0,131.0,0.0,1010.0,65.0,99.0,387.0,390.0,31.0,0.0,191.0,12.0,304.0,9.0,22.0,0.0,0.0,21.0,9.0,150.0,0.0,148.0,65.0,967.0,29.0,192.0,29.0,39.0,25.0,199.0,74.0,26.0,101.0,169.0,0.0,93.0,10.0,27.0,607.0,1102.0,0.0,339.0,83.0,19.0,21.0,59.0,9.0,163.0,400.0,9.0,301.0,108.0,310.0,134.0,0.0,28.0,40.0,0.0,27.0,88.0,0.0,0.0,0.0,21.0,3.0,878.0,1371.0,0.0,30.0,0.0,29.0,173.0,61.0,2471.0,0.0,0.0,0.0,0.0,0.0,214.0,47.0,35.0,10.0,0.0,527.0,136.0,94.0,0.0,0.0,2015-11-22,,2015-47,0.8704106405753613,1.23, +213,213,1.02,93.0,0.0,84.0,0.0,182.0,34.0,41.0,61.0,74.0,251.0,0.0,58.0,24.0,0.0,660.0,72.0,70.0,28.0,0.0,0.0,0.0,0.0,75.0,30.0,537.0,23.0,330.0,17.0,94.0,0.0,0.0,13.0,569.0,80.0,375.0,56.0,60.0,92.0,44.0,80.0,116.0,27.0,0.0,0.0,66.0,38.0,45.0,876.0,7.0,58.0,19.0,1074.0,59.0,65.0,70.0,184.0,306.0,22.0,127.0,0.0,337.0,149.0,35.0,277.0,16.0,6.0,22.0,75.0,232.0,202.0,34.0,548.0,266.0,305.0,16.0,23.0,51.0,331.0,60.0,7.0,8.0,14.0,37.0,108.0,56.0,111.0,411.0,63.0,0.0,56.0,283.0,9.0,812.0,1353.0,1574.0,133.0,260.0,57.0,175.0,46.0,63.0,95.0,416.0,594.0,16.0,47.0,32.0,38.0,28.0,113.0,416.0,21.0,17.0,370.0,114.0,939.0,34.0,63.0,17.0,30.0,0.0,11.0,11.0,6.0,5.0,476.0,35.0,54.0,61.0,8.0,18.0,449.0,46.0,0.0,0.0,91.0,105.0,482.0,28.0,49.0,131.0,0.0,0.0,365.0,1281.0,176.0,36.0,65.0,25.0,628.0,86.0,128.0,52.0,0.0,139.0,319.0,56.0,75.0,61.0,5.0,493.0,141.0,116.0,0.0,915.0,0.0,0.0,0.0,0.0,913.0,596.0,546.0,577.0,13.0,0.0,246.0,44.0,94.0,79.0,16.0,91.0,491.0,52.0,70.0,30.0,0.0,86.0,45.0,329.0,248.0,28.0,35.0,166.0,202.0,79.0,224.0,12.0,24.0,193.0,164.0,183.0,87.0,0.0,44.0,0.0,0.0,258.0,786.0,113.0,167.0,40.0,0.0,65.0,87.0,139.0,1206683.0,31.0,52.0,78.0,19.0,18.0,740.0,125.0,43.0,7.0,1756.0,71.0,57.0,6.0,57.0,320.0,146.0,83.0,59.0,78.0,68.0,578.0,452.0,302.0,108.0,711.0,469.0,111.0,42.0,547.0,26.0,122.0,226.0,39.0,217.0,74.0,106.0,60.0,176.0,182.0,0.0,423.0,11.0,0.0,2.0,0.0,185.0,9.0,346.0,424.0,0.0,100.0,75.0,9.0,7.0,19.0,47.0,260.0,152.0,18.0,94.0,0.0,78.0,12.0,31.0,51.0,30.0,176.0,49.0,25.0,0.0,60.0,21.0,0.0,42.0,105.0,108.0,0.0,1026.0,65.0,82.0,327.0,362.0,33.0,0.0,120.0,7.0,226.0,10.0,20.0,0.0,0.0,23.0,6.0,140.0,0.0,167.0,45.0,956.0,27.0,260.0,44.0,27.0,18.0,201.0,69.0,24.0,91.0,172.0,0.0,52.0,8.0,25.0,524.0,994.0,0.0,269.0,56.0,13.0,32.0,77.0,8.0,158.0,424.0,14.0,263.0,123.0,281.0,134.0,0.0,31.0,46.0,1.0,23.0,140.0,0.0,0.0,0.0,37.0,4.0,741.0,1432.0,0.0,30.0,0.0,25.0,155.0,67.0,2541.0,0.0,1.0,0.0,0.0,2.0,172.0,38.0,33.0,10.0,0.0,503.0,167.0,107.0,0.0,0.0,2015-11-29,,2015-48,0.9629073748615147,1.814, +214,214,1.16,90.0,0.0,80.0,0.0,148.0,33.0,35.0,50.0,67.0,231.0,0.0,49.0,28.0,0.0,578.0,85.0,74.0,27.0,0.0,0.0,0.0,0.0,54.0,33.0,625.0,39.0,356.0,16.0,115.0,0.0,0.0,14.0,564.0,115.0,362.0,53.0,60.0,120.0,36.0,81.0,137.0,26.0,0.0,3.0,71.0,33.0,44.0,789.0,6.0,73.0,27.0,1017.0,58.0,74.0,60.0,182.0,327.0,23.0,91.0,0.0,337.0,136.0,22.0,269.0,8.0,13.0,22.0,86.0,272.0,189.0,36.0,503.0,265.0,366.0,21.0,26.0,57.0,355.0,76.0,6.0,6.0,24.0,41.0,121.0,71.0,92.0,422.0,65.0,0.0,55.0,271.0,2.0,758.0,1316.0,1480.0,137.0,250.0,61.0,157.0,25.0,60.0,97.0,504.0,558.0,13.0,41.0,29.0,31.0,43.0,105.0,438.0,27.0,17.0,287.0,130.0,989.0,43.0,60.0,9.0,38.0,0.0,12.0,14.0,11.0,7.0,578.0,38.0,51.0,69.0,13.0,27.0,311.0,37.0,0.0,0.0,109.0,105.0,539.0,21.0,59.0,130.0,0.0,0.0,361.0,1375.0,183.0,39.0,50.0,32.0,872.0,72.0,136.0,53.0,0.0,146.0,301.0,43.0,81.0,54.0,5.0,563.0,147.0,124.0,0.0,1008.0,0.0,0.0,0.0,0.0,609.0,667.0,611.0,482.0,18.0,0.0,210.0,11.0,117.0,89.0,18.0,107.0,460.0,24.0,63.0,37.0,0.0,96.0,43.0,339.0,240.0,15.0,30.0,167.0,213.0,82.0,218.0,7.0,23.0,144.0,136.0,141.0,73.0,0.0,33.0,0.0,0.0,241.0,791.0,113.0,173.0,37.0,0.0,58.0,74.0,142.0,1166778.0,25.0,81.0,89.0,14.0,10.0,752.0,137.0,76.0,11.0,585.0,79.0,47.0,10.0,61.0,344.0,136.0,97.0,85.0,111.0,76.0,582.0,459.0,371.0,116.0,560.0,455.0,141.0,47.0,669.0,31.0,113.0,183.0,52.0,257.0,86.0,103.0,71.0,240.0,168.0,0.0,404.0,8.0,0.0,3.0,0.0,178.0,9.0,323.0,451.0,0.0,88.0,84.0,9.0,3.0,21.0,31.0,280.0,122.0,19.0,84.0,0.0,85.0,17.0,24.0,53.0,18.0,149.0,50.0,24.0,0.0,84.0,25.0,0.0,31.0,94.0,105.0,0.0,1042.0,49.0,126.0,338.0,393.0,47.0,0.0,120.0,5.0,313.0,7.0,29.0,0.0,0.0,23.0,11.0,155.0,0.0,143.0,51.0,862.0,25.0,247.0,43.0,35.0,18.0,204.0,89.0,27.0,107.0,199.0,0.0,49.0,11.0,17.0,467.0,1219.0,0.0,257.0,78.0,10.0,40.0,68.0,5.0,161.0,351.0,10.0,316.0,144.0,254.0,120.0,0.0,24.0,33.0,0.0,18.0,77.0,0.0,0.0,0.0,33.0,2.0,656.0,1522.0,0.0,22.0,0.0,27.0,253.0,69.0,2741.0,0.0,1.0,0.0,0.0,0.0,201.0,62.0,17.0,12.0,0.0,528.0,143.0,106.0,0.0,0.0,2015-12-06,,2015-49,1.1796335833623326,0.876, +215,215,1.21,98.0,0.0,75.0,0.0,166.0,29.0,36.0,41.0,53.0,248.0,0.0,65.0,34.0,0.0,598.0,84.0,78.0,45.0,0.0,0.0,0.0,0.0,69.0,34.0,592.0,28.0,368.0,17.0,87.0,0.0,0.0,4.0,544.0,113.0,345.0,69.0,53.0,135.0,33.0,90.0,129.0,32.0,0.0,4.0,71.0,36.0,55.0,680.0,7.0,71.0,37.0,921.0,51.0,72.0,62.0,161.0,306.0,25.0,57.0,0.0,281.0,144.0,32.0,249.0,14.0,6.0,18.0,82.0,196.0,183.0,47.0,470.0,276.0,323.0,17.0,19.0,42.0,344.0,90.0,5.0,9.0,21.0,42.0,106.0,73.0,120.0,428.0,55.0,0.0,57.0,309.0,9.0,1084.0,1308.0,1747.0,130.0,296.0,73.0,152.0,25.0,50.0,125.0,470.0,712.0,12.0,49.0,39.0,32.0,46.0,130.0,457.0,21.0,22.0,502.0,112.0,951.0,45.0,58.0,11.0,41.0,0.0,13.0,17.0,11.0,8.0,366.0,29.0,37.0,78.0,9.0,27.0,219.0,52.0,0.0,0.0,103.0,98.0,506.0,21.0,66.0,142.0,0.0,0.0,347.0,1265.0,172.0,40.0,55.0,22.0,753.0,89.0,153.0,48.0,0.0,139.0,296.0,48.0,57.0,51.0,3.0,510.0,130.0,105.0,0.0,897.0,0.0,0.0,0.0,0.0,644.0,1096.0,870.0,461.0,18.0,4.0,197.0,14.0,89.0,90.0,15.0,97.0,479.0,36.0,73.0,45.0,0.0,75.0,48.0,327.0,248.0,16.0,33.0,188.0,206.0,80.0,217.0,9.0,24.0,133.0,174.0,163.0,84.0,0.0,25.0,0.0,0.0,203.0,779.0,75.0,157.0,31.0,0.0,87.0,68.0,118.0,1187897.0,36.0,63.0,71.0,13.0,7.0,727.0,104.0,56.0,6.0,532.0,68.0,63.0,7.0,63.0,305.0,155.0,91.0,71.0,80.0,76.0,506.0,364.0,338.0,115.0,698.0,417.0,146.0,45.0,675.0,38.0,123.0,200.0,44.0,236.0,83.0,118.0,100.0,241.0,163.0,0.0,367.0,14.0,28.0,8.0,0.0,199.0,10.0,342.0,396.0,0.0,98.0,77.0,10.0,10.0,15.0,32.0,240.0,145.0,11.0,135.0,0.0,109.0,8.0,37.0,33.0,21.0,164.0,69.0,26.0,0.0,50.0,35.0,0.0,33.0,122.0,154.0,0.0,1078.0,48.0,73.0,342.0,400.0,51.0,0.0,113.0,4.0,258.0,12.0,27.0,0.0,0.0,17.0,8.0,160.0,0.0,156.0,48.0,921.0,25.0,218.0,42.0,27.0,8.0,222.0,79.0,30.0,105.0,155.0,0.0,58.0,4.0,28.0,439.0,778.0,0.0,231.0,49.0,11.0,19.0,60.0,8.0,108.0,261.0,11.0,310.0,127.0,199.0,132.0,0.0,18.0,32.0,0.0,24.0,67.0,0.0,0.0,0.0,33.0,0.0,696.0,1465.0,0.0,29.0,0.0,32.0,261.0,68.0,2534.0,0.0,0.0,0.0,0.0,2.0,200.0,62.0,59.0,15.0,0.0,492.0,171.0,84.0,0.0,0.0,2015-12-13,,2015-50,1.2333912158178846,1.258, +216,216,1.45,98.0,0.0,76.0,0.0,151.0,27.0,54.0,38.0,74.0,228.0,0.0,46.0,33.0,0.0,601.0,107.0,78.0,36.0,0.0,0.0,0.0,0.0,45.0,32.0,625.0,25.0,332.0,16.0,100.0,0.0,0.0,6.0,531.0,89.0,409.0,59.0,58.0,104.0,63.0,86.0,115.0,25.0,0.0,6.0,75.0,34.0,46.0,704.0,6.0,66.0,26.0,903.0,47.0,70.0,53.0,193.0,292.0,30.0,74.0,0.0,271.0,126.0,28.0,261.0,5.0,10.0,20.0,75.0,162.0,179.0,49.0,478.0,284.0,321.0,15.0,29.0,53.0,370.0,77.0,11.0,12.0,18.0,46.0,108.0,79.0,114.0,366.0,59.0,0.0,57.0,316.0,5.0,732.0,1192.0,1478.0,150.0,220.0,61.0,124.0,36.0,37.0,115.0,455.0,556.0,14.0,49.0,54.0,31.0,47.0,129.0,470.0,27.0,21.0,907.0,95.0,1021.0,35.0,47.0,18.0,39.0,0.0,23.0,19.0,19.0,5.0,379.0,41.0,47.0,139.0,10.0,20.0,246.0,42.0,0.0,0.0,117.0,93.0,451.0,12.0,63.0,122.0,0.0,0.0,312.0,1214.0,197.0,42.0,41.0,28.0,588.0,89.0,141.0,38.0,0.0,153.0,298.0,52.0,63.0,49.0,5.0,568.0,158.0,86.0,0.0,892.0,0.0,0.0,0.0,0.0,559.0,811.0,560.0,501.0,17.0,0.0,194.0,9.0,130.0,89.0,29.0,79.0,450.0,22.0,69.0,56.0,0.0,86.0,66.0,266.0,276.0,11.0,36.0,159.0,225.0,84.0,218.0,7.0,24.0,175.0,129.0,131.0,82.0,0.0,33.0,0.0,0.0,160.0,792.0,89.0,155.0,29.0,0.0,70.0,117.0,158.0,1176256.0,36.0,60.0,59.0,26.0,13.0,552.0,139.0,49.0,11.0,460.0,69.0,58.0,8.0,48.0,296.0,135.0,117.0,66.0,84.0,71.0,506.0,371.0,412.0,119.0,542.0,429.0,127.0,38.0,669.0,34.0,105.0,209.0,44.0,227.0,105.0,93.0,84.0,178.0,201.0,0.0,422.0,9.0,220.0,4.0,0.0,170.0,16.0,359.0,383.0,0.0,105.0,86.0,6.0,11.0,30.0,56.0,244.0,139.0,21.0,113.0,0.0,124.0,22.0,40.0,36.0,25.0,178.0,70.0,32.0,0.0,74.0,30.0,0.0,35.0,124.0,137.0,0.0,1071.0,72.0,59.0,330.0,353.0,49.0,0.0,118.0,7.0,226.0,19.0,27.0,0.0,0.0,31.0,7.0,143.0,0.0,144.0,49.0,740.0,30.0,262.0,40.0,35.0,16.0,195.0,101.0,39.0,119.0,154.0,0.0,44.0,9.0,34.0,345.0,722.0,0.0,234.0,51.0,14.0,15.0,36.0,17.0,87.0,169.0,17.0,246.0,142.0,170.0,125.0,0.0,15.0,22.0,0.0,19.0,52.0,0.0,0.0,0.0,32.0,2.0,662.0,1453.0,0.0,33.0,0.0,27.0,125.0,72.0,2177.0,0.0,0.0,1.0,0.0,2.0,180.0,55.0,41.0,9.0,0.0,504.0,183.0,107.0,0.0,0.0,2015-12-20,,2015-51,1.5015411453230945,1.4500000000000002, +217,217,1.66,98.0,0.0,75.0,0.0,147.0,34.0,55.0,46.0,77.0,210.0,0.0,50.0,34.0,0.0,867.0,93.0,67.0,33.0,0.0,0.0,0.0,0.0,50.0,21.0,652.0,23.0,331.0,13.0,105.0,0.0,0.0,7.0,487.0,92.0,359.0,48.0,69.0,88.0,60.0,107.0,119.0,22.0,0.0,4.0,85.0,30.0,43.0,664.0,4.0,77.0,21.0,956.0,32.0,61.0,51.0,169.0,308.0,19.0,66.0,0.0,218.0,147.0,33.0,276.0,16.0,9.0,25.0,63.0,181.0,195.0,39.0,501.0,258.0,345.0,15.0,25.0,41.0,311.0,66.0,9.0,10.0,17.0,28.0,111.0,57.0,117.0,382.0,63.0,0.0,57.0,250.0,6.0,758.0,1224.0,1423.0,121.0,228.0,61.0,126.0,33.0,72.0,119.0,465.0,535.0,16.0,36.0,35.0,25.0,53.0,116.0,472.0,23.0,21.0,311.0,83.0,917.0,49.0,69.0,14.0,88.0,0.0,15.0,13.0,12.0,6.0,355.0,34.0,41.0,88.0,15.0,29.0,213.0,63.0,0.0,0.0,118.0,92.0,533.0,6.0,59.0,148.0,0.0,0.0,328.0,1303.0,172.0,33.0,37.0,22.0,583.0,63.0,110.0,44.0,0.0,206.0,229.0,45.0,69.0,58.0,6.0,492.0,137.0,111.0,0.0,851.0,0.0,0.0,0.0,0.0,674.0,752.0,636.0,434.0,18.0,0.0,206.0,11.0,122.0,81.0,19.0,103.0,443.0,23.0,115.0,43.0,0.0,68.0,52.0,1718.0,198.0,17.0,28.0,162.0,221.0,62.0,210.0,7.0,34.0,128.0,146.0,116.0,54.0,0.0,39.0,0.0,0.0,174.0,788.0,110.0,212.0,32.0,0.0,63.0,80.0,168.0,1125984.0,28.0,86.0,45.0,23.0,24.0,716.0,148.0,68.0,10.0,484.0,60.0,47.0,11.0,57.0,276.0,120.0,102.0,72.0,87.0,83.0,455.0,391.0,334.0,135.0,539.0,474.0,120.0,61.0,775.0,34.0,99.0,185.0,43.0,240.0,97.0,71.0,79.0,211.0,193.0,0.0,372.0,16.0,270.0,6.0,0.0,144.0,10.0,316.0,376.0,0.0,117.0,89.0,12.0,10.0,28.0,38.0,245.0,126.0,18.0,101.0,0.0,136.0,14.0,42.0,36.0,29.0,171.0,52.0,26.0,0.0,57.0,27.0,0.0,37.0,123.0,130.0,0.0,1067.0,88.0,98.0,319.0,393.0,49.0,0.0,157.0,8.0,294.0,11.0,20.0,0.0,0.0,30.0,5.0,169.0,0.0,141.0,60.0,712.0,22.0,221.0,26.0,38.0,12.0,166.0,93.0,51.0,87.0,157.0,0.0,142.0,11.0,31.0,360.0,750.0,0.0,181.0,50.0,10.0,28.0,45.0,12.0,108.0,127.0,19.0,233.0,130.0,206.0,122.0,0.0,19.0,19.0,1.0,17.0,57.0,0.0,0.0,0.0,20.0,3.0,686.0,1252.0,0.0,33.0,3.0,20.0,144.0,94.0,2435.0,0.0,0.0,0.0,0.0,0.0,167.0,44.0,35.0,11.0,0.0,492.0,165.0,98.0,0.0,0.0,2015-12-27,,2015-52,1.6746537023072339,2.0799999999999996, +218,218,2.11,76.0,0.0,51.0,0.0,141.0,26.0,34.0,31.0,36.0,162.0,0.0,31.0,18.0,0.0,443.0,57.0,53.0,23.0,0.0,0.0,0.0,0.0,37.0,16.0,551.0,17.0,310.0,15.0,67.0,0.0,0.0,10.0,350.0,57.0,253.0,38.0,49.0,67.0,32.0,83.0,71.0,17.0,0.0,1.0,42.0,22.0,35.0,696.0,1.0,68.0,16.0,674.0,40.0,46.0,42.0,149.0,279.0,20.0,44.0,0.0,165.0,99.0,24.0,152.0,6.0,6.0,17.0,60.0,152.0,114.0,43.0,340.0,209.0,229.0,14.0,18.0,28.0,216.0,50.0,5.0,7.0,16.0,28.0,109.0,28.0,56.0,253.0,42.0,0.0,38.0,181.0,1.0,564.0,753.0,1040.0,81.0,172.0,44.0,96.0,26.0,56.0,71.0,366.0,436.0,8.0,39.0,29.0,23.0,22.0,45.0,415.0,19.0,8.0,249.0,75.0,691.0,27.0,36.0,13.0,48.0,0.0,10.0,7.0,9.0,5.0,237.0,16.0,36.0,54.0,2.0,23.0,186.0,13.0,0.0,0.0,80.0,61.0,452.0,13.0,32.0,98.0,0.0,0.0,284.0,824.0,112.0,22.0,37.0,14.0,492.0,76.0,103.0,22.0,0.0,82.0,247.0,30.0,35.0,48.0,4.0,385.0,91.0,82.0,0.0,679.0,0.0,0.0,0.0,0.0,479.0,518.0,416.0,334.0,7.0,0.0,139.0,4.0,70.0,76.0,16.0,68.0,332.0,12.0,37.0,39.0,0.0,78.0,38.0,199.0,166.0,14.0,18.0,112.0,166.0,34.0,159.0,7.0,10.0,131.0,83.0,107.0,68.0,0.0,32.0,0.0,0.0,129.0,532.0,58.0,128.0,30.0,0.0,45.0,42.0,80.0,1005108.0,25.0,59.0,50.0,6.0,12.0,458.0,129.0,65.0,4.0,377.0,49.0,33.0,8.0,33.0,211.0,99.0,77.0,31.0,56.0,53.0,328.0,271.0,187.0,69.0,412.0,260.0,101.0,44.0,730.0,19.0,78.0,142.0,20.0,138.0,44.0,47.0,42.0,146.0,147.0,0.0,244.0,20.0,208.0,0.0,0.0,116.0,8.0,240.0,279.0,0.0,71.0,47.0,4.0,8.0,14.0,23.0,165.0,74.0,12.0,66.0,0.0,69.0,7.0,21.0,37.0,6.0,96.0,31.0,14.0,0.0,66.0,16.0,0.0,28.0,74.0,84.0,0.0,851.0,41.0,83.0,235.0,213.0,41.0,0.0,85.0,7.0,165.0,5.0,23.0,0.0,0.0,19.0,3.0,81.0,0.0,71.0,31.0,519.0,21.0,158.0,15.0,23.0,12.0,130.0,50.0,31.0,63.0,122.0,0.0,48.0,3.0,15.0,267.0,430.0,0.0,109.0,27.0,6.0,15.0,26.0,4.0,68.0,113.0,10.0,132.0,83.0,139.0,86.0,0.0,17.0,23.0,0.0,21.0,23.0,0.0,0.0,0.0,16.0,3.0,562.0,750.0,0.0,14.0,0.0,15.0,74.0,38.0,1856.0,0.0,0.0,0.0,0.0,1.0,139.0,49.0,22.0,11.0,0.0,430.0,103.0,63.0,0.0,0.0,2016-01-03,,2015-53,2.114984818460411,2.324, +219,219,2.39,114.0,0.0,86.0,0.0,151.0,47.0,72.0,49.0,75.0,256.0,0.0,73.0,41.0,0.0,667.0,92.0,86.0,31.0,0.0,0.0,0.0,0.0,70.0,29.0,915.0,18.0,372.0,21.0,109.0,0.0,0.0,6.0,489.0,101.0,408.0,45.0,92.0,115.0,66.0,82.0,132.0,22.0,0.0,4.0,81.0,36.0,66.0,1771.0,3.0,73.0,19.0,937.0,60.0,178.0,47.0,184.0,392.0,26.0,87.0,0.0,260.0,125.0,46.0,269.0,9.0,6.0,23.0,69.0,174.0,158.0,40.0,467.0,364.0,424.0,20.0,29.0,38.0,372.0,75.0,9.0,9.0,24.0,42.0,188.0,83.0,101.0,380.0,50.0,0.0,65.0,295.0,7.0,781.0,1176.0,1517.0,111.0,257.0,63.0,124.0,51.0,52.0,102.0,586.0,618.0,7.0,29.0,36.0,43.0,46.0,153.0,501.0,19.0,18.0,780.0,110.0,1192.0,41.0,52.0,8.0,26.0,0.0,13.0,13.0,9.0,13.0,450.0,34.0,51.0,53.0,9.0,22.0,301.0,85.8,0.0,0.0,130.0,142.0,818.0,10.0,41.4,131.0,0.0,0.0,405.0,1362.0,207.0,39.0,53.0,28.0,709.0,123.0,205.0,44.0,0.0,170.0,288.0,66.0,53.0,64.0,6.0,579.0,153.0,94.0,0.0,899.0,0.0,0.0,0.0,0.0,661.0,934.0,650.0,475.0,16.0,0.0,203.0,8.0,117.0,95.0,25.0,84.0,477.0,25.0,73.0,43.0,0.0,105.0,51.0,320.0,260.0,23.0,40.0,183.0,278.0,87.0,222.0,7.0,28.0,164.0,154.0,176.0,91.0,0.0,34.0,0.0,0.0,211.0,880.0,118.0,225.0,50.0,0.0,53.4,110.0,134.0,1205448.0,29.0,90.0,77.0,24.0,13.0,615.0,141.0,76.0,9.0,559.0,74.0,108.0,11.0,30.0,343.0,133.0,114.0,75.0,82.0,73.0,525.0,434.0,396.0,88.0,620.0,489.0,124.0,72.0,1016.0,23.0,128.0,229.0,45.0,257.0,68.0,85.0,51.4,205.0,245.0,0.0,395.0,15.0,343.0,4.0,0.0,191.0,11.0,421.0,431.0,0.0,124.0,79.0,13.0,11.0,24.0,40.0,293.0,140.0,24.0,116.0,0.0,102.0,19.0,32.0,50.0,22.0,209.0,57.0,26.0,0.0,81.0,24.0,0.0,39.0,153.0,163.0,0.0,1100.0,82.0,103.0,282.0,302.0,70.0,0.0,129.0,9.0,291.0,19.0,21.0,0.0,0.0,20.0,8.0,148.0,0.0,138.0,52.0,1032.0,22.0,291.0,30.0,30.0,11.0,283.0,97.0,38.0,93.0,155.0,0.0,55.0,17.0,15.0,452.0,842.0,0.0,293.0,52.0,10.0,18.0,75.0,19.0,122.0,94.0,24.0,280.0,164.0,213.0,130.0,0.0,31.0,47.0,1.0,13.0,65.0,0.0,0.0,0.0,19.0,5.0,638.5,1745.0,0.0,28.0,0.0,33.0,110.0,81.0,2499.0,0.0,0.0,0.0,0.0,1.0,212.0,58.0,29.0,8.0,0.0,551.0,191.0,97.0,0.0,0.0,2016-01-10,,2016-1,2.4207779277400654,2.318, +220,220,2.76,125.0,0.0,103.0,0.0,185.0,48.0,98.0,43.0,97.0,288.0,0.0,73.0,29.0,0.0,852.0,102.0,65.0,35.0,0.0,0.0,0.0,0.0,66.0,26.0,840.0,25.0,399.0,13.0,112.0,0.0,0.0,5.0,655.0,100.0,468.0,61.0,89.0,112.0,55.0,80.0,140.0,21.0,0.0,3.0,73.0,42.0,59.0,1461.0,5.0,73.0,29.0,1113.0,52.0,107.0,36.0,223.0,328.0,28.0,62.0,0.0,279.0,169.0,31.0,312.0,8.0,6.0,17.0,84.0,224.0,217.0,52.0,545.0,401.0,452.0,17.0,22.0,42.0,417.0,71.0,11.0,6.0,17.0,35.0,138.0,65.0,109.0,431.0,61.0,0.0,68.0,333.0,3.0,919.0,1538.0,1928.0,142.0,283.0,66.0,208.0,48.0,43.0,144.0,566.0,748.0,12.0,51.0,50.0,40.0,52.0,170.0,554.0,38.0,13.0,367.0,122.0,1177.0,47.0,47.0,8.0,24.0,0.0,7.0,18.0,22.0,4.0,509.0,23.0,33.0,83.0,16.0,19.0,310.0,158.6,0.0,0.0,171.0,147.0,767.0,8.0,50.8,154.0,0.0,0.0,402.0,1703.0,249.0,52.0,58.0,23.0,686.0,225.0,312.0,50.0,0.0,173.0,336.0,52.0,61.0,85.0,2.0,651.0,170.0,136.0,0.0,1143.0,0.0,0.0,0.0,0.0,777.0,879.0,890.0,594.0,21.0,0.0,239.0,14.0,122.0,81.0,35.0,100.0,521.0,34.0,83.0,32.0,0.0,91.0,46.0,387.0,292.0,13.0,49.0,217.0,248.0,116.0,267.0,12.0,267.0,173.0,181.0,182.0,90.0,0.0,32.0,0.0,0.0,214.0,929.0,101.0,220.0,31.0,0.0,61.8,103.0,182.0,1307550.0,49.0,90.0,108.0,24.0,8.0,853.0,188.0,64.0,14.0,946.0,83.0,75.0,8.0,50.0,381.0,171.0,101.0,73.0,137.0,104.0,597.0,458.0,418.0,124.0,576.0,563.0,139.0,56.0,863.0,27.0,152.0,256.0,96.0,273.0,94.0,114.0,60.8,257.0,228.0,0.0,456.0,7.0,327.0,2.0,0.0,225.0,23.0,426.0,488.0,0.0,160.0,110.0,10.0,9.0,25.0,41.0,309.0,150.0,25.0,110.0,0.0,130.0,12.0,41.0,52.0,25.0,228.0,64.0,35.0,0.0,85.0,19.0,0.0,41.0,137.0,149.0,0.0,1216.0,71.0,131.0,322.0,406.0,73.0,0.0,132.0,5.0,350.0,9.0,30.0,0.0,0.0,20.0,2.0,178.0,0.0,185.0,57.0,959.0,35.0,283.0,39.0,29.0,13.0,257.0,98.0,30.0,109.0,193.0,0.0,56.0,8.0,30.0,616.0,1104.0,0.0,375.0,49.0,6.0,16.0,96.0,7.0,153.0,109.0,21.0,428.0,167.0,293.0,148.0,0.0,19.0,44.0,0.0,34.0,89.0,0.0,0.0,0.0,28.0,2.0,715.0,1886.0,0.0,46.0,1.0,44.0,110.0,100.0,2400.0,0.0,0.0,0.0,0.0,2.0,207.0,59.0,41.0,17.0,0.0,623.0,167.0,102.0,0.0,0.0,2016-01-17,,2016-2,2.752322184342428,2.972, +221,221,3.62,161.0,0.0,119.0,0.0,149.0,38.0,89.0,50.0,97.0,290.0,0.0,70.0,51.0,0.0,711.0,118.0,112.0,33.0,0.0,0.0,0.0,0.0,74.0,30.0,881.0,33.0,397.0,19.0,114.0,0.0,0.0,7.0,578.0,146.0,494.0,65.0,108.0,219.0,90.0,115.0,154.0,29.0,0.0,5.0,75.0,39.0,61.0,751.0,2.0,71.0,27.0,1215.0,41.0,75.0,59.0,242.0,336.0,46.0,67.0,0.0,290.0,149.0,38.0,333.0,12.0,6.0,15.0,74.0,260.0,220.0,53.0,541.0,386.0,435.0,21.0,23.0,61.0,384.0,83.0,8.0,11.0,22.0,58.0,127.0,78.0,128.0,503.0,74.0,0.0,76.0,430.0,3.0,929.0,1476.0,1844.0,160.0,305.0,81.0,123.0,41.0,59.0,161.0,654.0,788.0,15.0,42.0,54.0,47.0,34.0,152.0,561.0,26.0,27.0,494.0,98.0,1116.0,34.0,50.0,17.0,24.0,0.0,14.0,9.0,12.0,8.0,529.0,56.0,48.0,89.0,14.0,29.0,292.0,231.4,0.0,0.0,133.0,154.0,778.0,13.0,60.2,156.0,0.0,0.0,397.0,1730.0,239.0,39.0,75.0,27.0,707.0,240.0,269.0,54.0,0.0,124.0,373.0,66.0,98.0,60.0,3.0,1021.0,174.0,125.0,0.0,1128.0,0.0,0.0,0.0,0.0,764.0,757.0,674.0,550.0,28.0,0.0,244.0,13.0,150.0,98.0,14.0,122.0,556.0,26.0,83.0,57.0,0.0,134.0,51.0,462.0,310.0,7.0,60.0,204.0,294.0,123.0,228.0,4.0,40.0,216.0,176.0,168.0,93.0,0.0,37.0,0.0,0.0,188.0,962.0,117.0,242.0,37.0,0.0,70.2,121.0,144.0,1251206.0,57.0,79.0,96.0,18.0,17.0,954.0,149.0,65.0,18.0,692.0,76.0,111.0,10.0,48.0,438.0,146.0,116.0,74.0,124.0,102.0,573.0,453.0,428.0,133.0,558.0,625.0,148.0,95.0,889.0,31.0,162.0,266.0,79.0,312.0,98.0,87.0,70.2,271.0,206.0,0.0,446.0,21.0,351.0,6.0,0.0,228.0,14.0,383.0,479.0,0.0,144.0,121.0,7.0,12.0,17.0,46.0,330.0,172.0,20.0,152.0,0.0,149.0,10.0,29.0,58.0,17.0,231.0,69.0,25.0,0.0,86.0,29.0,0.0,48.0,169.0,168.0,0.0,1173.0,97.0,104.0,341.0,384.0,77.0,0.0,148.0,7.0,296.0,16.0,19.0,0.0,0.0,27.0,3.0,173.0,0.0,204.0,55.0,860.0,27.0,448.0,25.0,29.0,18.0,219.0,116.0,47.0,111.0,206.0,0.0,63.0,10.0,28.0,448.0,1023.0,0.0,301.0,57.0,9.0,23.0,64.0,15.0,121.0,120.0,12.0,299.0,126.0,315.0,131.0,0.0,18.0,26.0,1.0,30.0,83.0,0.0,0.0,0.0,27.0,4.0,791.5,1934.0,0.0,40.0,1095.0,25.0,161.0,84.0,3351.0,0.0,0.0,0.0,0.0,2.0,191.0,60.0,45.0,10.0,0.0,546.0,195.0,116.0,0.0,0.0,2016-01-24,,2016-3,3.5924433784516987,3.0520000000000005, +222,222,4.73,144.0,0.0,126.0,0.0,140.0,36.0,87.0,45.0,92.0,579.0,0.0,85.0,71.0,0.0,867.0,123.0,87.0,31.0,0.0,0.0,0.0,0.0,68.0,32.0,884.0,19.0,412.0,26.0,98.0,0.0,0.0,6.0,574.0,103.0,424.0,60.0,81.0,131.0,71.0,67.0,183.0,31.0,0.0,0.0,76.0,30.0,45.0,915.0,10.0,87.0,27.0,1092.0,52.0,98.0,58.0,198.0,366.0,34.0,72.0,0.0,274.0,149.0,34.0,301.0,8.0,7.0,27.0,80.0,249.0,215.0,52.0,548.0,382.0,481.0,20.0,28.0,64.0,444.0,94.0,10.0,24.0,49.0,171.0,140.0,88.0,113.0,521.0,63.0,0.0,73.0,360.0,4.0,933.0,1456.0,1763.0,153.0,322.0,68.0,133.0,38.0,621.0,190.0,633.0,939.0,22.0,58.0,42.0,43.0,42.0,165.0,507.0,22.0,20.0,382.0,110.0,1310.0,38.0,44.0,19.0,38.0,0.0,28.0,18.0,20.0,9.0,940.0,31.0,64.0,84.0,12.0,28.0,285.0,304.2,0.0,0.0,141.0,138.0,646.0,12.0,69.6,188.0,0.0,0.0,394.0,1714.0,279.0,41.0,47.0,29.0,800.0,339.0,402.0,67.0,0.0,161.0,345.0,62.0,81.0,65.0,6.0,737.0,181.0,126.0,0.0,1273.0,0.0,0.0,0.0,0.0,737.0,957.0,619.0,622.0,24.0,0.0,230.0,8.0,163.0,86.0,21.0,145.0,587.0,31.0,104.0,60.0,0.0,117.0,53.0,441.0,319.0,24.0,59.0,224.0,265.0,116.0,251.0,6.0,26.0,216.0,160.0,164.0,82.0,0.0,40.0,0.0,0.0,178.0,939.0,103.0,201.0,51.0,0.0,78.6,108.0,172.0,1314500.0,42.0,95.0,101.0,19.0,17.0,836.0,130.0,61.0,14.0,665.0,74.0,86.0,11.0,64.0,378.0,126.0,113.0,80.0,113.0,110.0,595.0,472.0,426.0,140.0,675.0,630.0,140.0,66.0,919.0,35.0,142.0,265.0,48.0,303.0,82.0,91.0,79.6,290.0,243.0,0.0,445.0,38.0,387.0,6.0,0.0,200.0,15.0,380.0,457.0,0.0,181.0,123.0,12.0,6.0,31.0,51.0,325.0,181.0,20.0,133.0,0.0,162.0,15.0,42.0,44.0,19.0,265.0,76.0,21.0,0.0,69.0,24.0,0.0,50.0,165.0,160.0,0.0,1261.0,96.0,171.0,332.0,398.0,74.0,0.0,162.0,6.0,302.0,19.0,28.0,0.0,0.0,15.0,5.0,163.0,0.0,186.0,50.0,924.0,38.0,904.0,39.0,36.0,17.0,212.0,112.0,37.0,111.0,180.0,0.0,65.0,6.0,20.0,565.0,1020.0,0.0,303.0,51.0,13.0,12.0,66.0,14.0,135.0,104.0,22.0,357.0,132.0,263.0,146.0,0.0,23.0,25.0,0.0,19.0,67.0,0.0,0.0,0.0,17.0,3.0,868.0,1926.0,0.0,30.0,24232.0,28.0,192.0,77.0,3083.0,0.0,0.0,0.0,0.0,1.0,251.0,55.0,37.0,14.0,0.0,612.0,204.0,108.0,0.0,0.0,2016-01-31,,2016-4,4.730988069082934,4.336000000000001, +223,223,5.47,137.0,0.0,102.0,24.0,149.0,57.0,74.0,61.0,104.0,491.0,0.0,69.0,73.0,0.0,780.0,120.0,80.0,40.0,0.0,0.0,0.0,0.0,76.0,36.0,896.0,22.0,475.0,30.0,100.0,21.0,11.0,8.0,542.0,98.0,491.0,54.0,83.0,98.0,102.0,96.0,133.0,19.0,0.0,1.0,63.0,33.0,53.0,884.0,6.0,98.0,36.0,1064.0,49.0,78.0,63.0,222.0,365.0,22.0,106.0,0.0,327.0,150.0,39.0,287.0,13.0,10.0,24.0,89.0,248.0,235.0,39.0,574.0,367.0,442.0,13.0,23.0,69.0,448.0,98.0,13.0,19.0,56.0,246.0,147.0,137.0,126.0,531.0,64.0,0.0,73.0,362.0,2.0,920.0,1485.0,1712.0,159.0,313.0,85.0,147.0,38.0,2356.0,159.0,581.0,906.0,13.0,56.0,65.0,55.0,32.0,167.0,515.0,25.0,21.0,487.0,122.0,1551.0,59.0,46.0,22.0,45.0,0.0,25.0,7.0,22.0,12.0,735.0,41.0,57.0,72.0,4.0,32.0,260.0,377.0,0.0,0.0,146.0,130.0,657.0,12.0,79.0,163.0,0.0,20.0,358.0,1772.0,265.0,49.0,60.0,34.0,787.0,291.0,369.0,57.0,0.0,172.0,363.0,74.0,88.0,73.0,4.0,550.0,165.0,140.0,0.0,1032.0,0.0,0.0,0.0,14.0,756.0,1080.0,634.0,481.0,27.0,0.0,206.0,14.0,122.0,99.0,27.0,135.0,607.0,15.0,116.0,45.0,0.0,79.0,55.0,411.0,322.0,17.0,63.0,207.0,263.0,143.0,277.0,10.0,25.0,226.0,186.0,173.0,79.0,0.0,21.0,0.0,0.0,210.0,1020.0,102.0,215.0,34.0,0.0,87.0,104.0,169.0,1329113.0,58.0,96.0,103.0,16.0,18.0,760.0,128.0,52.0,12.0,591.0,96.0,115.0,10.0,58.0,443.0,151.0,116.0,72.0,90.0,130.0,629.0,438.0,434.0,127.0,686.0,567.0,160.0,61.0,910.0,39.0,147.0,318.0,64.0,302.0,116.0,118.0,89.0,307.0,262.0,0.0,438.0,19.0,429.0,5.0,0.0,251.0,22.0,386.0,467.0,0.0,185.0,110.0,9.0,12.0,25.0,54.0,365.0,177.0,24.0,115.0,0.0,164.0,5.0,31.0,64.0,25.0,231.0,68.0,34.0,0.0,88.0,23.0,0.0,68.0,180.0,152.0,0.0,1234.0,62.0,147.0,378.0,378.0,55.0,0.0,159.0,9.0,358.0,16.0,80.0,471.0,0.0,29.0,6.0,184.0,0.0,158.0,61.0,1002.0,28.0,415.0,32.0,36.0,10.0,271.0,121.0,37.0,113.0,214.0,0.0,74.0,10.0,22.0,551.0,1123.0,0.0,314.0,62.0,12.0,22.0,95.0,13.0,131.0,108.0,22.0,328.0,118.0,283.0,136.0,0.0,26.0,48.0,1.0,22.0,69.0,0.0,0.0,0.0,30.0,0.0,1062.0,1873.0,0.0,61.0,36539.0,37.0,233.0,90.0,3142.0,0.0,0.0,0.0,0.0,1.0,204.0,53.0,30.0,17.0,0.0,605.0,207.0,117.0,15.0,0.0,2016-02-07,,2016-5,5.473429777523887,5.606000000000001, +224,224,6.06,132.0,0.0,108.0,18.0,155.0,70.0,72.0,52.0,94.0,317.0,8.0,86.0,44.0,37.0,800.0,128.0,99.0,29.0,0.0,35.0,29.0,15.0,69.0,34.0,923.0,20.0,395.0,26.0,97.0,24.0,21.0,9.0,587.0,106.0,516.0,68.0,75.0,104.0,90.0,78.0,186.0,26.0,9.0,1.0,61.0,28.0,69.0,809.0,6.0,83.0,29.0,1112.0,44.0,99.0,54.0,236.0,467.0,24.0,87.0,25.0,311.0,167.0,43.0,310.0,14.0,8.0,23.0,74.0,260.0,237.0,58.0,551.0,341.0,418.0,21.0,21.0,70.0,438.0,97.0,9.0,15.0,26.0,156.0,149.0,96.0,140.0,493.0,52.0,0.0,70.0,342.0,3.0,813.0,1459.0,1620.0,157.0,285.0,75.0,103.0,27.0,201.0,154.0,553.0,728.0,15.0,37.0,51.0,35.0,39.0,194.0,578.0,38.0,18.0,393.0,100.0,1406.0,75.0,54.0,22.0,39.0,0.0,28.0,12.0,15.0,7.0,569.0,44.0,46.0,89.0,8.0,19.0,227.0,350.0,1.0,45.0,152.0,127.0,541.0,20.0,69.0,172.0,30.0,34.0,415.0,1800.0,292.0,36.0,54.0,36.0,740.0,190.0,357.0,54.0,0.0,169.0,356.0,80.0,73.0,80.0,8.0,629.0,185.0,145.0,42.0,1064.0,21.0,32.0,40.0,19.0,701.0,769.0,567.0,490.0,18.0,0.0,226.0,15.0,115.0,101.0,16.0,126.0,562.0,28.0,134.0,48.0,0.0,80.0,76.0,324.0,322.0,25.0,56.0,241.0,271.0,133.0,216.0,10.0,21.0,292.0,162.0,156.0,90.0,9.0,41.0,29.0,28.0,208.0,957.0,104.0,207.0,47.0,33.0,76.0,126.0,196.0,1289953.0,39.0,108.0,104.0,18.0,19.0,799.0,132.0,65.0,8.0,686.0,65.0,153.0,8.0,140.0,343.0,157.0,138.0,83.0,123.0,123.0,591.0,489.0,416.0,138.0,601.0,562.0,128.0,65.0,833.0,43.0,114.0,251.0,38.0,289.0,83.0,72.0,111.0,269.0,239.0,22.0,465.0,25.0,371.0,11.0,84.0,231.0,19.0,380.0,428.0,0.0,239.0,108.0,11.0,8.0,26.0,43.0,342.0,179.0,21.0,106.0,0.0,138.0,10.0,37.0,42.0,28.0,217.0,82.0,23.0,0.0,92.0,29.0,0.0,48.0,149.0,197.0,41.0,1248.0,75.0,90.0,345.0,344.0,33.0,50.0,197.0,4.0,317.0,10.0,64.0,255.0,16.0,25.0,12.0,174.0,68.0,121.0,56.0,1055.0,26.0,306.0,35.0,37.0,22.0,257.0,115.0,42.0,107.0,242.0,34.0,61.0,11.0,25.0,592.0,1151.0,0.0,324.0,49.0,16.0,23.0,58.0,13.0,107.0,88.0,17.0,299.0,143.0,246.0,162.0,0.0,28.0,40.0,1.0,21.0,59.0,0.0,0.0,0.0,29.0,4.0,919.0,1915.0,0.0,99.0,15356.0,28.0,226.0,90.0,2778.0,14.0,0.0,0.0,0.0,1.0,217.0,60.0,34.0,15.0,0.0,547.0,213.0,131.0,18.0,46.0,2016-02-14,,2016-6,6.060040688053347,4.4799999999999995, +225,225,5.9,161.0,0.0,114.0,2.0,176.0,74.0,76.0,53.0,108.0,269.0,4.0,78.0,50.0,2.0,733.0,123.0,82.0,26.0,0.0,2.0,5.0,2.0,58.0,30.0,822.0,34.0,420.0,29.0,109.0,2.0,2.0,7.0,674.0,148.0,537.0,63.0,72.0,99.0,96.0,101.0,163.0,39.0,1.0,1.0,71.0,43.0,87.0,777.0,5.0,69.0,34.0,1037.0,53.0,91.0,68.0,238.0,352.0,25.0,58.0,5.0,298.0,154.0,44.0,316.0,15.0,10.0,24.0,71.0,239.0,228.0,61.0,593.0,317.0,444.0,10.0,33.0,64.0,432.0,78.0,10.0,18.0,28.0,97.0,167.0,95.0,133.0,500.0,71.0,8.0,79.0,334.0,6.0,977.0,1440.0,1762.0,169.0,224.0,73.0,114.0,33.0,249.0,181.0,588.0,735.0,26.0,60.0,67.0,44.0,48.0,203.0,562.0,37.0,16.0,336.0,132.0,1470.0,63.0,56.0,16.0,26.0,0.0,13.0,7.0,14.0,10.0,502.0,39.0,68.0,118.0,10.0,32.0,434.0,146.0,0.0,8.0,92.0,122.0,595.0,10.0,87.0,179.0,2.0,3.0,382.0,1744.0,238.0,29.0,61.0,27.0,734.0,206.0,335.0,53.0,0.0,144.0,366.0,71.0,86.0,58.0,4.0,618.0,175.0,131.0,2.0,1096.0,4.0,1.0,2.0,4.0,773.0,1060.0,630.0,724.0,15.0,0.0,240.0,14.0,135.0,109.0,16.0,131.0,638.0,37.0,119.0,63.0,0.0,86.0,42.0,409.0,296.0,19.0,64.0,185.0,273.0,118.0,233.0,9.0,35.0,268.0,175.0,166.0,98.0,2.0,33.0,3.0,2.0,233.0,914.0,112.0,169.0,55.0,3.0,94.0,113.0,165.0,1290623.0,47.0,79.0,83.0,15.0,12.0,866.0,113.0,55.0,16.0,594.0,67.0,113.0,13.0,78.0,396.0,160.0,115.0,66.0,124.0,124.0,668.0,503.0,441.0,127.0,599.0,566.0,129.0,64.0,741.0,41.0,116.0,223.0,44.0,304.0,97.0,96.0,97.0,279.0,222.0,1.0,445.0,17.0,398.0,9.0,5.0,233.0,22.0,386.0,459.0,0.0,164.0,123.0,15.0,13.0,40.0,57.0,288.0,207.0,30.0,111.0,0.0,156.0,12.0,35.0,58.0,22.0,229.0,81.0,34.0,0.0,103.0,26.0,0.0,41.0,150.0,143.0,2.0,1258.0,69.0,75.0,349.0,391.0,41.0,0.0,172.0,12.0,350.0,14.0,40.0,36.0,2.0,38.0,1.0,164.0,4.0,171.0,53.0,1001.0,32.0,333.0,25.0,50.0,12.0,270.0,104.0,34.0,93.0,218.0,9.0,34.0,12.0,24.0,587.0,1084.0,0.0,251.0,42.0,14.0,26.0,99.0,15.0,108.0,93.0,20.0,316.0,117.0,243.0,148.0,0.0,29.0,31.0,2.0,32.0,76.0,0.0,0.0,0.0,16.0,5.0,857.0,1951.0,0.0,77.0,6193.0,29.0,200.0,92.0,2803.0,0.0,0.0,0.0,0.0,2.0,218.0,73.0,41.0,23.0,0.0,585.0,187.0,134.0,1.0,0.0,2016-02-21,,2016-7,5.902525054227694,5.444, +226,226,6.14,141.0,0.0,94.0,2.0,211.0,70.0,69.0,82.0,78.0,241.0,3.0,76.0,43.0,1.0,705.0,95.0,94.0,33.0,0.0,3.0,3.0,4.0,84.0,35.0,790.0,29.0,409.0,30.0,102.0,2.0,1.0,6.0,608.0,96.0,385.0,59.0,47.0,102.0,59.0,78.0,173.0,34.0,2.0,7.0,87.0,37.0,67.0,715.0,4.0,75.0,26.0,1101.0,62.0,82.0,65.0,260.0,347.0,26.0,74.0,3.0,242.0,167.0,27.0,285.0,9.0,8.0,26.0,85.0,196.0,219.0,50.0,607.0,336.0,405.0,22.0,19.0,34.0,388.0,87.0,11.0,20.0,24.0,98.0,128.0,81.0,132.0,460.0,74.0,0.0,48.0,297.0,1.0,904.0,1307.0,1653.0,126.0,312.0,75.0,110.0,38.0,242.0,141.0,570.0,677.0,22.0,47.0,63.0,55.0,58.0,140.0,567.0,30.0,23.0,458.0,105.0,1478.0,71.0,74.0,19.0,45.0,0.0,34.0,17.0,26.0,5.0,401.0,41.0,53.0,102.0,13.0,33.0,276.0,111.0,0.0,2.0,127.0,106.0,591.0,12.0,97.0,154.0,3.0,4.0,404.0,1610.0,237.0,39.0,64.0,27.0,788.0,158.0,312.0,63.0,0.0,115.0,318.0,63.0,73.0,63.0,6.0,609.0,171.0,124.0,1.0,1012.0,6.0,4.0,4.0,1.0,771.0,721.0,627.0,519.0,19.0,0.0,227.0,17.0,97.0,90.0,12.0,126.0,629.0,34.0,108.0,44.0,0.0,113.0,42.0,406.0,327.0,19.0,51.0,200.0,264.0,96.0,250.0,8.0,18.0,263.0,171.0,147.0,94.0,0.0,20.0,2.0,4.0,214.0,830.0,108.0,179.0,36.0,2.0,105.0,108.0,161.0,1288989.0,45.0,110.0,94.0,26.0,19.0,863.0,145.0,65.0,18.0,577.0,65.0,180.0,9.0,95.0,349.0,164.0,116.0,75.0,85.0,88.0,573.0,427.0,443.0,133.0,750.0,536.0,140.0,49.0,752.0,42.0,115.0,225.0,47.0,273.0,90.0,68.0,106.0,241.0,214.0,1.0,465.0,22.0,389.0,5.0,2.0,198.0,19.0,366.0,407.0,0.0,172.0,113.0,10.0,11.0,19.0,42.0,298.0,159.0,28.0,102.0,0.0,132.0,10.0,29.0,30.0,22.0,194.0,57.0,32.0,0.0,76.0,15.0,0.0,44.0,119.0,119.0,1.0,1310.0,51.0,86.0,312.0,359.0,38.0,1.0,164.0,4.0,295.0,16.0,31.0,48.0,2.0,18.0,24.0,160.0,2.0,156.0,62.0,1092.0,25.0,259.0,28.0,36.0,12.0,218.0,95.0,38.0,94.0,164.0,3.0,37.0,11.0,24.0,542.0,1016.0,0.0,279.0,42.0,16.0,30.0,56.0,8.0,97.0,78.0,18.0,1900.0,151.0,276.0,204.0,0.0,26.0,54.0,0.0,41.0,52.0,0.0,0.0,0.0,22.0,2.0,879.0,1903.0,0.0,68.0,4630.0,38.0,190.0,120.0,3022.0,4.0,0.0,0.0,0.0,2.0,210.0,59.0,53.0,20.0,0.0,565.0,166.0,121.0,3.0,3.0,2016-02-28,,2016-8,6.147462784556295,6.0280000000000005, +227,227,5.88,145.0,0.0,85.0,4.0,160.0,55.0,55.0,137.0,75.0,266.0,3.0,74.0,62.0,4.0,618.0,104.0,62.0,38.0,0.0,3.0,2.0,4.0,73.0,25.0,768.0,25.0,341.0,19.0,78.0,3.0,5.0,7.0,560.0,108.0,312.0,48.0,62.0,102.0,44.0,91.0,137.0,48.0,3.0,3.0,69.0,27.0,60.0,637.0,3.0,59.0,24.0,1032.0,42.0,75.0,56.0,258.0,303.0,32.0,66.0,3.0,240.0,161.0,34.0,287.0,8.0,12.0,22.0,84.0,196.0,221.0,44.0,533.0,275.0,364.0,12.0,25.0,55.0,410.0,81.0,10.0,17.0,27.0,61.0,112.0,110.0,135.0,388.0,76.0,0.0,50.0,280.0,7.0,748.0,1301.0,1600.0,116.0,289.0,82.0,103.0,30.0,127.0,132.0,457.0,616.0,12.0,45.0,51.0,22.0,59.0,104.0,616.0,28.0,17.0,472.0,100.0,1312.0,44.0,67.0,12.0,37.0,0.0,12.0,15.0,9.0,10.0,386.0,36.0,51.0,68.0,15.0,37.0,260.0,74.0,0.0,2.0,79.0,114.0,596.0,10.0,60.0,119.0,4.0,7.0,313.0,1640.0,178.0,33.0,82.0,37.0,1860.0,145.0,335.0,39.0,0.0,125.0,370.0,62.0,67.0,82.0,5.0,616.0,173.0,136.0,2.0,840.0,9.0,6.0,1.0,5.0,728.0,735.0,523.0,554.0,19.0,0.0,226.0,16.0,94.0,86.0,24.0,116.0,546.0,23.0,126.0,59.0,0.0,92.0,55.0,404.0,309.0,16.0,31.0,161.0,219.0,71.0,200.0,2.0,33.0,178.0,193.0,131.0,100.0,2.0,39.0,2.0,1.0,238.0,821.0,90.0,156.0,24.0,4.0,58.0,82.0,119.0,1316011.0,36.0,134.0,87.0,11.0,13.0,776.0,107.0,70.0,10.0,563.0,58.0,202.0,12.0,58.0,338.0,144.0,96.0,59.0,112.0,88.0,510.0,388.0,396.0,118.0,539.0,535.0,133.0,57.0,632.0,46.0,84.0,202.0,45.0,233.0,87.0,103.0,67.0,226.0,200.0,3.0,451.0,18.0,324.0,5.0,2.0,214.0,23.0,357.0,373.0,0.0,142.0,108.0,6.0,5.0,17.0,40.0,268.0,150.0,24.0,88.0,0.0,77.0,14.0,38.0,49.0,15.0,198.0,62.0,25.0,0.0,74.0,20.0,0.0,57.0,91.0,114.0,7.0,1087.0,67.0,63.0,354.0,300.0,31.0,4.0,162.0,5.0,262.0,13.0,19.0,32.0,6.0,22.0,8.0,169.0,3.0,126.0,57.0,973.0,18.0,279.0,26.0,33.0,21.0,201.0,61.0,31.0,137.0,179.0,2.0,69.0,9.0,24.0,480.0,889.0,0.0,247.0,40.0,17.0,22.0,60.0,7.0,107.0,52.0,17.0,1286.0,126.0,241.0,145.0,0.0,22.0,35.0,2.0,20.0,67.0,0.0,0.0,0.0,25.0,5.0,761.0,1898.0,0.0,58.0,4100.0,28.0,165.0,93.0,2545.0,10.0,0.0,0.0,0.0,2.0,178.0,46.0,30.0,18.0,0.0,498.0,158.0,119.0,4.0,2.0,2016-03-06,,2016-9,5.831622374738796,5.922, +228,228,5.83,158.0,0.0,83.0,4.0,158.0,72.0,58.0,108.0,77.0,249.0,2.0,64.0,32.0,1.0,634.0,129.0,53.0,27.0,0.0,2.0,1.0,1.0,52.0,21.0,666.0,23.0,364.0,15.0,103.0,2.0,2.0,11.0,526.0,95.0,294.0,60.0,53.0,75.0,43.0,84.0,131.0,25.0,1.0,2.0,76.0,28.0,39.0,660.0,5.0,439.0,27.0,1013.0,40.0,77.0,56.0,245.0,302.0,23.0,70.0,2.0,230.0,159.0,27.0,287.0,7.0,5.0,18.0,67.0,182.0,280.0,37.0,511.0,302.0,383.0,21.0,40.0,47.0,334.0,80.0,9.0,21.0,19.0,71.0,107.0,102.0,95.0,376.0,51.0,0.0,55.0,276.0,1.0,969.0,1409.0,2357.0,143.0,291.0,49.0,136.0,47.0,125.0,121.0,607.0,591.0,17.0,50.0,65.0,24.0,41.0,93.0,587.0,19.0,25.0,414.0,99.0,1350.0,59.0,49.0,18.0,23.0,0.0,13.0,8.0,5.0,7.0,334.0,36.0,50.0,97.0,12.0,16.0,227.0,92.0,0.0,3.0,80.0,84.0,540.0,19.0,62.0,131.0,2.0,5.0,402.0,1539.0,191.0,29.0,76.0,22.0,1229.0,179.0,292.0,44.0,0.0,131.0,304.0,44.0,74.0,62.0,2.0,546.0,147.0,138.0,4.0,859.0,9.0,4.0,1.0,1.0,718.0,683.0,642.0,452.0,15.0,0.0,193.0,9.0,113.0,95.0,20.0,113.0,510.0,24.0,98.0,40.0,0.0,110.0,47.0,400.0,294.0,23.0,27.0,203.0,230.0,74.0,216.0,5.0,30.0,181.0,163.0,157.0,85.0,2.0,33.0,1.0,2.0,194.0,754.0,78.0,149.0,21.0,2.0,66.0,88.0,152.0,1351648.0,35.0,69.0,90.0,12.0,8.0,760.0,127.0,60.0,15.0,524.0,74.0,196.0,10.0,46.0,304.0,129.0,105.0,78.0,85.0,96.0,500.0,422.0,335.0,124.0,643.0,526.0,112.0,46.0,575.0,35.0,96.0,179.0,37.0,219.0,95.0,73.0,68.0,205.0,215.0,1.0,434.0,17.0,356.0,2.0,7.0,234.0,14.0,387.0,415.0,0.0,133.0,113.0,6.0,7.0,18.0,27.0,301.0,140.0,15.0,85.0,0.0,96.0,13.0,32.0,42.0,25.0,145.0,57.0,20.0,0.0,70.0,23.0,0.0,36.0,101.0,106.0,1.0,1087.0,54.0,79.0,296.0,341.0,33.0,7.0,170.0,5.0,296.0,19.0,23.0,28.0,0.0,26.0,5.0,133.0,3.0,143.0,37.0,1004.0,29.0,310.0,39.0,32.0,20.0,210.0,83.0,16.0,106.0,194.0,3.0,72.0,7.0,18.0,459.0,837.0,0.0,236.0,34.0,10.0,19.0,60.0,15.0,116.0,69.0,24.0,559.0,121.0,274.0,122.0,0.0,16.0,35.0,0.0,26.0,57.0,0.0,0.0,0.0,14.0,1.0,692.0,1818.0,0.0,51.0,2061.0,16.0,114.0,69.0,2309.0,8.0,0.0,0.0,0.0,0.0,208.0,41.0,31.0,10.0,0.0,577.0,150.0,123.0,2.0,2.0,2016-03-13,,2016-10,5.837522130840458,4.134, +229,229,5.0,131.0,0.0,100.0,9.0,176.0,80.0,48.0,110.0,67.0,262.0,9.0,67.0,49.0,4.0,691.0,103.0,70.0,30.0,0.0,9.0,10.0,10.0,61.0,28.0,605.0,20.0,364.0,22.0,86.0,11.0,13.0,13.0,519.0,247.0,328.0,57.0,47.0,92.0,60.0,66.0,123.0,35.0,13.0,3.0,102.0,31.0,54.0,1221.0,6.0,86.0,34.0,1021.0,37.0,88.0,45.0,264.0,354.0,25.0,72.0,10.0,246.0,161.0,28.0,297.0,13.0,13.0,27.0,76.0,165.0,259.0,64.0,505.0,270.0,336.0,28.0,111.0,48.0,311.0,77.0,7.0,21.0,22.0,40.0,129.0,93.0,135.0,402.0,74.0,0.0,54.0,266.0,7.0,902.0,1456.0,2020.0,145.0,289.0,62.0,104.0,27.0,112.0,136.0,584.0,655.0,16.0,37.0,53.0,29.0,47.0,82.0,582.0,32.0,12.0,309.0,99.0,1305.0,70.0,57.0,15.0,32.0,0.0,15.0,13.0,26.0,13.0,361.0,34.0,55.0,101.0,14.0,33.0,279.0,97.0,0.0,10.0,99.0,118.0,491.0,16.0,49.0,124.0,7.0,5.0,593.0,1527.0,222.0,25.0,60.0,34.0,954.0,222.0,338.0,53.0,0.0,146.0,295.0,48.0,60.0,66.0,10.0,695.0,156.0,128.0,8.0,891.0,14.0,10.0,13.0,9.0,682.0,721.0,547.0,512.0,13.0,1.0,223.0,7.0,116.0,85.0,17.0,119.0,568.0,19.0,139.0,45.0,0.0,96.0,46.0,391.0,314.0,23.0,43.0,173.0,223.0,68.0,217.0,9.0,43.0,238.0,129.0,126.0,83.0,8.0,47.0,5.0,10.0,220.0,767.0,103.0,159.0,22.0,5.0,71.0,96.0,130.0,1265423.0,36.0,68.0,59.0,13.0,15.0,670.0,109.0,51.0,8.0,527.0,117.0,169.0,10.0,45.0,328.0,140.0,95.0,64.0,113.0,90.0,445.0,417.0,330.0,107.0,531.0,489.0,128.0,70.0,591.0,34.0,88.0,208.0,42.0,228.0,72.0,78.0,60.0,202.0,188.0,8.0,404.0,11.0,328.0,6.0,9.0,207.0,20.0,356.0,419.0,0.0,148.0,95.0,15.0,8.0,29.0,34.0,250.0,144.0,27.0,69.0,0.0,102.0,18.0,33.0,45.0,23.0,162.0,62.0,45.0,0.0,87.0,21.0,0.0,47.0,94.0,95.0,10.0,1077.0,49.0,95.0,256.0,346.0,34.0,4.0,162.0,9.0,292.0,19.0,23.0,36.0,5.0,19.0,8.0,146.0,7.0,109.0,53.0,1025.0,28.0,260.0,60.0,30.0,22.0,195.0,72.0,22.0,78.0,190.0,10.0,64.0,10.0,30.0,430.0,871.0,0.0,226.0,40.0,12.0,12.0,64.0,12.0,107.0,53.0,14.0,352.0,137.0,233.0,124.0,0.0,25.0,34.0,0.0,20.0,50.0,0.0,0.0,0.0,23.0,5.0,745.0,1624.0,0.0,59.0,1351.0,19.0,97.0,86.0,2233.0,12.0,1.0,0.0,0.0,2.0,166.0,643.0,26.0,20.0,1.0,506.0,176.0,111.0,10.0,10.0,2016-03-20,,2016-11,5.007963434510169,4.29, +230,230,4.23,116.0,0.0,73.0,4.0,163.0,66.0,60.0,57.0,54.0,225.0,5.0,51.0,29.0,8.0,607.0,125.0,59.0,21.0,0.0,5.0,3.0,19.0,42.0,31.0,642.0,21.0,287.0,20.0,73.0,5.0,10.0,6.0,433.0,101.0,235.0,54.0,55.0,69.0,46.0,75.0,110.0,16.0,2.0,3.0,43.0,36.0,53.0,599.0,10.0,68.0,15.0,879.0,48.0,72.0,38.0,196.0,298.0,31.0,72.0,4.0,209.0,132.0,22.0,243.0,9.0,7.0,42.0,50.0,149.0,185.0,45.0,446.0,233.0,359.0,21.0,30.0,34.0,327.0,69.0,6.0,12.0,15.0,54.0,111.0,85.0,99.0,393.0,49.0,1.0,50.0,227.0,5.0,711.0,1159.0,1418.0,114.0,207.0,45.0,139.0,36.0,108.0,112.0,554.0,519.0,21.0,36.0,48.0,32.0,32.0,80.0,510.0,33.0,10.0,340.0,105.0,1109.0,40.0,57.0,12.0,24.0,0.0,14.0,14.0,18.0,7.0,278.0,31.0,41.0,67.0,22.0,28.0,237.0,58.0,0.0,3.0,75.0,109.0,468.0,14.0,42.0,113.0,8.0,10.0,296.0,1337.0,195.0,31.0,40.0,24.0,759.0,245.0,289.0,35.0,0.0,116.0,295.0,27.0,62.0,51.0,5.0,880.0,144.0,108.0,4.0,760.0,13.0,1.0,7.0,5.0,615.0,1326.0,551.0,491.0,15.0,0.0,183.0,9.0,109.0,89.0,15.0,105.0,475.0,24.0,98.0,47.0,0.0,113.0,34.0,345.0,215.0,14.0,38.0,175.0,198.0,64.0,163.0,6.0,25.0,158.0,113.0,148.0,98.0,5.0,25.0,3.0,7.0,170.0,655.0,105.0,161.0,23.0,5.0,63.0,80.0,123.0,1232417.0,32.0,58.0,65.0,16.0,11.0,579.0,123.0,56.0,17.0,443.0,68.0,113.0,3.0,32.0,278.0,138.0,79.0,58.0,84.0,72.0,388.0,304.0,296.0,94.0,473.0,406.0,118.0,42.0,507.0,24.0,87.0,176.0,26.0,222.0,63.0,69.0,78.0,198.0,209.0,4.0,392.0,15.0,274.0,6.0,4.0,168.0,20.0,370.0,346.0,0.0,118.0,95.0,11.0,8.0,21.0,24.0,212.0,124.0,33.0,78.0,0.0,95.0,9.0,22.0,28.0,20.0,164.0,60.0,22.0,0.0,66.0,18.0,0.0,45.0,83.0,105.0,6.0,991.0,47.0,63.0,217.0,276.0,30.0,2.0,139.0,6.0,245.0,11.0,29.0,23.0,4.0,18.0,8.0,152.0,4.0,106.0,44.0,752.0,30.0,231.0,23.0,32.0,21.0,187.0,62.0,15.0,72.0,155.0,4.0,57.0,8.0,25.0,384.0,720.0,0.0,252.0,38.0,11.0,18.0,54.0,8.0,86.0,58.0,13.0,313.0,146.0,222.0,125.0,0.0,16.0,26.0,0.0,18.0,46.0,0.0,0.0,0.0,16.0,4.0,579.0,1376.0,0.0,44.0,1104.0,21.0,108.0,79.0,1965.0,9.0,0.0,0.0,0.0,0.0,194.0,53.0,25.0,17.0,0.0,445.0,135.0,74.0,2.0,3.0,2016-03-27,,2016-12,4.193045735674376,3.1300000000000003, +231,231,3.18,120.0,0.0,74.0,5.0,138.0,82.0,62.0,41.0,64.0,234.0,5.0,60.0,26.0,6.0,598.0,97.0,57.0,30.0,0.0,3.0,5.0,5.0,44.0,31.0,686.0,25.0,291.0,19.0,98.0,13.0,3.0,9.0,456.0,74.0,331.0,57.0,65.0,91.0,34.0,94.0,111.0,24.0,9.0,1.0,69.0,28.0,49.0,611.0,7.0,100.0,24.0,871.0,30.0,80.0,45.0,229.0,308.0,36.0,51.0,4.0,232.0,145.0,27.0,266.0,9.0,5.0,30.0,75.0,169.0,196.0,42.0,461.0,255.0,338.0,25.0,32.0,30.0,321.0,84.0,9.0,15.0,24.0,54.0,109.0,93.0,93.0,359.0,50.0,0.0,54.0,241.0,3.0,793.0,1180.0,1620.0,144.0,256.0,61.0,98.0,49.0,58.0,117.0,490.0,604.0,31.0,34.0,60.0,35.0,42.0,115.0,500.0,30.0,7.0,383.0,99.0,1078.0,54.0,59.0,11.0,27.0,0.0,14.0,15.0,8.0,6.0,359.0,34.0,58.0,83.0,19.0,20.0,239.0,81.0,0.0,5.0,82.0,116.0,524.0,17.0,50.0,138.0,5.0,6.0,305.0,1288.0,190.0,34.0,37.0,26.0,757.0,118.0,259.0,47.0,0.0,106.0,331.0,51.0,50.0,58.0,8.0,438.0,126.0,93.0,5.0,826.0,15.0,7.0,4.0,3.0,606.0,975.0,731.0,507.0,18.0,0.0,193.0,12.0,126.0,120.0,22.0,86.0,471.0,25.0,82.0,46.0,0.0,159.0,33.0,632.0,279.0,14.0,26.0,195.0,201.0,60.0,194.0,14.0,19.0,127.0,153.0,119.0,64.0,4.0,50.0,5.0,4.0,153.0,687.0,93.0,162.0,25.0,10.0,55.0,75.0,124.0,1210067.0,41.0,53.0,61.0,18.0,16.0,587.0,150.0,58.0,13.0,408.0,53.0,223.0,10.0,46.0,295.0,133.0,108.0,65.0,75.0,87.0,412.0,337.0,292.0,113.0,543.0,489.0,131.0,35.0,507.0,36.0,114.0,204.0,58.0,252.0,73.0,92.0,64.0,249.0,201.0,8.0,365.0,16.0,314.0,9.0,7.0,186.0,9.0,378.0,376.0,0.0,90.0,116.0,11.0,9.0,20.0,48.0,257.0,161.0,24.0,74.0,0.0,78.0,13.0,43.0,44.0,25.0,171.0,51.0,22.0,0.0,56.0,21.0,1.0,33.0,88.0,97.0,4.0,1012.0,44.0,57.0,206.0,310.0,45.0,4.0,130.0,8.0,259.0,15.0,22.0,30.0,5.0,31.0,5.0,142.0,6.0,106.0,58.0,904.0,34.0,249.0,46.0,32.0,23.0,208.0,70.0,37.0,87.0,167.0,6.0,53.0,8.0,18.0,416.0,848.0,0.0,279.0,44.0,15.0,13.0,50.0,8.0,78.0,85.0,10.0,232.0,102.0,253.0,158.0,0.0,27.0,32.0,1.0,15.0,45.0,0.0,0.0,0.0,20.0,5.0,697.0,1571.0,0.0,61.0,985.0,17.0,116.0,77.0,2871.0,12.0,1.0,0.0,0.0,2.0,194.0,56.0,38.0,11.0,0.0,462.0,142.0,102.0,5.0,6.0,2016-04-03,,2016-13,3.1894356505005605,2.914, +232,232,2.3,97.0,0.0,100.0,2.0,137.0,92.0,66.0,52.0,61.0,225.0,8.0,82.0,36.0,4.0,650.0,89.0,77.0,23.0,0.0,1.0,2.0,7.0,65.0,42.0,627.0,39.0,353.0,21.0,103.0,3.0,3.0,8.0,549.0,91.0,321.0,66.0,64.0,110.0,52.0,93.0,123.0,28.0,7.0,6.0,97.0,46.0,46.0,656.0,7.0,73.0,45.0,1052.0,46.0,75.0,52.0,215.0,303.0,30.0,76.0,2.0,237.0,176.0,28.0,292.0,12.0,5.0,17.0,66.0,180.0,200.0,50.0,535.0,315.0,370.0,11.0,31.0,32.0,324.0,107.0,9.0,22.0,18.0,60.0,86.0,147.0,128.0,482.0,56.0,0.0,50.0,285.0,4.0,901.0,1404.0,1530.0,111.0,279.0,52.0,1107.0,38.0,63.0,105.0,574.0,575.0,12.0,49.0,82.0,45.0,47.0,97.0,539.0,31.0,26.0,393.0,142.0,990.0,72.0,44.0,17.0,32.0,0.0,16.0,13.0,13.0,6.0,379.0,44.0,58.0,64.0,18.0,20.0,198.0,62.0,0.0,7.0,99.0,111.0,678.0,9.0,78.0,143.0,5.0,1.0,327.0,1437.0,224.0,31.0,58.0,22.0,712.0,111.0,306.0,46.0,0.0,94.0,371.0,50.0,69.0,50.0,7.0,419.0,138.0,131.0,4.0,917.0,16.0,1.0,3.0,3.0,697.0,756.0,703.0,482.0,18.0,0.0,211.0,14.0,86.0,115.0,15.0,95.0,553.0,20.0,117.0,42.0,0.0,114.0,36.0,447.0,210.0,12.0,38.0,169.0,221.0,78.0,178.0,7.0,29.0,142.0,127.0,158.0,83.0,3.0,48.0,6.0,4.0,188.0,780.0,95.0,178.0,28.0,1.0,39.0,89.0,161.0,1309848.0,22.0,62.0,68.0,16.0,24.0,811.0,101.0,55.0,6.0,466.0,52.0,189.0,10.0,45.0,357.0,146.0,77.0,54.0,88.0,88.0,417.0,359.0,333.0,82.0,668.0,490.0,132.0,31.0,487.0,32.0,113.0,229.0,51.0,255.0,70.0,83.0,62.0,214.0,198.0,3.0,410.0,17.0,321.0,7.0,3.0,207.0,18.0,348.0,366.0,0.0,145.0,107.0,18.0,11.0,16.0,33.0,255.0,124.0,27.0,75.0,0.0,85.0,14.0,33.0,56.0,18.0,154.0,74.0,25.0,0.0,56.0,30.0,0.0,42.0,80.0,120.0,1.0,1333.0,64.0,60.0,249.0,333.0,39.0,7.0,164.0,4.0,313.0,10.0,61.0,47.0,1.0,20.0,7.0,130.0,5.0,124.0,58.0,1057.0,25.0,239.0,47.0,25.0,20.0,202.0,88.0,32.0,72.0,196.0,2.0,37.0,10.0,23.0,461.0,958.0,0.0,302.0,55.0,10.0,14.0,69.0,16.0,113.0,70.0,18.0,292.0,154.0,263.0,155.0,0.0,20.0,42.0,0.0,22.0,49.0,0.0,0.0,0.0,37.0,4.0,777.0,1601.0,0.0,55.0,968.0,17.0,130.0,120.0,2466.0,12.0,17.0,0.0,0.0,1.0,222.0,49.0,30.0,10.0,0.0,460.0,174.0,91.0,2.0,6.0,2016-04-10,,2016-14,2.299374267738756,2.6, +233,233,1.85,81.0,0.0,89.0,4.0,139.0,67.0,54.0,58.0,84.0,236.0,5.0,63.0,32.0,3.0,595.0,92.0,57.0,30.0,0.0,2.0,4.0,5.0,67.0,27.0,519.0,26.0,325.0,18.0,102.0,2.0,3.0,6.0,562.0,93.0,321.0,57.0,68.0,79.0,41.0,98.0,112.0,28.0,3.0,5.0,71.0,30.0,51.0,614.0,11.0,67.0,33.0,902.0,45.0,73.0,47.0,233.0,306.0,14.0,78.0,1.0,228.0,156.0,28.0,278.0,17.0,10.0,23.0,67.0,154.0,208.0,42.0,482.0,254.0,350.0,13.0,30.0,31.0,356.0,77.0,14.0,17.0,24.0,33.0,111.0,146.0,111.0,410.0,58.0,0.0,65.0,222.0,3.0,803.0,1264.0,1485.0,137.0,214.0,58.0,111.0,28.0,68.0,134.0,546.0,614.0,12.0,44.0,59.0,16.0,34.0,86.0,516.0,28.0,13.0,307.0,110.0,1012.0,76.0,46.0,10.0,27.0,0.0,11.0,21.0,10.0,6.0,366.0,45.0,45.0,86.0,26.0,27.0,203.0,74.0,0.0,7.0,122.0,106.0,568.0,13.0,48.0,134.0,3.0,4.0,304.0,1291.0,181.0,40.0,41.0,32.0,718.0,98.0,274.0,46.0,0.0,143.0,335.0,53.0,58.0,66.0,5.0,423.0,134.0,104.0,6.0,819.0,13.0,1.0,2.0,3.0,645.0,756.0,608.0,486.0,11.0,0.0,221.0,14.0,124.0,106.0,20.0,100.0,535.0,17.0,114.0,38.0,0.0,122.0,33.0,424.0,288.0,14.0,35.0,184.0,231.0,74.0,175.0,9.0,31.0,134.0,140.0,153.0,66.0,5.0,47.0,3.0,3.0,187.0,740.0,90.0,139.0,49.0,2.0,55.0,74.0,140.0,1295223.0,30.0,49.0,59.0,23.0,13.0,692.0,201.0,51.0,18.0,484.0,63.0,140.0,13.0,44.0,349.0,172.0,69.0,83.0,91.0,98.0,374.0,355.0,300.0,122.0,579.0,399.0,114.0,38.0,477.0,30.0,85.0,200.0,52.0,244.0,95.0,100.0,75.0,188.0,169.0,2.0,399.0,22.0,310.0,8.0,1.0,179.0,13.0,317.0,380.0,0.0,109.0,115.0,17.0,7.0,13.0,20.0,261.0,140.0,24.0,83.0,0.0,91.0,21.0,40.0,63.0,21.0,150.0,72.0,33.0,0.0,74.0,11.0,0.0,49.0,84.0,121.0,4.0,1133.0,72.0,77.0,203.0,321.0,50.0,4.0,122.0,6.0,254.0,17.0,33.0,45.0,3.0,26.0,5.0,169.0,2.0,128.0,63.0,1019.0,32.0,274.0,30.0,23.0,24.0,196.0,76.0,30.0,81.0,185.0,3.0,45.0,10.0,25.0,399.0,909.0,0.0,267.0,47.0,16.0,22.0,46.0,12.0,104.0,48.0,29.0,261.0,128.0,260.0,159.0,0.0,22.0,46.0,0.0,21.0,46.0,0.0,0.0,38.0,20.0,8.0,694.0,1576.0,0.0,27.0,1259.0,36.0,124.0,68.0,2451.0,10.0,18.0,0.0,0.0,2.0,168.0,57.0,41.0,9.0,0.0,422.0,178.0,99.0,1.0,4.0,2016-04-17,,2016-15,1.855137865494421,3.11, +234,234,0.59,99.0,3.0,221.0,2.0,241.0,284.0,95.0,139.0,129.0,539.0,2.0,170.0,67.0,8.0,1320.0,198.0,124.0,51.0,259.0,2.0,1.0,2.0,106.0,43.0,2879.0,33.0,1527.0,41.0,306.0,2.0,4.0,10.0,1400.0,177.0,867.0,83.0,131.0,98.0,91.0,236.0,242.0,26.0,3.0,1.0,105.0,40.0,87.0,1741.0,3.0,123.0,21.0,1998.0,60.0,101.0,100.0,314.0,963.0,39.0,139.0,4.0,667.0,254.0,33.0,474.0,14.0,11.0,30.0,121.0,351.0,478.0,83.0,1023.0,497.0,875.0,33.0,90.0,78.0,601.0,119.0,5.0,12.0,27.0,63.0,269.0,165.0,264.0,1454.0,94.0,0.0,132.0,547.0,2.0,1792.0,2932.0,4864.0,198.0,470.0,91.0,163.0,46.0,186.0,230.0,906.0,1093.0,11.0,90.0,137.0,36.0,44.0,151.0,1889.0,60.0,21.0,3721.0,269.0,3423.0,82.0,847.0,14.0,58.0,39.0,12.0,10.0,4.0,5.0,703.0,41.0,96.0,207.0,9.0,20.0,1978.0,69.0,7.0,2.0,193.0,177.0,1287.0,11.0,80.0,245.0,2.0,1.0,675.0,2813.0,415.0,44.0,122.0,58.0,1847.0,145.0,273.0,58.0,107.0,311.0,798.0,122.0,147.0,142.0,0.0,1356.0,373.0,190.0,2.0,2817.0,1.0,1.0,1.0,4.0,2373.0,1872.0,1724.0,1615.0,26.0,0.0,537.0,17.0,253.0,303.0,34.0,210.0,1339.0,55.0,73.0,60.0,193.0,147.0,68.0,1854.0,383.0,35.0,98.0,570.0,734.0,230.0,545.0,16.0,27.0,505.0,247.0,381.0,343.0,4.0,46.0,2.0,2.0,471.0,2512.0,169.0,333.0,73.0,1.0,89.0,176.0,353.0,8321380.0,49.0,128.0,120.0,16.0,14.0,2093.0,1291.0,130.0,10.0,2845.0,162.0,101.0,6.0,142.0,993.0,427.0,111.0,135.0,191.0,124.0,806.0,849.0,925.0,212.0,1404.0,1057.0,250.0,121.0,2869.0,40.0,317.0,615.0,78.0,689.0,156.0,236.0,86.0,359.0,396.0,2.0,965.0,25.0,844.0,2.0,3.0,579.0,15.0,716.0,1076.0,0.0,242.0,232.0,8.0,8.0,37.0,76.0,822.0,293.0,34.0,198.0,25.0,166.0,21.0,53.0,93.0,29.0,367.0,106.0,40.0,10.0,93.0,25.0,129.0,72.0,267.0,258.0,4.0,2936.0,88.0,96.0,931.0,1076.0,67.0,1.0,257.0,3.0,568.0,9.0,62.0,113.0,2.0,31.0,2.0,368.0,2.0,463.0,81.0,2259.0,34.0,471.0,45.0,40.0,30.0,567.0,148.0,44.0,274.0,433.0,1.0,54.0,12.0,62.0,925.0,1866.0,0.0,878.0,100.0,16.0,79.0,139.0,3.0,283.0,646.0,39.0,841.0,329.0,1214.0,352.0,0.0,79.0,72.0,97.0,40.0,172.0,0.0,2.0,78.0,98.0,3.0,2778.0,3190.0,3.0,66.0,1187.0,27.0,486.0,163.0,5244.0,0.0,29.0,1.0,2.0,181.0,628.0,108.0,23.0,26.0,12.0,1184.0,294.0,146.0,4.0,2.0,2016-10-23,,2016-42,0.5924600530961941,0.9199999999999999, +235,235,0.71,113.0,8.0,186.0,1.0,209.0,208.0,96.0,116.0,141.0,364.0,0.0,147.0,55.0,5.0,1313.0,165.0,109.0,52.0,213.0,0.0,0.0,0.0,112.0,25.0,2616.0,25.0,1234.0,36.0,500.0,3.0,1.0,31.0,1451.0,175.0,821.0,70.0,124.0,107.0,99.0,199.0,288.0,36.0,2.0,0.0,90.0,51.0,54.0,1921.0,4.0,405.0,44.0,1892.0,56.0,107.0,75.0,311.0,1105.0,29.0,122.0,1.0,560.0,216.0,34.0,442.0,13.0,2.0,16.0,105.0,360.0,409.0,82.0,968.0,475.0,945.0,18.0,54.0,36.0,652.0,86.0,4.0,13.0,19.0,79.0,194.0,161.0,283.0,1035.0,82.0,0.0,110.0,520.0,1.0,1828.0,2897.0,4440.0,226.0,484.0,98.0,148.0,60.0,142.0,183.0,863.0,1062.0,19.0,95.0,119.0,41.0,44.0,158.0,1658.0,50.0,6.0,1598.0,287.0,3192.0,78.0,566.0,7.0,49.0,53.0,11.0,13.0,9.0,3.0,659.0,60.0,82.0,228.0,17.0,27.0,1670.0,55.0,3.0,0.0,223.0,188.0,1234.0,11.0,91.0,234.0,2.0,1.0,699.0,2844.0,417.0,31.0,150.0,63.0,1935.0,153.0,303.0,67.0,92.0,261.0,779.0,118.0,137.0,165.0,5.0,1338.0,318.0,186.0,0.0,2595.0,0.0,2.0,0.0,0.0,2617.0,1944.0,1354.0,1516.0,24.0,0.0,373.0,11.0,227.0,253.0,28.0,174.0,1329.0,76.0,77.0,52.0,171.0,185.0,80.0,4154.0,425.0,25.0,82.0,568.0,750.0,228.0,548.0,11.0,25.0,576.0,312.0,354.0,356.0,0.0,56.0,0.0,0.0,438.0,2037.0,180.0,306.0,48.0,0.0,69.0,222.0,337.0,8346897.0,47.0,160.0,111.0,20.0,7.0,2186.0,954.0,143.0,10.0,2672.0,126.0,146.0,15.0,87.0,953.0,349.0,125.0,159.0,171.0,126.0,772.0,738.0,1000.0,228.0,1156.0,853.0,275.0,128.0,2667.0,35.0,326.0,619.0,91.0,612.0,144.0,252.0,112.0,359.0,393.0,2.0,910.0,20.0,885.0,0.0,0.0,588.0,19.0,729.0,918.0,0.0,229.0,173.0,0.0,3.0,62.0,52.0,764.0,315.0,28.0,170.0,15.0,157.0,21.0,30.0,77.0,28.0,342.0,106.0,48.0,3.0,101.0,33.0,112.0,67.0,177.0,306.0,0.0,3040.0,139.0,142.0,1093.0,1042.0,67.0,0.0,251.0,4.0,530.0,18.0,54.0,162.0,0.0,36.0,4.0,342.0,0.0,717.0,60.0,2490.0,28.0,477.0,63.0,36.0,26.0,521.0,141.0,60.0,355.0,368.0,6.0,46.0,5.0,45.0,989.0,2067.0,0.0,910.0,75.0,10.0,54.0,174.0,8.0,362.0,669.0,93.0,1008.0,482.0,1105.0,443.0,0.0,51.0,88.0,61.0,42.0,183.0,0.0,2.0,83.0,129.0,1.0,2833.0,3006.0,19.0,45.0,1947.0,22.0,424.0,124.0,4824.0,1.0,38.0,1.0,1.0,133.0,658.0,103.0,63.0,13.0,15.0,1186.0,289.0,117.0,0.0,1.0,2016-10-30,,2016-43,0.7122257054808472,1.5140000000000002, +236,236,0.81,112.0,5.0,188.0,1.0,237.0,268.0,104.0,135.0,149.0,437.0,0.0,150.0,54.0,7.0,1260.0,173.0,165.0,46.0,254.0,1.0,0.0,1.0,102.0,37.0,1826.0,42.0,932.0,45.0,211.0,0.0,3.0,4.0,1294.0,166.0,885.0,86.0,149.0,139.0,104.0,276.0,271.0,43.0,1.0,2.0,93.0,55.0,76.0,2285.0,6.0,127.0,28.0,1699.0,56.0,149.0,82.0,337.0,1088.0,35.0,156.0,2.0,612.0,258.0,43.0,470.0,24.0,10.0,41.0,91.0,419.0,412.0,104.0,1044.0,499.0,999.0,36.0,2817.0,68.0,625.0,94.0,7.0,10.0,23.0,48.0,209.0,124.0,253.0,905.0,84.0,0.0,137.0,603.0,8.0,1878.0,2658.0,4674.0,227.0,453.0,100.0,152.0,47.0,90.0,190.0,946.0,1012.0,19.0,87.0,139.0,26.0,43.0,166.0,1614.0,29.0,18.0,1402.0,291.0,3087.0,98.0,344.0,14.0,38.0,36.0,16.0,13.0,7.0,5.0,696.0,49.0,98.0,206.0,9.0,28.0,1740.0,61.0,2.0,2.0,244.0,223.0,1332.0,6.0,65.0,256.0,2.0,1.0,693.0,2555.0,400.0,36.0,172.0,55.0,1978.0,264.0,668.0,65.0,85.0,375.0,821.0,93.0,136.0,150.0,8.0,1483.0,269.0,139.0,1.0,2880.0,2.0,1.0,0.0,3.0,2861.0,1986.0,1471.0,1781.0,26.0,0.0,412.0,8.0,229.0,195.0,26.0,229.0,1300.0,65.0,81.0,53.0,205.0,194.0,54.0,1247.0,372.0,26.0,63.0,557.0,789.0,233.0,534.0,4.0,43.0,500.0,222.0,341.0,326.0,0.0,54.0,2.0,1.0,403.0,2052.0,208.0,313.0,77.0,0.0,66.0,185.0,380.0,8334379.0,66.0,168.0,241.0,16.0,5.0,2007.0,796.0,123.0,19.0,2208.0,83.0,102.0,6.0,103.0,546.0,373.0,142.0,129.0,158.0,180.0,746.0,594.0,836.0,221.0,1536.0,876.0,314.0,129.0,2222.0,42.0,270.0,600.0,81.0,651.0,113.0,241.0,111.0,256.0,365.0,2.0,934.0,21.0,912.0,5.0,2.0,593.0,16.0,1129.0,976.0,0.0,259.0,201.0,21.0,9.0,32.0,52.0,782.0,284.0,32.0,193.0,31.0,160.0,22.0,52.0,101.0,33.0,367.0,154.0,29.0,4.0,130.0,28.0,158.0,70.0,237.0,288.0,1.0,3049.0,118.0,88.0,1027.0,912.0,52.0,0.0,234.0,2.0,472.0,12.0,67.0,104.0,0.0,27.0,6.0,377.0,0.0,424.0,83.0,2338.0,28.0,472.0,68.0,51.0,29.0,593.0,157.0,38.0,247.0,394.0,1.0,2562.0,10.0,53.0,874.0,1790.0,0.0,850.0,87.0,14.0,33.0,144.0,8.0,285.0,768.0,33.0,793.0,471.0,639.0,324.0,0.0,44.0,88.0,80.0,65.0,168.0,0.0,5.0,77.0,132.0,2.0,2715.0,2715.0,5.0,57.0,1143.0,27.0,384.0,152.0,4229.0,1.0,19.0,0.0,0.0,144.0,718.0,133.0,33.0,20.0,21.0,1213.0,342.0,125.0,4.0,0.0,2016-11-06,,2016-44,0.8095689222996914,2.382, +237,237,0.98,294.0,9.0,164.0,4.0,309.0,325.0,120.0,183.0,158.0,377.0,5.0,184.0,52.0,9.0,1270.0,226.0,145.0,54.0,281.0,4.0,4.0,5.0,102.0,38.0,1926.0,38.0,1042.0,48.0,140.0,4.0,3.0,6.0,1438.0,270.0,879.0,88.0,131.0,188.0,79.0,289.0,236.0,29.0,7.0,3.0,126.0,33.0,100.0,3331.0,3.0,154.0,23.0,1818.0,65.0,151.0,86.0,343.0,1029.0,41.0,126.0,5.0,604.0,311.0,38.0,673.0,26.0,7.0,37.0,119.0,403.0,426.0,110.0,1112.0,530.0,992.0,30.0,95.0,52.0,586.0,118.0,12.0,15.0,18.0,66.0,195.0,150.0,237.0,973.0,92.0,0.0,125.0,522.0,7.0,1982.0,2657.0,3862.0,252.0,507.0,109.0,159.0,37.0,98.0,206.0,978.0,1190.0,14.0,99.0,156.0,32.0,60.0,214.0,1500.0,54.0,26.0,1583.0,291.0,3183.0,86.0,304.0,17.0,39.0,42.0,18.0,9.0,6.0,5.0,684.0,58.0,68.0,235.0,10.0,24.0,1645.0,92.0,8.0,5.0,273.0,217.0,1133.0,7.0,84.0,256.0,6.0,2.0,696.0,2809.0,439.0,35.0,169.0,58.0,2156.0,174.0,316.0,99.0,103.0,255.0,758.0,131.0,160.0,160.0,5.0,1878.0,279.0,182.0,3.0,3126.0,3.0,1.0,3.0,3.0,2687.0,1713.0,1447.0,1575.0,28.0,0.0,413.0,14.0,324.0,182.0,31.0,197.0,1407.0,53.0,118.0,48.0,212.0,138.0,84.0,784.0,451.0,25.0,99.0,590.0,841.0,354.0,660.0,10.0,41.0,560.0,265.0,407.0,252.0,2.0,59.0,2.0,3.0,374.0,1969.0,208.0,301.0,80.0,3.0,80.0,163.0,325.0,8312346.0,51.0,140.0,140.0,29.0,14.0,2398.0,740.0,152.0,23.0,2546.0,229.0,140.0,4.0,110.0,541.0,398.0,145.0,158.0,176.0,145.0,746.0,650.0,773.0,223.0,1464.0,923.0,338.0,135.0,2042.0,68.0,351.0,656.0,84.0,761.0,151.0,271.0,99.0,332.0,301.0,4.0,916.0,30.0,968.0,4.0,4.0,550.0,17.0,700.0,881.0,0.0,242.0,232.0,6.0,11.0,50.0,73.0,843.0,374.0,40.0,229.0,30.0,190.0,26.0,53.0,90.0,36.0,430.0,128.0,30.0,4.0,151.0,33.0,137.0,76.0,201.0,325.0,3.0,3156.0,156.0,251.0,986.0,1032.0,77.0,1.0,242.0,4.0,435.0,7.0,12.0,170.0,4.0,25.0,4.0,374.0,5.0,496.0,79.0,2271.0,42.0,495.0,62.0,42.0,40.0,549.0,165.0,43.0,269.0,402.0,4.0,218.0,4.0,47.0,861.0,2127.0,0.0,848.0,110.0,15.0,38.0,149.0,9.0,322.0,988.0,25.0,720.0,316.0,655.0,366.0,0.0,90.0,80.0,58.0,60.0,162.0,0.0,5.0,102.0,200.0,2.0,2494.0,3319.0,5.0,48.0,1345.0,26.0,374.0,135.0,4554.0,0.0,26.0,0.0,3.0,177.0,634.0,122.0,49.0,16.0,15.0,1356.0,332.0,186.0,3.0,1.0,2016-11-13,,2016-45,0.9850133021425469,1.452, +238,238,1.25,197.0,15.0,1354.0,3.0,313.0,289.0,167.0,136.0,208.0,400.0,4.0,208.0,72.0,3.0,1366.0,248.0,151.0,48.0,308.0,2.0,1.0,4.0,127.0,39.0,1846.0,33.0,1071.0,35.0,210.0,3.0,2.0,18.0,1514.0,498.0,988.0,81.0,161.0,269.0,152.0,250.0,349.0,31.0,2.0,1.0,148.0,43.0,91.0,48721.0,7.0,102.0,20.0,2528.0,81.0,140.0,86.0,397.0,1094.0,56.0,159.0,2.0,614.0,285.0,47.0,604.0,22.0,5.0,31.0,111.0,471.0,341.0,120.0,1199.0,618.0,1076.0,22.0,62.0,72.0,708.0,110.0,4.0,9.0,30.0,77.0,232.0,118.0,305.0,1044.0,91.0,0.0,108.0,692.0,6.0,2333.0,3014.0,5696.0,264.0,568.0,87.0,272.0,52.0,130.0,207.0,1002.0,1235.0,8.0,93.0,260.0,39.0,78.0,219.0,1354.0,137.0,33.0,1209.0,282.0,3240.0,90.0,347.0,14.0,41.0,61.0,17.0,21.0,15.0,11.0,764.0,71.0,96.0,225.0,24.0,41.0,1671.0,381.0,7.0,8.0,284.0,369.0,1181.0,21.0,113.0,263.0,2.0,4.0,739.0,2920.0,499.0,45.0,241.0,59.0,1662.0,161.0,348.0,60.0,92.0,324.0,847.0,95.0,173.0,202.0,4.0,2031.0,337.0,178.0,24.0,3291.0,1.0,1.0,1.0,2.0,2621.0,3119.0,1440.0,1777.0,41.0,0.0,475.0,15.0,267.0,214.0,33.0,289.0,1318.0,80.0,96.0,40.0,252.0,192.0,106.0,760.0,448.0,32.0,85.0,591.0,790.0,290.0,694.0,12.0,44.0,415.0,232.0,421.0,260.0,3.0,63.0,5.0,2.0,401.0,2110.0,224.0,336.0,61.0,1.0,134.0,201.0,353.0,8311232.0,52.0,151.0,141.0,25.0,15.0,2834.0,1400.0,126.0,15.0,2645.0,505.0,136.0,12.0,118.0,637.0,430.0,110.0,201.0,207.0,154.0,823.0,800.0,875.0,245.0,1673.0,974.0,321.0,85.0,1999.0,51.0,324.0,666.0,88.0,728.0,171.0,257.0,118.0,344.0,394.0,2.0,912.0,50.0,919.0,7.0,2.0,580.0,32.0,803.0,932.0,0.0,239.0,189.0,3.0,9.0,58.0,81.0,850.0,382.0,40.0,216.0,32.0,260.0,33.0,77.0,108.0,41.0,457.0,146.0,46.0,5.0,120.0,38.0,250.0,77.0,276.0,343.0,2.0,3323.0,153.0,112.0,1105.0,1170.0,94.0,3.0,258.0,3.0,511.0,17.0,37.0,151.0,2.0,37.0,3.0,365.0,2.0,406.0,69.0,2797.0,36.0,509.0,45.0,59.0,21.0,688.0,156.0,49.0,280.0,402.0,3.0,176.0,18.0,44.0,1124.0,2511.0,0.0,1011.0,106.0,13.0,47.0,595.0,9.0,312.0,922.0,33.0,947.0,539.0,764.0,443.0,0.0,55.0,85.0,83.0,64.0,161.0,0.0,2.0,94.0,262.0,1.0,2779.0,3479.0,8.0,64.0,1573.0,27.0,447.0,132.0,4839.0,1.0,29.0,1.0,4.0,157.0,659.0,121.0,58.0,16.0,18.0,1465.0,311.0,162.0,3.0,2.0,2016-11-20,,2016-46,1.255633133667585,2.6500000000000004, +239,239,1.58,139.0,9.0,232.0,1.0,243.0,340.0,147.0,106.0,182.0,419.0,4.0,226.0,73.0,5.0,1335.0,199.0,172.0,60.0,351.0,0.0,0.0,0.0,101.0,49.0,1886.0,47.0,1044.0,38.0,479.0,3.0,1.0,18.0,1507.0,211.0,905.0,74.0,152.0,172.0,132.0,248.0,280.0,70.0,4.0,0.0,162.0,39.0,111.0,10338.0,1.0,113.0,30.0,2270.0,86.0,162.0,94.0,375.0,1150.0,62.0,137.0,2.0,668.0,290.0,41.0,564.0,14.0,6.0,33.0,147.0,410.0,422.0,109.0,1072.0,608.0,1033.0,35.0,55.0,70.0,658.0,127.0,8.0,12.0,30.0,62.0,222.0,152.0,296.0,1000.0,98.0,0.0,130.0,588.0,0.0,1994.0,3428.0,5423.0,322.0,617.0,99.0,202.0,51.0,148.0,181.0,1041.0,1397.0,15.0,68.0,288.0,36.0,64.0,213.0,1480.0,87.0,28.0,1026.0,256.0,3526.0,118.0,414.0,9.0,40.0,54.0,11.0,20.0,15.0,10.0,791.0,63.0,104.0,250.0,13.0,45.0,1709.0,87.0,3.0,2.0,273.0,182.0,1102.0,12.0,85.0,237.0,0.0,1.0,882.0,2959.0,464.0,52.0,195.0,58.0,1679.0,152.0,355.0,53.0,82.0,266.0,894.0,128.0,195.0,165.0,5.0,1370.0,307.0,187.0,0.0,3213.0,0.0,0.0,0.0,0.0,2574.0,1848.0,1703.0,2034.0,38.0,0.0,494.0,16.0,283.0,201.0,27.0,220.0,1376.0,139.0,104.0,77.0,232.0,194.0,68.0,759.0,477.0,16.0,76.0,618.0,764.0,319.0,685.0,9.0,39.0,1307.0,243.0,343.0,261.0,5.0,58.0,0.0,0.0,361.0,2496.0,220.0,281.0,77.0,0.0,88.0,280.0,369.0,8297854.0,44.0,152.0,143.0,23.0,8.0,2319.0,585.0,145.0,14.0,3008.0,434.0,173.0,3.0,99.0,559.0,365.0,136.0,173.0,199.0,160.0,839.0,604.0,838.0,324.0,1874.0,977.0,385.0,103.0,1869.0,51.0,334.0,703.0,77.0,780.0,147.0,239.0,156.0,289.0,392.0,1.0,966.0,55.0,927.0,4.0,3.0,591.0,90.0,960.0,907.0,0.0,363.0,237.0,8.0,8.0,40.0,101.0,808.0,513.0,27.0,239.0,51.0,228.0,24.0,63.0,90.0,54.0,647.0,140.0,50.0,2.0,163.0,31.0,153.0,72.0,279.0,366.0,1.0,3058.0,140.0,207.0,1004.0,1043.0,77.0,2.0,258.0,4.0,482.0,11.0,24.0,277.0,0.0,37.0,1.0,368.0,1.0,416.0,94.0,3144.0,39.0,516.0,68.0,41.0,42.0,742.0,168.0,59.0,281.0,440.0,2.0,73.0,12.0,58.0,2285.0,3779.0,0.0,1317.0,88.0,12.0,33.0,418.0,16.0,403.0,735.0,63.0,1503.0,383.0,860.0,639.0,0.0,85.0,140.0,175.0,62.0,246.0,0.0,6.0,125.0,223.0,3.0,2439.0,3419.0,21.0,84.0,1089.0,43.0,366.0,162.0,7567.0,0.0,30.0,0.0,2.0,135.0,621.0,134.0,57.0,20.0,21.0,1381.0,325.0,123.0,1.0,1.0,2016-11-27,,2016-47,1.5774533675873155,2.7860000000000005, +240,240,2.0,182.0,15.0,224.0,0.0,245.0,295.0,200.0,86.0,180.0,392.0,0.0,170.0,53.0,1.0,1263.0,244.0,148.0,52.0,359.0,0.0,1.0,1.0,144.0,42.0,1999.0,32.0,1052.0,33.0,223.0,1.0,0.0,13.0,1274.0,222.0,1180.0,67.0,140.0,239.0,137.0,259.0,272.0,74.0,2.0,1.0,162.0,35.0,78.0,2668.0,6.0,127.0,39.0,2207.0,73.0,141.0,78.0,394.0,1098.0,41.0,253.0,0.0,622.0,278.0,50.0,681.0,22.0,5.0,28.0,136.0,406.0,418.0,85.0,1021.0,469.0,897.0,18.0,183.0,82.0,583.0,102.0,11.0,16.0,24.0,53.0,300.0,98.0,299.0,978.0,103.0,0.0,148.0,515.0,1.0,1939.0,3099.0,4414.0,281.0,562.0,94.0,256.0,30.0,170.0,192.0,1041.0,1307.0,18.0,66.0,180.0,46.0,74.0,202.0,1429.0,59.0,20.0,818.0,368.0,3738.0,110.0,448.0,11.0,39.0,48.0,18.0,14.0,16.0,7.0,922.0,46.0,207.0,229.0,9.0,22.0,1531.0,92.0,5.0,4.0,270.0,186.0,1062.0,18.0,115.0,227.0,0.0,0.0,820.0,2849.0,432.0,31.0,126.0,66.0,1569.0,177.0,319.0,62.0,104.0,295.0,895.0,92.0,180.0,157.0,3.0,1851.0,325.0,141.0,0.0,2792.0,0.0,0.0,0.0,2.0,2219.0,2286.0,1456.0,1465.0,38.0,0.0,530.0,17.0,310.0,195.0,31.0,240.0,1280.0,435.0,119.0,105.0,207.0,204.0,84.0,815.0,435.0,32.0,68.0,517.0,731.0,264.0,619.0,5.0,33.0,1208.0,242.0,333.0,210.0,4.0,67.0,1.0,0.0,330.0,1943.0,227.0,288.0,58.0,0.0,74.0,184.0,353.0,8100386.0,50.0,136.0,151.0,12.0,8.0,2066.0,605.0,180.0,17.0,2493.0,291.0,136.0,16.0,69.0,555.0,371.0,104.0,174.0,159.0,143.0,767.0,541.0,870.0,477.0,1272.0,952.0,316.0,114.0,2015.0,61.0,250.0,890.0,58.0,753.0,115.0,167.0,172.0,302.0,318.0,3.0,970.0,48.0,950.0,1.0,1.0,629.0,49.0,956.0,909.0,0.0,231.0,202.0,7.0,8.0,50.0,149.0,770.0,617.0,33.0,246.0,32.0,266.0,16.0,40.0,84.0,33.0,868.0,118.0,39.0,1.0,117.0,34.0,144.0,66.0,312.0,372.0,3.0,2996.0,152.0,198.0,994.0,1053.0,62.0,1.0,297.0,5.0,531.0,10.0,25.0,255.0,9.0,36.0,3.0,373.0,0.0,366.0,79.0,2599.0,32.0,516.0,67.0,60.0,37.0,562.0,152.0,80.0,222.0,388.0,0.0,144.0,6.0,38.0,1581.0,2979.0,0.0,1030.0,97.0,16.0,37.0,224.0,12.0,381.0,574.0,56.0,1103.0,346.0,758.0,411.0,0.0,81.0,91.0,135.0,54.0,201.0,0.0,3.0,96.0,146.0,1.0,2341.0,3553.0,17.0,58.0,1077.0,46.0,342.0,142.0,4787.0,3.0,35.0,2.0,2.0,199.0,602.0,147.0,100.0,29.0,22.0,1414.0,308.0,143.0,1.0,0.0,2016-12-04,,2016-48,2.0030750683095837,1.7640000000000002, +241,241,2.52,138.0,16.0,183.0,1.0,215.0,210.0,183.0,100.0,179.0,359.0,1.0,207.0,64.0,5.0,1263.0,213.0,145.0,61.0,364.0,0.0,1.0,3.0,91.0,42.0,2563.0,53.0,886.0,49.0,178.0,2.0,1.0,11.0,1235.0,262.0,1245.0,69.0,143.0,216.0,82.0,288.0,445.0,53.0,4.0,0.0,118.0,54.0,73.0,2112.0,3.0,149.0,19.0,1752.0,79.0,130.0,84.0,315.0,1153.0,40.0,133.0,3.0,589.0,466.0,57.0,3579.0,31.0,1.0,30.0,111.0,352.0,414.0,83.0,966.0,498.0,815.0,24.0,100.0,60.0,560.0,143.0,5.0,19.0,28.0,65.0,228.0,98.0,293.0,948.0,94.0,0.0,120.0,442.0,2.0,1788.0,2580.0,3693.0,305.0,428.0,82.0,237.0,38.0,159.0,198.0,1039.0,1131.0,12.0,75.0,144.0,32.0,82.0,190.0,1450.0,33.0,12.0,887.0,309.0,4222.0,78.0,397.0,19.0,43.0,37.0,19.0,12.0,25.0,6.0,1090.0,62.0,145.0,412.0,2.0,34.0,1518.0,99.0,2.0,4.0,265.0,155.0,1006.0,8.0,143.0,266.0,1.0,2.0,624.0,2371.0,349.0,40.0,112.0,41.0,1614.0,153.0,303.0,58.0,106.0,287.0,920.0,121.0,153.0,143.0,5.0,1900.0,280.0,124.0,3.0,2798.0,0.0,0.0,1.0,2.0,2424.0,2224.0,1405.0,1464.0,19.0,0.0,568.0,11.0,249.0,206.0,16.0,180.0,1095.0,57.0,91.0,66.0,263.0,144.0,102.0,688.0,424.0,26.0,69.0,599.0,741.0,209.0,510.0,6.0,29.0,866.0,206.0,280.0,193.0,1.0,41.0,3.0,4.0,272.0,1939.0,171.0,281.0,65.0,0.0,102.0,213.0,288.0,7785196.0,54.0,143.0,102.0,17.0,8.0,1686.0,400.0,155.0,14.0,3197.0,246.0,127.0,17.0,136.0,465.0,345.0,108.0,137.0,197.0,110.0,713.0,593.0,805.0,421.0,1166.0,1147.0,333.0,106.0,2098.0,52.0,217.0,589.0,63.0,643.0,120.0,125.0,145.0,261.0,368.0,2.0,775.0,28.0,961.0,7.0,2.0,558.0,27.0,666.0,943.0,0.0,187.0,210.0,6.0,10.0,58.0,120.0,752.0,582.0,54.0,257.0,46.0,294.0,30.0,48.0,84.0,47.0,724.0,151.0,54.0,5.0,160.0,36.0,155.0,55.0,263.0,352.0,3.0,2958.0,181.0,138.0,1101.0,780.0,119.0,2.0,235.0,12.0,480.0,14.0,19.0,212.0,3.0,35.0,2.0,353.0,0.0,284.0,73.0,2244.0,35.0,488.0,43.0,54.0,36.0,557.0,185.0,58.0,183.0,367.0,3.0,117.0,4.0,43.0,976.0,2199.0,0.0,867.0,97.0,10.0,39.0,145.0,12.0,315.0,449.0,21.0,791.0,356.0,622.0,323.0,0.0,57.0,90.0,110.0,50.0,218.0,0.0,1.0,100.0,107.0,1.0,2261.0,3075.0,16.0,64.0,943.0,48.0,289.0,106.0,4137.0,1.0,28.0,0.0,1.0,143.0,576.0,130.0,46.0,33.0,13.0,1518.0,317.0,121.0,1.0,0.0,2016-12-11,,2016-49,2.500051824980412,2.34, +242,242,4.31,182.0,22.0,246.0,3.0,259.0,290.0,117.0,111.0,221.0,387.0,2.0,160.0,61.0,5.0,1408.0,256.0,176.0,58.0,365.0,2.0,3.0,2.0,115.0,64.0,4395.0,32.0,984.0,35.0,222.0,3.0,5.0,6.0,1556.0,230.0,1085.0,66.0,177.0,227.0,116.0,259.0,370.0,66.0,1.0,0.0,143.0,37.0,74.0,2376.0,4.0,124.0,21.0,1939.0,66.0,128.0,70.0,327.0,1526.0,46.0,142.0,5.0,590.0,776.0,60.0,848.0,20.0,20.0,43.0,135.0,408.0,424.0,93.0,1115.0,603.0,1057.0,24.0,66.0,68.0,672.0,118.0,8.0,19.0,36.0,82.0,323.0,121.0,232.0,1082.0,84.0,0.0,133.0,526.0,8.0,2393.0,3096.0,5002.0,333.0,634.0,115.0,350.0,36.0,101.0,220.0,1056.0,1241.0,20.0,92.0,164.0,35.0,57.0,195.0,1626.0,59.0,27.0,1566.0,244.0,5207.0,107.0,314.0,24.0,37.0,74.0,27.0,18.0,17.0,12.0,859.0,50.0,108.0,478.0,10.0,35.0,1552.0,98.0,18.0,2.0,330.0,194.0,1037.0,15.0,131.0,252.0,3.0,4.0,745.0,2934.0,554.0,49.0,150.0,88.0,1568.0,148.0,339.0,54.0,134.0,256.0,1016.0,115.0,193.0,127.0,8.0,2496.0,281.0,168.0,3.0,3357.0,1.0,1.0,2.0,2.0,2975.0,1927.0,1535.0,1575.0,38.0,0.0,623.0,14.0,254.0,238.0,20.0,184.0,1271.0,56.0,148.0,59.0,255.0,145.0,119.0,812.0,469.0,39.0,76.0,571.0,870.0,254.0,562.0,10.0,43.0,1434.0,225.0,358.0,203.0,3.0,55.0,1.0,1.0,287.0,2217.0,210.0,292.0,70.0,0.0,127.0,297.0,336.0,8024246.0,58.0,155.0,129.0,25.0,6.0,1971.0,566.0,179.0,15.0,2532.0,164.0,147.0,8.0,142.0,573.0,358.0,145.0,178.0,277.0,139.0,705.0,705.0,1109.0,368.0,1264.0,963.0,287.0,144.0,2581.0,56.0,298.0,748.0,107.0,1142.0,122.0,276.0,212.0,349.0,432.0,8.0,863.0,39.0,1086.0,4.0,3.0,499.0,42.0,709.0,807.0,0.0,253.0,236.0,9.0,5.0,62.0,162.0,800.0,684.0,33.0,299.0,70.0,353.0,26.0,51.0,122.0,56.0,836.0,149.0,48.0,4.0,212.0,50.0,170.0,69.0,279.0,407.0,4.0,3206.0,182.0,125.0,1084.0,1007.0,122.0,2.0,295.0,14.0,499.0,15.0,19.0,226.0,2.0,35.0,6.0,365.0,2.0,428.0,88.0,2665.0,49.0,709.0,61.0,65.0,47.0,679.0,225.0,69.0,218.0,393.0,1.0,105.0,10.0,31.0,1079.0,2364.0,0.0,783.0,87.0,29.0,26.0,164.0,17.0,381.0,424.0,26.0,795.0,370.0,638.0,415.0,0.0,66.0,78.0,127.0,74.0,178.0,0.0,5.0,117.0,129.0,3.0,2230.0,3668.0,14.0,96.0,1145.0,43.0,263.0,113.0,4553.0,0.0,53.0,1.0,0.0,179.0,648.0,180.0,34.0,32.0,14.0,1475.0,336.0,163.0,1.0,0.0,2016-12-18,,2016-50,4.304616887776815,6.498000000000001, +243,243,7.24,175.0,26.0,150.0,4.0,199.0,348.0,64.0,69.0,132.0,304.0,3.0,187.0,65.0,8.0,1095.0,159.0,116.0,47.0,178.0,3.0,5.0,3.0,66.0,45.0,4809.0,25.0,876.0,26.0,203.0,3.0,4.0,12.0,1167.0,139.0,828.0,60.0,126.0,214.0,79.0,193.0,216.0,45.0,6.0,1.0,67.0,25.0,63.0,1726.0,6.0,112.0,17.0,1499.0,59.0,141.0,72.0,287.0,1082.0,22.0,96.0,8.0,448.0,258.0,40.0,1024.0,33.0,9.0,33.0,99.0,331.0,322.0,86.0,817.0,378.0,707.0,20.0,159.0,64.0,518.0,89.0,10.0,14.0,25.0,59.0,223.0,95.0,200.0,922.0,80.0,0.0,76.0,365.0,7.0,1858.0,2326.0,3639.0,219.0,353.0,75.0,223.0,31.0,110.0,127.0,1014.0,1086.0,19.0,53.0,184.0,39.0,45.0,138.0,1679.0,47.0,26.0,1795.0,245.0,6202.0,80.0,169.0,25.0,50.0,52.0,22.0,14.0,20.0,8.0,694.0,106.0,94.0,288.0,5.0,32.0,1035.0,69.0,9.0,4.0,209.0,111.0,788.0,19.0,69.0,193.0,3.0,3.0,532.0,1964.0,331.0,44.0,177.0,58.0,1493.0,179.0,417.0,33.0,94.0,199.0,935.0,63.0,85.0,96.0,5.0,1786.0,201.0,136.0,2.0,2635.0,4.0,3.0,4.0,4.0,2797.0,2549.0,1351.0,1175.0,31.0,0.0,445.0,8.0,267.0,132.0,22.0,159.0,950.0,61.0,99.0,52.0,194.0,136.0,130.0,546.0,363.0,30.0,60.0,433.0,565.0,195.0,493.0,7.0,25.0,954.0,177.0,280.0,161.0,4.0,40.0,3.0,4.0,241.0,1667.0,200.0,271.0,42.0,3.0,91.0,161.0,229.0,7860731.0,54.0,198.0,104.0,24.0,12.0,1391.0,504.0,195.0,17.0,2313.0,150.0,105.0,12.0,104.0,425.0,289.0,120.0,106.0,170.0,96.0,605.0,548.0,699.0,238.0,1253.0,689.0,267.0,159.0,2759.0,49.0,144.0,527.0,56.0,608.0,96.0,98.0,105.0,273.0,381.0,6.0,682.0,32.0,974.0,5.0,3.0,414.0,16.0,577.0,713.0,0.0,190.0,174.0,25.0,7.0,48.0,137.0,592.0,585.0,32.0,175.0,34.0,221.0,20.0,52.0,47.0,21.0,710.0,88.0,38.0,3.0,118.0,34.0,136.0,47.0,191.0,269.0,4.0,2918.0,119.0,153.0,1031.0,757.0,88.0,4.0,208.0,10.0,439.0,15.0,23.0,105.0,6.0,51.0,7.0,223.0,5.0,239.0,66.0,2069.0,33.0,461.0,52.0,44.0,15.0,453.0,183.0,32.0,212.0,315.0,3.0,81.0,9.0,35.0,705.0,1725.0,0.0,548.0,99.0,12.0,30.0,117.0,15.0,238.0,296.0,30.0,604.0,262.0,530.0,270.0,0.0,39.0,65.0,57.0,40.0,130.0,0.0,6.0,93.0,118.0,4.0,1844.0,2473.0,12.0,64.0,921.0,33.0,220.0,105.0,3417.0,3.0,25.0,3.0,3.0,137.0,563.0,203.0,34.0,21.0,25.0,1399.0,291.0,137.0,4.0,4.0,2016-12-25,,2016-51,7.240000447414283,5.914000000000001, +244,244,9.57,97.0,5.0,133.0,0.0,257.0,294.0,96.0,59.0,130.0,228.0,1.0,144.0,97.0,2.0,907.0,136.0,106.0,37.0,187.0,0.0,0.0,7.0,61.0,34.0,5909.0,32.0,1075.0,29.0,186.0,0.0,0.0,8.0,969.0,150.0,590.0,46.0,127.0,182.0,70.0,163.0,203.0,55.0,5.0,5.0,49.0,25.0,67.0,6942.0,4.0,208.0,18.0,1250.0,51.0,79.0,59.0,324.0,1192.0,29.0,98.0,4.0,463.0,206.0,28.0,846.0,14.0,3.0,21.0,121.0,250.0,217.0,89.0,682.0,366.0,571.0,13.0,103.0,47.0,455.0,71.0,6.0,24.0,33.0,44.0,217.0,115.0,183.0,793.0,68.0,55.0,85.0,380.0,0.0,1547.0,1967.0,3867.0,163.0,364.0,69.0,231.0,36.0,100.0,109.0,986.0,1433.0,9.0,46.0,117.0,51.0,34.0,102.0,1617.0,38.0,15.0,851.0,219.0,8214.0,55.0,119.0,16.0,38.0,19.0,18.0,20.0,8.0,4.0,680.0,38.0,58.0,417.0,8.0,21.0,1270.0,83.0,6.0,3.0,187.0,153.0,818.0,9.0,55.0,154.0,0.0,1.0,566.0,1857.0,291.0,22.0,244.0,88.0,1944.0,212.0,571.0,31.0,74.0,182.0,914.0,53.0,78.0,113.0,0.0,2158.0,172.0,120.0,0.0,2365.0,1.0,0.0,0.0,0.0,2870.0,1883.0,1049.0,1530.0,20.0,0.0,369.0,13.0,200.0,161.0,19.0,113.0,917.0,55.0,97.0,42.0,209.0,198.0,107.0,454.0,672.0,21.0,49.0,372.0,484.0,173.0,447.0,10.0,14.0,2058.0,157.0,270.0,172.0,2.0,31.0,0.0,0.0,201.0,1510.0,179.0,243.0,40.0,0.0,61.0,109.0,190.0,6944406.0,46.0,206.0,149.0,7.0,8.0,1013.0,683.0,123.0,11.0,2414.0,134.0,96.0,5.0,93.0,654.0,313.0,96.0,91.0,128.0,93.0,486.0,405.0,380.0,277.0,1193.0,612.0,254.0,170.0,3441.0,33.0,139.0,336.0,56.0,362.0,64.0,128.0,82.0,246.0,456.0,5.0,562.0,29.0,1124.0,1.0,0.0,433.0,142.0,431.0,644.0,0.0,185.0,156.0,12.0,6.0,40.0,367.0,521.0,2133.0,31.0,172.0,30.0,147.0,21.0,85.0,65.0,25.0,2006.0,76.0,34.0,1.0,93.0,25.0,92.0,38.0,189.0,291.0,0.0,2843.0,93.0,151.0,878.0,622.0,70.0,0.0,194.0,5.0,306.0,15.0,16.0,182.0,0.0,29.0,0.0,243.0,0.0,190.0,48.0,2274.0,52.0,434.0,29.0,45.0,33.0,528.0,133.0,42.0,197.0,260.0,4.0,89.0,11.0,34.0,1833.0,2633.0,0.0,1025.0,93.0,20.0,24.0,226.0,12.0,260.0,448.0,22.0,1085.0,316.0,588.0,435.0,0.0,53.0,77.0,250.0,60.0,128.0,0.0,2.0,80.0,238.0,1.0,1819.0,2844.0,7.0,145.0,1272.0,26.0,175.0,75.0,2905.0,0.0,22.0,1.0,1.0,131.0,583.0,186.0,40.0,14.0,15.0,1451.0,191.0,95.0,0.0,0.0,2017-01-01,,2016-52,9.573386777998444,8.38, +245,245,9.09,199.0,15.0,238.0,1.0,323.0,275.0,108.0,75.0,192.0,433.0,3.0,222.0,83.0,9.0,1318.0,225.0,166.0,59.0,332.0,0.0,0.0,3.0,104.0,46.0,6923.0,36.0,1215.0,62.0,244.0,1.0,0.0,8.0,1198.0,207.0,928.0,75.0,172.0,546.0,110.0,245.0,365.0,84.0,3.0,2.0,119.0,34.0,100.0,3004.0,3.0,219.0,28.0,1690.0,77.0,91.0,62.0,354.0,1355.0,40.0,152.0,2.0,604.0,194.0,35.0,564.0,13.0,4.0,34.0,133.0,317.0,332.0,105.0,900.0,606.0,862.0,17.0,69.0,65.0,675.0,91.0,6.0,20.0,44.0,86.0,267.0,149.0,235.0,1018.0,106.0,47.0,146.0,657.0,2.0,1880.0,2815.0,4466.0,249.0,448.0,104.0,396.0,45.0,792.0,141.0,1442.0,1660.0,12.0,86.0,183.0,46.0,47.0,217.0,1907.0,63.0,16.0,2310.0,369.0,8515.0,80.0,290.0,20.0,51.0,82.0,50.0,22.0,114.0,16.0,1074.0,44.0,113.0,148.0,11.0,22.0,1698.0,91.0,7.0,1.0,329.0,188.0,1199.0,20.0,69.8,259.0,0.0,1.0,699.0,2804.0,449.0,25.0,343.0,136.0,2549.0,277.0,784.0,56.0,111.0,273.0,1496.0,86.0,116.0,111.0,4.0,5698.0,267.0,159.0,0.0,3044.0,0.0,0.0,0.0,0.0,3474.0,2444.0,1750.0,1541.0,18.0,0.0,401.0,19.0,309.0,199.0,26.0,166.0,1129.0,132.0,126.0,57.0,326.0,233.0,89.0,779.0,738.0,19.0,98.0,535.0,691.0,270.0,585.0,12.0,26.0,2831.0,184.0,337.0,185.0,1.0,59.0,1.0,3.0,271.0,2226.0,237.0,330.0,61.0,0.0,70.2,241.0,342.0,8094548.0,63.0,307.0,199.0,21.0,11.0,1442.0,593.0,237.0,16.0,3549.0,168.0,154.0,11.0,93.0,711.0,378.0,107.0,143.0,180.0,171.0,665.0,534.0,741.0,385.0,14899.0,1043.0,257.0,202.0,3811.0,40.5,258.0,616.0,70.0,691.0,106.0,163.0,103.6,290.0,541.0,3.0,746.0,34.0,1461.0,1.0,2.0,539.0,226.0,742.0,906.0,0.0,256.0,188.0,26.0,11.0,50.0,464.0,689.0,1745.0,31.0,331.0,47.0,268.0,23.0,89.0,93.0,82.0,2449.0,137.0,31.0,6.0,186.0,39.0,150.0,57.0,341.0,405.0,2.0,3764.0,180.0,208.0,1181.0,775.0,181.0,0.0,239.0,5.0,462.0,13.0,17.0,395.0,2.0,40.0,4.0,363.0,0.0,363.0,80.0,3311.0,38.0,797.0,51.0,55.0,25.0,689.0,212.0,59.0,226.0,395.0,1.0,117.0,14.0,24.0,3393.0,5577.0,68.0,1919.0,118.0,16.0,36.0,414.0,27.0,395.0,446.0,49.0,1939.0,407.0,883.0,743.0,0.0,100.0,105.0,589.0,81.0,274.0,0.0,11.0,122.0,482.0,0.0,1975.25,3857.0,18.0,143.0,1021.0,30.0,205.0,164.0,5835.0,3.0,47.0,0.0,1.0,193.0,630.0,198.0,47.0,23.0,12.0,1835.0,342.0,166.0,0.0,0.0,2017-01-08,,2017-1,9.0948936433659,8.414, +246,246,8.7,291.0,14.0,242.0,3.0,317.0,309.0,131.0,94.0,231.0,428.0,3.0,197.0,100.0,8.0,1488.0,298.0,180.0,53.0,330.0,2.0,3.0,2.0,116.0,64.0,5346.0,36.0,1275.0,44.0,183.0,1.0,3.0,10.0,1554.0,254.0,1097.0,96.0,208.0,500.0,173.0,303.0,332.0,96.0,4.0,3.0,168.0,57.0,104.0,3463.0,3.0,191.0,31.0,2051.0,70.0,150.0,78.0,405.0,1217.0,38.0,127.0,1.0,662.0,257.0,52.0,603.0,24.0,12.0,37.0,133.0,489.0,433.0,132.0,1130.0,672.0,1123.0,11.0,122.0,93.0,734.0,117.0,11.0,12.0,44.0,99.0,2243.0,114.0,280.0,1220.0,133.0,103.0,189.0,666.0,3.0,2317.0,3200.0,5093.0,341.0,574.0,108.0,417.0,66.0,873.0,215.0,1491.0,1539.0,29.0,90.0,202.0,60.0,76.0,289.0,1803.0,59.0,15.0,1024.0,353.0,6660.0,105.0,149.0,23.0,50.0,52.0,46.0,12.0,32.0,5.0,1232.0,49.0,117.0,197.0,13.0,41.0,1722.0,99.0,12.0,2.0,448.0,206.0,1132.0,19.0,84.6,336.0,3.0,1.0,802.0,3121.0,547.0,53.0,360.0,143.0,2332.0,252.0,646.0,64.0,157.0,336.0,1306.0,100.0,185.0,129.0,4.0,4866.0,272.0,200.0,3.0,3385.0,1.0,3.0,1.0,1.0,3372.0,2336.0,1911.0,1467.0,55.0,0.0,485.0,24.0,344.0,342.0,30.0,231.0,1261.0,106.0,171.0,76.0,327.0,192.0,83.0,928.0,527.0,37.0,102.0,618.0,939.0,345.0,603.0,10.0,67.0,1869.0,231.0,419.0,213.0,4.0,67.0,1.0,1.0,311.0,2383.0,262.0,351.0,65.0,3.0,79.4,291.0,415.0,8349886.0,74.0,230.0,170.0,34.0,17.0,1659.0,463.0,244.0,30.0,2600.0,125.0,173.0,12.0,153.0,640.0,364.0,116.0,206.0,236.0,188.0,740.0,716.0,948.0,317.0,2008.0,1225.0,303.0,147.0,2808.0,48.0,336.0,722.0,86.0,783.0,136.0,196.0,125.2,289.0,488.0,8.0,802.0,48.0,1369.0,4.0,1.0,532.0,72.0,930.0,959.0,0.0,238.0,240.0,7.0,10.0,49.0,326.0,870.0,1167.0,29.0,372.0,47.0,360.0,20.0,77.0,103.0,95.0,1775.0,198.0,53.0,5.0,186.0,56.0,215.0,83.0,390.0,458.0,2.0,3479.0,216.0,197.0,1074.0,966.0,194.0,1.0,308.0,7.0,571.0,19.0,13.0,298.0,2.0,41.0,4.0,453.0,1.0,454.0,77.0,3798.0,45.0,752.0,54.0,65.0,46.0,688.0,220.0,84.0,256.0,395.0,3.0,126.0,13.0,47.0,1769.0,4127.0,84.0,1317.0,137.0,22.0,36.0,320.0,22.0,406.0,328.0,43.0,1400.0,386.0,1017.0,557.0,23.0,94.0,84.0,298.0,66.0,226.0,14.0,7.0,146.0,333.0,1.0,2131.5,4360.0,10.0,56.0,949.0,39.0,247.0,154.0,8205.0,2.0,45.0,1.0,2.0,206.0,719.0,170.0,56.0,20.0,11.0,1439.0,384.0,211.0,2.0,2.0,2017-01-15,,2017-2,8.697298328020771,6.784000000000001, +247,247,7.61,267.0,26.0,273.0,2.0,312.0,329.0,142.0,122.0,261.0,526.0,0.0,228.0,116.0,4.0,1504.0,272.0,184.0,50.0,340.0,2.0,2.0,2.0,122.0,50.0,4250.0,37.0,1188.0,46.0,217.0,7.0,3.0,22.0,1477.0,216.0,1205.0,77.0,221.0,506.0,201.0,302.0,304.0,77.0,3.0,3.0,161.0,41.0,124.0,2453.0,9.0,211.0,29.0,2002.0,96.0,138.0,74.0,398.0,1359.0,46.0,124.0,3.0,755.0,376.0,55.0,830.0,16.0,7.0,46.0,165.0,402.0,480.0,134.0,1152.0,737.0,1052.0,25.0,100.0,86.0,720.0,152.0,11.0,12.0,30.0,97.0,279.0,130.0,338.0,1137.0,133.0,80.0,215.0,776.0,3.0,2293.0,3074.0,5181.0,364.0,604.0,115.0,316.0,33.0,203.0,222.0,1442.0,1478.0,19.0,105.0,196.0,74.0,61.0,380.0,1617.0,62.0,21.0,1127.0,316.0,5858.0,117.0,115.0,9.0,27.0,82.0,24.0,17.0,25.0,10.0,1287.0,79.0,125.0,243.0,9.0,28.0,1661.0,107.0,12.0,3.0,395.0,188.0,1090.0,11.0,99.4,273.0,0.0,3.0,825.0,3657.0,591.0,48.0,222.0,77.0,2478.0,227.0,524.0,88.0,151.0,296.0,1434.0,106.0,267.0,148.0,3.0,9839.0,302.0,216.0,2.0,3613.0,1.0,0.0,0.0,1.0,3849.0,4859.0,2036.0,1447.0,42.0,0.0,508.0,15.0,354.0,223.0,33.0,215.0,1437.0,120.0,207.0,63.0,405.0,222.0,95.0,905.0,478.0,21.0,115.0,612.0,936.0,308.0,682.0,11.0,35.0,1024.0,270.0,392.0,213.0,0.0,50.0,3.0,2.0,335.0,2427.0,289.0,400.0,74.0,1.0,88.6,296.0,428.0,8373316.0,57.0,219.0,143.0,25.0,10.0,1536.0,485.0,222.0,17.0,2311.0,126.0,150.0,7.0,92.0,665.0,371.0,152.0,201.0,258.0,171.0,763.0,801.0,1089.0,302.0,1487.0,1464.0,341.0,102.0,2197.0,55.5,334.0,697.0,79.0,798.0,195.0,204.0,146.8,329.0,438.0,1.0,823.0,40.0,1327.0,1.0,2.0,572.0,35.0,3626.0,975.0,0.0,221.0,253.0,9.0,8.0,54.0,212.0,948.0,952.0,27.0,357.0,50.0,384.0,32.0,84.0,91.0,74.0,1231.0,218.0,42.0,1.0,223.0,51.0,186.0,83.0,447.0,489.0,0.0,3581.0,189.0,260.0,1183.0,1080.0,189.0,0.0,325.0,1.0,535.0,12.0,16.0,291.0,0.0,68.0,4.0,499.0,3.0,481.0,99.0,3058.0,45.0,1012.0,49.0,61.0,30.0,712.0,303.0,78.0,261.0,490.0,1.0,124.0,11.0,27.0,1154.0,3088.0,39.0,987.0,138.0,8.0,39.0,242.0,24.0,379.0,234.0,33.0,1146.0,376.0,875.0,460.0,6.0,87.0,125.0,174.0,79.0,224.0,2.0,10.0,119.0,173.0,2.0,2287.75,4291.0,23.0,75.0,829.0,53.0,241.0,167.0,5399.0,0.0,60.0,1.0,0.0,169.0,644.0,151.0,34.0,31.0,16.0,1471.0,403.0,201.0,2.0,2.0,2017-01-22,,2017-3,7.611421457930259,6.336, +248,248,6.61,275.0,7.0,283.0,1.0,352.0,270.0,139.0,106.0,248.0,943.0,1.0,207.0,70.0,7.0,1556.0,333.0,226.0,57.0,326.0,0.0,1.0,2.0,114.0,57.0,4045.0,32.0,1338.0,57.0,201.0,4.0,1.0,12.0,1601.0,215.0,1137.0,102.0,252.0,380.0,160.0,271.0,431.0,59.0,10.0,5.0,123.0,39.0,103.0,5207.0,7.0,156.0,35.0,2976.0,128.0,160.0,99.0,398.0,1360.0,48.0,119.0,0.0,1151.0,377.0,56.0,822.0,20.0,17.0,44.0,166.0,405.0,528.0,126.0,1152.0,749.0,1061.0,14.0,60.0,94.0,668.0,112.0,9.0,12.0,23.0,79.0,278.0,90.0,281.0,1827.0,122.0,66.0,153.0,579.0,3.0,2412.0,3421.0,5297.0,346.0,606.0,101.0,498.0,27.0,208.0,242.0,1440.0,1486.0,14.0,108.0,215.0,86.0,58.0,274.0,1551.0,42.0,20.0,1234.0,320.0,5474.0,114.0,176.0,11.0,62.0,74.0,57.0,12.0,30.0,1.0,1797.0,36.0,121.0,558.0,13.0,44.0,1578.0,115.0,14.0,1.0,432.0,244.0,1189.0,13.0,114.2,316.0,5.0,1.0,847.0,3174.0,618.0,44.0,194.0,72.0,3733.0,287.0,449.0,104.0,157.0,310.0,1463.0,122.0,247.0,160.0,2.0,13595.0,366.0,234.0,0.0,3897.0,0.0,0.0,1.0,1.0,3870.0,4303.0,1718.0,1746.0,34.0,0.0,472.0,18.0,384.0,194.0,42.0,235.0,1411.0,143.0,225.0,66.0,385.0,154.0,98.0,1024.0,516.0,33.0,130.0,650.0,954.0,298.0,744.0,7.0,31.0,689.0,253.0,411.0,164.0,0.0,91.0,0.0,0.0,297.0,2359.0,318.0,445.0,91.0,0.0,97.8,330.0,402.0,8148470.0,71.0,221.0,165.0,20.0,17.0,1526.0,552.0,202.0,21.0,2236.0,178.0,157.0,15.0,156.0,681.0,412.0,134.0,254.0,267.0,192.0,797.0,806.0,980.0,379.0,1492.0,1231.0,341.0,136.0,2104.0,63.0,312.0,703.0,80.0,746.0,154.0,209.0,168.4,352.0,431.0,3.0,896.0,36.0,1263.0,0.0,0.0,545.0,33.0,1474.0,921.0,0.0,217.0,310.0,14.0,9.0,60.0,132.0,891.0,692.0,34.0,357.0,53.0,368.0,34.0,59.0,93.0,40.0,932.0,195.0,50.0,4.0,203.0,57.0,151.0,86.0,411.0,434.0,0.0,3678.0,166.0,215.0,1138.0,1023.0,202.0,0.0,345.0,3.0,617.0,7.0,26.0,302.0,1.0,63.0,1.0,446.0,5.0,532.0,110.0,3137.0,53.0,2673.0,50.0,56.0,42.0,677.0,256.0,77.0,297.0,458.0,4.0,109.0,11.0,46.0,1276.0,3268.0,43.0,1027.0,163.0,30.0,30.0,219.0,20.0,410.0,235.0,44.0,1250.0,365.0,943.0,494.0,1.0,80.0,132.0,127.0,84.0,207.0,5.0,4.0,120.0,133.0,2.0,2444.0,4323.0,27.0,54.0,803.0,45.0,240.0,103.0,5577.0,0.0,238.0,3.0,0.0,168.0,615.0,172.0,32.0,32.0,30.0,1399.0,418.0,208.0,0.0,1.0,2017-01-29,,2017-4,6.609214889185336,5.064, +249,249,5.64,270.0,10.0,271.0,2.0,327.0,325.0,164.0,109.0,259.0,693.0,1.0,249.0,73.0,5.0,1659.0,339.0,226.0,48.0,329.0,1.0,0.0,6.0,136.0,53.0,4191.0,33.0,1321.0,43.0,268.0,4.0,2.0,6.0,1584.0,246.0,1216.0,107.0,263.0,263.0,142.0,316.0,378.0,52.0,3.0,5.0,157.0,38.0,98.0,5450.0,2.0,130.0,25.0,2365.0,112.0,186.0,113.0,445.0,1413.0,48.0,184.0,1.0,774.0,355.0,66.0,778.0,13.0,10.0,35.0,186.0,443.0,607.0,125.0,1306.0,850.0,1285.0,25.0,64.0,110.0,763.0,134.0,6.0,21.0,32.0,98.0,263.0,144.0,356.0,1185.0,133.0,115.0,200.0,671.0,1.0,3151.0,3764.0,7837.0,449.0,740.0,136.0,290.0,30.0,2051.0,231.0,1461.0,1828.0,21.0,101.0,247.0,89.0,64.0,275.0,1859.0,64.0,24.0,1072.0,334.0,5343.0,137.0,166.0,22.0,57.0,94.0,17.0,10.0,39.0,13.0,1595.0,62.0,168.0,510.0,10.0,56.0,2119.0,123.0,8.0,3.0,475.0,209.0,1410.0,38.0,129.0,360.0,1.0,3.0,753.0,3525.0,665.0,51.0,212.0,92.0,2269.0,260.0,431.0,107.0,200.0,311.0,1069.0,117.0,204.0,196.0,5.0,2533.0,349.0,207.0,3.0,3910.0,0.0,3.0,1.0,3.0,4151.0,3330.0,1918.0,1752.0,34.0,0.0,551.0,14.0,384.0,217.0,28.0,262.0,1499.0,153.0,231.0,69.0,373.0,229.0,65.0,969.0,428.0,37.0,121.0,731.0,1101.0,327.0,790.0,2.0,40.0,626.0,299.0,570.0,182.0,6.0,80.0,2.0,3.0,340.0,2783.0,376.0,507.0,88.0,2.0,107.0,344.0,437.0,8287568.0,81.0,178.0,165.0,24.0,12.0,1596.0,545.0,218.0,29.0,2458.0,134.0,177.0,6.0,174.0,676.0,378.0,132.0,232.0,305.0,211.0,840.0,924.0,1046.0,297.0,1674.0,1486.0,437.0,116.0,2358.0,70.5,364.0,816.0,95.0,824.0,176.0,238.0,190.0,368.0,441.0,7.0,1004.0,28.0,1274.0,0.0,1.0,609.0,26.0,931.0,958.0,0.0,235.0,351.0,14.0,6.0,59.0,138.0,1123.0,666.0,35.0,501.0,86.0,485.0,30.0,77.0,109.0,59.0,956.0,203.0,50.0,2.0,190.0,41.0,182.0,86.0,552.0,674.0,3.0,3694.0,264.0,167.0,1221.0,1069.0,207.0,1.0,398.0,2.0,656.0,9.0,30.0,363.0,1.0,58.0,3.0,470.0,2.0,494.0,112.0,2974.0,44.0,1409.0,56.0,90.0,51.0,740.0,275.0,89.0,318.0,514.0,4.0,1433.0,16.0,40.0,974.0,2997.0,76.0,1020.0,189.0,13.0,59.0,270.0,16.0,405.0,194.0,37.0,1186.0,355.0,867.0,480.0,3.0,79.0,152.0,81.0,103.0,207.0,2.0,14.0,115.0,123.0,3.0,2613.0,4346.0,24.0,66.0,1086.0,34.0,218.0,143.0,5865.0,1.0,139.0,1.0,2.0,187.0,623.0,185.0,34.0,40.0,27.0,1577.0,480.0,193.0,1.0,1.0,2017-02-05,,2017-5,5.643708385965532,6.038, +250,250,4.25,265.0,14.0,307.0,3.0,386.0,341.0,156.0,109.0,318.0,543.0,5.0,238.0,93.0,0.0,1642.0,302.0,200.0,55.0,340.0,1.0,1.0,1.0,154.0,72.0,3785.0,40.0,1307.0,51.0,175.0,8.0,2.0,10.0,1692.0,237.0,1230.0,87.0,1109.0,196.0,152.0,396.0,393.0,45.0,4.0,3.0,142.0,42.0,95.0,4016.0,5.0,172.0,28.0,2379.0,107.0,193.0,97.0,517.0,1294.0,66.0,148.0,3.0,756.0,307.0,46.0,773.0,21.0,5.0,39.0,244.0,444.0,569.0,129.0,1265.0,800.0,1128.0,22.0,96.0,119.0,751.0,133.0,6.0,14.0,27.0,100.0,262.0,145.0,431.0,1398.0,143.0,87.0,194.0,777.0,3.0,2989.0,3688.0,5599.0,405.0,656.0,122.0,218.0,36.0,263.0,205.0,1358.0,1674.0,11.0,108.0,241.0,117.0,97.0,368.0,2017.0,104.0,44.0,980.0,316.0,4548.0,129.0,167.0,15.0,57.0,88.0,24.0,17.0,20.0,1.0,1376.0,92.0,171.0,444.0,10.0,48.0,2215.0,106.0,4.0,2.0,408.0,211.0,1190.0,11.0,121.0,347.0,1.0,1.0,726.0,3629.0,688.0,69.0,187.0,60.0,1915.0,202.0,372.0,104.0,141.0,382.0,1090.0,158.0,206.0,186.0,9.0,1796.0,415.0,231.0,3.0,3718.0,1.0,1.0,3.0,1.0,4339.0,2628.0,1902.0,1809.0,45.0,0.0,569.0,20.0,396.0,221.0,26.0,229.0,1598.0,89.0,229.0,61.0,400.0,182.0,107.0,975.0,518.0,48.0,153.0,712.0,1086.0,404.0,719.0,6.0,54.0,744.0,296.0,562.0,216.0,7.0,80.0,3.0,4.0,338.0,2748.0,373.0,501.0,73.0,4.0,186.0,328.0,452.0,8580591.0,70.0,188.0,197.0,32.0,17.0,1583.0,702.0,188.0,23.0,2527.0,183.0,237.0,13.0,120.0,692.0,370.0,128.0,170.0,240.0,191.0,863.0,915.0,1107.0,331.0,1505.0,1313.0,420.0,114.0,2184.0,78.0,374.0,760.0,98.0,847.0,175.0,190.0,220.0,395.0,488.0,2.0,978.0,39.0,1258.0,2.0,2.0,638.0,32.0,1060.0,1024.0,0.0,243.0,352.0,9.0,11.0,73.0,136.0,1077.0,655.0,42.0,426.0,65.0,454.0,31.0,64.0,117.0,59.0,1014.0,184.0,38.0,12.0,193.0,47.0,145.0,100.0,548.0,524.0,0.0,3418.0,229.0,133.0,1217.0,1179.0,231.0,0.0,485.0,6.0,641.0,11.0,42.0,362.0,4.0,53.0,2.0,534.0,0.0,510.0,130.0,3113.0,50.0,1049.0,60.0,72.0,29.0,775.0,323.0,84.0,259.0,504.0,3.0,124.0,18.0,50.0,1095.0,3019.0,74.0,1029.0,168.0,25.0,31.0,276.0,22.0,409.0,176.0,30.0,1152.0,517.0,925.0,540.0,3.0,87.0,156.0,111.0,100.0,220.0,5.0,12.0,115.0,120.0,4.0,2397.0,4303.0,26.0,52.0,1080.0,55.0,231.0,199.0,6263.0,1.0,125.0,1.0,2.0,197.0,673.0,159.0,54.0,26.0,28.0,1526.0,443.0,144.0,2.0,0.0,2017-02-12,,2017-6,4.24949677910572,4.228000000000001, +251,251,3.19,278.0,17.0,286.0,0.0,310.0,333.0,142.0,123.0,323.0,470.0,2.0,259.0,84.0,4.0,1817.0,277.0,208.0,61.0,379.0,4.0,3.0,5.0,137.0,67.0,3206.0,52.0,1236.0,57.0,175.0,0.0,0.0,11.0,1753.0,217.0,1354.0,97.0,314.0,185.0,169.0,336.0,302.0,78.0,3.0,7.0,137.0,57.0,149.0,2503.0,8.0,162.0,27.0,2241.0,99.0,154.0,144.0,446.0,1353.0,45.0,125.0,2.0,712.0,352.0,57.0,683.0,16.0,6.0,39.0,155.0,517.0,570.0,149.0,1286.0,662.0,1164.0,34.0,101.0,108.0,748.0,162.0,16.0,30.0,25.0,97.0,280.0,130.0,355.0,1308.0,118.0,79.0,208.0,586.0,3.0,3438.0,3740.0,6576.0,360.0,679.0,117.0,176.0,33.0,213.0,212.0,1301.0,1552.0,27.0,94.0,237.0,60.0,71.0,312.0,1633.0,68.0,19.0,1024.0,326.0,4073.0,116.0,209.0,14.0,49.0,129.0,26.0,19.0,22.0,11.0,1295.0,88.0,150.0,372.0,16.0,65.0,1894.0,128.0,15.0,1.0,405.0,262.0,1286.0,11.0,146.0,339.0,1.0,3.0,710.0,3536.0,659.0,72.0,138.0,41.0,1920.0,220.0,346.0,90.0,127.0,306.0,1070.0,173.0,192.0,172.0,1.0,1546.0,348.0,213.0,2.0,3632.0,0.0,0.0,0.0,0.0,4042.0,2114.0,2084.0,1783.0,35.0,78.0,619.0,28.0,382.0,231.0,30.0,261.0,1461.0,67.0,217.0,60.0,381.0,358.0,106.0,866.0,554.0,28.0,157.0,674.0,1053.0,387.0,667.0,7.0,52.0,625.0,225.0,546.0,210.0,1.0,101.0,4.0,0.0,354.0,2531.0,317.0,382.0,77.0,0.0,191.0,292.0,458.0,8394138.0,68.0,170.0,152.0,32.0,21.0,1454.0,919.0,189.0,28.0,2258.0,141.0,310.0,10.0,99.0,633.0,451.0,147.0,239.0,229.0,206.0,860.0,959.0,1060.0,370.0,1786.0,1138.0,391.0,111.0,2251.0,87.0,250.0,681.0,75.0,740.0,200.0,156.0,225.0,373.0,490.0,9.0,924.0,44.0,1253.0,5.0,0.0,651.0,23.0,899.0,952.0,0.0,234.0,302.0,11.0,3.0,64.0,138.0,1075.0,652.0,48.0,367.0,96.0,498.0,30.0,50.0,116.0,67.0,863.0,175.0,49.0,5.0,182.0,46.0,226.0,87.0,437.0,501.0,1.0,3164.0,188.0,123.0,1281.0,1155.0,116.0,0.0,400.0,5.0,546.0,14.0,53.0,342.0,2.0,53.0,2.0,525.0,2.0,411.0,109.0,3074.0,43.0,841.0,88.0,105.0,27.0,756.0,307.0,93.0,281.0,486.0,4.0,97.0,10.0,42.0,1054.0,2757.0,99.0,1073.0,169.0,15.0,52.0,213.0,14.0,389.0,163.0,40.0,1170.0,374.0,905.0,523.0,5.0,97.0,137.0,92.0,86.0,211.0,6.0,16.0,126.0,88.0,2.0,2450.0,4620.0,29.0,53.0,1151.0,71.0,262.0,174.0,5449.0,1.0,83.0,1.0,2.0,179.0,672.0,158.0,66.0,60.0,24.0,1437.0,434.0,168.0,1.0,0.0,2017-02-19,,2017-7,3.1961610149727235,5.0280000000000005, +252,252,2.64,260.0,14.0,213.0,0.0,309.0,260.0,131.0,134.0,325.0,446.0,1.0,285.0,43.0,4.0,1843.0,300.0,189.0,81.0,354.0,0.0,0.0,4.0,138.0,44.0,3051.0,43.0,1272.0,30.0,205.0,3.0,1.0,8.0,1609.0,178.0,1042.0,101.0,191.0,166.0,158.0,352.0,319.0,58.0,1.0,0.0,152.0,42.0,87.0,2007.0,5.0,122.0,28.0,2075.0,87.0,153.0,102.0,414.0,1242.0,53.0,118.0,3.0,670.0,275.0,34.0,607.0,8.0,52.0,103.0,159.0,466.0,601.0,139.0,1389.0,639.0,1043.0,27.0,59.0,111.0,750.0,158.0,11.0,14.0,30.0,95.0,392.0,123.0,331.0,1291.0,96.0,86.0,157.0,516.0,2.0,3340.0,3508.0,5202.0,370.0,620.0,101.0,158.0,34.0,191.0,176.0,1384.0,1515.0,12.0,86.0,222.0,76.0,62.0,284.0,1832.0,58.0,20.0,965.0,293.0,3707.0,130.0,154.0,12.0,30.0,120.0,22.0,17.0,53.0,6.0,1261.0,51.0,145.0,309.0,6.0,43.0,1801.0,95.0,11.0,6.0,410.0,233.0,1171.0,12.0,112.0,361.0,2.0,0.0,716.0,3316.0,657.0,61.0,144.0,37.0,1832.0,156.0,319.0,115.0,110.0,280.0,961.0,101.0,192.0,115.0,7.0,1332.0,373.0,210.0,0.0,3444.0,0.0,3.0,1.0,1.0,3926.0,2261.0,1581.0,1519.0,40.0,92.0,595.0,7.0,315.0,198.0,45.0,245.0,1396.0,52.0,204.0,72.0,342.0,213.0,95.0,917.0,507.0,27.0,95.0,683.0,978.0,332.0,639.0,7.0,38.0,662.0,251.0,516.0,170.0,3.0,90.0,1.0,0.0,337.0,2412.0,275.0,377.0,56.0,2.0,160.0,359.0,421.0,8248262.0,79.0,145.0,98.0,32.0,15.0,1450.0,592.0,179.0,19.0,2165.0,114.0,233.0,17.0,109.0,708.0,391.0,160.0,225.0,255.0,196.0,761.0,858.0,1075.0,266.0,1587.0,1043.0,347.0,110.0,2166.0,74.0,271.0,627.0,64.0,695.0,157.0,175.0,195.0,375.0,429.0,9.0,908.0,50.0,1219.0,1.0,1.0,600.0,24.0,912.0,963.0,0.0,232.0,324.0,6.0,8.0,59.0,175.0,992.0,638.0,33.0,263.0,79.0,424.0,34.0,53.0,95.0,54.0,787.0,170.0,41.0,7.0,145.0,34.0,224.0,96.0,351.0,352.0,1.0,3166.0,149.0,110.0,1124.0,1125.0,108.0,1.0,417.0,4.0,534.0,8.0,41.0,327.0,1.0,42.0,3.0,440.0,1.0,413.0,96.0,2982.0,35.0,657.0,59.0,61.0,35.0,732.0,306.0,117.0,284.0,464.0,1.0,67.0,4.0,42.0,995.0,2693.0,61.0,1215.0,131.0,14.0,31.0,195.0,18.0,418.0,147.0,49.0,1119.0,329.0,867.0,436.0,1.0,74.0,131.0,97.0,66.0,202.0,0.0,3.0,102.0,77.0,5.0,2491.0,4128.0,34.0,56.0,774.0,39.0,285.0,146.0,5082.0,1.0,112.0,3.0,4.0,192.0,702.0,157.0,41.0,23.0,27.0,1413.0,353.0,192.0,1.0,1.0,2017-02-26,,2017-8,2.64220455385297,4.646, +253,253,2.19,211.0,18.0,188.0,0.0,333.0,310.0,82.0,133.0,286.0,411.0,3.0,229.0,71.0,3.0,1821.0,226.0,124.0,72.0,230.0,0.0,5.0,3.0,101.0,39.0,2519.0,44.0,1199.0,45.0,215.0,4.0,4.0,8.0,1556.0,165.0,856.0,89.0,165.0,172.0,110.0,306.0,259.0,35.0,3.0,0.0,125.0,48.0,119.0,1809.0,1.0,149.0,24.0,2575.0,96.0,209.0,114.0,399.0,1241.0,28.0,176.0,3.0,588.0,325.0,45.0,1337.0,10.0,10.0,29.0,146.0,419.0,485.0,155.0,1219.0,527.0,1058.0,26.0,65.0,101.0,701.0,119.0,7.0,11.0,25.0,79.0,221.0,148.0,263.0,1035.0,84.0,79.0,127.0,498.0,2.0,3441.0,3312.0,4242.0,295.0,615.0,99.0,240.0,35.0,191.0,132.0,1359.0,1287.0,11.0,89.0,210.0,40.0,72.0,164.0,2152.0,59.0,18.0,1042.0,358.0,3427.0,101.0,148.0,13.0,39.0,88.0,11.0,15.0,76.0,10.0,1297.0,61.0,128.0,300.0,12.0,25.0,1965.0,73.0,16.0,2.0,266.0,232.0,1075.0,14.0,68.0,269.0,2.0,3.0,679.0,2777.0,433.0,60.0,122.0,47.0,1835.0,111.0,264.0,88.0,84.0,260.0,967.0,122.0,166.0,144.0,4.0,1839.0,432.0,226.0,1.0,3150.0,1.0,0.0,0.0,2.0,4117.0,2209.0,1879.0,1460.0,36.0,81.0,604.0,5.0,277.0,203.0,28.0,455.0,1310.0,68.0,184.0,79.0,341.0,229.0,82.0,622.0,455.0,30.0,105.0,611.0,818.0,271.0,632.0,5.0,40.0,580.0,232.0,499.0,165.0,7.0,88.0,1.0,0.0,327.0,2344.0,274.0,368.0,71.0,1.0,108.0,223.0,307.0,8236633.0,51.0,94.0,86.0,28.0,5.0,1301.0,794.0,200.0,24.0,2170.0,131.0,285.0,8.0,89.0,646.0,344.0,120.0,208.0,306.0,159.0,765.0,840.0,966.0,271.0,1645.0,1141.0,377.0,121.0,2076.0,48.0,272.0,592.0,81.0,698.0,160.0,211.0,138.0,367.0,443.0,2.0,866.0,29.0,1181.0,1.0,1.0,678.0,18.0,827.0,915.0,0.0,216.0,308.0,9.0,4.0,48.0,96.0,780.0,399.0,26.0,193.0,43.0,246.0,23.0,64.0,74.0,28.0,487.0,128.0,47.0,6.0,186.0,45.0,161.0,95.0,233.0,308.0,5.0,3039.0,134.0,86.0,965.0,956.0,100.0,1.0,405.0,6.0,499.0,15.0,57.0,338.0,3.0,53.0,5.0,367.0,4.0,351.0,69.0,2601.0,48.0,590.0,45.0,63.0,49.0,671.0,193.0,62.0,258.0,435.0,0.0,58.0,16.0,49.0,882.0,2070.0,65.0,943.0,159.0,22.0,23.0,155.0,12.0,383.0,101.0,16.0,793.0,333.0,892.0,419.0,5.0,78.0,212.0,78.0,51.0,280.0,1.0,9.0,93.0,53.0,3.0,2431.0,3546.0,26.0,52.0,863.0,36.0,364.0,151.0,5077.0,0.0,50.0,3.0,1.0,188.0,571.0,158.0,46.0,14.0,24.0,1232.0,341.0,150.0,1.0,2.0,2017-03-05,,2017-9,2.1942315992168737,1.7439999999999998, +254,254,1.76,245.0,10.0,220.0,2.0,376.0,281.0,86.0,132.0,244.0,372.0,2.0,260.0,65.0,3.0,1453.0,239.0,143.0,61.0,228.0,0.0,4.0,3.0,100.0,48.0,2188.0,37.0,1103.0,44.0,201.0,2.0,2.0,9.0,1400.0,147.0,876.0,91.0,166.0,171.0,104.0,285.0,333.0,30.0,2.0,0.0,118.0,38.0,119.0,1710.0,7.0,596.0,35.0,2351.0,83.0,149.0,108.0,390.0,1224.0,37.0,154.0,2.0,719.0,289.0,38.0,641.0,27.0,17.0,18.0,159.0,450.0,331.0,137.0,1090.0,517.0,945.0,20.0,58.0,78.0,620.0,116.0,7.0,18.0,12.0,76.0,189.0,138.0,223.0,979.0,95.0,80.0,98.0,571.0,3.0,3683.0,3304.0,4895.0,274.0,530.0,133.0,166.0,20.0,109.0,138.0,1718.0,1234.0,21.0,87.0,189.0,45.0,66.0,197.0,2065.0,68.0,22.0,1292.0,326.0,3393.0,105.0,134.0,19.0,36.0,84.0,16.0,14.0,67.0,13.0,1049.0,122.0,121.0,328.0,9.0,34.0,1661.0,56.0,3.0,7.0,277.0,186.0,1074.0,12.0,65.0,235.0,2.0,0.0,619.0,2809.0,449.0,78.0,108.0,43.0,1871.0,117.0,285.0,89.0,102.0,233.0,859.0,109.0,194.0,141.0,6.0,1449.0,431.0,245.0,1.0,2837.0,1.0,1.0,0.0,0.0,3777.0,2030.0,2258.0,1431.0,43.0,84.0,501.0,14.0,318.0,179.0,28.0,232.0,1336.0,43.0,190.0,92.0,314.0,195.0,76.0,921.0,464.0,20.0,76.0,613.0,769.0,282.0,556.0,4.0,58.0,507.0,238.0,487.0,574.0,1.0,72.0,0.0,1.0,292.0,2424.0,246.0,340.0,92.0,2.0,95.0,197.0,225.0,7981681.0,53.0,115.0,93.0,14.0,15.0,1340.0,654.0,176.0,20.0,1777.0,115.0,362.0,5.0,88.0,651.0,368.0,121.0,176.0,200.0,167.0,714.0,723.0,790.0,253.0,1377.0,964.0,322.0,105.0,1927.0,53.0,220.0,589.0,91.0,683.0,155.0,187.0,131.0,323.0,437.0,2.0,790.0,32.0,1142.0,3.0,0.0,593.0,20.0,1071.0,910.0,0.0,204.0,269.0,7.0,8.0,54.0,90.0,829.0,393.0,17.0,216.0,51.0,252.0,13.0,65.0,82.0,45.0,495.0,191.0,51.0,7.0,146.0,27.0,171.0,73.0,261.0,310.0,3.0,3118.0,123.0,83.0,1054.0,1039.0,64.0,0.0,346.0,3.0,480.0,25.0,61.0,221.0,2.0,50.0,13.0,355.0,2.0,370.0,88.0,2789.0,51.0,565.0,42.0,50.0,32.0,769.0,172.0,49.0,205.0,426.0,5.0,284.0,20.0,35.0,751.0,1836.0,52.0,1008.0,139.0,12.0,31.0,161.0,11.0,396.0,62.0,27.0,701.0,339.0,852.0,368.0,1.0,50.0,169.0,73.0,62.0,166.0,1.0,7.0,108.0,44.0,1.0,2245.0,3331.0,26.0,48.0,771.0,26.0,208.0,181.0,5050.0,0.0,40.0,0.0,0.0,159.0,701.0,121.0,73.0,22.0,27.0,1161.0,303.0,153.0,2.0,2.0,2017-03-12,,2017-10,1.742882580968108,1.292, +255,255,1.48,234.0,10.0,222.0,1.0,341.0,295.0,77.0,90.0,246.0,377.0,0.0,259.0,70.0,8.0,1436.0,243.0,176.0,39.0,291.0,2.0,0.0,7.0,274.0,54.0,2214.0,35.0,1059.0,43.0,203.0,3.0,0.0,9.0,1318.0,230.0,859.0,78.0,136.0,151.0,123.0,335.0,333.0,42.0,3.0,3.0,153.0,31.0,91.0,2862.0,2.0,150.0,39.0,1984.0,77.0,217.0,122.0,415.0,1257.0,39.0,160.0,0.0,677.0,322.0,39.0,668.0,8.0,6.0,20.0,129.0,369.0,369.0,149.0,1210.0,486.0,916.0,35.0,59.0,87.0,651.0,132.0,15.0,16.0,19.0,100.0,345.0,178.0,180.0,999.0,104.0,56.0,107.0,650.0,9.0,3528.0,3932.0,9176.0,260.0,579.0,119.0,161.0,32.0,80.0,160.0,1622.0,1641.0,15.0,74.0,236.0,38.0,93.0,159.0,1859.0,61.0,18.0,1117.0,338.0,3414.0,116.0,282.0,9.0,40.0,69.0,16.0,16.0,30.0,6.0,1163.0,74.0,142.0,248.0,8.0,28.0,1777.0,80.0,3.0,3.0,221.0,183.0,1157.0,19.0,70.0,280.0,1.0,5.0,572.0,2809.0,477.0,61.0,122.0,45.0,1690.0,166.0,266.0,85.0,93.0,377.0,992.0,96.0,171.0,137.0,9.0,1434.0,361.0,240.0,1.0,2801.0,3.0,1.0,1.0,4.0,3614.0,2236.0,1957.0,1397.0,26.0,71.0,469.0,13.0,334.0,296.0,29.0,284.0,1426.0,85.0,186.0,85.0,736.0,237.0,69.0,803.0,551.0,19.0,79.0,913.0,831.0,242.0,633.0,5.0,133.0,449.0,225.0,458.0,430.0,0.0,89.0,0.0,0.0,280.0,2663.0,268.0,296.0,95.0,0.0,91.0,242.0,207.0,7952865.0,58.0,103.0,92.0,18.0,8.0,1433.0,521.0,187.0,16.0,3026.0,340.0,459.0,10.0,77.0,708.0,401.0,139.0,180.0,188.0,168.0,731.0,775.0,840.0,301.0,6984.0,1077.0,374.0,98.0,1774.0,49.0,220.0,605.0,62.0,614.0,188.0,168.0,134.0,358.0,443.0,11.0,767.0,41.0,1088.0,1.0,1.0,561.0,37.0,833.0,1064.0,0.0,194.0,265.0,7.0,6.0,63.0,85.0,815.0,390.0,30.0,285.0,75.0,285.0,19.0,57.0,91.0,61.0,475.0,167.0,76.0,28.0,127.0,44.0,205.0,67.0,221.0,379.0,2.0,3047.0,147.0,73.0,1062.0,907.0,81.0,0.0,476.0,3.0,503.0,18.0,57.0,378.0,1.0,42.0,5.0,380.0,0.0,311.0,75.0,3507.0,43.0,503.0,64.0,53.0,23.0,763.0,158.0,52.0,272.0,495.0,6.0,93.0,10.0,54.0,1232.0,2633.0,60.0,4064.0,150.0,17.0,29.0,180.0,13.0,404.0,84.0,45.0,1091.0,362.0,980.0,678.0,4.0,71.0,1356.0,84.0,106.0,190.0,1.0,9.0,78.0,52.0,0.0,2659.0,3305.0,21.0,48.0,611.0,40.0,234.0,164.0,6088.0,1.0,55.0,1.0,0.0,166.0,743.0,214.0,80.0,14.0,21.0,1196.0,371.0,221.0,2.0,1.0,2017-03-19,,2017-11,1.489086853132065,1.432, +256,256,1.24,181.0,18.0,214.0,0.0,305.0,291.0,98.0,109.0,253.0,436.0,2.0,218.0,58.0,5.0,1388.0,250.0,144.0,42.0,276.0,1.0,1.0,2.0,118.0,32.0,2182.0,43.0,1085.0,61.0,222.0,2.0,4.0,21.0,1393.0,162.0,967.0,83.0,176.0,147.0,114.0,320.0,281.0,57.0,1.0,3.0,182.0,52.0,77.0,2395.0,2.0,120.0,23.0,2691.0,103.0,200.0,165.0,354.0,1337.0,56.0,188.0,1.0,622.0,276.0,42.0,530.0,11.0,8.0,18.0,186.0,364.0,392.0,142.0,1219.0,515.0,956.0,18.0,71.0,86.0,600.0,96.0,49.0,13.0,23.0,95.0,314.0,251.0,238.0,918.0,92.0,89.0,68.0,566.0,1.0,4489.0,3440.0,4518.0,299.0,615.0,100.0,178.0,25.0,155.0,140.0,1181.0,1572.0,13.0,75.0,239.0,31.0,54.0,180.0,1353.0,81.0,26.0,967.0,295.0,3541.0,152.0,345.0,18.0,38.0,101.0,31.0,11.0,16.0,8.0,1288.0,53.0,149.0,274.0,12.0,55.0,1820.0,78.0,5.0,2.0,245.0,237.0,1143.0,15.0,73.0,301.0,0.0,1.0,654.0,2831.0,450.0,50.0,120.0,50.0,2197.0,154.0,254.0,84.0,91.0,259.0,1117.0,105.0,177.0,172.0,7.0,1379.0,370.0,290.0,1.0,2801.0,2.0,3.0,1.0,1.0,4359.0,3032.0,1804.0,1613.0,36.0,82.0,399.0,14.0,313.0,234.0,30.0,250.0,1397.0,134.0,204.0,102.0,520.0,199.0,73.0,1475.0,523.0,14.0,86.0,684.0,817.0,265.0,645.0,7.0,50.0,457.0,209.0,411.0,394.0,2.0,86.0,3.0,0.0,267.0,2689.0,326.0,360.0,80.0,3.0,95.0,235.0,198.0,7876895.0,54.0,116.0,101.0,39.0,13.0,1442.0,568.0,196.0,25.0,2484.0,247.0,318.0,5.0,91.0,572.0,363.0,112.0,214.0,192.0,135.0,727.0,715.0,910.0,319.0,2314.0,967.0,325.0,85.0,1668.0,64.0,277.0,561.0,94.0,627.0,181.0,193.0,130.0,360.0,383.0,4.0,932.0,31.0,1156.0,2.0,3.0,562.0,40.0,790.0,992.0,0.0,216.0,322.0,11.0,7.0,47.0,108.0,847.0,417.0,44.0,232.0,31.0,244.0,21.0,48.0,68.0,30.0,475.0,173.0,65.0,10.0,133.0,32.0,157.0,103.0,261.0,416.0,1.0,3238.0,142.0,70.0,969.0,847.0,81.0,0.0,516.0,7.0,441.0,16.0,63.0,432.0,1.0,46.0,1.0,335.0,1.0,414.0,95.0,3179.0,40.0,643.0,57.0,44.0,18.0,735.0,168.0,44.0,245.0,493.0,5.0,304.0,16.0,40.0,1364.0,2936.0,139.0,4209.0,201.0,24.0,30.0,213.0,19.0,530.0,99.0,47.0,1130.0,385.0,952.0,612.0,3.0,58.0,1114.0,61.0,98.0,233.0,3.0,23.0,111.0,35.0,1.0,2852.0,3221.0,24.0,52.0,783.0,27.0,190.0,131.0,5294.0,2.0,60.0,3.0,1.0,207.0,692.0,150.0,81.0,12.0,7.0,1262.0,316.0,149.0,2.0,1.0,2017-03-26,,2017-12,1.2259946778224045,1.11, +257,257,1.04,197.0,12.0,227.0,2.0,364.0,334.0,113.0,131.0,236.0,365.0,4.0,231.0,66.0,3.0,1372.0,271.0,136.0,42.0,291.0,4.0,2.0,9.0,143.0,52.0,2074.0,48.0,905.0,50.0,206.0,7.0,4.0,13.0,1638.0,1237.0,883.0,70.0,140.0,139.0,109.0,336.0,300.0,35.0,3.0,2.0,129.0,28.0,104.0,2060.0,3.0,155.0,38.0,1971.0,63.0,134.0,78.0,325.0,1300.0,31.0,260.0,2.0,804.0,503.0,50.0,5668.0,54.0,3.0,26.0,217.0,371.0,362.0,147.0,1170.0,511.0,870.0,22.0,200.0,111.0,545.0,120.0,10.0,17.0,30.0,97.0,320.0,230.0,253.0,1019.0,113.0,76.0,92.0,524.0,4.0,5071.0,3485.0,4674.0,346.0,671.0,103.0,148.0,47.0,347.0,152.0,1310.0,1629.0,22.0,82.0,189.0,34.0,45.0,154.0,1447.0,150.0,59.0,1407.0,293.0,3248.0,159.0,200.0,18.0,44.0,76.0,12.0,10.0,16.0,13.0,1046.0,55.0,124.0,209.0,17.0,29.0,1994.0,87.0,5.0,3.0,226.0,181.0,1180.0,9.0,71.0,284.0,2.0,4.0,657.0,2928.0,582.0,51.0,103.0,51.0,1529.0,140.0,240.0,77.0,86.0,257.0,1048.0,92.0,179.0,151.0,10.0,1333.0,361.0,317.0,4.0,2734.0,5.0,1.0,2.0,4.0,2848.0,2027.0,3702.0,1591.0,38.0,101.0,486.0,6.0,302.0,226.0,25.0,279.0,1335.0,135.0,207.0,88.0,601.0,172.0,71.0,803.0,444.0,21.0,91.0,608.0,805.0,215.0,565.0,4.0,45.0,379.0,236.0,419.0,288.0,3.0,87.0,1.0,3.0,282.0,2474.0,230.0,313.0,60.0,3.0,89.0,234.0,224.0,7534516.0,79.0,94.0,95.0,23.0,23.0,1229.0,534.0,195.0,96.0,2658.0,220.0,339.0,18.0,92.0,616.0,389.0,136.0,203.0,231.0,140.0,659.0,742.0,945.0,340.0,1710.0,989.0,379.0,86.0,1600.0,50.0,308.0,848.0,75.0,994.0,178.0,259.0,137.0,335.0,330.0,6.0,734.0,35.0,1111.0,1.0,4.0,577.0,28.0,1574.0,960.0,0.0,196.0,286.0,9.0,7.0,61.0,89.0,850.0,422.0,31.0,277.0,43.0,273.0,20.0,62.0,91.0,46.0,470.0,199.0,71.0,15.0,149.0,27.0,166.0,82.0,229.0,385.0,18.0,2982.0,183.0,91.0,1043.0,813.0,109.0,4.0,421.0,2.0,466.0,16.0,70.0,395.0,1.0,40.0,4.0,409.0,4.0,540.0,80.0,3103.0,34.0,623.0,80.0,44.0,32.0,692.0,308.0,60.0,246.0,474.0,7.0,120.0,11.0,75.0,1198.0,2553.0,147.0,3608.0,176.0,22.0,32.0,172.0,13.0,519.0,101.0,40.0,978.0,326.0,909.0,543.0,5.0,55.0,927.0,60.0,88.0,213.0,2.0,5.0,109.0,35.0,2.0,2673.0,3655.0,21.0,73.0,704.0,55.0,315.0,143.0,5366.0,0.0,51.0,4.0,1.0,158.0,598.0,110.0,75.0,29.0,13.0,1143.0,349.0,168.0,4.0,3.0,2017-04-02,,2017-13,1.0520782487703748,3.442, +258,258,0.87,236.0,9.0,212.0,0.0,318.0,289.0,121.0,121.0,226.0,411.0,2.0,242.0,65.0,5.0,1285.0,259.0,161.0,57.0,283.0,1.0,0.0,5.0,84.0,45.0,1708.0,32.0,821.0,51.0,192.0,2.0,0.0,10.0,1431.0,219.0,821.0,103.0,154.0,140.0,117.0,287.0,353.0,50.0,2.0,2.0,105.0,52.0,104.0,2664.0,4.0,102.0,32.0,1828.0,56.0,181.0,91.0,338.0,1130.0,42.0,194.0,2.0,659.0,275.0,39.0,945.0,18.0,2.0,17.0,166.0,335.0,319.0,160.0,1184.0,623.0,910.0,50.0,65.0,66.0,523.0,106.0,11.0,14.0,28.0,70.0,288.0,253.0,259.0,1081.0,101.0,68.0,90.0,483.0,1.0,4272.0,3113.0,3753.0,363.0,564.0,87.0,170.0,35.0,136.0,128.0,1218.0,1785.0,16.0,95.0,208.0,57.0,69.0,176.0,1506.0,68.0,30.0,1126.0,321.0,3028.0,168.0,259.0,25.0,41.0,74.0,24.0,12.0,10.0,3.0,1079.0,59.0,150.0,215.0,12.0,24.0,1780.0,84.0,9.0,1.0,301.0,170.0,1122.0,50.0,106.0,265.0,0.0,1.0,559.0,2708.0,496.0,75.0,102.0,38.0,1674.0,115.0,228.0,57.0,80.0,255.0,973.0,78.0,149.0,134.0,5.0,1400.0,321.0,307.0,2.0,2552.0,3.0,0.0,1.0,1.0,2227.0,1999.0,1969.0,1434.0,30.0,94.0,407.0,9.0,266.0,206.0,30.0,461.0,1224.0,149.0,189.0,75.0,524.0,162.0,64.0,776.0,478.0,26.0,93.0,765.0,1261.0,232.0,581.0,7.0,40.0,518.0,189.0,284.0,410.0,2.0,74.0,0.0,3.0,275.0,2721.0,260.0,324.0,94.0,2.0,102.0,257.0,199.0,7248629.0,69.0,130.0,121.0,28.0,30.0,1445.0,524.0,155.0,112.0,2557.0,151.0,323.0,6.0,75.0,619.0,312.0,136.0,185.0,200.0,136.0,663.0,697.0,864.0,260.0,1354.0,1087.0,365.0,69.0,1393.0,679.0,435.0,843.0,105.0,1335.0,263.0,358.0,179.0,339.0,328.0,5.0,742.0,53.0,991.0,1.0,1.0,603.0,17.0,852.0,1002.0,0.0,186.0,286.0,11.0,13.0,52.0,63.0,858.0,439.0,36.0,286.0,72.0,362.0,19.0,52.0,90.0,45.0,535.0,222.0,57.0,20.0,109.0,43.0,166.0,80.0,271.0,381.0,5.0,2948.0,177.0,87.0,1072.0,825.0,99.0,0.0,420.0,1.0,414.0,29.0,68.0,343.0,2.0,30.0,9.0,369.0,0.0,471.0,88.0,2811.0,37.0,577.0,58.0,51.0,37.0,770.0,326.0,51.0,185.0,430.0,5.0,90.0,17.0,45.0,1089.0,2496.0,183.0,2211.0,187.0,14.0,96.0,198.0,7.0,460.0,96.0,31.0,939.0,335.0,866.0,461.0,2.0,60.0,611.0,64.0,81.0,195.0,1.0,6.0,93.0,41.0,2.0,2492.0,3298.0,18.0,67.0,773.0,28.0,217.0,144.0,5025.0,2.0,43.0,1.0,2.0,144.0,607.0,109.0,87.0,38.0,28.0,1049.0,339.0,135.0,0.0,1.0,2017-04-09,,2017-14,0.8647803559988834,0.758, +259,259,0.69,159.0,11.0,194.0,2.0,281.0,305.0,110.0,91.0,207.0,341.0,5.0,198.0,49.0,4.0,1428.0,207.0,130.0,50.0,221.0,3.0,2.0,4.0,90.0,42.0,1501.0,30.0,863.0,42.0,174.0,4.0,4.0,7.0,1227.0,161.0,703.0,73.0,112.0,102.0,75.0,262.0,348.0,55.0,5.0,5.0,91.0,31.0,82.0,1771.0,6.0,94.0,29.0,1687.0,56.0,176.0,79.0,309.0,1255.0,47.0,150.0,1.0,607.0,268.0,28.0,528.0,11.0,7.0,21.0,133.0,290.0,287.0,113.0,1010.0,472.0,818.0,30.0,63.0,91.0,492.0,121.0,10.0,17.0,19.0,81.0,268.0,341.0,242.0,934.0,80.0,77.0,73.0,543.0,0.0,3989.0,3043.0,3589.0,310.0,545.0,107.0,153.0,32.0,102.0,116.0,1038.0,1418.0,14.0,69.0,156.0,31.0,47.0,182.0,1481.0,58.0,27.0,768.0,309.0,2747.0,204.0,166.0,25.0,28.0,50.0,20.0,14.0,12.0,7.0,999.0,47.0,104.0,167.0,15.0,25.0,2053.0,80.0,13.0,4.0,258.0,150.0,1114.0,33.0,81.0,234.0,1.0,8.0,509.0,2263.0,446.0,43.0,84.0,49.0,1483.0,442.0,213.0,58.0,67.0,228.0,886.0,104.0,122.0,113.0,5.0,1127.0,277.0,218.0,2.0,2416.0,2.0,3.0,2.0,1.0,3387.0,2291.0,3329.0,1660.0,32.0,67.0,395.0,13.0,236.0,164.0,14.0,201.0,1108.0,121.0,167.0,47.0,366.0,152.0,72.0,763.0,367.0,33.0,76.0,575.0,891.0,199.0,528.0,6.0,38.0,455.0,186.0,402.0,344.0,3.0,81.0,1.0,2.0,206.0,2459.0,258.0,306.0,91.0,2.0,80.0,175.0,189.0,7520079.0,50.0,101.0,105.0,18.0,21.0,1149.0,584.0,167.0,126.0,2092.0,115.0,210.0,9.0,74.0,577.0,408.0,120.0,199.0,203.0,116.0,502.0,631.0,677.0,211.0,1212.0,723.0,365.0,71.0,1287.0,215.0,257.0,625.0,73.0,648.0,139.0,177.0,129.0,298.0,319.0,0.0,645.0,53.0,933.0,0.0,1.0,551.0,14.0,699.0,839.0,0.0,203.0,283.0,14.0,10.0,43.0,55.0,723.0,365.0,48.0,253.0,46.0,364.0,16.0,67.0,70.0,36.0,447.0,177.0,72.0,12.0,144.0,26.0,124.0,102.0,190.0,433.0,1.0,2712.0,165.0,73.0,1222.0,715.0,100.0,0.0,371.0,1.0,367.0,30.0,95.0,254.0,5.0,37.0,1.0,325.0,2.0,305.0,95.0,2861.0,35.0,627.0,52.0,49.0,15.0,580.0,319.0,54.0,199.0,407.0,4.0,73.0,21.0,53.0,896.0,2054.0,152.0,1258.0,121.0,17.0,23.0,162.0,10.0,402.0,66.0,30.0,847.0,368.0,834.0,473.0,8.0,60.0,338.0,32.0,81.0,212.0,5.0,13.0,88.0,25.0,3.0,2358.0,2382.0,16.0,95.0,1062.0,25.0,199.0,128.0,4829.0,0.0,60.0,0.0,2.0,123.0,651.0,92.0,81.0,29.0,22.0,946.0,304.0,109.0,1.0,4.0,2017-04-16,,2017-15,0.699260727312482,0.8, +260,260,0.89,154.0,19.0,362.0,2.0,211.0,619.0,112.0,118.0,239.0,354.0,3.0,224.0,52.0,0.0,1483.0,251.0,169.0,46.0,338.0,2.0,2.0,6.0,156.0,54.0,2168.0,33.0,761.0,41.0,181.0,1.0,1.0,7.0,1348.0,259.0,919.0,81.0,188.0,157.0,86.0,366.0,311.0,47.0,4.0,1.0,149.0,27.0,95.0,2324.0,4.0,108.0,23.0,1758.0,118.0,156.0,92.0,425.0,1124.0,25.0,114.0,4.0,643.0,253.0,17.0,505.0,10.0,7.0,26.0,153.0,313.0,310.0,183.0,1099.0,717.0,1115.0,25.0,57.0,69.0,1167.0,89.0,5.0,16.0,50.0,80.0,167.0,208.0,265.0,1035.0,86.0,132.0,72.0,730.0,5.0,3392.0,3718.0,3712.0,301.0,550.0,118.0,138.0,331.0,131.0,140.0,1382.0,1116.0,33.0,92.0,213.0,37.0,42.0,126.0,1098.0,56.0,13.0,1174.0,351.0,2738.0,318.0,236.0,18.0,30.0,53.0,13.0,27.0,27.0,5.0,997.0,129.0,146.0,288.0,8.0,46.0,1711.0,90.0,5.0,1.0,300.0,148.0,1265.0,9.0,76.0,209.0,0.0,7.0,500.0,2498.0,403.0,45.0,77.0,41.0,1625.0,148.0,223.0,49.0,151.0,439.0,945.0,148.0,202.0,113.0,4.0,1252.0,360.0,447.0,1.0,2985.0,2.0,1.0,1.0,1.0,2013.0,2492.0,1568.0,1786.0,22.0,98.0,429.0,11.0,271.0,229.0,20.0,207.0,1340.0,219.0,164.0,58.0,288.0,257.0,79.0,872.0,379.0,35.0,122.0,699.0,1011.0,306.0,409.0,5.0,36.0,692.0,219.0,235.0,348.0,2.0,59.0,2.0,3.0,309.0,2327.0,316.0,357.0,85.0,2.0,82.0,237.0,183.0,5014070.0,58.0,126.0,104.0,43.0,8.0,893.0,970.0,148.0,21.0,3280.0,123.0,107.0,7.0,85.0,448.0,333.0,129.0,174.0,230.0,126.0,662.0,676.0,1013.0,277.0,1196.0,1144.0,282.0,138.0,1776.0,71.0,519.0,969.0,109.0,1043.0,141.0,301.0,130.0,303.0,389.0,5.0,812.0,26.0,1034.0,0.0,1.0,544.0,88.0,885.0,1041.0,230.0,219.0,301.0,14.0,7.0,112.0,96.0,862.0,548.0,44.0,381.0,47.0,339.0,20.0,139.0,110.0,46.0,734.0,393.0,98.0,98.0,281.0,38.0,171.0,99.0,335.0,708.0,1.0,2342.0,183.0,64.0,859.0,881.0,218.0,0.0,450.0,1.0,370.0,7.0,79.0,606.0,0.0,21.0,2.0,318.0,2.0,506.0,99.0,6334.0,100.0,977.0,85.0,72.0,24.0,696.0,251.0,114.0,282.0,374.0,5.0,69.0,18.0,85.0,1693.0,2785.0,297.0,1637.0,250.0,11.0,87.0,527.0,7.0,574.0,374.0,106.0,1574.0,513.0,1751.0,775.0,8.0,60.0,247.0,265.0,160.0,468.0,4.0,18.0,128.0,76.0,0.0,2371.0,2899.0,19.0,61.0,595.0,39.0,541.0,109.0,6539.0,1.0,62.0,4.0,0.0,159.0,700.0,91.0,71.0,21.0,22.0,940.0,355.0,132.0,2.0,1.0,2017-10-22,,2017-42,0.8977018446159146,2.3760000000000003, +261,261,0.85,137.0,17.0,296.0,0.0,316.0,391.0,95.0,113.0,218.0,385.0,4.0,205.0,49.0,1.0,1578.0,221.0,142.0,47.0,337.0,0.0,0.0,1.0,181.0,48.0,2063.0,27.0,606.0,35.0,211.0,2.0,1.0,17.0,1291.0,206.0,1320.0,85.0,150.0,117.0,107.0,357.0,245.0,69.0,2.0,0.0,152.0,21.0,83.0,2213.0,10.0,120.0,11.0,1605.0,99.0,134.0,69.0,402.0,1169.0,37.0,372.0,3.0,636.0,253.0,32.0,527.0,19.0,11.0,23.0,148.0,346.0,281.0,158.0,1060.0,1224.0,1069.0,19.0,99.0,97.0,854.0,61.0,10.0,14.0,34.0,94.0,160.0,312.0,269.0,878.0,65.0,125.0,64.0,662.0,0.0,2873.0,3483.0,3356.0,307.0,558.0,91.0,122.0,376.0,101.0,223.0,1395.0,1017.0,17.0,93.0,208.0,43.0,61.0,141.0,1112.0,41.0,18.0,1089.0,338.0,3906.0,297.0,296.0,13.0,44.0,50.0,27.0,6.0,11.0,3.0,1100.0,71.0,179.0,257.0,13.0,55.0,1893.0,82.0,10.0,3.0,272.0,175.0,1101.0,7.0,59.0,186.0,0.0,0.0,545.0,2381.0,419.0,58.0,126.0,28.0,1788.0,126.0,243.0,52.0,125.0,730.0,915.0,127.0,125.0,111.0,9.0,1461.0,319.0,370.0,3.0,2880.0,0.0,3.0,5.0,3.0,1875.0,2335.0,1424.0,1699.0,36.0,74.0,379.0,12.0,242.0,173.0,23.0,219.0,1267.0,223.0,113.0,61.0,294.0,245.0,100.0,895.0,415.0,34.0,92.0,686.0,1339.0,238.0,456.0,1.0,39.0,521.0,186.0,243.0,436.0,0.0,67.0,0.0,1.0,261.0,2213.0,300.0,338.0,57.0,0.0,80.0,183.0,214.0,5084985.0,53.0,145.0,136.0,28.0,2.0,901.0,942.0,181.0,22.0,2544.0,132.0,153.0,3.0,75.0,449.0,236.0,139.0,176.0,196.0,102.0,605.0,596.0,823.0,253.0,1437.0,1383.0,230.0,104.0,1573.0,50.0,452.0,839.0,105.0,900.0,154.0,287.0,128.0,285.0,289.0,1.0,676.0,33.0,885.0,1.0,1.0,474.0,74.0,763.0,1049.0,163.0,156.0,238.0,8.0,9.0,161.0,59.0,862.0,424.0,35.0,279.0,44.0,261.0,22.0,71.0,107.0,58.0,532.0,308.0,100.0,69.0,305.0,49.0,150.0,91.0,347.0,399.0,1.0,2282.0,182.0,70.0,830.0,791.0,132.0,0.0,421.0,10.0,355.0,17.0,87.0,600.0,0.0,46.0,3.0,288.0,1.0,393.0,90.0,3172.0,59.0,6644.0,96.0,47.0,23.0,762.0,239.0,100.0,251.0,368.0,3.0,61.0,12.0,58.0,1875.0,2599.0,273.0,1572.0,240.0,15.0,77.0,577.0,15.0,502.0,594.0,112.0,1815.0,408.0,1552.0,868.0,5.0,88.0,227.0,257.0,145.0,510.0,2.0,19.0,123.0,99.0,0.0,2079.0,2878.0,15.0,54.0,503.0,34.0,433.0,115.0,5314.0,0.0,68.0,5.0,3.0,156.0,690.0,83.0,61.0,14.0,15.0,1014.0,258.0,139.0,2.0,0.0,2017-10-29,,2017-43,0.8462280445980142,1.1260000000000001, +262,262,0.95,126.0,20.0,234.0,6.0,257.0,390.0,100.0,113.0,200.0,360.0,6.0,241.0,31.0,3.0,1408.0,242.0,169.0,54.0,329.0,7.0,4.0,8.0,129.0,46.0,2228.0,23.0,498.0,25.0,249.0,8.0,5.0,13.0,1177.0,214.0,862.0,76.0,152.0,120.0,103.0,317.0,273.0,39.0,5.0,0.0,121.0,28.0,91.0,2136.0,2.0,212.0,33.0,1687.0,102.0,178.0,72.0,383.0,1159.0,21.0,159.0,7.0,627.0,244.0,30.0,472.0,16.0,9.0,31.0,124.0,348.0,287.0,144.0,926.0,701.0,1034.0,32.0,84.0,80.0,986.0,57.0,4.0,14.0,27.0,92.0,217.0,280.0,296.0,820.0,61.0,119.0,67.0,670.0,4.0,2553.0,3365.0,3498.0,339.0,577.0,79.0,148.0,251.0,127.0,199.0,1588.0,986.0,16.0,101.0,220.0,34.0,74.0,186.0,1156.0,41.0,24.0,981.0,401.0,2886.0,444.0,401.0,21.0,42.0,51.0,20.0,17.0,14.0,5.0,1168.0,121.0,193.0,344.0,8.0,59.0,1750.0,105.0,18.0,5.0,261.0,147.0,1039.0,15.0,81.0,185.0,4.0,12.0,540.0,2217.0,400.0,57.0,130.0,70.0,2455.0,173.0,383.0,45.0,104.0,1523.0,915.0,112.0,135.0,116.0,9.0,1579.0,337.0,412.0,4.0,2799.0,5.0,4.0,4.0,8.0,2033.0,2398.0,1682.0,1806.0,27.0,76.0,404.0,10.0,252.0,225.0,16.0,286.0,1280.0,195.0,123.0,89.0,240.0,303.0,92.0,966.0,431.0,40.0,116.0,631.0,846.0,322.0,350.0,3.0,45.0,570.0,195.0,255.0,301.0,5.0,54.0,2.0,4.0,252.0,3401.0,240.0,266.0,92.0,4.0,95.0,175.0,191.0,5059798.0,53.0,157.0,149.0,24.0,4.0,809.0,1239.0,205.0,38.0,2373.0,145.0,129.0,12.0,93.0,430.0,226.0,122.0,186.0,190.0,101.0,628.0,579.0,847.0,291.0,1208.0,1530.0,306.0,100.0,1513.0,70.0,338.0,739.0,114.0,787.0,150.0,244.0,160.0,294.0,332.0,8.0,628.0,26.0,808.0,4.0,2.0,615.0,127.0,724.0,1002.0,209.0,182.0,249.0,4.0,6.0,83.0,67.0,749.0,479.0,25.0,267.0,44.0,307.0,29.0,82.0,110.0,74.0,571.0,282.0,83.0,43.0,332.0,49.0,137.0,96.0,424.0,413.0,3.0,2442.0,157.0,126.0,1196.0,815.0,119.0,4.0,483.0,3.0,389.0,10.0,69.0,587.0,4.0,24.0,3.0,348.0,4.0,480.0,94.0,2805.0,50.0,1407.0,78.0,83.0,35.0,629.0,256.0,83.0,247.0,366.0,4.0,57.0,14.0,55.0,2172.0,2459.0,281.0,1594.0,227.0,15.0,25.0,557.0,13.0,482.0,498.0,105.0,1838.0,392.0,1332.0,897.0,11.0,55.0,206.0,260.0,235.0,534.0,2.0,26.0,100.0,158.0,0.0,2136.0,3276.0,17.0,57.0,460.0,43.0,419.0,127.0,4810.0,2.0,35.0,4.0,5.0,121.0,655.0,98.0,76.0,25.0,36.0,1080.0,352.0,114.0,2.0,2.0,2017-11-05,,2017-44,0.9603290858529245,1.984, +263,263,1.24,148.0,16.0,327.0,1.0,305.0,429.0,125.0,147.0,281.0,372.0,3.0,220.0,51.0,0.0,1458.0,293.0,209.0,62.0,377.0,4.0,2.0,3.0,169.0,54.0,2244.0,23.0,483.0,32.0,277.0,1.0,0.0,11.0,1245.0,1253.0,963.0,86.0,200.0,161.0,141.0,334.0,345.0,53.0,4.0,0.0,113.0,29.0,75.0,2598.0,4.0,228.0,18.0,1865.0,94.0,175.0,83.0,375.0,1195.0,46.0,130.0,0.0,659.0,278.0,43.0,660.0,19.0,11.0,28.0,147.0,377.0,362.0,173.0,1123.0,772.0,1049.0,26.0,71.0,74.0,962.0,66.0,5.0,8.0,23.0,97.0,217.0,344.0,312.0,818.0,85.0,127.0,85.0,675.0,2.0,3410.0,3684.0,3984.0,301.0,568.0,105.0,150.0,143.0,109.0,234.0,1441.0,1081.0,26.0,78.0,171.0,44.0,93.0,233.0,1425.0,68.0,24.0,850.0,399.0,2758.0,409.0,365.0,12.0,56.0,65.0,33.0,16.0,17.0,9.0,1147.0,179.0,172.0,313.0,10.0,55.0,1540.0,125.0,10.0,5.0,403.0,171.0,1074.0,19.0,118.0,209.0,0.0,4.0,577.0,2701.0,384.0,68.0,160.0,62.0,1918.0,171.0,326.0,51.0,122.0,1468.0,978.0,142.0,145.0,155.0,5.0,1621.0,334.0,468.0,1.0,2793.0,0.0,2.0,0.0,0.0,1996.0,2376.0,1597.0,1811.0,28.0,81.0,427.0,16.0,326.0,187.0,23.0,255.0,1221.0,205.0,139.0,77.0,274.0,314.0,175.0,920.0,439.0,44.0,119.0,690.0,1005.0,320.0,438.0,8.0,45.0,662.0,194.0,237.0,316.0,0.0,60.0,0.0,0.0,223.0,2621.0,340.0,355.0,128.0,0.0,89.0,217.0,207.0,5124632.0,55.0,190.0,182.0,23.0,13.0,999.0,982.0,232.0,38.0,2532.0,164.0,127.0,18.0,87.0,531.0,250.0,122.0,176.0,226.0,134.0,684.0,654.0,916.0,379.0,1222.0,1328.0,311.0,85.0,1413.0,90.0,460.0,887.0,130.0,943.0,197.0,333.0,145.0,302.0,331.0,2.0,749.0,36.0,1004.0,1.0,6.0,585.0,205.0,944.0,1033.0,220.0,211.0,275.0,16.0,3.0,65.0,95.0,894.0,564.0,31.0,319.0,46.0,379.0,20.0,72.0,135.0,62.0,639.0,308.0,128.0,50.0,317.0,34.0,144.0,124.0,295.0,444.0,1.0,2415.0,182.0,89.0,1146.0,948.0,166.0,1.0,327.0,3.0,457.0,18.0,71.0,815.0,0.0,44.0,4.0,334.0,7.0,509.0,116.0,3853.0,65.0,896.0,105.0,90.0,34.0,659.0,267.0,113.0,230.0,376.0,3.0,82.0,10.0,44.0,2651.0,2978.0,219.0,1893.0,271.0,19.0,57.0,779.0,15.0,532.0,1065.0,86.0,2188.0,353.0,2530.0,1140.0,8.0,77.0,240.0,358.0,211.0,633.0,2.0,23.0,163.0,238.0,2.0,2208.0,3088.0,10.0,44.0,528.0,49.0,443.0,123.0,4863.0,0.0,48.0,4.0,1.0,150.0,703.0,102.0,84.0,15.0,34.0,1074.0,359.0,142.0,0.0,1.0,2017-11-12,,2017-45,1.2345948625354835,2.5140000000000002, +264,264,1.6,152.0,19.0,431.0,0.0,276.0,424.0,141.0,120.0,262.0,424.0,3.0,303.0,46.0,2.0,1575.0,280.0,226.0,58.0,391.0,1.0,1.0,2.0,136.0,56.0,2484.0,36.0,506.0,27.0,166.0,1.0,1.0,8.0,1453.0,332.0,953.0,83.0,177.0,176.0,109.0,302.0,361.0,51.0,2.0,0.0,120.0,22.0,76.0,2747.0,7.0,143.0,39.0,1950.0,99.0,141.0,75.0,356.0,1068.0,39.0,152.0,3.0,646.0,274.0,32.0,590.0,15.0,14.0,22.0,138.0,344.0,335.0,168.0,1059.0,870.0,998.0,26.0,168.0,95.0,923.0,78.0,7.0,9.0,24.0,109.0,201.0,163.0,291.0,710.0,81.0,120.0,124.0,681.0,3.0,2526.0,3713.0,4712.0,367.0,509.0,99.0,148.0,104.0,182.0,214.0,1587.0,1237.0,42.0,106.0,223.0,42.0,67.0,214.0,1317.0,65.0,15.0,863.0,353.0,3077.0,351.0,193.0,11.0,36.0,73.0,25.0,11.0,19.0,3.0,1112.0,107.0,164.0,328.0,13.0,50.0,1528.0,84.0,16.0,0.0,402.0,152.0,1482.0,9.0,106.0,216.0,1.0,5.0,527.0,2588.0,591.0,53.0,172.0,49.0,1660.0,201.0,337.0,47.0,152.0,1066.0,925.0,123.0,156.0,98.0,9.0,2123.0,368.0,531.0,4.0,2866.0,1.0,1.0,1.0,3.0,2006.0,2065.0,1749.0,1928.0,28.0,67.0,853.0,12.0,410.0,169.0,13.0,202.0,1342.0,194.0,151.0,383.0,273.0,1543.0,151.0,901.0,438.0,46.0,121.0,596.0,974.0,354.0,427.0,1.0,45.0,650.0,214.0,235.0,233.0,1.0,79.0,2.0,1.0,234.0,3104.0,306.0,359.0,94.0,1.0,142.0,240.0,222.0,5622048.0,57.0,146.0,167.0,26.0,18.0,897.0,924.0,189.0,69.0,2575.0,134.0,118.0,11.0,95.0,498.0,236.0,141.0,196.0,285.0,137.0,676.0,653.0,774.0,280.0,1355.0,1059.0,335.0,93.0,1483.0,69.0,515.0,1119.0,123.0,1008.0,294.0,317.0,153.0,303.0,315.0,4.0,680.0,37.0,954.0,1.0,1.0,588.0,242.0,968.0,1049.0,268.0,201.0,236.0,12.0,16.0,90.0,87.0,864.0,590.0,40.0,357.0,78.0,535.0,38.0,53.0,115.0,82.0,716.0,368.0,90.0,75.0,365.0,37.0,166.0,126.0,352.0,474.0,2.0,2595.0,250.0,87.0,1116.0,981.0,192.0,1.0,335.0,3.0,336.0,16.0,76.0,708.0,3.0,49.0,7.0,367.0,2.0,477.0,136.0,2993.0,45.0,857.0,109.0,109.0,38.0,776.0,1245.0,132.0,264.0,349.0,3.0,68.0,13.0,78.0,3183.0,3043.0,226.0,1978.0,264.0,16.0,31.0,793.0,13.0,546.0,1143.0,53.0,2331.0,319.0,1457.0,1076.0,7.0,60.0,325.0,362.0,213.0,629.0,2.0,19.0,140.0,236.0,1.0,1988.0,3131.0,24.0,52.0,441.0,57.0,297.0,108.0,4419.0,1.0,48.0,2.0,2.0,208.0,857.0,149.0,101.0,17.0,11.0,1142.0,317.0,174.0,1.0,1.0,2017-11-19,,2017-46,1.592662927295553,1.458, +265,265,1.85,163.0,14.0,440.0,8.0,217.0,411.0,113.0,111.0,246.0,467.0,9.0,211.0,60.0,10.0,1512.0,260.0,205.0,50.0,402.0,8.0,7.0,13.0,154.0,42.0,2566.0,22.0,505.0,29.0,153.0,12.0,9.0,8.0,1324.0,313.0,943.0,70.0,203.0,186.0,118.0,347.0,305.0,60.0,10.0,0.0,120.0,26.0,75.0,2185.0,3.0,1243.0,31.0,1740.0,73.0,208.0,84.0,343.0,1184.0,33.0,193.0,9.0,670.0,270.0,32.0,711.0,14.0,7.0,35.0,136.0,337.0,343.0,164.0,1119.0,828.0,986.0,19.0,51.0,96.0,863.0,100.0,2.0,12.0,23.0,108.0,263.0,149.0,331.0,814.0,92.0,147.0,69.0,846.0,4.0,2595.0,3434.0,4204.0,382.0,507.0,79.0,170.0,71.0,194.0,250.0,1572.0,1411.0,33.0,72.0,174.0,60.0,66.0,212.0,1773.0,53.0,30.0,951.0,359.0,3355.0,548.0,185.0,14.0,49.0,107.0,18.0,14.0,17.0,10.0,1177.0,279.0,169.0,352.0,16.0,52.0,1488.0,119.0,8.0,5.0,408.0,149.0,1095.0,13.0,73.0,183.0,8.0,11.0,566.0,2359.0,409.0,70.0,164.0,45.0,1825.0,171.0,271.0,37.0,166.0,961.0,926.0,113.0,164.0,142.0,4.0,1592.0,325.0,409.0,10.0,2799.0,7.0,11.0,7.0,9.0,1985.0,2983.0,1691.0,1602.0,25.0,79.0,472.0,15.0,389.0,210.0,22.0,224.0,1274.0,372.0,195.0,121.0,318.0,297.0,120.0,967.0,433.0,53.0,143.0,649.0,952.0,377.0,440.0,6.0,40.0,455.0,200.0,233.0,221.0,8.0,71.0,8.0,8.0,227.0,2517.0,462.0,478.0,96.0,7.0,158.0,238.0,266.0,4897587.0,52.0,147.0,136.0,28.0,17.0,939.0,763.0,194.0,65.0,2374.0,153.0,126.0,7.0,85.0,454.0,265.0,125.0,202.0,345.0,116.0,577.0,608.0,846.0,253.0,1215.0,1071.0,416.0,107.0,1510.0,89.0,653.0,1103.0,147.0,1078.0,201.0,293.0,137.0,321.0,340.0,11.0,653.0,33.0,949.0,1.0,10.0,588.0,57.0,1022.0,1001.0,313.0,164.0,234.0,8.0,6.0,86.0,156.0,779.0,714.0,43.0,437.0,8.0,517.0,36.0,71.0,105.0,78.0,936.0,532.0,123.0,89.0,516.0,30.0,220.0,121.0,491.0,556.0,8.0,2404.0,309.0,71.0,1038.0,902.0,290.0,7.0,277.0,5.0,371.0,8.0,36.0,568.0,9.0,44.0,3.0,369.0,11.0,512.0,127.0,2706.0,52.0,1047.0,128.0,160.0,34.0,838.0,467.0,208.0,262.0,345.0,10.0,47.0,14.0,58.0,1428.0,2949.0,221.0,1455.0,267.0,23.0,34.0,318.0,10.0,546.0,957.0,62.0,1555.0,382.0,1284.0,708.0,6.0,103.0,240.0,207.0,157.0,443.0,1.0,15.0,146.0,220.0,0.0,2009.0,2946.0,30.0,48.0,456.0,47.0,298.0,150.0,4378.0,7.0,65.0,8.0,8.0,262.0,809.0,181.0,61.0,24.0,23.0,1020.0,381.0,138.0,7.0,9.0,2017-11-26,,2017-47,1.844771938803695,1.6059999999999999, +266,266,2.38,163.0,15.0,217.0,0.0,233.0,400.0,107.0,85.0,259.0,485.0,0.0,225.0,42.0,1.0,1301.0,201.0,143.0,52.0,377.0,0.0,0.0,0.0,129.0,43.0,2684.0,42.0,440.0,22.0,221.0,1.0,1.0,11.0,1269.0,208.0,856.0,72.0,142.0,230.0,79.0,337.0,268.0,55.0,2.0,0.0,156.0,31.0,96.0,2988.0,9.0,1012.0,19.0,1721.0,71.0,126.0,92.0,345.0,1085.0,35.0,105.0,1.0,558.0,261.0,36.0,655.0,18.0,6.0,13.0,174.0,341.0,266.0,164.0,1070.0,687.0,764.0,26.0,63.0,76.0,736.0,97.0,4.0,8.0,22.0,55.0,241.0,138.0,236.0,780.0,86.0,119.0,63.0,617.0,3.0,2456.0,3101.0,3207.0,323.0,521.0,109.0,146.0,73.0,99.0,189.0,2318.0,1177.0,18.0,86.0,148.0,43.0,62.0,210.0,1625.0,58.0,17.0,842.0,308.0,2836.0,217.0,132.0,16.0,29.0,59.0,25.0,26.0,12.0,4.0,1070.0,74.0,117.0,265.0,13.0,50.0,1380.0,103.0,8.0,6.0,316.0,129.0,1358.0,10.0,83.0,160.0,3.0,6.0,520.0,2189.0,399.0,64.0,138.0,72.0,2542.0,109.0,300.0,29.0,124.0,653.0,887.0,106.0,154.0,98.0,4.0,2017.0,279.0,344.0,1.0,2025.0,1.0,0.0,0.0,0.0,1682.0,2020.0,1464.0,1338.0,34.0,81.0,352.0,13.0,317.0,176.0,26.0,527.0,1143.0,184.0,135.0,60.0,277.0,301.0,137.0,674.0,428.0,61.0,89.0,650.0,857.0,257.0,367.0,7.0,43.0,476.0,146.0,265.0,163.0,0.0,65.0,1.0,0.0,229.0,2211.0,240.0,374.0,53.0,0.0,129.0,237.0,191.0,4928076.0,61.0,148.0,187.0,12.0,5.0,900.0,1157.0,197.0,30.0,2150.0,156.0,166.0,9.0,62.0,429.0,228.0,124.0,210.0,213.0,89.0,588.0,544.0,855.0,271.0,1108.0,1033.0,302.0,120.0,1828.0,73.0,404.0,776.0,98.0,922.0,146.0,233.0,193.0,318.0,297.0,4.0,570.0,27.0,851.0,3.0,1.0,406.0,41.0,767.0,1000.0,194.0,171.0,247.0,16.0,8.0,66.0,66.0,681.0,505.0,42.0,318.0,2.0,318.0,14.0,75.0,102.0,53.0,577.0,227.0,72.0,20.0,256.0,36.0,193.0,107.0,303.0,458.0,1.0,2795.0,185.0,72.0,1012.0,797.0,218.0,0.0,300.0,11.0,356.0,14.0,38.0,456.0,1.0,55.0,1.0,285.0,2.0,494.0,101.0,2517.0,45.0,732.0,70.0,66.0,31.0,634.0,277.0,109.0,209.0,341.0,0.0,62.0,10.0,64.0,923.0,2488.0,325.0,1199.0,198.0,19.0,30.0,248.0,15.0,455.0,836.0,53.0,1131.0,368.0,1038.0,515.0,5.0,70.0,353.0,129.0,98.0,309.0,3.0,12.0,132.0,161.0,0.0,1795.0,3069.0,17.0,47.0,535.0,46.0,279.0,126.0,4260.0,0.0,48.0,0.0,1.0,245.0,717.0,126.0,117.0,19.0,23.0,981.0,316.0,126.0,0.0,0.0,2017-12-03,,2017-48,2.400732078949911,2.5380000000000003, +267,267,3.11,123.0,21.0,185.0,4.0,224.0,432.0,80.0,65.0,222.0,349.0,6.0,211.0,28.0,5.0,1163.0,195.0,152.0,29.0,314.0,5.0,4.0,6.0,82.0,43.0,2747.0,23.0,390.0,19.0,172.0,6.0,1.0,7.0,1171.0,193.0,737.0,56.0,123.0,232.0,91.0,288.0,296.0,44.0,5.0,1.0,106.0,25.0,68.0,2080.0,4.0,133.0,21.0,1432.0,69.0,104.0,71.0,273.0,941.0,35.0,125.0,3.0,531.0,243.0,41.0,553.0,13.0,5.0,6.0,111.0,268.0,281.0,115.0,892.0,499.0,581.0,24.0,63.0,76.0,584.0,78.0,10.0,9.0,34.0,68.0,180.0,81.0,176.0,655.0,55.0,117.0,74.0,487.0,3.0,1804.0,2452.0,2858.0,249.0,360.0,79.0,205.0,52.0,149.0,117.0,2542.0,1140.0,11.0,86.0,129.0,39.0,54.0,179.0,1558.0,40.0,22.0,780.0,250.0,2534.0,96.0,94.0,9.0,21.0,84.0,9.0,17.0,22.0,4.0,813.0,41.0,76.0,268.0,9.0,38.0,1246.0,85.0,11.0,1.0,201.0,125.0,1817.0,22.0,68.0,192.0,2.0,3.0,479.0,1955.0,362.0,48.0,135.0,59.0,2138.0,138.0,386.0,42.0,98.0,466.0,769.0,98.0,86.0,102.0,5.0,1973.0,222.0,314.0,1.0,1820.0,1.0,1.0,1.0,1.0,1483.0,1894.0,1226.0,1053.0,19.0,73.0,262.0,10.0,216.0,163.0,31.0,178.0,930.0,132.0,140.0,41.0,249.0,265.0,82.0,542.0,340.0,40.0,66.0,499.0,674.0,202.0,360.0,4.0,23.0,401.0,136.0,153.0,171.0,1.0,65.0,1.0,2.0,190.0,1922.0,188.0,245.0,39.0,3.0,81.0,208.0,155.0,4456366.0,47.0,121.0,141.0,20.0,5.0,710.0,531.0,152.0,30.0,2289.0,131.0,104.0,4.0,233.0,321.0,208.0,108.0,156.0,168.0,87.0,491.0,404.0,681.0,231.0,1030.0,928.0,260.0,151.0,1755.0,60.0,275.0,532.0,61.0,551.0,151.0,181.0,211.0,307.0,276.0,2.0,478.0,26.0,785.0,16.0,1.0,446.0,26.0,626.0,954.0,189.0,133.0,243.0,11.0,2.0,60.0,48.0,605.0,432.0,31.0,231.0,2.0,286.0,21.0,47.0,83.0,27.0,438.0,179.0,42.0,7.0,167.0,19.0,155.0,53.0,266.0,373.0,4.0,2249.0,166.0,65.0,875.0,585.0,131.0,1.0,260.0,5.0,277.0,13.0,26.0,403.0,1.0,40.0,9.0,203.0,4.0,354.0,79.0,2193.0,36.0,542.0,49.0,37.0,28.0,478.0,204.0,63.0,217.0,275.0,4.0,119.0,7.0,49.0,696.0,2018.0,373.0,813.0,167.0,17.0,44.0,182.0,13.0,314.0,600.0,58.0,751.0,318.0,899.0,471.0,6.0,68.0,188.0,98.0,100.0,321.0,3.0,14.0,130.0,121.0,4.0,1656.0,2648.0,31.0,43.0,390.0,66.0,189.0,108.0,3601.0,1.0,53.0,2.0,1.0,191.0,661.0,131.0,85.0,15.0,10.0,1001.0,213.0,159.0,1.0,1.0,2017-12-10,,2017-49,3.083754655419968,4.6419999999999995, +268,268,4.74,144.0,23.0,205.0,0.0,213.0,382.0,115.0,89.0,220.0,349.0,1.0,202.0,82.0,1.0,1266.0,209.0,161.0,33.0,286.0,1.0,2.0,3.0,84.0,43.0,3492.0,37.0,501.0,25.0,149.0,3.0,0.0,12.0,1455.0,190.0,831.0,80.0,120.0,222.0,137.0,307.0,344.0,54.0,5.0,0.0,134.0,24.0,72.0,1914.0,7.0,135.0,19.0,1576.0,52.0,124.0,73.0,308.0,961.0,48.0,130.0,2.0,638.0,234.0,34.0,558.0,20.0,5.0,20.0,100.0,326.0,358.0,160.0,1081.0,636.0,695.0,21.0,58.0,92.0,673.0,84.0,7.0,2.0,20.0,83.0,223.0,169.0,232.0,726.0,90.0,131.0,64.0,567.0,4.0,1877.0,3091.0,3450.0,292.0,484.0,70.0,227.0,69.0,152.0,129.0,2921.0,1176.0,9.0,85.0,136.0,41.0,62.0,247.0,1771.0,60.0,12.0,1471.0,316.0,3025.0,218.0,116.0,21.0,38.0,191.0,9.0,10.0,20.0,1.0,938.0,68.0,88.0,244.0,9.0,45.0,1412.0,123.0,8.0,3.0,287.0,126.0,1089.0,16.0,101.0,186.0,1.0,0.0,426.0,2259.0,455.0,45.0,118.0,49.0,1625.0,175.0,406.0,54.0,110.0,575.0,825.0,106.0,128.0,113.0,13.0,1739.0,281.0,387.0,2.0,2129.0,0.0,0.0,0.0,0.0,1692.0,1723.0,1324.0,1163.0,28.0,83.0,332.0,11.0,265.0,135.0,20.0,193.0,1067.0,142.0,166.0,39.0,307.0,308.0,116.0,634.0,391.0,38.0,61.0,569.0,789.0,245.0,498.0,20.0,19.0,355.0,162.0,227.0,165.0,3.0,51.0,0.0,0.0,193.0,2253.0,230.0,355.0,71.0,1.0,98.0,199.0,203.0,4567959.0,48.0,146.0,125.0,22.0,7.0,773.0,806.0,176.0,27.0,2255.0,170.0,110.0,3.0,328.0,353.0,239.0,112.0,211.0,227.0,109.0,509.0,517.0,825.0,250.0,1424.0,1128.0,256.0,145.0,1764.0,76.0,326.0,680.0,88.0,767.0,153.0,219.0,411.0,377.0,281.0,4.0,519.0,31.0,961.0,1.0,1.0,516.0,22.0,777.0,1019.0,244.0,152.0,209.0,13.0,7.0,61.0,44.0,717.0,466.0,37.0,279.0,3.0,423.0,14.0,60.0,81.0,39.0,527.0,154.0,28.0,9.0,246.0,22.0,153.0,78.0,321.0,391.0,1.0,2438.0,174.0,81.0,969.0,706.0,110.0,0.0,275.0,0.0,401.0,5.0,41.0,475.0,0.0,31.0,2.0,232.0,0.0,363.0,83.0,2351.0,33.0,504.0,46.0,58.0,34.0,549.0,277.0,74.0,240.0,297.0,3.0,73.0,10.0,51.0,704.0,2204.0,213.0,863.0,195.0,19.0,58.0,147.0,18.0,341.0,520.0,62.0,819.0,420.0,882.0,438.0,9.0,69.0,139.0,90.0,99.0,256.0,1.0,17.0,113.0,119.0,1.0,1771.0,2780.0,28.0,40.0,446.0,61.0,214.0,116.0,4251.0,1.0,83.0,1.0,0.0,432.0,750.0,160.0,108.0,15.0,17.0,1045.0,262.0,124.0,0.0,0.0,2017-12-17,,2017-50,4.745453568004123,4.840000000000001, +269,269,7.21,121.0,11.0,122.0,1.0,145.0,280.0,59.0,52.0,129.0,309.0,1.0,118.0,24.0,0.0,952.0,115.0,109.0,25.0,173.0,2.0,0.0,0.0,98.0,21.0,2525.0,14.0,325.0,26.0,97.0,0.0,0.0,18.0,909.0,110.0,544.0,38.0,102.0,148.0,66.0,185.0,201.0,34.0,1.0,0.0,58.0,21.0,56.0,1308.0,5.0,85.0,18.0,1098.0,50.0,58.0,40.0,171.0,655.0,16.0,84.0,0.0,395.0,139.0,19.0,344.0,8.0,6.0,10.0,66.0,176.0,175.0,116.0,645.0,392.0,444.0,4.0,44.0,47.0,420.0,54.0,3.0,5.0,7.0,52.0,137.0,93.0,128.0,459.0,56.0,65.0,33.0,348.0,2.0,5221.0,2394.0,2588.0,183.0,318.0,72.0,95.0,39.0,169.0,72.0,1102.0,724.0,1.0,48.0,87.0,28.0,21.0,116.0,1305.0,30.0,3.0,632.0,242.0,2517.0,89.0,68.0,6.0,27.0,82.0,12.0,5.0,8.0,2.0,593.0,30.0,40.0,132.0,6.0,20.0,831.0,59.0,8.0,3.0,166.0,65.0,742.0,7.0,38.0,136.0,0.0,0.0,241.0,1344.0,276.0,30.0,100.0,60.0,1174.0,161.0,415.0,25.0,52.0,268.0,531.0,66.0,90.0,76.0,5.0,1589.0,172.0,238.0,1.0,1251.0,0.0,1.0,3.0,0.0,1383.0,1230.0,837.0,867.0,13.0,60.0,248.0,1.0,172.0,105.0,7.0,109.0,668.0,86.0,86.0,30.0,179.0,138.0,95.0,419.0,237.0,41.0,48.0,353.0,481.0,143.0,252.0,4.0,19.0,341.0,107.0,146.0,117.0,0.0,42.0,2.0,2.0,98.0,1462.0,142.0,218.0,38.0,0.0,62.0,100.0,136.0,3327150.0,35.0,122.0,97.0,14.0,3.0,533.0,390.0,156.0,17.0,1638.0,79.0,60.0,8.0,205.0,225.0,145.0,79.0,104.0,166.0,56.0,339.0,299.0,416.0,147.0,731.0,700.0,199.0,111.0,1383.0,39.0,165.0,386.0,38.0,374.0,72.0,97.0,127.0,226.0,219.0,1.0,370.0,15.0,665.0,1.0,2.0,328.0,8.0,432.0,633.0,164.0,81.0,139.0,6.0,4.0,35.0,37.0,434.0,343.0,20.0,138.0,1.0,226.0,10.0,25.0,47.0,26.0,352.0,67.0,25.0,3.0,135.0,28.0,93.0,59.0,198.0,282.0,0.0,1878.0,124.0,52.0,627.0,477.0,77.0,0.0,137.0,5.0,261.0,7.0,20.0,271.0,1.0,31.0,1.0,147.0,0.0,350.0,63.0,1546.0,17.0,418.0,24.0,34.0,15.0,403.0,142.0,26.0,172.0,179.0,2.0,38.0,9.0,31.0,389.0,1271.0,135.0,509.0,93.0,7.0,23.0,76.0,10.0,627.0,257.0,33.0,512.0,224.0,528.0,229.0,8.0,39.0,82.0,54.0,73.0,160.0,1.0,22.0,81.0,84.0,1.0,1141.0,1769.0,11.0,34.0,311.0,37.0,124.0,76.0,2720.0,0.0,52.0,1.0,0.0,200.0,595.0,112.0,45.0,11.0,10.0,676.0,144.0,99.0,0.0,0.0,2017-12-24,,2017-51,7.21012859904393,4.562, +270,270,11.45,120.0,13.0,116.0,3.0,239.0,429.0,82.0,50.0,138.0,286.0,3.0,209.0,44.0,4.0,1144.0,145.0,102.0,26.0,189.0,1.0,2.0,1.0,86.0,37.0,4594.0,35.0,667.0,56.0,221.0,2.0,1.0,53.0,1158.0,198.0,769.0,74.0,88.0,219.0,75.0,274.0,257.0,47.0,2.0,0.0,67.0,22.0,91.0,7413.0,2.0,215.0,11.0,1533.0,59.0,78.0,76.0,297.0,1358.0,25.0,102.0,2.0,552.0,155.0,20.0,416.0,18.0,2.0,13.0,85.0,263.0,244.0,154.0,819.0,453.0,557.0,14.0,65.0,53.0,645.0,78.0,3.0,7.0,28.0,86.0,233.0,121.0,133.0,759.0,54.0,74.0,54.0,498.0,0.0,1933.0,2963.0,3921.0,162.0,320.0,73.0,272.0,72.0,97.0,105.0,1574.0,1249.0,14.0,71.0,135.0,19.0,30.0,107.0,2465.0,81.0,16.0,1004.0,329.0,6390.0,118.0,107.0,13.0,47.0,63.0,15.0,17.0,15.0,6.0,1009.0,63.0,89.0,131.0,5.0,49.0,1581.0,82.0,12.0,2.0,193.0,123.0,1017.0,13.0,44.0,144.0,1.0,2.0,425.0,1673.0,234.0,39.0,382.0,182.0,3242.0,311.0,1269.0,39.0,97.0,413.0,1015.0,85.0,97.0,94.0,4.0,2311.0,204.0,275.0,1.0,1777.0,1.0,1.0,1.0,1.0,2252.0,5790.0,1160.0,1396.0,22.0,47.0,283.0,5.0,218.0,169.0,16.0,118.0,969.0,89.0,95.0,32.0,263.0,1928.0,92.0,501.0,410.0,22.0,55.0,499.0,557.0,160.0,398.0,4.0,27.0,837.0,143.0,165.0,254.0,2.0,56.0,1.0,1.0,163.0,1905.0,174.0,295.0,44.0,2.0,62.0,116.0,148.0,5253779.0,50.0,320.0,216.0,21.0,8.0,625.0,848.0,213.0,17.0,2752.0,112.0,76.0,5.0,207.0,438.0,227.0,83.0,88.0,128.0,85.0,538.0,451.0,485.0,253.0,1491.0,771.0,286.0,171.0,2992.0,38.0,200.0,520.0,80.0,528.0,98.0,176.0,110.0,291.0,417.0,5.0,507.0,24.0,1232.0,1.0,1.0,559.0,34.0,594.0,1062.0,244.0,117.0,181.0,6.0,1.0,39.0,93.0,587.0,686.0,26.0,194.0,3.0,179.0,15.0,67.0,73.0,20.0,754.0,90.0,30.0,3.0,171.0,57.0,160.0,66.0,185.0,301.0,1.0,3222.0,124.0,73.0,1260.0,533.0,108.0,1.0,185.0,4.0,288.0,14.0,72.0,260.0,1.0,33.0,3.0,228.0,1.0,238.0,63.0,2122.0,41.0,650.0,41.0,35.0,24.0,484.0,134.0,32.0,197.0,217.0,2.0,58.0,3.0,12.0,717.0,1693.0,176.0,741.0,150.0,14.0,229.0,137.0,7.0,298.0,583.0,36.0,757.0,381.0,737.0,498.0,7.0,68.0,134.0,110.0,76.0,146.0,3.0,11.0,98.0,108.0,2.0,1832.0,2410.0,19.0,53.0,624.0,32.0,178.0,96.0,3025.0,2.0,39.0,1.0,1.0,216.0,797.0,178.0,73.0,14.0,21.0,1498.0,220.0,118.0,1.0,1.0,2017-12-31,,2017-52,11.454809816800385,9.596000000000002, +271,271,13.8,117.0,9.0,176.0,0.0,276.0,542.0,86.0,76.0,223.0,523.0,2.0,233.0,44.0,1.0,1337.0,236.0,147.0,36.0,249.0,0.0,3.0,3.0,97.0,41.0,4814.0,33.0,770.0,44.0,450.0,0.0,2.0,10.0,1184.0,213.0,870.0,93.0,167.0,238.0,120.0,322.0,370.0,42.0,4.0,0.0,154.0,24.0,79.0,4586.0,0.0,183.0,25.0,2516.0,73.0,107.0,96.0,314.0,1970.0,32.0,145.0,2.0,703.0,174.0,30.0,454.0,12.0,8.0,18.0,136.0,332.0,292.0,197.0,978.0,683.0,740.0,21.0,73.0,54.0,851.0,73.0,13.0,4.0,20.0,61.0,268.0,103.0,178.0,833.0,68.0,124.0,69.0,611.0,5.0,1882.0,3580.0,4173.0,259.0,505.0,108.0,168.0,134.0,227.0,82.0,1887.0,1369.0,11.0,115.0,176.0,42.0,46.0,182.0,2488.0,57.0,22.0,912.0,337.0,6142.0,178.0,107.0,12.0,26.0,66.0,19.0,12.0,19.0,1.0,1262.0,63.0,91.0,141.0,24.0,48.0,2113.0,82.8,7.0,0.0,311.0,134.0,1344.0,13.0,54.4,178.0,0.0,1.0,435.0,2207.0,379.0,59.0,473.0,227.0,4835.0,706.0,7138.0,38.0,116.0,635.0,1116.0,118.0,80.0,118.0,2.0,2260.0,294.0,351.0,0.0,2117.0,0.0,0.0,0.0,0.0,1978.0,4084.0,1568.0,1566.0,23.0,50.0,313.0,9.0,265.0,259.0,22.0,187.0,1071.0,85.0,152.0,59.0,354.0,441.0,87.0,847.0,409.0,36.0,88.0,633.0,801.0,248.0,514.0,6.0,51.0,610.0,166.0,201.0,226.0,0.0,64.0,2.0,1.0,212.0,2275.0,187.0,342.0,57.0,0.0,69.4,254.0,209.0,4818513.0,69.0,492.0,479.0,32.0,8.0,709.0,1139.0,251.0,19.0,2600.0,137.0,149.0,7.0,199.0,506.0,223.0,127.0,134.0,162.0,112.0,596.0,478.0,617.0,242.0,1400.0,1096.0,250.0,167.0,2684.0,44.16666666666666,266.0,663.0,99.0,677.0,162.0,196.0,128.2,420.0,465.0,6.0,504.0,38.0,1627.0,4.0,2.0,597.0,12.0,816.0,1170.0,289.0,162.0,239.0,18.0,5.0,33.0,81.0,721.0,669.0,27.0,291.0,4.0,280.0,11.0,96.0,108.0,35.0,633.0,146.0,41.0,3.0,160.0,34.0,208.0,74.0,345.0,400.0,1.0,3219.0,169.0,75.0,1225.0,580.0,138.0,1.0,263.0,6.0,404.0,13.0,56.0,399.0,1.0,51.0,5.0,275.0,0.0,357.0,98.0,2490.0,58.0,761.0,72.0,49.0,25.0,729.0,197.0,53.0,303.0,290.0,2.0,81.0,12.0,30.0,643.0,1804.0,216.0,859.0,177.0,19.0,42.0,142.0,18.0,326.0,695.0,79.0,943.0,418.0,869.0,572.0,7.0,72.0,200.0,78.0,83.0,189.0,2.0,10.0,102.0,96.0,2.0,1905.25,3191.0,17.0,35.0,484.0,43.0,171.0,133.0,4057.0,1.0,72.0,2.0,1.0,314.0,1014.0,188.0,81.0,19.0,15.0,1418.0,266.0,152.0,0.0,3.0,2018-01-07,,2018-1,13.808815722828596,8.71, +272,272,14.73,168.0,10.0,121.0,1.0,315.0,524.0,128.0,84.0,308.0,453.0,2.0,235.0,55.0,2.0,1548.0,329.0,208.0,36.0,302.0,3.0,1.0,5.0,162.0,50.0,4038.0,34.0,638.0,38.0,261.0,0.0,1.0,10.0,1450.0,287.0,1051.0,112.0,212.0,196.0,150.0,374.0,386.0,44.0,1.0,0.0,161.0,24.0,103.0,2452.0,7.0,192.0,32.0,2115.0,94.0,134.0,95.0,370.0,1162.0,33.0,178.0,6.0,742.0,241.0,36.0,563.0,11.0,7.0,17.0,136.0,705.0,293.0,143.0,1168.0,798.0,827.0,16.0,65.0,100.0,912.0,73.0,4.0,6.0,20.0,84.0,273.0,108.0,209.0,949.0,71.0,203.0,84.0,665.0,1.0,2640.0,5142.0,8828.0,334.0,561.0,109.0,156.0,83.0,148.0,144.0,1701.0,1263.0,9.0,112.0,217.0,66.0,76.0,310.0,2136.0,70.0,20.0,2422.0,359.0,5156.0,181.0,107.0,13.0,40.0,86.0,25.0,21.0,284.0,17.0,1432.0,70.0,147.0,197.0,22.0,56.0,1837.0,83.6,10.0,2.0,471.0,153.0,1470.0,6.0,64.8,256.0,1.0,3.0,535.0,2892.0,514.0,83.0,451.0,256.0,3255.0,930.0,3551.0,61.0,149.0,571.0,1388.0,140.0,143.0,123.0,4.0,1757.0,290.0,427.0,3.0,2203.0,1.0,1.0,4.0,1.0,2213.0,2304.0,1674.0,1450.0,17.0,62.0,392.0,19.0,320.0,140.0,20.0,215.0,1256.0,139.0,196.0,37.0,471.0,366.0,129.0,1005.0,500.0,21.0,118.0,645.0,891.0,342.0,509.0,9.0,39.0,717.0,193.0,253.0,196.0,2.0,83.0,1.0,3.0,238.0,2735.0,203.0,359.0,72.0,2.0,76.8,304.0,230.0,4593873.0,75.0,389.0,326.0,27.0,10.0,860.0,695.0,199.0,28.0,2934.0,140.0,191.0,8.0,393.0,511.0,235.0,130.0,224.0,249.0,105.0,685.0,581.0,937.0,308.0,1456.0,1189.0,249.0,174.0,1896.0,50.33333333333334,355.0,762.0,82.0,817.0,169.0,188.0,146.4,477.0,438.0,4.0,663.0,40.0,1568.0,1.0,1.0,536.0,28.0,1010.0,1089.0,333.0,164.0,221.0,12.0,17.0,50.0,84.0,921.0,670.0,32.0,381.0,2.0,427.0,18.0,84.0,125.0,55.0,723.0,226.0,62.0,6.0,221.0,42.0,242.0,94.0,468.0,486.0,0.0,3011.0,236.0,104.0,1078.0,831.0,185.0,1.0,455.0,6.0,515.0,19.0,56.0,656.0,1.0,58.0,2.0,257.0,18.0,569.0,86.0,2751.0,60.0,864.0,52.0,48.0,25.0,730.0,259.0,77.0,288.0,408.0,5.0,57.0,18.0,55.0,1009.0,2763.0,246.0,1202.0,295.0,21.0,51.0,201.0,17.0,492.0,629.0,68.0,1159.0,415.0,1045.0,509.0,7.0,73.0,234.0,133.0,115.0,270.0,2.0,18.0,132.0,144.0,0.0,1978.5,4125.0,18.0,39.0,659.0,69.0,189.0,165.0,4995.0,2.0,80.0,2.0,1.0,282.0,866.0,139.0,79.0,30.0,16.0,1139.0,277.0,126.0,2.0,0.0,2018-01-14,,2018-2,14.731244196380665,13.928, +273,273,13.87,255.0,17.0,299.0,1.0,302.0,402.0,114.0,167.0,303.0,773.0,2.0,264.0,55.0,1.0,1635.0,331.0,217.0,41.0,322.0,1.0,0.0,2.0,124.0,56.0,3125.0,30.0,604.0,32.0,437.0,0.0,1.0,11.0,1519.0,256.0,1169.0,64.0,203.0,222.0,149.0,414.0,417.0,44.0,0.0,0.0,167.0,25.0,112.0,2649.0,2.0,156.0,21.0,2084.0,76.0,161.0,77.0,398.0,1221.0,31.0,142.0,2.0,731.0,275.0,36.0,615.0,18.0,10.0,18.0,152.0,411.0,368.0,183.0,1811.0,873.0,850.0,22.0,66.0,106.0,931.0,100.0,5.0,5.0,18.0,88.0,261.0,131.0,220.0,1033.0,81.0,192.0,91.0,614.0,3.0,2565.0,4976.0,5708.0,393.0,586.0,97.0,227.0,149.0,111.0,128.0,2006.0,1482.0,9.0,113.0,228.0,80.0,101.0,344.0,2047.0,63.0,15.0,1118.0,329.0,4592.0,173.0,71.0,16.0,38.0,75.0,17.0,15.0,42.0,6.0,2130.0,61.0,117.0,235.0,14.0,54.0,1501.0,84.4,15.0,5.0,461.0,153.0,1655.0,8.0,75.2,217.0,0.0,1.0,462.0,2994.0,503.0,72.0,508.0,202.0,4008.0,638.0,2616.0,69.0,172.0,451.0,1009.0,149.0,160.0,151.0,6.0,1876.0,339.0,469.0,0.0,2293.0,2.0,0.0,1.0,2.0,2143.0,2939.0,1662.0,1332.0,22.0,90.0,420.0,16.0,316.0,214.0,32.0,227.0,1290.0,198.0,208.0,40.0,408.0,421.0,106.0,833.0,533.0,48.0,136.0,676.0,1040.0,344.0,442.0,6.0,38.0,884.0,212.0,268.0,206.0,0.0,92.0,2.0,2.0,214.0,3998.0,248.0,400.0,100.0,0.0,84.2,277.0,235.0,4604508.0,72.0,403.0,361.0,21.0,11.0,947.0,727.0,174.0,31.0,2688.0,227.0,271.0,7.0,216.0,641.0,262.0,116.0,222.0,277.0,138.0,669.0,548.0,941.0,343.0,1292.0,1417.0,275.0,129.0,1649.0,56.5,413.0,807.0,83.0,856.0,170.0,228.0,164.6,415.0,523.0,0.0,626.0,26.0,1390.0,2.0,1.0,584.0,46.0,774.0,1189.0,310.0,151.0,283.0,13.0,7.0,42.0,93.0,923.0,623.0,35.0,428.0,2.0,521.0,16.0,64.0,145.0,41.0,703.0,263.0,43.0,9.0,231.0,38.0,202.0,94.0,474.0,538.0,2.0,2979.0,236.0,79.0,1093.0,829.0,218.0,1.0,349.0,10.0,473.0,16.0,37.0,706.0,1.0,51.0,2.0,286.0,9.0,526.0,94.0,2873.0,49.0,1027.0,54.0,68.0,20.0,763.0,328.0,70.0,270.0,384.0,2.0,64.0,4.0,63.0,1331.0,3233.0,279.0,1733.0,530.0,16.0,35.0,191.0,25.0,471.0,818.0,81.0,1257.0,414.0,1073.0,661.0,11.0,90.0,428.0,146.0,136.0,249.0,3.0,25.0,116.0,152.0,3.0,2051.75,3898.0,27.0,39.0,474.0,67.0,197.0,169.0,4923.0,0.0,113.0,2.0,1.0,265.0,813.0,107.0,81.0,25.0,18.0,1088.0,315.0,120.0,0.0,2.0,2018-01-21,,2018-3,13.852084605296357,13.240000000000002, +274,274,12.69,201.0,12.0,151.0,0.0,291.0,490.0,127.0,154.0,347.0,771.0,1.0,368.0,65.0,1.0,1688.0,372.0,196.0,54.0,353.0,1.0,5.0,3.0,153.0,61.0,2940.0,29.0,627.0,38.0,284.0,2.0,0.0,9.0,1495.0,1475.0,1142.0,87.0,212.0,301.0,184.0,370.0,425.0,46.0,3.0,2.0,126.0,20.0,102.0,4248.0,5.0,137.0,19.0,1982.0,77.0,160.0,79.0,388.0,1237.0,37.0,134.0,4.0,705.0,219.0,57.0,552.0,16.0,9.0,14.0,139.0,416.0,368.0,152.0,1283.0,842.0,829.0,30.0,66.0,119.0,1021.0,97.0,9.0,9.0,20.0,76.0,258.0,134.0,220.0,1014.0,101.0,182.0,76.0,659.0,3.0,2663.0,4937.0,6210.0,341.0,548.0,111.0,185.0,78.0,286.0,155.0,1714.0,1510.0,21.0,96.0,210.0,94.0,71.0,375.0,2107.0,74.0,21.0,10445.0,303.0,4746.0,238.0,101.0,21.0,36.0,87.0,19.0,27.0,43.0,6.0,2000.0,54.0,138.0,288.0,11.0,64.0,1659.0,85.2,9.0,5.0,430.0,175.0,1339.0,14.0,85.6,216.0,0.0,7.0,486.0,2844.0,550.0,73.0,359.0,99.0,3870.0,1838.0,2292.0,59.0,139.0,464.0,1513.0,142.0,223.0,106.0,5.0,1945.0,678.0,714.0,0.0,2520.0,2.0,0.0,1.0,1.0,2174.0,3304.0,1445.0,1366.0,31.0,86.0,390.0,11.0,356.0,180.0,18.0,210.0,1217.0,186.0,211.0,41.0,442.0,332.0,111.0,929.0,468.0,28.0,106.0,664.0,990.0,292.0,548.0,8.0,49.0,559.0,215.0,281.0,186.0,0.0,72.0,2.0,2.0,331.0,3133.0,200.0,371.0,74.0,0.0,91.6,295.0,224.0,4447849.0,61.0,366.0,305.0,24.0,6.0,975.0,579.0,182.0,37.0,2563.0,207.0,305.0,8.0,350.0,415.0,228.0,128.0,234.0,239.0,118.0,618.0,647.0,962.0,277.0,1199.0,1347.0,284.0,121.0,1547.0,62.66666666666667,385.0,804.0,110.0,838.0,201.0,218.0,182.8,428.0,516.0,3.0,588.0,30.0,1303.0,0.0,0.0,524.0,32.0,789.0,1177.0,340.0,161.0,253.0,7.0,8.0,78.0,83.0,911.0,646.0,37.0,411.0,2.0,508.0,33.0,74.0,116.0,69.0,749.0,188.0,59.0,7.0,201.0,39.0,159.0,119.0,388.0,472.0,1.0,3187.0,207.0,110.0,1075.0,806.0,244.0,1.0,327.0,0.0,514.0,15.0,54.0,580.0,0.0,61.0,3.0,294.0,1.0,472.0,93.0,2903.0,51.0,2804.0,46.0,55.0,24.0,681.0,298.0,80.0,294.0,349.0,8.0,76.0,11.0,38.0,998.0,2708.0,225.0,1656.0,498.0,27.0,45.0,212.0,13.0,471.0,492.0,61.0,1177.0,386.0,1032.0,535.0,8.0,77.0,463.0,122.0,100.0,214.0,3.0,17.0,124.0,135.0,1.0,2125.0,3778.0,25.0,53.0,611.0,74.0,231.0,163.0,4540.0,0.0,89.0,1.0,0.0,394.0,763.0,143.0,69.0,32.0,26.0,1204.0,330.0,132.0,0.0,0.0,2018-01-28,,2018-4,12.679684659833526,10.152, +275,275,10.72,343.0,20.0,148.0,2.0,270.0,453.0,127.0,127.0,293.0,808.0,1.0,372.0,47.0,2.0,1383.0,253.0,170.0,42.0,291.0,1.0,1.0,5.0,145.0,53.0,2578.0,41.0,579.0,43.0,248.0,4.0,0.0,9.0,1333.0,284.0,860.0,76.0,166.0,549.0,132.0,424.0,350.0,54.0,3.0,0.0,120.0,24.0,87.0,2296.0,4.0,123.0,23.0,1774.0,62.0,125.0,76.0,292.0,1118.0,42.0,130.0,4.0,688.0,272.0,45.0,499.0,11.0,5.0,23.0,133.0,321.0,314.0,129.0,1148.0,718.0,712.0,15.0,66.0,134.0,801.0,104.0,10.0,4.0,20.0,61.0,350.0,107.0,213.0,869.0,99.0,157.0,86.0,541.0,2.0,3138.0,4249.0,5264.0,298.0,454.0,109.0,188.0,69.0,170.0,140.0,1494.0,1259.0,11.0,91.0,228.0,74.0,71.0,284.0,1915.0,62.0,21.0,1630.0,282.0,3752.0,192.0,76.0,8.0,25.0,82.0,13.0,15.0,29.0,6.0,2004.0,67.0,146.0,242.0,5.0,53.0,1352.0,86.0,2.0,4.0,349.0,130.0,1202.0,4.0,96.0,208.0,0.0,1.0,443.0,2614.0,516.0,57.0,244.0,115.0,3180.0,2072.0,1853.0,76.0,146.0,411.0,885.0,157.0,135.0,112.0,2.0,1779.0,396.0,543.0,1.0,1992.0,2.0,1.0,1.0,1.0,1795.0,2260.0,1342.0,1257.0,15.0,85.0,366.0,8.0,341.0,133.0,23.0,270.0,1208.0,143.0,173.0,42.0,358.0,590.0,88.0,805.0,408.0,33.0,99.0,557.0,866.0,244.0,394.0,7.0,47.0,487.0,164.0,207.0,180.0,0.0,72.0,0.0,0.0,285.0,2320.0,213.0,361.0,57.0,0.0,99.0,258.0,188.0,4135009.0,59.0,265.0,258.0,18.0,8.0,817.0,560.0,225.0,29.0,2469.0,141.0,223.0,5.0,324.0,366.0,225.0,126.0,185.0,250.0,138.0,589.0,481.0,800.0,292.0,1115.0,1239.0,229.0,100.0,1469.0,68.83333333333334,307.0,697.0,76.0,687.0,169.0,198.0,201.0,404.0,322.0,5.0,566.0,25.0,1131.0,1.0,1.0,478.0,17.0,1828.0,918.0,283.0,146.0,215.0,5.0,2.0,61.0,35.0,827.0,493.0,23.0,341.0,1.0,470.0,16.0,48.0,104.0,36.0,572.0,227.0,46.0,9.0,218.0,36.0,137.0,119.0,462.0,505.0,0.0,3099.0,193.0,64.0,818.0,730.0,179.0,0.0,322.0,1.0,465.0,13.0,40.0,419.0,0.0,47.0,8.0,265.0,0.0,486.0,94.0,2423.0,39.0,1664.0,27.0,54.0,23.0,625.0,281.0,59.0,244.0,316.0,1.0,52.0,7.0,53.0,830.0,2431.0,184.0,1066.0,362.0,16.0,43.0,180.0,11.0,358.0,392.0,51.0,1027.0,372.0,905.0,452.0,7.0,93.0,269.0,120.0,119.0,236.0,1.0,15.0,112.0,96.0,1.0,1907.0,3290.0,27.0,49.0,578.0,69.0,187.0,146.0,4072.0,2.0,92.0,3.0,0.0,286.0,626.0,133.0,53.0,40.0,18.0,1007.0,268.0,132.0,0.0,3.0,2018-02-04,,2018-5,10.747967640765669,10.661999999999999, +276,276,8.97,185.0,19.0,137.0,0.0,203.0,342.0,119.0,98.0,258.0,370.0,2.0,265.0,46.0,0.0,1365.0,223.0,157.0,29.0,243.0,0.0,1.0,2.0,111.0,41.0,2051.0,36.0,432.0,22.0,156.0,6.0,1.0,10.0,1164.0,204.0,965.0,67.0,158.0,275.0,135.0,293.0,343.0,35.0,5.0,1.0,87.0,30.0,70.0,1790.0,4.0,103.0,20.0,1526.0,44.0,116.0,55.0,272.0,928.0,22.0,103.0,5.0,544.0,178.0,21.0,393.0,11.0,4.0,6.0,116.0,314.0,277.0,130.0,981.0,663.0,631.0,17.0,100.0,109.0,646.0,95.0,5.0,8.0,11.0,64.0,229.0,82.0,159.0,736.0,60.0,99.0,73.0,479.0,0.0,2245.0,3768.0,4222.0,263.0,496.0,75.0,100.0,52.0,96.0,127.0,1290.0,996.0,8.0,75.0,219.0,77.0,68.0,298.0,1841.0,50.0,16.0,843.0,250.0,2904.0,153.0,63.0,8.0,22.0,74.0,33.0,15.0,26.0,6.0,2027.0,59.0,92.0,289.0,6.0,39.0,2909.0,93.0,9.0,1.0,321.0,111.0,1197.0,7.0,96.0,163.0,2.0,3.0,364.0,2241.0,409.0,49.0,180.0,72.0,2035.0,6489.0,2239.0,59.0,132.0,357.0,784.0,117.0,111.0,101.0,6.0,1711.0,296.0,468.0,0.0,1827.0,0.0,0.0,0.0,1.0,1530.0,4052.0,1287.0,1137.0,22.0,74.0,356.0,5.0,245.0,156.0,16.0,166.0,977.0,98.0,135.0,40.0,300.0,281.0,67.0,605.0,362.0,26.0,89.0,461.0,785.0,247.0,364.0,7.0,35.0,305.0,170.0,200.0,158.0,0.0,52.0,2.0,0.0,223.0,2031.0,196.0,313.0,58.0,0.0,111.0,237.0,196.0,3607333.0,55.0,210.0,268.0,18.0,9.0,681.0,422.0,163.0,15.0,2733.0,132.0,148.0,1.0,746.0,329.0,161.0,107.0,167.0,261.0,102.0,480.0,439.0,704.0,222.0,1021.0,975.0,226.0,102.0,1287.0,75.0,336.0,565.0,80.0,625.0,139.0,174.0,195.0,349.0,313.0,6.0,511.0,29.0,1019.0,1.0,0.0,371.0,16.0,673.0,869.0,237.0,125.0,218.0,5.0,3.0,55.0,7.0,700.0,419.0,17.0,347.0,1.0,422.0,17.0,40.0,97.0,52.0,518.0,174.0,51.0,4.0,192.0,32.0,171.0,92.0,476.0,416.0,0.0,2446.0,151.0,64.0,755.0,681.0,194.0,0.0,247.0,0.0,338.0,23.0,37.0,512.0,0.0,28.0,2.0,213.0,0.0,412.0,60.0,2934.0,35.0,841.0,35.0,45.0,19.0,494.0,261.0,66.0,225.0,289.0,1.0,92.0,6.0,42.0,758.0,2014.0,162.0,869.0,344.0,16.0,36.0,111.0,13.0,299.0,317.0,46.0,721.0,330.0,941.0,385.0,12.0,72.0,187.0,90.0,87.0,202.0,4.0,31.0,85.0,80.0,2.0,1645.0,2723.0,23.0,33.0,881.0,64.0,151.0,116.0,3691.0,1.0,87.0,2.0,0.0,247.0,696.0,554.0,55.0,24.0,20.0,898.0,220.0,114.0,0.0,0.0,2018-02-11,,2018-6,8.972120458025966,7.859999999999999, +277,277,7.12,210.0,22.0,148.0,5.0,283.0,460.0,118.0,99.0,346.0,451.0,4.0,351.0,56.0,0.0,1591.0,310.0,193.0,43.0,354.0,3.0,4.0,4.0,117.0,61.0,3181.0,36.0,571.0,29.0,214.0,4.0,3.0,16.0,1535.0,283.0,951.0,104.0,169.0,315.0,152.0,354.0,366.0,45.0,3.0,1.0,122.0,29.0,97.0,4221.0,8.0,163.0,27.0,1897.0,66.0,145.0,95.0,320.0,1048.0,37.0,100.0,3.0,738.0,224.0,49.0,536.0,15.0,17.0,18.0,126.0,409.0,331.0,146.0,1133.0,758.0,786.0,13.0,59.0,99.0,818.0,101.0,10.0,15.0,20.0,68.0,467.0,130.0,200.0,972.0,98.0,130.0,81.0,549.0,1.0,3300.0,4740.0,5596.0,335.0,570.0,86.0,150.0,78.0,210.0,146.0,1644.0,1104.0,9.0,121.0,240.0,74.0,48.0,317.0,2401.0,52.0,15.0,1062.0,306.0,3423.0,182.0,167.0,7.0,54.0,151.0,23.0,13.0,24.0,8.0,1655.0,55.0,116.0,265.0,23.0,53.0,2461.0,109.0,6.0,2.0,421.0,153.0,1304.0,5.0,117.0,198.0,1.0,7.0,445.0,2612.0,572.0,60.0,213.0,99.0,3228.0,594.0,1170.0,69.0,129.0,394.0,867.0,146.0,141.0,134.0,4.0,1864.0,303.0,525.0,2.0,2095.0,4.0,1.0,2.0,2.0,1986.0,2682.0,1577.0,1254.0,46.0,93.0,362.0,11.0,289.0,165.0,24.0,253.0,1144.0,161.0,229.0,59.0,319.0,336.0,117.0,657.0,484.0,32.0,127.0,642.0,961.0,277.0,412.0,7.0,56.0,339.0,181.0,246.0,167.0,3.0,59.0,1.0,0.0,248.0,2439.0,209.0,330.0,62.0,2.0,153.0,263.0,199.0,4482988.0,55.0,217.0,220.0,18.0,17.0,879.0,686.0,180.0,22.0,2505.0,175.0,258.0,4.0,185.0,440.0,248.0,132.0,256.0,309.0,136.0,578.0,471.0,882.0,321.0,1349.0,1158.0,244.0,124.0,1666.0,92.0,386.0,733.0,97.0,801.0,153.0,216.0,213.0,388.0,372.0,3.0,580.0,30.0,1131.0,2.0,0.0,476.0,15.0,888.0,1163.0,280.0,200.0,269.0,4.0,4.0,59.0,10.0,892.0,442.0,34.0,302.0,4.0,587.0,28.0,51.0,142.0,29.0,429.0,233.0,53.0,7.0,245.0,34.0,149.0,94.0,444.0,469.0,1.0,3366.0,219.0,87.0,936.0,715.0,148.0,1.0,300.0,3.0,444.0,11.0,45.0,435.0,0.0,57.0,1.0,290.0,3.0,447.0,89.0,2629.0,38.0,949.0,47.0,57.0,22.0,679.0,268.0,68.0,241.0,347.0,3.0,37.0,7.0,49.0,807.0,2308.0,180.0,1109.0,334.0,22.0,53.0,165.0,17.0,371.0,267.0,48.0,968.0,352.0,976.0,412.0,9.0,70.0,222.0,103.0,107.0,245.0,3.0,31.0,103.0,86.0,4.0,2113.0,3386.0,26.0,55.0,488.0,68.0,179.0,154.0,7240.0,4.0,89.0,3.0,1.0,245.0,1009.0,801.0,58.0,48.0,28.0,1083.0,273.0,134.0,1.0,0.0,2018-02-18,,2018-7,7.117189232589617,6.966000000000001, +278,278,6.24,236.0,21.0,186.0,0.0,353.0,429.0,97.0,117.0,311.0,447.0,2.0,384.0,57.0,1.0,1657.0,335.0,138.0,43.0,412.0,1.0,0.0,3.0,136.0,53.0,4284.0,32.0,609.0,37.0,223.0,0.0,7.0,15.0,1504.0,1139.0,954.0,80.0,113.0,1488.0,150.0,367.0,345.0,39.0,2.0,1.0,113.0,26.0,89.0,2568.0,5.0,160.0,22.0,2046.0,83.0,132.0,65.0,325.0,1157.0,39.0,125.0,0.0,702.0,242.0,27.0,532.0,19.0,12.0,22.0,141.0,338.0,452.0,188.0,1240.0,676.0,936.0,23.0,131.0,179.0,911.0,93.0,4.0,4.0,28.0,98.0,321.0,127.0,248.0,1009.0,109.0,177.0,91.0,556.0,1.0,3367.0,5252.0,7248.0,423.0,648.0,103.0,156.0,73.0,300.0,153.0,1926.0,1121.0,12.0,128.0,227.0,51.0,69.0,289.0,2435.0,48.0,10.0,979.0,346.0,3183.0,234.0,104.0,9.0,54.0,91.0,24.0,16.0,28.0,3.0,2025.0,66.0,110.0,304.0,10.0,55.0,2066.0,103.0,10.0,3.0,349.0,125.0,1321.0,13.0,124.0,189.0,2.0,3.0,418.0,2869.0,625.0,67.0,152.0,145.0,2354.0,408.0,1059.0,74.0,133.0,422.0,884.0,127.0,110.0,136.0,4.0,2239.0,322.0,535.0,1.0,2203.0,0.0,0.0,0.0,0.0,2020.0,2307.0,1641.0,1183.0,18.0,92.0,403.0,21.0,306.0,196.0,34.0,218.0,1167.0,240.0,215.0,69.0,398.0,1634.0,72.0,724.0,470.0,22.0,111.0,613.0,1020.0,340.0,457.0,9.0,41.0,392.0,176.0,284.0,167.0,1.0,59.0,1.0,0.0,219.0,2573.0,251.0,343.0,65.0,0.0,120.0,305.0,208.0,4434194.0,42.0,196.0,184.0,18.0,7.0,918.0,508.0,222.0,33.0,2567.0,139.0,284.0,7.0,126.0,563.0,270.0,139.0,217.0,296.0,136.0,683.0,527.0,940.0,273.0,1289.0,1181.0,230.0,167.0,1806.0,78.0,380.0,778.0,114.0,838.0,171.0,236.0,237.0,403.0,407.0,6.0,665.0,41.0,1183.0,0.0,2.0,526.0,28.0,868.0,1184.0,284.0,172.0,367.0,7.0,9.0,66.0,5.0,828.0,512.0,23.0,285.0,4.0,540.0,32.0,96.0,149.0,40.0,388.0,239.0,56.0,12.0,243.0,37.0,199.0,113.0,359.0,466.0,0.0,3401.0,178.0,68.0,972.0,797.0,113.0,0.0,391.0,3.0,474.0,10.0,65.0,542.0,0.0,66.0,2.0,346.0,1.0,423.0,81.0,2801.0,44.0,720.0,38.0,66.0,30.0,670.0,268.0,93.0,300.0,382.0,1.0,108.0,12.0,54.0,1048.0,2696.0,194.0,1742.0,294.0,28.0,46.0,163.0,16.0,346.0,247.0,41.0,1018.0,340.0,1071.0,444.0,6.0,60.0,594.0,146.0,99.0,268.0,3.0,22.0,118.0,68.0,1.0,2163.0,3476.0,29.0,64.0,399.0,45.0,158.0,140.0,7668.0,0.0,106.0,1.0,0.0,197.0,809.0,240.0,95.0,27.0,16.0,1159.0,324.0,168.0,0.0,0.0,2018-02-25,,2018-8,6.2290460922829745,6.240000000000001, +279,279,4.74,212.0,25.0,120.0,0.0,266.0,525.0,99.0,82.0,233.0,411.0,1.0,231.0,42.0,0.0,1377.0,231.0,124.0,40.0,284.0,2.0,1.0,4.0,113.0,29.0,3648.0,30.0,504.0,36.0,175.0,7.0,1.0,8.0,1298.0,655.0,849.0,69.0,104.0,553.0,121.0,386.0,347.0,40.0,2.0,0.0,117.0,23.0,115.0,1890.0,4.0,109.0,45.0,1817.0,76.0,135.0,83.0,311.0,1024.0,31.0,135.0,0.0,590.0,236.0,31.0,453.0,8.0,4.0,15.0,120.0,360.0,499.0,155.0,1216.0,581.0,779.0,13.0,79.0,67.0,813.0,100.0,5.0,7.0,25.0,103.0,356.0,114.0,171.0,1015.0,81.0,152.0,66.0,527.0,1.0,2370.0,4246.0,5398.0,239.0,516.0,82.0,151.0,62.0,457.0,125.0,2032.0,1008.0,7.0,94.0,177.0,52.0,59.0,218.0,2151.0,35.0,12.0,818.0,292.0,2864.0,127.0,76.0,7.0,33.0,160.0,23.0,16.0,17.0,5.0,1295.0,53.0,70.0,251.0,11.0,56.0,1863.0,58.0,7.0,3.0,237.0,119.0,1066.0,25.0,65.0,143.0,0.0,3.0,380.0,2115.0,449.0,73.0,142.0,58.0,2279.0,260.0,710.0,61.0,73.0,344.0,955.0,148.0,130.0,119.0,7.0,3380.0,311.0,370.0,2.0,1824.0,0.0,1.0,1.0,3.0,1874.0,1896.0,1664.0,1146.0,30.0,86.0,361.0,8.0,265.0,186.0,19.0,187.0,1069.0,113.0,169.0,181.0,268.0,1467.0,63.0,616.0,393.0,23.0,82.0,486.0,741.0,246.0,478.0,13.0,65.0,341.0,143.0,201.0,144.0,1.0,57.0,2.0,2.0,197.0,2238.0,226.0,289.0,59.0,2.0,81.0,204.0,219.0,4373743.0,56.0,127.0,109.0,14.0,10.0,820.0,507.0,171.0,15.0,1996.0,145.0,261.0,4.0,90.0,341.0,189.0,114.0,186.0,165.0,89.0,532.0,504.0,736.0,252.0,1410.0,1035.0,210.0,142.0,2181.0,45.0,280.0,601.0,80.0,593.0,111.0,218.0,129.0,345.0,297.0,5.0,550.0,44.0,1045.0,2.0,0.0,527.0,19.0,704.0,1031.0,281.0,151.0,272.0,9.0,12.0,39.0,8.0,702.0,418.0,23.0,185.0,3.0,347.0,18.0,109.0,116.0,29.0,372.0,217.0,51.0,2.0,176.0,25.0,190.0,79.0,294.0,321.0,4.0,3123.0,146.0,86.0,836.0,766.0,106.0,1.0,302.0,4.0,397.0,21.0,84.0,493.0,2.0,80.0,2.0,263.0,0.0,367.0,95.0,2373.0,68.0,597.0,32.0,44.0,10.0,594.0,250.0,57.0,265.0,321.0,0.0,174.0,9.0,45.0,887.0,2396.0,214.0,1251.0,269.0,14.0,33.0,158.0,14.0,313.0,193.0,52.0,923.0,290.0,929.0,471.0,5.0,59.0,317.0,110.0,84.0,179.0,10.0,33.0,78.0,73.0,1.0,1859.0,2930.0,27.0,33.0,349.0,44.0,143.0,124.0,7854.0,1.0,80.0,4.0,0.0,199.0,677.0,211.0,63.0,22.0,19.0,928.0,216.0,161.0,0.0,1.0,2018-03-04,,2018-9,4.746736695730778,3.818, +280,280,3.62,121.0,13.0,92.0,1.0,208.0,414.0,51.0,63.0,183.0,329.0,0.0,166.0,30.0,0.0,1087.0,146.0,99.0,47.0,212.0,1.0,2.0,4.0,105.0,28.0,2558.0,23.0,445.0,26.0,129.0,1.0,0.0,3.0,1042.0,279.0,574.0,71.0,69.0,734.0,57.0,316.0,241.0,23.0,3.0,0.0,76.0,22.0,62.0,1505.0,5.0,287.0,12.0,1418.0,55.0,67.0,55.0,212.0,1159.0,26.0,80.0,1.0,612.0,152.0,22.0,278.0,12.0,2.0,10.0,90.0,264.0,221.0,102.0,798.0,422.0,516.0,9.0,46.0,66.0,527.0,63.0,8.0,7.0,9.0,59.0,237.0,107.0,157.0,540.0,56.0,102.0,44.0,425.0,5.0,1649.0,3229.0,3704.0,189.0,375.0,98.0,136.0,26.0,97.0,97.0,1305.0,774.0,3.0,60.0,181.0,27.0,51.0,129.0,1799.0,34.0,8.0,952.0,242.0,1999.0,89.0,58.0,6.0,35.0,243.0,5.0,5.0,20.0,3.0,1133.0,51.0,74.0,163.0,6.0,46.0,1616.0,49.0,4.0,5.0,166.0,58.0,837.0,8.0,30.0,127.0,2.0,1.0,330.0,1642.0,333.0,61.0,78.0,45.0,1646.0,150.0,485.0,38.0,59.0,279.0,700.0,97.0,86.0,105.0,3.0,1117.0,250.0,344.0,1.0,1611.0,2.0,1.0,1.0,1.0,1399.0,1447.0,1065.0,859.0,25.0,57.0,279.0,11.0,198.0,164.0,14.0,136.0,1506.0,136.0,142.0,45.0,182.0,290.0,39.0,480.0,315.0,11.0,47.0,394.0,520.0,183.0,320.0,3.0,46.0,280.0,109.0,155.0,131.0,0.0,51.0,2.0,1.0,134.0,1764.0,134.0,211.0,73.0,0.0,49.0,144.0,167.0,3166404.0,52.0,96.0,91.0,18.0,2.0,572.0,323.0,187.0,17.0,1659.0,101.0,204.0,3.0,75.0,266.0,138.0,77.0,122.0,177.0,58.0,417.0,361.0,613.0,208.0,1025.0,766.0,136.0,68.0,1603.0,17.0,204.0,423.0,74.0,455.0,100.0,139.0,93.0,248.0,265.0,4.0,403.0,13.0,806.0,1.0,1.0,394.0,13.0,602.0,813.0,211.0,136.0,200.0,6.0,3.0,37.0,2.0,575.0,259.0,25.0,139.0,0.0,219.0,7.0,68.0,75.0,29.0,236.0,126.0,59.0,1.0,150.0,27.0,122.0,70.0,188.0,253.0,2.0,2892.0,87.0,55.0,732.0,752.0,67.0,0.0,368.0,2.0,298.0,11.0,34.0,477.0,1.0,32.0,2.0,197.0,3.0,241.0,89.0,1963.0,38.0,383.0,17.0,46.0,15.0,495.0,156.0,52.0,171.0,245.0,6.0,73.0,9.0,30.0,788.0,1887.0,148.0,984.0,234.0,9.0,26.0,101.0,11.0,225.0,119.0,34.0,719.0,260.0,801.0,363.0,4.0,39.0,206.0,75.0,75.0,155.0,7.0,25.0,88.0,56.0,3.0,1676.0,2251.0,46.0,34.0,329.0,20.0,166.0,85.0,6746.0,2.0,46.0,0.0,1.0,204.0,491.0,162.0,43.0,6.0,17.0,747.0,173.0,122.0,0.0,1.0,2018-03-11,,2018-10,3.6221978795279988,4.306, +281,281,2.63,160.0,18.0,155.0,0.0,352.0,392.0,67.0,113.0,262.0,390.0,2.0,221.0,39.0,0.0,1298.0,177.0,127.0,49.0,293.0,0.0,1.0,2.0,120.0,51.0,2154.0,26.0,430.0,34.0,179.0,5.0,3.0,9.0,1255.0,195.0,808.0,68.0,116.0,299.0,69.0,384.0,290.0,19.0,11.0,0.0,111.0,23.0,70.0,1948.0,2.0,154.0,22.0,1872.0,74.0,109.0,61.0,294.0,1105.0,23.0,117.0,1.0,1335.0,196.0,29.0,392.0,8.0,6.0,18.0,75.0,362.0,278.0,155.0,1037.0,554.0,893.0,22.0,42.0,78.0,760.0,97.0,6.0,5.0,10.0,101.0,237.0,131.0,200.0,575.0,59.0,151.0,71.0,561.0,7.0,2303.0,4146.0,4448.0,242.0,421.0,105.0,80.0,38.0,323.0,106.0,1548.0,931.0,10.0,116.0,205.0,53.0,63.0,150.0,2050.0,34.0,5.0,938.0,283.0,2338.0,128.0,61.0,5.0,123.0,265.0,10.0,12.0,17.0,2.0,1202.0,31.0,83.0,255.0,5.0,36.0,1515.0,66.0,15.0,2.0,219.0,95.0,1562.0,13.0,74.0,149.0,0.0,2.0,486.0,2394.0,364.0,62.0,115.0,51.0,2824.0,328.0,567.0,46.0,80.0,325.0,769.0,100.0,133.0,121.0,3.0,1325.0,317.0,494.0,1.0,1996.0,0.0,1.0,2.0,1.0,1952.0,1604.0,1777.0,1085.0,23.0,83.0,381.0,7.0,276.0,189.0,14.0,188.0,1138.0,195.0,193.0,55.0,254.0,341.0,56.0,652.0,405.0,24.0,69.0,505.0,702.0,224.0,335.0,4.0,40.0,385.0,151.0,209.0,169.0,1.0,36.0,0.0,2.0,194.0,2496.0,157.0,301.0,74.0,2.0,81.0,174.0,187.0,3640916.0,61.0,153.0,98.0,17.0,2.0,795.0,474.0,183.0,7.0,2295.0,106.0,342.0,24.0,108.0,426.0,183.0,105.0,154.0,265.0,104.0,497.0,439.0,759.0,288.0,1099.0,968.0,226.0,104.0,1835.0,51.0,292.0,593.0,85.0,620.0,135.0,237.0,119.0,313.0,344.0,8.0,572.0,24.0,1056.0,0.0,1.0,563.0,17.0,581.0,966.0,293.0,177.0,294.0,3.0,8.0,67.0,9.0,635.0,378.0,16.0,209.0,0.0,263.0,19.0,62.0,99.0,40.0,425.0,213.0,54.0,10.0,161.0,33.0,202.0,130.0,250.0,280.0,2.0,2674.0,114.0,134.0,924.0,804.0,56.0,0.0,361.0,1.0,415.0,21.0,144.0,582.0,0.0,50.0,4.0,277.0,0.0,331.0,61.0,2460.0,35.0,479.0,33.0,47.0,25.0,576.0,178.0,68.0,257.0,404.0,0.0,88.0,9.0,37.0,1203.0,2758.0,201.0,1509.0,276.0,16.0,50.0,181.0,16.0,312.0,114.0,45.0,1038.0,332.0,1078.0,495.0,8.0,49.0,303.0,118.0,83.0,203.0,3.0,25.0,97.0,74.0,6.0,1899.0,2949.0,55.0,27.0,457.0,40.0,119.0,115.0,8730.0,0.0,50.0,2.0,0.0,217.0,594.0,162.0,59.0,8.0,19.0,932.0,245.0,131.0,1.0,0.0,2018-03-18,,2018-11,2.6226373176636883,5.248000000000001, +282,282,2.15,186.0,17.0,124.0,1.0,349.0,422.0,112.0,132.0,243.0,341.0,2.0,255.0,40.0,0.0,1351.0,212.0,133.0,42.0,327.0,1.0,0.0,6.0,117.0,49.0,2345.0,32.0,469.0,40.0,223.0,0.0,1.0,9.0,1310.0,222.0,916.0,93.0,118.0,299.0,113.0,373.0,466.0,40.0,2.0,0.0,143.0,19.0,89.0,2094.0,3.0,159.0,16.0,2004.0,90.0,117.0,91.0,350.0,1080.0,28.0,393.0,3.0,745.0,204.0,30.0,439.0,8.0,10.0,19.0,110.0,294.0,363.0,186.0,1129.0,610.0,863.0,24.0,48.0,102.0,874.0,86.0,11.0,6.0,23.0,109.0,265.0,165.0,214.0,701.0,95.0,143.0,99.0,624.0,5.0,2393.0,4683.0,5207.0,219.0,557.0,92.0,43.0,49.0,128.0,108.0,1926.0,968.0,12.0,99.0,189.0,53.0,39.0,177.0,2074.0,34.0,19.0,941.0,296.0,2463.0,157.0,68.0,13.0,41.0,100.0,20.0,16.0,16.0,0.0,1234.0,96.0,83.0,296.0,6.0,60.0,1591.0,81.0,10.0,6.0,278.0,120.0,1191.0,13.0,93.0,167.0,3.0,1.0,468.0,2695.0,496.0,45.0,91.0,31.0,2105.0,246.0,599.0,42.0,104.0,376.0,739.0,149.0,105.0,105.0,6.0,1701.0,328.0,473.0,1.0,2595.0,0.0,1.0,1.0,2.0,2319.0,1783.0,1690.0,1202.0,36.0,113.0,405.0,11.0,207.0,196.0,26.0,207.0,1255.0,126.0,216.0,75.0,273.0,314.0,53.0,673.0,510.0,22.0,101.0,568.0,776.0,267.0,455.0,9.0,65.0,498.0,164.0,237.0,202.0,0.0,58.0,1.0,1.0,195.0,2307.0,175.0,294.0,84.0,0.0,92.0,190.0,241.0,4395304.0,60.0,143.0,121.0,18.0,11.0,805.0,1168.0,200.0,18.0,2029.0,129.0,400.0,9.0,100.0,461.0,214.0,164.0,175.0,228.0,108.0,589.0,477.0,827.0,323.0,1149.0,1183.0,250.0,125.0,1991.0,39.0,280.0,667.0,96.0,663.0,132.0,188.0,196.0,332.0,344.0,3.0,555.0,35.0,1148.0,2.0,0.0,527.0,31.0,637.0,846.0,306.0,137.0,283.0,5.0,6.0,70.0,3.0,720.0,498.0,23.0,193.0,3.0,362.0,18.0,44.0,107.0,28.0,435.0,233.0,69.0,7.0,202.0,33.0,202.0,81.0,280.0,314.0,1.0,2843.0,156.0,76.0,899.0,747.0,92.0,2.0,370.0,0.0,432.0,13.0,103.0,495.0,1.0,38.0,2.0,292.0,2.0,324.0,80.0,2653.0,32.0,642.0,48.0,50.0,23.0,638.0,239.0,76.0,263.0,482.0,2.0,74.0,11.0,40.0,864.0,2560.0,172.0,1405.0,267.0,21.0,35.0,200.0,18.0,296.0,123.0,59.0,1016.0,345.0,1063.0,384.0,4.0,58.0,284.0,132.0,93.0,217.0,1.0,26.0,104.0,83.0,3.0,2213.0,2714.0,19.0,46.0,521.0,69.0,195.0,113.0,8679.0,2.0,54.0,0.0,0.0,216.0,542.0,203.0,55.0,13.0,30.0,1125.0,318.0,168.0,2.0,1.0,2018-03-25,,2018-12,2.169440996097684,3.258, +283,283,1.73,156.0,16.0,108.0,0.0,316.0,419.0,76.0,63.0,255.0,297.0,4.0,268.0,54.0,1.0,1393.0,181.0,94.0,28.0,266.0,1.0,1.0,2.0,132.0,36.0,1910.0,21.0,405.0,17.0,180.0,2.0,1.0,7.0,1319.0,195.0,1060.0,93.0,120.0,143.0,60.0,373.0,302.0,47.0,2.0,0.0,79.0,26.0,67.0,1925.0,2.0,144.0,23.0,1561.0,61.0,129.0,64.0,273.0,1103.0,35.0,104.0,2.0,637.0,180.0,23.0,394.0,7.0,8.0,16.0,105.0,290.0,344.0,149.0,1020.0,561.0,754.0,15.0,45.0,77.0,675.0,91.0,4.0,9.0,18.0,98.0,285.0,165.0,188.0,595.0,80.0,115.0,42.0,514.0,1.0,2038.0,3971.0,4559.0,173.0,458.0,89.0,68.0,51.0,298.0,115.0,1696.0,955.0,12.0,80.0,177.0,48.0,62.0,142.0,1933.0,30.0,25.0,1211.0,310.0,2273.0,191.0,72.0,13.0,37.0,79.0,23.0,16.0,14.0,3.0,1101.0,92.0,124.0,200.0,5.0,37.0,1462.0,60.0,11.0,4.0,261.0,111.0,1244.0,5.0,66.0,169.0,1.0,1.0,342.0,1951.0,350.0,49.0,129.0,60.0,4089.0,202.0,515.0,41.0,81.0,311.0,692.0,109.0,83.0,97.0,6.0,1184.0,289.0,467.0,1.0,2476.0,1.0,2.0,1.0,1.0,2171.0,2821.0,1682.0,1125.0,35.0,69.0,316.0,13.0,257.0,202.0,31.0,190.0,1082.0,144.0,213.0,65.0,437.0,267.0,56.0,675.0,353.0,25.0,79.0,603.0,653.0,218.0,393.0,8.0,62.0,413.0,142.0,221.0,199.0,3.0,45.0,2.0,1.0,249.0,2091.0,154.0,337.0,67.0,2.0,86.0,165.0,205.0,4246021.0,52.0,133.0,92.0,11.0,11.0,845.0,405.0,211.0,13.0,2178.0,215.0,221.0,8.0,93.0,457.0,210.0,93.0,139.0,249.0,79.0,478.0,382.0,679.0,286.0,1082.0,1003.0,267.0,103.0,2005.0,43.0,227.0,502.0,80.0,556.0,121.0,161.0,98.0,341.0,295.0,9.0,467.0,39.0,1050.0,2.0,0.0,528.0,28.0,572.0,865.0,308.0,128.0,245.0,7.0,3.0,41.0,9.0,586.0,449.0,20.0,205.0,0.0,267.0,13.0,57.0,82.0,28.0,373.0,168.0,40.0,7.0,168.0,43.0,161.0,78.0,209.0,310.0,2.0,2548.0,140.0,70.0,901.0,772.0,64.0,0.0,324.0,3.0,398.0,19.0,72.0,683.0,0.0,26.0,1.0,255.0,0.0,285.0,64.0,2525.0,40.0,547.0,37.0,45.0,14.0,529.0,198.0,67.0,245.0,394.0,2.0,44.0,6.0,41.0,906.0,2087.0,169.0,1853.0,239.0,12.0,43.0,176.0,12.0,279.0,112.0,26.0,966.0,347.0,1009.0,681.0,3.0,73.0,504.0,182.0,105.0,164.0,1.0,34.0,81.0,68.0,1.0,2089.0,2249.0,20.0,47.0,366.0,48.0,370.0,120.0,7895.0,0.0,44.0,0.0,1.0,214.0,562.0,196.0,65.0,24.0,26.0,980.0,255.0,157.0,0.0,1.0,2018-04-01,,2018-13,1.745355804022548,3.2159999999999997, +284,284,1.32,154.0,7.0,110.0,2.0,234.0,412.0,80.0,85.0,218.0,303.0,2.0,258.0,50.0,1.0,1216.0,177.0,105.0,54.0,284.0,2.0,2.0,8.0,130.0,57.0,1788.0,23.0,460.0,37.0,268.0,2.0,3.0,10.0,1252.0,231.0,707.0,97.0,140.0,141.0,100.0,376.0,317.0,31.0,3.0,0.0,128.0,17.0,82.0,1902.0,3.0,136.0,33.0,1722.0,79.0,122.0,59.0,301.0,1022.0,21.0,127.0,3.0,676.0,216.0,34.0,424.0,11.0,9.0,25.0,111.0,280.0,327.0,145.0,949.0,484.0,735.0,28.0,45.0,82.0,698.0,95.0,9.0,7.0,10.0,101.0,375.0,282.0,195.0,710.0,74.0,133.0,80.0,581.0,0.0,2098.0,2803.0,4399.0,192.0,428.0,124.0,126.0,97.0,126.0,114.0,1829.0,1057.0,9.0,102.0,213.0,32.0,42.0,153.0,2086.0,55.0,11.0,1157.0,331.0,2091.0,240.0,60.0,12.0,21.0,87.0,12.0,10.0,31.0,6.0,1302.0,85.0,88.0,213.0,9.0,53.0,1626.0,61.0,11.0,1.0,249.0,138.0,1133.0,11.0,58.0,186.0,1.0,5.0,330.0,1903.0,352.0,67.0,116.0,54.0,2243.0,215.0,573.0,40.0,83.0,311.0,798.0,110.0,118.0,105.0,9.0,1469.0,259.0,398.0,4.0,2435.0,7.0,1.0,2.0,2.0,2263.0,2703.0,1855.0,1282.0,22.0,93.0,309.0,8.0,210.0,187.0,24.0,178.0,1070.0,131.0,180.0,49.0,461.0,250.0,63.0,681.0,383.0,19.0,83.0,520.0,654.0,214.0,431.0,1.0,44.0,354.0,131.0,240.0,257.0,2.0,69.0,2.0,2.0,234.0,2035.0,160.0,240.0,85.0,3.0,91.0,159.0,206.0,4390023.0,52.0,205.0,170.0,18.0,1.0,694.0,707.0,232.0,22.0,2089.0,150.0,506.0,10.0,94.0,519.0,206.0,140.0,135.0,251.0,76.0,537.0,423.0,698.0,254.0,1595.0,996.0,292.0,74.0,1959.0,46.0,275.0,595.0,82.0,619.0,144.0,202.0,140.0,305.0,386.0,14.0,476.0,29.0,1033.0,4.0,2.0,605.0,28.0,585.0,897.0,306.0,165.0,277.0,10.0,9.0,68.0,15.0,634.0,401.0,21.0,177.0,3.0,258.0,14.0,56.0,89.0,33.0,329.0,208.0,50.0,7.0,184.0,22.0,161.0,82.0,234.0,319.0,5.0,2561.0,126.0,66.0,1020.0,685.0,72.0,2.0,322.0,5.0,426.0,17.0,49.0,691.0,1.0,32.0,2.0,307.0,1.0,317.0,96.0,2947.0,37.0,605.0,41.0,54.0,24.0,610.0,224.0,51.0,244.0,295.0,5.0,41.0,14.0,38.0,1005.0,2471.0,193.0,2796.0,282.0,34.0,52.0,187.0,10.0,245.0,110.0,54.0,976.0,393.0,1152.0,503.0,9.0,71.0,928.0,98.0,101.0,197.0,2.0,36.0,81.0,97.0,1.0,2276.0,2679.0,25.0,61.0,393.0,50.0,463.0,146.0,7556.0,2.0,57.0,2.0,1.0,215.0,574.0,231.0,67.0,24.0,30.0,1152.0,265.0,113.0,2.0,2.0,2018-04-08,,2018-14,1.3034411704958622,3.918, +285,285,1.11,165.0,9.0,153.0,1.0,242.0,387.0,95.0,115.0,257.0,347.0,2.0,271.0,44.0,1.0,1375.0,201.0,114.0,76.0,306.0,1.0,2.0,10.0,133.0,49.0,1653.0,17.0,481.0,26.0,205.0,7.0,2.0,10.0,1252.0,213.0,896.0,85.0,135.0,120.0,88.0,410.0,337.0,47.0,2.0,0.0,124.0,32.0,99.0,3173.0,4.0,124.0,22.0,1826.0,66.0,131.0,77.0,300.0,1112.0,29.0,167.0,1.0,757.0,223.0,34.0,439.0,6.0,5.0,19.0,104.0,351.0,383.0,169.0,1243.0,590.0,779.0,25.0,89.0,89.0,754.0,107.0,8.0,7.0,10.0,107.0,436.0,364.0,240.0,697.0,85.0,107.0,64.0,622.0,7.0,2018.0,2983.0,4215.0,198.0,528.0,88.0,50.0,53.0,131.0,151.0,1759.0,1173.0,18.0,69.0,224.0,35.0,68.0,157.0,2229.0,50.0,12.0,8815.0,371.0,1967.0,233.0,97.0,19.0,30.0,70.0,14.0,11.0,20.0,1.0,1184.0,88.0,111.0,251.0,3.0,54.0,1640.0,66.0,11.0,3.0,277.0,131.0,1340.0,14.0,49.0,178.0,2.0,5.0,338.0,2341.0,403.0,63.0,106.0,54.0,1889.0,185.0,498.0,54.0,81.0,348.0,740.0,123.0,129.0,116.0,10.0,1166.0,288.0,437.0,1.0,2558.0,2.0,1.0,1.0,1.0,2304.0,2106.0,1808.0,1129.0,25.0,77.0,266.0,26.0,273.0,202.0,21.0,211.0,1345.0,152.0,231.0,46.0,434.0,1090.0,64.0,940.0,450.0,29.0,78.0,613.0,722.0,224.0,486.0,12.0,54.0,432.0,154.0,282.0,228.0,2.0,48.0,0.0,1.0,255.0,2253.0,170.0,305.0,58.0,2.0,111.0,179.0,200.0,4350092.0,44.0,179.0,180.0,22.0,15.0,821.0,557.0,242.0,17.0,2109.0,143.0,312.0,8.0,98.0,416.0,219.0,103.0,121.0,212.0,82.0,793.0,609.0,804.0,303.0,1268.0,919.0,305.0,86.0,1699.0,46.0,236.0,560.0,64.0,593.0,165.0,183.0,136.0,333.0,333.0,5.0,572.0,38.0,1172.0,1.0,1.0,624.0,30.0,861.0,1005.0,332.0,141.0,303.0,7.0,7.0,68.0,7.0,648.0,428.0,19.0,225.0,1.0,368.0,17.0,63.0,111.0,39.0,423.0,202.0,92.0,17.0,230.0,45.0,161.0,104.0,228.0,357.0,1.0,2806.0,149.0,62.0,1012.0,945.0,77.0,0.0,368.0,9.0,496.0,29.0,46.0,635.0,0.0,52.0,4.0,265.0,2.0,381.0,89.0,2669.0,46.0,682.0,35.0,44.0,23.0,569.0,228.0,59.0,261.0,412.0,2.0,33.0,16.0,57.0,1080.0,2394.0,159.0,2574.0,275.0,10.0,41.0,416.0,21.0,291.0,98.0,53.0,1099.0,382.0,1189.0,412.0,7.0,75.0,829.0,141.0,112.0,247.0,3.0,61.0,108.0,85.0,1.0,2297.0,2726.0,29.0,44.0,482.0,31.0,184.0,116.0,9284.0,0.0,61.0,2.0,0.0,202.0,687.0,162.0,90.0,14.0,29.0,1020.0,273.0,105.0,2.0,0.0,2018-04-15,,2018-15,1.102604526155627,1.4260000000000002, +286,286,0.79,102.0,9.0,259.0,2.0,431.0,587.0,88.0,99.0,216.0,397.0,2.0,257.0,72.0,2.0,1308.0,254.0,146.0,47.0,288.0,4.0,2.0,5.0,141.0,32.0,2923.0,25.0,1852.0,39.0,135.0,4.0,3.0,8.0,1168.0,311.0,723.0,85.0,88.0,113.0,87.0,315.0,325.0,50.0,4.0,2.0,91.0,52.0,85.0,1768.0,6.0,141.0,30.0,1323.0,71.0,94.0,61.0,366.0,1642.0,27.0,150.0,3.0,710.0,136.0,18.0,366.0,7.0,10.0,17.0,103.0,254.0,342.0,218.0,916.0,652.0,736.0,20.0,84.0,58.0,808.0,81.0,3.0,14.0,29.0,73.0,398.0,208.0,150.0,637.0,142.0,288.0,58.0,676.0,8.0,2209.0,4306.0,2504.0,269.0,446.0,121.0,163.0,39.0,184.0,188.0,1569.0,1143.0,12.0,59.0,184.0,35.0,53.0,159.0,1974.0,43.0,14.0,1465.0,325.0,3388.0,171.0,82.0,18.0,18.0,91.0,12.0,13.0,24.0,1.0,857.0,90.0,114.0,225.0,9.0,40.0,1585.0,69.0,8.0,2.0,226.0,282.0,947.0,5.0,45.0,268.0,2.0,2.0,366.0,2286.0,425.0,79.0,103.0,49.0,2015.0,111.0,307.0,59.0,94.0,316.0,1080.0,138.0,105.0,139.0,10.0,1158.0,335.0,559.0,2.0,2562.0,2.0,2.0,1.0,0.0,4191.0,1580.0,2019.0,1329.0,29.0,114.0,387.0,5.0,250.0,345.0,29.0,201.0,1094.0,142.0,72.0,72.0,239.0,207.0,57.0,5353.0,359.0,22.0,73.0,535.0,770.0,243.0,1095.0,3.0,40.0,603.0,215.0,356.0,267.0,2.0,87.0,1.0,2.0,213.0,3497.0,120.0,294.0,61.0,3.0,93.0,191.0,214.0,3437629.0,52.0,199.0,236.0,11.0,10.0,1237.0,994.0,199.0,29.0,2165.0,114.0,178.0,12.0,102.0,429.0,383.0,69.0,168.0,223.0,92.0,650.0,682.0,593.0,458.0,1049.0,1086.0,313.0,57.0,2424.0,37.0,286.0,571.0,50.0,703.0,119.0,122.0,112.0,378.0,322.0,4.0,471.0,24.0,1158.0,1.0,1.0,559.0,11.0,601.0,1047.0,241.0,194.0,260.0,3.0,2.0,48.0,2.0,836.0,389.0,21.0,191.0,0.0,256.0,17.0,64.0,116.0,75.0,276.0,192.0,48.0,38.0,124.0,28.0,125.0,82.0,259.0,319.0,3.0,2546.0,120.0,53.0,1206.0,665.0,89.0,1.0,277.0,0.0,620.0,12.0,33.0,562.0,1.0,38.0,7.0,246.0,4.0,370.0,70.0,2056.0,40.0,525.0,63.0,44.0,22.0,589.0,183.0,66.0,248.0,377.0,1.0,18.0,14.0,53.0,827.0,1865.0,103.0,843.0,218.0,14.0,37.0,106.0,6.0,313.0,339.0,36.0,604.0,372.0,545.0,328.0,16.0,44.0,306.0,54.0,46.0,315.0,6.0,32.0,65.0,89.0,0.0,2593.0,2620.0,32.0,50.0,347.0,47.0,1878.0,122.0,5361.0,1.0,46.0,4.0,0.0,202.0,747.0,158.0,59.0,16.0,17.0,902.0,260.0,103.0,1.0,1.0,2018-10-21,,2018-42,0.7886011132860844,1.5819999999999999, +287,287,0.94,148.0,7.0,277.0,2.0,504.0,699.0,115.0,81.0,281.0,443.0,1.0,230.0,45.0,2.0,1493.0,229.0,144.0,78.0,288.0,1.0,0.0,0.0,162.0,39.0,3368.0,28.0,1914.0,40.0,149.0,1.0,1.0,11.0,1298.0,233.0,2689.0,133.0,115.0,203.0,98.0,389.0,333.0,31.0,2.0,1.0,136.0,78.0,104.0,2149.0,3.0,123.0,33.0,1506.0,81.0,114.0,75.0,353.0,1862.0,28.0,180.0,1.0,780.0,155.0,26.0,415.0,17.0,7.0,14.0,144.0,352.0,391.0,202.0,1017.0,771.0,965.0,15.0,184.0,95.0,962.0,84.0,6.0,5.0,28.0,50.0,316.0,183.0,194.0,706.0,176.0,308.0,60.0,881.0,7.0,2434.0,5046.0,3514.0,317.0,968.0,115.0,163.0,41.0,151.0,239.0,1702.0,1342.0,17.0,99.0,267.0,27.0,45.0,149.0,1676.0,44.0,11.0,1161.0,444.0,3576.0,220.0,72.0,10.0,31.0,80.0,15.0,19.0,28.0,5.0,984.0,130.0,92.0,310.0,14.0,64.0,1780.0,75.0,12.0,0.0,244.0,288.0,1079.0,10.0,44.0,302.0,0.0,1.0,471.0,2542.0,498.0,87.0,106.0,51.0,3103.0,197.0,491.0,33.0,109.0,283.0,1142.0,145.0,100.0,137.0,7.0,1510.0,341.0,528.0,1.0,2853.0,1.0,2.0,0.0,1.0,4550.0,2280.0,1765.0,1514.0,40.0,121.0,427.0,5.0,326.0,335.0,72.0,204.0,1251.0,124.0,106.0,63.0,298.0,268.0,62.0,2512.0,435.0,16.0,72.0,635.0,945.0,321.0,1125.0,4.0,31.0,481.0,245.0,420.0,309.0,2.0,81.0,0.0,2.0,251.0,3085.0,147.0,345.0,101.0,0.0,87.0,200.0,245.0,3858796.0,64.0,250.0,237.0,21.0,10.0,1406.0,967.0,250.0,22.0,2827.0,132.0,152.0,14.0,183.0,619.0,407.0,103.0,176.0,256.0,84.0,714.0,834.0,686.0,277.0,1536.0,986.0,373.0,70.0,2431.0,41.0,288.0,601.0,54.0,712.0,132.0,106.0,141.0,487.0,375.0,7.0,519.0,34.0,1345.0,2.0,0.0,659.0,17.0,695.0,1375.0,326.0,207.0,266.0,7.0,15.0,76.0,8.0,932.0,480.0,27.0,219.0,5.0,312.0,20.0,47.0,120.0,53.0,353.0,214.0,47.0,44.0,168.0,44.0,134.0,96.0,267.0,367.0,0.0,2838.0,133.0,56.0,1330.0,707.0,110.0,0.0,335.0,2.0,694.0,16.0,49.0,530.0,0.0,44.0,7.0,295.0,4.0,495.0,60.0,2449.0,42.0,538.0,86.0,41.0,26.0,701.0,221.0,76.0,305.0,448.0,3.0,44.0,19.0,48.0,961.0,1996.0,87.0,758.0,243.0,12.0,40.0,120.0,11.0,308.0,423.0,39.0,763.0,346.0,595.0,415.0,5.0,40.0,222.0,66.0,63.0,333.0,5.0,13.0,76.0,130.0,1.0,2740.0,3056.0,39.0,59.0,409.0,47.0,1779.0,112.0,5733.0,1.0,53.0,1.0,4.0,230.0,808.0,146.0,54.0,16.0,26.0,1048.0,290.0,165.0,0.0,0.0,2018-10-28,,2018-43,0.9392418340285786,1.5419999999999998, +288,288,1.01,148.0,24.0,257.0,1.0,560.0,640.0,119.0,89.0,236.0,358.0,3.0,258.0,38.0,2.0,1484.0,243.0,135.0,63.0,252.0,1.0,1.0,4.0,154.0,47.0,2509.0,28.0,1887.0,30.0,154.0,2.0,4.0,5.0,1154.0,226.0,1320.0,94.0,112.0,225.0,102.0,349.0,348.0,35.0,3.0,2.0,125.0,74.0,101.0,1595.0,3.0,121.0,23.0,1547.0,63.0,94.0,73.0,446.0,2158.0,23.0,172.0,4.0,974.0,155.0,19.0,345.0,11.0,6.0,12.0,143.0,318.0,410.0,303.0,1115.0,672.0,920.0,22.0,277.0,73.0,948.0,99.0,7.0,15.0,15.0,52.0,424.0,150.0,168.0,600.0,193.0,273.0,68.0,690.0,15.0,1698.0,3628.0,2613.0,266.0,446.0,110.0,546.0,43.0,136.0,199.0,2102.0,1256.0,17.0,71.0,176.0,41.0,52.0,188.0,1516.0,44.0,11.0,1790.0,409.0,3493.0,173.0,84.0,8.0,25.0,93.0,11.0,16.0,24.0,0.0,866.0,86.0,95.0,229.0,8.0,41.0,2174.0,60.0,6.0,0.0,264.0,229.0,1203.0,7.0,51.0,317.0,5.0,2.0,477.0,2441.0,470.0,70.0,146.0,72.0,3880.0,150.0,413.0,43.0,101.0,311.0,1235.0,119.0,112.0,140.0,9.0,1718.0,274.0,484.0,3.0,2848.0,1.0,2.0,3.0,0.0,4455.0,1700.0,1510.0,1649.0,25.0,105.0,360.0,13.0,334.0,409.0,27.0,190.0,1306.0,149.0,83.0,67.0,254.0,275.0,227.0,1247.0,370.0,12.0,80.0,602.0,913.0,275.0,1138.0,4.0,21.0,403.0,235.0,332.0,289.0,2.0,102.0,1.0,0.0,318.0,2554.0,140.0,347.0,78.0,2.0,88.0,202.0,248.0,3624576.0,59.0,250.0,284.0,28.0,8.0,1134.0,652.0,293.0,11.0,1929.0,127.0,118.0,7.0,131.0,822.0,372.0,107.0,142.0,242.0,78.0,779.0,809.0,608.0,265.0,1135.0,809.0,362.0,54.0,1890.0,40.0,270.0,572.0,74.0,658.0,139.0,136.0,152.0,666.0,345.0,8.0,628.0,31.0,1579.0,0.0,3.0,764.0,17.0,582.0,1588.0,357.0,220.0,311.0,9.0,12.0,70.0,6.0,834.0,492.0,29.0,236.0,0.0,252.0,20.0,64.0,125.0,39.0,367.0,220.0,44.0,46.0,146.0,34.0,130.0,109.0,247.0,322.0,5.0,3006.0,128.0,61.0,1576.0,591.0,127.0,1.0,235.0,0.0,681.0,23.0,42.0,463.0,0.0,47.0,9.0,340.0,3.0,377.0,76.0,2162.0,53.0,619.0,80.0,67.0,39.0,685.0,195.0,68.0,305.0,443.0,3.0,58.0,24.0,39.0,798.0,1845.0,101.0,523.0,124.0,16.0,34.0,120.0,12.0,205.0,477.0,23.0,694.0,359.0,560.0,358.0,12.0,38.0,119.0,59.0,42.0,223.0,5.0,14.0,61.0,157.0,1.0,2417.0,2709.0,42.0,33.0,325.0,35.0,824.0,111.0,4984.0,1.0,75.0,2.0,1.0,276.0,808.0,137.0,62.0,18.0,37.0,1343.0,335.0,158.0,1.0,1.0,2018-11-04,,2018-44,1.0198357741376345,1.01, +289,289,1.47,190.0,13.0,303.0,3.0,481.0,666.0,124.0,97.0,239.0,386.0,2.0,259.0,67.0,0.0,1850.0,252.0,176.0,51.0,259.0,2.0,0.0,2.0,165.0,54.0,2387.0,43.0,1923.0,38.0,155.0,1.0,2.0,8.0,1328.0,203.0,1118.0,109.0,121.0,245.0,105.0,442.0,387.0,42.0,4.0,0.0,216.0,52.0,132.0,1568.0,4.0,162.0,36.0,1630.0,77.0,104.0,70.0,454.0,1873.0,26.0,184.0,2.0,991.0,168.0,25.0,393.0,11.0,8.0,16.0,229.0,332.0,454.0,364.0,1074.0,713.0,991.0,33.0,171.0,94.0,1055.0,93.0,5.0,12.0,37.0,59.0,395.0,179.0,209.0,906.0,223.0,388.0,85.0,733.0,20.0,1632.0,3446.0,2808.0,251.0,458.0,102.0,125.0,40.0,1218.0,240.0,2236.0,1463.0,10.0,78.0,240.0,34.0,41.0,216.0,1678.0,61.0,16.0,1308.0,501.0,3803.0,212.0,64.0,10.0,35.0,78.0,26.0,17.0,16.0,9.0,1012.0,99.0,101.0,249.0,8.0,58.0,2089.0,81.0,7.0,2.0,390.0,284.0,1314.0,8.0,62.0,322.0,1.0,0.0,508.0,2970.0,542.0,91.0,233.0,73.0,3082.0,183.0,403.0,72.0,87.0,341.0,1318.0,157.0,142.0,142.0,12.0,1708.0,309.0,566.0,1.0,3183.0,0.0,1.0,0.0,1.0,4892.0,2196.0,6722.0,1784.0,36.0,169.0,376.0,9.0,303.0,452.0,32.0,220.0,1560.0,151.0,134.0,66.0,289.0,235.0,380.0,1124.0,399.0,33.0,80.0,676.0,953.0,285.0,1192.0,4.0,122.0,539.0,282.0,410.0,314.0,1.0,151.0,0.0,0.0,328.0,2959.0,136.0,401.0,82.0,1.0,91.0,198.0,320.0,3576694.0,79.0,269.0,284.0,21.0,16.0,1440.0,915.0,315.0,26.0,2095.0,154.0,152.0,7.0,139.0,1085.0,450.0,111.0,175.0,217.0,101.0,926.0,921.0,694.0,294.0,1300.0,1080.0,409.0,55.0,2066.0,68.0,293.0,702.0,82.0,790.0,137.0,143.0,171.0,739.0,407.0,3.0,626.0,55.0,2148.0,1.0,2.0,815.0,16.0,776.0,1846.0,421.0,242.0,328.0,10.0,15.0,67.0,3.0,932.0,503.0,33.0,279.0,0.0,279.0,17.0,50.0,100.0,45.0,406.0,288.0,54.0,34.0,208.0,38.0,178.0,108.0,295.0,462.0,0.0,3063.0,172.0,78.0,1516.0,736.0,101.0,1.0,336.0,5.0,757.0,15.0,55.0,547.0,0.0,37.0,11.0,354.0,5.0,426.0,76.0,2079.0,36.0,767.0,125.0,78.0,19.0,766.0,205.0,103.0,374.0,521.0,5.0,42.0,24.0,43.0,1078.0,2423.0,72.0,980.0,109.0,21.0,34.0,111.0,9.0,234.0,841.0,50.0,682.0,396.0,622.0,1180.0,23.0,42.0,274.0,87.0,57.0,239.0,5.0,18.0,82.0,246.0,4.0,2651.0,3378.0,41.0,46.0,300.0,36.0,871.0,164.0,6460.0,1.0,71.0,0.0,0.0,316.0,1014.0,153.0,51.0,11.0,25.0,1417.0,321.0,122.0,0.0,0.0,2018-11-11,,2018-45,1.4628399028850527,2.0940000000000003, +290,290,1.78,211.0,15.0,203.0,2.0,357.0,727.0,134.0,115.0,311.0,400.0,2.0,264.0,43.0,1.0,1974.0,198.0,140.0,48.0,288.0,1.0,2.0,2.0,151.0,57.0,2338.0,27.0,2100.0,45.0,172.0,1.0,1.0,8.0,1408.0,198.0,1148.0,95.0,151.0,193.0,88.0,495.0,347.0,49.0,3.0,0.0,161.0,59.0,138.0,1588.0,5.0,183.0,38.0,1546.0,111.0,156.0,84.0,461.0,2026.0,37.0,132.0,2.0,864.0,181.0,29.0,451.0,10.0,3.0,22.0,194.0,354.0,293.0,391.0,998.0,677.0,1049.0,32.0,92.0,105.0,1229.0,119.0,6.0,4.0,23.0,37.0,333.0,148.0,216.0,947.0,252.0,402.0,93.0,839.0,4.0,1738.0,2744.0,2963.0,193.0,504.0,121.0,167.0,50.0,319.0,232.0,1769.0,1657.0,14.0,83.0,204.0,47.0,53.0,222.0,1820.0,48.0,10.0,1128.0,473.0,3923.0,223.0,113.0,20.0,32.0,54.0,13.0,18.0,24.0,7.0,773.0,90.0,121.0,251.0,19.0,48.0,1896.0,63.0,20.0,0.0,333.0,249.0,1133.0,14.0,60.0,331.0,2.0,1.0,429.0,3405.0,585.0,84.0,155.0,80.0,2770.0,194.0,369.0,44.0,104.0,309.0,1178.0,148.0,170.0,136.0,7.0,1956.0,354.0,634.0,0.0,3429.0,0.0,1.0,0.0,0.0,4406.0,1985.0,2174.0,1683.0,32.0,168.0,363.0,9.0,325.0,479.0,36.0,220.0,1521.0,205.0,124.0,70.0,480.0,812.0,146.0,1097.0,451.0,26.0,91.0,659.0,991.0,313.0,1796.0,10.0,41.0,405.0,297.0,370.0,313.0,2.0,117.0,0.0,0.0,363.0,2765.0,134.0,354.0,83.0,0.0,120.0,231.0,279.0,3576803.0,70.0,308.0,335.0,20.0,18.0,1414.0,780.0,262.0,31.0,2779.0,206.0,176.0,11.0,177.0,1087.0,424.0,114.0,158.0,198.0,98.0,957.0,864.0,668.0,591.0,1160.0,994.0,560.0,50.0,2296.0,58.0,269.0,637.0,83.0,790.0,176.0,135.0,174.0,811.0,429.0,10.0,763.0,50.0,1873.0,1.0,1.0,716.0,26.0,756.0,1974.0,788.0,229.0,357.0,9.0,8.0,61.0,0.0,1110.0,538.0,34.0,266.0,4.0,334.0,25.0,45.0,152.0,46.0,424.0,267.0,50.0,28.0,144.0,57.0,167.0,118.0,383.0,447.0,2.0,2998.0,199.0,78.0,1492.0,757.0,130.0,0.0,317.0,7.0,713.0,12.0,59.0,740.0,1.0,48.0,9.0,347.0,2.0,452.0,103.0,2139.0,47.0,707.0,87.0,81.0,31.0,850.0,247.0,102.0,316.0,542.0,2.0,58.0,16.0,62.0,1294.0,3142.0,75.0,1836.0,127.0,14.0,29.0,131.0,6.0,242.0,996.0,46.0,934.0,542.0,681.0,1101.0,13.0,36.0,442.0,79.0,55.0,366.0,4.0,16.0,78.0,230.0,1.0,2738.0,3572.0,32.0,65.0,250.0,53.0,653.0,124.0,6015.0,0.0,60.0,0.0,1.0,262.0,953.0,157.0,62.0,28.0,12.0,1378.0,317.0,153.0,3.0,0.0,2018-11-18,,2018-46,1.7829335967513096,2.816, +291,291,2.14,164.0,26.0,212.0,3.0,329.0,805.0,148.0,94.0,303.0,400.0,3.0,299.0,56.0,3.0,1622.0,264.0,157.0,55.0,376.0,2.0,2.0,6.0,210.0,51.0,1704.0,31.0,1512.0,30.0,197.0,2.0,3.0,7.0,1320.0,175.0,997.0,73.0,139.0,294.0,92.0,441.0,314.0,52.0,2.0,0.0,204.0,65.0,131.0,1743.0,2.0,211.0,37.0,1469.0,84.0,143.0,80.0,415.0,1604.0,28.0,171.0,6.0,847.0,166.0,23.0,542.0,10.0,9.0,22.0,158.0,351.0,254.0,325.0,821.0,750.0,1102.0,42.0,121.0,224.0,1104.0,100.0,9.0,7.0,25.0,56.0,301.0,140.0,267.0,756.0,179.0,395.0,68.0,1074.0,11.0,1619.0,2543.0,2895.0,221.0,458.0,128.0,178.0,48.0,222.0,241.0,2034.0,1487.0,33.0,97.0,260.0,47.0,39.0,158.0,1743.0,49.0,19.0,1142.0,490.0,4338.0,222.0,93.0,9.0,29.0,60.0,25.0,8.0,29.0,4.0,798.0,85.0,111.0,218.0,16.0,55.0,2039.0,84.0,15.0,2.0,310.0,202.0,953.0,28.0,81.0,271.0,1.0,3.0,404.0,2954.0,545.0,101.0,163.0,59.0,2653.0,178.0,420.0,59.0,119.0,364.0,1175.0,148.0,152.0,88.0,20.0,2207.0,388.0,625.0,2.0,3172.0,2.0,2.0,3.0,3.0,4284.0,3005.0,1629.0,1821.0,26.0,165.0,391.0,5.0,290.0,353.0,32.0,286.0,1362.0,267.0,86.0,80.0,303.0,339.0,93.0,2618.0,402.0,25.0,103.0,738.0,955.0,297.0,1266.0,4.0,31.0,555.0,192.0,314.0,269.0,3.0,81.0,1.0,0.0,259.0,2584.0,147.0,304.0,86.0,4.0,96.0,200.0,251.0,3629493.0,77.0,270.0,339.0,20.0,14.0,1198.0,875.0,297.0,41.0,2122.0,178.0,179.0,5.0,174.0,724.0,420.0,126.0,193.0,268.0,124.0,736.0,749.0,763.0,308.0,1316.0,1170.0,456.0,66.0,2118.0,54.0,298.0,675.0,88.0,800.0,199.0,164.0,178.0,638.0,383.0,10.0,534.0,39.0,1862.0,1.0,2.0,685.0,29.0,802.0,1512.0,394.0,193.0,337.0,13.0,17.0,69.0,4.0,790.0,564.0,20.0,292.0,4.0,306.0,16.0,73.0,165.0,38.0,456.0,239.0,71.0,43.0,200.0,43.0,130.0,113.0,346.0,441.0,2.0,2683.0,188.0,84.0,1212.0,784.0,124.0,1.0,292.0,6.0,595.0,10.0,65.0,643.0,0.0,41.0,6.0,311.0,11.0,488.0,85.0,1954.0,63.0,813.0,81.0,82.0,22.0,806.0,241.0,86.0,289.0,473.0,5.0,77.0,30.0,56.0,1196.0,3215.0,109.0,867.0,129.0,10.0,32.0,191.0,7.0,207.0,721.0,42.0,892.0,400.0,697.0,780.0,20.0,70.0,227.0,68.0,38.0,292.0,9.0,19.0,64.0,227.0,2.0,2088.0,3854.0,39.0,40.0,258.0,70.0,572.0,135.0,5988.0,0.0,59.0,1.0,3.0,377.0,1225.0,192.0,70.0,19.0,25.0,1176.0,342.0,176.0,4.0,0.0,2018-11-25,,2018-47,2.1291688892687546,3.2340000000000004, +292,292,2.38,81.0,12.0,170.0,3.0,196.0,701.0,142.0,114.0,251.0,381.0,1.0,298.0,45.0,5.0,1121.0,287.0,185.0,53.0,372.0,1.0,2.0,6.0,166.0,53.0,1277.0,35.0,1109.0,25.0,152.0,1.0,3.0,10.0,860.0,181.0,937.0,82.0,123.0,237.0,99.0,466.0,332.0,58.0,2.0,0.0,196.0,69.0,125.0,2859.0,6.0,7406.0,28.0,1261.0,57.0,130.0,49.0,389.0,950.0,33.0,142.0,6.0,831.0,138.0,37.0,498.0,8.0,11.0,18.0,103.0,319.0,197.0,213.0,560.0,656.0,879.0,13.0,78.0,104.0,1085.0,110.0,5.0,10.0,16.0,45.0,311.0,115.0,240.0,584.0,106.0,233.0,61.0,722.0,19.0,1338.0,2485.0,3034.0,257.0,460.0,112.0,264.0,57.0,188.0,211.0,1783.0,1350.0,21.0,94.0,251.0,65.0,61.0,212.0,1096.0,55.0,19.0,1243.0,345.0,2879.0,125.0,141.0,5.0,26.0,164.0,23.0,9.0,14.0,6.0,999.0,68.0,114.0,280.0,23.0,64.0,1882.0,88.0,8.0,0.0,395.0,153.0,462.0,17.0,69.0,235.0,1.0,2.0,315.0,2646.0,508.0,80.0,137.0,74.0,2396.0,137.0,412.0,41.0,109.0,311.0,918.0,105.0,147.0,61.0,22.0,1824.0,301.0,544.0,0.0,2950.0,0.0,2.0,0.0,13.0,3755.0,1933.0,1250.0,1637.0,27.0,111.0,399.0,6.0,317.0,203.0,30.0,260.0,836.0,175.0,121.0,51.0,342.0,258.0,108.0,2239.0,338.0,22.0,80.0,663.0,998.0,307.0,1137.0,2.0,28.0,522.0,156.0,229.0,270.0,1.0,48.0,0.0,3.0,234.0,2526.0,152.0,245.0,74.0,2.0,106.0,193.0,228.0,3772970.0,70.0,311.0,359.0,35.0,11.0,974.0,738.0,224.0,40.0,1879.0,185.0,201.0,5.0,171.0,954.0,334.0,66.0,218.0,311.0,84.0,548.0,541.0,737.0,352.0,1273.0,1124.0,274.0,74.0,1583.0,74.0,320.0,672.0,78.0,750.0,176.0,108.0,247.0,333.0,263.0,9.0,376.0,45.0,1555.0,3.0,3.0,627.0,5.0,730.0,1050.0,332.0,191.0,286.0,9.0,11.0,80.0,9.0,528.0,494.0,24.0,339.0,1.0,389.0,16.0,60.0,128.0,49.0,446.0,274.0,74.0,32.0,195.0,30.0,150.0,85.0,369.0,456.0,3.0,2014.0,227.0,60.0,817.0,631.0,184.0,0.0,297.0,8.0,413.0,23.0,62.0,668.0,1.0,35.0,6.0,256.0,7.0,586.0,95.0,1989.0,50.0,721.0,80.0,66.0,24.0,698.0,264.0,117.0,259.0,472.0,0.0,61.0,34.0,41.0,1110.0,2895.0,410.0,871.0,184.0,24.0,61.0,122.0,9.0,189.0,506.0,50.0,1116.0,422.0,509.0,639.0,11.0,77.0,273.0,67.0,37.0,302.0,0.0,25.0,61.0,171.0,3.0,1293.0,3752.0,313.0,50.0,285.0,59.0,518.0,123.0,6142.0,0.0,75.0,5.0,5.0,379.0,1019.0,191.0,185.0,18.0,20.0,1132.0,320.0,139.0,13.0,0.0,2018-12-02,,2018-48,2.3906862908612183,5.271999999999999, +293,293,2.75,63.0,16.0,208.0,2.0,196.0,622.0,133.0,83.0,254.0,391.0,4.0,306.0,59.0,5.0,1043.0,308.0,197.0,53.0,366.0,3.0,2.0,3.0,177.0,50.0,1227.0,27.0,1072.0,31.0,183.0,9.0,4.0,7.0,1043.0,192.0,994.0,94.0,136.0,230.0,106.0,486.0,351.0,55.0,4.0,0.0,161.0,57.0,104.0,2248.0,1.0,282.0,22.0,1436.0,51.0,185.0,54.0,429.0,1096.0,36.0,128.0,3.0,819.0,160.0,42.0,410.0,8.0,6.0,16.0,134.0,322.0,291.0,273.0,629.0,720.0,919.0,28.0,108.0,71.0,1114.0,107.0,6.0,15.0,19.0,57.0,321.0,113.0,195.0,580.0,82.0,223.0,49.0,867.0,18.0,1237.0,3330.0,2922.0,223.0,343.0,120.0,138.0,63.0,168.0,255.0,2029.0,1231.0,11.0,78.0,269.0,50.0,41.0,249.0,1259.0,39.0,19.0,899.0,350.0,3045.0,149.0,94.0,16.0,23.0,120.0,10.0,17.0,16.0,6.0,1087.0,156.0,136.0,316.0,18.0,59.0,1964.0,118.0,15.0,2.0,370.0,110.0,437.0,15.0,87.0,238.0,3.0,2.0,294.0,2886.0,396.0,63.0,170.0,79.0,2673.0,147.0,501.0,50.0,140.0,331.0,884.0,115.0,146.0,83.0,14.0,1805.0,311.0,568.0,2.0,2786.0,1.0,9.0,1.0,2.0,2306.0,1736.0,1352.0,1496.0,16.0,107.0,331.0,4.0,299.0,229.0,29.0,208.0,847.0,136.0,79.0,41.0,320.0,222.0,141.0,1250.0,370.0,28.0,97.0,659.0,1094.0,296.0,1150.0,2.0,36.0,407.0,142.0,215.0,244.0,6.0,62.0,1.0,1.0,210.0,2543.0,165.0,299.0,75.0,3.0,98.0,250.0,222.0,4032901.0,63.0,338.0,370.0,33.0,11.0,886.0,549.0,216.0,28.0,1944.0,167.0,181.0,9.0,150.0,635.0,307.0,67.0,181.0,261.0,113.0,513.0,531.0,712.0,345.0,1052.0,1044.0,333.0,64.0,1636.0,70.0,282.0,644.0,75.0,740.0,158.0,121.0,241.0,349.0,326.0,6.0,335.0,49.0,1630.0,0.0,4.0,582.0,8.0,693.0,944.0,314.0,196.0,229.0,7.0,5.0,117.0,3.0,570.0,499.0,37.0,357.0,4.0,442.0,21.0,63.0,124.0,41.0,529.0,282.0,92.0,47.0,212.0,51.0,119.0,93.0,380.0,488.0,1.0,2070.0,219.0,88.0,949.0,582.0,188.0,2.0,336.0,1.0,429.0,21.0,43.0,551.0,2.0,57.0,3.0,240.0,13.0,550.0,74.0,1983.0,63.0,630.0,87.0,62.0,38.0,679.0,292.0,165.0,237.0,440.0,4.0,58.0,38.0,38.0,1028.0,2619.0,410.0,780.0,202.0,14.0,40.0,124.0,13.0,172.0,428.0,62.0,917.0,401.0,462.0,533.0,2.0,58.0,207.0,65.0,28.0,293.0,4.0,29.0,56.0,115.0,0.0,1464.0,3512.0,171.0,46.0,280.0,73.0,514.0,143.0,5553.0,1.0,72.0,0.0,1.0,360.0,955.0,150.0,176.0,10.0,24.0,1028.0,338.0,112.0,7.0,13.0,2018-12-09,,2018-49,2.745937102037125,5.246, +294,294,3.31,100.0,19.0,191.0,0.0,200.0,593.0,164.0,100.0,261.0,384.0,3.0,261.0,69.0,9.0,1007.0,320.0,157.0,43.0,318.0,1.0,2.0,5.0,192.0,51.0,1240.0,26.0,848.0,33.0,206.0,0.0,2.0,12.0,1053.0,285.0,943.0,125.0,152.0,270.0,125.0,399.0,370.0,44.0,3.0,0.0,126.0,59.0,113.0,1896.0,4.0,183.0,27.0,1404.0,56.0,148.0,47.0,388.0,1672.0,41.0,102.0,0.0,776.0,172.0,35.0,512.0,7.0,5.0,67.0,120.0,253.0,239.0,203.0,650.0,687.0,901.0,11.0,77.0,82.0,953.0,94.0,5.0,3.0,10.0,37.0,293.0,123.0,169.0,713.0,93.0,207.0,66.0,712.0,17.0,1358.0,2643.0,2701.0,230.0,358.0,145.0,124.0,34.0,137.0,267.0,1709.0,1300.0,24.0,91.0,241.0,51.0,64.0,223.0,1020.0,51.0,13.0,963.0,371.0,3387.0,249.0,95.0,16.0,42.0,60.0,16.0,11.0,16.0,6.0,941.0,133.0,136.0,409.0,14.0,53.0,1676.0,126.0,19.0,2.0,348.0,105.0,435.0,16.0,100.0,210.0,3.0,6.0,276.0,2306.0,480.0,67.0,126.0,56.0,2463.0,112.0,389.0,36.0,90.0,291.0,895.0,144.0,148.0,61.0,13.0,2137.0,341.0,702.0,1.0,2949.0,1.0,2.0,1.0,1.0,1942.0,2183.0,1504.0,1500.0,22.0,94.0,389.0,10.0,293.0,259.0,28.0,206.0,776.0,117.0,99.0,48.0,329.0,261.0,104.0,890.0,349.0,42.0,97.0,566.0,1038.0,304.0,1131.0,9.0,45.0,465.0,138.0,207.0,198.0,2.0,45.0,4.0,2.0,225.0,2157.0,161.0,281.0,62.0,3.0,91.0,266.0,235.0,3250943.0,71.0,337.0,423.0,19.0,10.0,837.0,728.0,209.0,27.0,1909.0,230.0,167.0,6.0,158.0,436.0,282.0,58.0,176.0,309.0,96.0,487.0,521.0,696.0,742.0,1032.0,1091.0,301.0,78.0,1511.0,57.0,324.0,794.0,90.0,797.0,160.0,176.0,214.0,326.0,319.0,5.0,307.0,36.0,1508.0,4.0,3.0,510.0,5.0,654.0,1041.0,330.0,160.0,267.0,13.0,9.0,161.0,8.0,611.0,570.0,23.0,343.0,3.0,540.0,23.0,51.0,121.0,57.0,554.0,322.0,74.0,55.0,282.0,25.0,131.0,81.0,385.0,518.0,2.0,1802.0,229.0,77.0,972.0,667.0,199.0,2.0,293.0,4.0,397.0,3.0,39.0,523.0,1.0,39.0,3.0,263.0,4.0,588.0,82.0,2023.0,49.0,696.0,92.0,51.0,37.0,674.0,335.0,150.0,239.0,438.0,5.0,52.0,27.0,33.0,1142.0,2383.0,255.0,626.0,203.0,23.0,38.0,106.0,8.0,167.0,389.0,35.0,801.0,338.0,481.0,415.0,7.0,63.0,198.0,61.0,53.0,296.0,0.0,18.0,71.0,115.0,1.0,1265.0,3290.0,62.0,47.0,382.0,67.0,453.0,101.0,5614.0,1.0,91.0,1.0,1.0,339.0,925.0,175.0,111.0,14.0,17.0,1077.0,334.0,137.0,3.0,3.0,2018-12-16,,2018-50,3.312761063696591,3.3100000000000005, +295,295,3.71,104.0,5.0,170.0,2.0,177.0,607.0,96.0,67.0,174.0,287.0,3.0,218.0,40.0,3.0,684.0,170.0,120.0,52.0,208.0,1.0,2.0,4.0,136.0,36.0,1234.0,15.0,683.0,20.0,148.0,0.0,4.0,7.0,770.0,195.0,663.0,64.0,91.0,229.0,89.0,362.0,312.0,34.0,3.0,0.0,147.0,53.0,101.0,4009.0,3.0,156.0,25.0,1163.0,56.0,104.0,47.0,357.0,1601.0,34.0,113.0,1.0,634.0,124.0,28.0,408.0,14.0,3.0,9.0,89.0,262.0,195.0,226.0,505.0,419.0,705.0,12.0,62.0,78.0,853.0,73.0,8.0,3.0,13.0,46.0,339.0,93.0,171.0,2134.0,68.0,192.0,45.0,533.0,16.0,945.0,1882.0,2326.0,168.0,292.0,131.0,119.0,18.0,111.0,163.0,1503.0,1035.0,6.0,89.0,209.0,47.0,49.0,217.0,978.0,47.0,22.0,687.0,315.0,2655.0,111.0,81.0,9.0,30.0,37.0,9.0,9.0,18.0,9.0,1047.0,57.0,97.0,152.0,10.0,45.0,1647.0,89.0,9.0,0.0,247.0,98.0,578.0,7.0,67.0,170.0,2.0,1.0,214.0,1921.0,389.0,70.0,118.0,62.0,1975.0,122.0,410.0,48.0,127.0,243.0,761.0,91.0,121.0,64.0,11.0,1951.0,243.0,432.0,3.0,2807.0,2.0,3.0,1.0,1.0,1497.0,2069.0,1051.0,1134.0,14.0,90.0,376.0,11.0,185.0,147.0,21.0,164.0,797.0,169.0,56.0,45.0,245.0,199.0,97.0,572.0,267.0,19.0,64.0,458.0,1154.0,199.0,991.0,4.0,20.0,379.0,116.0,202.0,174.0,1.0,40.0,1.0,1.0,148.0,1507.0,82.0,238.0,59.0,2.0,83.0,136.0,134.0,3315275.0,48.0,267.0,330.0,18.0,11.0,683.0,588.0,194.0,17.0,1960.0,150.0,130.0,4.0,330.0,383.0,173.0,52.0,148.0,231.0,62.0,380.0,423.0,469.0,300.0,1009.0,920.0,232.0,81.0,1513.0,80.0,208.0,564.0,56.0,500.0,119.0,110.0,190.0,265.0,220.0,4.0,266.0,29.0,1271.0,1.0,2.0,446.0,7.0,524.0,825.0,282.0,129.0,218.0,14.0,9.0,43.0,7.0,645.0,383.0,12.0,224.0,3.0,287.0,7.0,50.0,108.0,35.0,329.0,172.0,46.0,3.0,129.0,31.0,108.0,82.0,245.0,322.0,2.0,1531.0,132.0,73.0,893.0,458.0,113.0,2.0,208.0,6.0,331.0,8.0,35.0,436.0,2.0,41.0,3.0,195.0,9.0,359.0,66.0,1528.0,29.0,448.0,52.0,63.0,32.0,548.0,226.0,72.0,204.0,391.0,6.0,68.0,28.0,35.0,1292.0,1827.0,176.0,636.0,175.0,12.0,48.0,105.0,5.0,116.0,238.0,26.0,666.0,381.0,338.0,395.0,10.0,43.0,146.0,45.0,34.0,232.0,4.0,13.0,43.0,72.0,4.0,1053.0,2785.0,28.0,38.0,270.0,52.0,319.0,123.0,5606.0,3.0,61.0,1.0,0.0,350.0,976.0,132.0,91.0,13.0,15.0,1134.0,247.0,151.0,1.0,1.0,2018-12-23,,2018-51,3.7118460026196907,3.7100000000000004, +296,296,4.27,75.0,3.0,111.0,0.0,203.0,567.0,68.0,45.0,173.0,275.0,4.0,190.0,40.0,1.0,628.0,155.0,98.0,38.0,166.0,1.0,0.0,3.0,98.0,40.0,1393.0,16.0,951.0,36.0,133.0,3.0,1.0,10.0,644.0,168.0,679.0,55.0,78.0,187.0,68.0,307.0,268.0,50.0,2.0,0.0,69.0,43.0,86.0,1968.0,3.0,161.0,14.0,1053.0,39.0,71.0,58.0,326.0,2116.0,14.0,109.0,0.0,594.0,102.0,19.0,388.0,10.0,10.0,12.0,84.0,187.0,178.0,199.0,392.0,342.0,498.0,7.0,95.0,37.0,621.0,94.0,4.0,9.0,22.0,48.0,324.0,84.0,121.0,530.0,74.0,124.0,48.0,502.0,14.0,923.0,1293.0,2003.0,121.0,234.0,79.0,69.0,46.0,113.0,96.0,1547.0,981.0,14.0,59.0,153.0,26.0,38.0,84.0,1032.0,43.0,9.0,853.0,315.0,2931.0,165.0,84.0,6.0,37.0,44.0,18.0,7.0,24.0,3.0,796.0,50.0,93.0,107.0,5.0,56.0,1777.0,51.0,10.0,1.0,164.0,85.0,658.0,11.0,43.0,128.0,0.0,1.0,206.0,1423.0,206.0,30.0,195.0,66.0,2373.0,1194.0,946.0,26.0,74.0,286.0,764.0,58.0,51.0,87.0,7.0,1906.0,245.0,329.0,0.0,2128.0,3.0,1.0,1.0,0.0,1075.0,2161.0,1039.0,1059.0,11.0,62.0,260.0,8.0,142.0,208.0,28.0,133.0,572.0,87.0,82.0,53.0,220.0,236.0,74.0,472.0,235.0,26.0,44.0,373.0,687.0,201.0,943.0,7.0,24.0,377.0,98.0,155.0,246.0,0.0,33.0,0.0,1.0,128.0,1296.0,82.0,186.0,46.0,1.0,77.0,100.0,144.0,2783541.0,52.0,427.0,599.0,22.0,11.0,531.0,562.0,229.0,9.0,2029.0,139.0,91.0,8.0,148.0,408.0,196.0,49.0,93.0,126.0,60.0,335.0,430.0,392.0,183.0,960.0,768.0,261.0,110.0,1728.0,36.0,135.0,361.0,47.0,371.0,86.0,75.0,137.0,254.0,227.0,7.0,238.0,28.0,1174.0,1.0,5.0,529.0,5.0,480.0,851.0,245.0,120.0,201.0,4.0,3.0,34.0,0.0,412.0,389.0,16.0,165.0,5.0,147.0,16.0,49.0,70.0,28.0,266.0,101.0,33.0,5.0,89.0,34.0,126.0,71.0,202.0,262.0,1.0,1602.0,124.0,74.0,920.0,307.0,87.0,0.0,156.0,0.0,269.0,6.0,33.0,273.0,0.0,18.0,0.0,175.0,1.0,294.0,61.0,1562.0,37.0,529.0,66.0,34.0,19.0,480.0,84.0,44.0,159.0,299.0,2.0,64.0,19.0,27.0,749.0,1234.0,137.0,476.0,146.0,10.0,28.0,79.0,7.0,79.0,207.0,14.0,549.0,404.0,268.0,457.0,3.0,30.0,129.0,33.0,19.0,194.0,2.0,14.0,40.0,39.0,0.0,984.0,1959.0,24.0,27.0,255.0,14.0,331.0,74.0,3384.0,0.0,42.0,1.0,1.0,395.0,955.0,213.0,115.0,5.0,19.0,1541.0,215.0,117.0,2.0,0.0,2018-12-30,,2018-52,4.244950300788866,5.854, +297,297,5.72,82.0,13.0,158.0,1.0,209.0,573.0,99.0,49.0,177.0,354.0,2.0,199.0,25.0,0.0,728.0,207.0,165.0,33.0,194.0,2.0,1.0,3.0,104.0,27.0,1478.0,14.0,757.0,25.0,217.0,3.0,1.0,7.0,556.0,218.0,706.0,69.0,114.0,313.0,89.0,293.0,294.0,38.0,3.0,0.0,107.0,63.0,85.0,1535.0,5.0,151.0,23.0,962.0,35.0,120.0,53.0,291.0,1444.0,22.0,107.0,1.0,597.0,201.0,24.0,414.0,9.0,4.0,11.0,95.0,229.0,195.0,203.0,362.0,492.0,548.0,21.0,76.0,48.0,696.0,66.0,7.0,9.0,16.0,36.0,350.0,109.0,164.0,397.0,85.0,138.0,56.0,555.0,11.0,836.0,1386.0,1995.0,142.0,269.0,81.0,66.0,46.0,149.0,159.0,1560.0,919.0,17.0,57.0,197.0,54.0,55.0,148.0,927.0,37.0,11.0,964.0,328.0,2876.0,83.0,65.0,12.0,22.0,47.0,12.0,6.0,14.0,6.0,796.0,45.0,79.0,103.0,6.0,34.0,2042.0,65.2,6.0,0.0,270.0,102.0,372.0,9.0,57.0,123.0,0.0,1.0,236.0,1662.0,266.0,43.0,155.0,61.0,2007.0,1401.0,1204.0,33.0,65.0,283.0,933.0,74.0,50.0,66.0,5.0,2891.0,206.0,279.0,1.0,2104.0,1.0,0.0,1.0,1.0,962.0,2601.0,954.0,1208.0,12.0,71.0,289.0,11.0,141.0,189.0,20.0,156.0,510.0,99.0,57.0,40.0,226.0,303.0,133.0,536.0,279.0,29.0,76.0,429.0,715.0,226.0,815.0,6.0,18.0,473.0,120.0,140.0,171.0,1.0,34.0,1.0,1.0,119.0,1519.0,87.0,173.0,48.0,1.0,94.6,143.0,161.0,2967038.0,41.0,232.0,272.0,26.0,18.0,526.0,756.0,199.0,23.0,1585.0,175.0,157.0,10.0,236.0,424.0,170.0,59.0,125.0,169.0,72.0,372.0,408.0,406.0,201.0,909.0,763.0,405.0,85.0,1646.0,46.0,187.0,400.0,58.0,434.0,110.0,93.0,168.2,252.0,258.0,13.0,253.0,36.0,1162.0,0.0,1.0,528.0,11.0,557.0,800.0,266.0,142.0,157.0,20.0,5.0,27.0,4.0,424.0,362.0,17.0,282.0,1.0,194.0,12.0,88.0,96.0,17.0,315.0,131.0,32.0,8.0,121.0,25.0,115.0,66.0,280.0,343.0,3.0,1418.0,120.0,79.0,796.0,328.0,123.0,0.0,160.0,7.0,256.0,15.0,21.0,398.0,1.0,35.0,4.0,195.0,8.0,328.0,62.0,1599.0,56.0,536.0,55.0,48.0,22.0,471.0,125.0,61.0,135.0,355.0,5.0,71.0,18.0,25.0,915.0,1518.0,119.0,470.0,147.0,17.0,23.0,75.0,11.0,110.0,195.0,37.0,792.0,367.0,232.0,375.0,4.0,49.0,123.0,52.0,24.0,220.0,2.0,19.0,56.0,74.0,3.0,1012.75,2541.0,31.0,23.0,255.0,46.0,359.0,137.0,3590.0,1.0,45.0,0.0,5.0,338.0,922.0,179.0,88.0,11.0,25.0,1286.0,255.0,114.0,1.0,0.0,2019-01-13,,2019-2,5.709119855220468,3.894, +298,298,7.63,179.0,28.0,268.0,2.0,240.0,669.0,199.0,95.0,304.0,440.0,2.0,239.0,49.0,1.0,858.0,366.0,215.0,48.0,323.0,4.0,1.0,1.0,174.0,55.0,1674.0,32.0,672.0,28.0,218.0,2.0,1.0,12.0,993.0,661.0,941.0,99.0,161.0,333.0,128.0,504.0,407.0,52.0,4.0,0.0,146.0,60.0,113.0,1916.0,4.0,123.0,28.0,2323.0,44.0,175.0,60.0,392.0,1202.0,38.0,152.0,1.0,758.0,229.0,41.0,491.0,15.0,11.0,22.0,147.0,353.0,262.0,186.0,600.0,719.0,618.0,88.0,87.0,79.0,980.0,118.0,5.0,12.0,16.0,73.0,429.0,120.0,319.0,593.0,116.0,253.0,73.0,781.0,13.0,1357.0,2100.0,2757.0,280.0,419.0,143.0,88.0,58.0,139.0,237.0,1972.0,1292.0,16.0,91.0,360.0,73.0,80.0,277.0,1055.0,48.0,19.0,1171.0,376.0,4004.0,136.0,97.0,17.0,23.0,72.0,20.0,18.0,17.0,7.0,1122.0,84.0,142.0,209.0,13.0,52.0,2160.0,79.4,17.0,0.0,500.0,136.0,485.0,12.0,71.0,215.0,2.0,3.0,344.0,2497.0,467.0,78.0,162.0,70.0,2403.0,1086.0,1642.0,61.0,130.0,394.0,1224.0,146.0,164.0,75.0,28.0,5029.0,329.0,462.0,3.0,2828.0,1.0,3.0,2.0,1.0,1289.0,2524.0,1373.0,1632.0,23.0,84.0,434.0,21.0,252.0,273.0,27.0,278.0,726.0,246.0,120.0,44.0,372.0,294.0,127.0,652.0,361.0,36.0,129.0,628.0,1088.0,356.0,1158.0,11.0,38.0,501.0,171.0,228.0,180.0,2.0,37.0,1.0,1.0,233.0,2019.0,120.0,264.0,80.0,2.0,112.2,196.0,206.0,3088151.0,64.0,252.0,586.0,19.0,11.0,947.0,643.0,257.0,15.0,1807.0,167.0,193.0,6.0,361.0,519.0,233.0,107.0,213.0,252.0,127.0,474.0,458.0,622.0,312.0,1370.0,1283.0,258.0,93.0,1707.0,56.0,253.0,646.0,94.0,737.0,182.0,154.0,199.4,296.0,289.0,24.0,300.0,33.0,1609.0,1.0,2.0,576.0,7.0,776.0,1065.0,396.0,190.0,283.0,13.0,8.0,68.0,7.0,680.0,521.0,28.0,365.0,3.0,348.0,26.0,66.0,144.0,30.0,504.0,257.0,46.0,5.0,218.0,32.0,134.0,91.0,474.0,476.0,2.0,1626.0,200.0,140.0,815.0,660.0,240.0,1.0,299.0,3.0,374.0,15.0,39.0,599.0,1.0,59.0,7.0,312.0,8.0,592.0,102.0,1991.0,39.0,702.0,67.0,61.0,32.0,668.0,211.0,126.0,241.0,451.0,1.0,65.0,16.0,45.0,1264.0,2705.0,244.0,738.0,196.0,14.0,46.0,123.0,10.0,159.0,222.0,52.0,961.0,503.0,353.0,515.0,9.0,54.0,162.0,70.0,36.0,317.0,2.0,26.0,68.0,65.0,2.0,1041.5,3635.0,47.0,32.0,384.0,107.0,476.0,137.0,5653.0,1.0,80.0,1.0,3.0,545.0,1221.0,289.0,130.0,29.0,16.0,1303.0,319.0,161.0,2.0,1.0,2019-01-20,,2019-3,7.627672614944547,9.108, +299,299,10.03,154.0,28.0,308.0,4.0,265.0,663.0,208.0,105.0,355.0,414.0,2.0,251.0,57.0,3.0,992.0,387.0,240.0,73.0,332.0,4.0,3.0,3.0,194.0,47.0,1761.0,28.0,763.0,32.0,232.0,2.0,3.0,5.0,862.0,304.0,976.0,91.0,203.0,332.0,193.0,503.0,497.0,67.0,12.0,2.0,134.0,83.0,112.0,1698.0,10.0,175.0,32.0,1461.0,54.0,206.0,84.0,277.0,890.0,33.0,186.0,10.0,718.0,205.0,54.0,485.0,15.0,8.0,17.0,172.0,301.0,320.0,215.0,580.0,669.0,587.0,32.0,82.0,121.0,683.0,126.0,8.0,19.0,29.0,68.0,402.0,107.0,233.0,644.0,139.0,238.0,72.0,795.0,17.0,1333.0,2166.0,2885.0,280.0,417.0,132.0,97.0,50.0,162.0,242.0,1827.0,1299.0,23.0,97.0,365.0,86.0,85.0,352.0,1049.0,60.0,23.0,1082.0,395.0,4517.0,197.0,181.0,25.0,41.0,62.0,30.0,21.0,30.0,10.0,1225.0,86.0,144.0,266.0,12.0,64.0,2034.0,93.6,20.0,1.0,505.0,123.0,573.0,11.0,85.0,265.0,4.0,6.0,283.0,2703.0,560.0,73.0,161.0,68.0,2516.0,661.0,1665.0,43.0,128.0,410.0,1181.0,127.0,170.0,94.0,19.0,2811.0,404.0,535.0,7.0,2979.0,4.0,3.0,3.0,9.0,1219.0,2315.0,1244.0,1419.0,22.0,113.0,549.0,18.0,257.0,270.0,46.0,256.0,720.0,179.0,145.0,64.0,404.0,349.0,87.0,771.0,424.0,28.0,115.0,651.0,1240.0,337.0,911.0,6.0,48.0,634.0,177.0,232.0,203.0,8.0,37.0,1.0,5.0,225.0,2114.0,141.0,286.0,82.0,2.0,129.8,319.0,229.0,2982715.0,59.0,365.0,492.0,27.0,19.0,1049.0,2699.0,239.0,31.0,1591.0,179.0,257.0,7.0,298.0,531.0,228.0,100.0,226.0,336.0,139.0,562.0,453.0,849.0,587.0,1201.0,1412.0,245.0,111.0,1509.0,66.0,328.0,778.0,79.0,752.0,199.0,133.0,230.6,386.0,328.0,12.0,351.0,46.0,1728.0,5.0,10.0,579.0,9.0,850.0,1049.0,479.0,190.0,295.0,15.0,10.0,55.0,6.0,626.0,740.0,25.0,433.0,2.0,475.0,23.0,66.0,162.0,50.0,575.0,275.0,57.0,15.0,228.0,38.0,160.0,98.0,513.0,546.0,5.0,1970.0,224.0,107.0,784.0,655.0,232.0,5.0,333.0,5.0,402.0,21.0,48.0,609.0,1.0,56.0,8.0,262.0,4.0,627.0,93.0,2093.0,34.0,886.0,71.0,56.0,32.0,715.0,269.0,141.0,210.0,490.0,5.0,235.0,37.0,51.0,1381.0,2952.0,186.0,824.0,169.0,16.0,35.0,163.0,16.0,170.0,224.0,51.0,1088.0,440.0,378.0,541.0,7.0,46.0,181.0,108.0,52.0,349.0,4.0,31.0,73.0,102.0,0.0,1070.25,4369.0,37.0,55.0,355.0,82.0,412.0,164.0,4640.0,2.0,101.0,6.0,6.0,521.0,1286.0,221.0,117.0,35.0,15.0,1321.0,288.0,166.0,5.0,1.0,2019-01-27,,2019-4,10.01986092550337,10.030000000000001, +300,300,12.46,162.0,14.0,339.0,4.0,276.0,772.0,184.0,101.0,370.0,896.0,4.0,214.0,99.0,1.0,1041.0,370.0,252.0,49.0,357.0,1.0,0.0,4.0,183.0,40.0,1811.0,43.0,848.0,38.0,186.0,2.0,1.0,8.0,930.0,272.0,1013.0,102.0,192.0,368.0,219.0,516.0,529.0,50.0,4.0,1.0,147.0,90.0,127.0,1839.0,6.0,170.0,38.0,1441.0,50.0,222.0,76.0,326.0,980.0,30.0,174.0,4.0,743.0,327.0,42.0,512.0,18.0,2.0,17.0,148.0,282.0,265.0,222.0,664.0,720.0,569.0,16.0,86.0,115.0,519.0,109.0,9.0,15.0,39.0,48.0,362.0,141.0,190.0,586.0,134.0,292.0,99.0,911.0,16.0,1148.0,1954.0,2752.0,275.0,378.0,159.0,79.0,60.0,850.0,276.0,2085.0,1379.0,19.0,103.0,378.0,88.0,153.0,395.0,1123.0,53.0,16.0,1261.0,335.0,5201.0,132.0,106.0,15.0,37.0,77.0,24.0,18.0,38.0,8.0,1381.0,80.0,176.0,238.0,13.0,70.0,2289.0,107.8,16.0,1.0,540.0,144.0,394.0,16.0,99.0,242.0,1.0,2.0,321.0,2678.0,607.0,82.0,208.0,79.0,2541.0,727.0,2070.0,49.0,121.0,452.0,1212.0,160.0,264.0,94.0,18.0,2308.0,363.0,627.0,2.0,3281.0,0.0,0.0,0.0,0.0,1357.0,2792.0,1256.0,1544.0,25.0,102.0,457.0,10.0,232.0,225.0,33.0,321.0,752.0,181.0,154.0,37.0,380.0,323.0,107.0,819.0,386.0,81.0,140.0,821.0,1252.0,434.0,819.0,9.0,52.0,527.0,196.0,241.0,210.0,1.0,42.0,0.0,1.0,181.0,3031.0,138.0,304.0,61.0,2.0,147.4,310.0,233.0,3308607.0,59.0,332.0,440.0,22.0,16.0,1205.0,2171.0,247.0,29.0,1682.0,204.0,244.0,6.0,193.0,467.0,226.0,97.0,231.0,299.0,144.0,574.0,472.0,924.0,378.0,1183.0,1347.0,256.0,122.0,1514.0,76.0,343.0,780.0,70.0,822.0,205.0,148.0,261.8,387.0,249.0,6.0,361.0,42.0,1900.0,4.0,2.0,567.0,12.0,851.0,1109.0,533.0,184.0,362.0,21.0,7.0,80.0,5.0,624.0,702.0,13.0,477.0,3.0,507.0,36.0,67.0,183.0,31.0,584.0,304.0,64.0,6.0,237.0,33.0,141.0,130.0,504.0,567.0,2.0,1898.0,246.0,93.0,726.0,623.0,253.0,1.0,377.0,3.0,475.0,15.0,50.0,596.0,0.0,64.0,10.0,344.0,7.0,497.0,79.0,1937.0,56.0,2267.0,94.0,56.0,29.0,705.0,308.0,128.0,200.0,543.0,3.0,84.0,19.0,47.0,1271.0,2856.0,162.0,845.0,201.0,19.0,40.0,168.0,7.0,149.0,221.0,36.0,1013.0,399.0,392.0,550.0,4.0,58.0,226.0,90.0,48.0,392.0,1.0,38.0,74.0,83.0,6.0,1099.0,4327.0,46.0,51.0,375.0,77.0,279.0,175.0,4729.0,1.0,128.0,1.0,2.0,567.0,1166.0,203.0,87.0,55.0,20.0,1321.0,328.0,135.0,1.0,1.0,2019-02-03,,2019-5,12.44468959204239,12.514000000000003, +301,301,14.03,173.0,21.0,322.0,2.0,268.0,668.0,203.0,115.0,315.0,640.0,7.0,268.0,79.0,2.0,993.0,291.0,205.0,70.0,351.0,4.0,3.0,10.0,204.0,41.0,1816.0,36.0,789.0,61.0,185.0,2.0,2.0,5.0,912.0,313.0,879.0,81.0,206.0,549.0,179.0,566.0,449.0,62.0,5.0,2.0,148.0,91.0,124.0,2741.0,6.0,128.0,29.0,1450.0,63.0,179.0,80.0,284.0,1456.0,37.0,127.0,4.0,768.0,221.0,54.0,564.0,16.0,7.0,21.0,166.0,331.0,276.0,218.0,637.0,780.0,677.0,21.0,94.0,130.0,612.0,112.0,6.0,17.0,36.0,61.0,356.0,111.0,188.0,583.0,120.0,285.0,78.0,1094.0,20.0,1122.0,1832.0,2544.0,266.0,387.0,151.0,94.0,31.0,365.0,274.0,1733.0,1285.0,14.0,164.0,298.0,103.0,60.0,330.0,1090.0,56.0,16.0,1262.0,402.0,5310.0,149.0,140.0,8.0,43.0,64.0,24.0,15.0,30.0,4.0,1120.0,84.0,168.0,258.0,21.0,111.0,2049.0,122.0,16.0,0.0,504.0,136.0,669.0,17.0,113.0,255.0,1.0,2.0,291.0,2617.0,479.0,96.0,240.0,109.0,2753.0,746.0,2641.0,46.0,148.0,383.0,1205.0,143.0,213.0,94.0,21.0,2446.0,360.0,630.0,3.0,3156.0,2.0,2.0,2.0,2.0,1310.0,2411.0,1248.0,1726.0,25.0,141.0,412.0,20.0,271.0,262.0,30.0,337.0,723.0,187.0,160.0,49.0,403.0,322.0,102.0,711.0,404.0,23.0,129.0,658.0,1155.0,410.0,1234.0,6.0,37.0,434.0,176.0,220.0,277.0,3.0,44.0,1.0,4.0,222.0,2294.0,157.0,331.0,78.0,4.0,165.0,337.0,193.0,3478360.0,64.0,310.0,525.0,34.0,8.0,1111.0,1037.0,268.0,30.0,1697.0,199.0,297.0,9.0,287.0,463.0,256.0,114.0,205.0,280.0,152.0,559.0,505.0,837.0,300.0,1115.0,1352.0,276.0,78.0,1406.0,86.0,306.0,677.0,70.0,841.0,189.0,165.0,293.0,377.0,259.0,13.0,354.0,34.0,1776.0,6.0,5.0,611.0,18.0,854.0,1053.0,497.0,169.0,306.0,12.0,10.0,59.0,8.0,611.0,680.0,24.0,389.0,5.0,477.0,16.0,55.0,194.0,50.0,596.0,355.0,72.0,5.0,265.0,50.0,152.0,146.0,448.0,518.0,2.0,2263.0,207.0,89.0,754.0,595.0,241.0,2.0,369.0,3.0,450.0,26.0,39.0,500.0,3.0,54.0,10.0,313.0,8.0,486.0,121.0,1836.0,48.0,1864.0,80.0,86.0,23.0,614.0,232.0,121.0,222.0,545.0,9.0,208.0,24.0,47.0,1229.0,2583.0,124.0,897.0,171.0,13.0,42.0,148.0,7.0,184.0,227.0,51.0,1151.0,427.0,415.0,510.0,22.0,41.0,244.0,68.0,42.0,313.0,2.0,53.0,56.0,73.0,3.0,1147.0,4468.0,45.0,37.0,380.0,80.0,346.0,166.0,4806.0,1.0,102.0,4.0,6.0,700.0,1181.0,215.0,85.0,65.0,30.0,1379.0,309.0,181.0,5.0,6.0,2019-02-10,,2019-6,14.041646291943035,11.384, +302,302,13.23,134.0,19.0,254.0,1.0,274.0,627.0,191.0,128.0,330.0,441.0,5.0,268.0,65.0,1.0,1070.0,341.0,162.0,60.0,314.0,2.0,1.0,4.0,207.0,53.0,1539.0,35.0,783.0,52.0,184.0,3.0,3.0,7.0,977.0,333.0,924.0,94.0,194.0,245.0,174.0,515.0,391.0,38.0,4.0,0.0,127.0,86.0,124.0,2046.0,6.0,121.0,17.0,1714.0,54.0,146.0,66.0,292.0,980.0,25.0,147.0,1.0,701.0,178.0,46.0,503.0,9.0,3.0,22.0,152.0,350.0,266.0,221.0,660.0,645.0,640.0,16.0,317.0,71.0,541.0,103.0,8.0,15.0,24.0,83.0,305.0,130.0,183.0,638.0,95.0,283.0,87.0,837.0,17.0,1310.0,1900.0,2675.0,267.0,388.0,114.0,80.0,55.0,169.0,214.0,1935.0,1165.0,13.0,120.0,318.0,79.0,73.0,340.0,1085.0,47.0,11.0,1054.0,429.0,4643.0,160.0,82.0,13.0,35.0,60.0,17.0,19.0,27.0,4.0,1496.0,84.0,181.0,229.0,23.0,57.0,2026.0,90.0,11.0,1.0,607.0,124.0,442.0,7.0,84.0,235.0,1.0,4.0,310.0,2720.0,586.0,75.0,234.0,91.0,2508.0,722.0,2516.0,55.0,138.0,364.0,1199.0,114.0,138.0,97.0,33.0,1864.0,328.0,542.0,1.0,3068.0,1.0,0.0,1.0,2.0,1261.0,2007.0,1121.0,1495.0,33.0,112.0,420.0,22.0,264.0,211.0,20.0,291.0,744.0,176.0,187.0,73.0,392.0,268.0,147.0,757.0,412.0,19.0,116.0,613.0,1120.0,376.0,1022.0,7.0,38.0,416.0,183.0,192.0,237.0,4.0,33.0,1.0,1.0,182.0,2252.0,184.0,311.0,85.0,0.0,180.0,271.0,210.0,3523996.0,60.0,300.0,415.0,48.0,17.0,1197.0,730.0,190.0,27.0,1664.0,231.0,297.0,7.0,230.0,436.0,176.0,92.0,225.0,284.0,132.0,517.0,458.0,857.0,380.0,1769.0,1253.0,255.0,103.0,1420.0,96.0,281.0,548.0,68.0,786.0,161.0,105.0,251.0,328.0,253.0,13.0,365.0,35.0,1697.0,5.0,2.0,567.0,11.0,732.0,928.0,399.0,152.0,303.0,8.0,10.0,91.0,9.0,687.0,608.0,32.0,433.0,5.0,478.0,24.0,47.0,172.0,46.0,535.0,268.0,75.0,7.0,264.0,38.0,121.0,138.0,503.0,485.0,1.0,2006.0,261.0,93.0,611.0,549.0,235.0,2.0,375.0,7.0,416.0,14.0,22.0,586.0,0.0,67.0,4.0,256.0,5.0,512.0,85.0,1641.0,39.0,1115.0,86.0,80.0,32.0,574.0,268.0,101.0,207.0,509.0,1.0,481.0,19.0,41.0,1181.0,2590.0,136.0,810.0,157.0,16.0,56.0,120.0,13.0,132.0,227.0,35.0,923.0,401.0,401.0,487.0,11.0,66.0,242.0,68.0,37.0,303.0,1.0,47.0,60.0,73.0,1.0,1069.0,4430.0,37.0,43.0,338.0,79.0,329.0,140.0,4789.0,1.0,130.0,1.0,1.0,596.0,1232.0,185.0,114.0,15.0,65.0,1086.0,282.0,211.0,2.0,2.0,2019-02-17,,2019-7,13.236317371627834,11.898, +303,303,11.16,162.0,27.0,170.0,5.0,249.0,645.0,186.0,116.0,306.0,377.0,5.0,277.0,57.0,3.0,959.0,260.0,180.0,69.0,263.0,5.0,3.0,6.0,158.0,51.0,1273.0,27.0,673.0,38.0,176.0,5.0,3.0,9.0,841.0,317.0,783.0,92.0,130.0,197.0,178.0,454.0,369.0,43.0,4.0,2.0,223.0,69.0,99.0,1807.0,9.0,159.0,27.0,1379.0,40.0,147.0,82.0,260.0,1166.0,42.0,135.0,3.0,705.0,196.0,54.0,443.0,19.0,5.0,20.0,163.0,254.0,236.0,193.0,589.0,437.0,442.0,28.0,71.0,83.0,582.0,80.0,5.0,14.0,18.0,63.0,283.0,109.0,152.0,544.0,79.0,279.0,69.0,721.0,15.0,1121.0,1795.0,2300.0,284.0,343.0,112.0,144.0,57.0,291.0,251.0,1438.0,1078.0,11.0,106.0,326.0,62.0,51.0,355.0,1012.0,63.0,17.0,2080.0,371.0,4003.0,119.0,198.0,19.0,27.0,63.0,18.0,14.0,27.0,4.0,922.0,74.0,148.0,234.0,21.0,46.0,1912.0,123.0,9.0,1.0,399.0,132.0,459.0,20.0,110.0,252.0,3.0,4.0,289.0,2383.0,524.0,68.0,183.0,79.0,2347.0,358.0,1846.0,39.0,102.0,306.0,921.0,115.0,132.0,69.0,12.0,1860.0,335.0,462.0,7.0,2571.0,4.0,2.0,3.0,2.0,1163.0,3031.0,1395.0,1293.0,27.0,118.0,331.0,10.0,231.0,171.0,26.0,242.0,638.0,185.0,170.0,51.0,327.0,254.0,88.0,569.0,324.0,23.0,126.0,673.0,940.0,342.0,546.0,3.0,49.0,352.0,149.0,208.0,210.0,6.0,51.0,3.0,1.0,176.0,1750.0,153.0,188.0,87.0,2.0,133.0,211.0,231.0,3691675.0,45.0,256.0,337.0,30.0,11.0,956.0,641.0,206.0,19.0,1404.0,216.0,215.0,7.0,188.0,443.0,159.0,100.0,184.0,282.0,99.0,444.0,370.0,644.0,539.0,1192.0,1418.0,227.0,91.0,1320.0,89.0,240.0,597.0,59.0,657.0,144.0,93.0,270.0,311.0,230.0,14.0,325.0,30.0,1494.0,2.0,5.0,476.0,13.0,711.0,896.0,383.0,160.0,292.0,7.0,7.0,65.0,7.0,533.0,478.0,15.0,235.0,0.0,444.0,23.0,38.0,144.0,49.0,362.0,286.0,55.0,8.0,213.0,38.0,130.0,124.0,296.0,393.0,2.0,1483.0,203.0,76.0,535.0,461.0,136.0,1.0,329.0,2.0,390.0,16.0,42.0,477.0,2.0,62.0,2.0,225.0,6.0,373.0,91.0,1788.0,37.0,690.0,55.0,48.0,24.0,576.0,195.0,121.0,183.0,463.0,5.0,152.0,20.0,47.0,1122.0,2442.0,562.0,752.0,182.0,17.0,33.0,136.0,10.0,150.0,150.0,50.0,936.0,406.0,312.0,538.0,14.0,46.0,185.0,63.0,28.0,313.0,1.0,53.0,56.0,58.0,1.0,972.0,3977.0,32.0,29.0,301.0,77.0,241.0,154.0,4855.0,1.0,115.0,1.0,2.0,449.0,1010.0,161.0,100.0,25.0,28.0,1006.0,254.0,151.0,2.0,2.0,2019-02-24,,2019-8,11.150681046360642,9.262, +304,304,9.0,158.0,21.0,211.0,1.0,228.0,746.0,193.0,133.0,307.0,453.0,4.0,261.0,50.0,1.0,1089.0,319.0,153.0,67.0,343.0,2.0,1.0,4.0,174.0,33.0,1272.0,39.0,672.0,63.0,195.0,4.0,2.0,11.0,880.0,207.0,969.0,80.0,94.0,217.0,148.0,463.0,398.0,29.0,2.0,0.0,159.0,61.0,101.0,2130.0,1.0,136.0,32.0,1480.0,59.0,153.0,70.0,257.0,933.0,37.0,203.0,4.0,905.0,173.0,27.0,435.0,15.0,14.0,19.0,179.0,232.0,225.0,210.0,543.0,453.0,420.0,25.0,66.0,114.0,647.0,81.0,2.0,6.0,20.0,90.0,300.0,125.0,174.0,549.0,110.0,265.0,71.0,624.0,17.0,1161.0,1920.0,2531.0,319.0,360.0,119.0,101.0,41.0,167.0,263.0,885.0,1027.0,15.0,105.0,325.0,71.0,81.0,348.0,1005.0,45.0,13.0,1825.0,380.0,3574.0,141.0,89.0,15.0,18.0,67.0,16.0,15.0,30.0,6.0,1053.0,103.0,176.0,206.0,16.0,52.0,2132.0,104.0,14.0,1.0,401.0,129.0,440.0,10.0,102.0,256.0,2.0,3.0,316.0,2484.0,507.0,64.0,148.0,75.0,2248.0,646.0,1490.0,54.0,113.0,316.0,868.0,109.0,155.0,74.0,14.0,1558.0,381.0,481.0,2.0,2373.0,2.0,7.0,3.0,4.0,1036.0,2057.0,1141.0,1243.0,40.0,126.0,337.0,9.0,242.0,230.0,33.0,297.0,694.0,180.0,148.0,105.0,289.0,497.0,79.0,825.0,377.0,24.0,129.0,642.0,1295.0,379.0,422.0,5.0,56.0,362.0,148.0,246.0,301.0,3.0,72.0,1.0,2.0,182.0,1804.0,149.0,240.0,82.0,2.0,147.0,230.0,191.0,4144419.0,56.0,221.0,385.0,24.0,13.0,1070.0,674.0,224.0,14.0,1321.0,223.0,301.0,13.0,168.0,465.0,180.0,83.0,208.0,269.0,114.0,508.0,367.0,760.0,317.0,1212.0,1823.0,249.0,99.0,1247.0,102.0,244.0,569.0,80.0,759.0,165.0,166.0,221.0,360.0,250.0,9.0,346.0,40.0,1609.0,1.0,2.0,578.0,7.0,694.0,912.0,347.0,174.0,293.0,8.0,9.0,79.0,2.0,586.0,456.0,36.0,304.0,6.0,525.0,31.0,45.0,167.0,46.0,344.0,340.0,71.0,20.0,190.0,28.0,124.0,139.0,337.0,429.0,3.0,1653.0,176.0,100.0,574.0,541.0,131.0,1.0,413.0,6.0,381.0,16.0,43.0,628.0,2.0,51.0,3.0,231.0,3.0,478.0,74.0,1721.0,51.0,591.0,64.0,67.0,44.0,606.0,236.0,125.0,197.0,567.0,3.0,97.0,23.0,50.0,1093.0,2578.0,301.0,808.0,177.0,19.0,36.0,137.0,7.0,140.0,154.0,33.0,927.0,431.0,346.0,532.0,6.0,31.0,225.0,87.0,31.0,274.0,3.0,56.0,55.0,52.0,0.0,1036.0,3958.0,31.0,56.0,324.0,82.0,289.0,150.0,4396.0,3.0,116.0,0.0,4.0,575.0,1165.0,218.0,77.0,19.0,32.0,981.0,286.0,159.0,4.0,1.0,2019-03-03,,2019-9,9.017514496156158,9.206000000000001, +305,305,6.55,105.0,21.0,121.0,1.0,156.0,514.0,123.0,90.0,251.0,337.0,0.0,227.0,37.0,0.0,662.0,200.0,116.0,47.0,227.0,0.0,0.0,1.0,136.0,25.0,992.0,23.0,482.0,28.0,151.0,0.0,0.0,1.0,694.0,232.0,617.0,69.0,82.0,165.0,108.0,403.0,295.0,23.0,2.0,1.0,93.0,57.0,77.0,1274.0,2.0,75.0,28.0,1114.0,37.0,91.0,53.0,183.0,818.0,15.0,159.0,2.0,830.0,118.0,35.0,266.0,11.0,7.0,31.0,103.0,145.0,170.0,170.0,378.0,301.0,262.0,14.0,61.0,62.0,430.0,60.0,3.0,12.0,12.0,35.0,237.0,83.0,125.0,468.0,63.0,216.0,41.0,407.0,14.0,780.0,1247.0,2056.0,169.0,298.0,81.0,55.0,44.0,141.0,207.0,836.0,717.0,12.0,76.0,210.0,40.0,63.0,147.0,725.0,34.0,4.0,880.0,270.0,2486.0,115.0,58.0,3.0,16.0,46.0,12.0,6.0,20.0,9.0,754.0,49.0,132.0,153.0,10.0,36.0,1513.0,52.0,10.0,1.0,239.0,64.0,393.0,4.0,51.0,161.0,0.0,0.0,227.0,1620.0,383.0,59.0,115.0,55.0,1692.0,196.0,902.0,33.0,60.0,366.0,808.0,80.0,90.0,42.0,12.0,971.0,235.0,329.0,0.0,1669.0,0.0,1.0,0.0,0.0,846.0,1394.0,823.0,791.0,16.0,77.0,268.0,9.0,145.0,179.0,22.0,175.0,570.0,120.0,119.0,65.0,221.0,276.0,39.0,429.0,225.0,37.0,86.0,377.0,771.0,237.0,279.0,7.0,39.0,275.0,119.0,160.0,186.0,1.0,34.0,1.0,2.0,139.0,1098.0,115.0,156.0,64.0,0.0,80.0,141.0,137.0,3139620.0,38.0,165.0,266.0,15.0,6.0,848.0,645.0,162.0,16.0,926.0,115.0,222.0,12.0,187.0,346.0,124.0,46.0,139.0,196.0,85.0,366.0,261.0,551.0,252.0,810.0,1068.0,160.0,70.0,962.0,55.0,195.0,534.0,57.0,594.0,95.0,115.0,119.0,274.0,180.0,9.0,253.0,24.0,1036.0,5.0,0.0,368.0,9.0,554.0,647.0,251.0,138.0,306.0,9.0,1.0,39.0,6.0,362.0,342.0,22.0,187.0,0.0,273.0,15.0,31.0,98.0,32.0,212.0,218.0,61.0,8.0,145.0,30.0,95.0,84.0,186.0,247.0,1.0,1242.0,97.0,61.0,391.0,379.0,88.0,0.0,271.0,7.0,267.0,3.0,30.0,387.0,0.0,40.0,4.0,167.0,3.0,315.0,63.0,1384.0,89.0,450.0,45.0,52.0,23.0,436.0,108.0,72.0,133.0,390.0,1.0,93.0,21.0,22.0,888.0,1896.0,225.0,606.0,135.0,12.0,24.0,78.0,8.0,115.0,108.0,26.0,648.0,362.0,297.0,370.0,6.0,29.0,167.0,46.0,33.0,197.0,0.0,43.0,47.0,39.0,3.0,827.0,2662.0,27.0,30.0,219.0,43.0,224.0,125.0,3642.0,2.0,55.0,1.0,1.0,360.0,882.0,132.0,82.0,20.0,19.0,777.0,209.0,163.0,0.0,1.0,2019-03-10,,2019-10,6.562787613084009,5.862, +306,306,4.75,86.0,16.0,118.0,0.0,131.0,479.0,85.0,82.0,153.0,316.0,1.0,183.0,34.0,2.0,560.0,153.0,85.0,50.0,172.0,1.0,1.0,2.0,99.0,29.0,648.0,16.0,530.0,28.0,176.0,1.0,1.0,6.0,643.0,112.0,414.0,82.0,67.0,221.0,96.0,396.0,236.0,13.0,3.0,0.0,112.0,40.0,47.0,1228.0,2.0,164.0,21.0,822.0,30.0,81.0,55.0,174.0,635.0,12.0,106.0,0.0,951.0,92.0,25.0,217.0,5.0,5.0,9.0,101.0,155.0,150.0,137.0,361.0,199.0,238.0,10.0,59.0,43.0,341.0,43.0,4.0,14.0,13.0,46.0,137.0,89.0,94.0,298.0,55.0,159.0,40.0,312.0,11.0,610.0,975.0,1230.0,116.0,220.0,75.0,117.0,42.0,88.0,168.0,422.0,625.0,16.0,58.0,186.0,22.0,53.0,102.0,701.0,25.0,5.0,897.0,264.0,1980.0,88.0,61.0,8.0,19.0,28.0,11.0,2.0,14.0,4.0,695.0,40.0,111.0,140.0,6.0,28.0,1561.0,59.0,11.0,2.0,164.0,65.0,299.0,9.0,42.0,116.0,2.0,1.0,216.0,1310.0,242.0,36.0,412.0,60.0,1478.0,152.0,824.0,28.0,61.0,223.0,652.0,62.0,75.0,45.0,10.0,1026.0,178.0,309.0,1.0,1084.0,1.0,0.0,1.0,0.0,556.0,2295.0,726.0,468.0,13.0,69.0,214.0,9.0,107.0,121.0,27.0,150.0,478.0,83.0,85.0,34.0,182.0,770.0,23.0,384.0,230.0,14.0,83.0,374.0,536.0,225.0,188.0,1.0,20.0,265.0,92.0,158.0,151.0,0.0,31.0,1.0,0.0,164.0,804.0,92.0,126.0,180.0,0.0,37.0,105.0,126.0,2504585.0,32.0,182.0,204.0,11.0,10.0,684.0,426.0,139.0,9.0,602.0,116.0,203.0,7.0,62.0,253.0,70.0,54.0,119.0,136.0,76.0,272.0,257.0,493.0,233.0,631.0,803.0,132.0,50.0,841.0,35.0,155.0,335.0,50.0,436.0,86.0,87.0,105.0,191.0,206.0,1.0,197.0,26.0,932.0,1.0,0.0,335.0,9.0,408.0,466.0,250.0,112.0,219.0,2.0,4.0,37.0,2.0,324.0,301.0,12.0,151.0,3.0,183.0,11.0,16.0,103.0,21.0,208.0,226.0,51.0,5.0,131.0,33.0,95.0,53.0,150.0,224.0,1.0,1062.0,95.0,54.0,355.0,313.0,42.0,0.0,253.0,2.0,246.0,8.0,20.0,388.0,1.0,33.0,0.0,181.0,2.0,243.0,71.0,2303.0,24.0,343.0,41.0,45.0,10.0,340.0,102.0,54.0,134.0,313.0,3.0,68.0,13.0,17.0,1038.0,1769.0,103.0,579.0,111.0,6.0,20.0,56.0,6.0,109.0,83.0,23.0,494.0,256.0,276.0,349.0,4.0,28.0,133.0,35.0,25.0,141.0,1.0,44.0,35.0,34.0,3.0,770.0,2426.0,21.0,20.0,278.0,36.0,231.0,110.0,2730.0,0.0,51.0,1.0,0.0,478.0,677.0,97.0,71.0,6.0,15.0,603.0,136.0,102.0,0.0,0.0,2019-03-17,,2019-11,4.747701015210733,5.896000000000001, +307,307,3.66,93.0,24.0,134.0,1.0,186.0,520.0,85.0,107.0,186.0,366.0,4.0,263.0,49.0,2.0,816.0,186.0,150.0,40.0,274.0,2.0,2.0,5.0,119.0,31.0,797.0,20.0,781.0,28.0,137.0,1.0,2.0,7.0,761.0,172.0,626.0,74.0,65.0,251.0,100.0,430.0,315.0,31.0,3.0,0.0,117.0,50.0,86.0,2935.0,4.0,123.0,19.0,1222.0,45.0,120.0,60.0,229.0,866.0,21.0,104.0,4.0,820.0,94.0,28.0,266.0,6.0,4.0,10.0,104.0,146.0,208.0,208.0,412.0,379.0,314.0,21.0,31.0,45.0,279.0,71.0,13.0,12.0,15.0,45.0,172.0,144.0,115.0,428.0,64.0,197.0,47.0,328.0,9.0,878.0,1391.0,1377.0,151.0,291.0,118.0,112.0,38.0,98.0,170.0,806.0,895.0,10.0,78.0,238.0,26.0,53.0,149.0,797.0,39.0,6.0,829.0,275.0,2211.0,159.0,53.0,5.0,14.0,31.0,16.0,7.0,13.0,0.0,745.0,49.0,127.0,170.0,10.0,41.0,1572.0,55.0,10.0,0.0,213.0,97.0,323.0,14.0,58.0,161.0,0.0,2.0,211.0,1744.0,361.0,63.0,139.0,34.0,1554.0,131.0,739.0,25.0,71.0,246.0,732.0,91.0,143.0,58.0,13.0,1339.0,255.0,389.0,1.0,1388.0,1.0,1.0,2.0,2.0,748.0,1422.0,987.0,1526.0,17.0,135.0,331.0,14.0,137.0,167.0,48.0,158.0,651.0,293.0,133.0,44.0,236.0,404.0,58.0,1482.0,295.0,14.0,103.0,482.0,754.0,299.0,273.0,5.0,29.0,333.0,113.0,154.0,158.0,8.0,42.0,0.0,1.0,183.0,1148.0,108.0,229.0,128.0,4.0,68.0,148.0,140.0,2859243.0,38.0,161.0,220.0,8.0,7.0,896.0,580.0,174.0,12.0,1022.0,123.0,289.0,7.0,74.0,295.0,101.0,81.0,170.0,217.0,91.0,362.0,343.0,875.0,342.0,751.0,1023.0,185.0,51.0,1153.0,53.0,173.0,411.0,57.0,502.0,96.0,78.0,122.0,247.0,232.0,17.0,266.0,22.0,1073.0,3.0,2.0,415.0,15.0,523.0,697.0,287.0,154.0,207.0,1.0,4.0,75.0,2.0,479.0,335.0,38.0,191.0,0.0,187.0,7.0,25.0,120.0,31.0,198.0,227.0,63.0,6.0,155.0,16.0,141.0,92.0,203.0,332.0,8.0,1180.0,103.0,52.0,443.0,441.0,85.0,0.0,241.0,1.0,298.0,15.0,33.0,648.0,1.0,40.0,1.0,204.0,2.0,354.0,69.0,3387.0,22.0,458.0,43.0,41.0,20.0,512.0,139.0,66.0,171.0,412.0,4.0,50.0,18.0,29.0,1500.0,2616.0,72.0,1128.0,139.0,19.0,27.0,107.0,6.0,130.0,112.0,35.0,751.0,319.0,432.0,516.0,7.0,48.0,298.0,48.0,51.0,263.0,2.0,69.0,53.0,53.0,0.0,1004.0,2868.0,20.0,28.0,340.0,48.0,286.0,117.0,3764.0,0.0,60.0,1.0,2.0,400.0,730.0,165.0,59.0,8.0,90.0,739.0,198.0,121.0,2.0,1.0,2019-03-24,,2019-12,3.6550974484367824,4.312, +308,308,2.87,120.0,6.0,110.0,1.0,150.0,468.0,76.0,74.0,171.0,286.0,1.0,173.0,31.0,0.0,593.0,160.0,131.0,56.0,219.0,2.0,4.0,2.0,91.0,30.0,636.0,15.0,659.0,19.0,133.0,1.0,0.0,7.0,722.0,169.0,542.0,52.0,63.0,113.0,63.0,335.0,279.0,14.0,0.0,0.0,96.0,35.0,67.0,1081.0,3.0,56.0,24.0,1207.0,58.0,79.0,56.0,299.0,844.0,16.0,85.0,1.0,804.0,87.0,20.0,334.0,8.0,2.0,17.0,119.0,145.0,148.0,193.0,374.0,345.0,268.0,16.0,43.0,34.0,312.0,60.0,6.0,4.0,20.0,52.0,185.0,150.0,94.0,459.0,69.0,193.0,46.0,256.0,10.0,769.0,1234.0,1268.0,154.0,246.0,91.0,58.0,41.0,87.0,139.0,1387.0,814.0,7.0,51.0,179.0,29.0,33.0,107.0,652.0,37.0,5.0,808.0,238.0,2148.0,134.0,43.0,6.0,7.0,39.0,18.0,5.0,6.0,2.0,631.0,39.0,89.0,174.0,2.0,49.0,1483.0,47.0,8.0,0.0,204.0,74.0,298.0,9.0,52.0,99.0,0.0,0.0,181.0,1520.0,323.0,38.0,90.0,42.0,1354.0,7970.0,1598.0,22.0,51.0,323.0,639.0,102.0,80.0,71.0,19.0,836.0,206.0,320.0,0.0,1322.0,2.0,0.0,1.0,2.0,782.0,1361.0,1292.0,1277.0,11.0,67.0,222.0,3.0,127.0,144.0,21.0,133.0,693.0,168.0,127.0,69.0,208.0,181.0,67.0,2970.0,289.0,17.0,66.0,396.0,552.0,208.0,315.0,6.0,29.0,269.0,132.0,169.0,158.0,1.0,28.0,0.0,0.0,169.0,1158.0,70.0,144.0,77.0,0.0,50.0,116.0,114.0,2415368.0,38.0,157.0,519.0,16.0,11.0,620.0,351.0,169.0,15.0,912.0,97.0,257.0,5.0,105.0,284.0,101.0,45.0,94.0,165.0,61.0,310.0,271.0,525.0,229.0,768.0,799.0,189.0,34.0,1128.0,23.0,159.0,343.0,53.0,390.0,99.0,73.0,87.0,213.0,195.0,6.0,184.0,24.0,886.0,0.0,0.0,429.0,6.0,514.0,626.0,275.0,114.0,223.0,5.0,6.0,48.0,2.0,456.0,349.0,30.0,151.0,0.0,144.0,16.0,27.0,120.0,23.0,216.0,213.0,41.0,4.0,169.0,21.0,95.0,70.0,143.0,274.0,1.0,1146.0,119.0,48.0,600.0,306.0,64.0,0.0,194.0,4.0,269.0,2.0,20.0,435.0,0.0,27.0,2.0,201.0,1.0,271.0,48.0,1645.0,35.0,338.0,36.0,40.0,24.0,353.0,135.0,64.0,156.0,309.0,0.0,37.0,18.0,28.0,732.0,1556.0,57.0,593.0,119.0,12.0,11.0,67.0,10.0,102.0,85.0,26.0,481.0,357.0,309.0,317.0,5.0,69.0,114.0,38.0,20.0,149.0,2.0,65.0,55.0,31.0,0.0,1131.0,2468.0,22.0,32.0,298.0,39.0,238.0,88.0,3045.0,1.0,38.0,0.0,2.0,462.0,575.0,85.0,50.0,11.0,16.0,770.0,169.0,114.0,0.0,0.0,2019-03-31,,2019-13,2.893811262644629,4.294, +309,309,2.35,103.0,16.0,146.0,0.0,158.0,701.0,97.0,113.0,232.0,366.0,1.0,261.0,56.0,0.0,809.0,207.0,165.0,68.0,284.0,0.0,2.0,6.0,159.0,40.0,1060.0,30.0,848.0,37.0,165.0,1.0,0.0,5.0,1034.0,811.0,741.0,90.0,75.0,194.0,111.0,471.0,383.0,26.0,1.0,0.0,123.0,40.0,95.0,1559.0,3.0,121.0,35.0,1462.0,52.0,126.0,67.0,511.0,1938.0,25.0,121.0,1.0,945.0,122.0,26.0,409.0,5.0,2.0,21.0,123.0,127.0,212.0,183.0,502.0,443.0,387.0,43.0,61.0,63.0,386.0,88.0,5.0,24.0,18.0,79.0,232.0,172.0,120.0,639.0,86.0,273.0,48.0,425.0,11.0,908.0,1691.0,1757.0,148.0,308.0,192.0,42.0,34.0,121.0,228.0,1834.0,1092.0,15.0,65.0,175.0,41.0,51.0,179.0,871.0,46.0,4.0,1130.0,338.0,3010.0,172.0,68.0,7.0,21.0,55.0,17.0,13.0,12.0,6.0,772.0,45.0,108.0,205.0,10.0,52.0,2148.0,79.0,14.0,1.0,279.0,75.0,406.0,11.0,65.0,156.0,1.0,0.0,270.0,2069.0,383.0,73.0,98.0,30.0,1688.0,882.0,520.0,32.0,68.0,345.0,895.0,101.0,57.0,77.0,12.0,2004.0,262.0,470.0,0.0,1581.0,0.0,1.0,0.0,1.0,968.0,2000.0,1504.0,1130.0,25.0,101.0,300.0,7.0,146.0,184.0,36.0,219.0,929.0,170.0,143.0,59.0,399.0,212.0,70.0,1798.0,311.0,13.0,85.0,597.0,708.0,232.0,485.0,3.0,53.0,338.0,146.0,168.0,256.0,1.0,37.0,0.0,1.0,227.0,1958.0,139.0,213.0,74.0,0.0,61.0,207.0,148.0,3926648.0,38.0,252.0,387.0,14.0,5.0,762.0,511.0,205.0,24.0,2133.0,156.0,377.0,7.0,108.0,374.0,119.0,64.0,188.0,236.0,85.0,411.0,389.0,705.0,314.0,1017.0,1036.0,199.0,52.0,1679.0,52.0,185.0,473.0,54.0,533.0,128.0,114.0,130.0,314.0,168.0,8.0,248.0,33.0,1275.0,2.0,0.0,565.0,8.0,637.0,986.0,268.0,195.0,236.0,5.0,5.0,60.0,7.0,542.0,361.0,18.0,174.0,0.0,234.0,21.0,39.0,106.0,37.0,252.0,250.0,64.0,5.0,171.0,28.0,156.0,98.0,236.0,337.0,1.0,1824.0,130.0,73.0,877.0,419.0,69.0,0.0,232.0,1.0,337.0,18.0,21.0,577.0,0.0,27.0,2.0,263.0,4.0,487.0,65.0,3763.0,35.0,494.0,52.0,54.0,16.0,504.0,147.0,97.0,189.0,386.0,0.0,60.0,22.0,30.0,896.0,2227.0,86.0,788.0,181.0,15.0,20.0,80.0,12.0,121.0,127.0,51.0,903.0,390.0,475.0,415.0,5.0,81.0,195.0,53.0,37.0,285.0,7.0,59.0,69.0,50.0,1.0,1534.0,3262.0,28.0,35.0,352.0,46.0,281.0,125.0,4456.0,0.0,43.0,1.0,1.0,453.0,1014.0,109.0,77.0,25.0,18.0,1174.0,247.0,122.0,0.0,0.0,2019-04-07,,2019-14,2.3372536166197175,2.042, +310,310,1.92,105.0,19.0,225.0,3.0,233.0,743.0,102.0,109.0,264.0,384.0,0.0,275.0,56.0,1.0,908.0,308.0,195.0,74.0,381.0,2.0,4.0,10.0,126.0,62.0,897.0,18.0,615.0,47.0,180.0,0.0,3.0,9.0,1113.0,1343.0,818.0,89.0,170.0,165.0,125.0,420.0,426.0,22.0,0.0,0.0,126.0,39.0,124.0,1573.0,3.0,124.0,27.0,2265.0,67.0,115.0,110.0,416.0,2102.0,31.0,124.0,5.0,1053.0,125.0,38.0,449.0,11.0,6.0,16.0,113.0,176.0,228.0,218.0,537.0,552.0,466.0,30.0,83.0,90.0,492.0,107.0,8.0,17.0,29.0,74.0,235.0,233.0,132.0,844.0,109.0,299.0,71.0,508.0,15.0,1149.0,2012.0,2017.0,210.0,410.0,154.0,56.0,56.0,147.0,231.0,1700.0,1191.0,19.0,108.0,243.0,65.0,36.0,227.0,932.0,47.0,10.0,988.0,373.0,2906.0,225.0,57.0,18.0,24.0,49.0,27.0,15.0,21.0,2.0,908.0,69.0,123.0,233.0,16.0,68.0,2024.0,73.0,14.0,0.0,367.0,93.0,482.0,4.0,67.0,237.0,0.0,2.0,272.0,2435.0,456.0,56.0,119.0,56.0,1784.0,235.0,439.0,64.0,124.0,398.0,888.0,133.0,130.0,104.0,15.0,1058.0,332.0,566.0,1.0,1964.0,1.0,3.0,1.0,2.0,1379.0,2007.0,1881.0,1148.0,26.0,126.0,322.0,9.0,223.0,179.0,40.0,241.0,1142.0,155.0,193.0,67.0,306.0,249.0,64.0,1046.0,376.0,18.0,121.0,587.0,846.0,268.0,511.0,6.0,125.0,334.0,172.0,264.0,196.0,1.0,52.0,0.0,2.0,250.0,2062.0,169.0,242.0,80.0,0.0,71.0,224.0,195.0,3915764.0,44.0,101.0,125.0,16.0,25.0,1065.0,419.0,237.0,33.0,2245.0,197.0,380.0,10.0,112.0,566.0,155.0,92.0,193.0,265.0,93.0,541.0,536.0,736.0,329.0,1154.0,1058.0,297.0,74.0,1342.0,70.0,249.0,570.0,73.0,653.0,117.0,150.0,213.0,320.0,277.0,12.0,278.0,39.0,1450.0,1.0,0.0,559.0,10.0,618.0,1069.0,309.0,182.0,283.0,6.0,5.0,67.0,18.0,555.0,422.0,37.0,252.0,1.0,335.0,21.0,102.0,129.0,44.0,277.0,248.0,99.0,7.0,228.0,28.0,148.0,102.0,218.0,400.0,0.0,1838.0,186.0,68.0,854.0,472.0,107.0,0.0,272.0,4.0,442.0,7.0,39.0,897.0,0.0,40.0,1.0,278.0,3.0,431.0,99.0,2426.0,72.0,552.0,57.0,51.0,20.0,584.0,228.0,99.0,234.0,475.0,2.0,48.0,30.0,33.0,1132.0,2646.0,131.0,1075.0,168.0,20.0,24.0,110.0,13.0,137.0,73.0,73.0,1014.0,373.0,444.0,1111.0,7.0,85.0,463.0,58.0,50.0,276.0,1.0,91.0,110.0,56.0,2.0,1490.0,3289.0,30.0,64.0,413.0,55.0,254.0,111.0,4986.0,1.0,60.0,1.0,0.0,550.0,1410.0,138.0,82.0,12.0,17.0,1197.0,318.0,174.0,4.0,0.0,2019-04-14,,2019-15,1.9340161792331827,6.024000000000001, +311,311,1.51,137.0,20.0,260.0,1.0,212.0,732.0,110.0,110.0,269.0,385.0,1.0,286.0,61.0,1.0,898.0,294.0,239.0,71.0,454.0,1.0,0.0,2.0,173.0,61.0,953.0,35.0,558.0,24.0,185.0,1.0,0.0,6.0,1121.0,821.0,891.0,71.0,170.0,157.0,109.0,426.0,419.0,39.0,0.0,0.0,125.0,53.0,112.0,1525.0,5.0,112.0,23.0,1949.0,82.0,152.0,97.0,424.0,1133.0,26.0,131.0,1.0,1613.0,156.0,28.0,517.0,7.0,6.0,24.0,108.0,142.0,251.0,217.0,619.0,568.0,357.0,32.0,72.0,99.0,367.0,142.0,10.0,26.0,29.0,92.0,265.0,293.0,155.0,848.0,110.0,267.0,57.0,487.0,10.0,1163.0,1766.0,1719.0,240.0,418.0,156.0,44.0,51.0,136.0,276.0,1460.0,1296.0,11.0,85.0,268.0,56.0,44.0,221.0,1010.0,48.0,20.0,973.0,402.0,2540.0,245.0,53.0,15.0,26.0,57.0,21.0,17.0,33.0,4.0,928.0,76.0,100.0,267.0,6.0,54.0,2038.0,98.0,9.0,1.0,333.0,89.0,415.0,6.0,85.0,322.0,0.0,0.0,279.0,2621.0,504.0,94.0,104.0,49.0,1665.0,320.0,379.0,26.0,100.0,390.0,894.0,150.0,144.0,77.0,21.0,1129.0,286.0,531.0,1.0,2019.0,0.0,1.0,0.0,0.0,1408.0,2200.0,2037.0,1195.0,14.0,110.0,376.0,6.0,268.0,188.0,21.0,221.0,978.0,211.0,185.0,38.0,344.0,256.0,63.0,732.0,395.0,19.0,91.0,528.0,916.0,354.0,506.0,4.0,48.0,379.0,153.0,234.0,202.0,1.0,62.0,1.0,1.0,219.0,1755.0,105.0,204.0,103.0,2.0,99.0,255.0,204.0,3914435.0,74.0,83.0,112.0,26.0,16.0,1025.0,642.0,314.0,63.0,1986.0,239.0,345.0,9.0,164.0,504.0,136.0,108.0,219.0,310.0,88.0,596.0,461.0,753.0,405.0,1121.0,1398.0,440.0,60.0,1132.0,68.0,280.0,595.0,62.0,680.0,140.0,143.0,177.0,373.0,224.0,14.0,291.0,55.0,1446.0,7.0,1.0,504.0,21.0,797.0,1037.0,277.0,192.0,252.0,10.0,2.0,75.0,4.0,564.0,435.0,35.0,258.0,4.0,394.0,16.0,56.0,160.0,36.0,309.0,323.0,102.0,11.0,270.0,30.0,131.0,99.0,292.0,411.0,0.0,1627.0,177.0,84.0,1016.0,523.0,112.0,1.0,247.0,3.0,406.0,15.0,28.0,602.0,0.0,50.0,2.0,304.0,4.0,454.0,80.0,2293.0,47.0,594.0,59.0,76.0,27.0,607.0,254.0,114.0,207.0,803.0,1.0,40.0,25.0,29.0,1327.0,2544.0,104.0,1262.0,159.0,17.0,37.0,100.0,11.0,128.0,80.0,39.0,835.0,359.0,432.0,796.0,3.0,75.0,322.0,60.0,42.0,231.0,2.0,109.0,87.0,67.0,0.0,1521.0,3420.0,34.0,60.0,440.0,49.0,686.0,130.0,5272.0,0.0,92.0,0.0,1.0,584.0,1049.0,185.0,81.0,18.0,16.0,1114.0,331.0,166.0,0.0,2.0,2019-04-21,,2019-16,1.502298114420885,1.346, diff --git a/gsoc_application_projects/2020/influenza/dash/data/final/netherlands.csv b/gsoc_application_projects/2020/influenza/dash/data/final/netherlands.csv new file mode 100644 index 0000000..47191aa --- /dev/null +++ b/gsoc_application_projects/2020/influenza/dash/data/final/netherlands.csv @@ -0,0 +1,261 @@ +,Unnamed: 0,Aardbeientong,Abasie,Acholurie,Achylie,Acidose,Acrocyanose,Acrodynie,Acute_buik,Acuut_reuma,Adenovirussen,Aerofagie,Afasie,Afrikaanse-paardenpestvirus,Ageusie,Agrafie,Akabanevirus,Akinesie,Alalie,Albuminurie,Alexie,Amerikaans_vuilbroed,Amnestische_afasie,Anorexie,Anosmie,Anurie,Apraxie,Arbovirussen,Arenavirussen,Artralgie,Asdrukpijn,Astasie,Asthenie,Ataxie,Athetose,Aviair_reovirus,Aviaire_influenza,Aziatische_griep,Azotemie,BCG-vaccin,BMR-vaccin,Bacillendrager,Bacteriofaag,Bewusteloosheid,Bindvliesontsteking,Blaascollaps,Blauwe_plek,Blauwtongvirus,Blefarospasme,Bloedarmoede,Bloedneus,Bloedspuwing,Bloeduitstorting,Blozen,Boviene_virale_diarree,Bradykinesie,Brilhematoom,Bronchospasme,Buikgriep,Buikpijn,Cachexie,Centrum_Infectieziektebestrijding,Cervicogene_hoofdpijn,Chaparevirus,Chikungunya-virus,Cholera-uitbraak_in_Zimbabwe_in_2008-2009,Chronische_pijn,Coccidiose,Coronavirussen,Cyanose,Cyanovirus,Cytokinestorm,Cytomegalie,DIVA-vaccin,DKTP-vaccin,DNA-virus,DTP-vaccin,Decorumverlies,Desoriëntatie,Drive_Against_Malaria,Drukpijn,Dysenterie,Dysosmie,Dyspepsie,ECHO-virus,Ebola-uitbraak_in_Congo_in_2014,Ebola-uitbraak_in_West-Afrika_in_2014,Enterotoxine,Enterovirussen,Epstein-barrvirus,Exantheem,Exophtalmus,Fasciculatie,Felien_immunodeficiëntievirus,Feliene_infectueuze_peritonitis,Fibrose,Filovirussen,Flavivirus,Fructosurie,Frühsommer-Meningoenzephalitis,Geelzucht,Gele-koortsvirus,Gele_koorts,Geleidingsafasie,Gemengde_afasie,Glucosurie,Gordelroos,Griep,Griepprik,Groeipijn,H5N1-chronologie,Halitose,Hematurie,Hemoglobinurie,Hemolyse,Hemolytische_anemie,Hemoptoë,Hepatitis_B,Hepatitisvirus,Hepatosplenomegalie,Hersenvliesontsteking,Hoest,Hondsdolheid,Hongkonggriep,Hoofdpijn,Humaan_papillomavirus,Human_parvovirus_B19,Hyperglykemie,Hyperkaliëmie,Hypernatriëmie,Hyperpyrexie,Hyperventilatie,Hypokaliëmie,Hypokinesie,Hyponatriëmie,Hypotensie,IJshoofdpijn,Imperatieve_hallucinaties,Infectie,Infectieuze_bronchitis,Infectieziekte,Informatiestress,Intentietremor,JC-virus,Japanse_encefalitis,Keelontsteking,Ketoacidose,Klapvoet,Klierkoorts,Knollenmozaïekvirus,Koliekpijn,Koorts,Koortslip,Koortsstuip,Kortademigheid,Koude_rilling,Krim-Congo-hemorragische_koorts,Krokodillentranen,Kussmaul-ademhaling,Lage_rugpijn,Lassakoorts,Latente_infectie,Lijst_van_virussen,Longontsteking,Maskergelaat,Mastoïditis,Mazelen,Mazelenvirus,Merkelcelpolyomavirus,Mexicaanse_griep,Microalbuminurie,Misselijkheid,Mond-en-klauwzeer,Mononegavirales,Motorische_afasie,Mozaïekvirus,Murray_Valley-virus,Mycovirus,Neurogene_pijn,Neusvleugelen,Niezen,Nociceptieve_pijn,Norovirus,Oedeem,Ondergewicht,Opportunistische_infectie,Orale_focale_infectie,Orgaanfalen,Orsayvirus,Orthopneu,Oscillopsie,Paresthesie,Parvovirose,Passieve_immuniteit,Pathogeen,Pathognomonisch,Pest_van_Antoninus,Pest_van_Cyprianus,Pest_van_Justinianus,Pestepidemie_in_Amsterdam,Pestepidemie_in_Londen,Petechiën,Pijn,Pijn_op_de_borst,Pijngrens,Plantenvirus,Platypneu,Pokkenepidemie_van_1972_in_Joegoslavië,Polydipsie,Polyurie,Porte_d'entrée,Postoperatieve_pijn,Postoperatieve_wondinfectie,Postpoliosyndroom,Prodromale_fase,Prodroom,Projectielbraken,Pseudokroep,Pustel,RNA-virus,Rabdomyolyse,Respiratoir_syncytieel_virus,Rhizomanie,Riftdalkoortsvirus,Rigiditeit,Risus_sardonicus,Rodehond,Ross_River-koorts,Rubellavirus,Rugpijn,Ruimteziekte,SARS-virus,Sabinvaccin,Salkvaccin,Satellietvirus,Schildkliervergroting,Schmallenbergvirus,Sensorische_afasie,Septische_shock,Sharka-virus,Spaanse_griep,Spanningshoofdpijn,Spierkater,Spierpijn,Stand_van_Bonnet,Steatorroe,Subacute_scleroserende_panencefalitis,Subklinische_endometritis,Superinfectie,Symptoom,Symptoom_van_Bell,Symptoomloze_drager,Tabaksmozaïekvirus,Tabaksringvlekvirus,Tachycardie,Tachypnoe,Tandvleesontsteking,Third_Cyprinid_Herpesvirus,Tracheïtis,Transcorticale_motorische_afasie,Transcorticale_sensorische_afasie,Triple_gene_block,Usutuvirus,Uveïtis,Vaginale_candidainfectie,Varkensgriep,Venezolaanse_equïene_encefalitis,Verkoudheid,Vermoeidheid,Versterkte_bloedingsneiging,Virale_hemorragische_koorts,Virilisatie,Visuele_agnosie,Voedselinfectie,Waterpokken,Waterwrat,Weduwnaarspijn,Weerpijn,Westnijlvirus,Westnijlziekte,Winderigheid,Wortelprikkeling,Wrat,Zadelneus,Zaïre_ebolavirus,Ziekenhuisinfectie,Ziekte-inzicht,Ziekte_van_Bornholm,Ziektebeeld,Zikakoorts,Zikavirus,Zweetziekte,incidence,date,estimate,week,estimate_lrr,estimate_rf,estimate_p +0,0,157.0,15.0,15.0,8.0,312.0,197.0,24.0,106.0,333.0,155.0,43.0,1023.0,0.0,9.0,37.0,0.0,53.0,17.0,118.0,51.0,1.0,81.0,113.0,104.0,87.0,460.0,44.0,6.0,0.0,30.0,14.0,143.0,663.0,87.0,0.0,41.0,87.0,43.0,172.0,84.0,14.0,248.0,234.0,448.0,0.0,54.0,12.0,43.0,2703.0,156.0,78.0,568.0,101.0,59.0,11.0,1.0,71.0,2363.0,1563.0,198.0,14.0,0.0,2.0,118.0,9.0,226.0,0.0,63.0,397.0,0.0,32.0,117.0,0.0,232.0,108.0,1.0,0.0,0.0,10.0,32.0,304.0,99.0,214.0,28.0,0.0,0.0,21.0,85.0,0.0,147.0,1.0,238.0,0.0,0.0,0.0,37.0,51.0,6.0,0.0,1098.0,4.0,445.0,0.0,28.0,104.0,1163.0,1795.0,60.0,0.0,11.0,74.0,252.0,38.0,373.0,1.0,0.0,2312.0,80.0,0.0,1966.0,553.0,719.0,112.0,826.0,512.0,0.0,273.0,0.0,0.0,21.0,975.0,0.0,33.0,0.0,269.0,38.0,41.0,970.0,0.0,542.0,0.0,79.0,33.0,19.0,1007.0,13.0,2176.0,2350.0,0.0,339.0,3900.0,1119.0,233.0,547.0,468.0,6.0,14.0,0.0,251.0,23.0,17.0,0.0,7148.0,34.0,0.0,545.0,31.0,8.0,3726.0,61.0,348.0,358.0,20.0,101.0,0.0,0.0,0.0,45.0,238.0,519.0,64.0,2213.0,1310.0,91.0,110.0,31.0,15.0,0.0,0.0,29.0,0.0,62.0,118.0,385.0,53.0,0.0,0.0,52.0,72.0,55.0,0.0,749.0,12.0,76.0,0.0,0.0,0.0,233.0,264.0,0.0,57.0,73.0,49.0,66.0,35.0,0.0,420.0,213.0,113.0,0.0,386.0,0.0,5.0,275.0,29.0,524.0,0.0,4.0,389.0,1.0,64.0,0.0,11.0,21.0,253.0,0.0,111.0,5.0,0.0,596.0,404.0,0.0,630.0,0.0,99.0,24.0,27.0,39.0,370.0,13.0,0.0,0.0,0.0,499.0,55.0,270.0,1.0,0.0,40.0,25.0,0.0,0.0,0.0,0.0,277.0,0.0,1403.0,386.0,131.0,0.0,0.0,47.0,59.0,1459.0,310.0,21.0,1.0,0.0,0.0,928.0,11.0,900.0,47.0,0.0,116.0,35.0,110.0,97.0,0.0,0.0,0.0,34.2381070131,2009-10-25,,2009-43,34.352963231518515,34.2381070131, +1,1,157.0,15.0,15.0,8.0,312.0,197.0,24.0,106.0,333.0,155.0,43.0,1023.0,0.0,9.0,37.0,0.0,53.0,17.0,118.0,51.0,1.0,81.0,113.0,104.0,87.0,460.0,44.0,6.0,0.0,30.0,14.0,143.0,663.0,87.0,0.0,41.0,87.0,43.0,172.0,84.0,14.0,248.0,234.0,448.0,0.0,54.0,12.0,43.0,2703.0,156.0,78.0,568.0,101.0,59.0,11.0,1.0,71.0,2363.0,1563.0,198.0,14.0,0.0,2.0,118.0,9.0,226.0,0.0,63.0,397.0,0.0,32.0,117.0,0.0,232.0,108.0,1.0,0.0,0.0,10.0,32.0,304.0,99.0,214.0,28.0,0.0,0.0,21.0,85.0,0.0,147.0,1.0,238.0,0.0,0.0,0.0,37.0,51.0,6.0,0.0,1098.0,4.0,445.0,0.0,28.0,104.0,1163.0,1795.0,60.0,0.0,11.0,74.0,252.0,38.0,373.0,1.0,0.0,2312.0,80.0,0.0,1966.0,553.0,719.0,112.0,826.0,512.0,0.0,273.0,0.0,0.0,21.0,975.0,0.0,33.0,0.0,269.0,38.0,41.0,970.0,0.0,542.0,0.0,79.0,33.0,19.0,1007.0,13.0,2176.0,2350.0,0.0,339.0,3900.0,1119.0,233.0,547.0,468.0,6.0,14.0,0.0,251.0,23.0,17.0,0.0,7148.0,34.0,0.0,545.0,31.0,8.0,3726.0,61.0,348.0,358.0,20.0,101.0,0.0,0.0,0.0,45.0,238.0,519.0,64.0,2213.0,1310.0,91.0,110.0,31.0,15.0,0.0,0.0,29.0,0.0,62.0,118.0,385.0,53.0,0.0,0.0,52.0,72.0,55.0,0.0,749.0,12.0,76.0,0.0,0.0,0.0,233.0,264.0,0.0,57.0,73.0,49.0,66.0,35.0,0.0,420.0,213.0,113.0,0.0,386.0,0.0,5.0,275.0,29.0,524.0,0.0,4.0,389.0,1.0,64.0,0.0,11.0,21.0,253.0,0.0,111.0,5.0,0.0,596.0,404.0,0.0,630.0,0.0,99.0,24.0,27.0,39.0,370.0,13.0,0.0,0.0,0.0,499.0,55.0,270.0,1.0,0.0,40.0,25.0,0.0,0.0,0.0,0.0,277.0,0.0,1403.0,386.0,131.0,0.0,0.0,47.0,59.0,1459.0,310.0,21.0,1.0,0.0,0.0,928.0,11.0,900.0,47.0,0.0,116.0,35.0,110.0,97.0,0.0,0.0,0.0,34.2381070131,2009-11-01,,2009-44,34.29617260636761,34.2381070131, +2,2,157.0,15.0,15.0,8.0,312.0,197.0,24.0,106.0,333.0,155.0,43.0,1023.0,0.0,9.0,37.0,0.0,53.0,17.0,118.0,51.0,1.0,81.0,113.0,104.0,87.0,460.0,44.0,6.0,0.0,30.0,14.0,143.0,663.0,87.0,0.0,41.0,87.0,43.0,172.0,84.0,14.0,248.0,234.0,448.0,0.0,54.0,12.0,43.0,2703.0,156.0,78.0,568.0,101.0,59.0,11.0,1.0,71.0,2363.0,1563.0,198.0,14.0,0.0,2.0,118.0,9.0,226.0,0.0,63.0,397.0,0.0,32.0,117.0,0.0,232.0,108.0,1.0,0.0,0.0,10.0,32.0,304.0,99.0,214.0,28.0,0.0,0.0,21.0,85.0,0.0,147.0,1.0,238.0,0.0,0.0,0.0,37.0,51.0,6.0,0.0,1098.0,4.0,445.0,0.0,28.0,104.0,1163.0,1795.0,60.0,0.0,11.0,74.0,252.0,38.0,373.0,1.0,0.0,2312.0,80.0,0.0,1966.0,553.0,719.0,112.0,826.0,512.0,0.0,273.0,0.0,0.0,21.0,975.0,0.0,33.0,0.0,269.0,38.0,41.0,970.0,0.0,542.0,0.0,79.0,33.0,19.0,1007.0,13.0,2176.0,2350.0,0.0,339.0,3900.0,1119.0,233.0,547.0,468.0,6.0,14.0,0.0,251.0,23.0,17.0,0.0,7148.0,34.0,0.0,545.0,31.0,8.0,3726.0,61.0,348.0,358.0,20.0,101.0,0.0,0.0,0.0,45.0,238.0,519.0,64.0,2213.0,1310.0,91.0,110.0,31.0,15.0,0.0,0.0,29.0,0.0,62.0,118.0,385.0,53.0,0.0,0.0,52.0,72.0,55.0,0.0,749.0,12.0,76.0,0.0,0.0,0.0,233.0,264.0,0.0,57.0,73.0,49.0,66.0,35.0,0.0,420.0,213.0,113.0,0.0,386.0,0.0,5.0,275.0,29.0,524.0,0.0,4.0,389.0,1.0,64.0,0.0,11.0,21.0,253.0,0.0,111.0,5.0,0.0,596.0,404.0,0.0,630.0,0.0,99.0,24.0,27.0,39.0,370.0,13.0,0.0,0.0,0.0,499.0,55.0,270.0,1.0,0.0,40.0,25.0,0.0,0.0,0.0,0.0,277.0,0.0,1403.0,386.0,131.0,0.0,0.0,47.0,59.0,1459.0,310.0,21.0,1.0,0.0,0.0,928.0,11.0,900.0,47.0,0.0,116.0,35.0,110.0,97.0,0.0,0.0,0.0,34.2381070131,2009-11-08,,2009-45,34.339173467311696,34.2381070131, +3,3,157.0,15.0,15.0,8.0,312.0,197.0,24.0,106.0,333.0,155.0,43.0,1023.0,0.0,9.0,37.0,0.0,53.0,17.0,118.0,51.0,1.0,81.0,113.0,104.0,87.0,460.0,44.0,6.0,0.0,30.0,14.0,143.0,663.0,87.0,0.0,41.0,87.0,43.0,172.0,84.0,14.0,248.0,234.0,448.0,0.0,54.0,12.0,43.0,2703.0,156.0,78.0,568.0,101.0,59.0,11.0,1.0,71.0,2363.0,1563.0,198.0,14.0,0.0,2.0,118.0,9.0,226.0,0.0,63.0,397.0,0.0,32.0,117.0,0.0,232.0,108.0,1.0,0.0,0.0,10.0,32.0,304.0,99.0,214.0,28.0,0.0,0.0,21.0,85.0,0.0,147.0,1.0,238.0,0.0,0.0,0.0,37.0,51.0,6.0,0.0,1098.0,4.0,445.0,0.0,28.0,104.0,1163.0,1795.0,60.0,0.0,11.0,74.0,252.0,38.0,373.0,1.0,0.0,2312.0,80.0,0.0,1966.0,553.0,719.0,112.0,826.0,512.0,0.0,273.0,0.0,0.0,21.0,975.0,0.0,33.0,0.0,269.0,38.0,41.0,970.0,0.0,542.0,0.0,79.0,33.0,19.0,1007.0,13.0,2176.0,2350.0,0.0,339.0,3900.0,1119.0,233.0,547.0,468.0,6.0,14.0,0.0,251.0,23.0,17.0,0.0,7148.0,34.0,0.0,545.0,31.0,8.0,3726.0,61.0,348.0,358.0,20.0,101.0,0.0,0.0,0.0,45.0,238.0,519.0,64.0,2213.0,1310.0,91.0,110.0,31.0,15.0,0.0,0.0,29.0,0.0,62.0,118.0,385.0,53.0,0.0,0.0,52.0,72.0,55.0,0.0,749.0,12.0,76.0,0.0,0.0,0.0,233.0,264.0,0.0,57.0,73.0,49.0,66.0,35.0,0.0,420.0,213.0,113.0,0.0,386.0,0.0,5.0,275.0,29.0,524.0,0.0,4.0,389.0,1.0,64.0,0.0,11.0,21.0,253.0,0.0,111.0,5.0,0.0,596.0,404.0,0.0,630.0,0.0,99.0,24.0,27.0,39.0,370.0,13.0,0.0,0.0,0.0,499.0,55.0,270.0,1.0,0.0,40.0,25.0,0.0,0.0,0.0,0.0,277.0,0.0,1403.0,386.0,131.0,0.0,0.0,47.0,59.0,1459.0,310.0,21.0,1.0,0.0,0.0,928.0,11.0,900.0,47.0,0.0,116.0,35.0,110.0,97.0,0.0,0.0,0.0,34.2381070131,2009-11-15,,2009-46,34.29094752215631,34.2381070131, +4,4,157.0,15.0,15.0,8.0,312.0,197.0,24.0,106.0,333.0,155.0,43.0,1023.0,0.0,9.0,37.0,0.0,53.0,17.0,118.0,51.0,1.0,81.0,113.0,104.0,87.0,460.0,44.0,6.0,0.0,30.0,14.0,143.0,663.0,87.0,0.0,41.0,87.0,43.0,172.0,84.0,14.0,248.0,234.0,448.0,0.0,54.0,12.0,43.0,2703.0,156.0,78.0,568.0,101.0,59.0,11.0,1.0,71.0,2363.0,1563.0,198.0,14.0,0.0,2.0,118.0,9.0,226.0,0.0,63.0,397.0,0.0,32.0,117.0,0.0,232.0,108.0,1.0,0.0,0.0,10.0,32.0,304.0,99.0,214.0,28.0,0.0,0.0,21.0,85.0,0.0,147.0,1.0,238.0,0.0,0.0,0.0,37.0,51.0,6.0,0.0,1098.0,4.0,445.0,0.0,28.0,104.0,1163.0,1795.0,60.0,0.0,11.0,74.0,252.0,38.0,373.0,1.0,0.0,2312.0,80.0,0.0,1966.0,553.0,719.0,112.0,826.0,512.0,0.0,273.0,0.0,0.0,21.0,975.0,0.0,33.0,0.0,269.0,38.0,41.0,970.0,0.0,542.0,0.0,79.0,33.0,19.0,1007.0,13.0,2176.0,2350.0,0.0,339.0,3900.0,1119.0,233.0,547.0,468.0,6.0,14.0,0.0,251.0,23.0,17.0,0.0,7148.0,34.0,0.0,545.0,31.0,8.0,3726.0,61.0,348.0,358.0,20.0,101.0,0.0,0.0,0.0,45.0,238.0,519.0,64.0,2213.0,1310.0,91.0,110.0,31.0,15.0,0.0,0.0,29.0,0.0,62.0,118.0,385.0,53.0,0.0,0.0,52.0,72.0,55.0,0.0,749.0,12.0,76.0,0.0,0.0,0.0,233.0,264.0,0.0,57.0,73.0,49.0,66.0,35.0,0.0,420.0,213.0,113.0,0.0,386.0,0.0,5.0,275.0,29.0,524.0,0.0,4.0,389.0,1.0,64.0,0.0,11.0,21.0,253.0,0.0,111.0,5.0,0.0,596.0,404.0,0.0,630.0,0.0,99.0,24.0,27.0,39.0,370.0,13.0,0.0,0.0,0.0,499.0,55.0,270.0,1.0,0.0,40.0,25.0,0.0,0.0,0.0,0.0,277.0,0.0,1403.0,386.0,131.0,0.0,0.0,47.0,59.0,1459.0,310.0,21.0,1.0,0.0,0.0,928.0,11.0,900.0,47.0,0.0,116.0,35.0,110.0,97.0,0.0,0.0,0.0,34.2381070131,2009-11-22,,2009-47,34.281654459460896,34.2381070131, +5,5,157.0,15.0,15.0,8.0,312.0,197.0,24.0,106.0,333.0,155.0,43.0,1023.0,0.0,9.0,37.0,0.0,53.0,17.0,118.0,51.0,1.0,81.0,113.0,104.0,87.0,460.0,44.0,6.0,0.0,30.0,14.0,143.0,663.0,87.0,0.0,41.0,87.0,43.0,172.0,84.0,14.0,248.0,234.0,448.0,0.0,54.0,12.0,43.0,2703.0,156.0,78.0,568.0,101.0,59.0,11.0,1.0,71.0,2363.0,1563.0,198.0,14.0,0.0,2.0,118.0,9.0,226.0,0.0,63.0,397.0,0.0,32.0,117.0,0.0,232.0,108.0,1.0,0.0,0.0,10.0,32.0,304.0,99.0,214.0,28.0,0.0,0.0,21.0,85.0,0.0,147.0,1.0,238.0,0.0,0.0,0.0,37.0,51.0,6.0,0.0,1098.0,4.0,445.0,0.0,28.0,104.0,1163.0,1795.0,60.0,0.0,11.0,74.0,252.0,38.0,373.0,1.0,0.0,2312.0,80.0,0.0,1966.0,553.0,719.0,112.0,826.0,512.0,0.0,273.0,0.0,0.0,21.0,975.0,0.0,33.0,0.0,269.0,38.0,41.0,970.0,0.0,542.0,0.0,79.0,33.0,19.0,1007.0,13.0,2176.0,2350.0,0.0,339.0,3900.0,1119.0,233.0,547.0,468.0,6.0,14.0,0.0,251.0,23.0,17.0,0.0,7148.0,34.0,0.0,545.0,31.0,8.0,3726.0,61.0,348.0,358.0,20.0,101.0,0.0,0.0,0.0,45.0,238.0,519.0,64.0,2213.0,1310.0,91.0,110.0,31.0,15.0,0.0,0.0,29.0,0.0,62.0,118.0,385.0,53.0,0.0,0.0,52.0,72.0,55.0,0.0,749.0,12.0,76.0,0.0,0.0,0.0,233.0,264.0,0.0,57.0,73.0,49.0,66.0,35.0,0.0,420.0,213.0,113.0,0.0,386.0,0.0,5.0,275.0,29.0,524.0,0.0,4.0,389.0,1.0,64.0,0.0,11.0,21.0,253.0,0.0,111.0,5.0,0.0,596.0,404.0,0.0,630.0,0.0,99.0,24.0,27.0,39.0,370.0,13.0,0.0,0.0,0.0,499.0,55.0,270.0,1.0,0.0,40.0,25.0,0.0,0.0,0.0,0.0,277.0,0.0,1403.0,386.0,131.0,0.0,0.0,47.0,59.0,1459.0,310.0,21.0,1.0,0.0,0.0,928.0,11.0,900.0,47.0,0.0,116.0,35.0,110.0,97.0,0.0,0.0,0.0,34.2381070131,2009-11-29,,2009-48,34.32137736850395,34.2381070131, +6,6,157.0,15.0,15.0,8.0,312.0,197.0,24.0,106.0,333.0,155.0,43.0,1023.0,0.0,9.0,37.0,0.0,53.0,17.0,118.0,51.0,1.0,81.0,113.0,104.0,87.0,460.0,44.0,6.0,0.0,30.0,14.0,143.0,663.0,87.0,0.0,41.0,87.0,43.0,172.0,84.0,14.0,248.0,234.0,448.0,0.0,54.0,12.0,43.0,2703.0,156.0,78.0,568.0,101.0,59.0,11.0,1.0,71.0,2363.0,1563.0,198.0,14.0,0.0,2.0,118.0,9.0,226.0,0.0,63.0,397.0,0.0,32.0,117.0,0.0,232.0,108.0,1.0,0.0,0.0,10.0,32.0,304.0,99.0,214.0,28.0,0.0,0.0,21.0,85.0,0.0,147.0,1.0,238.0,0.0,0.0,0.0,37.0,51.0,6.0,0.0,1098.0,4.0,445.0,0.0,28.0,104.0,1163.0,1795.0,60.0,0.0,11.0,74.0,252.0,38.0,373.0,1.0,0.0,2312.0,80.0,0.0,1966.0,553.0,719.0,112.0,826.0,512.0,0.0,273.0,0.0,0.0,21.0,975.0,0.0,33.0,0.0,269.0,38.0,41.0,970.0,0.0,542.0,0.0,79.0,33.0,19.0,1007.0,13.0,2176.0,2350.0,0.0,339.0,3900.0,1119.0,233.0,547.0,468.0,6.0,14.0,0.0,251.0,23.0,17.0,0.0,7148.0,34.0,0.0,545.0,31.0,8.0,3726.0,61.0,348.0,358.0,20.0,101.0,0.0,0.0,0.0,45.0,238.0,519.0,64.0,2213.0,1310.0,91.0,110.0,31.0,15.0,0.0,0.0,29.0,0.0,62.0,118.0,385.0,53.0,0.0,0.0,52.0,72.0,55.0,0.0,749.0,12.0,76.0,0.0,0.0,0.0,233.0,264.0,0.0,57.0,73.0,49.0,66.0,35.0,0.0,420.0,213.0,113.0,0.0,386.0,0.0,5.0,275.0,29.0,524.0,0.0,4.0,389.0,1.0,64.0,0.0,11.0,21.0,253.0,0.0,111.0,5.0,0.0,596.0,404.0,0.0,630.0,0.0,99.0,24.0,27.0,39.0,370.0,13.0,0.0,0.0,0.0,499.0,55.0,270.0,1.0,0.0,40.0,25.0,0.0,0.0,0.0,0.0,277.0,0.0,1403.0,386.0,131.0,0.0,0.0,47.0,59.0,1459.0,310.0,21.0,1.0,0.0,0.0,928.0,11.0,900.0,47.0,0.0,116.0,35.0,110.0,97.0,0.0,0.0,0.0,34.2381070131,2009-12-06,,2009-49,34.318266768987854,34.2381070131, +7,7,157.0,15.0,15.0,8.0,312.0,197.0,24.0,106.0,333.0,155.0,43.0,1023.0,0.0,9.0,37.0,0.0,53.0,17.0,118.0,51.0,1.0,81.0,113.0,104.0,87.0,460.0,44.0,6.0,0.0,30.0,14.0,143.0,663.0,87.0,0.0,41.0,87.0,43.0,172.0,84.0,14.0,248.0,234.0,448.0,0.0,54.0,12.0,43.0,2703.0,156.0,78.0,568.0,101.0,59.0,11.0,1.0,71.0,2363.0,1563.0,198.0,14.0,0.0,2.0,118.0,9.0,226.0,0.0,63.0,397.0,0.0,32.0,117.0,0.0,232.0,108.0,1.0,0.0,0.0,10.0,32.0,304.0,99.0,214.0,28.0,0.0,0.0,21.0,85.0,0.0,147.0,1.0,238.0,0.0,0.0,0.0,37.0,51.0,6.0,0.0,1098.0,4.0,445.0,0.0,28.0,104.0,1163.0,1795.0,60.0,0.0,11.0,74.0,252.0,38.0,373.0,1.0,0.0,2312.0,80.0,0.0,1966.0,553.0,719.0,112.0,826.0,512.0,0.0,273.0,0.0,0.0,21.0,975.0,0.0,33.0,0.0,269.0,38.0,41.0,970.0,0.0,542.0,0.0,79.0,33.0,19.0,1007.0,13.0,2176.0,2350.0,0.0,339.0,3900.0,1119.0,233.0,547.0,468.0,6.0,14.0,0.0,251.0,23.0,17.0,0.0,7148.0,34.0,0.0,545.0,31.0,8.0,3726.0,61.0,348.0,358.0,20.0,101.0,0.0,0.0,0.0,45.0,238.0,519.0,64.0,2213.0,1310.0,91.0,110.0,31.0,15.0,0.0,0.0,29.0,0.0,62.0,118.0,385.0,53.0,0.0,0.0,52.0,72.0,55.0,0.0,749.0,12.0,76.0,0.0,0.0,0.0,233.0,264.0,0.0,57.0,73.0,49.0,66.0,35.0,0.0,420.0,213.0,113.0,0.0,386.0,0.0,5.0,275.0,29.0,524.0,0.0,4.0,389.0,1.0,64.0,0.0,11.0,21.0,253.0,0.0,111.0,5.0,0.0,596.0,404.0,0.0,630.0,0.0,99.0,24.0,27.0,39.0,370.0,13.0,0.0,0.0,0.0,499.0,55.0,270.0,1.0,0.0,40.0,25.0,0.0,0.0,0.0,0.0,277.0,0.0,1403.0,386.0,131.0,0.0,0.0,47.0,59.0,1459.0,310.0,21.0,1.0,0.0,0.0,928.0,11.0,900.0,47.0,0.0,116.0,35.0,110.0,97.0,0.0,0.0,0.0,34.2381070131,2009-12-13,,2009-50,34.332016055015124,34.2381070131, +8,8,157.0,15.0,15.0,8.0,312.0,197.0,24.0,106.0,333.0,155.0,43.0,1023.0,0.0,9.0,37.0,0.0,53.0,17.0,118.0,51.0,1.0,81.0,113.0,104.0,87.0,460.0,44.0,6.0,0.0,30.0,14.0,143.0,663.0,87.0,0.0,41.0,87.0,43.0,172.0,84.0,14.0,248.0,234.0,448.0,0.0,54.0,12.0,43.0,2703.0,156.0,78.0,568.0,101.0,59.0,11.0,1.0,71.0,2363.0,1563.0,198.0,14.0,0.0,2.0,118.0,9.0,226.0,0.0,63.0,397.0,0.0,32.0,117.0,0.0,232.0,108.0,1.0,0.0,0.0,10.0,32.0,304.0,99.0,214.0,28.0,0.0,0.0,21.0,85.0,0.0,147.0,1.0,238.0,0.0,0.0,0.0,37.0,51.0,6.0,0.0,1098.0,4.0,445.0,0.0,28.0,104.0,1163.0,1795.0,60.0,0.0,11.0,74.0,252.0,38.0,373.0,1.0,0.0,2312.0,80.0,0.0,1966.0,553.0,719.0,112.0,826.0,512.0,0.0,273.0,0.0,0.0,21.0,975.0,0.0,33.0,0.0,269.0,38.0,41.0,970.0,0.0,542.0,0.0,79.0,33.0,19.0,1007.0,13.0,2176.0,2350.0,0.0,339.0,3900.0,1119.0,233.0,547.0,468.0,6.0,14.0,0.0,251.0,23.0,17.0,0.0,7148.0,34.0,0.0,545.0,31.0,8.0,3726.0,61.0,348.0,358.0,20.0,101.0,0.0,0.0,0.0,45.0,238.0,519.0,64.0,2213.0,1310.0,91.0,110.0,31.0,15.0,0.0,0.0,29.0,0.0,62.0,118.0,385.0,53.0,0.0,0.0,52.0,72.0,55.0,0.0,749.0,12.0,76.0,0.0,0.0,0.0,233.0,264.0,0.0,57.0,73.0,49.0,66.0,35.0,0.0,420.0,213.0,113.0,0.0,386.0,0.0,5.0,275.0,29.0,524.0,0.0,4.0,389.0,1.0,64.0,0.0,11.0,21.0,253.0,0.0,111.0,5.0,0.0,596.0,404.0,0.0,630.0,0.0,99.0,24.0,27.0,39.0,370.0,13.0,0.0,0.0,0.0,499.0,55.0,270.0,1.0,0.0,40.0,25.0,0.0,0.0,0.0,0.0,277.0,0.0,1403.0,386.0,131.0,0.0,0.0,47.0,59.0,1459.0,310.0,21.0,1.0,0.0,0.0,928.0,11.0,900.0,47.0,0.0,116.0,35.0,110.0,97.0,0.0,0.0,0.0,34.2381070131,2009-12-20,,2009-51,34.32192230926821,34.2381070131, +9,9,157.0,15.0,15.0,8.0,312.0,197.0,24.0,106.0,333.0,155.0,43.0,1023.0,0.0,9.0,37.0,0.0,53.0,17.0,118.0,51.0,1.0,81.0,113.0,104.0,87.0,460.0,44.0,6.0,0.0,30.0,14.0,143.0,663.0,87.0,0.0,41.0,87.0,43.0,172.0,84.0,14.0,248.0,234.0,448.0,0.0,54.0,12.0,43.0,2703.0,156.0,78.0,568.0,101.0,59.0,11.0,1.0,71.0,2363.0,1563.0,198.0,14.0,0.0,2.0,118.0,9.0,226.0,0.0,63.0,397.0,0.0,32.0,117.0,0.0,232.0,108.0,1.0,0.0,0.0,10.0,32.0,304.0,99.0,214.0,28.0,0.0,0.0,21.0,85.0,0.0,147.0,1.0,238.0,0.0,0.0,0.0,37.0,51.0,6.0,0.0,1098.0,4.0,445.0,0.0,28.0,104.0,1163.0,1795.0,60.0,0.0,11.0,74.0,252.0,38.0,373.0,1.0,0.0,2312.0,80.0,0.0,1966.0,553.0,719.0,112.0,826.0,512.0,0.0,273.0,0.0,0.0,21.0,975.0,0.0,33.0,0.0,269.0,38.0,41.0,970.0,0.0,542.0,0.0,79.0,33.0,19.0,1007.0,13.0,2176.0,2350.0,0.0,339.0,3900.0,1119.0,233.0,547.0,468.0,6.0,14.0,0.0,251.0,23.0,17.0,0.0,7148.0,34.0,0.0,545.0,31.0,8.0,3726.0,61.0,348.0,358.0,20.0,101.0,0.0,0.0,0.0,45.0,238.0,519.0,64.0,2213.0,1310.0,91.0,110.0,31.0,15.0,0.0,0.0,29.0,0.0,62.0,118.0,385.0,53.0,0.0,0.0,52.0,72.0,55.0,0.0,749.0,12.0,76.0,0.0,0.0,0.0,233.0,264.0,0.0,57.0,73.0,49.0,66.0,35.0,0.0,420.0,213.0,113.0,0.0,386.0,0.0,5.0,275.0,29.0,524.0,0.0,4.0,389.0,1.0,64.0,0.0,11.0,21.0,253.0,0.0,111.0,5.0,0.0,596.0,404.0,0.0,630.0,0.0,99.0,24.0,27.0,39.0,370.0,13.0,0.0,0.0,0.0,499.0,55.0,270.0,1.0,0.0,40.0,25.0,0.0,0.0,0.0,0.0,277.0,0.0,1403.0,386.0,131.0,0.0,0.0,47.0,59.0,1459.0,310.0,21.0,1.0,0.0,0.0,928.0,11.0,900.0,47.0,0.0,116.0,35.0,110.0,97.0,0.0,0.0,0.0,34.2381070131,2009-12-27,,2009-52,34.292638160911345,34.2381070131, +10,10,157.0,15.0,15.0,8.0,312.0,197.0,24.0,106.0,333.0,155.0,43.0,1023.0,0.0,9.0,37.0,0.0,53.0,17.0,118.0,51.0,1.0,81.0,113.0,104.0,87.0,460.0,44.0,6.0,0.0,30.0,14.0,143.0,663.0,87.0,0.0,41.0,87.0,43.0,172.0,84.0,14.0,248.0,234.0,448.0,0.0,54.0,12.0,43.0,2703.0,156.0,78.0,568.0,101.0,59.0,11.0,1.0,71.0,2363.0,1563.0,198.0,14.0,0.0,2.0,118.0,9.0,226.0,0.0,63.0,397.0,0.0,32.0,117.0,0.0,232.0,108.0,1.0,0.0,0.0,10.0,32.0,304.0,99.0,214.0,28.0,0.0,0.0,21.0,85.0,0.0,147.0,1.0,238.0,0.0,0.0,0.0,37.0,51.0,6.0,0.0,1098.0,4.0,445.0,0.0,28.0,104.0,1163.0,1795.0,60.0,0.0,11.0,74.0,252.0,38.0,373.0,1.0,0.0,2312.0,80.0,0.0,1966.0,553.0,719.0,112.0,826.0,512.0,0.0,273.0,0.0,0.0,21.0,975.0,0.0,33.0,0.0,269.0,38.0,41.0,970.0,0.0,542.0,0.0,79.0,33.0,19.0,1007.0,13.0,2176.0,2350.0,0.0,339.0,3900.0,1119.0,233.0,547.0,468.0,6.0,14.0,0.0,251.0,23.0,17.0,0.0,7148.0,34.0,0.0,545.0,31.0,8.0,3726.0,61.0,348.0,358.0,20.0,101.0,0.0,0.0,0.0,45.0,238.0,519.0,64.0,2213.0,1310.0,91.0,110.0,31.0,15.0,0.0,0.0,29.0,0.0,62.0,118.0,385.0,53.0,0.0,0.0,52.0,72.0,55.0,0.0,749.0,12.0,76.0,0.0,0.0,0.0,233.0,264.0,0.0,57.0,73.0,49.0,66.0,35.0,0.0,420.0,213.0,113.0,0.0,386.0,0.0,5.0,275.0,29.0,524.0,0.0,4.0,389.0,1.0,64.0,0.0,11.0,21.0,253.0,0.0,111.0,5.0,0.0,596.0,404.0,0.0,630.0,0.0,99.0,24.0,27.0,39.0,370.0,13.0,0.0,0.0,0.0,499.0,55.0,270.0,1.0,0.0,40.0,25.0,0.0,0.0,0.0,0.0,277.0,0.0,1403.0,386.0,131.0,0.0,0.0,47.0,59.0,1459.0,310.0,21.0,1.0,0.0,0.0,928.0,11.0,900.0,47.0,0.0,116.0,35.0,110.0,97.0,0.0,0.0,0.0,34.2381070131,2010-01-03,,2009-53,34.30253278823422,34.2381070131, +11,11,157.0,15.0,15.0,8.0,312.0,197.0,24.0,106.0,333.0,155.0,43.0,1023.0,0.0,9.0,37.0,0.0,53.0,17.0,118.0,51.0,1.0,81.0,113.0,104.0,87.0,460.0,44.0,6.0,0.0,30.0,14.0,143.0,663.0,87.0,0.0,41.0,87.0,43.0,172.0,84.0,14.0,248.0,234.0,448.0,0.0,54.0,12.0,43.0,2703.0,156.0,78.0,568.0,101.0,59.0,11.0,1.0,71.0,2363.0,1563.0,198.0,14.0,0.0,2.0,118.0,9.0,226.0,0.0,63.0,397.0,0.0,32.0,117.0,0.0,232.0,108.0,1.0,0.0,0.0,10.0,32.0,304.0,99.0,214.0,28.0,0.0,0.0,21.0,85.0,0.0,147.0,1.0,238.0,0.0,0.0,0.0,37.0,51.0,6.0,0.0,1098.0,4.0,445.0,0.0,28.0,104.0,1163.0,1795.0,60.0,0.0,11.0,74.0,252.0,38.0,373.0,1.0,0.0,2312.0,80.0,0.0,1966.0,553.0,719.0,112.0,826.0,512.0,0.0,273.0,0.0,0.0,21.0,975.0,0.0,33.0,0.0,269.0,38.0,41.0,970.0,0.0,542.0,0.0,79.0,33.0,19.0,1007.0,13.0,2176.0,2350.0,0.0,339.0,3900.0,1119.0,233.0,547.0,468.0,6.0,14.0,0.0,251.0,23.0,17.0,0.0,7148.0,34.0,0.0,545.0,31.0,8.0,3726.0,61.0,348.0,358.0,20.0,101.0,0.0,0.0,0.0,45.0,238.0,519.0,64.0,2213.0,1310.0,91.0,110.0,31.0,15.0,0.0,0.0,29.0,0.0,62.0,118.0,385.0,53.0,0.0,0.0,52.0,72.0,55.0,0.0,749.0,12.0,76.0,0.0,0.0,0.0,233.0,264.0,0.0,57.0,73.0,49.0,66.0,35.0,0.0,420.0,213.0,113.0,0.0,386.0,0.0,5.0,275.0,29.0,524.0,0.0,4.0,389.0,1.0,64.0,0.0,11.0,21.0,253.0,0.0,111.0,5.0,0.0,596.0,404.0,0.0,630.0,0.0,99.0,24.0,27.0,39.0,370.0,13.0,0.0,0.0,0.0,499.0,55.0,270.0,1.0,0.0,40.0,25.0,0.0,0.0,0.0,0.0,277.0,0.0,1403.0,386.0,131.0,0.0,0.0,47.0,59.0,1459.0,310.0,21.0,1.0,0.0,0.0,928.0,11.0,900.0,47.0,0.0,116.0,35.0,110.0,97.0,0.0,0.0,0.0,34.2381070131,2010-01-10,,2010-1,34.34994603100986,34.2381070131, +12,12,178.0,24.0,14.0,9.0,356.0,218.0,18.0,95.0,383.0,308.0,49.0,1297.0,0.0,14.0,86.0,0.0,63.0,15.0,146.0,51.0,1.0,74.0,160.0,147.0,109.0,521.0,25.0,8.0,1.0,28.0,22.0,114.0,820.0,104.0,0.0,45.0,66.0,42.0,207.0,119.0,16.0,224.0,193.0,1149.0,0.0,54.0,10.0,59.0,3235.0,196.0,65.0,651.0,81.0,94.0,17.0,2.0,98.0,2876.0,1566.0,184.0,6.0,0.0,3.0,97.0,18.0,224.0,0.0,768.0,593.0,0.0,41.0,129.0,0.0,285.0,72.0,0.0,0.0,0.0,7.0,32.0,346.0,127.0,239.0,26.0,0.0,0.0,40.0,728.0,0.0,186.0,2.0,262.0,0.0,0.0,1.0,31.0,51.0,7.0,0.0,1309.0,15.0,571.0,0.0,46.0,107.0,1298.0,2386.0,60.0,0.0,9.0,62.0,365.0,60.0,464.0,0.0,0.0,2312.0,91.0,0.0,2035.0,1220.0,684.0,96.0,1666.0,633.0,0.0,337.0,0.0,0.0,13.0,1182.0,0.0,17.0,0.0,306.0,35.0,61.0,1091.0,0.0,662.0,0.0,105.0,62.0,16.0,1219.0,21.0,352.0,2585.0,0.0,365.0,4248.0,1257.0,242.0,611.0,528.0,13.0,21.0,0.0,232.0,23.0,10.0,0.0,6888.0,45.0,0.0,672.0,35.0,2.0,3054.0,80.0,336.0,393.0,6.0,140.0,0.0,0.0,0.0,60.0,221.0,1279.0,69.0,3389.0,1495.0,92.0,165.0,25.0,12.0,0.0,0.0,35.0,0.0,46.0,163.0,405.0,57.0,0.0,0.0,57.0,73.0,63.0,0.0,886.0,12.0,73.0,0.0,0.0,0.0,259.0,300.0,0.0,33.0,97.0,54.0,59.0,29.0,3.0,686.0,259.0,113.0,0.0,351.0,0.0,9.0,288.0,40.0,892.0,0.0,2.0,634.0,0.0,73.0,0.0,14.0,24.0,270.0,0.0,141.0,4.0,0.0,583.0,557.0,0.0,718.0,0.0,150.0,20.0,24.0,27.0,435.0,16.0,0.0,0.0,0.0,617.0,69.0,321.0,0.0,0.0,27.0,27.0,0.0,0.0,0.0,0.0,313.0,0.0,2120.0,1098.0,117.0,0.0,1.0,53.0,80.0,1710.0,414.0,21.0,3.0,0.0,0.0,1078.0,13.0,930.0,55.0,0.0,95.0,42.0,124.0,106.0,0.0,0.0,0.0,34.2381070131,2010-01-17,,2010-2,34.69857378789638,44.416177438860004, +13,13,106.0,16.0,11.0,7.0,269.0,132.0,11.0,78.0,302.0,170.0,34.0,964.0,0.0,15.0,63.0,0.0,42.0,17.0,146.0,51.0,0.0,64.0,92.0,187.0,110.0,419.0,19.0,3.0,0.0,28.0,13.0,113.0,572.0,48.0,0.0,28.0,57.0,34.0,149.0,79.0,7.0,215.0,117.0,397.0,0.0,37.0,13.0,37.0,2599.0,105.0,39.0,494.0,100.0,70.0,11.0,2.0,63.0,2365.0,1323.0,135.0,6.0,0.0,4.0,69.0,20.0,205.0,1.0,33.0,454.0,0.0,16.0,110.0,0.0,215.0,34.0,1.0,0.0,0.0,5.0,30.0,260.0,254.0,208.0,33.0,0.0,0.0,30.0,89.0,0.0,155.0,1.0,187.0,0.0,0.0,0.0,23.0,51.0,3.0,0.0,1048.0,10.0,367.0,0.0,28.0,108.0,968.0,1352.0,30.0,0.0,8.0,48.0,295.0,41.0,441.0,1.0,0.0,1909.0,72.0,0.0,1608.0,398.0,546.0,67.0,797.0,573.0,0.0,205.0,0.0,0.0,6.0,928.0,0.0,18.0,0.0,268.0,19.0,41.0,879.0,0.0,511.0,0.0,67.0,37.0,9.0,1060.0,12.0,250.0,2300.0,0.0,285.0,3268.0,723.0,174.0,404.0,401.0,10.0,19.0,0.0,171.0,41.0,14.0,0.0,4934.0,33.0,0.0,544.0,24.0,7.0,1779.0,86.0,249.0,284.0,5.0,79.0,0.0,0.0,0.0,39.0,164.0,412.0,55.0,2878.0,1151.0,56.0,140.0,50.0,8.0,0.0,0.0,37.0,0.0,51.0,135.0,327.0,36.0,0.0,0.0,41.0,77.0,55.0,0.0,699.0,8.0,91.0,0.0,0.0,0.0,214.0,275.0,0.0,59.0,42.0,59.0,44.0,30.0,2.0,507.0,171.0,61.0,0.0,393.0,0.0,4.0,166.0,38.0,618.0,0.0,3.0,362.0,0.0,57.0,0.0,10.0,24.0,202.0,0.0,93.0,4.0,0.0,348.0,408.0,0.0,512.0,0.0,105.0,18.0,17.0,31.0,330.0,15.0,0.0,0.0,0.0,458.0,62.0,282.0,73.0,0.0,31.0,24.0,0.0,0.0,0.0,0.0,156.0,0.0,1081.0,354.0,85.0,0.0,0.0,50.0,62.0,1578.0,247.0,14.0,2.0,0.0,0.0,839.0,8.0,685.0,49.0,0.0,50.0,15.0,98.0,69.0,0.0,0.0,1.0,34.2381070131,2010-01-24,,2010-3,33.962066130597904,31.59160463582, +14,14,218.0,22.0,9.0,5.0,344.0,219.0,15.0,93.0,400.0,211.0,30.0,1244.0,0.0,22.0,70.0,0.0,74.0,12.0,232.0,85.0,0.0,93.0,122.0,242.0,112.0,615.0,20.0,5.0,0.0,18.0,16.0,138.0,745.0,95.0,0.0,36.0,54.0,51.0,219.0,125.0,21.0,156.0,184.0,444.0,0.0,50.0,13.0,66.0,3511.0,231.0,57.0,635.0,92.0,58.0,15.0,5.0,144.0,3342.0,1829.0,132.0,11.0,0.0,5.0,128.0,16.0,266.0,2.0,58.0,488.0,0.0,22.0,127.0,0.0,274.0,60.0,3.0,0.0,0.0,8.0,38.0,332.0,217.0,212.0,29.0,0.0,0.0,25.0,92.0,0.0,199.0,3.0,248.0,0.0,0.0,1.0,19.0,51.0,3.0,0.0,1154.0,6.0,419.0,0.0,50.0,121.0,1292.0,1708.0,56.0,0.0,12.0,94.0,306.0,51.0,383.0,0.0,0.0,2110.0,57.0,1.0,2211.0,427.0,803.0,78.0,1029.0,617.0,0.0,252.0,0.0,0.0,12.0,1026.0,0.0,20.0,0.0,383.0,32.0,45.0,1101.0,0.0,518.0,0.0,110.0,56.0,19.0,1273.0,21.0,327.0,2875.0,0.0,460.0,4195.0,1137.0,252.0,545.0,505.0,10.0,17.0,0.0,197.0,30.0,30.0,0.0,6630.0,38.0,0.0,753.0,36.0,7.0,1812.0,193.0,310.0,355.0,8.0,135.0,0.0,0.0,0.0,56.0,232.0,554.0,85.0,4744.0,1452.0,76.0,169.0,38.0,8.0,0.0,0.0,19.0,0.0,55.0,106.0,408.0,42.0,0.0,0.0,67.0,72.0,58.0,0.0,891.0,23.0,103.0,0.0,0.0,0.0,247.0,351.0,0.0,66.0,78.0,47.0,51.0,41.0,5.0,676.0,283.0,90.0,0.0,501.0,0.0,5.0,197.0,38.0,685.0,0.0,0.0,463.0,0.0,66.0,0.0,12.0,31.0,250.0,0.0,142.0,4.0,0.0,372.0,461.0,0.0,730.0,0.0,116.0,11.0,25.0,51.0,421.0,18.0,0.0,0.0,0.0,614.0,57.0,336.0,319.0,0.0,51.0,45.0,0.0,0.0,0.0,0.0,180.0,0.0,1525.0,441.0,102.0,0.0,0.0,80.0,83.0,2095.0,358.0,24.0,4.0,0.0,0.0,1158.0,12.0,955.0,36.0,0.0,63.0,39.0,100.0,118.0,0.0,0.0,2.0,43.1416870223,2010-01-31,,2010-4,43.45486380918281,43.141687022300005, +15,15,212.0,15.0,13.0,13.0,284.0,150.0,18.0,101.0,369.0,245.0,34.0,1077.0,0.0,14.0,52.0,0.0,73.0,12.0,131.0,39.0,0.0,85.0,126.0,131.0,74.0,489.0,56.0,4.0,0.0,15.0,10.0,125.0,596.0,57.0,0.0,50.0,70.0,43.0,204.0,143.0,12.0,132.0,205.0,512.0,0.0,52.0,14.0,77.0,3427.0,150.0,51.0,712.0,97.0,71.0,17.0,4.0,111.0,3188.0,1883.0,152.0,9.0,0.0,3.0,115.0,15.0,319.0,1.0,69.0,393.0,0.0,22.0,128.0,0.0,244.0,69.0,0.0,0.0,0.0,6.0,36.0,313.0,123.0,198.0,26.0,0.0,0.0,12.0,126.0,0.0,229.0,1.0,241.0,0.0,0.0,1.0,31.0,51.0,8.0,0.0,1191.0,5.0,401.0,0.0,35.0,106.0,1141.0,1629.0,30.0,0.0,9.0,107.0,297.0,42.0,373.0,0.0,0.0,2212.0,83.0,0.0,2118.0,522.0,625.0,86.0,1036.0,566.0,0.0,282.0,0.0,0.0,7.0,1105.0,0.0,19.0,0.0,357.0,36.0,57.0,1074.0,0.0,645.0,0.0,42.0,54.0,18.0,1232.0,16.0,301.0,3204.0,0.0,382.0,4266.0,978.0,258.0,655.0,532.0,11.0,24.0,0.0,264.0,38.0,27.0,0.0,6686.0,32.0,0.0,741.0,36.0,7.0,1618.0,107.0,329.0,409.0,6.0,111.0,0.0,0.0,0.0,44.0,222.0,549.0,68.0,5097.0,1289.0,98.0,118.0,39.0,18.0,0.0,0.0,14.0,0.0,67.0,160.0,331.0,16.0,0.0,0.0,85.0,70.0,65.0,0.0,894.0,16.0,94.0,1.0,0.0,0.0,201.0,287.0,0.0,64.0,89.0,67.0,62.0,35.0,8.0,690.0,273.0,92.0,0.0,478.0,0.0,5.0,196.0,35.0,684.0,0.0,4.0,522.0,0.0,69.0,0.0,9.0,19.0,283.0,0.0,98.0,1.0,0.0,364.0,504.0,0.0,808.0,0.0,88.0,9.0,27.0,24.0,449.0,18.0,0.0,0.0,0.0,571.0,58.0,314.0,209.0,0.0,30.0,39.0,0.0,0.0,0.0,0.0,197.0,0.0,1519.0,432.0,128.0,0.0,0.0,52.0,66.0,2383.0,346.0,133.0,1.0,0.0,0.0,1114.0,13.0,995.0,51.0,0.0,104.0,45.0,104.0,108.0,0.0,0.0,1.0,36.7162969715,2010-02-07,,2010-5,36.82025161323932,43.082829043640004, +16,16,207.0,12.0,13.0,7.0,230.0,218.0,20.0,98.0,298.0,200.0,34.0,1028.0,0.0,13.0,52.0,0.0,55.0,16.0,126.0,54.0,0.0,62.0,106.0,114.0,46.0,414.0,46.0,8.0,1.0,26.0,10.0,111.0,547.0,56.0,0.0,35.0,50.0,35.0,188.0,106.0,10.0,206.0,194.0,517.0,0.0,42.0,7.0,55.0,3076.0,155.0,71.0,625.0,82.0,42.0,5.0,2.0,122.0,3221.0,1673.0,124.0,6.0,0.0,5.0,86.0,19.0,202.0,0.0,60.0,365.0,0.0,19.0,94.0,0.0,315.0,56.0,1.0,0.0,0.0,6.0,42.0,273.0,146.0,168.0,24.0,0.0,0.0,12.0,122.0,0.0,163.0,1.0,191.0,0.0,0.0,0.0,37.0,47.0,3.0,0.0,1127.0,11.0,340.0,0.0,37.0,68.0,1223.0,1482.0,43.0,0.0,7.0,115.0,273.0,43.0,318.0,0.0,0.0,2084.0,89.0,0.0,2014.0,453.0,796.0,71.0,848.0,539.0,0.0,224.0,0.0,0.0,9.0,999.0,0.0,18.0,0.0,282.0,37.0,47.0,934.0,0.0,528.0,0.0,69.0,48.0,18.0,1160.0,20.0,266.0,2771.0,0.0,280.0,3922.0,885.0,227.0,611.0,547.0,15.0,4.0,0.0,205.0,22.0,25.0,0.0,6001.0,31.0,0.0,675.0,37.0,13.0,1455.0,78.0,316.0,293.0,8.0,108.0,0.0,0.0,0.0,26.0,190.0,456.0,45.0,4497.0,1233.0,60.0,97.0,37.0,14.0,0.0,0.0,40.0,0.0,70.0,122.0,277.0,19.0,0.0,0.0,63.0,87.0,49.0,0.0,765.0,10.0,66.0,0.0,0.0,0.0,198.0,201.0,0.0,57.0,79.0,63.0,60.0,37.0,2.0,518.0,191.0,85.0,0.0,287.0,0.0,5.0,193.0,28.0,649.0,0.0,2.0,530.0,0.0,92.0,0.0,16.0,29.0,237.0,0.0,104.0,1.0,0.0,346.0,422.0,0.0,591.0,0.0,134.0,17.0,27.0,30.0,353.0,15.0,0.0,0.0,0.0,542.0,46.0,274.0,99.0,0.0,22.0,23.0,0.0,0.0,0.0,0.0,179.0,0.0,1332.0,403.0,140.0,0.0,0.0,44.0,53.0,2166.0,363.0,28.0,1.0,0.0,0.0,1001.0,13.0,1308.0,40.0,0.0,108.0,51.0,116.0,98.0,0.0,0.0,0.0,44.615941155200005,2010-02-14,,2010-6,45.05966092241522,40.46480749836001, +17,17,208.0,16.0,22.0,13.0,250.0,209.0,19.0,84.0,340.0,214.0,35.0,1089.0,0.0,16.0,32.0,0.0,41.0,14.0,100.0,32.0,0.0,63.0,87.0,103.0,98.0,302.0,12.0,7.0,0.0,25.0,13.0,100.0,546.0,57.0,0.0,32.0,56.0,33.0,201.0,73.0,10.0,129.0,196.0,491.0,0.0,44.0,11.0,71.0,3167.0,173.0,88.0,662.0,69.0,83.0,11.0,1.0,97.0,3424.0,1745.0,130.0,8.0,0.0,5.0,108.0,15.0,237.0,0.0,63.0,430.0,0.0,23.0,122.0,0.0,217.0,55.0,0.0,0.0,0.0,7.0,28.0,283.0,138.0,151.0,26.0,0.0,0.0,19.0,88.0,0.0,231.0,0.0,221.0,0.0,0.0,0.0,27.0,42.0,4.0,0.0,1072.0,7.0,341.0,0.0,42.0,102.0,1216.0,1509.0,40.0,0.0,14.0,86.0,291.0,48.0,287.0,0.0,0.0,1827.0,67.0,0.0,1976.0,498.0,617.0,63.0,863.0,615.0,0.0,235.0,0.0,0.0,3.0,937.0,0.0,16.0,0.0,314.0,29.0,44.0,1000.0,0.0,565.0,0.0,66.0,39.0,19.0,1338.0,23.0,285.0,3040.0,0.0,326.0,3756.0,944.0,325.0,597.0,554.0,9.0,22.0,0.0,259.0,24.0,22.0,0.0,6045.0,32.0,0.0,673.0,24.0,16.0,1174.0,87.0,298.0,401.0,15.0,108.0,0.0,0.0,0.0,36.0,227.0,472.0,62.0,5852.0,1258.0,45.0,135.0,46.0,12.0,0.0,0.0,19.0,0.0,71.0,88.0,256.0,32.0,0.0,0.0,49.0,97.0,71.0,0.0,779.0,17.0,92.0,0.0,0.0,0.0,215.0,225.0,0.0,65.0,71.0,62.0,38.0,35.0,5.0,599.0,256.0,71.0,0.0,302.0,0.0,15.0,125.0,40.0,707.0,0.0,0.0,396.0,0.0,61.0,0.0,8.0,26.0,229.0,0.0,102.0,1.0,0.0,362.0,429.0,0.0,664.0,0.0,136.0,19.0,24.0,32.0,368.0,13.0,0.0,0.0,0.0,546.0,46.0,235.0,75.0,0.0,27.0,20.0,0.0,0.0,0.0,0.0,153.0,0.0,1401.0,394.0,136.0,0.0,0.0,61.0,55.0,2480.0,404.0,39.0,0.0,0.0,0.0,1088.0,15.0,835.0,34.0,0.0,92.0,47.0,101.0,75.0,0.0,0.0,4.0,37.480306957399996,2010-02-21,,2010-7,37.21686824344874,35.05552229878, +18,18,199.0,14.0,17.0,11.0,210.0,132.0,18.0,90.0,321.0,214.0,30.0,1019.0,0.0,14.0,30.0,0.0,65.0,6.0,116.0,50.0,0.0,69.0,92.0,138.0,74.0,372.0,32.0,6.0,0.0,19.0,15.0,104.0,530.0,38.0,0.0,26.0,53.0,24.0,177.0,71.0,17.0,118.0,158.0,429.0,0.0,40.0,15.0,42.0,2800.0,155.0,74.0,497.0,77.0,61.0,15.0,2.0,92.0,2966.0,1615.0,120.0,10.0,0.0,5.0,115.0,14.0,199.0,0.0,77.0,339.0,0.0,27.0,109.0,0.0,196.0,34.0,0.0,0.0,0.0,9.0,36.0,233.0,80.0,166.0,32.0,0.0,0.0,21.0,98.0,0.0,158.0,2.0,223.0,0.0,0.0,4.0,31.0,62.0,2.0,0.0,994.0,7.0,340.0,0.0,34.0,115.0,1136.0,1367.0,26.0,0.0,10.0,70.0,315.0,49.0,271.0,0.0,0.0,1674.0,77.0,0.0,1788.0,466.0,565.0,76.0,758.0,500.0,0.0,217.0,0.0,0.0,11.0,922.0,0.0,16.0,0.0,290.0,25.0,46.0,978.0,0.0,474.0,0.0,66.0,35.0,26.0,1130.0,22.0,311.0,2856.0,0.0,305.0,3392.0,757.0,208.0,661.0,403.0,7.0,14.0,0.0,222.0,26.0,21.0,0.0,5515.0,33.0,0.0,444.0,12.0,14.0,1052.0,71.0,289.0,317.0,12.0,94.0,0.0,0.0,0.0,20.0,225.0,438.0,45.0,5282.0,1282.0,88.0,171.0,45.0,5.0,0.0,0.0,17.0,0.0,55.0,87.0,302.0,38.0,0.0,0.0,61.0,85.0,84.0,0.0,712.0,29.0,82.0,0.0,0.0,0.0,197.0,187.0,0.0,40.0,80.0,57.0,63.0,29.0,6.0,553.0,233.0,64.0,0.0,196.0,1.0,14.0,156.0,24.0,580.0,0.0,2.0,399.0,0.0,61.0,0.0,12.0,21.0,220.0,0.0,99.0,2.0,0.0,365.0,400.0,0.0,620.0,0.0,86.0,19.0,31.0,47.0,373.0,20.0,0.0,0.0,0.0,464.0,96.0,193.0,35.0,0.0,19.0,22.0,0.0,0.0,0.0,0.0,149.0,0.0,1185.0,372.0,82.0,0.0,0.0,70.0,57.0,2157.0,317.0,27.0,2.0,0.0,0.0,1028.0,15.0,762.0,37.0,0.0,93.0,36.0,126.0,77.0,0.0,0.0,3.0,22.013270857600002,2010-02-28,,2010-8,21.78163660696101,27.28744243086, +19,19,191.0,27.0,9.0,4.0,264.0,149.0,9.0,92.0,368.0,224.0,33.0,1143.0,0.0,16.0,71.0,0.0,75.0,13.0,150.0,58.0,0.0,70.0,106.0,88.0,78.0,339.0,23.0,7.0,0.0,30.0,9.0,125.0,600.0,71.0,0.0,30.0,42.0,18.0,200.0,97.0,12.0,147.0,193.0,453.0,0.0,52.0,11.0,50.0,3232.0,135.0,72.0,562.0,66.0,40.0,10.0,6.0,86.0,2591.0,1586.0,130.0,11.0,0.0,3.0,100.0,10.0,197.0,0.0,54.0,322.0,0.0,18.0,110.0,0.0,253.0,37.0,1.0,0.0,0.0,9.0,29.0,275.0,97.0,180.0,36.0,0.0,0.0,29.0,98.0,0.0,190.0,0.0,209.0,0.0,0.0,0.0,30.0,45.0,4.0,0.0,1130.0,5.0,415.0,0.0,36.0,95.0,1108.0,1351.0,38.0,1.0,9.0,66.0,310.0,50.0,393.0,2.0,0.0,1920.0,77.0,0.0,1936.0,430.0,568.0,60.0,851.0,632.0,0.0,250.0,0.0,0.0,13.0,898.0,0.0,18.0,0.0,254.0,24.0,38.0,916.0,0.0,561.0,0.0,69.0,54.0,22.0,1048.0,18.0,287.0,2900.0,0.0,330.0,3060.0,781.0,204.0,577.0,440.0,5.0,25.0,0.0,227.0,26.0,27.0,0.0,5643.0,32.0,0.0,664.0,23.0,9.0,976.0,97.0,267.0,294.0,8.0,123.0,0.0,0.0,0.0,33.0,173.0,346.0,63.0,7271.0,1293.0,49.0,162.0,33.0,14.0,0.0,0.0,17.0,1.0,61.0,132.0,276.0,33.0,0.0,0.0,58.0,93.0,80.0,0.0,813.0,18.0,94.0,0.0,0.0,0.0,184.0,248.0,0.0,68.0,59.0,47.0,66.0,33.0,22.0,479.0,217.0,55.0,0.0,165.0,0.0,8.0,200.0,27.0,710.0,0.0,7.0,414.0,0.0,53.0,0.0,15.0,18.0,241.0,0.0,102.0,0.0,0.0,343.0,446.0,0.0,667.0,0.0,85.0,17.0,21.0,22.0,350.0,22.0,0.0,0.0,0.0,517.0,44.0,209.0,40.0,0.0,27.0,19.0,0.0,0.0,0.0,0.0,134.0,0.0,936.0,383.0,117.0,0.0,0.0,62.0,108.0,2066.0,281.0,14.0,1.0,0.0,0.0,1070.0,13.0,864.0,46.0,0.0,94.0,34.0,101.0,91.0,0.0,0.0,9.0,37.5568923263,2010-03-07,,2010-9,36.040486152357985,37.5568923263, +20,20,198.0,11.0,9.0,6.0,265.0,189.0,13.0,75.0,353.0,241.0,43.0,1146.0,0.0,4.0,52.0,0.0,51.0,10.0,142.0,63.0,0.0,69.0,113.0,110.0,94.0,398.0,22.0,13.0,0.0,26.0,9.0,112.0,625.0,57.0,0.0,24.0,47.0,30.0,174.0,84.0,10.0,170.0,161.0,546.0,0.0,35.0,16.0,54.0,3231.0,161.0,54.0,564.0,57.0,60.0,18.0,2.0,81.0,2462.0,1714.0,102.0,8.0,0.0,5.0,96.0,11.0,219.0,0.0,62.0,353.0,0.0,13.0,117.0,0.0,192.0,38.0,0.0,0.0,0.0,5.0,37.0,255.0,94.0,199.0,33.0,0.0,0.0,23.0,94.0,0.0,168.0,0.0,226.0,0.0,0.0,3.0,31.0,73.0,6.0,0.0,1077.0,8.0,387.0,0.0,41.0,130.0,1133.0,1222.0,35.0,0.0,14.0,61.0,306.0,44.0,397.0,0.0,0.0,2108.0,72.0,2.0,1983.0,444.0,669.0,53.0,929.0,638.0,0.0,239.0,0.0,0.0,11.0,940.0,0.0,23.0,0.0,290.0,36.0,46.0,1078.0,0.0,554.0,0.0,79.0,38.0,22.0,1142.0,20.0,300.0,3093.0,0.0,332.0,3125.0,812.0,221.0,578.0,562.0,11.0,15.0,0.0,226.0,27.0,30.0,0.0,4923.0,48.0,0.0,602.0,20.0,13.0,1032.0,73.0,312.0,341.0,14.0,135.0,0.0,0.0,0.0,34.0,158.0,458.0,62.0,5312.0,1359.0,75.0,144.0,45.0,11.0,0.0,0.0,21.0,0.0,33.0,127.0,306.0,31.0,0.0,0.0,49.0,74.0,57.0,0.0,860.0,10.0,116.0,0.0,0.0,0.0,220.0,222.0,0.0,60.0,60.0,41.0,52.0,31.0,7.0,519.0,254.0,75.0,0.0,149.0,0.0,8.0,197.0,34.0,714.0,0.0,0.0,418.0,0.0,67.0,0.0,14.0,20.0,228.0,0.0,112.0,1.0,0.0,278.0,449.0,0.0,660.0,0.0,120.0,9.0,23.0,32.0,357.0,11.0,0.0,0.0,0.0,480.0,56.0,248.0,29.0,0.0,33.0,14.0,0.0,0.0,0.0,0.0,123.0,0.0,857.0,440.0,136.0,0.0,0.0,49.0,90.0,2287.0,299.0,19.0,2.0,0.0,0.0,910.0,16.0,953.0,32.0,0.0,79.0,58.0,83.0,88.0,0.0,0.0,2.0,25.0923712918,2010-03-14,,2010-10,27.867601258357567,23.404582697680002, +21,21,183.0,11.0,23.0,3.0,249.0,165.0,15.0,85.0,370.0,207.0,42.0,1036.0,0.0,9.0,79.0,0.0,58.0,8.0,113.0,73.0,0.0,55.0,114.0,79.0,74.0,453.0,19.0,9.0,1.0,28.0,8.0,109.0,556.0,69.0,0.0,34.0,33.0,28.0,132.0,115.0,6.0,132.0,194.0,470.0,0.0,59.0,9.0,65.0,3449.0,135.0,55.0,669.0,58.0,63.0,13.0,1.0,74.0,2503.0,1679.0,123.0,10.0,0.0,5.0,106.0,7.0,195.0,1.0,57.0,349.0,0.0,19.0,109.0,0.0,252.0,28.0,1.0,0.0,0.0,8.0,39.0,271.0,75.0,195.0,31.0,0.0,0.0,32.0,100.0,0.0,260.0,0.0,190.0,0.0,0.0,0.0,31.0,58.0,2.0,0.0,2071.0,8.0,393.0,0.0,26.0,194.0,1142.0,1120.0,30.0,0.0,9.0,65.0,314.0,34.0,324.0,0.0,0.0,2419.0,81.0,0.0,1914.0,388.0,603.0,47.0,898.0,541.0,0.0,215.0,0.0,0.0,4.0,872.0,0.0,20.0,0.0,297.0,27.0,64.0,901.0,0.0,453.0,0.0,68.0,33.0,16.0,1089.0,19.0,300.0,3147.0,0.0,341.0,3166.0,811.0,211.0,544.0,437.0,5.0,19.0,0.0,204.0,26.0,19.0,0.0,4776.0,24.0,0.0,635.0,31.0,11.0,905.0,96.0,288.0,495.0,9.0,79.0,0.0,0.0,0.0,32.0,131.0,403.0,38.0,5239.0,1363.0,105.0,114.0,35.0,12.0,0.0,1.0,34.0,1.0,52.0,125.0,312.0,31.0,0.0,0.0,49.0,87.0,52.0,0.0,711.0,11.0,83.0,0.0,0.0,0.0,205.0,215.0,0.0,45.0,56.0,56.0,51.0,35.0,9.0,516.0,239.0,89.0,0.0,146.0,0.0,7.0,166.0,17.0,721.0,0.0,1.0,416.0,0.0,54.0,0.0,14.0,15.0,237.0,0.0,88.0,0.0,0.0,333.0,386.0,0.0,733.0,0.0,160.0,18.0,18.0,21.0,373.0,13.0,0.0,0.0,0.0,533.0,49.0,224.0,42.0,0.0,31.0,25.0,0.0,0.0,0.0,0.0,112.0,0.0,761.0,481.0,94.0,0.0,0.0,41.0,60.0,2465.0,383.0,21.0,0.0,0.0,0.0,865.0,11.0,1022.0,35.0,0.0,85.0,42.0,97.0,94.0,0.0,0.0,0.0,25.9415450518,2010-03-21,,2010-11,25.443744613693816,24.577252354080002, +22,22,196.0,10.0,21.0,3.0,229.0,140.0,9.0,116.0,370.0,164.0,36.0,1085.0,0.0,11.0,36.0,0.0,63.0,12.0,117.0,62.0,1.0,85.0,106.0,100.0,62.0,384.0,17.0,7.0,2.0,47.0,9.0,136.0,526.0,53.0,0.0,20.0,25.0,31.0,175.0,118.0,15.0,153.0,206.0,701.0,0.0,37.0,18.0,51.0,3038.0,140.0,39.0,640.0,76.0,35.0,12.0,1.0,103.0,2052.0,1526.0,106.0,4.0,0.0,4.0,77.0,10.0,159.0,0.0,53.0,315.0,0.0,18.0,75.0,0.0,266.0,35.0,0.0,0.0,0.0,4.0,42.0,263.0,90.0,200.0,23.0,0.0,0.0,23.0,96.0,0.0,208.0,1.0,205.0,0.0,0.0,0.0,28.0,45.0,4.0,0.0,1200.0,5.0,398.0,0.0,43.0,69.0,1116.0,1062.0,31.0,0.0,11.0,76.0,334.0,37.0,342.0,0.0,0.0,2148.0,78.0,0.0,1908.0,433.0,663.0,53.0,863.0,801.0,0.0,230.0,0.0,0.0,10.0,842.0,0.0,13.0,0.0,273.0,24.0,48.0,938.0,0.0,562.0,0.0,51.0,22.0,13.0,1136.0,28.0,271.0,3054.0,0.0,353.0,2896.0,774.0,239.0,505.0,399.0,5.0,10.0,0.0,214.0,42.0,34.0,0.0,4557.0,31.0,0.0,717.0,17.0,8.0,687.0,89.0,308.0,382.0,7.0,100.0,0.0,0.0,0.0,36.0,133.0,323.0,38.0,3684.0,1386.0,52.0,106.0,46.0,9.0,0.0,0.0,21.0,0.0,65.0,92.0,279.0,31.0,0.0,0.0,49.0,92.0,48.0,0.0,653.0,12.0,72.0,0.0,0.0,0.0,213.0,221.0,0.0,41.0,59.0,52.0,60.0,34.0,5.0,458.0,208.0,79.0,0.0,103.0,1.0,6.0,185.0,31.0,802.0,0.0,5.0,396.0,0.0,49.0,0.0,10.0,19.0,214.0,0.0,112.0,4.0,0.0,278.0,465.0,0.0,668.0,0.0,139.0,23.0,24.0,20.0,371.0,6.0,0.0,0.0,0.0,506.0,56.0,208.0,40.0,0.0,35.0,26.0,0.0,0.0,0.0,0.0,98.0,0.0,717.0,432.0,105.0,0.0,0.0,80.0,54.0,2811.0,322.0,33.0,0.0,0.0,0.0,813.0,19.0,1050.0,36.0,0.0,73.0,39.0,85.0,76.0,0.0,0.0,3.0,19.7325287554,2010-03-28,,2010-12,19.37428834384512,20.80449726268, +23,23,214.0,7.0,13.0,6.0,277.0,136.0,6.0,100.0,363.0,232.0,28.0,1149.0,0.0,14.0,30.0,0.0,41.0,6.0,111.0,34.0,0.0,108.0,111.0,133.0,92.0,356.0,21.0,5.0,0.0,32.0,9.0,130.0,550.0,46.0,0.0,30.0,38.0,33.0,183.0,92.0,11.0,132.0,152.0,813.0,0.0,38.0,9.0,49.0,3148.0,150.0,56.0,602.0,73.0,63.0,10.0,3.0,67.0,1900.0,1614.0,138.0,7.0,0.0,2.0,73.0,13.0,181.0,0.0,47.0,360.0,0.0,18.0,99.0,0.0,277.0,39.0,0.0,0.0,0.0,9.0,34.0,245.0,88.0,159.0,36.0,0.0,0.0,14.0,71.0,0.0,214.0,1.0,222.0,0.0,0.0,0.0,30.0,59.0,2.0,0.0,1266.0,9.0,350.0,0.0,40.0,84.0,1238.0,914.0,37.0,0.0,5.0,73.0,304.0,55.0,381.0,1.0,0.0,2004.0,66.0,0.0,2026.0,404.0,557.0,60.0,851.0,858.0,0.0,232.0,0.0,0.0,6.0,930.0,0.0,13.0,0.0,251.0,38.0,47.0,901.0,0.0,481.0,0.0,65.0,49.0,11.0,1134.0,24.0,278.0,3152.0,0.0,390.0,2816.0,728.0,173.0,587.0,440.0,8.0,7.0,0.0,219.0,32.0,23.0,0.0,4446.0,34.0,0.0,557.0,14.0,5.0,693.0,65.0,306.0,428.0,15.0,107.0,0.0,0.0,0.0,78.0,118.0,339.0,53.0,3003.0,1217.0,68.0,144.0,28.0,16.0,0.0,0.0,18.0,0.0,55.0,99.0,235.0,33.0,0.0,0.0,40.0,79.0,49.0,0.0,719.0,13.0,63.0,0.0,0.0,0.0,157.0,222.0,0.0,44.0,59.0,37.0,60.0,20.0,5.0,487.0,230.0,53.0,1.0,127.0,1.0,3.0,179.0,22.0,742.0,0.0,1.0,460.0,0.0,44.0,0.0,7.0,17.0,235.0,0.0,118.0,1.0,0.0,309.0,466.0,0.0,626.0,0.0,157.0,16.0,36.0,28.0,352.0,12.0,0.0,0.0,0.0,523.0,48.0,222.0,31.0,0.0,23.0,20.0,0.0,0.0,0.0,0.0,137.0,0.0,714.0,447.0,106.0,0.0,0.0,38.0,52.0,2923.0,358.0,22.0,0.0,0.0,0.0,881.0,8.0,1021.0,38.0,0.0,60.0,43.0,116.0,86.0,0.0,0.0,0.0,21.0055951267,2010-04-04,,2010-13,20.615593466146663,27.595479858980003, +24,24,195.0,10.0,13.0,7.0,293.0,151.0,10.0,92.0,353.0,201.0,22.0,900.0,0.0,15.0,33.0,0.0,41.0,6.0,122.0,39.0,1.0,54.0,110.0,81.0,81.0,408.0,23.0,6.0,1.0,40.0,15.0,139.0,599.0,53.0,0.0,22.0,25.0,27.0,170.0,98.0,12.0,126.0,142.0,457.0,0.0,34.0,8.0,46.0,2706.0,123.0,70.0,531.0,75.0,38.0,16.0,1.0,84.0,1958.0,1494.0,126.0,12.0,0.0,3.0,88.0,10.0,186.0,2.0,47.0,325.0,0.0,14.0,124.0,0.0,236.0,41.0,0.0,0.0,0.0,7.0,36.0,334.0,84.0,179.0,23.0,0.0,0.0,24.0,92.0,0.0,195.0,0.0,240.0,0.0,0.0,1.0,32.0,47.0,5.0,0.0,1159.0,6.0,278.0,0.0,22.0,81.0,1082.0,923.0,21.0,0.0,6.0,57.0,264.0,41.0,397.0,2.0,0.0,1670.0,73.0,0.0,1663.0,401.0,536.0,36.0,815.0,654.0,0.0,235.0,0.0,0.0,16.0,963.0,0.0,23.0,0.0,249.0,37.0,34.0,812.0,0.0,434.0,0.0,75.0,37.0,33.0,1051.0,22.0,283.0,2566.0,0.0,335.0,2647.0,750.0,180.0,530.0,370.0,16.0,34.0,0.0,214.0,26.0,20.0,0.0,4069.0,29.0,0.0,517.0,22.0,8.0,737.0,75.0,269.0,388.0,4.0,111.0,0.0,0.0,0.0,46.0,114.0,343.0,47.0,2302.0,1247.0,77.0,131.0,23.0,12.0,0.0,0.0,27.0,0.0,54.0,116.0,239.0,34.0,0.0,0.0,28.0,61.0,44.0,0.0,709.0,11.0,50.0,0.0,0.0,0.0,175.0,221.0,0.0,33.0,50.0,58.0,52.0,34.0,4.0,525.0,238.0,53.0,0.0,103.0,0.0,5.0,203.0,22.0,669.0,0.0,0.0,385.0,0.0,51.0,0.0,14.0,21.0,210.0,0.0,104.0,0.0,0.0,258.0,400.0,0.0,624.0,0.0,139.0,19.0,12.0,35.0,304.0,13.0,0.0,0.0,0.0,457.0,50.0,247.0,26.0,0.0,27.0,25.0,0.0,0.0,0.0,0.0,105.0,0.0,716.0,357.0,144.0,0.0,0.0,63.0,46.0,2516.0,341.0,20.0,0.0,0.0,0.0,681.0,16.0,870.0,25.0,0.0,74.0,32.0,72.0,84.0,0.0,0.0,4.0,15.6013055172,2010-04-11,,2010-14,14.943913597678293,23.21801953394, +25,25,177.0,11.0,10.0,5.0,202.0,164.0,9.0,71.0,298.0,168.0,28.0,1081.0,0.0,17.0,45.0,0.0,73.0,6.0,120.0,33.0,0.0,68.0,100.0,136.0,53.0,444.0,23.0,7.0,0.0,18.0,12.0,131.0,589.0,51.0,0.0,25.0,30.0,19.0,137.0,96.0,12.0,200.0,154.0,503.0,0.0,45.0,4.0,40.0,2814.0,170.0,50.0,566.0,58.0,49.0,15.0,0.0,74.0,1688.0,1481.0,128.0,7.0,0.0,4.0,98.0,10.0,197.0,0.0,56.0,347.0,0.0,20.0,134.0,0.0,200.0,77.0,1.0,0.0,0.0,1.0,33.0,239.0,72.0,213.0,24.0,0.0,0.0,25.0,72.0,0.0,158.0,2.0,237.0,0.0,0.0,0.0,27.0,43.0,2.0,0.0,992.0,5.0,334.0,0.0,25.0,85.0,1115.0,900.0,25.0,0.0,11.0,48.0,275.0,37.0,366.0,0.0,0.0,1668.0,61.0,0.0,1997.0,361.0,543.0,39.0,776.0,684.0,0.0,225.0,0.0,0.0,5.0,914.0,0.0,14.0,0.0,369.0,40.0,42.0,924.0,0.0,488.0,0.0,58.0,59.0,15.0,1229.0,14.0,280.0,2935.0,0.0,315.0,2656.0,711.0,203.0,535.0,422.0,7.0,17.0,0.0,200.0,19.0,28.0,0.0,3922.0,22.0,0.0,601.0,42.0,9.0,876.0,90.0,271.0,391.0,9.0,111.0,0.0,0.0,0.0,33.0,108.0,382.0,77.0,1627.0,1220.0,85.0,138.0,27.0,7.0,0.0,0.0,23.0,0.0,35.0,103.0,292.0,21.0,0.0,0.0,41.0,56.0,42.0,0.0,710.0,7.0,59.0,0.0,0.0,0.0,213.0,190.0,0.0,37.0,64.0,45.0,50.0,23.0,0.0,446.0,195.0,73.0,0.0,91.0,0.0,6.0,190.0,31.0,709.0,0.0,0.0,368.0,0.0,50.0,0.0,8.0,30.0,219.0,0.0,87.0,0.0,0.0,250.0,385.0,0.0,676.0,0.0,135.0,13.0,21.0,22.0,295.0,20.0,0.0,0.0,0.0,413.0,45.0,254.0,34.0,0.0,27.0,25.0,0.0,0.0,0.0,0.0,105.0,0.0,738.0,355.0,102.0,0.0,0.0,50.0,53.0,3150.0,318.0,28.0,0.0,0.0,0.0,727.0,9.0,941.0,30.0,0.0,63.0,25.0,82.0,94.0,0.0,0.0,2.0,18.8036054397,2010-04-18,,2010-15,18.267700276191952,24.05629815972, +26,26,263.0,24.0,7.0,6.0,343.0,125.0,19.0,133.0,421.0,252.0,50.0,1385.0,0.0,13.0,46.0,0.0,89.0,12.0,195.0,84.0,0.0,106.0,153.0,177.0,88.0,469.0,24.0,7.0,0.0,74.0,16.0,146.0,860.0,88.0,0.0,18.0,44.0,27.0,193.0,86.0,11.0,228.0,186.0,639.0,0.0,90.0,12.0,52.0,3704.0,147.0,102.0,921.0,71.0,45.0,32.0,1.0,112.0,1972.0,2695.0,183.0,8.0,0.0,5.0,124.0,44.0,361.0,0.0,60.0,507.0,0.0,11.0,163.0,0.0,231.0,61.0,0.0,0.0,0.0,5.0,23.0,326.0,146.0,246.0,42.0,0.0,0.0,50.0,146.0,0.0,267.0,1.0,265.0,0.0,35.0,3.0,29.0,55.0,8.0,0.0,1224.0,6.0,511.0,0.0,42.0,120.0,1611.0,2038.0,315.0,0.0,7.0,80.0,395.0,66.0,589.0,0.0,0.0,1929.0,79.0,0.0,3814.0,466.0,810.0,52.0,1299.0,1618.0,0.0,335.0,0.0,0.0,17.0,1524.0,0.0,21.0,0.0,466.0,30.0,56.0,1234.0,0.0,603.0,0.0,87.0,65.0,18.0,1586.0,24.0,339.0,4533.0,0.0,435.0,3705.0,1225.0,242.0,663.0,470.0,4.0,25.0,0.0,316.0,32.0,21.0,0.0,6134.0,24.0,0.0,843.0,18.0,8.0,570.0,92.0,321.0,812.0,12.0,144.0,0.0,0.0,0.0,44.0,163.0,451.0,90.0,634.0,1731.0,84.0,134.0,46.0,12.0,0.0,0.0,40.0,0.0,60.0,110.0,407.0,32.0,0.0,0.0,88.0,121.0,65.0,0.0,916.0,10.0,56.0,1.0,0.0,0.0,244.0,270.0,0.0,93.0,113.0,60.0,54.0,35.0,0.0,862.0,286.0,76.0,0.0,169.0,0.0,4.0,254.0,38.0,786.0,0.0,5.0,594.0,0.0,19.0,0.0,6.0,20.0,213.0,0.0,137.0,1.0,11.0,403.0,790.0,0.0,937.0,0.0,134.0,16.0,32.0,24.0,488.0,14.0,0.0,0.0,0.0,752.0,103.0,316.0,29.0,0.0,42.0,30.0,0.0,0.0,0.0,1.0,86.0,0.0,1285.0,506.0,126.0,0.0,0.0,84.0,110.0,2631.0,416.0,30.0,0.0,0.0,0.0,1290.0,18.0,973.0,33.0,0.0,92.0,48.0,101.0,108.0,0.0,0.0,0.0,16.8876879866,2010-10-24,,2010-42,15.79947585856305,28.814413752220005, +27,27,250.0,9.0,13.0,10.0,390.0,123.0,8.0,128.0,465.0,233.0,68.0,1495.0,0.0,10.0,66.0,0.0,70.0,7.0,178.0,63.0,0.0,88.0,165.0,114.0,105.0,518.0,11.0,2.0,0.0,37.0,8.0,129.0,835.0,135.0,0.0,16.0,50.0,30.0,174.0,94.0,16.0,154.0,150.0,632.0,0.0,102.0,11.0,75.0,4165.0,170.0,134.0,885.0,62.0,61.0,26.0,1.0,69.0,2244.0,2613.0,194.0,11.0,0.0,6.0,124.0,47.0,292.0,0.0,54.0,495.0,0.0,12.0,156.0,0.0,222.0,45.0,0.0,0.0,0.0,12.0,33.0,386.0,130.0,326.0,19.0,0.0,0.0,68.0,162.0,0.0,283.0,0.0,266.0,0.0,44.0,1.0,25.0,38.0,11.0,0.0,1525.0,7.0,585.0,0.0,43.0,100.0,1759.0,2012.0,424.0,0.0,3.0,73.0,343.0,47.0,545.0,0.0,0.0,1911.0,56.0,0.0,3887.0,538.0,932.0,55.0,1260.0,1117.0,0.0,340.0,0.0,0.0,26.0,1425.0,0.0,29.0,0.0,424.0,29.0,66.0,1369.0,0.0,604.0,0.0,55.0,50.0,17.0,1433.0,31.0,390.0,3954.0,0.0,477.0,3814.0,1299.0,217.0,624.0,528.0,7.0,14.0,0.0,314.0,15.0,40.0,0.0,6254.0,39.0,0.0,813.0,26.0,12.0,553.0,108.0,312.0,677.0,6.0,162.0,0.0,0.0,0.0,43.0,153.0,448.0,100.0,725.0,1672.0,78.0,148.0,37.0,12.0,0.0,0.0,35.0,0.0,57.0,166.0,461.0,42.0,0.0,0.0,46.0,102.0,68.0,0.0,727.0,18.0,114.0,0.0,0.0,0.0,248.0,266.0,0.0,68.0,78.0,73.0,64.0,55.0,1.0,835.0,314.0,56.0,0.0,192.0,0.0,4.0,308.0,42.0,745.0,0.0,0.0,586.0,0.0,17.0,0.0,23.0,22.0,260.0,0.0,177.0,1.0,5.0,465.0,797.0,0.0,867.0,0.0,163.0,24.0,19.0,50.0,392.0,22.0,0.0,0.0,0.0,681.0,73.0,291.0,23.0,0.0,31.0,29.0,0.0,0.0,0.0,29.0,78.0,0.0,1215.0,474.0,127.0,0.0,0.0,63.0,140.0,2830.0,429.0,26.0,1.0,0.0,0.0,1271.0,18.0,989.0,40.0,0.0,118.0,67.0,106.0,96.0,0.0,0.0,1.0,23.806591963200002,2010-10-31,,2010-43,24.090393545441586,24.924433200880003, +28,28,252.0,24.0,10.0,11.0,403.0,137.0,10.0,90.0,391.0,268.0,68.0,1294.0,0.0,7.0,53.0,0.0,78.0,22.0,208.0,77.0,0.0,85.0,147.0,161.0,106.0,581.0,17.0,7.0,0.0,25.0,11.0,126.0,881.0,96.0,0.0,23.0,44.0,50.0,216.0,119.0,13.0,183.0,221.0,613.0,0.0,89.0,14.0,67.0,4360.0,180.0,99.0,829.0,64.0,79.0,28.0,1.0,120.0,2435.0,2696.0,207.0,3.0,0.0,2.0,110.0,13.0,272.0,0.0,46.0,543.0,0.0,6.0,193.0,0.0,253.0,47.0,0.0,0.0,0.0,5.0,24.0,548.0,99.0,278.0,19.0,0.0,0.0,25.0,176.0,0.0,269.0,0.0,322.0,0.0,32.0,1.0,32.0,50.0,4.0,0.0,1391.0,6.0,558.0,0.0,52.0,104.0,1574.0,2283.0,561.0,0.0,6.0,54.0,383.0,75.0,611.0,0.0,0.0,2038.0,69.0,0.0,3882.0,541.0,1471.0,82.0,1427.0,1171.0,0.0,358.0,0.0,0.0,19.0,1626.0,0.0,14.0,0.0,477.0,54.0,50.0,1518.0,0.0,719.0,0.0,102.0,85.0,20.0,1488.0,30.0,350.0,3682.0,0.0,471.0,4071.0,1311.0,294.0,750.0,468.0,7.0,27.0,0.0,366.0,13.0,22.0,0.0,6310.0,33.0,0.0,800.0,25.0,13.0,614.0,131.0,375.0,684.0,9.0,138.0,0.0,0.0,0.0,53.0,172.0,488.0,131.0,967.0,1776.0,77.0,349.0,29.0,14.0,0.0,0.0,41.0,1.0,50.0,189.0,533.0,37.0,0.0,0.0,103.0,210.0,87.0,0.0,902.0,7.0,93.0,0.0,0.0,0.0,291.0,371.0,0.0,83.0,66.0,74.0,76.0,46.0,0.0,839.0,297.0,81.0,0.0,252.0,0.0,5.0,260.0,44.0,817.0,0.0,1.0,678.0,0.0,33.0,0.0,14.0,14.0,231.0,0.0,112.0,6.0,6.0,378.0,928.0,0.0,1007.0,0.0,144.0,21.0,32.0,45.0,512.0,20.0,0.0,0.0,0.0,928.0,62.0,322.0,27.0,0.0,34.0,28.0,0.0,0.0,0.0,32.0,69.0,0.0,1282.0,523.0,104.0,0.0,1.0,106.0,191.0,2943.0,489.0,14.0,0.0,0.0,0.0,1355.0,22.0,991.0,36.0,0.0,106.0,43.0,109.0,152.0,0.0,0.0,1.0,26.978637824099998,2010-11-07,,2010-44,26.809431458274425,25.422681607540003, +29,29,221.0,19.0,8.0,9.0,386.0,176.0,18.0,120.0,511.0,274.0,54.0,1300.0,0.0,19.0,39.0,0.0,52.0,14.0,205.0,69.0,0.0,80.0,157.0,160.0,160.0,514.0,23.0,5.0,0.0,36.0,13.0,136.0,849.0,77.0,0.0,28.0,36.0,33.0,217.0,96.0,15.0,199.0,200.0,570.0,0.0,85.0,12.0,58.0,5740.0,166.0,69.0,730.0,107.0,67.0,27.0,2.0,99.0,2353.0,2835.0,195.0,13.0,0.0,4.0,132.0,17.0,312.0,0.0,67.0,430.0,0.0,7.0,171.0,0.0,270.0,53.0,0.0,0.0,0.0,7.0,41.0,494.0,154.0,301.0,26.0,0.0,0.0,27.0,165.0,0.0,265.0,0.0,316.0,0.0,36.0,2.0,17.0,50.0,3.0,0.0,1408.0,10.0,559.0,0.0,43.0,97.0,1567.0,2553.0,514.0,0.0,4.0,47.0,382.0,44.0,574.0,0.0,0.0,1984.0,91.0,0.0,3713.0,624.0,797.0,57.0,1296.0,1247.0,0.0,339.0,0.0,0.0,35.0,1662.0,0.0,17.0,0.0,476.0,39.0,61.0,1456.0,0.0,716.0,0.0,86.0,68.0,20.0,1467.0,20.0,323.0,3492.0,0.0,423.0,4175.0,1427.0,412.0,736.0,470.0,9.0,28.0,0.0,330.0,31.0,18.0,0.0,6326.0,40.0,0.0,781.0,23.0,6.0,589.0,170.0,385.0,628.0,5.0,134.0,0.0,0.0,0.0,64.0,189.0,504.0,125.0,1483.0,1730.0,72.0,167.0,29.0,14.0,0.0,0.0,39.0,2.0,60.0,153.0,426.0,46.0,0.0,0.0,746.0,119.0,70.0,0.0,937.0,21.0,81.0,1.0,0.0,0.0,230.0,282.0,0.0,72.0,66.0,77.0,88.0,59.0,0.0,808.0,289.0,80.0,0.0,297.0,0.0,4.0,193.0,33.0,792.0,0.0,0.0,643.0,0.0,20.0,0.0,8.0,15.0,207.0,0.0,122.0,3.0,8.0,502.0,857.0,0.0,1126.0,0.0,156.0,17.0,35.0,30.0,463.0,24.0,0.0,0.0,0.0,785.0,68.0,306.0,33.0,0.0,25.0,23.0,0.0,0.0,0.0,31.0,78.0,0.0,1579.0,519.0,113.0,0.0,2.0,130.0,132.0,3103.0,454.0,29.0,1.0,0.0,0.0,1297.0,17.0,1072.0,40.0,0.0,82.0,52.0,111.0,126.0,0.0,0.0,60.0,23.939639089299998,2010-11-14,,2010-45,23.5724893629666,26.4564465661, +30,30,232.0,13.0,10.0,11.0,391.0,171.0,8.0,109.0,422.0,309.0,49.0,1290.0,0.0,11.0,48.0,0.0,51.0,7.0,168.0,76.0,0.0,89.0,136.0,115.0,146.0,491.0,24.0,4.0,2.0,36.0,13.0,121.0,697.0,95.0,0.0,39.0,56.0,29.0,236.0,155.0,12.0,221.0,219.0,572.0,0.0,139.0,13.0,61.0,4425.0,148.0,71.0,809.0,94.0,77.0,17.0,2.0,116.0,2777.0,2706.0,164.0,15.0,0.0,3.0,152.0,22.0,301.0,0.0,71.0,395.0,0.0,11.0,197.0,0.0,245.0,38.0,1.0,0.0,0.0,8.0,36.0,380.0,134.0,259.0,39.0,0.0,0.0,36.0,131.0,0.0,233.0,1.0,288.0,0.0,61.0,1.0,30.0,40.0,5.0,0.0,1221.0,6.0,495.0,0.0,31.0,109.0,1580.0,2290.0,253.0,0.0,6.0,72.0,315.0,39.0,506.0,0.0,0.0,2202.0,94.0,0.0,3466.0,509.0,784.0,77.0,1285.0,1013.0,0.0,318.0,0.0,0.0,23.0,1504.0,0.0,12.0,0.0,431.0,29.0,42.0,2887.0,0.0,639.0,0.0,80.0,60.0,39.0,1466.0,26.0,348.0,3603.0,0.0,422.0,4054.0,1277.0,275.0,715.0,501.0,9.0,12.0,0.0,318.0,16.0,27.0,0.0,6250.0,30.0,0.0,849.0,46.0,9.0,655.0,133.0,343.0,623.0,8.0,125.0,0.0,0.0,0.0,40.0,170.0,467.0,95.0,1248.0,1641.0,78.0,554.0,39.0,9.0,0.0,0.0,28.0,2.0,56.0,155.0,429.0,38.0,0.0,0.0,127.0,85.0,62.0,0.0,812.0,78.0,100.0,0.0,0.0,0.0,265.0,257.0,0.0,66.0,67.0,60.0,69.0,42.0,1.0,957.0,281.0,280.0,0.0,347.0,0.0,6.0,160.0,23.0,850.0,0.0,2.0,591.0,0.0,33.0,0.0,14.0,13.0,182.0,0.0,117.0,0.0,7.0,475.0,789.0,0.0,985.0,0.0,120.0,20.0,20.0,41.0,454.0,20.0,0.0,0.0,0.0,713.0,72.0,238.0,19.0,0.0,31.0,21.0,0.0,0.0,0.0,38.0,82.0,0.0,1214.0,491.0,119.0,0.0,0.0,87.0,130.0,3028.0,439.0,40.0,0.0,0.0,0.0,1237.0,6.0,1012.0,33.0,0.0,138.0,37.0,129.0,137.0,0.0,0.0,110.0,25.4469113811,2010-11-21,,2010-46,25.91021067772023,26.826720406520003, +31,31,306.0,10.0,3.0,7.0,339.0,130.0,12.0,109.0,396.0,313.0,46.0,1257.0,0.0,9.0,59.0,0.0,62.0,10.0,191.0,74.0,0.0,94.0,149.0,158.0,111.0,522.0,30.0,3.0,0.0,33.0,6.0,139.0,848.0,71.0,0.0,59.0,56.0,34.0,248.0,120.0,9.0,194.0,246.0,601.0,0.0,127.0,17.0,49.0,4771.0,167.0,137.0,788.0,80.0,72.0,21.0,1.0,109.0,3205.0,2601.0,179.0,12.0,0.0,5.0,106.0,33.0,278.0,0.0,89.0,396.0,0.0,12.0,177.0,0.0,256.0,71.0,0.0,0.0,0.0,4.0,29.0,402.0,133.0,267.0,31.0,0.0,0.0,49.0,101.0,0.0,327.0,0.0,256.0,0.0,45.0,0.0,32.0,45.0,3.0,0.0,1294.0,8.0,507.0,0.0,53.0,120.0,1670.0,2633.0,145.0,0.0,5.0,72.0,453.0,60.0,551.0,0.0,0.0,2578.0,102.0,0.0,4113.0,549.0,877.0,77.0,1159.0,1197.0,0.0,344.0,0.0,0.0,22.0,1480.0,0.0,13.0,0.0,487.0,41.0,65.0,1988.0,0.0,733.0,0.0,87.0,73.0,30.0,1537.0,23.0,372.0,3936.0,0.0,417.0,4728.0,1421.0,345.0,651.0,697.0,5.0,19.0,0.0,312.0,61.0,24.0,0.0,6739.0,35.0,0.0,920.0,23.0,14.0,632.0,128.0,377.0,648.0,11.0,120.0,0.0,0.0,0.0,38.0,203.0,551.0,71.0,1676.0,1618.0,83.0,206.0,26.0,8.0,0.0,0.0,44.0,0.0,60.0,144.0,402.0,36.0,0.0,0.0,61.0,118.0,56.0,0.0,821.0,35.0,77.0,0.0,0.0,0.0,313.0,306.0,0.0,55.0,101.0,83.0,63.0,43.0,2.0,1261.0,328.0,80.0,0.0,583.0,0.0,1.0,205.0,28.0,971.0,0.0,0.0,591.0,0.0,44.0,0.0,12.0,12.0,216.0,0.0,135.0,2.0,4.0,396.0,789.0,0.0,892.0,0.0,120.0,14.0,31.0,39.0,536.0,28.0,0.0,0.0,0.0,692.0,91.0,231.0,22.0,0.0,39.0,30.0,0.0,0.0,0.0,104.0,78.0,0.0,1435.0,533.0,151.0,0.0,0.0,51.0,96.0,3252.0,510.0,18.0,1.0,0.0,0.0,1225.0,6.0,973.0,31.0,0.0,177.0,52.0,111.0,165.0,0.0,0.0,152.0,31.8939702677,2010-11-28,,2010-47,31.47647257937674,34.78444857628, +32,32,218.0,12.0,13.0,2.0,285.0,193.0,15.0,74.0,359.0,249.0,45.0,1446.0,0.0,7.0,65.0,0.0,56.0,15.0,184.0,74.0,0.0,84.0,92.0,128.0,80.0,486.0,22.0,4.0,0.0,47.0,16.0,128.0,686.0,72.0,0.0,30.0,35.0,28.0,194.0,131.0,11.0,191.0,165.0,561.0,0.0,255.0,15.0,65.0,3841.0,221.0,101.0,1479.0,188.0,66.0,19.0,0.0,118.0,3092.0,2375.0,188.0,9.0,0.0,2.0,108.0,9.0,228.0,0.0,71.0,397.0,0.0,9.0,154.0,0.0,237.0,42.0,0.0,0.0,0.0,1.0,16.0,270.0,83.0,255.0,24.0,0.0,0.0,27.0,155.0,0.0,234.0,0.0,247.0,0.0,69.0,0.0,11.0,38.0,3.0,0.0,1340.0,4.0,387.0,0.0,55.0,111.0,1440.0,2357.0,91.0,0.0,8.0,70.0,329.0,37.0,545.0,0.0,0.0,2091.0,108.0,0.0,3541.0,559.0,647.0,59.0,1044.0,869.0,0.0,285.0,0.0,0.0,17.0,1255.0,0.0,9.0,0.0,361.0,50.0,56.0,1265.0,0.0,576.0,0.0,65.0,60.0,26.0,1552.0,14.0,280.0,3098.0,0.0,385.0,4460.0,1436.0,371.0,523.0,606.0,6.0,9.0,0.0,247.0,16.0,25.0,0.0,8054.0,26.0,0.0,787.0,28.0,13.0,585.0,114.0,327.0,470.0,9.0,133.0,0.0,0.0,0.0,33.0,270.0,512.0,72.0,1589.0,1421.0,73.0,215.0,29.0,8.0,0.0,0.0,38.0,1.0,57.0,143.0,311.0,37.0,0.0,0.0,52.0,76.0,46.0,0.0,775.0,37.0,66.0,0.0,0.0,0.0,264.0,210.0,0.0,59.0,43.0,63.0,50.0,42.0,0.0,1064.0,285.0,64.0,0.0,1001.0,0.0,5.0,197.0,41.0,773.0,0.0,0.0,512.0,0.0,26.0,0.0,6.0,14.0,160.0,0.0,138.0,2.0,5.0,377.0,678.0,0.0,587.0,0.0,111.0,11.0,32.0,43.0,386.0,19.0,0.0,0.0,0.0,621.0,59.0,245.0,29.0,0.0,42.0,20.0,0.0,0.0,0.0,86.0,103.0,0.0,1468.0,384.0,115.0,0.0,0.0,33.0,76.0,2897.0,310.0,18.0,0.0,0.0,0.0,1231.0,8.0,775.0,29.0,0.0,104.0,35.0,70.0,93.0,0.0,0.0,180.0,33.541940666100004,2010-12-05,,2010-48,34.359170833432,32.96769172372, +33,33,286.0,22.0,10.0,7.0,477.0,97.0,9.0,147.0,430.0,305.0,48.0,1334.0,0.0,16.0,50.0,0.0,76.0,7.0,220.0,81.0,0.0,100.0,143.0,161.0,118.0,562.0,27.0,10.0,0.0,27.0,17.0,116.0,832.0,99.0,0.0,40.0,40.0,45.0,209.0,169.0,17.0,182.0,268.0,610.0,0.0,357.0,17.0,51.0,4266.0,207.0,167.0,1969.0,224.0,71.0,29.0,0.0,109.0,3921.0,2787.0,173.0,9.0,0.0,5.0,105.0,14.0,331.0,0.0,73.0,494.0,0.0,12.0,168.0,0.0,260.0,61.0,0.0,0.0,0.0,10.0,40.0,348.0,138.0,338.0,15.0,0.0,0.0,22.0,192.0,0.0,269.0,0.0,304.0,0.0,55.0,1.0,31.0,56.0,5.0,0.0,1431.0,7.0,506.0,0.0,52.0,114.0,1562.0,3147.0,90.0,0.0,6.0,60.0,430.0,54.0,594.0,1.0,0.0,2061.0,73.0,0.0,4611.0,584.0,850.0,67.0,1352.0,1019.0,0.0,298.0,0.0,0.0,17.0,1479.0,0.0,19.0,0.0,414.0,34.0,61.0,1436.0,0.0,652.0,0.0,99.0,78.0,25.0,1664.0,46.0,371.0,3752.0,0.0,402.0,5698.0,1542.0,375.0,656.0,648.0,9.0,13.0,0.0,304.0,33.0,12.0,0.0,8947.0,29.0,0.0,807.0,23.0,8.0,681.0,115.0,489.0,721.0,5.0,189.0,0.0,0.0,0.0,38.0,283.0,619.0,100.0,4075.0,1639.0,88.0,216.0,33.0,10.0,0.0,0.0,12.0,0.0,42.0,228.0,426.0,35.0,0.0,0.0,70.0,95.0,50.0,0.0,1009.0,32.0,72.0,0.0,0.0,0.0,356.0,293.0,0.0,91.0,60.0,58.0,62.0,37.0,9.0,1212.0,307.0,98.0,0.0,982.0,0.0,2.0,260.0,38.0,961.0,0.0,1.0,595.0,0.0,41.0,0.0,5.0,13.0,168.0,0.0,152.0,4.0,11.0,438.0,747.0,0.0,822.0,0.0,153.0,19.0,49.0,54.0,446.0,19.0,0.0,0.0,0.0,766.0,57.0,286.0,31.0,0.0,54.0,33.0,0.0,0.0,0.0,104.0,120.0,0.0,1624.0,520.0,143.0,0.0,0.0,50.0,97.0,3421.0,329.0,24.0,0.0,0.0,0.0,1316.0,13.0,751.0,49.0,0.0,97.0,54.0,123.0,120.0,0.0,0.0,309.0,37.5502578146,2010-12-12,,2010-49,37.30525217253299,34.90438740116, +34,34,245.0,15.0,10.0,5.0,300.0,139.0,27.0,103.0,377.0,365.0,48.0,1201.0,0.0,9.0,58.0,0.0,68.0,20.0,182.0,75.0,0.0,85.0,136.0,157.0,88.0,521.0,31.0,2.0,0.0,39.0,15.0,155.0,974.0,107.0,0.0,32.0,42.0,47.0,249.0,134.0,10.0,168.0,178.0,750.0,0.0,287.0,7.0,60.0,4091.0,182.0,131.0,1555.0,172.0,71.0,46.0,0.0,123.0,3951.0,2602.0,161.0,10.0,0.0,3.0,78.0,14.0,270.0,2.0,128.0,528.0,0.0,29.0,190.0,0.0,221.0,49.0,0.0,0.0,0.0,5.0,20.0,302.0,105.0,271.0,25.0,0.0,0.0,27.0,113.0,0.0,222.0,0.0,301.0,0.0,45.0,0.0,20.0,40.0,5.0,0.0,1410.0,10.0,500.0,0.0,48.0,102.0,1736.0,3291.0,88.0,0.0,7.0,58.0,313.0,42.0,550.0,1.0,0.0,1933.0,57.0,0.0,4328.0,647.0,843.0,71.0,1239.0,842.0,0.0,279.0,0.0,0.0,27.0,1369.0,0.0,22.0,0.0,352.0,36.0,37.0,1411.0,0.0,600.0,0.0,82.0,74.0,31.0,1685.0,19.0,311.0,3552.0,0.0,334.0,6438.0,1305.0,404.0,582.0,602.0,9.0,12.0,0.0,289.0,24.0,12.0,0.0,9166.0,24.0,0.0,668.0,26.0,15.0,1627.0,123.0,332.0,564.0,10.0,141.0,0.0,0.0,0.0,44.0,280.0,564.0,108.0,4968.0,1562.0,72.0,160.0,32.0,13.0,0.0,0.0,50.0,3.0,46.0,131.0,322.0,41.0,0.0,0.0,60.0,132.0,114.0,0.0,890.0,30.0,92.0,0.0,0.0,0.0,246.0,277.0,0.0,64.0,63.0,58.0,70.0,51.0,7.0,1008.0,326.0,87.0,0.0,970.0,0.0,2.0,252.0,38.0,916.0,0.0,0.0,549.0,0.0,35.0,0.0,5.0,18.0,207.0,0.0,118.0,0.0,8.0,387.0,774.0,0.0,2438.0,0.0,124.0,30.0,31.0,33.0,404.0,21.0,0.0,0.0,0.0,742.0,58.0,283.0,14.0,0.0,78.0,35.0,0.0,0.0,0.0,94.0,606.0,0.0,1509.0,470.0,114.0,0.0,0.0,49.0,80.0,3197.0,367.0,40.0,1.0,0.0,0.0,1479.0,9.0,733.0,29.0,0.0,71.0,38.0,114.0,99.0,0.0,0.0,2133.0,35.5916217322,2010-12-19,,2010-50,35.89797796509948,39.92730524224, +35,35,230.0,14.0,6.0,8.0,268.0,106.0,7.0,79.0,269.0,239.0,47.0,988.0,0.0,14.0,76.0,0.0,60.0,7.0,145.0,69.0,0.0,55.0,98.0,137.0,51.0,408.0,11.0,4.0,0.0,18.0,19.0,117.0,857.0,244.0,0.0,26.0,35.0,31.0,183.0,64.0,16.0,128.0,149.0,524.0,0.0,201.0,14.0,64.0,2918.0,198.0,98.0,1015.0,84.0,60.0,26.0,3.0,85.0,3702.0,2238.0,167.0,6.0,0.0,2.0,57.0,10.0,169.0,0.0,102.0,337.0,0.0,17.0,122.0,0.0,188.0,31.0,0.0,0.0,0.0,4.0,23.0,248.0,79.0,273.0,24.0,0.0,0.0,37.0,99.0,0.0,174.0,1.0,268.0,0.0,47.0,0.0,18.0,30.0,7.0,0.0,1065.0,5.0,359.0,0.0,35.0,91.0,1457.0,3469.0,70.0,0.0,7.0,37.0,271.0,47.0,367.0,0.0,0.0,1311.0,38.0,0.0,3516.0,573.0,691.0,37.0,926.0,647.0,0.0,190.0,0.0,0.0,20.0,1011.0,0.0,26.0,0.0,315.0,34.0,38.0,893.0,0.0,372.0,0.0,78.0,50.0,19.0,1507.0,14.0,248.0,2729.0,0.0,339.0,5699.0,1230.0,340.0,543.0,520.0,6.0,12.0,0.0,233.0,15.0,14.0,0.0,8631.0,32.0,0.0,568.0,17.0,12.0,787.0,209.0,324.0,405.0,3.0,74.0,0.0,0.0,0.0,24.0,296.0,551.0,46.0,4322.0,1139.0,51.0,109.0,25.0,8.0,0.0,0.0,22.0,1.0,42.0,68.0,224.0,39.0,0.0,0.0,56.0,78.0,54.0,0.0,664.0,32.0,64.0,0.0,0.0,0.0,224.0,153.0,0.0,53.0,51.0,48.0,58.0,68.0,2.0,1028.0,209.0,58.0,0.0,855.0,0.0,5.0,312.0,39.0,742.0,0.0,2.0,448.0,0.0,21.0,0.0,7.0,9.0,135.0,0.0,93.0,0.0,11.0,238.0,527.0,0.0,587.0,0.0,106.0,31.0,28.0,36.0,279.0,30.0,0.0,0.0,0.0,551.0,35.0,219.0,27.0,0.0,39.0,27.0,0.0,0.0,0.0,75.0,244.0,0.0,1385.0,373.0,85.0,0.0,0.0,44.0,43.0,3629.0,316.0,18.0,1.0,0.0,0.0,1099.0,9.0,527.0,25.0,0.0,65.0,37.0,85.0,69.0,0.0,0.0,708.0,23.3828426054,2010-12-26,,2010-51,23.739968157460908,23.3828426054, +36,36,133.0,22.0,8.0,6.0,226.0,94.0,12.0,80.0,263.0,177.0,40.0,707.0,0.0,8.0,37.0,0.0,30.0,11.0,132.0,45.0,0.0,40.0,82.0,121.0,84.0,274.0,12.0,8.0,0.0,33.0,11.0,104.0,580.0,80.0,0.0,32.0,29.0,30.0,120.0,42.0,7.0,128.0,132.0,380.0,0.0,114.0,7.0,71.0,2401.0,160.0,83.0,555.0,94.0,55.0,11.0,0.0,66.0,3627.0,1832.0,111.0,13.0,0.0,3.0,50.0,11.0,163.0,0.0,65.0,226.0,0.0,18.0,92.0,0.0,94.0,33.0,1.0,0.0,0.0,6.0,18.0,233.0,82.0,258.0,12.0,0.0,0.0,24.0,80.0,0.0,166.0,0.0,173.0,0.0,44.0,0.0,27.0,30.0,5.0,0.0,835.0,7.0,346.0,0.0,24.0,77.0,1142.0,3756.0,49.0,0.0,4.0,32.0,223.0,32.0,325.0,0.0,0.0,1020.0,46.0,0.0,2692.0,479.0,477.0,46.0,897.0,431.0,0.0,189.0,0.0,0.0,16.0,791.0,0.0,4.0,0.0,207.0,33.0,30.0,765.0,0.0,295.0,0.0,66.0,61.0,20.0,1318.0,13.0,3287.0,2306.0,0.0,265.0,5542.0,938.0,283.0,432.0,502.0,9.0,13.0,0.0,216.0,13.0,12.0,0.0,7223.0,17.0,0.0,391.0,12.0,12.0,681.0,64.0,318.0,254.0,5.0,68.0,0.0,0.0,0.0,23.0,229.0,418.0,64.0,3865.0,1075.0,53.0,96.0,17.0,8.0,0.0,0.0,37.0,0.0,33.0,65.0,205.0,39.0,0.0,0.0,59.0,61.0,68.0,0.0,540.0,34.0,56.0,0.0,0.0,0.0,192.0,148.0,0.0,33.0,57.0,42.0,48.0,33.0,10.0,679.0,204.0,36.0,0.0,631.0,0.0,5.0,153.0,39.0,500.0,0.0,0.0,340.0,0.0,24.0,0.0,10.0,10.0,116.0,0.0,68.0,1.0,9.0,265.0,495.0,0.0,498.0,0.0,85.0,29.0,14.0,19.0,234.0,15.0,0.0,0.0,0.0,543.0,48.0,184.0,29.0,0.0,26.0,19.0,0.0,0.0,0.0,54.0,160.0,0.0,1215.0,268.0,71.0,0.0,0.0,34.0,47.0,2721.0,249.0,16.0,0.0,0.0,0.0,762.0,9.0,508.0,28.0,0.0,78.0,29.0,88.0,60.0,0.0,0.0,263.0,36.4087138188,2011-01-02,,2010-52,36.09322593976575,36.4087138188, +37,37,271.0,21.0,16.0,9.0,468.0,150.0,14.0,104.0,483.0,327.0,38.0,1332.0,0.0,6.0,76.0,0.0,79.0,15.0,211.0,62.66666666666667,0.0,109.0,173.0,181.0,132.0,675.0,22.0,4.0,1.0,45.0,21.0,179.0,1126.0,147.0,0.0,109.0,146.0,61.0,232.0,185.0,10.0,214.0,188.0,832.0,0.0,194.0,10.0,96.0,4417.0,197.0,124.0,881.0,109.0,74.0,26.0,4.0,130.0,5301.0,2991.0,201.0,15.0,0.0,3.0,105.0,13.0,304.0,1.0,95.0,566.0,0.0,261.0,169.0,0.0,239.0,67.0,0.0,0.0,0.0,7.0,29.0,395.0,141.0,438.0,30.0,0.0,0.0,34.0,140.0,0.0,228.0,2.0,341.0,0.0,54.0,3.0,32.0,36.0,3.0,0.0,1534.0,14.0,565.0,0.0,40.0,139.0,1787.0,10479.0,122.0,0.0,9.0,60.0,467.0,65.0,598.0,0.0,0.0,1762.0,97.0,0.0,4874.0,897.0,1076.0,208.0,1704.0,872.0,0.0,344.0,0.0,0.0,43.0,1594.0,0.0,26.0,0.0,462.0,50.0,49.0,1572.0,0.0,670.0,0.0,115.0,50.0,23.0,2036.0,44.0,410.0,3791.0,0.0,429.0,11938.0,1497.0,523.0,753.0,981.0,6.0,14.0,0.0,319.0,36.0,25.0,0.0,14002.0,42.0,0.0,786.0,27.0,17.0,12494.0,128.0,424.0,547.0,9.0,129.0,0.0,0.0,0.0,58.0,442.0,744.0,129.0,5809.0,2057.0,103.0,162.0,30.0,23.0,0.0,0.0,45.0,1.0,52.0,143.0,432.0,79.0,0.0,0.0,69.0,103.0,62.0,0.0,1021.0,51.0,83.0,0.0,0.0,0.0,326.0,304.0,0.0,57.0,60.0,86.0,94.0,59.0,6.0,949.0,315.0,91.0,0.0,823.0,0.0,4.0,429.0,48.0,1072.0,0.0,1.0,679.0,1.0,39.0,0.0,8.0,25.0,241.0,0.0,132.0,5.0,7.0,1034.0,1029.0,0.0,1083.0,0.0,176.0,32.0,36.0,53.0,437.0,27.0,0.0,0.0,0.0,926.0,83.0,358.0,36.0,0.0,47.0,24.0,0.0,0.0,0.0,92.0,565.0,0.0,2053.0,606.0,127.0,0.0,0.0,68.0,90.0,3723.0,492.0,21.0,0.0,0.0,0.0,1462.0,17.0,844.0,31.0,0.0,82.0,36.0,121.0,117.0,0.0,0.0,382.0,87.30045610030001,2011-01-09,,2011-1,86.99346356788871,71.31228810282, +38,38,282.0,25.0,12.0,7.0,459.0,144.0,18.0,95.0,493.0,332.0,67.0,1428.0,0.0,7.0,45.0,0.0,112.0,11.0,306.0,80.33333333333334,0.0,83.0,169.0,267.0,149.0,672.0,45.0,3.0,0.0,45.0,18.0,148.0,1135.0,118.0,0.0,112.0,112.0,82.0,302.0,203.0,11.0,276.0,238.0,785.0,0.0,193.0,11.0,88.0,5320.0,208.0,167.0,1058.0,111.0,108.0,34.0,0.0,158.0,4294.0,2987.0,222.0,14.0,0.0,7.0,119.0,9.0,380.0,0.0,94.0,656.0,0.0,183.0,247.0,0.0,350.0,109.0,0.0,0.0,0.0,7.0,53.0,432.0,163.0,480.0,26.0,0.0,0.0,58.0,124.0,0.0,418.0,0.0,383.0,0.0,63.0,0.0,31.0,42.0,3.0,0.0,1697.0,12.0,688.0,0.0,32.0,137.0,1890.0,9860.0,119.0,0.0,14.0,79.0,506.0,65.0,747.0,0.0,0.0,2504.0,102.0,1.0,5986.0,846.0,1191.0,207.0,1889.0,1194.0,0.0,351.0,0.0,0.0,30.0,1689.0,0.0,24.0,0.0,538.0,47.0,56.0,1687.0,0.0,805.0,0.0,103.0,53.0,26.0,1819.0,33.0,422.0,4467.0,0.0,468.0,11216.0,1474.0,682.0,789.0,812.0,8.0,13.0,0.0,351.0,22.0,32.0,0.0,12926.0,38.0,0.0,866.0,32.0,14.0,9616.0,178.0,421.0,536.0,6.0,167.0,0.0,0.0,0.0,59.0,368.0,655.0,117.0,5524.0,2224.0,134.0,178.0,39.0,7.0,0.0,0.0,38.0,1.0,57.0,166.0,502.0,68.0,0.0,0.0,74.0,93.0,82.0,0.0,975.0,76.0,88.0,0.0,0.0,0.0,325.0,563.0,0.0,82.0,84.0,4498.0,95.0,48.0,6.0,1100.0,301.0,132.0,0.0,792.0,0.0,2.0,366.0,75.0,1023.0,0.0,0.0,722.0,1.0,40.0,0.0,20.0,28.0,291.0,0.0,134.0,1.0,7.0,1000.0,1074.0,0.0,1293.0,0.0,224.0,27.0,36.0,45.0,478.0,22.0,0.0,0.0,0.0,900.0,91.0,395.0,23.0,0.0,42.0,31.0,0.0,0.0,0.0,82.0,412.0,0.0,1772.0,695.0,141.0,0.0,0.0,65.0,75.0,3501.0,514.0,24.0,0.0,0.0,0.0,1503.0,12.0,908.0,52.0,0.0,98.0,53.0,158.0,182.0,0.0,0.0,396.0,74.4122807823,2011-01-16,,2011-2,74.2936138949517,70.01472227805999, +39,39,326.0,13.0,9.0,10.0,538.0,122.0,19.0,134.0,544.0,346.0,71.0,1538.0,0.0,17.0,86.0,0.0,100.0,15.0,349.0,98.0,0.0,134.0,166.0,226.0,145.0,842.0,53.0,4.0,2.0,39.0,18.0,208.0,1286.0,164.0,0.0,60.0,113.0,93.0,240.0,155.0,17.0,323.0,239.0,695.0,0.0,165.0,18.0,77.0,5830.0,186.0,141.0,963.0,97.0,103.0,43.0,2.0,133.0,4092.0,3061.0,205.0,10.0,0.0,10.0,132.0,14.0,364.0,0.0,99.0,726.0,0.0,111.0,179.0,0.0,319.0,98.0,2.0,0.0,0.0,9.0,45.0,473.0,143.0,490.0,45.0,0.0,0.0,42.0,126.0,0.0,330.0,1.0,394.0,0.0,52.0,0.0,39.0,48.0,10.0,0.0,1981.0,13.0,646.0,0.0,47.0,148.0,1873.0,7945.0,75.0,0.0,9.0,59.0,403.0,79.0,649.0,0.0,0.0,2710.0,94.0,0.0,5386.0,835.0,1002.0,205.0,1714.0,1226.0,0.0,426.0,0.0,0.0,32.0,1925.0,0.0,22.0,0.0,593.0,55.0,74.0,1653.0,0.0,756.0,0.0,140.0,89.0,28.0,1806.0,26.0,423.0,4688.0,0.0,561.0,9687.0,1496.0,609.0,1502.0,720.0,16.0,16.0,0.0,356.0,27.0,19.0,0.0,11979.0,32.0,0.0,1002.0,31.0,7.0,6829.0,274.0,426.0,567.0,12.0,187.0,0.0,0.0,0.0,66.0,312.0,600.0,134.0,3983.0,2253.0,69.0,186.0,49.0,22.0,0.0,0.0,34.0,1.0,38.0,208.0,567.0,76.0,0.0,0.0,99.0,128.0,73.0,0.0,1082.0,67.0,95.0,0.0,0.0,0.0,391.0,413.0,0.0,68.0,87.0,220.0,112.0,59.0,4.0,1295.0,374.0,113.0,0.0,701.0,1.0,3.0,367.0,59.0,1182.0,0.0,3.0,684.0,0.0,37.0,0.0,17.0,15.0,314.0,0.0,171.0,2.0,8.0,680.0,1109.0,0.0,1103.0,0.0,210.0,23.0,32.0,61.0,511.0,29.0,0.0,0.0,0.0,1035.0,127.0,354.0,27.0,0.0,58.0,51.0,0.0,0.0,0.0,113.0,299.0,0.0,1525.0,621.0,159.0,0.0,0.0,97.0,135.0,3988.0,522.0,36.0,1.0,0.0,0.0,1488.0,14.0,1112.0,55.0,0.0,92.0,47.0,171.0,139.0,0.0,0.0,310.0,105.90053889709999,2011-01-23,,2011-3,106.18631231368848,88.90767714693999, +40,40,327.0,11.0,11.0,14.0,476.0,173.0,17.0,149.0,586.0,325.0,74.0,1488.0,0.0,11.0,81.0,0.0,65.0,11.0,203.0,80.0,0.0,93.0,134.0,661.0,132.0,723.0,20.0,9.0,0.0,36.0,16.0,153.0,954.0,139.0,0.0,68.0,98.0,48.0,235.0,183.0,13.0,284.0,220.0,665.0,0.0,145.0,19.0,74.0,5087.0,199.0,88.0,829.0,106.0,75.0,31.0,0.0,141.0,3023.0,3031.0,199.0,13.0,0.0,7.0,126.0,17.0,306.0,1.0,93.0,576.0,0.0,57.0,154.0,0.0,275.0,75.0,1.0,0.0,0.0,6.0,29.0,510.0,169.0,422.0,38.0,0.0,0.0,52.0,116.0,0.0,268.0,2.0,348.0,0.0,60.0,1.0,30.0,54.0,9.0,0.0,1568.0,9.0,580.0,0.0,39.0,149.0,1846.0,5815.0,95.0,0.0,10.0,88.0,470.0,62.0,653.0,0.0,0.0,2633.0,85.0,0.0,4791.0,653.0,912.0,122.0,1702.0,1053.0,0.0,321.0,0.0,0.0,42.0,1869.0,0.0,27.0,0.0,482.0,40.0,65.0,1496.0,0.0,710.0,0.0,118.0,59.0,24.0,1896.0,22.0,414.0,4552.0,0.0,523.0,8011.0,1684.0,521.0,948.0,871.0,7.0,27.0,0.0,287.0,13.0,23.0,0.0,9778.0,33.0,0.0,1119.0,37.0,18.0,3464.0,123.0,378.0,462.0,9.0,125.0,0.0,0.0,0.0,68.0,303.0,550.0,155.0,2971.0,1967.0,92.0,158.0,49.0,3.0,0.0,0.0,42.0,1.0,66.0,183.0,390.0,55.0,0.0,0.0,77.0,123.0,81.0,0.0,1052.0,57.0,104.0,0.0,0.0,0.0,320.0,357.0,0.0,81.0,67.0,159.0,90.0,58.0,7.0,1246.0,310.0,109.0,0.0,623.0,1.0,4.0,297.0,41.0,1223.0,0.0,1.0,711.0,0.0,37.0,0.0,15.0,24.0,355.0,0.0,143.0,1.0,8.0,530.0,985.0,0.0,1120.0,0.0,168.0,25.0,18.0,88.0,385.0,23.0,0.0,0.0,0.0,785.0,96.0,296.0,25.0,0.0,45.0,28.0,0.0,0.0,0.0,113.0,231.0,0.0,1567.0,653.0,126.0,0.0,0.0,77.0,102.0,4316.0,403.0,17.0,0.0,0.0,0.0,1345.0,16.0,992.0,66.0,0.0,92.0,41.0,111.0,138.0,0.0,0.0,382.0,89.18734588950001,2011-01-30,,2011-4,89.41360904585025,72.58210971942002, +41,41,325.0,23.0,11.0,7.0,417.0,142.0,13.0,136.0,472.0,283.0,70.0,1270.0,0.0,9.0,50.0,0.0,71.0,13.0,208.0,75.0,0.0,91.0,150.0,211.0,112.0,540.0,14.0,4.0,0.0,47.0,17.0,126.0,893.0,132.0,0.0,57.0,90.0,35.0,300.0,178.0,24.0,209.0,216.0,556.0,0.0,146.0,16.0,77.0,5054.0,202.0,91.0,751.0,90.0,77.0,42.0,0.0,125.0,3048.0,3167.0,197.0,14.0,0.0,5.0,86.0,13.0,301.0,0.0,98.0,465.0,0.0,80.0,175.0,0.0,283.0,35.0,0.0,0.0,0.0,8.0,27.0,509.0,176.0,294.0,31.0,0.0,0.0,45.0,123.0,0.0,298.0,0.0,379.0,0.0,40.0,0.0,29.0,60.0,5.0,0.0,1504.0,9.0,580.0,0.0,48.0,126.0,1761.0,5459.0,71.0,0.0,9.0,80.0,417.0,69.0,581.0,0.0,0.0,2230.0,72.0,0.0,4209.0,718.0,825.0,85.0,1568.0,998.0,0.0,326.0,0.0,0.0,29.0,1637.0,0.0,19.0,0.0,515.0,37.0,66.0,1497.0,0.0,742.0,0.0,88.0,62.0,51.0,1933.0,27.0,430.0,4655.0,0.0,475.0,7921.0,1733.0,548.0,660.0,825.0,12.0,25.0,0.0,363.0,25.0,18.0,0.0,8952.0,31.0,0.0,1034.0,33.0,9.0,3422.0,128.0,391.0,409.0,7.0,148.0,0.0,0.0,0.0,58.0,314.0,547.0,126.0,3046.0,1791.0,91.0,129.0,38.0,19.0,0.0,0.0,54.0,0.0,78.0,159.0,427.0,52.0,0.0,0.0,80.0,218.0,69.0,0.0,1065.0,66.0,75.0,0.0,0.0,0.0,304.0,336.0,0.0,68.0,81.0,192.0,75.0,59.0,1.0,1084.0,320.0,66.0,0.0,682.0,0.0,4.0,281.0,40.0,1250.0,0.0,2.0,673.0,0.0,32.0,0.0,12.0,23.0,288.0,0.0,181.0,16.0,13.0,438.0,953.0,0.0,1134.0,0.0,150.0,28.0,34.0,41.0,481.0,23.0,0.0,0.0,0.0,723.0,100.0,258.0,33.0,0.0,36.0,34.0,0.0,0.0,0.0,110.0,303.0,0.0,1619.0,718.0,139.0,0.0,0.0,64.0,84.0,4354.0,456.0,34.0,0.0,0.0,0.0,1566.0,19.0,878.0,53.0,0.0,100.0,37.0,120.0,107.0,0.0,0.0,573.0,96.1447665485,2011-02-06,,2011-5,95.37510022493336,70.53117598196, +42,42,351.0,15.0,14.0,3.0,378.0,112.0,17.0,123.0,529.0,410.0,59.0,1350.0,0.0,16.0,46.0,0.0,66.0,19.0,213.0,48.0,0.0,92.0,141.0,167.0,85.0,436.0,25.0,8.0,0.0,26.0,6.0,134.0,733.0,73.0,0.0,90.0,74.0,34.0,263.0,170.0,19.0,160.0,243.0,573.0,0.0,136.0,27.0,56.0,5050.0,163.0,124.0,815.0,117.0,68.0,24.0,1.0,116.0,2566.0,2907.0,155.0,18.0,0.0,9.0,86.0,17.0,355.0,0.0,81.0,459.0,0.0,32.0,206.0,0.0,329.0,42.0,1.0,0.0,0.0,4.0,26.0,389.0,150.0,338.0,26.0,0.0,0.0,10.0,116.0,0.0,257.0,0.0,275.0,0.0,34.0,1.0,38.0,48.0,5.0,0.0,1344.0,9.0,533.0,0.0,36.0,114.0,1751.0,4447.0,63.0,0.0,8.0,74.0,361.0,55.0,536.0,0.0,0.0,2640.0,57.0,0.0,4184.0,631.0,813.0,89.0,1562.0,898.0,0.0,341.0,0.0,0.0,15.0,1748.0,0.0,22.0,0.0,539.0,42.0,53.0,1546.0,0.0,798.0,0.0,76.0,38.0,29.0,1952.0,16.0,420.0,5286.0,0.0,448.0,7189.0,1365.0,460.0,740.0,668.0,12.0,14.0,0.0,325.0,28.0,29.0,0.0,8580.0,38.0,0.0,1104.0,35.0,14.0,2375.0,122.0,400.0,429.0,15.0,158.0,0.0,0.0,0.0,75.0,274.0,541.0,109.0,3071.0,1651.0,119.0,146.0,30.0,9.0,0.0,0.0,20.0,0.0,61.0,141.0,379.0,37.0,0.0,0.0,103.0,1329.0,154.0,0.0,939.0,65.0,71.0,0.0,0.0,0.0,278.0,255.0,0.0,60.0,60.0,146.0,62.0,40.0,6.0,1040.0,323.0,80.0,0.0,562.0,0.0,5.0,212.0,31.0,1282.0,0.0,0.0,653.0,0.0,29.0,0.0,8.0,8.0,271.0,0.0,175.0,78.0,11.0,520.0,984.0,0.0,1271.0,0.0,134.0,18.0,29.0,42.0,463.0,24.0,0.0,0.0,0.0,696.0,81.0,319.0,27.0,0.0,58.0,26.0,0.0,0.0,0.0,124.0,153.0,0.0,1529.0,712.0,132.0,0.0,0.0,44.0,88.0,4241.0,477.0,25.0,1.0,0.0,0.0,1553.0,3.0,971.0,37.0,0.0,106.0,40.0,126.0,132.0,0.0,0.0,432.0,70.8593223749,2011-02-13,,2011-6,71.15352846114979,68.18890711892, +43,43,373.0,12.0,15.0,8.0,358.0,168.0,17.0,141.0,517.0,332.0,64.0,1549.0,0.0,16.0,51.0,0.0,57.0,14.0,220.0,64.0,0.0,114.0,148.0,166.0,65.0,386.0,44.0,3.0,0.0,36.0,13.0,142.0,708.0,69.0,0.0,55.0,60.0,29.0,261.0,186.0,9.0,168.0,287.0,824.0,0.0,142.0,8.0,63.0,4982.0,166.0,146.0,710.0,132.0,57.0,12.0,1.0,111.0,2527.0,3030.0,174.0,13.0,0.0,5.0,94.0,20.0,375.0,1.0,65.0,388.0,0.0,23.0,199.0,0.0,350.0,52.0,2.0,0.0,0.0,6.0,21.0,681.0,150.0,374.0,15.0,0.0,0.0,30.0,114.0,0.0,310.0,2.0,251.0,0.0,55.0,0.0,31.0,73.0,5.0,0.0,1462.0,7.0,470.0,0.0,61.0,145.0,1754.0,3455.0,76.0,0.0,4.0,109.0,396.0,74.0,521.0,0.0,0.0,2585.0,82.0,0.0,4203.0,574.0,801.0,80.0,1498.0,1026.0,0.0,375.0,0.0,0.0,20.0,1618.0,0.0,23.0,0.0,478.0,55.0,62.0,1469.0,0.0,894.0,0.0,70.0,47.0,29.0,2009.0,28.0,450.0,5026.0,0.0,424.0,5971.0,1344.0,441.0,715.0,753.0,8.0,9.0,0.0,355.0,25.0,20.0,0.0,7462.0,50.0,0.0,996.0,32.0,14.0,1785.0,159.0,402.0,797.0,6.0,193.0,0.0,0.0,0.0,50.0,217.0,503.0,85.0,2787.0,1792.0,85.0,156.0,42.0,8.0,0.0,0.0,41.0,1.0,52.0,171.0,436.0,39.0,0.0,0.0,73.0,830.0,271.0,0.0,926.0,52.0,87.0,0.0,0.0,0.0,363.0,338.0,0.0,81.0,77.0,137.0,79.0,42.0,3.0,834.0,307.0,90.0,0.0,441.0,0.0,6.0,178.0,35.0,1169.0,0.0,4.0,688.0,0.0,38.0,0.0,13.0,16.0,312.0,0.0,262.0,110.0,11.0,420.0,993.0,0.0,1208.0,0.0,152.0,27.0,23.0,36.0,469.0,43.0,0.0,0.0,0.0,688.0,71.0,291.0,21.0,0.0,52.0,31.0,0.0,0.0,0.0,108.0,190.0,0.0,1631.0,699.0,137.0,1.0,0.0,72.0,89.0,3923.0,472.0,22.0,1.0,0.0,0.0,1512.0,13.0,906.0,53.0,0.0,118.0,45.0,139.0,107.0,0.0,0.0,5345.0,66.9458939852,2011-02-20,,2011-7,66.73874726974879,62.18505259262, +44,44,329.0,9.0,15.0,10.0,324.0,142.0,20.0,136.0,438.0,327.0,52.0,1276.0,0.0,8.0,34.0,0.0,43.0,14.0,197.0,61.0,0.0,125.0,145.0,128.0,75.0,384.0,8.0,6.0,0.0,36.0,17.0,132.0,729.0,66.0,0.0,37.0,46.0,28.0,217.0,139.0,18.0,177.0,244.0,569.0,0.0,129.0,14.0,74.0,4310.0,236.0,163.0,798.0,94.0,45.0,20.0,1.0,94.0,2317.0,2927.0,176.0,15.0,0.0,3.0,114.0,11.0,330.0,0.0,67.0,375.0,0.0,45.0,119.0,0.0,311.0,40.0,0.0,0.0,0.0,8.0,42.0,469.0,142.0,418.0,38.0,0.0,0.0,21.0,98.0,0.0,264.0,1.0,291.0,0.0,40.0,0.0,26.0,70.0,6.0,0.0,1364.0,7.0,435.0,0.0,33.0,91.0,1845.0,2878.0,51.0,0.0,15.0,90.0,363.0,49.0,550.0,1.0,0.0,2167.0,79.0,0.0,3553.0,541.0,743.0,61.0,1434.0,7493.0,0.0,340.0,0.0,0.0,14.0,1510.0,0.0,20.0,0.0,472.0,45.0,62.0,1414.0,0.0,831.0,0.0,75.0,78.0,18.0,2069.0,22.0,414.0,5008.0,0.0,436.0,5220.0,1542.0,388.0,670.0,720.0,8.0,17.0,0.0,316.0,24.0,27.0,0.0,6773.0,56.0,0.0,920.0,24.0,16.0,1283.0,118.0,383.0,536.0,10.0,127.0,0.0,0.0,0.0,52.0,190.0,506.0,123.0,3024.0,1710.0,89.0,184.0,38.0,17.0,0.0,0.0,48.0,2.0,60.0,111.0,371.0,37.0,0.0,0.0,74.0,200.0,144.0,0.0,898.0,96.0,105.0,0.0,0.0,0.0,304.0,265.0,0.0,69.0,114.0,120.0,61.0,31.0,4.0,865.0,320.0,66.0,0.0,351.0,0.0,1.0,174.0,39.0,1068.0,0.0,2.0,678.0,0.0,36.0,1.0,20.0,15.0,304.0,0.0,188.0,103.0,18.0,390.0,876.0,0.0,1102.0,0.0,147.0,35.0,30.0,27.0,453.0,19.0,0.0,0.0,0.0,686.0,80.0,309.0,27.0,0.0,28.0,32.0,0.0,0.0,0.0,99.0,152.0,0.0,1354.0,633.0,121.0,0.0,0.0,65.0,90.0,4046.0,519.0,33.0,0.0,0.0,0.0,1335.0,13.0,1016.0,41.0,0.0,134.0,35.0,105.0,101.0,0.0,0.0,1945.0,49.8718206714,2011-02-27,,2011-8,49.71574171123973,49.8718206714, +45,45,299.0,32.0,9.0,6.0,286.0,131.0,17.0,119.0,476.0,320.0,66.0,1277.0,0.0,11.0,44.0,0.0,55.0,22.0,228.0,68.0,0.0,74.0,114.0,162.0,69.0,378.0,30.0,4.0,2.0,32.0,41.0,132.0,671.0,61.0,0.0,28.0,53.0,42.0,294.0,164.0,13.0,175.0,217.0,588.0,0.0,115.0,17.0,60.0,4101.0,211.0,167.0,917.0,113.0,59.0,36.0,1.0,113.0,2255.0,2668.0,185.0,5.0,0.0,2.0,137.0,11.0,313.0,0.0,83.0,357.0,0.0,25.0,164.0,0.0,317.0,41.0,0.0,0.0,0.0,11.0,35.0,375.0,169.0,409.0,24.0,0.0,0.0,40.0,155.0,0.0,271.0,2.0,300.0,0.0,53.0,0.0,34.0,47.0,5.0,0.0,1422.0,8.0,531.0,0.0,66.0,95.0,1827.0,2703.0,54.0,0.0,4.0,76.0,386.0,47.0,527.0,0.0,0.0,2279.0,64.0,0.0,3268.0,576.0,820.0,63.0,1360.0,2005.0,0.0,319.0,0.0,0.0,17.0,1398.0,0.0,11.0,0.0,468.0,48.0,62.0,1424.0,0.0,763.0,0.0,84.0,59.0,36.0,2088.0,20.0,404.0,4454.0,0.0,363.0,4716.0,1459.0,418.0,692.0,626.0,5.0,21.0,0.0,431.0,10.0,33.0,0.0,6789.0,44.0,0.0,959.0,37.0,9.0,1019.0,130.0,390.0,703.0,9.0,116.0,0.0,0.0,0.0,47.0,219.0,441.0,110.0,3431.0,1752.0,93.0,215.0,25.0,11.0,0.0,0.0,32.0,0.0,46.0,126.0,363.0,45.0,0.0,0.0,68.0,227.0,105.0,0.0,936.0,50.0,95.0,0.0,0.0,0.0,290.0,242.0,0.0,79.0,64.0,926.0,65.0,46.0,5.0,883.0,288.0,82.0,0.0,391.0,0.0,2.0,211.0,20.0,1013.0,0.0,1.0,703.0,0.0,38.0,0.0,17.0,7.0,236.0,0.0,230.0,85.0,18.0,380.0,920.0,0.0,1098.0,0.0,116.0,18.0,24.0,36.0,424.0,13.0,0.0,0.0,0.0,693.0,82.0,321.0,28.0,0.0,31.0,24.0,0.0,0.0,0.0,122.0,114.0,0.0,1443.0,574.0,113.0,0.0,0.0,80.0,78.0,3873.0,454.0,21.0,1.0,0.0,0.0,1156.0,8.0,895.0,53.0,0.0,118.0,49.0,114.0,117.0,0.0,0.0,589.0,49.0604056244,2011-03-06,,2011-9,49.90853673852577,54.293063665380004, +46,46,271.0,18.0,14.0,6.0,322.0,117.0,17.0,89.0,440.0,257.0,67.0,1101.0,0.0,10.0,37.0,0.0,50.0,11.0,181.0,65.0,0.0,80.0,121.0,165.0,74.0,375.0,18.0,3.0,0.0,28.0,15.0,114.0,686.0,60.0,0.0,40.0,51.0,39.0,218.0,189.0,15.0,166.0,250.0,654.0,0.0,126.0,41.0,62.0,4047.0,241.0,110.0,751.0,82.0,43.0,25.0,3.0,103.0,2270.0,2774.0,156.0,14.0,0.0,5.0,89.0,21.0,299.0,1.0,91.0,313.0,0.0,20.0,121.0,0.0,302.0,49.0,0.0,0.0,0.0,8.0,31.0,338.0,129.0,396.0,50.0,0.0,0.0,35.0,123.0,0.0,239.0,0.0,319.0,0.0,56.0,1.0,39.0,95.0,10.0,0.0,1282.0,10.0,412.0,0.0,55.0,84.0,1821.0,2346.0,40.0,0.0,4.0,74.0,323.0,49.0,523.0,0.0,0.0,2049.0,63.0,0.0,3431.0,590.0,696.0,64.0,1283.0,1144.0,0.0,291.0,0.0,0.0,15.0,1372.0,0.0,16.0,0.0,474.0,30.0,69.0,1347.0,0.0,605.0,0.0,93.0,54.0,31.0,2086.0,16.0,427.0,4089.0,0.0,405.0,5280.0,1529.0,521.0,647.0,665.0,8.0,20.0,0.0,402.0,26.0,23.0,0.0,6585.0,30.0,0.0,1025.0,62.0,13.0,837.0,109.0,383.0,591.0,11.0,119.0,0.0,0.0,0.0,79.0,242.0,558.0,117.0,2562.0,1669.0,101.0,148.0,38.0,5.0,0.0,0.0,27.0,0.0,47.0,122.0,353.0,28.0,0.0,0.0,82.0,134.0,84.0,0.0,917.0,44.0,97.0,0.0,0.0,0.0,292.0,276.0,0.0,49.0,75.0,240.0,55.0,51.0,2.0,814.0,274.0,84.0,0.0,330.0,0.0,6.0,276.0,32.0,997.0,0.0,0.0,585.0,0.0,42.0,0.0,9.0,13.0,251.0,0.0,124.0,118.0,15.0,409.0,912.0,0.0,1086.0,0.0,137.0,22.0,26.0,27.0,415.0,24.0,0.0,0.0,0.0,644.0,76.0,231.0,30.0,0.0,47.0,23.0,0.0,0.0,0.0,104.0,121.0,0.0,1491.0,600.0,145.0,0.0,0.0,52.0,54.0,3794.0,466.0,35.0,0.0,0.0,0.0,1216.0,11.0,921.0,52.0,0.0,114.0,40.0,124.0,118.0,0.0,0.0,388.0,26.2982573021,2011-03-13,,2011-10,25.449239897016447,30.3078782038, +47,47,328.0,11.0,13.0,6.0,406.0,140.0,10.0,132.0,560.0,315.0,66.0,1309.0,0.0,9.0,42.0,0.0,57.0,16.0,202.0,83.0,0.0,96.0,132.0,148.0,77.0,499.0,14.0,6.0,0.0,42.0,9.0,152.0,823.0,95.0,0.0,48.0,59.0,35.0,212.0,177.0,7.0,166.0,224.0,605.0,0.0,134.0,19.0,64.0,4452.0,149.0,148.0,858.0,123.0,45.0,30.0,3.0,98.0,2167.0,2792.0,150.0,14.0,0.0,4.0,101.0,11.0,350.0,1.0,82.0,414.0,0.0,13.0,194.0,0.0,320.0,45.0,0.0,1.0,0.0,3.0,33.0,324.0,180.0,445.0,37.0,0.0,0.0,40.0,116.0,0.0,281.0,1.0,283.0,0.0,45.0,0.0,18.0,39.0,4.0,0.0,1576.0,11.0,389.0,0.0,64.0,92.0,1867.0,2288.0,52.0,0.0,11.0,75.0,304.0,55.0,572.0,0.0,0.0,2383.0,84.0,0.0,3892.0,633.0,684.0,68.0,1439.0,1088.0,0.0,334.0,0.0,0.0,14.0,1645.0,0.0,19.0,0.0,566.0,33.0,40.0,1513.0,0.0,661.0,0.0,101.0,64.0,21.0,2146.0,30.0,469.0,4947.0,0.0,417.0,5148.0,1266.0,421.0,732.0,585.0,20.0,23.0,0.0,364.0,19.0,22.0,0.0,6838.0,41.0,0.0,987.0,31.0,15.0,813.0,118.0,435.0,677.0,15.0,139.0,0.0,0.0,0.0,46.0,203.0,527.0,127.0,2427.0,1911.0,114.0,166.0,19.0,13.0,0.0,0.0,29.0,0.0,47.0,159.0,438.0,34.0,0.0,0.0,96.0,120.0,75.0,0.0,946.0,30.0,94.0,0.0,0.0,0.0,243.0,321.0,0.0,73.0,85.0,111.0,63.0,64.0,2.0,889.0,278.0,82.0,0.0,301.0,0.0,1.0,198.0,31.0,1013.0,0.0,1.0,692.0,0.0,82.0,0.0,6.0,21.0,456.0,0.0,148.0,138.0,8.0,374.0,950.0,0.0,1159.0,0.0,125.0,21.0,27.0,29.0,482.0,17.0,0.0,0.0,0.0,789.0,110.0,254.0,38.0,0.0,43.0,26.0,0.0,0.0,0.0,107.0,117.0,0.0,1510.0,683.0,135.0,0.0,0.0,62.0,85.0,4138.0,521.0,22.0,1.0,0.0,0.0,1167.0,12.0,999.0,53.0,0.0,87.0,50.0,103.0,132.0,0.0,0.0,286.0,46.3463618106,2011-03-20,,2011-11,46.555170991141324,54.724251638599995, +48,48,324.0,25.0,11.0,9.0,295.0,160.0,22.0,112.0,467.0,317.0,66.0,1271.0,0.0,11.0,61.0,0.0,72.0,22.0,208.0,80.0,0.0,118.0,139.0,144.0,91.0,510.0,37.0,6.0,0.0,43.0,9.0,170.0,779.0,82.0,0.0,32.0,35.0,24.0,234.0,189.0,9.0,165.0,217.0,597.0,0.0,165.0,18.0,86.0,4228.0,202.0,131.0,777.0,116.0,53.0,22.0,1.0,121.0,2132.0,2567.0,201.0,11.0,0.0,6.0,94.0,8.0,273.0,0.0,78.0,437.0,0.0,16.0,163.0,0.0,311.0,41.0,0.0,0.0,0.0,9.0,38.0,310.0,119.0,480.0,48.0,0.0,0.0,37.0,120.0,0.0,270.0,0.0,278.0,0.0,57.0,0.0,42.0,56.0,7.0,0.0,1540.0,11.0,484.0,0.0,46.0,107.0,1752.0,1815.0,55.0,0.0,5.0,68.0,330.0,43.0,530.0,0.0,0.0,2279.0,101.0,0.0,3882.0,557.0,743.0,47.0,1254.0,900.0,0.0,331.0,0.0,0.0,15.0,1491.0,0.0,30.0,0.0,487.0,41.0,53.0,1331.0,0.0,644.0,0.0,98.0,56.0,25.0,2043.0,23.0,422.0,4559.0,0.0,402.0,4213.0,1234.0,373.0,716.0,565.0,18.0,16.0,0.0,281.0,19.0,22.0,0.0,6299.0,38.0,0.0,1002.0,44.0,11.0,719.0,147.0,354.0,4596.0,9.0,145.0,0.0,0.0,0.0,65.0,203.0,520.0,88.0,2012.0,1694.0,112.0,184.0,21.0,11.0,0.0,0.0,42.0,0.0,59.0,281.0,397.0,48.0,0.0,0.0,64.0,96.0,84.0,0.0,797.0,54.0,84.0,0.0,0.0,0.0,268.0,246.0,0.0,69.0,68.0,111.0,58.0,37.0,2.0,832.0,291.0,54.0,0.0,300.0,0.0,3.0,202.0,34.0,999.0,0.0,0.0,565.0,0.0,29.0,0.0,14.0,14.0,377.0,0.0,140.0,92.0,17.0,393.0,883.0,0.0,1082.0,0.0,158.0,23.0,29.0,32.0,404.0,27.0,0.0,0.0,0.0,628.0,70.0,284.0,27.0,0.0,34.0,19.0,0.0,0.0,0.0,96.0,107.0,0.0,1406.0,643.0,152.0,0.0,0.0,88.0,65.0,3363.0,551.0,31.0,0.0,0.0,0.0,1191.0,11.0,1083.0,46.0,0.0,86.0,47.0,109.0,118.0,0.0,0.0,242.0,27.4305777794,2011-03-27,,2011-12,27.024947970361666,30.917728763379998, +49,49,340.0,18.0,15.0,7.0,324.0,162.0,13.0,149.0,457.0,248.0,58.0,1252.0,0.0,16.0,44.0,0.0,87.0,19.0,194.0,74.0,0.0,113.0,141.0,170.0,82.0,532.0,22.0,9.0,0.0,58.0,18.0,135.0,762.0,69.0,0.0,26.0,40.0,38.0,266.0,254.0,16.0,146.0,242.0,626.0,0.0,134.0,10.0,79.0,4046.0,189.0,138.0,811.0,100.0,69.0,39.0,3.0,127.0,1744.0,2596.0,158.0,11.0,0.0,2.0,90.0,9.0,320.0,1.0,53.0,472.0,0.0,10.0,181.0,0.0,418.0,36.0,0.0,0.0,0.0,13.0,39.0,439.0,159.0,438.0,36.0,0.0,0.0,24.0,142.0,0.0,325.0,1.0,277.0,0.0,48.0,3.0,33.0,51.0,6.0,0.0,1513.0,7.0,390.0,0.0,61.0,110.0,1863.0,1643.0,43.0,0.0,7.0,67.0,363.0,66.0,492.0,0.0,0.0,2441.0,96.0,0.0,3353.0,545.0,975.0,55.0,1263.0,959.0,0.0,342.0,0.0,0.0,14.0,1683.0,0.0,25.0,0.0,496.0,29.0,72.0,1385.0,0.0,631.0,0.0,98.0,85.0,26.0,1839.0,20.0,431.0,4711.0,0.0,399.0,4254.0,1338.0,407.0,650.0,522.0,18.0,17.0,0.0,327.0,27.0,28.0,0.0,6244.0,35.0,0.0,1177.0,51.0,14.0,644.0,154.0,377.0,1156.0,7.0,182.0,0.0,0.0,0.0,74.0,198.0,483.0,145.0,1684.0,1820.0,124.0,147.0,25.0,29.0,0.0,0.0,48.0,4.0,46.0,294.0,350.0,30.0,0.0,0.0,97.0,130.0,92.0,0.0,922.0,43.0,139.0,0.0,0.0,0.0,271.0,251.0,0.0,71.0,86.0,99.0,78.0,48.0,2.0,961.0,301.0,61.0,0.0,263.0,1.0,6.0,278.0,30.0,1099.0,0.0,0.0,568.0,0.0,37.0,0.0,16.0,16.0,318.0,0.0,171.0,82.0,8.0,292.0,921.0,46.0,1022.0,0.0,170.0,16.0,26.0,30.0,452.0,33.0,0.0,0.0,0.0,727.0,67.0,308.0,37.0,0.0,45.0,27.0,0.0,0.0,0.0,95.0,99.0,0.0,1313.0,642.0,141.0,0.0,0.0,46.0,81.0,4149.0,470.0,28.0,0.0,0.0,0.0,1127.0,12.0,999.0,59.0,0.0,84.0,50.0,103.0,114.0,0.0,0.0,232.0,23.343413443699998,2011-04-03,,2011-13,24.539985256206464,23.86303976532, +50,50,305.0,26.0,12.0,5.0,359.0,154.0,7.0,124.0,493.0,305.0,68.0,1214.0,0.0,10.0,55.0,0.0,74.0,13.0,189.0,94.0,0.0,108.0,113.0,141.0,81.0,541.0,16.0,7.0,0.0,42.0,14.0,161.0,833.0,67.0,0.0,37.0,28.0,44.0,232.0,165.0,9.0,309.0,214.0,703.0,0.0,138.0,17.0,93.0,3961.0,163.0,146.0,803.0,84.0,49.0,26.0,0.0,129.0,1521.0,2720.0,157.0,6.0,0.0,6.0,85.0,8.0,321.0,0.0,92.0,386.0,0.0,9.0,141.0,0.0,317.0,46.0,0.0,0.0,0.0,9.0,33.0,484.0,148.0,531.0,19.0,0.0,0.0,32.0,128.0,0.0,236.0,0.0,344.0,0.0,42.0,0.0,33.0,32.0,9.0,0.0,1651.0,10.0,400.0,0.0,38.0,92.0,1821.0,1417.0,59.0,0.0,5.0,76.0,380.0,59.0,484.0,1.0,0.0,2320.0,70.0,0.0,3172.0,535.0,789.0,49.0,1226.0,918.0,0.0,292.0,0.0,0.0,13.0,1550.0,0.0,33.0,0.0,451.0,46.0,42.0,1232.0,0.0,587.0,0.0,93.0,100.0,8.0,1932.0,21.0,419.0,4356.0,0.0,440.0,3907.0,1159.0,314.0,536.0,524.0,4.0,13.0,0.0,312.0,17.0,12.0,0.0,5663.0,40.0,0.0,2388.0,51.0,11.0,615.0,119.0,340.0,581.0,20.0,139.0,0.0,0.0,0.0,59.0,170.0,497.0,138.0,1730.0,1715.0,115.0,166.0,21.0,12.0,0.0,0.0,35.0,0.0,42.0,146.0,336.0,42.0,0.0,0.0,74.0,120.0,59.0,0.0,913.0,34.0,123.0,0.0,0.0,0.0,295.0,231.0,0.0,110.0,100.0,110.0,72.0,42.0,1.0,895.0,300.0,66.0,0.0,232.0,0.0,0.0,260.0,26.0,989.0,0.0,0.0,496.0,0.0,18.0,0.0,6.0,13.0,273.0,0.0,154.0,84.0,10.0,279.0,805.0,39.0,1139.0,0.0,194.0,23.0,28.0,31.0,443.0,18.0,0.0,0.0,0.0,666.0,80.0,235.0,41.0,0.0,39.0,39.0,0.0,0.0,0.0,100.0,92.0,0.0,1181.0,613.0,134.0,0.0,0.0,109.0,62.0,3884.0,531.0,27.0,0.0,0.0,0.0,1070.0,24.0,1054.0,40.0,0.0,99.0,32.0,119.0,118.0,0.0,0.0,156.0,26.378496249899996,2011-04-10,,2011-14,26.639678819140236,28.08774922556, +51,51,311.0,10.0,8.0,10.0,303.0,132.0,13.0,117.0,419.0,307.0,50.0,1088.0,0.0,10.0,68.0,0.0,73.0,15.0,188.0,79.0,0.0,82.0,147.0,129.0,98.0,529.0,47.0,5.0,0.0,46.0,10.0,158.0,886.0,69.0,0.0,25.0,48.0,38.0,220.0,207.0,13.0,319.0,227.0,562.0,0.0,171.0,5.0,113.0,4146.0,195.0,147.0,736.0,104.0,73.0,29.0,0.0,105.0,1209.0,2749.0,131.0,15.0,0.0,4.0,80.0,13.0,247.0,1.0,37.0,401.0,0.0,22.0,186.0,0.0,283.0,50.0,0.0,0.0,0.0,13.0,34.0,359.0,135.0,529.0,32.0,0.0,0.0,40.0,132.0,0.0,328.0,0.0,326.0,0.0,42.0,0.0,18.0,34.0,4.0,0.0,1390.0,7.0,417.0,0.0,69.0,97.0,1725.0,1112.0,44.0,0.0,11.0,83.0,360.0,63.0,469.0,1.0,0.0,1949.0,62.0,0.0,3385.0,512.0,848.0,50.0,1115.0,906.0,0.0,291.0,0.0,0.0,21.0,1471.0,0.0,34.0,0.0,440.0,53.0,77.0,1217.0,0.0,542.0,0.0,96.0,74.0,35.0,1785.0,22.0,404.0,4373.0,0.0,479.0,3601.0,1354.0,325.0,570.0,577.0,34.0,28.0,0.0,292.0,15.0,22.0,0.0,5398.0,40.0,0.0,1945.0,47.0,9.0,481.0,153.0,426.0,474.0,8.0,112.0,0.0,0.0,0.0,53.0,182.0,523.0,148.0,1277.0,1611.0,99.0,157.0,23.0,12.0,0.0,0.0,39.0,0.0,44.0,104.0,322.0,49.0,0.0,0.0,59.0,118.0,61.0,0.0,817.0,39.0,67.0,0.0,0.0,0.0,262.0,239.0,0.0,101.0,92.0,74.0,97.0,49.0,0.0,909.0,321.0,51.0,0.0,204.0,0.0,5.0,254.0,44.0,1079.0,0.0,1.0,468.0,0.0,31.0,0.0,13.0,20.0,310.0,0.0,128.0,64.0,11.0,310.0,821.0,50.0,1084.0,29.0,206.0,27.0,24.0,39.0,415.0,17.0,0.0,0.0,0.0,614.0,82.0,238.0,32.0,0.0,25.0,24.0,0.0,0.0,0.0,110.0,80.0,0.0,1092.0,573.0,130.0,0.0,0.0,63.0,81.0,5188.0,535.0,19.0,1.0,0.0,0.0,1586.0,13.0,985.0,48.0,0.0,81.0,63.0,113.0,112.0,0.0,0.0,156.0,23.1638051646,2011-04-17,,2011-15,22.415991382745197,24.458459345260003, +52,52,233.0,19.0,14.0,7.0,304.0,128.0,13.0,129.0,276.0,211.0,66.0,1070.0,0.0,12.0,71.0,0.0,60.0,16.0,178.0,98.0,0.0,77.0,103.0,138.0,82.0,560.0,24.0,8.0,0.0,47.0,9.0,106.0,751.0,91.0,0.0,52.0,66.0,47.0,186.0,173.0,14.0,188.0,185.0,516.0,0.0,139.0,11.0,64.0,4300.0,219.0,134.0,750.0,64.0,46.0,32.0,11.0,99.0,2263.0,3316.0,179.0,17.0,139.0,5.0,90.0,18.0,400.0,0.0,56.0,398.0,0.0,18.0,177.0,0.0,270.0,45.0,0.0,0.0,0.0,10.0,35.0,383.0,132.0,540.0,48.0,0.0,0.0,34.0,111.0,0.0,206.0,0.0,284.0,0.0,52.0,2.0,123.0,58.0,5.0,0.0,1160.0,7.0,477.0,0.0,50.0,70.0,1672.0,2048.0,323.0,0.0,10.0,53.0,447.0,66.0,487.0,0.0,0.0,1715.0,67.0,0.0,2994.0,499.0,1009.0,66.0,1050.0,1134.0,0.0,212.0,0.0,0.0,11.0,1343.0,0.0,28.0,0.0,469.0,44.0,64.0,1135.0,0.0,574.0,0.0,91.0,105.0,35.0,1886.0,37.0,426.0,3924.0,0.0,360.0,3913.0,1557.0,255.0,433.0,530.0,11.0,24.0,0.0,357.0,35.0,27.0,0.0,5552.0,29.0,0.0,857.0,20.0,6.0,510.0,106.0,457.0,630.0,23.0,118.0,1.0,0.0,0.0,63.0,160.0,496.0,127.0,850.0,1520.0,81.0,150.0,32.0,19.0,0.0,0.0,35.0,242.0,63.0,108.0,413.0,47.0,0.0,21.0,77.0,112.0,93.0,0.0,857.0,56.0,79.0,0.0,0.0,1.0,256.0,292.0,1.0,96.0,110.0,80.0,51.0,62.0,2.0,1262.0,281.0,66.0,0.0,208.0,2.0,4.0,227.0,31.0,799.0,0.0,0.0,561.0,0.0,33.0,0.0,12.0,15.0,351.0,0.0,131.0,91.0,10.0,441.0,795.0,33.0,1034.0,17.0,146.0,28.0,28.0,20.0,411.0,43.0,0.0,0.0,0.0,660.0,98.0,312.0,75.0,0.0,41.0,17.0,0.0,0.0,0.0,137.0,65.0,0.0,1491.0,639.0,135.0,0.0,0.0,55.0,104.0,2016.0,517.0,11.0,105.0,0.0,0.0,1215.0,14.0,1114.0,41.0,0.0,81.0,55.0,103.0,117.0,0.0,0.0,102.0,19.9093220876,2011-10-23,,2011-42,19.43244559832965,19.909322087600003, +53,53,256.0,21.0,12.0,8.0,463.0,158.0,9.0,141.0,373.0,237.0,64.0,1198.0,0.0,12.0,54.0,0.0,58.0,7.0,206.0,86.0,0.0,83.0,109.0,169.0,81.0,479.0,27.0,4.0,1.0,39.0,9.0,122.0,849.0,152.0,0.0,37.0,61.0,60.0,206.0,164.0,16.0,192.0,235.0,521.0,0.0,177.0,15.0,71.0,4461.0,241.0,141.0,754.0,82.0,50.0,38.0,0.0,82.0,2724.0,3445.0,169.0,11.0,165.0,3.0,91.0,22.0,416.0,0.0,69.0,511.0,0.0,13.0,215.0,0.0,325.0,51.0,0.0,1.0,0.0,6.0,41.0,432.0,124.0,662.0,46.0,0.0,0.0,35.0,133.0,0.0,295.0,1.0,308.0,0.0,61.0,0.0,48.0,43.0,7.0,0.0,1450.0,9.0,489.0,0.0,51.0,99.0,1856.0,2356.0,665.0,0.0,4.0,63.0,322.0,71.0,600.0,1.0,0.0,1930.0,75.0,0.0,3483.0,628.0,963.0,93.0,1215.0,1295.0,0.0,255.0,0.0,0.0,15.0,1555.0,0.0,22.0,0.0,486.0,51.0,49.0,1230.0,0.0,606.0,0.0,100.0,82.0,37.0,2502.0,35.0,424.0,3963.0,0.0,464.0,4405.0,1424.0,257.0,483.0,526.0,6.0,16.0,0.0,342.0,33.0,20.0,0.0,7035.0,34.0,1.0,1152.0,34.0,20.0,645.0,123.0,527.0,573.0,13.0,116.0,0.0,0.0,0.0,65.0,190.0,511.0,152.0,1032.0,1757.0,102.0,131.0,19.0,17.0,0.0,0.0,41.0,269.0,42.0,144.0,395.0,56.0,0.0,18.0,79.0,100.0,58.0,2.0,975.0,48.0,99.0,0.0,0.0,1.0,248.0,265.0,0.0,121.0,116.0,106.0,62.0,71.0,0.0,1348.0,264.0,70.0,0.0,308.0,0.0,2.0,242.0,31.0,986.0,0.0,1.0,717.0,0.0,34.0,0.0,25.0,12.0,343.0,0.0,143.0,84.0,7.0,503.0,884.0,37.0,1106.0,14.0,170.0,36.0,34.0,31.0,502.0,15.0,0.0,1.0,0.0,856.0,105.0,324.0,26.0,0.0,35.0,22.0,0.0,0.0,2.0,111.0,82.0,0.0,1491.0,757.0,159.0,0.0,0.0,65.0,113.0,2730.0,581.0,29.0,104.0,0.0,0.0,1392.0,13.0,1219.0,37.0,0.0,132.0,40.0,131.0,130.0,0.0,0.0,119.0,20.9362301463,2011-10-30,,2011-43,21.239073459314113,33.2269156595, +54,54,303.0,14.0,14.0,8.0,427.0,136.0,13.0,148.0,351.0,214.0,59.0,1963.0,0.0,3.0,49.0,0.0,83.0,14.0,187.0,65.0,0.0,114.0,134.0,148.0,127.0,628.0,26.0,5.0,0.0,38.0,7.0,143.0,975.0,119.0,0.0,46.0,47.0,52.0,237.0,216.0,9.0,224.0,257.0,461.0,0.0,198.0,9.0,80.0,4725.0,181.0,167.0,957.0,76.0,65.0,30.0,5.0,103.0,2842.0,3848.0,218.0,6.0,185.0,3.0,116.0,18.0,360.0,0.0,62.0,498.0,0.0,10.0,198.0,0.0,327.0,58.0,1.0,0.0,1.0,8.0,40.0,424.0,169.0,781.0,32.0,0.0,0.0,20.0,146.0,0.0,270.0,0.0,320.0,0.0,52.0,0.0,29.0,63.0,8.0,0.0,1661.0,6.0,508.0,0.0,66.0,101.0,1970.0,2560.0,754.0,0.0,5.0,74.0,331.0,79.0,709.0,0.0,0.0,2349.0,87.0,0.0,3596.0,627.0,1325.0,74.0,1353.0,1188.0,0.0,260.0,0.0,0.0,22.0,1789.0,0.0,33.0,0.0,546.0,37.0,62.0,1289.0,0.0,734.0,0.0,119.0,102.0,45.0,2312.0,38.0,430.0,4208.0,0.0,482.0,4821.0,1211.0,271.0,610.0,543.0,8.0,32.0,0.0,368.0,33.0,17.0,0.0,7016.0,47.0,1.0,1300.0,30.0,17.0,689.0,130.0,557.0,526.0,13.0,134.0,0.0,0.0,0.0,95.0,203.0,470.0,186.0,1031.0,1964.0,122.0,196.0,26.0,7.0,0.0,0.0,40.0,662.0,54.0,153.0,458.0,43.0,0.0,27.0,69.0,101.0,77.0,0.0,1091.0,77.0,79.0,0.0,0.0,0.0,286.0,331.0,0.0,117.0,91.0,107.0,105.0,96.0,2.0,1305.0,330.0,89.0,0.0,327.0,0.0,1.0,372.0,43.0,1138.0,0.0,0.0,700.0,1.0,43.0,0.0,21.0,16.0,441.0,0.0,152.0,105.0,9.0,471.0,953.0,48.0,1187.0,20.0,161.0,45.0,28.0,49.0,502.0,20.0,0.0,0.0,0.0,953.0,117.0,314.0,13.0,1.0,21.0,26.0,0.0,0.0,1.0,129.0,66.0,0.0,1495.0,767.0,125.0,0.0,2.0,102.0,137.0,2983.0,599.0,31.0,140.0,0.0,0.0,2075.0,11.0,1331.0,57.0,0.0,120.0,41.0,127.0,123.0,0.0,0.0,163.0,25.4281926004,2011-11-06,,2011-44,24.46272472418208,51.32676302396001, +55,55,289.0,21.0,7.0,6.0,426.0,147.0,13.0,138.0,347.0,218.0,73.0,1335.0,0.0,6.0,65.0,0.0,78.0,5.0,203.0,80.0,0.0,109.0,145.0,164.0,120.0,645.0,24.0,3.0,0.0,35.0,31.0,148.0,833.0,70.0,0.0,25.0,49.0,54.0,205.0,197.0,15.0,237.0,208.0,501.0,0.0,204.0,15.0,87.0,4941.0,227.0,147.0,856.0,95.0,68.0,36.0,3.0,88.0,3008.0,3787.0,270.0,9.0,170.0,7.0,139.0,18.0,442.0,0.0,50.0,440.0,0.0,14.0,227.0,0.0,330.0,72.0,0.0,1.0,0.0,2.0,38.0,1327.0,184.0,670.0,37.0,0.0,0.0,31.0,171.0,0.0,350.0,2.0,401.0,1.0,67.0,1.0,33.0,43.0,4.0,1.0,1476.0,7.0,523.0,0.0,59.0,125.0,1977.0,2554.0,541.0,0.0,7.0,55.0,361.0,77.0,621.0,3.0,1.0,2295.0,71.0,1.0,3727.0,657.0,827.0,66.0,1385.0,1442.0,0.0,275.0,0.0,0.0,25.0,1715.0,0.0,27.0,0.0,485.0,34.0,79.0,1400.0,0.0,651.0,0.0,82.0,85.0,57.0,2380.0,25.0,410.0,4653.0,0.0,517.0,4475.0,1245.0,286.0,631.0,610.0,11.0,21.0,0.0,369.0,35.0,17.0,0.0,7208.0,41.0,1.0,1223.0,38.0,10.0,693.0,201.0,464.0,575.0,6.0,135.0,0.0,0.0,0.0,75.0,199.0,498.0,190.0,3460.0,1867.0,122.0,181.0,27.0,7.0,0.0,0.0,56.0,264.0,63.0,156.0,473.0,45.0,0.0,12.0,85.0,82.0,75.0,0.0,1065.0,64.0,69.0,0.0,0.0,0.0,313.0,357.0,1.0,122.0,79.0,111.0,94.0,71.0,3.0,1182.0,318.0,110.0,0.0,394.0,0.0,6.0,290.0,41.0,994.0,0.0,1.0,599.0,1.0,38.0,0.0,22.0,12.0,398.0,0.0,138.0,90.0,15.0,580.0,861.0,27.0,1116.0,14.0,155.0,34.0,27.0,54.0,488.0,30.0,0.0,0.0,0.0,822.0,83.0,286.0,20.0,0.0,32.0,17.0,0.0,0.0,0.0,127.0,76.0,0.0,1512.0,769.0,153.0,0.0,2.0,140.0,135.0,3173.0,616.0,31.0,123.0,0.0,0.0,1604.0,10.0,1145.0,32.0,0.0,99.0,52.0,145.0,147.0,0.0,0.0,144.0,30.6706959542,2011-11-13,,2011-45,31.11147166767052,28.723802792620003, +56,56,320.0,12.0,8.0,11.0,401.0,172.0,23.0,130.0,350.0,231.0,70.0,1217.0,0.0,11.0,51.0,0.0,57.0,22.0,228.0,86.0,0.0,101.0,132.0,183.0,112.0,599.0,26.0,8.0,1.0,44.0,11.0,124.0,779.0,56.0,0.0,28.0,52.0,55.0,216.0,196.0,12.0,228.0,229.0,569.0,0.0,170.0,8.0,75.0,4978.0,231.0,198.0,776.0,101.0,59.0,35.0,3.0,108.0,2832.0,3776.0,170.0,15.0,158.0,6.0,165.0,14.0,355.0,0.0,62.0,500.0,0.0,13.0,227.0,0.0,350.0,64.0,0.0,0.0,0.0,8.0,50.0,465.0,225.0,805.0,38.0,0.0,0.0,39.0,157.0,0.0,316.0,1.0,325.0,1.0,63.0,2.0,28.0,48.0,4.0,0.0,1478.0,8.0,545.0,0.0,50.0,98.0,1921.0,2492.0,309.0,0.0,13.0,64.0,406.0,83.0,651.0,6.0,0.0,2187.0,88.0,0.0,3675.0,661.0,857.0,65.0,1317.0,1391.0,0.0,284.0,0.0,0.0,29.0,1681.0,0.0,23.0,0.0,533.0,53.0,70.0,1400.0,0.0,625.0,0.0,105.0,114.0,48.0,2600.0,40.0,434.0,4374.0,0.0,396.0,5209.0,1460.0,282.0,633.0,727.0,8.0,26.0,0.0,378.0,35.0,8.0,0.0,8354.0,39.0,0.0,1073.0,35.0,6.0,710.0,126.0,540.0,527.0,8.0,150.0,0.0,0.0,0.0,75.0,239.0,562.0,155.0,3940.0,1865.0,112.0,161.0,32.0,12.0,0.0,0.0,46.0,271.0,60.0,155.0,449.0,40.0,0.0,23.0,75.0,79.0,70.0,0.0,1005.0,75.0,99.0,0.0,0.0,0.0,285.0,295.0,0.0,137.0,95.0,74.0,51.0,71.0,2.0,1363.0,306.0,78.0,0.0,649.0,0.0,5.0,211.0,27.0,1029.0,0.0,2.0,640.0,1.0,54.0,0.0,13.0,14.0,358.0,0.0,129.0,96.0,11.0,433.0,898.0,37.0,1134.0,22.0,125.0,24.0,27.0,34.0,487.0,21.0,0.0,0.0,0.0,845.0,133.0,315.0,26.0,1.0,30.0,19.0,0.0,0.0,1.0,161.0,71.0,0.0,1690.0,748.0,160.0,0.0,0.0,112.0,149.0,2577.0,645.0,31.0,113.0,0.0,0.0,1641.0,11.0,1258.0,50.0,0.0,93.0,50.0,146.0,151.0,0.0,0.0,147.0,29.111234025199998,2011-11-20,,2011-46,28.420878214601778,28.076915038020005, +57,57,304.0,27.0,25.0,7.0,349.0,161.0,23.0,185.0,378.0,264.0,74.0,1208.0,0.0,20.0,74.0,0.0,75.0,16.0,234.0,91.0,0.0,98.0,114.0,199.0,118.0,548.0,35.0,6.0,0.0,44.0,15.0,135.0,757.0,95.0,0.0,68.0,55.0,49.0,238.0,204.0,20.0,258.0,263.0,516.0,0.0,192.0,11.0,78.0,5830.0,273.0,210.0,802.0,94.0,79.0,49.0,3.0,136.0,3241.0,3887.0,196.0,24.0,139.0,4.0,185.0,20.0,406.0,0.0,78.0,460.0,0.0,11.0,277.0,0.0,403.0,42.0,0.0,0.0,0.0,9.0,31.0,447.0,197.0,687.0,45.0,0.0,0.0,38.0,147.0,0.0,300.0,0.0,303.0,0.0,53.0,1.0,30.0,79.0,5.0,0.0,1895.0,19.0,491.0,0.0,61.0,125.0,2107.0,2612.0,241.0,0.0,13.0,55.0,380.0,64.0,637.0,1.0,0.0,2494.0,111.0,0.0,3809.0,660.0,838.0,73.0,1334.0,1391.0,0.0,249.0,0.0,0.0,31.0,1814.0,0.0,25.0,0.0,524.0,34.0,53.0,1262.0,0.0,646.0,0.0,90.0,122.0,53.0,3065.0,33.0,381.0,4794.0,0.0,484.0,5240.0,1547.0,352.0,569.0,681.0,11.0,19.0,0.0,354.0,32.0,22.0,0.0,9149.0,34.0,0.0,1229.0,30.0,17.0,713.0,154.0,553.0,640.0,5.0,136.0,0.0,0.0,0.0,78.0,260.0,502.0,138.0,8124.0,1880.0,132.0,180.0,18.0,15.0,0.0,0.0,34.0,273.0,54.0,172.0,397.0,35.0,0.0,17.0,95.0,111.0,96.0,1.0,1026.0,69.0,84.0,105.0,0.0,0.0,315.0,319.0,0.0,123.0,105.0,105.0,62.0,53.0,8.0,1747.0,322.0,86.0,0.0,883.0,0.0,5.0,241.0,30.0,1116.0,0.0,1.0,673.0,0.0,62.0,1.0,16.0,22.0,383.0,0.0,180.0,104.0,25.0,512.0,896.0,42.0,1204.0,17.0,151.0,39.0,48.0,37.0,501.0,19.0,0.0,0.0,0.0,823.0,206.0,339.0,24.0,0.0,30.0,21.0,0.0,0.0,0.0,133.0,95.0,0.0,1679.0,671.0,181.0,0.0,1.0,89.0,111.0,2897.0,607.0,19.0,85.0,0.0,0.0,1558.0,10.0,1454.0,37.0,0.0,92.0,43.0,163.0,150.0,0.0,0.0,127.0,41.5837466956,2011-11-27,,2011-47,41.44661624878067,37.04291112988, +58,58,315.0,13.0,8.0,9.0,369.0,133.0,8.0,178.0,371.0,327.0,66.0,1266.0,0.0,12.0,54.0,0.0,67.0,18.0,195.0,94.0,0.0,93.0,176.0,180.0,94.0,533.0,56.0,6.0,1.0,33.0,13.0,141.0,810.0,121.0,0.0,28.0,56.0,41.0,204.0,254.0,18.0,235.0,223.0,637.0,0.0,160.0,20.0,70.0,5152.0,221.0,184.0,832.0,87.0,142.0,43.0,2.0,110.0,3169.0,3797.0,165.0,13.0,154.0,5.0,116.0,14.0,381.0,1.0,51.0,484.0,0.0,22.0,306.0,0.0,382.0,49.0,0.0,0.0,0.0,7.0,25.0,414.0,172.0,778.0,40.0,0.0,0.0,33.0,169.0,0.0,313.0,1.0,360.0,0.0,48.0,1.0,30.0,70.0,2.0,1.0,1661.0,11.0,502.0,0.0,71.0,102.0,2062.0,2520.0,159.0,0.0,9.0,82.0,382.0,89.0,735.0,2.0,0.0,2622.0,134.0,1.0,4817.0,683.0,1073.0,55.0,1414.0,1495.0,0.0,295.0,0.0,0.0,17.0,1657.0,0.0,22.0,0.0,575.0,37.0,61.0,1336.0,0.0,772.0,0.0,89.0,88.0,31.0,3117.0,52.0,491.0,4994.0,0.0,440.0,5415.0,1498.0,404.0,578.0,596.0,10.0,16.0,0.0,356.0,33.0,48.0,0.0,9831.0,40.0,1.0,2082.0,36.0,21.0,810.0,128.0,574.0,528.0,8.0,135.0,0.0,0.0,0.0,64.0,273.0,547.0,95.0,3917.0,1793.0,104.0,210.0,23.0,18.0,0.0,0.0,40.0,321.0,49.0,196.0,409.0,48.0,0.0,25.0,66.0,112.0,80.0,1.0,989.0,78.0,104.0,93.0,0.0,1.0,295.0,279.0,0.0,131.0,123.0,104.0,74.0,63.0,12.0,1413.0,269.0,122.0,0.0,1408.0,0.0,1.0,287.0,36.0,1236.0,0.0,1.0,663.0,1.0,48.0,0.0,16.0,20.0,375.0,0.0,156.0,171.0,12.0,571.0,894.0,21.0,1149.0,13.0,186.0,31.0,36.0,29.0,458.0,27.0,0.0,0.0,0.0,839.0,111.0,366.0,23.0,1.0,54.0,29.0,0.0,0.0,2.0,130.0,142.0,0.0,1764.0,678.0,195.0,0.0,1.0,84.0,166.0,3181.0,637.0,18.0,148.0,0.0,0.0,1596.0,10.0,1146.0,41.0,0.0,98.0,43.0,136.0,146.0,0.0,0.0,127.0,36.3867915947,2011-12-04,,2011-48,36.12148632217889,36.38679159470001, +59,59,314.0,22.0,9.0,11.0,402.0,183.0,14.0,116.0,381.0,370.0,60.0,1360.0,0.0,15.0,62.0,0.0,64.0,11.0,242.0,90.0,0.0,110.0,130.0,132.0,116.0,502.0,23.0,7.0,0.0,41.0,12.0,136.0,804.0,92.0,0.0,39.0,47.0,30.0,181.0,226.0,13.0,284.0,268.0,596.0,0.0,164.0,13.0,84.0,4901.0,248.0,166.0,833.0,84.0,82.0,37.0,0.0,97.0,3491.0,3678.0,152.0,21.0,133.0,9.0,104.0,18.0,325.0,2.0,57.0,498.0,0.0,19.0,219.0,0.0,260.0,64.0,0.0,1.0,0.0,7.0,59.0,456.0,161.0,681.0,25.0,0.0,0.0,30.0,151.0,0.0,277.0,1.0,288.0,1.0,70.0,0.0,44.0,40.0,7.0,0.0,1465.0,8.0,526.0,0.0,46.0,114.0,1973.0,2711.0,127.0,0.0,8.0,55.0,455.0,76.0,624.0,3.0,2.0,2163.0,90.0,0.0,4484.0,715.0,1015.0,42.0,1165.0,1711.0,0.0,299.0,0.0,0.0,23.0,1819.0,0.0,25.0,0.0,527.0,56.0,58.0,1293.0,0.0,666.0,0.0,92.0,123.0,29.0,3023.0,37.0,469.0,4541.0,0.0,406.0,5395.0,1540.0,418.0,572.0,779.0,5.0,26.0,0.0,344.0,39.0,37.0,73.0,9061.0,38.0,1.0,1404.0,29.0,12.0,691.0,159.0,628.0,509.0,31.0,145.0,1.0,0.0,0.0,72.0,235.0,511.0,130.0,4684.0,1870.0,143.0,164.0,27.0,14.0,0.0,0.0,54.0,297.0,56.0,197.0,394.0,47.0,0.0,9.0,65.0,81.0,87.0,1.0,926.0,79.0,93.0,28.0,0.0,1.0,307.0,275.0,1.0,144.0,106.0,105.0,76.0,62.0,5.0,1234.0,333.0,84.0,0.0,1514.0,0.0,3.0,241.0,38.0,1128.0,0.0,4.0,684.0,0.0,51.0,0.0,15.0,22.0,365.0,0.0,131.0,136.0,11.0,445.0,754.0,36.0,1219.0,16.0,160.0,26.0,38.0,44.0,506.0,23.0,0.0,1.0,0.0,913.0,109.0,342.0,34.0,0.0,46.0,20.0,0.0,0.0,0.0,128.0,93.0,0.0,1754.0,730.0,149.0,0.0,0.0,90.0,158.0,3326.0,620.0,26.0,173.0,0.0,0.0,1579.0,13.0,1153.0,38.0,0.0,87.0,60.0,145.0,147.0,0.0,0.0,124.0,21.824911827399998,2011-12-11,,2011-49,22.065803688148137,45.51969364722001, +60,60,318.0,7.0,12.0,5.0,310.0,125.0,15.0,211.0,438.0,352.0,58.0,1531.0,0.0,11.0,53.0,0.0,88.0,14.0,202.0,119.0,0.0,232.0,114.0,157.0,104.0,547.0,26.0,12.0,0.0,31.0,10.0,116.0,920.0,76.0,0.0,22.0,49.0,41.0,168.0,164.0,12.0,229.0,193.0,476.0,0.0,194.0,10.0,71.0,4649.0,239.0,220.0,824.0,82.0,63.0,62.0,3.0,128.0,3616.0,4017.0,158.0,21.0,150.0,2.0,91.0,15.0,400.0,0.0,66.0,503.0,0.0,13.0,229.0,0.0,257.0,49.0,0.0,0.0,0.0,7.0,60.0,439.0,129.0,650.0,23.0,0.0,0.0,35.0,136.0,0.0,289.0,1.0,334.0,0.0,69.0,0.0,42.0,48.0,5.0,0.0,1491.0,14.0,477.0,0.0,88.0,114.0,2032.0,2362.0,92.0,0.0,11.0,55.0,421.0,84.0,645.0,0.0,0.0,1870.0,82.0,0.0,3977.0,664.0,851.0,56.0,1157.0,1515.0,0.0,315.0,0.0,0.0,19.0,1622.0,0.0,30.0,0.0,512.0,45.0,43.0,1177.0,0.0,658.0,0.0,98.0,96.0,47.0,2855.0,36.0,449.0,4441.0,0.0,464.0,5178.0,1695.0,367.0,543.0,682.0,13.0,18.0,0.0,316.0,50.0,36.0,59.0,8723.0,42.0,0.0,1202.0,30.0,10.0,624.0,172.0,632.0,599.0,8.0,232.0,0.0,0.0,0.0,63.0,222.0,545.0,115.0,4860.0,1756.0,99.0,154.0,36.0,15.0,0.0,0.0,49.0,315.0,65.0,162.0,366.0,49.0,0.0,22.0,82.0,113.0,83.0,1.0,999.0,98.0,137.0,28.0,0.0,0.0,272.0,261.0,0.0,124.0,107.0,84.0,63.0,77.0,5.0,1604.0,271.0,58.0,0.0,1528.0,0.0,5.0,339.0,44.0,1041.0,0.0,4.0,618.0,0.0,40.0,1.0,8.0,26.0,379.0,1.0,223.0,139.0,11.0,532.0,823.0,37.0,1026.0,14.0,153.0,35.0,43.0,43.0,421.0,28.0,0.0,0.0,0.0,833.0,88.0,381.0,20.0,0.0,56.0,35.0,0.0,0.0,0.0,122.0,96.0,0.0,1694.0,649.0,203.0,0.0,1.0,84.0,110.0,3344.0,727.0,36.0,122.0,0.0,0.0,1424.0,6.0,1597.0,46.0,0.0,124.0,42.0,106.0,121.0,0.0,0.0,131.0,21.0135537422,2011-12-18,,2011-50,21.30630093801158,27.360448809060003, +61,61,182.0,8.0,7.0,5.0,242.0,103.0,7.0,92.0,259.0,181.0,29.0,856.0,0.0,8.0,26.0,137.0,42.0,5.0,207.0,43.0,0.0,54.0,76.0,100.0,57.0,367.0,33.0,3.0,0.0,22.0,7.0,76.0,733.0,163.0,0.0,16.0,33.0,40.0,131.0,113.0,12.0,159.0,133.0,538.0,0.0,126.0,23.0,65.0,2717.0,133.0,124.0,484.0,49.0,72.0,25.0,0.0,60.0,2040.0,2339.0,109.0,8.0,87.0,6.0,62.0,9.0,223.0,1.0,45.0,270.0,0.0,8.0,142.0,0.0,180.0,32.0,0.0,0.0,0.0,9.0,30.0,242.0,63.0,435.0,21.0,0.0,0.0,29.0,103.0,0.0,134.0,0.0,252.0,0.0,22.0,1.0,21.0,22.0,2.0,0.0,931.0,6.0,272.0,0.0,31.0,49.0,1208.0,1240.0,48.0,0.0,10.0,33.0,244.0,42.0,356.0,1.0,0.0,1156.0,36.0,0.0,2339.0,428.0,480.0,34.0,666.0,868.0,0.0,157.0,0.0,0.0,21.0,986.0,0.0,15.0,0.0,254.0,19.0,26.0,671.0,0.0,315.0,0.0,68.0,92.0,14.0,1513.0,20.0,297.0,2531.0,0.0,276.0,3002.0,916.0,193.0,343.0,443.0,11.0,16.0,0.0,215.0,22.0,32.0,32.0,5048.0,27.0,0.0,569.0,17.0,4.0,294.0,246.0,357.0,332.0,10.0,100.0,0.0,0.0,0.0,27.0,131.0,319.0,69.0,2763.0,1028.0,53.0,115.0,14.0,4.0,0.0,0.0,29.0,199.0,22.0,104.0,228.0,26.0,0.0,18.0,53.0,71.0,40.0,0.0,540.0,57.0,77.0,27.0,0.0,0.0,264.0,188.0,0.0,69.0,55.0,43.0,71.0,65.0,3.0,796.0,188.0,64.0,0.0,841.0,0.0,1.0,255.0,29.0,513.0,0.0,0.0,368.0,6.0,23.0,0.0,8.0,9.0,235.0,332.0,130.0,74.0,3.0,292.0,467.0,20.0,628.0,7.0,84.0,20.0,13.0,20.0,264.0,15.0,0.0,1.0,0.0,534.0,53.0,174.0,14.0,0.0,23.0,21.0,0.0,0.0,0.0,51.0,45.0,0.0,948.0,374.0,127.0,0.0,1.0,37.0,55.0,1974.0,382.0,11.0,69.0,0.0,0.0,860.0,4.0,564.0,31.0,0.0,55.0,30.0,77.0,62.0,0.0,0.0,63.0,39.0022514936,2011-12-25,,2011-51,39.00556049809728,32.156922978480004, +62,62,272.0,16.0,10.0,8.0,250.0,109.0,8.0,90.0,381.0,204.0,65.0,902.0,0.0,18.0,53.0,149.0,55.0,7.0,120.0,74.0,0.0,46.0,126.0,167.0,68.0,316.0,20.0,12.0,0.0,33.0,11.0,112.0,704.0,101.0,0.0,30.0,55.0,40.0,151.0,100.0,13.0,213.0,206.0,538.0,0.0,174.0,37.0,63.0,3484.0,205.0,139.0,639.0,88.0,61.0,19.0,3.0,83.0,3921.0,3641.0,143.0,14.0,106.0,8.0,98.0,13.0,219.0,0.0,81.0,348.0,0.0,16.0,137.0,0.0,197.0,48.0,0.0,0.0,1.0,10.0,58.0,471.0,181.0,542.0,30.0,0.0,0.0,43.0,79.0,0.0,219.0,3.0,255.0,0.0,51.0,0.0,68.0,58.0,4.0,0.0,1252.0,7.0,414.0,0.0,43.0,66.0,1822.0,2918.0,54.0,1.0,18.0,56.0,291.0,65.0,426.0,1.0,0.0,1362.0,64.0,0.0,3531.0,685.0,755.0,68.0,1142.0,929.0,0.0,162.0,0.0,0.0,26.0,1393.0,0.0,18.0,0.0,415.0,37.0,38.0,946.0,0.0,445.0,0.0,76.0,65.0,26.0,2351.0,32.0,353.0,3429.0,0.0,420.0,5783.0,1324.0,389.0,553.0,667.0,3.0,23.0,0.0,330.0,35.0,18.0,26.0,9252.0,41.0,2.0,897.0,25.0,17.0,709.0,86.0,645.0,383.0,19.0,111.0,0.0,0.0,0.0,45.0,281.0,534.0,95.0,4719.0,1373.0,69.0,104.0,31.0,8.0,0.0,0.0,39.0,167.0,26.0,90.0,331.0,38.0,0.0,14.0,84.0,88.0,61.0,0.0,757.0,81.0,69.0,16.0,0.0,0.0,211.0,219.0,1.0,66.0,82.0,61.0,80.0,57.0,4.0,978.0,255.0,80.0,0.0,964.0,1.0,4.0,164.0,58.0,858.0,0.0,1.0,527.0,4.0,44.0,0.0,10.0,10.0,253.0,645.0,100.0,105.0,11.0,574.0,742.0,33.0,931.0,7.0,120.0,30.0,25.0,31.0,350.0,32.0,0.0,1.0,0.0,701.0,57.0,334.0,22.0,2.0,34.0,26.0,0.0,0.0,0.0,112.0,100.0,0.0,1638.0,557.0,108.0,0.0,1.0,57.0,63.0,4060.0,566.0,23.0,78.0,0.0,0.0,1426.0,8.0,941.0,42.0,0.0,88.0,45.0,128.0,72.0,0.0,0.0,239.0,26.2795418298,2012-01-01,,2011-52,26.223944158362794,26.460617579719997, +63,63,301.0,20.0,13.0,17.0,410.0,173.0,22.0,205.0,501.0,318.0,84.0,1368.0,0.0,28.0,72.0,117.0,74.0,19.0,201.0,77.66666666666667,0.0,97.0,143.0,208.0,118.0,622.0,40.0,10.0,0.0,44.0,14.0,155.0,1088.0,180.0,0.0,28.0,59.0,50.0,193.0,562.0,9.0,291.0,193.0,726.0,0.0,194.0,25.0,95.0,4857.0,229.0,252.0,932.0,99.0,77.0,59.0,2.0,137.0,3781.0,4835.0,206.0,13.0,155.0,6.0,127.0,15.0,410.0,0.0,115.0,475.0,0.0,11.0,254.0,0.0,278.0,57.0,6.0,0.0,1.0,4.0,49.0,611.0,178.0,929.0,33.0,0.0,0.0,39.0,113.0,0.0,343.0,0.0,375.0,1.0,84.0,2.0,62.0,60.6,9.0,0.0,1744.0,5.0,556.0,0.0,63.0,111.0,2397.0,2684.0,91.0,9.0,11.0,68.0,319.0,97.0,713.0,6.0,0.0,1974.0,119.0,6.0,4437.0,838.0,1076.0,83.0,1384.0,1629.0,1.0,244.0,0.0,0.0,24.0,1958.0,0.0,25.0,0.0,563.0,63.0,65.0,1297.0,0.0,544.0,0.0,112.0,115.0,52.0,3209.0,43.0,474.0,4682.0,0.0,586.0,6460.0,1861.0,406.0,709.0,827.0,8.0,123.0,0.0,371.0,55.0,28.0,64.0,10735.0,35.0,0.0,1098.0,23.0,17.0,605.0,124.0,685.0,474.0,20.0,156.0,0.0,0.0,0.0,70.0,315.0,659.0,172.0,5552.0,2246.0,98.0,142.0,32.0,49.0,0.0,0.0,54.0,396.0,49.0,135.0,449.0,60.0,3.0,28.0,79.0,138.0,74.0,0.0,1051.0,94.0,80.0,35.0,0.0,0.0,375.0,317.0,0.0,100.0,89.0,81.0,100.0,70.0,46.0,1084.0,320.0,101.0,0.0,1312.0,0.0,1.0,285.0,60.0,991.0,0.0,0.0,627.0,3.0,70.0,0.0,16.0,24.0,404.0,892.0,179.0,166.0,8.0,669.0,1021.0,48.0,1267.0,14.0,218.0,47.0,47.0,47.0,447.0,30.0,0.0,3.0,0.0,864.0,99.0,314.0,25.0,0.0,55.0,42.0,0.0,0.0,0.0,145.0,102.0,0.0,1950.0,766.0,178.0,0.0,0.0,84.0,77.0,4537.0,784.0,27.0,139.0,0.0,0.0,1878.0,11.0,1339.0,64.0,0.0,133.0,61.0,169.0,119.0,0.0,0.0,210.0,30.8948265209,2012-01-08,,2012-1,30.937769988718898,59.860927159380005, +64,64,317.0,16.0,13.0,9.0,530.0,185.0,27.0,179.0,450.0,345.0,69.0,1662.0,0.0,14.0,76.0,128.0,83.0,13.0,244.0,81.33333333333333,0.0,109.0,144.0,194.0,141.0,894.0,29.0,7.0,2.0,43.0,24.0,148.0,1051.0,144.0,0.0,28.0,82.0,99.0,245.0,385.0,22.0,381.0,230.0,681.0,0.0,183.0,26.0,108.0,5524.0,201.0,192.0,953.0,95.0,91.0,54.0,1.0,179.0,3007.0,4527.0,199.0,10.0,173.0,2.0,120.0,16.0,465.0,0.0,111.0,551.0,0.0,10.0,281.0,0.0,337.0,56.0,0.0,0.0,0.0,2.0,77.0,537.0,185.0,941.0,29.0,0.0,0.0,53.0,144.0,0.0,349.0,2.0,416.0,2.0,87.0,0.0,50.0,63.2,10.0,1.0,1984.0,3.0,674.0,0.0,64.0,124.0,2323.0,2574.0,80.0,0.0,10.0,59.0,434.0,99.0,752.0,4.0,1.0,2586.0,124.0,1.0,4290.0,799.0,1108.0,104.0,1455.0,1659.0,3.0,293.0,0.0,0.0,28.0,2203.0,0.0,32.0,0.0,592.0,42.0,56.0,1334.0,0.0,708.0,0.0,101.0,107.0,45.0,2599.0,44.0,587.0,5185.0,0.0,519.0,5800.0,1732.0,388.0,597.0,797.0,12.0,77.0,0.0,396.0,49.0,23.0,56.0,8831.0,52.0,0.0,1245.0,31.0,13.0,715.0,159.0,588.0,556.0,19.0,180.0,0.0,0.0,0.0,85.0,242.0,573.0,216.0,3478.0,2282.0,134.0,160.0,34.0,19.0,0.0,0.0,48.0,484.0,39.0,192.0,520.0,65.0,0.0,22.0,56.0,110.0,77.0,0.0,1086.0,119.0,107.0,49.0,0.0,0.0,333.0,390.0,0.0,129.0,84.0,124.0,83.0,56.0,7.0,1075.0,322.0,98.0,0.0,809.0,0.0,5.0,359.0,64.0,1206.0,0.0,0.0,656.0,2.0,41.0,0.0,20.0,21.0,380.0,737.0,189.0,122.0,14.0,563.0,998.0,42.0,1474.0,14.0,212.0,31.0,39.0,25.0,495.0,34.0,0.0,0.0,0.0,976.0,117.0,377.0,33.0,0.0,61.0,38.0,0.0,0.0,1.0,138.0,82.0,0.0,1511.0,848.0,204.0,0.0,1.0,111.0,117.0,3615.0,789.0,51.0,126.0,0.0,0.0,1728.0,12.0,1434.0,78.0,0.0,104.0,55.0,153.0,142.0,0.0,0.0,148.0,32.2661599685,2012-01-15,,2012-2,32.801828194158695,32.2661599685, +65,65,295.0,27.0,13.0,6.0,472.0,210.0,16.0,179.0,476.0,326.0,89.0,1767.0,0.0,15.0,68.0,193.0,79.0,14.0,247.0,85.0,0.0,103.0,150.0,159.0,123.0,838.0,41.0,7.0,0.0,52.0,13.0,147.0,1139.0,108.0,0.0,38.0,53.0,144.0,264.0,256.0,13.0,268.0,274.0,596.0,0.0,151.0,55.0,80.0,6158.0,273.0,229.0,936.0,90.0,100.0,50.0,2.0,123.0,2866.0,4342.0,174.0,16.0,205.0,5.0,129.0,13.0,388.0,0.0,85.0,639.0,0.0,7.0,263.0,0.0,370.0,71.0,0.0,0.0,0.0,9.0,47.0,551.0,173.0,949.0,50.0,0.0,0.0,42.0,139.0,0.0,398.0,4.0,329.0,1.0,93.0,0.0,41.0,65.8,10.0,0.0,1914.0,5.0,575.0,0.0,57.0,123.0,2242.0,2582.0,52.0,0.0,19.0,63.0,577.0,122.0,772.0,4.0,0.0,2872.0,77.0,0.0,4462.0,724.0,1217.0,66.0,1359.0,1878.0,0.0,313.0,0.0,0.0,39.0,2054.0,0.0,21.0,0.0,558.0,43.0,61.0,1388.0,0.0,880.0,0.0,98.0,123.0,41.0,2436.0,31.0,521.0,5180.0,0.0,544.0,5987.0,1842.0,369.0,532.0,862.0,3.0,64.0,0.0,327.0,44.0,20.0,55.0,9053.0,50.0,0.0,1522.0,37.0,16.0,759.0,176.0,576.0,571.0,16.0,197.0,1.0,0.0,0.0,67.0,239.0,568.0,162.0,3428.0,2272.0,121.0,159.0,21.0,16.0,0.0,0.0,42.0,441.0,50.0,235.0,492.0,99.0,0.0,28.0,90.0,254.0,82.0,3.0,1161.0,99.0,98.0,66.0,0.0,1.0,339.0,319.0,0.0,155.0,73.0,74.0,114.0,79.0,1.0,1218.0,277.0,92.0,0.0,1064.0,0.0,3.0,277.0,39.0,1261.0,0.0,5.0,737.0,3.0,34.0,0.0,11.0,21.0,414.0,2887.0,169.0,164.0,9.0,578.0,1093.0,56.0,1366.0,20.0,202.0,36.0,32.0,49.0,517.0,29.0,0.0,1.0,0.0,979.0,127.0,339.0,24.0,1.0,52.0,34.0,0.0,0.0,0.0,133.0,75.0,0.0,1699.0,734.0,227.0,0.0,4.0,126.0,103.0,3683.0,862.0,28.0,165.0,0.0,0.0,1906.0,9.0,1302.0,38.0,0.0,76.0,38.0,180.0,132.0,0.0,0.0,143.0,34.795348411300004,2012-01-22,,2012-3,34.65344599609071,37.710790249140004, +66,66,286.0,19.0,13.0,2.0,454.0,174.0,19.0,197.0,462.0,302.0,66.0,1628.0,0.0,19.0,90.0,461.0,82.0,11.0,274.0,98.0,0.0,109.0,141.0,172.0,114.0,847.0,35.0,10.0,0.0,50.0,9.0,162.0,1033.0,114.0,0.0,35.0,68.0,89.0,317.0,204.0,9.0,389.0,196.0,637.0,0.0,180.0,120.0,68.0,5331.0,235.0,199.0,938.0,108.0,90.0,49.0,4.0,117.0,2984.0,4181.0,179.0,10.0,163.0,9.0,142.0,18.0,480.0,1.0,69.0,581.0,0.0,10.0,266.0,0.0,329.0,78.0,1.0,0.0,0.0,6.0,43.0,549.0,130.0,1016.0,60.0,0.0,0.0,49.0,110.0,0.0,321.0,3.0,362.0,0.0,90.0,1.0,32.0,68.4,4.0,0.0,1784.0,7.0,527.0,0.0,60.0,141.0,2153.0,2419.0,53.0,0.0,9.0,52.0,443.0,120.0,660.0,1.0,0.0,2351.0,75.0,2.0,4207.0,676.0,1054.0,63.0,1248.0,1850.0,0.0,330.0,0.0,0.0,22.0,1975.0,0.0,35.0,0.0,532.0,63.0,53.0,1332.0,0.0,864.0,0.0,106.0,151.0,43.0,2416.0,38.0,497.0,4723.0,0.0,539.0,5723.0,1654.0,387.0,594.0,729.0,7.0,64.0,0.0,314.0,41.0,27.0,356.0,9141.0,37.0,0.0,1291.0,23.0,16.0,794.0,173.0,534.0,641.0,11.0,179.0,0.0,0.0,0.0,64.0,232.0,573.0,196.0,4274.0,2351.0,105.0,162.0,51.0,10.0,0.0,0.0,56.0,403.0,77.0,177.0,424.0,63.0,0.0,27.0,84.0,138.0,77.0,2.0,1032.0,85.0,83.0,44.0,0.0,0.0,324.0,361.0,0.0,122.0,102.0,70.0,87.0,68.0,2.0,1405.0,292.0,111.0,0.0,1116.0,0.0,2.0,269.0,42.0,1289.0,0.0,7.0,637.0,2.0,43.0,0.0,20.0,20.0,406.0,6398.0,183.0,141.0,13.0,474.0,946.0,43.0,1386.0,22.0,213.0,22.0,29.0,46.0,448.0,14.0,0.0,1.0,0.0,952.0,143.0,357.0,34.0,0.0,43.0,29.0,0.0,0.0,0.0,123.0,104.0,0.0,1635.0,759.0,174.0,0.0,1.0,156.0,92.0,4047.0,757.0,30.0,162.0,0.0,0.0,1709.0,6.0,1283.0,51.0,0.0,71.0,44.0,151.0,121.0,0.0,0.0,157.0,38.2259432951,2012-01-29,,2012-4,37.92490879625697,36.4186311123, +67,67,321.0,35.0,10.0,12.0,335.0,203.0,13.0,155.0,380.0,269.0,61.0,1425.0,0.0,17.0,91.0,85.0,63.0,8.0,217.0,114.0,0.0,114.0,133.0,148.0,118.0,683.0,28.0,5.0,2.0,43.0,15.0,164.0,850.0,84.0,0.0,32.0,50.0,55.0,251.0,281.0,18.0,285.0,235.0,655.0,0.0,164.0,60.0,61.0,5015.0,287.0,197.0,913.0,92.0,83.0,40.0,4.0,113.0,2913.0,3887.0,151.0,19.0,143.0,6.0,100.0,29.0,414.0,0.0,80.0,544.0,0.0,13.0,289.0,0.0,312.0,85.0,0.0,0.0,1.0,8.0,34.0,536.0,108.0,802.0,25.0,0.0,0.0,39.0,139.0,0.0,296.0,4.0,341.0,0.0,60.0,1.0,37.0,71.0,7.0,1.0,1601.0,10.0,495.0,0.0,66.0,87.0,1979.0,2707.0,51.0,0.0,12.0,58.0,452.0,87.0,662.0,2.0,0.0,2405.0,64.0,0.0,4172.0,713.0,936.0,71.0,1179.0,2375.0,1.0,263.0,0.0,0.0,15.0,1702.0,0.0,20.0,0.0,509.0,76.0,56.0,1315.0,0.0,738.0,0.0,122.0,105.0,32.0,2507.0,33.0,484.0,4607.0,0.0,421.0,5803.0,1692.0,380.0,518.0,814.0,11.0,53.0,0.0,330.0,48.0,26.0,79.0,9292.0,28.0,0.0,1943.0,47.0,9.0,651.0,178.0,526.0,712.0,18.0,126.0,0.0,0.0,0.0,66.0,256.0,565.0,158.0,4109.0,1940.0,91.0,158.0,30.0,11.0,0.0,0.0,46.0,327.0,71.0,160.0,430.0,52.0,0.0,18.0,95.0,79.0,80.0,2.0,1028.0,62.0,108.0,34.0,0.0,0.0,244.0,321.0,1.0,105.0,105.0,93.0,73.0,67.0,1.0,1178.0,258.0,110.0,0.0,1009.0,0.0,8.0,225.0,21.0,1374.0,0.0,2.0,574.0,2.0,74.0,0.0,17.0,16.0,388.0,1850.0,164.0,164.0,12.0,418.0,854.0,36.0,1200.0,24.0,179.0,47.0,24.0,34.0,442.0,32.0,0.0,2.0,0.0,810.0,87.0,343.0,20.0,0.0,45.0,40.0,0.0,0.0,1.0,107.0,69.0,0.0,2211.0,610.0,228.0,0.0,1.0,83.0,88.0,4064.0,704.0,28.0,116.0,0.0,0.0,1735.0,17.0,1206.0,52.0,0.0,113.0,28.0,135.0,133.0,0.0,0.0,139.0,36.5236764733,2012-02-05,,2012-5,37.117228275411925,36.5236764733, +68,68,386.0,21.0,14.0,6.0,395.0,183.0,23.0,146.0,381.0,272.0,69.0,1384.0,0.0,16.0,44.0,59.0,59.0,20.0,232.0,101.0,0.0,102.0,119.0,198.0,82.0,644.0,28.0,9.0,0.0,48.0,14.0,119.0,828.0,63.0,0.0,45.0,59.0,61.0,241.0,231.0,13.0,229.0,216.0,603.0,0.0,165.0,26.0,78.0,4868.0,345.0,246.0,968.0,95.0,85.0,42.0,2.0,97.0,3108.0,3590.0,146.0,14.0,174.0,4.0,117.0,15.0,397.0,0.0,70.0,441.0,0.0,9.0,285.0,0.0,341.0,37.0,0.0,0.0,1.0,12.0,29.0,481.0,146.0,820.0,20.0,0.0,0.0,30.0,126.0,0.0,318.0,4.0,295.0,2.0,76.0,0.0,31.0,53.0,7.0,0.0,1492.0,6.0,495.0,0.0,64.0,108.0,2175.0,3938.0,55.0,0.0,9.0,74.0,380.0,85.0,601.0,2.0,0.0,2451.0,88.0,0.0,4242.0,722.0,1099.0,86.0,1292.0,1601.0,1.0,294.0,0.0,0.0,15.0,1715.0,0.0,31.0,0.0,459.0,65.0,60.0,1419.0,0.0,629.0,0.0,78.0,105.0,34.0,2637.0,39.0,477.0,4662.0,0.0,383.0,6604.0,1937.0,365.0,529.0,782.0,7.0,53.0,0.0,351.0,50.0,28.0,45.0,9306.0,37.0,1.0,1554.0,40.0,10.0,715.0,133.0,493.0,679.0,9.0,141.0,0.0,0.0,0.0,83.0,278.0,657.0,135.0,3761.0,1889.0,100.0,138.0,35.0,17.0,0.0,0.0,35.0,254.0,60.0,294.0,394.0,28.0,0.0,23.0,79.0,129.0,79.0,3.0,956.0,45.0,84.0,45.0,0.0,0.0,273.0,236.0,0.0,136.0,71.0,86.0,54.0,65.0,5.0,1214.0,273.0,72.0,0.0,897.0,0.0,2.0,203.0,35.0,1534.0,0.0,4.0,570.0,2.0,55.0,0.0,44.0,23.0,308.0,1167.0,145.0,132.0,10.0,600.0,809.0,44.0,1209.0,22.0,146.0,20.0,36.0,37.0,421.0,17.0,0.0,0.0,0.0,734.0,105.0,309.0,17.0,1.0,32.0,34.0,0.0,0.0,0.0,110.0,81.0,0.0,2133.0,630.0,194.0,0.0,0.0,71.0,98.0,4805.0,689.0,29.0,105.0,0.0,0.0,2157.0,13.0,1129.0,51.0,0.0,106.0,40.0,101.0,152.0,0.0,0.0,178.0,47.78716183270001,2012-02-12,,2012-6,47.55994603175965,47.78716183270001, +69,69,347.0,23.0,13.0,12.0,347.0,162.0,20.0,125.0,421.0,360.0,70.0,1341.0,0.0,22.0,49.0,39.0,74.0,15.0,232.0,83.0,0.0,94.0,114.0,248.0,81.0,607.0,25.0,10.0,0.0,43.0,13.0,100.0,765.0,56.0,0.0,75.0,64.0,49.0,233.0,314.0,17.0,258.0,277.0,567.0,0.0,153.0,21.0,70.0,5109.0,328.0,183.0,1008.0,78.0,70.0,47.0,4.0,148.0,3536.0,4147.0,179.0,13.0,180.0,2.0,128.0,15.0,421.0,0.0,104.0,436.0,0.0,8.0,222.0,0.0,387.0,45.0,0.0,1.0,0.0,7.0,34.0,427.0,183.0,842.0,31.0,0.0,0.0,15.0,134.0,0.0,320.0,1.0,378.0,0.0,68.0,0.0,22.0,64.0,12.0,0.0,1743.0,15.0,494.0,0.0,54.0,100.0,2348.0,5586.0,75.0,0.0,13.0,63.0,305.0,96.0,564.0,3.0,0.0,2284.0,76.0,0.0,4751.0,791.0,9154.0,96.0,1322.0,1559.0,1.0,370.0,0.0,0.0,11.0,1778.0,0.0,17.0,0.0,512.0,68.0,57.0,1511.0,0.0,731.0,0.0,100.0,97.0,44.0,2435.0,29.0,604.0,5329.0,0.0,448.0,7663.0,1735.0,465.0,580.0,874.0,6.0,54.0,0.0,357.0,35.0,28.0,91.0,9404.0,48.0,1.0,1500.0,34.0,13.0,715.0,137.0,646.0,657.0,7.0,123.0,0.0,0.0,0.0,67.0,290.0,691.0,142.0,4775.0,2291.0,102.0,161.0,21.0,11.0,0.0,0.0,29.0,319.0,40.0,210.0,370.0,55.0,0.0,27.0,72.0,95.0,73.0,1.0,1130.0,83.0,96.0,31.0,0.0,0.0,285.0,222.0,0.0,119.0,98.0,73.0,75.0,75.0,3.0,1178.0,329.0,81.0,0.0,981.0,0.0,6.0,211.0,36.0,1554.0,0.0,3.0,646.0,8.0,27.0,0.0,29.0,21.0,386.0,796.0,155.0,206.0,4.0,588.0,1012.0,51.0,1363.0,27.0,174.0,29.0,25.0,33.0,504.0,28.0,0.0,1.0,0.0,799.0,89.0,300.0,21.0,0.0,42.0,25.0,0.0,0.0,0.0,114.0,125.0,0.0,2207.0,751.0,149.0,1.0,0.0,71.0,61.0,4262.0,775.0,27.0,83.0,0.0,0.0,2192.0,13.0,1094.0,78.0,0.0,104.0,42.0,157.0,177.0,0.0,0.0,137.0,55.3114032,2012-02-19,,2012-7,54.925345190478026,49.190651384620004, +70,70,399.0,18.0,12.0,14.0,342.0,149.0,19.0,161.0,350.0,282.0,57.0,1340.0,0.0,11.0,48.0,33.0,68.0,14.0,203.0,82.0,0.0,98.0,123.0,132.0,74.0,482.0,16.0,9.0,0.0,53.0,19.0,158.0,812.0,80.0,0.0,59.0,78.0,42.0,231.0,243.0,21.0,197.0,439.0,583.0,0.0,167.0,19.0,69.0,5273.0,275.0,225.0,937.0,87.0,65.0,29.0,1.0,106.0,3247.0,3994.0,144.0,27.0,205.0,8.0,115.0,23.0,383.0,0.0,89.0,560.0,0.0,19.0,273.0,0.0,294.0,47.0,1.0,0.0,1.0,10.0,38.0,353.0,148.0,971.0,49.0,0.0,0.0,21.0,154.0,0.0,283.0,2.0,309.0,0.0,78.0,1.0,32.0,50.0,4.0,1.0,1639.0,5.0,469.0,0.0,41.0,101.0,2282.0,6276.0,94.0,0.0,8.0,52.0,352.0,107.0,627.0,0.0,0.0,2186.0,83.0,0.0,4765.0,798.0,1368.0,112.0,1439.0,1738.0,0.0,302.0,0.0,0.0,23.0,1789.0,0.0,29.0,0.0,518.0,49.0,82.0,1288.0,0.0,724.0,0.0,77.0,113.0,52.0,2603.0,34.0,494.0,4998.0,0.0,420.0,8620.0,1511.0,494.0,641.0,836.0,13.0,91.0,0.0,360.0,42.0,24.0,44.0,9499.0,40.0,0.0,1232.0,26.0,12.0,759.0,139.0,525.0,822.0,7.0,134.0,0.0,0.0,0.0,51.0,275.0,660.0,103.0,3895.0,2075.0,91.0,148.0,34.0,23.0,0.0,0.0,37.0,315.0,50.0,139.0,330.0,67.0,0.0,15.0,68.0,116.0,90.0,1.0,1017.0,89.0,74.0,38.0,0.0,0.0,275.0,207.0,0.0,98.0,96.0,75.0,72.0,64.0,2.0,1083.0,265.0,98.0,0.0,1138.0,0.0,4.0,214.0,28.0,1281.0,0.0,4.0,563.0,1.0,39.0,0.0,12.0,12.0,342.0,1051.0,135.0,208.0,7.0,512.0,1000.0,64.0,1353.0,22.0,140.0,37.0,30.0,50.0,431.0,29.0,0.0,2.0,0.0,807.0,64.0,292.0,25.0,0.0,48.0,42.0,0.0,0.0,1.0,111.0,91.0,0.0,2268.0,780.0,170.0,0.0,0.0,78.0,64.0,4355.0,729.0,26.0,115.0,0.0,0.0,1750.0,9.0,1186.0,43.0,0.0,107.0,49.0,114.0,125.0,0.0,0.0,137.0,50.041882880200006,2012-02-26,,2012-8,51.53197349860258,46.05885533738, +71,71,301.0,23.0,13.0,12.0,339.0,157.0,14.0,160.0,401.0,325.0,57.0,1377.0,0.0,16.0,50.0,33.0,65.0,14.0,212.0,90.0,0.0,135.0,120.0,147.0,98.0,541.0,20.0,12.0,3.0,32.0,57.0,121.0,801.0,61.0,0.0,43.0,68.0,55.0,274.0,257.0,11.0,203.0,294.0,628.0,0.0,163.0,28.0,51.0,5292.0,244.0,193.0,975.0,86.0,49.0,36.0,2.0,99.0,3320.0,4246.0,161.0,10.0,176.0,5.0,159.0,22.0,417.0,0.0,143.0,415.0,0.0,17.0,256.0,0.0,303.0,55.0,0.0,0.0,0.0,9.0,45.0,500.0,150.0,949.0,47.0,0.0,0.0,60.0,194.0,0.0,343.0,3.0,464.0,2.0,87.0,2.0,41.0,63.0,8.0,3.0,1844.0,11.0,513.0,0.0,65.0,93.0,2281.0,5403.0,80.0,0.0,14.0,63.0,453.0,84.0,608.0,1.0,0.0,2467.0,111.0,1.0,5225.0,921.0,1255.0,102.0,1422.0,1612.0,1.0,352.0,0.0,0.0,28.0,1969.0,0.0,21.0,0.0,573.0,39.0,67.0,1496.0,0.0,855.0,0.0,105.0,89.0,67.0,2553.0,38.0,450.0,5542.0,0.0,438.0,7984.0,1360.0,475.0,733.0,806.0,9.0,54.0,0.0,395.0,67.0,22.0,54.0,10375.0,48.0,0.0,1404.0,46.0,11.0,775.0,130.0,551.0,610.0,12.0,153.0,1.0,0.0,0.0,65.0,274.0,617.0,126.0,2851.0,2113.0,89.0,157.0,34.0,16.0,0.0,0.0,33.0,315.0,56.0,171.0,476.0,69.0,0.0,26.0,71.0,119.0,71.0,3.0,997.0,76.0,82.0,38.0,0.0,0.0,322.0,240.0,1.0,133.0,81.0,90.0,64.0,46.0,2.0,1180.0,291.0,104.0,0.0,1123.0,0.0,3.0,243.0,36.0,1371.0,0.0,4.0,681.0,0.0,52.0,0.0,23.0,19.0,416.0,971.0,177.0,203.0,10.0,453.0,1106.0,52.0,1494.0,29.0,140.0,24.0,20.0,41.0,482.0,26.0,0.0,1.0,0.0,808.0,89.0,322.0,28.0,0.0,39.0,35.0,0.0,0.0,2.0,127.0,95.0,0.0,2667.0,903.0,155.0,0.0,1.0,69.0,92.0,4980.0,737.0,32.0,124.0,0.0,0.0,1648.0,10.0,1335.0,46.0,0.0,110.0,41.0,174.0,110.0,0.0,0.0,133.0,55.472281563100005,2012-03-04,,2012-9,55.65346268167181,55.472281563100005, +72,72,329.0,10.0,16.0,14.0,354.0,156.0,13.0,153.0,454.0,296.0,66.0,1328.0,0.0,18.0,70.0,41.0,60.0,11.0,178.0,85.0,0.0,78.0,161.0,160.0,95.0,616.0,36.0,11.0,0.0,43.0,15.0,111.0,844.0,88.0,0.0,41.0,69.0,55.0,211.0,310.0,12.0,169.0,214.0,668.0,0.0,183.0,36.0,53.0,4982.0,232.0,154.0,903.0,96.0,63.0,34.0,2.0,158.0,2835.0,4063.0,186.0,15.0,176.0,3.0,163.0,12.0,385.0,1.0,236.0,437.0,0.0,16.0,260.0,0.0,407.0,64.0,1.0,0.0,0.0,3.0,44.0,462.0,156.0,973.0,35.0,0.0,0.0,31.0,157.0,0.0,328.0,2.0,360.0,0.0,60.0,0.0,35.0,61.0,14.0,1.0,1929.0,7.0,492.0,0.0,59.0,88.0,2159.0,4504.0,74.0,1.0,10.0,84.0,446.0,86.0,649.0,1.0,0.0,2668.0,82.0,0.0,4079.0,671.0,1245.0,107.0,1385.0,1716.0,1.0,312.0,0.0,0.0,19.0,1962.0,0.0,21.0,0.0,534.0,46.0,50.0,1323.0,0.0,781.0,0.0,107.0,124.0,47.0,2654.0,37.0,520.0,5589.0,0.0,527.0,6822.0,1367.0,492.0,534.0,666.0,11.0,70.0,0.0,376.0,51.0,35.0,64.0,8663.0,51.0,1.0,1514.0,43.0,14.0,782.0,163.0,557.0,647.0,10.0,130.0,1.0,0.0,0.0,62.0,251.0,552.0,116.0,2496.0,2092.0,89.0,151.0,23.0,17.0,0.0,0.0,28.0,307.0,58.0,142.0,427.0,43.0,0.0,27.0,70.0,90.0,71.0,0.0,1102.0,90.0,87.0,33.0,0.0,1.0,319.0,342.0,0.0,113.0,98.0,93.0,64.0,59.0,1.0,1059.0,238.0,78.0,0.0,868.0,0.0,1.0,219.0,31.0,1416.0,0.0,3.0,669.0,0.0,46.0,0.0,27.0,25.0,405.0,1274.0,125.0,196.0,18.0,453.0,983.0,51.0,1473.0,25.0,141.0,33.0,31.0,34.0,505.0,29.0,0.0,1.0,0.0,803.0,81.0,289.0,25.0,2.0,38.0,31.0,0.0,0.0,0.0,130.0,85.0,0.0,2204.0,913.0,173.0,0.0,0.0,94.0,91.0,4513.0,787.0,30.0,112.0,0.0,0.0,1487.0,11.0,1412.0,64.0,0.0,119.0,52.0,126.0,136.0,0.0,0.0,161.0,78.0094421818,2012-03-11,,2012-10,77.93554313307835,67.45755398824001, +73,73,362.0,22.0,12.0,4.0,408.0,193.0,11.0,150.0,473.0,295.0,64.0,1378.0,0.0,15.0,51.0,23.0,83.0,10.0,267.0,94.0,0.0,84.0,124.0,141.0,83.0,650.0,31.0,7.0,0.0,43.0,10.0,134.0,798.0,99.0,0.0,44.0,59.0,42.0,219.0,387.0,11.0,180.0,228.0,627.0,0.0,183.0,23.0,72.0,5566.0,240.0,122.0,946.0,102.0,81.0,37.0,5.0,115.0,2671.0,4071.0,146.0,11.0,157.0,4.0,176.0,14.0,405.0,0.0,204.0,444.0,0.0,13.0,258.0,0.0,473.0,103.0,0.0,0.0,0.0,5.0,35.0,514.0,175.0,941.0,37.0,0.0,0.0,40.0,115.0,0.0,318.0,0.0,439.0,2.0,52.0,0.0,27.0,63.0,5.0,0.0,1908.0,2.0,486.0,0.0,69.0,115.0,2195.0,3562.0,53.0,0.0,8.0,63.0,370.0,91.0,769.0,2.0,0.0,2612.0,88.0,0.0,5046.0,683.0,959.0,104.0,1346.0,1798.0,1.0,376.0,0.0,0.0,19.0,1883.0,0.0,17.0,0.0,521.0,37.0,51.0,1361.0,0.0,667.0,0.0,107.0,100.0,57.0,2503.0,31.0,483.0,5444.0,0.0,460.0,6150.0,1406.0,450.0,604.0,763.0,13.0,76.0,0.0,349.0,42.0,27.0,59.0,7813.0,47.0,0.0,1504.0,28.0,16.0,619.0,165.0,479.0,943.0,11.0,131.0,1.0,0.0,0.0,76.0,226.0,532.0,137.0,3734.0,2058.0,127.0,168.0,25.0,21.0,0.0,0.0,21.0,303.0,60.0,194.0,382.0,41.0,0.0,28.0,74.0,115.0,86.0,2.0,889.0,69.0,109.0,43.0,0.0,1.0,279.0,309.0,1.0,144.0,93.0,90.0,79.0,79.0,4.0,1128.0,273.0,136.0,0.0,532.0,0.0,4.0,258.0,28.0,1353.0,0.0,0.0,607.0,2.0,75.0,0.0,24.0,24.0,449.0,790.0,147.0,151.0,11.0,458.0,995.0,40.0,1488.0,30.0,144.0,24.0,24.0,37.0,477.0,18.0,0.0,1.0,0.0,834.0,94.0,284.0,41.0,0.0,33.0,18.0,0.0,0.0,0.0,135.0,83.0,0.0,1298.0,895.0,150.0,0.0,1.0,64.0,86.0,4831.0,771.0,25.0,148.0,0.0,0.0,1515.0,9.0,1259.0,45.0,0.0,147.0,36.0,120.0,110.0,0.0,0.0,150.0,43.4953708498,2012-03-18,,2012-11,43.611316721587,44.35372904638, +74,74,313.0,21.0,16.0,2.0,339.0,141.0,8.0,158.0,428.0,264.0,63.0,1239.0,0.0,21.0,44.0,24.0,61.0,13.0,242.0,84.0,0.0,102.0,122.0,159.0,77.0,622.0,30.0,12.0,0.0,49.0,15.0,111.0,802.0,71.0,0.0,62.0,41.0,45.0,221.0,322.0,20.0,207.0,175.0,604.0,0.0,194.0,19.0,75.0,5055.0,247.0,173.0,912.0,80.0,59.0,55.0,2.0,89.0,2183.0,3267.0,162.0,12.0,136.0,4.0,209.0,27.0,378.0,0.0,141.0,412.0,0.0,13.0,305.0,0.0,380.0,62.0,0.0,1.0,0.0,3.0,44.0,768.0,120.0,875.0,33.0,0.0,0.0,44.0,120.0,0.0,276.0,1.0,293.0,0.0,85.0,0.0,14.0,65.0,3.0,1.0,1662.0,11.0,444.0,0.0,49.0,103.0,2025.0,2724.0,57.0,2.0,4.0,47.0,324.0,80.0,711.0,1.0,0.0,2306.0,91.0,0.0,4268.0,617.0,928.0,105.0,1234.0,1558.0,1.0,292.0,0.0,0.0,21.0,1762.0,0.0,29.0,0.0,464.0,43.0,62.0,1213.0,0.0,701.0,0.0,106.0,98.0,38.0,2119.0,33.0,865.0,4946.0,0.0,475.0,5734.0,1254.0,416.0,560.0,659.0,8.0,54.0,0.0,336.0,43.0,21.0,48.0,6855.0,32.0,0.0,1340.0,33.0,15.0,593.0,139.0,481.0,795.0,10.0,161.0,0.0,0.0,0.0,49.0,203.0,424.0,113.0,1915.0,1848.0,107.0,132.0,31.0,20.0,0.0,0.0,35.0,336.0,49.0,142.0,396.0,39.0,0.0,21.0,65.0,126.0,79.0,2.0,984.0,90.0,87.0,25.0,0.0,0.0,246.0,234.0,1.0,143.0,87.0,62.0,76.0,50.0,2.0,1110.0,282.0,95.0,0.0,458.0,0.0,5.0,229.0,36.0,1356.0,0.0,0.0,529.0,1.0,45.0,0.0,17.0,24.0,381.0,497.0,156.0,144.0,20.0,337.0,878.0,64.0,1361.0,28.0,169.0,30.0,38.0,36.0,440.0,19.0,0.0,1.0,0.0,732.0,99.0,279.0,38.0,2.0,47.0,33.0,0.0,0.0,4.0,97.0,109.0,0.0,1159.0,867.0,147.0,0.0,0.0,59.0,65.0,4508.0,724.0,32.0,141.0,0.0,0.0,1097.0,20.0,1386.0,54.0,0.0,95.0,41.0,119.0,93.0,0.0,0.0,112.0,38.948032196999996,2012-03-25,,2012-12,38.27924382534057,38.07826873636, +75,75,280.0,24.0,24.0,10.0,360.0,181.0,16.0,190.0,417.0,260.0,76.0,1241.0,0.0,17.0,68.0,23.0,67.0,8.0,221.0,88.0,0.0,112.0,124.0,175.0,82.0,691.0,30.0,10.0,0.0,45.0,15.0,112.0,770.0,78.0,0.0,31.0,64.0,46.0,200.0,391.0,8.0,141.0,213.0,554.0,0.0,209.0,24.0,81.0,5601.0,222.0,162.0,912.0,63.0,99.0,49.0,1.0,131.0,1750.0,2906.0,148.0,17.0,151.0,3.0,108.0,17.0,346.0,1.0,105.0,457.0,0.0,7.0,256.0,0.0,419.0,43.0,0.0,1.0,0.0,8.0,30.0,473.0,98.0,754.0,38.0,0.0,0.0,29.0,145.0,0.0,367.0,3.0,390.0,1.0,60.0,0.0,20.0,60.0,9.0,0.0,1487.0,6.0,451.0,0.0,73.0,113.0,2171.0,2169.0,48.0,0.0,10.0,63.0,328.0,88.0,605.0,0.0,1.0,2448.0,51.0,0.0,3846.0,557.0,901.0,84.0,1073.0,1614.0,2.0,307.0,0.0,0.0,23.0,1634.0,0.0,26.0,0.0,499.0,52.0,70.0,1163.0,0.0,780.0,0.0,91.0,143.0,41.0,2207.0,31.0,504.0,5025.0,0.0,451.0,5232.0,1253.0,549.0,1038.0,642.0,21.0,60.0,0.0,284.0,50.0,26.0,38.0,6462.0,24.0,0.0,1433.0,20.0,13.0,512.0,148.0,524.0,686.0,9.0,160.0,0.0,0.0,0.0,75.0,186.0,433.0,117.0,1662.0,1873.0,90.0,145.0,27.0,11.0,0.0,0.0,37.0,356.0,54.0,140.0,372.0,43.0,0.0,17.0,46.0,92.0,71.0,0.0,907.0,57.0,104.0,34.0,0.0,0.0,241.0,248.0,0.0,173.0,100.0,86.0,70.0,78.0,2.0,1043.0,265.0,92.0,0.0,407.0,0.0,3.0,285.0,26.0,1336.0,0.0,3.0,505.0,0.0,47.0,0.0,26.0,8.0,455.0,528.0,168.0,142.0,7.0,357.0,919.0,53.0,1311.0,34.0,150.0,32.0,26.0,34.0,428.0,24.0,0.0,1.0,0.0,714.0,97.0,256.0,34.0,1.0,41.0,24.0,0.0,0.0,2.0,105.0,75.0,0.0,1115.0,719.0,188.0,0.0,0.0,62.0,62.0,4623.0,790.0,34.0,157.0,0.0,0.0,1119.0,7.0,1358.0,35.0,0.0,83.0,55.0,124.0,96.0,0.0,0.0,117.0,40.9139261913,2012-04-01,,2012-13,40.36365547940824,45.0587559265, +76,76,284.0,17.0,12.0,5.0,338.0,160.0,14.0,127.0,401.0,226.0,72.0,1245.0,0.0,18.0,70.0,32.0,84.0,13.0,220.0,77.0,0.0,109.0,124.0,182.0,75.0,673.0,33.0,14.0,1.0,42.0,7.0,137.0,898.0,90.0,0.0,37.0,54.0,51.0,180.0,316.0,6.0,171.0,152.0,555.0,0.0,206.0,23.0,91.0,4823.0,238.0,154.0,923.0,100.0,90.0,52.0,0.0,110.0,1519.0,3015.0,205.0,11.0,126.0,4.0,104.0,17.0,303.0,0.0,105.0,403.0,0.0,6.0,239.0,0.0,355.0,52.0,0.0,0.0,0.0,6.0,27.0,457.0,110.0,765.0,43.0,0.0,0.0,25.0,102.0,0.0,327.0,1.0,423.0,0.0,75.0,3.0,21.0,54.0,3.0,0.0,1698.0,11.0,446.0,0.0,52.0,91.0,2128.0,1663.0,45.0,0.0,5.0,47.0,350.0,78.0,581.0,0.0,0.0,2213.0,66.0,0.0,5123.0,570.0,991.0,76.0,1050.0,1325.0,1.0,275.0,0.0,0.0,28.0,1429.0,0.0,24.0,0.0,444.0,166.0,60.0,1046.0,0.0,644.0,0.0,107.0,91.0,43.0,1948.0,40.0,453.0,4519.0,0.0,438.0,4489.0,1348.0,356.0,660.0,801.0,125.0,61.0,0.0,310.0,55.0,27.0,32.0,5988.0,45.0,0.0,1941.0,30.0,3.0,463.0,123.0,391.0,679.0,10.0,104.0,0.0,0.0,0.0,70.0,177.0,400.0,155.0,1428.0,1793.0,80.0,172.0,24.0,9.0,0.0,0.0,36.0,362.0,54.0,133.0,335.0,49.0,0.0,19.0,71.0,96.0,71.0,0.0,779.0,52.0,79.0,25.0,0.0,0.0,228.0,232.0,0.0,134.0,91.0,94.0,70.0,97.0,1.0,863.0,236.0,92.0,0.0,338.0,0.0,3.0,273.0,30.0,1323.0,0.0,1.0,492.0,0.0,39.0,0.0,18.0,8.0,371.0,563.0,165.0,132.0,14.0,393.0,916.0,37.0,1265.0,41.0,150.0,41.0,28.0,33.0,408.0,15.0,0.0,1.0,0.0,657.0,65.0,253.0,58.0,0.0,32.0,25.0,0.0,0.0,1.0,83.0,77.0,0.0,1094.0,638.0,132.0,0.0,0.0,72.0,62.0,4766.0,738.0,22.0,120.0,0.0,0.0,1137.0,23.0,1241.0,40.0,0.0,95.0,59.0,113.0,92.0,0.0,0.0,192.0,31.5624332779,2012-04-08,,2012-14,32.187460928818574,30.038730343639997, +77,77,284.0,19.0,12.0,8.0,336.0,157.0,13.0,164.0,424.0,224.0,58.0,1563.0,0.0,20.0,82.0,20.0,99.0,14.0,268.0,109.0,0.0,102.0,120.0,156.0,88.0,833.0,47.0,9.0,0.0,29.0,6.0,117.0,1004.0,82.0,0.0,44.0,43.0,40.0,211.0,403.0,7.0,182.0,185.0,1102.0,0.0,239.0,16.0,96.0,4722.0,177.0,219.0,901.0,86.0,93.0,56.0,4.0,110.0,1739.0,3520.0,196.0,9.0,184.0,9.0,111.0,16.0,331.0,0.0,97.0,553.0,0.0,10.0,311.0,0.0,387.0,74.0,0.0,0.0,0.0,4.0,36.0,467.0,127.0,939.0,35.0,0.0,0.0,24.0,103.0,0.0,388.0,1.0,492.0,0.0,70.0,0.0,27.0,50.0,8.0,0.0,1871.0,11.0,489.0,0.0,53.0,94.0,2265.0,1750.0,33.0,0.0,1.0,62.0,365.0,102.0,622.0,2.0,0.0,2033.0,94.0,0.0,4151.0,489.0,6099.0,77.0,1335.0,1457.0,2.0,325.0,0.0,0.0,37.0,1508.0,0.0,32.0,0.0,476.0,167.0,49.0,1066.0,0.0,697.0,0.0,147.0,71.0,75.0,2354.0,47.0,484.0,4708.0,0.0,621.0,5224.0,1630.0,360.0,653.0,750.0,27.0,72.0,0.0,352.0,61.0,50.0,53.0,6249.0,33.0,0.0,1475.0,40.0,7.0,459.0,142.0,460.0,840.0,13.0,180.0,0.0,0.0,0.0,70.0,229.0,453.0,189.0,1451.0,1878.0,96.0,164.0,22.0,15.0,0.0,0.0,119.0,368.0,36.0,170.0,415.0,60.0,0.0,21.0,71.0,134.0,77.0,0.0,887.0,62.0,94.0,50.0,0.0,0.0,311.0,265.0,0.0,123.0,78.0,91.0,86.0,101.0,1.0,903.0,309.0,111.0,1.0,355.0,0.0,4.0,332.0,39.0,1277.0,0.0,1.0,489.0,3.0,32.0,0.0,22.0,24.0,424.0,305.0,194.0,154.0,12.0,396.0,1073.0,35.0,1314.0,33.0,212.0,41.0,23.0,22.0,352.0,13.0,0.0,1.0,0.0,746.0,95.0,340.0,42.0,0.0,41.0,41.0,0.0,0.0,0.0,91.0,81.0,0.0,1156.0,658.0,125.0,0.0,1.0,96.0,63.0,4867.0,776.0,31.0,145.0,1.0,0.0,1370.0,23.0,1374.0,34.0,0.0,74.0,61.0,132.0,138.0,0.0,0.0,153.0,21.9037188705,2012-04-15,,2012-15,21.692151995505654,26.566999589260003, +78,78,260.0,27.0,11.0,6.0,518.0,153.0,15.0,159.0,419.0,317.0,60.0,1723.0,0.0,18.0,74.0,8.0,150.0,18.0,266.0,103.0,0.0,98.0,127.0,170.0,126.0,701.0,41.0,9.0,0.0,66.0,19.0,157.0,1010.0,95.0,0.0,53.0,60.0,55.0,256.0,231.0,10.0,251.0,211.0,648.0,0.0,194.0,19.0,107.0,4843.0,148.0,251.0,1007.0,119.0,72.0,38.0,1.0,93.0,2923.0,3307.0,274.0,12.0,231.0,6.0,117.0,16.0,455.0,0.0,67.0,598.0,0.0,10.0,312.0,0.0,401.0,35.0,0.0,0.0,1.0,8.0,45.0,905.0,147.0,1250.0,31.0,0.0,0.0,49.0,170.0,0.0,357.0,1.0,478.0,0.0,100.0,1.0,29.0,55.0,11.0,2.0,1502.0,11.0,638.0,0.0,63.0,86.0,2159.0,2391.0,508.0,1.0,9.0,57.0,541.0,85.0,740.0,1.0,0.0,2252.0,63.0,36.0,5490.0,477.0,1189.0,57.0,1487.0,1663.0,1.0,263.0,0.0,0.0,26.0,1961.0,0.0,29.0,0.0,461.0,57.0,37.0,1278.0,0.0,769.0,0.0,88.0,79.0,53.0,1714.0,33.0,580.0,4204.0,0.0,455.0,5630.0,1634.0,362.0,570.0,675.0,26.0,126.0,0.0,325.0,28.0,30.0,72.0,5889.0,236.0,1.0,1295.0,35.0,10.0,516.0,120.0,396.0,840.0,14.0,156.0,0.0,0.0,0.0,68.0,116.0,532.0,148.0,1815.0,2071.0,63.0,145.0,28.0,16.0,0.0,0.0,57.0,592.0,72.0,125.0,432.0,60.0,21.0,19.0,70.0,113.0,72.0,7.0,999.0,102.0,92.0,34.0,0.0,1.0,295.0,273.0,0.0,142.0,89.0,85.0,70.0,90.0,0.0,1138.0,244.0,86.0,0.0,592.0,0.0,5.0,359.0,38.0,1184.0,0.0,1.0,517.0,0.0,54.0,0.0,26.0,14.0,341.0,107.0,147.0,259.0,25.0,498.0,1416.0,47.0,1252.0,49.0,187.0,51.0,22.0,23.0,476.0,30.0,0.0,0.0,0.0,833.0,101.0,280.0,43.0,3.0,43.0,35.0,0.0,0.0,1.0,153.0,97.0,0.0,1466.0,621.0,139.0,0.0,0.0,53.0,75.0,2775.0,589.0,28.0,147.0,0.0,0.0,1455.0,16.0,1479.0,39.0,0.0,124.0,66.0,126.0,144.0,0.0,0.0,150.0,34.4487058769,2012-10-21,,2012-42,33.89420530107709,37.150404019359996, +79,79,237.0,20.0,15.0,15.0,475.0,122.0,33.0,162.0,332.0,279.0,68.0,1998.0,0.0,11.0,152.0,9.0,89.0,19.0,291.0,74.0,0.0,135.0,132.0,197.0,121.0,720.0,32.0,11.0,0.0,38.0,24.0,142.0,1018.0,111.0,0.0,34.0,56.0,43.0,686.0,280.0,20.0,160.0,242.0,633.0,0.0,153.0,11.0,120.0,4763.0,133.0,228.0,949.0,112.0,79.0,57.0,2.0,114.0,2866.0,2904.0,273.0,19.0,234.0,3.0,139.0,9.0,358.0,0.0,81.0,504.0,0.0,19.0,266.0,0.0,348.0,48.0,0.0,0.0,1.0,10.0,32.0,513.0,171.0,1267.0,33.0,0.0,0.0,33.0,151.0,0.0,333.0,2.0,516.0,0.0,108.0,0.0,94.0,54.0,5.0,1.0,1769.0,8.0,585.0,0.0,57.0,93.0,2310.0,2252.0,548.0,1.0,8.0,43.0,424.0,62.0,748.0,2.0,1.0,2161.0,86.0,42.0,4809.0,394.0,1462.0,56.0,1378.0,1709.0,2.0,315.0,0.0,0.0,29.0,1791.0,0.0,24.0,0.0,457.0,52.0,43.0,1282.0,0.0,646.0,0.0,119.0,148.0,52.0,1635.0,26.0,580.0,4488.0,0.0,508.0,5268.0,1420.0,305.0,643.0,662.0,20.0,93.0,0.0,291.0,31.0,34.0,43.0,5594.0,69.0,0.0,1233.0,17.0,8.0,492.0,145.0,403.0,805.0,43.0,153.0,2.0,0.0,0.0,75.0,136.0,542.0,164.0,1912.0,2145.0,58.0,160.0,41.0,23.0,0.0,0.0,30.0,499.0,68.0,188.0,492.0,69.0,17.0,25.0,58.0,100.0,70.0,5.0,1070.0,118.0,78.0,35.0,0.0,0.0,297.0,287.0,1.0,171.0,76.0,109.0,101.0,98.0,2.0,1096.0,297.0,134.0,0.0,752.0,0.0,5.0,382.0,32.0,1230.0,0.0,0.0,512.0,1.0,32.0,0.0,22.0,22.0,323.0,108.0,146.0,232.0,14.0,401.0,1491.0,51.0,1224.0,91.0,196.0,50.0,24.0,36.0,467.0,25.0,0.0,0.0,0.0,822.0,91.0,320.0,27.0,2.0,47.0,37.0,0.0,0.0,2.0,160.0,65.0,0.0,1445.0,609.0,169.0,0.0,0.0,69.0,77.0,3178.0,575.0,31.0,159.0,0.0,0.0,1636.0,10.0,1479.0,33.0,0.0,123.0,77.0,141.0,151.0,0.0,0.0,131.0,31.697106819299997,2012-10-28,,2012-43,31.948049445459766,34.80105306172, +80,80,281.0,20.0,15.0,11.0,453.0,185.0,18.0,174.0,407.0,206.0,57.0,1879.0,0.0,18.0,56.0,9.0,95.0,9.0,256.0,93.0,0.0,90.0,162.0,215.0,107.0,807.0,22.0,6.0,0.0,44.0,21.0,139.0,1022.0,125.0,0.0,61.0,55.0,43.0,244.0,288.0,18.0,258.0,219.0,667.0,0.0,154.0,14.0,118.0,4874.0,216.0,215.0,1060.0,112.0,94.0,70.0,5.0,128.0,2860.0,2769.0,230.0,16.0,236.0,3.0,117.0,10.0,388.0,0.0,85.0,666.0,0.0,15.0,409.0,0.0,374.0,62.0,0.0,2.0,0.0,3.0,39.0,476.0,189.0,1160.0,36.0,0.0,0.0,30.0,146.0,1.0,363.0,2.0,472.0,3.0,152.0,0.0,51.0,52.0,6.0,0.0,1483.0,4.0,650.0,0.0,72.0,124.0,2099.0,2242.0,759.0,0.0,7.0,48.0,492.0,88.0,994.0,105.0,0.0,3103.0,63.0,56.0,4731.0,428.0,1141.0,69.0,1338.0,1953.0,0.0,295.0,0.0,0.0,35.0,1750.0,0.0,31.0,0.0,574.0,66.0,53.0,1341.0,0.0,758.0,0.0,103.0,476.0,49.0,1697.0,32.0,514.0,4247.0,0.0,495.0,5338.0,2317.0,314.0,658.0,785.0,11.0,92.0,0.0,268.0,29.0,35.0,49.0,5783.0,67.0,1.0,1189.0,32.0,10.0,569.0,173.0,389.0,729.0,9.0,136.0,0.0,0.0,0.0,72.0,145.0,571.0,189.0,2470.0,2119.0,93.0,173.0,32.0,17.0,0.0,0.0,33.0,460.0,70.0,219.0,517.0,58.0,24.0,13.0,70.0,119.0,84.0,7.0,1040.0,117.0,79.0,42.0,0.0,0.0,293.0,343.0,0.0,143.0,68.0,116.0,107.0,121.0,0.0,1260.0,248.0,83.0,0.0,912.0,0.0,2.0,403.0,38.0,1162.0,0.0,4.0,544.0,1.0,53.0,0.0,21.0,8.0,367.0,102.0,142.0,289.0,21.0,441.0,1460.0,52.0,1115.0,97.0,219.0,104.0,33.0,51.0,509.0,40.0,0.0,1.0,0.0,862.0,116.0,281.0,37.0,0.0,38.0,36.0,0.0,0.0,3.0,144.0,65.0,0.0,1348.0,491.0,133.0,0.0,0.0,64.0,79.0,2700.0,501.0,45.0,177.0,0.0,0.0,1604.0,19.0,1441.0,36.0,0.0,103.0,55.0,153.0,158.0,0.0,0.0,177.0,44.67642283510001,2012-11-04,,2012-44,45.11838962810401,39.44971806744002, +81,81,218.0,33.0,11.0,13.0,460.0,157.0,20.0,196.0,404.0,267.0,70.0,2149.0,0.0,25.0,63.0,7.0,91.0,19.0,273.0,111.0,0.0,131.0,155.0,210.0,117.0,844.0,23.0,10.0,0.0,64.0,17.0,166.0,1263.0,125.0,0.0,78.0,53.0,40.0,223.0,356.0,20.0,238.0,229.0,848.0,0.0,157.0,16.0,106.0,4853.0,208.0,226.0,1095.0,116.0,107.0,61.0,1.0,127.0,2838.0,2982.0,281.0,9.0,282.0,4.0,220.0,12.0,415.0,3.0,222.0,662.0,0.0,16.0,388.0,0.0,478.0,70.0,5.0,0.0,2.0,7.0,34.0,468.0,190.0,1199.0,20.0,0.0,0.0,27.0,217.0,0.0,380.0,3.0,550.0,1.0,132.0,0.0,146.0,60.0,4.0,0.0,1819.0,13.0,630.0,0.0,70.0,111.0,2251.0,2735.0,691.0,56.0,10.0,33.0,404.0,73.0,823.0,68.0,1.0,2673.0,68.0,52.0,5228.0,485.0,1196.0,60.0,1437.0,1932.0,1.0,347.0,0.0,0.0,35.0,1938.0,0.0,35.0,0.0,524.0,64.0,27.0,1271.0,0.0,1054.0,0.0,126.0,119.0,47.0,1774.0,42.0,476.0,4843.0,0.0,516.0,5778.0,2001.0,352.0,713.0,777.0,12.0,101.0,0.0,275.0,42.0,34.0,50.0,6059.0,57.0,1.0,1571.0,46.0,11.0,735.0,249.0,401.0,832.0,15.0,157.0,0.0,0.0,0.0,86.0,142.0,610.0,177.0,3048.0,2121.0,82.0,145.0,27.0,23.0,0.0,0.0,36.0,551.0,66.0,217.0,528.0,83.0,48.0,22.0,71.0,89.0,75.0,5.0,1113.0,126.0,106.0,38.0,0.0,0.0,278.0,286.0,1.0,136.0,71.0,119.0,99.0,110.0,75.0,1448.0,273.0,131.0,0.0,1267.0,0.0,6.0,398.0,45.0,1429.0,0.0,2.0,537.0,0.0,271.0,0.0,19.0,26.0,347.0,90.0,147.0,282.0,20.0,668.0,1548.0,53.0,1143.0,70.0,186.0,77.0,23.0,38.0,448.0,36.0,0.0,0.0,0.0,847.0,150.0,259.0,31.0,1.0,30.0,33.0,0.0,0.0,3.0,121.0,162.0,0.0,1360.0,491.0,141.0,0.0,1.0,70.0,103.0,3047.0,527.0,26.0,225.0,0.0,0.0,1908.0,16.0,1461.0,64.0,0.0,123.0,58.0,153.0,162.0,0.0,0.0,152.0,28.6956244487,2012-11-11,,2012-45,28.33268747122264,29.090638749800004, +82,82,235.0,36.0,8.0,9.0,451.0,215.0,15.0,224.0,409.0,231.0,61.0,1842.0,0.0,15.0,44.0,9.0,90.0,21.0,290.0,90.0,0.0,119.0,163.0,189.0,135.0,901.0,76.0,10.0,0.0,53.0,14.0,131.0,1075.0,110.0,0.0,51.0,43.0,53.0,274.0,301.0,15.0,237.0,217.0,591.0,0.0,174.0,14.0,112.0,5156.0,173.0,202.0,1024.0,142.0,70.0,55.0,2.0,90.0,2830.0,2931.0,256.0,6.0,302.0,4.0,121.0,5.0,410.0,0.0,78.0,560.0,0.0,13.0,396.0,0.0,508.0,40.0,1.0,1.0,1.0,11.0,41.0,448.0,176.0,1172.0,32.0,0.0,0.0,29.0,200.0,0.0,370.0,1.0,528.0,0.0,95.0,2.0,42.0,62.0,6.0,3.0,1799.0,7.0,622.0,0.0,63.0,83.0,2248.0,2315.0,293.0,26.0,3.0,49.0,383.0,76.0,717.0,90.0,1.0,2538.0,80.0,57.0,4994.0,413.0,1066.0,68.0,1377.0,1910.0,1.0,317.0,0.0,0.0,28.0,1989.0,0.0,22.0,0.0,516.0,64.0,31.0,1390.0,0.0,776.0,0.0,124.0,161.0,53.0,2009.0,35.0,449.0,4963.0,0.0,470.0,6055.0,1712.0,443.0,707.0,991.0,16.0,89.0,0.0,290.0,35.0,43.0,69.0,5238.0,74.0,1.0,1488.0,45.0,8.0,543.0,162.0,414.0,790.0,12.0,180.0,1.0,0.0,0.0,75.0,148.0,598.0,132.0,3849.0,2025.0,88.0,161.0,25.0,12.0,0.0,0.0,48.0,475.0,73.0,200.0,455.0,83.0,51.0,9.0,112.0,96.0,81.0,2.0,971.0,100.0,92.0,49.0,0.0,0.0,250.0,350.0,0.0,160.0,82.0,98.0,93.0,104.0,176.0,1639.0,287.0,136.0,1.0,1573.0,0.0,4.0,307.0,39.0,1469.0,0.0,3.0,508.0,0.0,63.0,0.0,15.0,19.0,411.0,91.0,164.0,264.0,21.0,456.0,1599.0,45.0,1188.0,47.0,170.0,66.0,25.0,24.0,462.0,21.0,0.0,1.0,0.0,848.0,125.0,311.0,19.0,3.0,45.0,30.0,0.0,0.0,4.0,162.0,93.0,0.0,1413.0,514.0,135.0,0.0,1.0,52.0,97.0,3232.0,467.0,37.0,115.0,0.0,0.0,1646.0,7.0,1452.0,63.0,0.0,108.0,50.0,166.0,166.0,0.0,0.0,144.0,37.729479631,2012-11-18,,2012-46,38.360775741557745,35.922708594540005, +83,83,279.0,19.0,6.0,8.0,485.0,154.0,20.0,292.0,410.0,301.0,57.0,2023.0,0.0,14.0,52.0,10.0,76.0,12.0,343.0,79.0,1.0,82.0,143.0,222.0,138.0,722.0,25.0,8.0,0.0,55.0,11.0,147.0,1029.0,116.0,0.0,40.0,56.0,47.0,259.0,304.0,11.0,1085.0,238.0,592.0,0.0,156.0,12.0,104.0,5093.0,194.0,225.0,1027.0,130.0,100.0,64.0,3.0,113.0,3055.0,2835.0,268.0,10.0,260.0,5.0,116.0,11.0,414.0,1.0,202.0,546.0,0.0,7.0,290.0,0.0,499.0,66.0,0.0,0.0,0.0,9.0,34.0,486.0,160.0,1043.0,30.0,0.0,0.0,54.0,175.0,0.0,396.0,2.0,508.0,0.0,98.0,0.0,30.0,59.0,16.0,0.0,1787.0,5.0,615.0,0.0,68.0,109.0,2225.0,2569.0,187.0,109.0,6.0,56.0,467.0,85.0,745.0,68.0,0.0,2681.0,56.0,65.0,5245.0,448.0,1255.0,65.0,1444.0,1911.0,1.0,310.0,0.0,0.0,45.0,2018.0,0.0,21.0,0.0,550.0,58.0,31.0,1365.0,0.0,902.0,0.0,123.0,182.0,42.0,1911.0,46.0,452.0,5202.0,0.0,487.0,6093.0,1953.0,438.0,609.0,845.0,21.0,91.0,0.0,297.0,44.0,28.0,53.0,5433.0,50.0,0.0,1491.0,40.0,8.0,560.0,199.0,443.0,726.0,17.0,157.0,0.0,0.0,0.0,65.0,130.0,612.0,167.0,4651.0,2004.0,96.0,172.0,28.0,25.0,0.0,0.0,46.0,535.0,67.0,126.0,508.0,57.0,22.0,9.0,70.0,92.0,85.0,0.0,1016.0,113.0,89.0,40.0,0.0,0.0,271.0,291.0,0.0,143.0,97.0,94.0,80.0,93.0,228.0,1858.0,249.0,136.0,0.0,2320.0,0.0,3.0,304.0,32.0,1420.0,0.0,3.0,533.0,3.0,372.0,0.0,17.0,14.0,376.0,74.0,155.0,315.0,12.0,521.0,1551.0,49.0,1193.0,26.0,186.0,109.0,31.0,32.0,487.0,32.0,0.0,0.0,0.0,901.0,167.0,291.0,29.0,1.0,48.0,45.0,0.0,0.0,0.0,189.0,109.0,0.0,1422.0,546.0,136.0,0.0,0.0,47.0,96.0,3284.0,561.0,26.0,163.0,0.0,0.0,1597.0,12.0,1446.0,42.0,0.0,111.0,65.0,130.0,159.0,0.0,0.0,155.0,29.1036088475,2012-11-25,,2012-47,29.12514715168163,29.1036088475, +84,84,226.0,24.0,11.0,14.0,409.0,191.0,24.0,228.0,423.0,314.0,83.0,1929.0,0.0,13.0,67.0,7.0,76.0,20.0,280.0,96.0,0.0,104.0,158.0,241.0,158.0,692.0,52.0,10.0,0.0,54.0,21.0,165.0,1052.0,125.0,0.0,28.0,50.0,54.0,248.0,315.0,10.0,400.0,249.0,794.0,0.0,179.0,17.0,96.0,4724.0,172.0,196.0,1079.0,103.0,85.0,57.0,2.0,116.0,2949.0,2780.0,208.0,10.0,273.0,6.0,114.0,17.0,345.0,0.0,432.0,535.0,0.0,10.0,285.0,0.0,752.0,89.0,0.0,0.0,0.0,5.0,43.0,446.0,178.0,1066.0,30.0,0.0,0.0,32.0,194.0,0.0,374.0,2.0,526.0,0.0,144.0,1.0,41.0,48.0,11.0,0.0,1747.0,9.0,621.0,0.0,52.0,96.0,2290.0,2609.0,120.0,73.0,14.0,52.0,478.0,92.0,771.0,79.0,0.0,2702.0,97.0,85.0,5310.0,459.0,1165.0,56.0,1371.0,1765.0,0.0,276.0,0.0,0.0,28.0,2009.0,0.0,31.0,0.0,529.0,52.0,34.0,1456.0,0.0,727.0,0.0,104.0,127.0,47.0,2038.0,30.0,539.0,5572.0,0.0,515.0,6333.0,1860.0,489.0,573.0,865.0,17.0,96.0,0.0,308.0,40.0,31.0,51.0,5743.0,49.0,0.0,1434.0,30.0,12.0,480.0,225.0,424.0,677.0,14.0,166.0,0.0,0.0,0.0,73.0,148.0,643.0,140.0,6140.0,2049.0,96.0,190.0,28.0,8.0,0.0,0.0,39.0,549.0,49.0,143.0,448.0,67.0,19.0,12.0,79.0,102.0,90.0,0.0,1055.0,106.0,112.0,36.0,0.0,0.0,307.0,317.0,0.0,163.0,85.0,96.0,89.0,112.0,184.0,1903.0,260.0,170.0,0.0,2932.0,0.0,3.0,309.0,34.0,1301.0,0.0,2.0,547.0,1.0,126.0,2.0,19.0,16.0,336.0,81.0,124.0,277.0,13.0,550.0,1429.0,49.0,1150.0,24.0,196.0,65.0,21.0,38.0,430.0,18.0,0.0,0.0,0.0,841.0,109.0,269.0,17.0,0.0,35.0,25.0,0.0,0.0,0.0,156.0,73.0,0.0,1646.0,565.0,150.0,1.0,1.0,57.0,80.0,3296.0,508.0,32.0,181.0,0.0,0.0,1536.0,16.0,1371.0,38.0,0.0,109.0,57.0,165.0,166.0,0.0,0.0,120.0,32.424743217,2012-12-02,,2012-48,32.330469317506555,38.50477433406001, +85,85,200.0,24.0,14.0,21.0,423.0,185.0,24.0,154.0,395.0,272.0,65.0,1854.0,0.0,15.0,59.0,10.0,85.0,17.0,294.0,82.0,0.0,84.0,127.0,319.0,152.0,681.0,30.0,9.0,0.0,28.0,21.0,135.0,897.0,126.0,0.0,63.0,41.0,38.0,234.0,290.0,13.0,357.0,224.0,666.0,0.0,155.0,27.0,108.0,4666.0,203.0,194.0,1027.0,99.0,106.0,77.0,3.0,119.0,2978.0,2845.0,202.0,13.0,229.0,7.0,116.0,15.0,332.0,1.0,189.0,481.0,0.0,13.0,258.0,0.0,465.0,95.0,2.0,1.0,0.0,13.0,34.0,398.0,164.0,1078.0,46.0,0.0,0.0,29.0,199.0,0.0,351.0,2.0,460.0,0.0,147.0,1.0,61.0,73.0,11.0,0.0,1751.0,33.0,881.0,0.0,59.0,83.0,2228.0,2791.0,110.0,35.0,26.0,33.0,484.0,70.0,711.0,76.0,0.0,2271.0,105.0,48.0,5136.0,535.0,999.0,53.0,1401.0,1696.0,4.0,291.0,0.0,0.0,38.0,1801.0,0.0,35.0,0.0,541.0,73.0,28.0,1292.0,0.0,736.0,0.0,91.0,95.0,57.0,2495.0,47.0,502.0,5174.0,0.0,576.0,6697.0,2062.0,470.0,608.0,944.0,8.0,86.0,0.0,274.0,28.0,54.0,76.0,7255.0,52.0,0.0,1311.0,42.0,16.0,459.0,215.0,416.0,709.0,15.0,169.0,0.0,0.0,0.0,78.0,174.0,604.0,169.0,11149.0,1856.0,99.0,172.0,27.0,11.0,0.0,0.0,26.0,550.0,75.0,199.0,470.0,51.0,21.0,10.0,69.0,95.0,58.0,0.0,1098.0,115.0,102.0,47.0,0.0,0.0,316.0,317.0,0.0,156.0,90.0,101.0,75.0,108.0,427.0,1776.0,250.0,226.0,0.0,2371.0,3.0,22.0,346.0,51.0,1278.0,0.0,2.0,456.0,5.0,85.0,0.0,18.0,40.0,327.0,78.0,150.0,272.0,14.0,442.0,1347.0,32.0,1044.0,38.0,153.0,57.0,17.0,31.0,438.0,23.0,0.0,0.0,0.0,878.0,114.0,316.0,42.0,0.0,48.0,30.0,0.0,0.0,0.0,176.0,74.0,0.0,1674.0,495.0,130.0,0.0,2.0,72.0,149.0,3178.0,461.0,26.0,204.0,0.0,0.0,1529.0,10.0,1206.0,31.0,0.0,85.0,58.0,106.0,173.0,0.0,0.0,144.0,32.6199772649,2012-12-09,,2012-49,32.183132538089446,33.977583346580005, +86,86,244.0,20.0,10.0,11.0,402.0,177.0,20.0,151.0,439.0,268.0,76.0,2098.0,0.0,10.0,64.0,9.0,81.0,17.0,286.0,113.0,0.0,117.0,157.0,232.0,149.0,860.0,21.0,14.0,0.0,29.0,16.0,159.0,1075.0,122.0,0.0,44.0,55.0,54.0,191.0,390.0,14.0,259.0,221.0,655.0,0.0,143.0,14.0,117.0,4513.0,224.0,209.0,1023.0,104.0,97.0,76.0,0.0,134.0,3105.0,2467.0,207.0,11.0,254.0,5.0,128.0,18.0,388.0,0.0,116.0,513.0,0.0,13.0,294.0,0.0,444.0,47.0,97.0,0.0,0.0,4.0,40.0,439.0,189.0,1084.0,26.0,0.0,0.0,30.0,145.0,0.0,374.0,1.0,469.0,0.0,132.0,1.0,42.0,47.0,7.0,0.0,1471.0,8.0,592.0,0.0,73.0,129.0,2264.0,3166.0,106.0,50.0,13.0,57.0,498.0,79.0,785.0,113.0,0.0,2152.0,66.0,62.0,5422.0,525.0,1171.0,94.0,1664.0,2361.0,1.0,274.0,0.0,0.0,35.0,1722.0,0.0,19.0,0.0,489.0,65.0,30.0,1300.0,0.0,779.0,0.0,156.0,100.0,53.0,2441.0,41.0,446.0,4852.0,0.0,525.0,7902.0,2280.0,486.0,569.0,989.0,28.0,99.0,0.0,297.0,32.0,45.0,50.0,7522.0,52.0,0.0,1370.0,36.0,10.0,544.0,192.0,366.0,699.0,19.0,201.0,0.0,0.0,0.0,80.0,175.0,719.0,136.0,11106.0,2066.0,108.0,133.0,25.0,15.0,0.0,0.0,53.0,597.0,84.0,157.0,508.0,60.0,77.0,21.0,49.0,128.0,83.0,0.0,958.0,109.0,120.0,35.0,0.0,0.0,318.0,307.0,0.0,135.0,76.0,108.0,82.0,104.0,400.0,1825.0,282.0,145.0,0.0,3174.0,0.0,5.0,421.0,32.0,1403.0,0.0,1.0,534.0,2.0,65.0,0.0,20.0,18.0,277.0,76.0,180.0,250.0,10.0,657.0,1334.0,39.0,1070.0,37.0,204.0,61.0,29.0,38.0,399.0,20.0,0.0,0.0,0.0,924.0,98.0,308.0,24.0,0.0,69.0,56.0,0.0,0.0,0.0,171.0,99.0,0.0,1831.0,539.0,119.0,0.0,2.0,74.0,95.0,3684.0,464.0,28.0,177.0,0.0,0.0,1606.0,20.0,1293.0,46.0,0.0,106.0,66.0,140.0,146.0,0.0,0.0,137.0,41.2318506229,2012-12-16,,2012-50,41.59387159921716,49.46262388198, +87,87,254.0,21.0,17.0,15.0,389.0,186.0,25.0,171.0,352.0,239.0,56.0,1893.0,0.0,23.0,46.0,10.0,85.0,17.0,258.0,91.0,0.0,89.0,101.0,226.0,132.0,677.0,30.0,6.0,1.0,48.0,18.0,139.0,1033.0,156.0,0.0,36.0,67.0,54.0,248.0,294.0,12.0,229.0,182.0,635.0,0.0,129.0,16.0,114.0,4207.0,171.0,192.0,921.0,119.0,99.0,64.0,1.0,143.0,2975.0,2228.0,191.0,5.0,276.0,6.0,100.0,15.0,270.0,0.0,159.0,439.0,0.0,19.0,243.0,0.0,379.0,54.0,41.0,1.0,0.0,5.0,28.0,329.0,155.0,989.0,33.0,0.0,0.0,39.0,125.0,0.0,322.0,1.0,484.0,0.0,121.0,0.0,37.0,43.0,3.0,0.0,1500.0,15.0,518.0,0.0,41.0,88.0,2248.0,3663.0,104.0,67.0,11.0,41.0,308.0,64.0,673.0,123.0,0.0,1940.0,60.0,71.0,5249.0,544.0,833.0,76.0,1401.0,1511.0,2.0,219.0,0.0,0.0,39.0,1571.0,0.0,28.0,0.0,472.0,52.0,35.0,1104.0,0.0,523.0,0.0,106.0,198.0,64.0,2311.0,39.0,430.0,4857.0,0.0,456.0,8606.0,1867.0,449.0,573.0,993.0,22.0,122.0,0.0,291.0,33.0,42.0,55.0,8322.0,78.0,0.0,1160.0,28.0,16.0,518.0,231.0,458.0,593.0,17.0,118.0,0.0,0.0,0.0,64.0,190.0,640.0,162.0,10614.0,1742.0,86.0,120.0,16.0,26.0,0.0,0.0,41.0,591.0,35.0,121.0,361.0,61.0,34.0,25.0,85.0,85.0,70.0,0.0,836.0,91.0,98.0,37.0,0.0,0.0,371.0,330.0,0.0,132.0,70.0,100.0,98.0,122.0,336.0,1694.0,219.0,146.0,0.0,2742.0,0.0,3.0,363.0,47.0,1068.0,0.0,0.0,439.0,1.0,57.0,0.0,17.0,19.0,266.0,68.0,136.0,247.0,15.0,536.0,1329.0,27.0,955.0,31.0,132.0,68.0,73.0,24.0,392.0,29.0,0.0,0.0,0.0,743.0,98.0,313.0,26.0,0.0,34.0,41.0,0.0,0.0,0.0,175.0,101.0,0.0,1687.0,401.0,160.0,0.0,0.0,48.0,72.0,3658.0,448.0,15.0,91.0,0.0,0.0,1406.0,16.0,1323.0,43.0,0.0,52.0,48.0,105.0,123.0,0.0,0.0,206.0,51.4835084892,2012-12-23,,2012-51,51.24264768191624,53.99367957308, +88,88,232.0,18.0,9.0,28.0,325.0,159.0,10.0,154.0,321.0,205.0,77.0,1416.0,0.0,17.0,66.0,17.0,69.0,16.0,135.0,100.0,0.0,56.0,112.0,207.0,110.0,485.0,20.0,14.0,0.0,42.0,17.0,148.0,802.0,140.0,0.0,25.0,75.0,41.0,143.0,259.0,16.0,224.0,177.0,908.0,0.0,149.0,14.0,107.0,3261.0,197.0,154.0,867.0,92.0,81.0,35.0,2.0,108.0,3675.0,2676.0,176.0,15.0,209.0,6.0,102.0,13.0,279.0,1.0,136.0,348.0,0.0,13.0,186.0,0.0,304.0,36.0,107.0,0.0,0.0,12.0,39.0,1468.0,174.0,1026.0,24.0,0.0,0.0,26.0,136.0,0.0,294.0,3.0,420.0,0.0,111.0,0.0,47.0,42.0,8.0,0.0,1424.0,14.0,526.0,0.0,44.0,92.0,2311.0,4104.0,57.0,77.0,11.0,43.0,288.0,89.0,471.0,85.0,0.0,1641.0,61.0,32.0,5848.0,643.0,1109.0,68.0,1433.0,1148.0,0.0,160.0,0.0,0.0,40.0,1781.0,0.0,17.0,0.0,396.0,196.0,25.0,973.0,0.0,440.0,0.0,74.0,107.0,50.0,2546.0,22.0,481.0,4113.0,0.0,494.0,10106.0,2038.0,560.0,606.0,1027.0,19.0,82.0,0.0,325.0,33.0,23.0,37.0,10627.0,59.0,0.0,1218.0,36.0,11.0,567.0,116.0,549.0,482.0,20.0,131.0,0.0,0.0,0.0,36.0,226.0,742.0,109.0,12028.0,1601.0,80.0,111.0,22.0,52.0,0.0,0.0,33.0,544.0,48.0,72.0,320.0,81.0,37.0,37.0,93.0,100.0,83.0,0.0,709.0,88.0,67.0,42.0,0.0,0.0,232.0,211.0,0.0,79.0,94.0,75.0,65.0,64.0,385.0,1613.0,234.0,127.0,0.0,2198.0,0.0,5.0,268.0,46.0,1083.0,0.0,0.0,511.0,2.0,54.0,0.0,6.0,13.0,238.0,120.0,98.0,187.0,20.0,517.0,1298.0,34.0,917.0,18.0,135.0,61.0,20.0,39.0,350.0,22.0,0.0,0.0,0.0,633.0,74.0,222.0,33.0,0.0,37.0,39.0,0.0,0.0,0.0,177.0,92.0,0.0,1839.0,403.0,106.0,0.0,0.0,52.0,52.0,4427.0,465.0,25.0,86.0,0.0,0.0,1818.0,12.0,1335.0,56.0,0.0,96.0,45.0,117.0,74.0,0.0,0.0,242.0,61.4206744847,2012-12-30,,2012-52,62.18389971166711,81.45273193612, +89,89,223.0,23.0,17.0,16.0,379.0,237.0,17.0,171.0,403.0,265.0,70.0,1686.0,2.0,17.0,79.0,9.0,93.0,14.0,184.0,105.0,0.0,119.0,173.0,278.0,110.0,659.0,50.0,15.0,0.0,28.0,18.0,155.0,1077.0,200.0,0.0,30.0,77.0,51.0,215.0,337.0,18.0,273.0,200.0,675.0,0.0,164.0,22.0,177.0,3667.0,233.0,265.0,2280.0,103.0,89.0,54.0,4.0,141.0,3633.0,2593.0,227.0,15.0,303.0,3.0,166.0,15.0,382.0,6.0,92.0,509.0,0.0,23.0,327.0,0.0,381.0,71.0,59.0,87.0,0.0,10.0,38.0,650.0,205.0,1225.0,45.0,0.0,0.0,41.0,130.0,111.0,398.0,1.0,517.0,0.0,238.0,1.0,33.0,43.8,8.0,0.0,1576.0,11.0,550.0,5.0,71.0,108.0,2337.0,5679.0,111.0,145.0,13.0,43.0,334.0,67.0,582.0,120.0,0.0,2201.5,76.0,61.0,5509.0,694.0,1106.0,103.0,1618.0,1621.0,1.0,235.0,4.0,0.0,44.0,1821.0,1.0,19.0,3.0,481.0,104.0,32.0,1169.0,2.0,605.0,0.0,117.0,120.0,50.0,2336.0,35.0,538.0,5099.0,0.0,554.0,10140.0,2148.0,526.0,708.0,1138.0,17.0,88.0,0.0,380.0,30.0,47.0,68.0,11302.0,53.0,0.0,1261.0,37.0,15.0,810.0,154.0,492.0,484.0,14.0,169.0,0.0,0.0,0.0,59.0,231.0,704.0,212.0,7760.0,1990.0,110.0,126.0,35.0,21.0,0.0,0.0,42.0,654.0,59.0,127.0,418.0,91.0,43.0,20.0,87.0,77.0,91.0,0.0,898.0,95.0,69.0,38.0,0.0,0.0,343.0,289.0,0.0,153.0,69.0,92.0,96.0,94.0,289.0,1275.0,260.0,121.0,51.0,1674.0,5.0,3.0,379.0,50.0,1101.0,0.0,1.0,541.0,2.0,62.0,0.0,19.0,16.0,297.0,100.0,176.0,246.0,7.0,638.0,1585.0,55.0,1281.0,26.0,174.0,58.0,17.0,41.0,412.0,20.0,0.0,0.0,0.0,791.0,135.0,282.0,25.0,0.0,35.0,47.0,1.0,0.0,0.0,202.0,197.0,0.0,1868.0,450.0,115.0,0.0,0.0,71.0,45.0,4110.0,557.0,34.0,159.0,0.0,0.0,1603.0,18.0,1473.0,54.0,0.0,95.0,61.0,106.0,117.0,0.0,0.0,204.0,82.1368378384,2013-01-13,,2013-2,81.33333434485827,64.67769932758, +90,90,231.0,36.0,13.0,14.0,590.0,229.0,29.0,216.0,443.0,359.0,79.0,2163.0,0.0,21.0,76.0,7.0,96.0,6.0,362.0,110.0,0.0,116.0,154.0,259.0,175.0,871.0,23.0,18.0,0.0,49.0,22.0,156.0,1325.0,173.0,0.0,41.0,96.0,66.0,359.0,496.0,21.0,416.0,283.0,822.0,0.0,189.0,16.0,150.0,5500.0,214.0,276.0,1094.0,125.0,72.0,73.0,0.0,154.0,3708.0,2861.0,240.0,12.0,337.0,5.0,114.0,7.0,427.0,0.0,183.0,717.0,0.0,65.0,312.0,0.0,611.0,73.0,81.0,1.0,0.0,11.0,38.0,706.0,210.0,1362.0,85.0,0.0,0.0,62.0,121.0,1.0,420.0,2.0,566.0,0.0,138.0,0.0,50.0,45.6,8.0,0.0,1899.0,5.0,782.0,0.0,76.0,143.0,2496.0,9172.0,172.0,162.0,14.0,58.0,488.0,123.0,806.0,144.0,0.0,2762.0,105.0,52.0,5943.0,646.0,1251.0,182.0,1720.0,2253.0,2.0,375.0,0.0,0.0,34.0,2277.0,0.0,26.0,0.0,645.0,87.0,40.0,1620.0,0.0,928.0,0.0,134.0,272.0,55.0,2373.0,57.0,650.0,6759.0,0.0,572.0,10444.0,1993.0,546.0,1402.0,1144.0,19.0,108.0,0.0,389.0,39.0,38.0,74.0,11059.0,60.0,0.0,1485.0,58.0,9.0,6334.0,200.0,468.0,674.0,20.0,180.0,0.0,0.0,0.0,102.0,227.0,748.0,263.0,6299.0,2598.0,129.0,176.0,27.0,24.0,0.0,0.0,32.0,779.0,77.0,188.0,543.0,119.0,29.0,17.0,92.0,120.0,98.0,0.0,1185.0,114.0,127.0,57.0,0.0,0.0,360.0,468.0,0.0,225.0,86.0,129.0,95.0,105.0,288.0,1373.0,264.0,148.0,1.0,1636.0,1.0,5.0,479.0,63.0,1502.0,0.0,2.0,705.0,1.0,101.0,0.0,18.0,32.0,367.0,102.0,159.0,353.0,8.0,980.0,1610.0,69.0,1574.0,31.0,201.0,105.0,20.0,37.0,530.0,33.0,0.0,0.0,0.0,1027.0,193.0,325.0,24.0,0.0,40.0,46.0,0.0,0.0,0.0,203.0,247.0,0.0,1862.0,643.0,147.0,0.0,0.0,69.0,79.0,3791.0,570.0,37.0,164.0,0.0,0.0,1789.0,13.0,1723.0,79.0,0.0,153.0,59.0,134.0,185.0,0.0,0.0,218.0,108.4101238377,2013-01-20,,2013-3,108.42063113727062,104.78326243686, +91,91,255.0,26.0,10.0,13.0,579.0,272.0,21.0,202.0,448.0,307.0,74.0,2376.0,0.0,21.0,86.0,14.0,102.0,13.0,279.0,115.0,0.0,113.0,168.0,259.0,181.0,1124.0,18.0,9.0,0.0,90.0,22.0,199.0,1336.0,182.0,0.0,39.0,104.0,87.0,251.0,499.0,4.0,466.0,266.0,921.0,0.0,196.0,16.0,167.0,5611.0,302.0,282.0,1207.0,106.0,102.0,86.0,7.0,155.0,3234.0,2717.0,238.0,10.0,338.0,3.0,101.0,14.0,428.0,0.0,150.0,873.0,0.0,32.0,293.0,0.0,568.0,113.0,76.0,0.0,0.0,15.0,61.0,562.0,219.0,1316.0,47.0,0.0,0.0,66.0,127.0,0.0,438.0,2.0,578.0,0.0,185.0,2.0,62.0,47.4,11.0,0.0,2041.0,13.0,698.0,0.0,75.0,158.0,2327.0,8299.0,117.0,126.0,7.0,44.0,658.0,98.0,835.0,200.0,0.0,2761.0,88.0,70.0,5828.0,602.0,1287.0,126.0,1742.0,2274.0,1.0,379.0,0.0,0.0,34.0,2232.0,0.0,32.0,0.0,628.0,100.0,41.0,1419.0,0.0,841.0,0.0,116.0,364.0,45.0,2365.0,50.0,520.0,6352.0,0.0,499.0,10920.0,2816.0,613.0,903.0,1274.0,25.0,155.0,0.0,395.0,35.0,40.0,67.0,10360.0,78.0,0.0,1565.0,36.0,18.0,2216.0,200.0,435.0,614.0,14.0,177.0,0.0,0.0,0.0,85.0,210.0,914.0,248.0,4712.0,2516.0,123.0,152.0,33.0,25.0,0.0,0.0,44.0,801.0,86.0,191.0,658.0,132.0,26.0,17.0,87.0,97.0,107.0,0.0,1213.0,86.0,155.0,80.0,0.0,0.0,414.0,372.0,0.0,213.0,68.0,132.0,128.0,109.0,226.0,1769.0,296.0,209.0,0.0,1248.0,0.0,2.0,559.0,49.0,1513.0,0.0,4.0,616.0,1.0,119.0,0.0,11.0,20.0,324.0,257.0,182.0,299.0,17.0,614.0,1608.0,36.0,1381.0,47.0,201.0,69.0,37.0,46.0,481.0,23.0,0.0,0.0,0.0,1019.0,171.0,374.0,30.0,0.0,53.0,44.0,0.0,0.0,0.0,194.0,308.0,0.0,1807.0,529.0,181.0,0.0,0.0,101.0,92.0,3624.0,519.0,27.0,186.0,0.0,0.0,1978.0,15.0,1608.0,52.0,0.0,109.0,63.0,136.0,166.0,0.0,0.0,170.0,82.3857169183,2013-01-27,,2013-4,82.56521973309869,87.59059830218001, +92,92,270.0,21.0,18.0,11.0,514.0,305.0,24.0,251.0,359.0,309.0,70.0,2257.0,0.0,17.0,74.0,15.0,109.0,9.0,361.0,141.0,1.0,118.0,151.0,236.0,204.0,1155.0,37.0,6.0,0.0,57.0,20.0,221.0,1424.0,159.0,0.0,35.0,89.0,103.0,285.0,425.0,21.0,486.0,334.0,740.0,0.0,182.0,19.0,145.0,5302.0,347.0,244.0,1173.0,134.0,105.0,73.0,0.0,153.0,3426.0,2449.0,251.0,8.0,292.0,4.0,96.0,15.0,436.0,0.0,117.0,744.0,0.0,28.0,308.0,0.0,604.0,133.0,64.0,1.0,0.0,5.0,29.0,622.0,176.0,1420.0,38.0,0.0,0.0,44.0,110.0,1.0,405.0,4.0,522.0,0.0,143.0,0.0,49.0,49.2,12.0,0.0,1786.0,10.0,740.0,0.0,62.0,140.0,2443.0,9505.0,102.0,155.0,16.0,29.0,550.0,88.0,823.0,177.0,0.0,2745.0,102.0,72.0,5985.0,722.0,2038.0,108.0,1689.0,2332.0,0.0,607.0,0.0,0.0,36.0,2124.0,0.0,36.0,0.0,615.0,100.0,54.0,1602.0,0.0,951.0,0.0,102.0,153.0,47.0,2408.0,30.0,519.0,6340.0,0.0,517.0,13339.0,2794.0,724.0,724.0,1420.0,15.0,130.0,0.0,454.0,30.0,48.0,47.0,12190.0,50.0,0.0,1638.0,19.0,12.0,2130.0,192.0,451.0,650.0,19.0,198.0,0.0,0.0,0.0,70.0,268.0,942.0,240.0,6717.0,2459.0,94.0,186.0,36.0,12.0,0.0,0.0,54.0,726.0,56.0,222.0,585.0,88.0,34.0,24.0,114.0,327.0,92.0,0.0,1568.0,102.0,121.0,113.0,0.0,0.0,387.0,365.0,0.0,185.0,68.0,138.0,99.0,111.0,357.0,1929.0,307.0,176.0,0.0,1148.0,0.0,5.0,400.0,39.0,1753.0,0.0,3.0,613.0,3.0,126.0,1.0,19.0,14.0,334.0,150.0,200.0,371.0,37.0,736.0,1554.0,42.0,1287.0,36.0,201.0,90.0,23.0,42.0,452.0,32.0,0.0,0.0,0.0,1020.0,133.0,402.0,24.0,0.0,39.0,39.0,0.0,0.0,0.0,175.0,233.0,0.0,2110.0,572.0,155.0,1.0,0.0,142.0,87.0,4312.0,519.0,69.0,235.0,0.0,0.0,2141.0,13.0,1745.0,35.0,0.0,98.0,78.0,125.0,151.0,0.0,0.0,179.0,113.9462771323,2013-02-03,,2013-5,113.75743945152234,99.0741674421, +93,93,310.0,28.0,12.0,14.0,524.0,283.0,20.0,220.0,356.0,316.0,56.0,2278.0,13.0,22.0,69.0,9.0,83.0,13.0,311.0,94.0,0.0,135.0,177.0,292.0,183.0,918.0,39.0,13.0,0.0,62.0,26.0,184.0,1320.0,148.0,0.0,46.0,113.0,107.0,285.0,416.0,24.0,348.0,245.0,675.0,0.0,182.0,29.0,135.0,5098.0,297.0,229.0,1173.0,125.0,99.0,88.0,2.0,130.0,3039.0,2121.0,233.0,12.0,286.0,11.0,124.0,12.0,423.0,0.0,155.0,658.0,0.0,26.0,282.0,0.0,485.0,120.0,66.0,0.0,0.0,9.0,37.0,556.0,217.0,1288.0,37.0,0.0,0.0,45.0,160.0,0.0,454.0,4.0,481.0,0.0,175.0,0.0,60.0,51.0,8.0,0.0,1858.0,10.0,665.0,19.0,78.0,121.0,2309.0,10890.0,107.0,180.0,9.0,47.0,498.0,61.0,735.0,223.0,0.0,3119.0,98.0,95.0,6266.0,691.0,1470.0,121.0,1772.0,2763.0,2.0,368.0,0.0,0.0,31.0,2051.0,0.0,28.0,0.0,636.0,64.0,40.0,1452.0,0.0,878.0,0.0,143.0,207.0,60.0,2736.0,37.0,645.0,7981.0,0.0,484.0,14464.0,2123.0,787.0,725.0,1300.0,27.0,116.0,0.0,379.0,41.0,50.0,130.0,13436.0,66.0,0.0,1621.0,53.0,11.0,1805.0,226.0,467.0,738.0,23.0,179.0,0.0,0.0,0.0,102.0,263.0,790.0,306.0,5619.0,2253.0,124.0,167.0,35.0,25.0,0.0,0.0,45.0,654.0,56.0,187.0,618.0,60.0,38.0,19.0,109.0,177.0,132.0,0.0,1295.0,99.0,128.0,84.0,0.0,0.0,344.0,337.0,0.0,212.0,86.0,149.0,100.0,111.0,243.0,1902.0,279.0,155.0,0.0,991.0,0.0,5.0,403.0,44.0,1819.0,0.0,1.0,597.0,1.0,91.0,1.0,17.0,23.0,318.0,69.0,138.0,300.0,21.0,664.0,1548.0,42.0,1579.0,49.0,171.0,72.0,27.0,43.0,501.0,26.0,0.0,0.0,0.0,951.0,158.0,392.0,28.0,0.0,38.0,35.0,0.0,0.0,0.0,175.0,179.0,0.0,2160.0,673.0,145.0,0.0,0.0,69.0,64.0,5001.0,500.0,35.0,182.0,0.0,0.0,2030.0,12.0,1681.0,71.0,0.0,105.0,46.0,153.0,163.0,0.0,0.0,173.0,153.4919416731,2013-02-10,,2013-6,153.6463320930249,134.44284241578, +94,94,262.0,19.0,12.0,17.0,378.0,235.0,19.0,378.0,375.0,278.0,85.0,1954.0,6.0,13.0,64.0,14.0,68.0,13.0,262.0,81.0,0.0,99.0,124.0,268.0,120.0,700.0,28.0,11.0,0.0,59.0,13.0,129.0,992.0,107.0,0.0,42.0,106.0,44.0,280.0,405.0,18.0,278.0,226.0,540.0,0.0,144.0,19.0,82.0,4897.0,242.0,252.0,1142.0,132.0,113.0,77.0,3.0,139.0,2613.0,2090.0,195.0,10.0,274.0,3.0,124.0,13.0,390.0,0.0,97.0,601.0,0.0,20.0,250.0,0.0,590.0,67.0,83.0,0.0,0.0,17.0,26.0,477.0,186.0,1250.0,36.0,0.0,0.0,17.0,98.0,0.0,382.0,4.0,424.0,0.0,124.0,2.0,46.0,45.0,8.0,0.0,1789.0,15.0,583.0,53.0,64.0,116.0,2356.0,10540.0,106.0,214.0,11.0,49.0,413.0,53.0,607.0,227.0,0.0,2762.0,74.0,102.0,5852.0,652.0,1064.0,116.0,1880.0,4569.0,3.0,310.0,0.0,0.0,26.0,1868.0,0.0,20.0,0.0,515.0,72.0,29.0,1436.0,0.0,919.0,0.0,78.0,143.0,53.0,2741.0,46.0,530.0,7400.0,0.0,410.0,10452.0,1847.0,627.0,639.0,1026.0,21.0,116.0,0.0,413.0,30.0,38.0,72.0,12999.0,49.0,0.0,2176.0,45.0,13.0,1772.0,185.0,424.0,528.0,14.0,138.0,0.0,0.0,0.0,83.0,257.0,663.0,217.0,3980.0,1884.0,116.0,121.0,31.0,17.0,0.0,0.0,28.0,555.0,89.0,238.0,507.0,54.0,22.0,16.0,75.0,135.0,94.0,0.0,1131.0,116.0,88.0,85.0,0.0,0.0,285.0,292.0,0.0,169.0,107.0,127.0,92.0,92.0,179.0,1775.0,250.0,123.0,0.0,647.0,0.0,6.0,254.0,25.0,1375.0,0.0,5.0,556.0,0.0,82.0,0.0,33.0,19.0,408.0,89.0,152.0,265.0,12.0,599.0,1284.0,49.0,1550.0,26.0,162.0,77.0,22.0,52.0,452.0,29.0,0.0,0.0,0.0,736.0,201.0,304.0,37.0,0.0,50.0,33.0,0.0,0.0,0.0,133.0,269.0,0.0,2020.0,741.0,157.0,0.0,0.0,81.0,61.0,4059.0,433.0,33.0,164.0,0.0,0.0,1818.0,17.0,1748.0,53.0,0.0,101.0,64.0,147.0,193.0,0.0,0.0,205.0,129.3526701413,2013-02-17,,2013-7,129.9720203766995,129.954928506, +95,95,287.0,24.0,9.0,8.0,318.0,250.0,17.0,156.0,309.0,342.0,71.0,1618.0,3.0,9.0,52.0,6.0,69.0,16.0,253.0,102.0,0.0,105.0,122.0,249.0,108.0,752.0,23.0,5.0,0.0,67.0,11.0,136.0,942.0,111.0,0.0,40.0,103.0,27.0,243.0,406.0,11.0,335.0,230.0,659.0,0.0,159.0,16.0,101.0,3987.0,257.0,214.0,1112.0,164.0,106.0,57.0,3.0,141.0,2335.0,2171.0,201.0,17.0,272.0,8.0,113.0,13.0,403.0,0.0,974.0,498.0,0.0,16.0,216.0,0.0,558.0,40.0,63.0,0.0,0.0,11.0,31.0,540.0,146.0,1262.0,23.0,0.0,0.0,20.0,126.0,0.0,403.0,2.0,423.0,0.0,133.0,2.0,43.0,46.0,7.0,0.0,1756.0,9.0,602.0,23.0,42.0,106.0,2241.0,9726.0,90.0,194.0,11.0,45.0,354.0,66.0,633.0,215.0,0.0,2145.0,78.0,65.0,6177.0,765.0,1061.0,114.0,1758.0,2106.0,3.0,296.0,0.0,0.0,35.0,1890.0,0.0,17.0,0.0,570.0,78.0,29.0,1417.0,0.0,710.0,0.0,152.0,104.0,43.0,3295.0,41.0,564.0,7107.0,0.0,422.0,8394.0,1822.0,616.0,642.0,1104.0,26.0,146.0,0.0,363.0,24.0,33.0,69.0,13270.0,49.0,0.0,1607.0,37.0,13.0,1391.0,148.0,505.0,488.0,20.0,112.0,0.0,0.0,0.0,76.0,253.0,712.0,155.0,3737.0,2022.0,93.0,129.0,20.0,9.0,0.0,0.0,36.0,640.0,48.0,185.0,376.0,48.0,24.0,28.0,87.0,160.0,104.0,0.0,1026.0,91.0,83.0,43.0,0.0,0.0,294.0,231.0,0.0,175.0,81.0,98.0,79.0,89.0,188.0,1680.0,199.0,104.0,0.0,579.0,0.0,4.0,274.0,35.0,1225.0,0.0,1.0,583.0,0.0,304.0,0.0,13.0,16.0,595.0,113.0,107.0,317.0,14.0,534.0,1369.0,32.0,1508.0,23.0,166.0,64.0,22.0,36.0,408.0,33.0,0.0,0.0,0.0,802.0,117.0,513.0,26.0,0.0,42.0,33.0,0.0,0.0,0.0,128.0,193.0,0.0,2315.0,808.0,104.0,0.0,1.0,62.0,46.0,4514.0,484.0,23.0,94.0,0.0,0.0,1831.0,16.0,1658.0,37.0,0.0,109.0,43.0,128.0,171.0,0.0,0.0,192.0,123.714385952,2013-02-24,,2013-8,123.04866730434318,123.714385952, +96,96,254.0,17.0,15.0,14.0,373.0,262.0,32.0,132.0,354.0,249.0,74.0,1646.0,4.0,16.0,38.0,2.0,86.0,20.0,276.0,69.0,0.0,96.0,142.0,255.0,124.0,707.0,26.0,4.0,0.0,38.0,21.0,145.0,948.0,127.0,0.0,66.0,87.0,46.0,235.0,368.0,10.0,313.0,196.0,647.0,0.0,179.0,16.0,117.0,4368.0,247.0,248.0,1273.0,160.0,121.0,55.0,3.0,131.0,2703.0,2588.0,240.0,18.0,290.0,6.0,110.0,13.0,447.0,0.0,350.0,520.0,0.0,17.0,256.0,0.0,516.0,79.0,80.0,1.0,0.0,10.0,32.0,508.0,161.0,1130.0,28.0,0.0,0.0,23.0,122.0,0.0,372.0,3.0,522.0,0.0,185.0,1.0,45.0,47.0,12.0,0.0,1949.0,14.0,710.0,41.0,53.0,81.0,2213.0,8954.0,123.0,156.0,9.0,41.0,449.0,80.0,678.0,290.0,0.0,2449.0,76.0,50.0,6363.0,587.0,970.0,100.0,1906.0,1874.0,0.0,345.0,0.0,0.0,55.0,1901.0,0.0,30.0,0.0,616.0,66.0,55.0,1338.0,0.0,796.0,0.0,102.0,130.0,81.0,2510.0,36.0,510.0,7987.0,0.0,453.0,8601.0,2000.0,529.0,717.0,1149.0,16.0,88.0,0.0,388.0,29.0,28.0,67.0,12704.0,44.0,0.0,1546.0,26.0,22.0,1556.0,171.0,402.0,757.0,16.0,140.0,0.0,0.0,0.0,73.0,259.0,773.0,257.0,3540.0,1896.0,121.0,191.0,35.0,18.0,0.0,0.0,40.0,625.0,59.0,169.0,425.0,53.0,49.0,16.0,87.0,99.0,86.0,0.0,1097.0,84.0,87.0,63.0,0.0,0.0,291.0,313.0,0.0,200.0,88.0,89.0,71.0,107.0,228.0,1412.0,232.0,137.0,0.0,560.0,0.0,1.0,250.0,48.0,1340.0,0.0,3.0,561.0,1.0,134.0,0.0,14.0,17.0,410.0,98.0,119.0,276.0,9.0,590.0,1525.0,37.0,1378.0,66.0,167.0,60.0,29.0,43.0,443.0,19.0,0.0,0.0,0.0,914.0,147.0,287.0,21.0,0.0,46.0,33.0,0.0,0.0,0.0,148.0,241.0,0.0,2344.0,747.0,145.0,0.0,1.0,40.0,52.0,3594.0,494.0,21.0,112.0,0.0,0.0,1678.0,9.0,1714.0,41.0,0.0,93.0,48.0,98.0,182.0,0.0,0.0,161.0,132.36396196479998,2013-03-03,,2013-9,132.59353296600193,120.6223227108, +97,97,225.0,24.0,19.0,13.0,378.0,290.0,19.0,198.0,395.0,301.0,72.0,1769.0,8.0,25.0,56.0,15.0,71.0,14.0,319.0,85.0,0.0,109.0,135.0,232.0,124.0,805.0,56.0,5.0,0.0,51.0,67.0,182.0,1027.0,200.0,0.0,40.0,97.0,47.0,276.0,431.0,21.0,308.0,243.0,616.0,0.0,173.0,20.0,95.0,4707.0,326.0,179.0,1063.0,129.0,122.0,56.0,4.0,176.0,4137.0,2303.0,268.0,16.0,250.0,1.0,179.0,8.0,403.0,0.0,174.0,564.0,0.0,39.0,299.0,0.0,434.0,71.0,79.0,1.0,0.0,12.0,34.0,568.0,195.0,965.0,52.0,0.0,0.0,26.0,151.0,0.0,439.0,4.0,593.0,0.0,157.0,0.0,30.0,47.0,8.0,0.0,1955.0,12.0,965.0,25.0,54.0,119.0,2168.0,6351.0,102.0,201.0,13.0,46.0,463.0,86.0,779.0,267.0,0.0,3323.0,100.0,56.0,5690.0,521.0,1047.0,91.0,1751.0,2143.0,2.0,332.0,0.0,0.0,28.0,2233.0,0.0,24.0,0.0,675.0,74.0,40.0,1387.0,0.0,936.0,0.0,149.0,146.0,62.0,1947.0,49.0,571.0,6717.0,0.0,526.0,8195.0,2576.0,753.0,739.0,1472.0,21.0,121.0,0.0,400.0,48.0,36.0,76.0,9995.0,57.0,0.0,1512.0,61.0,22.0,4090.0,219.0,429.0,511.0,16.0,175.0,0.0,0.0,0.0,66.0,234.0,723.0,242.0,3269.0,2574.0,108.0,180.0,31.0,19.0,0.0,0.0,34.0,625.0,51.0,186.0,508.0,74.0,28.0,10.0,62.0,64.0,80.0,0.0,1191.0,163.0,118.0,79.0,0.0,0.0,390.0,276.0,0.0,227.0,118.0,111.0,106.0,106.0,181.0,1521.0,265.0,163.0,0.0,645.0,0.0,6.0,299.0,74.0,1340.0,0.0,2.0,556.0,4.0,71.0,0.0,16.0,21.0,455.0,127.0,153.0,322.0,16.0,658.0,1620.0,53.0,1301.0,49.0,205.0,77.0,31.0,58.0,441.0,22.0,0.0,0.0,0.0,965.0,124.0,319.0,28.0,0.0,43.0,43.0,0.0,0.0,0.0,174.0,211.0,0.0,2027.0,908.0,100.0,0.0,0.0,49.0,71.0,3553.0,568.0,272.0,140.0,0.0,0.0,1553.0,13.0,1708.0,36.0,0.0,135.0,33.0,100.0,202.0,0.0,0.0,145.0,116.5491028328,2013-03-10,,2013-10,116.61941718912038,106.58578414810002, +98,98,250.0,31.0,14.0,15.0,455.0,268.0,24.0,203.0,479.0,288.0,76.0,1739.0,9.0,14.0,54.0,8.0,79.0,15.0,308.0,83.0,0.0,114.0,177.0,237.0,128.0,711.0,26.0,11.0,0.0,75.0,33.0,164.0,1054.0,107.0,0.0,42.0,67.0,76.0,235.0,585.0,15.0,309.0,220.0,767.0,1.0,171.0,26.0,101.0,4892.0,323.0,156.0,1114.0,162.0,105.0,65.0,2.0,146.0,3862.0,1823.0,264.0,18.0,297.0,4.0,175.0,16.0,369.0,0.0,162.0,559.0,0.0,31.0,302.0,0.0,447.0,72.0,81.0,0.0,0.0,13.0,36.0,490.0,191.0,1010.0,28.0,0.0,0.0,42.0,108.0,0.0,448.0,1.0,601.0,0.0,160.0,1.0,56.0,56.0,9.0,0.0,1675.0,7.0,695.0,27.0,52.0,106.0,1906.0,4798.0,108.0,182.0,16.0,34.0,585.0,88.0,803.0,233.0,0.0,3403.0,99.0,47.0,5010.0,574.0,1075.0,87.0,1835.0,1993.0,1.0,391.0,0.0,0.0,31.0,2280.0,0.0,31.0,0.0,699.0,82.0,43.0,1397.0,0.0,859.0,0.0,159.0,361.0,51.0,2035.0,35.0,644.0,7113.0,0.0,583.0,7495.0,2539.0,663.0,752.0,1178.0,24.0,126.0,0.0,375.0,37.0,36.0,63.0,8629.0,70.0,0.0,1572.0,42.0,18.0,2005.0,215.0,464.0,586.0,17.0,176.0,0.0,0.0,0.0,61.0,195.0,720.0,180.0,7954.0,2526.0,128.0,169.0,41.0,23.0,0.0,0.0,23.0,708.0,58.0,193.0,542.0,65.0,44.0,22.0,80.0,71.0,121.0,0.0,1183.0,154.0,85.0,77.0,0.0,0.0,322.0,297.0,0.0,238.0,98.0,89.0,116.0,121.0,327.0,1400.0,267.0,190.0,0.0,514.0,0.0,12.0,307.0,36.0,1394.0,0.0,2.0,543.0,7.0,78.0,0.0,18.0,22.0,371.0,123.0,141.0,309.0,15.0,530.0,1670.0,48.0,1378.0,52.0,183.0,75.0,28.0,51.0,544.0,20.0,0.0,0.0,0.0,963.0,120.0,297.0,35.0,0.0,36.0,33.0,0.0,0.0,0.0,189.0,150.0,0.0,1876.0,871.0,133.0,0.0,1.0,54.0,92.0,3540.0,609.0,76.0,135.0,0.0,0.0,1372.0,22.0,1833.0,42.0,0.0,142.0,64.0,119.0,273.0,0.0,0.0,139.0,109.17831847040001,2013-03-17,,2013-11,108.28984753624854,102.16331353066, +99,99,235.0,25.0,16.0,14.0,446.0,310.0,21.0,192.0,474.0,280.0,85.0,1899.0,4.0,16.0,71.0,8.0,115.0,18.0,279.0,103.0,0.0,108.0,170.0,236.0,129.0,864.0,32.0,13.0,0.0,78.0,23.0,189.0,1191.0,115.0,0.0,65.0,91.0,52.0,229.0,589.0,20.0,277.0,235.0,727.0,0.0,176.0,20.0,107.0,4936.0,264.0,197.0,1063.0,153.0,105.0,97.0,6.0,143.0,3293.0,1756.0,234.0,11.0,527.0,6.0,106.0,20.0,411.0,0.0,224.0,611.0,0.0,24.0,274.0,0.0,481.0,54.0,89.0,1.0,0.0,15.0,43.0,461.0,173.0,1007.0,32.0,0.0,0.0,21.0,131.0,1.0,451.0,2.0,490.0,0.0,173.0,0.0,39.0,42.0,11.0,0.0,1869.0,17.0,692.0,39.0,62.0,98.0,2014.0,4157.0,117.0,164.0,12.0,37.0,497.0,91.0,801.0,265.0,0.0,3675.0,123.0,47.0,4562.0,466.0,1158.0,77.0,1704.0,1974.0,2.0,423.0,0.0,0.0,33.0,2301.0,0.0,27.0,0.0,639.0,105.0,30.0,1416.0,0.0,874.0,0.0,146.0,145.0,54.0,2176.0,31.0,651.0,6710.0,0.0,586.0,6305.0,2278.0,535.0,706.0,1076.0,13.0,106.0,0.0,352.0,31.0,21.0,101.0,7298.0,54.0,0.0,1669.0,38.0,10.0,1425.0,177.0,423.0,556.0,21.0,209.0,0.0,0.0,0.0,85.0,193.0,772.0,178.0,5557.0,2467.0,140.0,187.0,26.0,8.0,0.0,0.0,42.0,704.0,68.0,177.0,606.0,75.0,45.0,20.0,96.0,74.0,165.0,0.0,1189.0,204.0,92.0,67.0,0.0,0.0,346.0,369.0,0.0,192.0,127.0,147.0,77.0,102.0,259.0,1676.0,259.0,131.0,0.0,511.0,1.0,2.0,320.0,44.0,1422.0,0.0,0.0,468.0,7.0,110.0,1.0,24.0,12.0,386.0,136.0,146.0,333.0,17.0,647.0,1646.0,45.0,1185.0,103.0,288.0,72.0,28.0,40.0,560.0,35.0,0.0,0.0,0.0,1032.0,134.0,321.0,24.0,0.0,38.0,25.0,0.0,0.0,0.0,166.0,164.0,0.0,1709.0,750.0,132.0,0.0,2.0,48.0,90.0,3551.0,622.0,27.0,179.0,0.0,0.0,1473.0,13.0,1475.0,58.0,0.0,98.0,48.0,93.0,187.0,0.0,0.0,101.0,67.129314646,2013-03-24,,2013-12,67.56513397801423,64.16371967452, +100,100,301.0,18.0,17.0,12.0,552.0,332.0,20.0,197.0,429.0,319.0,72.0,1898.0,4.0,23.0,80.0,17.0,105.0,13.0,317.0,116.0,0.0,125.0,154.0,266.0,145.0,942.0,26.0,14.0,1.0,64.0,19.0,169.0,1142.0,121.0,0.0,37.0,57.0,69.0,273.0,514.0,15.0,278.0,260.0,721.0,0.0,198.0,28.0,118.0,4648.0,299.0,207.0,1176.0,158.0,451.0,76.0,2.0,157.0,3142.0,1840.0,290.0,18.0,335.0,6.0,177.0,10.0,403.0,1.0,173.0,726.0,0.0,20.0,346.0,0.0,586.0,71.0,88.0,1.0,0.0,10.0,48.0,544.0,167.0,1042.0,66.0,0.0,0.0,43.0,164.0,0.0,407.0,4.0,571.0,0.0,178.0,0.0,25.0,49.0,6.0,0.0,1800.0,9.0,674.0,30.0,70.0,128.0,2064.0,3461.0,63.0,242.0,6.0,29.0,507.0,78.0,786.0,301.0,0.0,3070.0,113.0,57.0,4846.0,419.0,1145.0,52.0,1422.0,1934.0,1.0,499.0,0.0,0.0,31.0,2481.0,0.0,28.0,0.0,585.0,73.0,34.0,1438.0,0.0,777.0,0.0,99.0,150.0,56.0,2868.0,46.0,647.0,7104.0,0.0,631.0,6283.0,2445.0,591.0,735.0,1197.0,18.0,104.0,0.0,427.0,41.0,31.0,78.0,5709.0,42.0,0.0,1607.0,56.0,14.0,1059.0,177.0,468.0,684.0,16.0,192.0,0.0,0.0,0.0,82.0,159.0,790.0,183.0,4815.0,2457.0,152.0,184.0,34.0,40.0,0.0,0.0,37.0,790.0,62.0,177.0,469.0,68.0,41.0,25.0,73.0,43.0,88.0,0.0,1157.0,168.0,146.0,70.0,0.0,0.0,353.0,354.0,0.0,242.0,130.0,102.0,89.0,114.0,247.0,1380.0,260.0,133.0,0.0,719.0,0.0,1.0,321.0,39.0,1461.0,0.0,0.0,566.0,8.0,53.0,0.0,31.0,22.0,408.0,126.0,195.0,221.0,13.0,499.0,1669.0,42.0,1395.0,66.0,192.0,90.0,28.0,23.0,543.0,28.0,0.0,0.0,0.0,979.0,148.0,388.0,28.0,0.0,35.0,39.0,0.0,0.0,0.0,203.0,145.0,0.0,1425.0,1265.0,102.0,0.0,0.0,98.0,67.0,3723.0,1627.0,49.0,148.0,0.0,0.0,1498.0,10.0,1869.0,59.0,0.0,107.0,61.0,105.0,202.0,0.0,0.0,128.0,66.73250940930001,2013-03-31,,2013-13,67.23820994290945,76.695828094, +101,101,360.0,10.0,12.0,6.0,379.0,295.0,31.0,240.0,375.0,275.0,62.0,1580.0,9.0,20.0,64.0,10.0,102.0,13.0,308.0,73.0,0.0,112.0,119.0,259.0,122.0,934.0,34.0,4.0,0.0,69.0,27.0,190.0,1165.0,129.0,0.0,34.0,55.0,38.0,243.0,513.0,17.0,201.0,224.0,629.0,0.0,154.0,23.0,100.0,4483.0,316.0,195.0,1180.0,127.0,596.0,83.0,3.0,151.0,2813.0,1531.0,225.0,6.0,275.0,7.0,236.0,17.0,373.0,0.0,296.0,645.0,0.0,14.0,237.0,0.0,593.0,38.0,86.0,1.0,0.0,9.0,26.0,543.0,137.0,893.0,30.0,0.0,0.0,25.0,106.0,1.0,435.0,1.0,503.0,0.0,152.0,0.0,28.0,55.0,11.0,0.0,1502.0,19.0,836.0,32.0,34.0,157.0,1931.0,2709.0,74.0,200.0,7.0,35.0,403.0,75.0,579.0,217.0,0.0,2620.0,78.0,52.0,4126.0,371.0,1030.0,59.0,1228.0,1716.0,0.0,402.0,0.0,0.0,30.0,2231.0,0.0,26.0,0.0,551.0,192.0,40.0,1097.0,0.0,771.0,0.0,131.0,146.0,113.0,2671.0,43.0,648.0,5894.0,0.0,623.0,5622.0,3303.0,438.0,577.0,1197.0,16.0,88.0,0.0,343.0,40.0,37.0,57.0,5853.0,46.0,0.0,1423.0,35.0,21.0,841.0,172.0,392.0,507.0,28.0,169.0,0.0,0.0,0.0,50.0,147.0,724.0,184.0,4310.0,2222.0,108.0,185.0,33.0,13.0,0.0,0.0,62.0,760.0,53.0,179.0,382.0,50.0,49.0,27.0,69.0,71.0,83.0,0.0,981.0,140.0,69.0,49.0,0.0,0.0,297.0,308.0,0.0,177.0,107.0,112.0,96.0,103.0,240.0,757.0,175.0,78.0,3.0,418.0,0.0,2.0,323.0,46.0,1297.0,0.0,1.0,487.0,7.0,119.0,0.0,19.0,26.0,317.0,124.0,117.0,242.0,12.0,476.0,1627.0,44.0,1365.0,65.0,143.0,65.0,29.0,51.0,340.0,13.0,0.0,0.0,0.0,895.0,122.0,399.0,18.0,0.0,32.0,22.0,0.0,0.0,0.0,185.0,154.0,0.0,761.0,942.0,98.0,0.0,0.0,78.0,41.0,4155.0,731.0,27.0,162.0,0.0,0.0,1347.0,6.0,1572.0,43.0,0.0,110.0,55.0,116.0,165.0,0.0,0.0,96.0,76.6670575183,2013-04-07,,2013-14,76.06352037640883,73.2986532721, +102,102,473.0,26.0,9.0,15.0,426.0,302.0,25.0,197.0,507.0,264.0,70.0,1800.0,6.0,14.0,68.0,17.0,114.0,13.0,279.0,102.0,0.0,125.0,140.0,284.0,158.0,1001.0,25.0,14.0,1.0,75.0,17.0,155.0,1218.0,120.0,0.0,39.0,84.0,49.0,238.0,537.0,15.0,284.0,261.0,586.0,0.0,167.0,8.0,139.0,5076.0,300.0,231.0,1346.0,102.0,323.0,91.0,1.0,131.0,3453.0,1607.0,333.0,9.0,245.0,1.0,123.0,11.0,409.0,0.0,162.0,698.0,0.0,16.0,246.0,0.0,515.0,59.0,90.0,0.0,0.0,9.0,38.0,573.0,157.0,1137.0,22.0,0.0,0.0,45.0,125.0,0.0,530.0,4.0,617.0,0.0,167.0,0.0,19.0,48.0,5.0,0.0,1694.0,7.0,469.0,21.0,47.0,169.0,2280.0,3376.0,70.0,216.0,19.0,33.0,435.0,72.0,691.0,251.0,0.0,2546.0,84.0,69.0,4227.0,437.0,296.0,80.0,1444.0,2657.0,2.0,447.0,0.0,0.0,29.0,2427.0,0.0,18.0,0.0,551.0,98.0,32.0,597.0,0.0,270.0,0.0,122.0,90.0,62.0,3038.0,48.0,677.0,6020.0,0.0,692.0,5904.0,3735.0,532.0,709.0,1197.0,11.0,102.0,0.0,429.0,31.0,41.0,55.0,7244.0,53.0,0.0,1644.0,44.0,7.0,832.0,141.0,505.0,519.0,9.0,154.0,0.0,0.0,0.0,92.0,183.0,716.0,374.0,7630.0,2314.0,102.0,214.0,56.0,23.0,0.0,0.0,53.0,820.0,57.0,211.0,484.0,63.0,28.0,8.0,57.0,70.0,87.0,0.0,1176.0,151.0,72.0,56.0,0.0,0.0,384.0,336.0,0.0,209.0,114.0,122.0,112.0,117.0,325.0,177.0,205.0,103.0,0.0,415.0,0.0,6.0,389.0,40.0,1446.0,0.0,5.0,535.0,8.0,155.0,0.0,21.0,11.0,378.0,92.0,126.0,259.0,37.0,423.0,1738.0,52.0,1496.0,71.0,202.0,81.0,30.0,56.0,538.0,15.0,0.0,0.0,0.0,923.0,131.0,356.0,9.0,0.0,36.0,30.0,0.0,0.0,0.0,233.0,128.0,0.0,465.0,1168.0,140.0,0.0,0.0,65.0,61.0,5380.0,699.0,43.0,173.0,0.0,0.0,1187.0,22.0,1613.0,49.0,0.0,85.0,60.0,114.0,208.0,0.0,0.0,134.0,56.1619638571,2013-04-14,,2013-15,56.699399576034736,58.35543401488, +103,103,407.0,26.0,15.0,16.0,530.0,353.0,27.0,183.0,468.0,285.0,64.0,1967.0,1.0,15.0,87.0,6.0,128.0,25.0,307.0,123.0,0.0,162.0,119.0,265.0,137.0,1079.0,53.0,5.0,0.0,71.0,18.0,167.0,1431.0,169.0,0.0,134.0,78.0,59.0,202.0,482.0,7.0,294.0,232.0,674.0,0.0,153.0,20.0,131.0,5352.0,256.0,186.0,1305.0,133.0,276.0,96.0,0.0,123.0,2972.0,1613.0,300.0,14.0,298.0,4.0,106.0,4.0,436.0,0.0,112.0,713.0,0.0,13.0,298.0,0.0,543.0,53.0,74.0,0.0,0.0,9.0,34.0,485.0,154.0,1063.0,22.0,0.0,0.0,44.0,128.0,1.0,493.0,3.0,655.0,0.0,234.0,1.0,38.0,38.0,14.0,0.0,1780.0,4.0,499.0,23.0,61.0,150.0,2178.0,3216.0,64.0,205.0,14.0,40.0,537.0,70.0,766.0,319.0,0.0,3041.0,54.0,47.0,4313.0,386.0,223.0,92.0,1477.0,1812.0,2.0,401.0,0.0,0.0,35.0,2542.0,0.0,23.0,0.0,516.0,76.0,35.0,421.0,0.0,214.0,0.0,142.0,73.0,55.0,2510.0,40.0,697.0,6263.0,0.0,689.0,5768.0,3290.0,497.0,747.0,1001.0,12.0,93.0,0.0,400.0,34.0,41.0,93.0,7014.0,45.0,0.0,1606.0,34.0,15.0,822.0,186.0,455.0,577.0,17.0,197.0,0.0,0.0,0.0,77.0,177.0,638.0,287.0,6758.0,2370.0,113.0,169.0,48.0,19.0,0.0,0.0,211.0,831.0,87.0,245.0,505.0,62.0,47.0,25.0,75.0,61.0,96.0,0.0,1098.0,160.0,82.0,65.0,0.0,0.0,395.0,366.0,0.0,203.0,111.0,105.0,120.0,117.0,261.0,204.0,196.0,93.0,1.0,353.0,0.0,0.0,498.0,38.0,1612.0,0.0,0.0,611.0,8.0,51.0,0.0,26.0,14.0,426.0,97.0,138.0,273.0,38.0,463.0,1760.0,46.0,1609.0,51.0,284.0,79.0,25.0,44.0,581.0,24.0,0.0,0.0,0.0,968.0,156.0,365.0,11.0,0.0,42.0,43.0,0.0,0.0,0.0,202.0,137.0,0.0,447.0,1196.0,131.0,0.0,0.0,91.0,69.0,5046.0,709.0,34.0,234.0,0.0,0.0,1278.0,16.0,1841.0,51.0,0.0,98.0,43.0,141.0,241.0,0.0,0.0,111.0,67.0647081288,2013-04-21,,2013-16,66.75677636790883,66.99826838490002, +104,104,162.0,41.0,11.0,7.0,296.0,151.0,12.0,143.0,426.0,131.0,48.0,1174.0,3.0,7.0,62.0,8.0,79.0,10.0,204.0,83.0,0.0,122.0,142.0,194.0,87.0,692.0,29.0,5.0,0.0,47.0,26.0,155.0,930.0,115.0,0.0,29.0,42.0,36.0,157.0,353.0,8.0,682.0,117.0,359.0,0.0,126.0,10.0,57.0,3020.0,143.0,114.0,839.0,121.0,86.0,62.0,0.0,101.0,1436.0,1189.0,254.0,8.0,298.0,4.0,87.0,7.0,253.0,24.0,320.0,451.0,0.0,9.0,163.0,8.0,310.0,38.0,54.0,169.0,0.0,5.0,15.0,333.0,154.0,963.0,32.0,0.0,0.0,24.0,185.0,0.0,337.0,1.0,388.0,0.0,171.0,0.0,27.0,52.0,10.0,0.0,1077.0,13.0,452.0,40.0,31.0,79.0,1588.0,1582.0,535.0,188.0,11.0,33.0,459.0,55.0,591.0,173.0,0.0,1252.0,70.0,57.0,2853.0,253.0,965.0,58.0,1167.0,2479.0,3.0,178.0,0.0,0.0,21.0,1345.0,0.0,20.0,0.0,394.0,89.0,26.0,1028.0,8.0,633.0,0.0,71.0,93.0,40.0,1101.0,19.0,401.0,2883.0,0.0,463.0,3163.0,1040.0,246.0,385.0,571.0,16.0,103.0,0.0,217.0,18.0,31.0,98.0,3465.0,38.0,0.0,1731.0,34.0,11.0,364.0,147.0,312.0,492.0,8.0,143.0,0.0,0.0,10.0,61.0,77.0,436.0,158.0,1112.0,1520.0,78.0,139.0,24.0,20.0,0.0,0.0,40.0,710.0,54.0,110.0,494.0,52.0,23.0,22.0,53.0,52.0,43.0,0.0,742.0,156.0,62.0,30.0,0.0,0.0,228.0,268.0,0.0,164.0,39.0,66.0,76.0,81.0,111.0,1285.0,209.0,77.0,174.0,262.0,0.0,2.0,201.0,30.0,795.0,0.0,0.0,259.0,0.0,69.0,3.0,10.0,5.0,264.0,54.0,122.0,277.0,7.0,596.0,1262.0,42.0,1040.0,52.0,173.0,93.0,9.0,27.0,316.0,22.0,0.0,0.0,0.0,680.0,92.0,171.0,23.0,0.0,23.0,27.0,0.0,0.0,0.0,122.0,92.0,0.0,788.0,302.0,77.0,0.0,0.0,53.0,37.0,1435.0,353.0,14.0,94.0,0.0,0.0,1005.0,13.0,1016.0,26.0,0.0,76.0,44.0,90.0,128.0,0.0,0.0,75.0,20.2280715062,2013-10-27,,2013-43,20.810415719641696,40.26664866734001, +105,105,135.0,22.0,9.0,8.0,371.0,104.0,12.0,130.0,474.0,121.0,42.0,1246.0,5.0,11.0,56.0,9.0,76.0,7.0,214.0,62.0,0.0,173.0,123.0,202.0,98.0,666.0,23.0,9.0,0.0,40.0,10.0,138.0,903.0,118.0,0.0,18.0,39.0,37.0,176.0,269.0,11.0,243.0,147.0,318.0,0.0,120.0,9.0,69.0,2867.0,153.0,118.0,845.0,137.0,89.0,93.0,2.0,110.0,1363.0,1138.0,248.0,14.0,261.0,3.0,79.0,11.0,287.0,30.0,57.0,442.0,0.0,18.0,191.0,24.0,291.0,41.0,58.0,118.0,0.0,5.0,23.0,368.0,132.0,1019.0,34.0,0.0,0.0,24.0,137.0,0.0,280.0,1.0,423.0,0.0,137.0,0.0,24.0,43.0,3.0,0.0,1128.0,11.0,416.0,24.0,36.0,89.0,1651.0,1557.0,445.0,209.0,5.0,22.0,377.0,48.0,585.0,171.0,0.0,1317.0,42.0,52.0,2776.0,255.0,2722.0,44.0,1095.0,1090.0,0.0,198.0,0.0,0.0,17.0,1271.0,0.0,15.0,0.0,461.0,82.0,42.0,985.0,10.0,547.0,0.0,97.0,117.0,51.0,1066.0,29.0,430.0,2991.0,0.0,453.0,3005.0,905.0,211.0,458.0,437.0,18.0,93.0,0.0,241.0,18.0,34.0,79.0,3141.0,41.0,0.0,1615.0,35.0,9.0,349.0,132.0,331.0,461.0,14.0,125.0,0.0,0.0,4.0,57.0,62.0,430.0,240.0,851.0,1737.0,50.0,176.0,29.0,20.0,0.0,1.0,47.0,646.0,73.0,152.0,441.0,53.0,30.0,16.0,50.0,52.0,64.0,0.0,762.0,182.0,53.0,37.0,0.0,0.0,221.0,267.0,0.0,192.0,55.0,61.0,66.0,68.0,104.0,1174.0,218.0,63.0,163.0,245.0,0.0,3.0,228.0,35.0,984.0,0.0,4.0,247.0,0.0,48.0,1.0,15.0,16.0,300.0,58.0,149.0,266.0,14.0,480.0,1348.0,47.0,1169.0,66.0,174.0,90.0,9.0,19.0,325.0,11.0,0.0,0.0,0.0,721.0,79.0,172.0,27.0,0.0,43.0,40.0,0.0,0.0,0.0,118.0,75.0,0.0,646.0,305.0,78.0,0.0,0.0,68.0,35.0,1624.0,437.0,24.0,146.0,0.0,0.0,866.0,10.0,1012.0,22.0,0.0,96.0,45.0,87.0,138.0,0.0,0.0,86.0,18.5428989968,2013-11-03,,2013-44,19.106820774827987,26.7993264549, +106,106,168.0,11.0,11.0,7.0,395.0,129.0,11.0,154.0,489.0,166.0,47.0,1077.0,4.0,9.0,31.0,4.0,81.0,8.0,197.0,64.0,0.0,155.0,114.0,214.0,115.0,693.0,24.0,9.0,0.0,29.0,10.0,134.0,873.0,100.0,0.0,43.0,48.0,38.0,176.0,456.0,11.0,276.0,154.0,358.0,0.0,125.0,16.0,84.0,3019.0,141.0,119.0,960.0,140.0,78.0,98.0,0.0,86.0,1333.0,1077.0,311.0,12.0,263.0,5.0,180.0,7.0,317.0,28.0,87.0,590.0,0.0,9.0,209.0,4.0,473.0,73.0,78.0,179.0,0.0,2.0,28.0,443.0,126.0,994.0,25.0,0.0,0.0,18.0,154.0,0.0,364.0,2.0,474.0,0.0,153.0,0.0,27.0,30.0,5.0,0.0,1176.0,6.0,421.0,17.0,41.0,87.0,1599.0,1668.0,610.0,148.0,7.0,34.0,372.0,49.0,681.0,151.0,0.0,1223.0,54.0,57.0,3059.0,221.0,1158.0,44.0,1093.0,1160.0,2.0,179.0,0.0,0.0,39.0,1221.0,0.0,15.0,0.0,454.0,77.0,54.0,1090.0,9.0,570.0,0.0,103.0,91.0,49.0,1106.0,28.0,608.0,2647.0,0.0,502.0,2861.0,993.0,216.0,433.0,588.0,12.0,98.0,0.0,258.0,39.0,21.0,62.0,3406.0,37.0,0.0,5983.0,71.0,11.0,456.0,151.0,316.0,482.0,22.0,103.0,0.0,0.0,7.0,70.0,81.0,424.0,211.0,861.0,1536.0,47.0,143.0,21.0,18.0,0.0,0.0,34.0,659.0,79.0,185.0,566.0,46.0,33.0,22.0,85.0,49.0,53.0,0.0,777.0,154.0,101.0,60.0,0.0,0.0,257.0,300.0,0.0,194.0,49.0,99.0,94.0,60.0,93.0,1715.0,214.0,109.0,170.0,254.0,0.0,0.0,288.0,28.0,1200.0,0.0,6.0,288.0,0.0,58.0,3.0,22.0,9.0,249.0,46.0,99.0,274.0,18.0,407.0,1236.0,40.0,994.0,71.0,187.0,155.0,12.0,41.0,397.0,9.0,0.0,0.0,0.0,698.0,101.0,209.0,9.0,0.0,29.0,23.0,0.0,0.0,0.0,101.0,85.0,0.0,782.0,288.0,76.0,0.0,0.0,58.0,52.0,1717.0,372.0,20.0,144.0,0.0,0.0,1015.0,5.0,1016.0,30.0,0.0,99.0,51.0,89.0,142.0,0.0,0.0,98.0,25.0399343781,2013-11-10,,2013-45,23.984429773742207,32.73975331962, +107,107,173.0,17.0,10.0,5.0,386.0,147.0,11.0,169.0,379.0,141.0,45.0,1126.0,2.0,17.0,30.0,2.0,60.0,10.0,258.0,59.0,0.0,111.0,146.0,192.0,106.0,686.0,5.0,14.0,0.0,39.0,9.0,168.0,919.0,109.0,0.0,51.0,43.0,32.0,155.0,302.0,5.0,271.0,177.0,326.0,0.0,122.0,8.0,105.0,3207.0,150.0,117.0,835.0,126.0,56.0,66.0,0.0,105.0,1301.0,1274.0,308.0,11.0,264.0,3.0,137.0,12.0,268.0,41.0,93.0,555.0,0.0,9.0,172.0,16.0,777.0,44.0,102.0,149.0,1.0,6.0,21.0,375.0,178.0,1019.0,33.0,0.0,0.0,39.0,170.0,0.0,356.0,0.0,436.0,0.0,177.0,1.0,33.0,39.0,1.0,0.0,1073.0,6.0,455.0,21.0,33.0,93.0,1555.0,1424.0,535.0,208.0,11.0,26.0,411.0,41.0,623.0,162.0,1.0,1390.0,60.0,41.0,3313.0,293.0,1250.0,51.0,1158.0,1307.0,3.0,189.0,0.0,0.0,27.0,1258.0,0.0,20.0,0.0,495.0,82.0,27.0,1066.0,7.0,529.0,0.0,78.0,82.0,36.0,995.0,28.0,392.0,3129.0,0.0,528.0,3458.0,1275.0,204.0,394.0,615.0,5.0,93.0,0.0,242.0,35.0,38.0,86.0,3452.0,37.0,0.0,1967.0,47.0,11.0,425.0,223.0,316.0,536.0,12.0,121.0,0.0,0.0,9.0,59.0,77.0,518.0,177.0,842.0,1500.0,53.0,150.0,18.0,8.0,0.0,0.0,20.0,637.0,78.0,190.0,476.0,39.0,32.0,16.0,54.0,37.0,86.0,0.0,809.0,174.0,96.0,53.0,0.0,0.0,242.0,258.0,0.0,188.0,51.0,116.0,68.0,79.0,106.0,1387.0,196.0,74.0,168.0,430.0,0.0,3.0,215.0,28.0,1146.0,0.0,2.0,268.0,1.0,66.0,3.0,26.0,48.0,273.0,30.0,112.0,215.0,11.0,488.0,1176.0,34.0,1035.0,75.0,144.0,105.0,19.0,37.0,317.0,12.0,0.0,0.0,0.0,811.0,115.0,167.0,13.0,0.0,19.0,11.0,0.0,0.0,0.0,89.0,74.0,0.0,810.0,253.0,87.0,0.0,0.0,59.0,68.0,2145.0,361.0,21.0,165.0,0.0,0.0,1049.0,14.0,1084.0,22.0,0.0,111.0,49.0,102.0,144.0,0.0,0.0,79.0,24.3975168749,2013-11-17,,2013-46,25.55306535309508,28.648351773439998, +108,108,172.0,10.0,6.0,4.0,386.0,137.0,8.0,132.0,381.0,146.0,38.0,1389.0,1.0,9.0,45.0,1.0,69.0,7.0,232.0,65.0,0.0,119.0,131.0,211.0,123.0,730.0,13.0,5.0,1.0,26.0,13.0,126.0,853.0,94.0,0.0,27.0,48.0,35.0,154.0,355.0,8.0,249.0,172.0,335.0,0.0,115.0,5.0,60.0,3357.0,153.0,137.0,801.0,91.0,83.0,50.0,2.0,118.0,1774.0,1596.0,211.0,18.0,209.0,1.0,94.0,7.0,283.0,43.0,81.0,497.0,0.0,9.0,175.0,14.0,383.0,35.0,63.0,139.0,2.0,4.0,20.0,397.0,126.0,1127.0,21.0,0.0,0.0,25.0,136.0,0.0,338.0,2.0,407.0,0.0,140.0,1.0,18.0,32.0,3.0,0.0,1249.0,7.0,409.0,26.0,35.0,91.0,1728.0,1858.0,281.0,210.0,9.0,22.0,379.0,60.0,563.0,164.0,1.0,1522.0,47.0,48.0,4179.0,221.0,1239.0,71.0,1271.0,1117.0,1.0,237.0,0.0,0.0,18.0,1392.0,0.0,26.0,0.0,472.0,66.0,25.0,1156.0,11.0,520.0,0.0,63.0,70.0,40.0,1021.0,34.0,378.0,3536.0,0.0,505.0,4881.0,1696.0,265.0,398.0,609.0,7.0,72.0,0.0,221.0,22.0,28.0,85.0,4531.0,60.0,0.0,2860.0,46.0,9.0,643.0,146.0,383.0,682.0,15.0,122.0,0.0,0.0,5.0,49.0,61.0,542.0,205.0,1105.0,1514.0,52.0,102.0,16.0,16.0,0.0,0.0,29.0,547.0,79.0,140.0,448.0,52.0,29.0,19.0,57.0,42.0,85.0,0.0,784.0,161.0,67.0,49.0,0.0,1.0,231.0,353.0,0.0,147.0,47.0,51.0,66.0,70.0,123.0,1252.0,188.0,74.0,161.0,457.0,1.0,0.0,202.0,31.0,1530.0,0.0,2.0,288.0,3.0,74.0,2.0,10.0,12.0,293.0,53.0,98.0,229.0,8.0,563.0,1046.0,33.0,909.0,27.0,139.0,106.0,9.0,36.0,297.0,12.0,0.0,1.0,0.0,792.0,99.0,154.0,24.0,0.0,35.0,28.0,0.0,0.0,2.0,84.0,108.0,0.0,1538.0,292.0,58.0,0.0,0.0,54.0,38.0,2243.0,360.0,17.0,108.0,0.0,0.0,1158.0,13.0,1240.0,25.0,0.0,97.0,33.0,95.0,151.0,0.0,0.0,88.0,20.6434401499,2013-11-24,,2013-47,21.599965223928116,32.89691531932, +109,109,156.0,11.0,7.0,6.0,322.0,179.0,18.0,180.0,435.0,172.0,34.0,1415.0,2.0,10.0,53.0,3.0,78.0,11.0,233.0,65.0,0.0,126.0,110.0,224.0,121.0,658.0,13.0,12.0,0.0,32.0,11.0,146.0,862.0,107.0,0.0,22.0,36.0,33.0,160.0,329.0,8.0,277.0,190.0,367.0,0.0,123.0,13.0,79.0,3137.0,170.0,139.0,758.0,130.0,52.0,45.0,1.0,100.0,1631.0,1356.0,274.0,24.0,231.0,4.0,110.0,7.0,229.0,32.0,48.0,463.0,0.0,14.0,170.0,7.0,365.0,36.0,61.0,269.0,0.0,4.0,21.0,347.0,208.0,1014.0,28.0,0.0,0.0,31.0,113.0,0.0,432.0,2.0,413.0,0.0,166.0,0.0,27.0,45.0,11.0,1.0,1216.0,8.0,424.0,40.0,39.0,110.0,1506.0,1749.0,173.0,241.0,5.0,20.0,409.0,48.0,547.0,137.0,0.0,1529.0,66.0,32.0,3426.0,260.0,957.0,52.0,1043.0,1126.0,2.0,166.0,0.0,0.0,18.0,1345.0,0.0,21.0,3.0,431.0,81.0,23.0,1021.0,5.0,530.0,0.0,82.0,84.0,60.0,1106.0,36.0,395.0,3209.0,0.0,518.0,4802.0,1481.0,269.0,430.0,730.0,11.0,90.0,0.0,259.0,27.0,19.0,77.0,4207.0,28.0,0.0,2301.0,36.0,3.0,541.0,160.0,417.0,689.0,9.0,119.0,1.0,0.0,7.0,68.0,78.0,599.0,174.0,1012.0,1628.0,66.0,127.0,19.0,15.0,0.0,0.0,32.0,599.0,78.0,141.0,469.0,52.0,36.0,17.0,44.0,67.0,42.0,2.0,771.0,196.0,84.0,57.0,0.0,0.0,276.0,275.0,0.0,158.0,41.0,76.0,59.0,68.0,127.0,1905.0,198.0,71.0,170.0,602.0,1.0,1.0,196.0,31.0,1119.0,0.0,2.0,280.0,0.0,63.0,5.0,16.0,5.0,258.0,42.0,117.0,193.0,14.0,462.0,972.0,32.0,898.0,25.0,171.0,120.0,12.0,31.0,311.0,12.0,0.0,0.0,0.0,739.0,163.0,166.0,20.0,0.0,32.0,32.0,0.0,0.0,1.0,94.0,116.0,0.0,1318.0,269.0,62.0,0.0,1.0,44.0,57.0,1844.0,300.0,17.0,89.0,0.0,0.0,1079.0,5.0,1116.0,34.0,0.0,87.0,64.0,70.0,135.0,0.0,0.0,170.0,33.2892057815,2013-12-01,,2013-48,32.813868573415135,36.522395639440006, +110,110,167.0,15.0,7.0,4.0,293.0,166.0,11.0,201.0,454.0,174.0,33.0,1384.0,3.0,16.0,55.0,6.0,75.0,8.0,243.0,68.0,0.0,141.0,126.0,224.0,107.0,665.0,46.0,4.0,0.0,31.0,10.0,156.0,759.0,156.0,0.0,22.0,20.0,45.0,178.0,351.0,16.0,258.0,186.0,332.0,0.0,134.0,12.0,57.0,2985.0,220.0,149.0,844.0,143.0,116.0,59.0,1.0,103.0,1724.0,1190.0,211.0,9.0,235.0,1.0,154.0,8.0,253.0,35.0,72.0,509.0,0.0,10.0,165.0,7.0,392.0,38.0,68.0,337.0,0.0,6.0,26.0,360.0,180.0,932.0,39.0,0.0,0.0,31.0,145.0,0.0,386.0,1.0,377.0,0.0,150.0,0.0,17.0,34.0,5.0,0.0,1243.0,9.0,407.0,29.0,33.0,122.0,1517.0,1506.0,117.0,188.0,8.0,28.0,488.0,41.0,611.0,202.0,0.0,1370.0,101.0,62.0,2577.0,309.0,1021.0,39.0,949.0,988.0,2.0,198.0,1.0,0.0,33.0,1210.0,0.0,28.0,0.0,472.0,81.0,24.0,1011.0,13.0,568.0,0.0,96.0,83.0,41.0,1206.0,23.0,395.0,3053.0,0.0,514.0,3288.0,1317.0,257.0,416.0,674.0,12.0,82.0,0.0,230.0,25.0,30.0,85.0,3710.0,42.0,0.0,1584.0,46.0,10.0,527.0,147.0,400.0,554.0,12.0,144.0,1.0,0.0,5.0,65.0,83.0,634.0,170.0,1188.0,1553.0,70.0,190.0,18.0,28.0,0.0,1.0,26.0,691.0,52.0,166.0,502.0,75.0,18.0,11.0,36.0,63.0,62.0,4.0,729.0,235.0,75.0,59.0,0.0,0.0,283.0,293.0,0.0,125.0,53.0,91.0,70.0,77.0,131.0,1935.0,188.0,96.0,188.0,959.0,0.0,2.0,223.0,44.0,1119.0,0.0,2.0,283.0,1.0,32.0,4.0,17.0,4.0,303.0,45.0,139.0,328.0,6.0,498.0,979.0,40.0,914.0,30.0,152.0,77.0,14.0,26.0,377.0,16.0,0.0,0.0,0.0,659.0,88.0,164.0,23.0,0.0,23.0,28.0,0.0,0.0,0.0,129.0,63.0,0.0,992.0,276.0,97.0,0.0,0.0,57.0,50.0,1733.0,355.0,25.0,93.0,0.0,0.0,1117.0,7.0,918.0,27.0,0.0,100.0,45.0,80.0,153.0,0.0,0.0,170.0,31.6332310771,2013-12-08,,2013-49,30.964443891630822,40.629773315959994, +111,111,158.0,11.0,16.0,4.0,284.0,181.0,14.0,135.0,404.0,144.0,59.0,1309.0,1.0,18.0,49.0,4.0,86.0,9.0,239.0,90.0,0.0,124.0,115.0,231.0,118.0,615.0,17.0,16.0,0.0,34.0,9.0,182.0,788.0,104.0,0.0,26.0,52.0,42.0,180.0,308.0,8.0,189.0,142.0,301.0,0.0,113.0,12.0,111.0,3185.0,233.0,152.0,854.0,120.0,83.0,70.0,1.0,123.0,1751.0,1089.0,251.0,12.0,225.0,3.0,95.0,5.0,240.0,30.0,63.0,501.0,0.0,8.0,145.0,5.0,406.0,62.0,58.0,278.0,0.0,2.0,26.0,392.0,165.0,894.0,26.0,0.0,0.0,29.0,115.0,0.0,391.0,4.0,520.0,0.0,145.0,0.0,24.0,42.0,3.0,0.0,1040.0,6.0,438.0,26.0,38.0,97.0,1601.0,1451.0,102.0,143.0,6.0,17.0,439.0,54.0,518.0,179.0,0.0,1321.0,58.0,47.0,2919.0,248.0,1012.0,52.0,1014.0,1143.0,1.0,160.0,0.0,0.0,23.0,1259.0,0.0,14.0,1.0,452.0,71.0,29.0,1008.0,4.0,564.0,0.0,112.0,68.0,37.0,1265.0,34.0,377.0,2841.0,0.0,455.0,3183.0,1092.0,327.0,372.0,634.0,14.0,94.0,0.0,208.0,19.0,29.0,89.0,3719.0,34.0,1.0,1472.0,32.0,11.0,372.0,168.0,419.0,503.0,12.0,140.0,0.0,0.0,5.0,52.0,89.0,465.0,173.0,1453.0,1687.0,85.0,136.0,25.0,14.0,0.0,0.0,39.0,715.0,66.0,188.0,469.0,55.0,25.0,19.0,45.0,51.0,61.0,0.0,714.0,204.0,79.0,41.0,0.0,0.0,361.0,347.0,0.0,174.0,53.0,53.0,73.0,84.0,137.0,1316.0,190.0,89.0,186.0,1170.0,0.0,4.0,234.0,34.0,1125.0,0.0,4.0,226.0,0.0,44.0,4.0,13.0,11.0,279.0,47.0,97.0,276.0,9.0,381.0,982.0,40.0,1043.0,29.0,194.0,63.0,15.0,24.0,421.0,19.0,0.0,0.0,0.0,774.0,111.0,143.0,20.0,1.0,19.0,14.0,0.0,0.0,1.0,118.0,90.0,0.0,1052.0,254.0,75.0,1.0,1.0,69.0,56.0,1995.0,359.0,20.0,177.0,0.0,0.0,1369.0,16.0,952.0,42.0,0.0,97.0,47.0,83.0,159.0,0.0,0.0,165.0,17.6557568802,2013-12-15,,2013-50,18.357343440575875,25.5345688925, +112,112,168.0,12.0,11.0,6.0,303.0,170.0,20.0,154.0,386.0,131.0,54.0,1244.0,5.0,13.0,64.0,10.0,74.0,10.0,268.0,88.0,0.0,108.0,128.0,204.0,96.0,652.0,30.0,10.0,2.0,32.0,10.0,141.0,762.0,108.0,0.0,23.0,48.0,47.0,154.0,353.0,6.0,219.0,197.0,268.0,0.0,131.0,11.0,91.0,2758.0,194.0,128.0,806.0,139.0,64.0,75.0,2.0,108.0,1858.0,1096.0,241.0,8.0,208.0,2.0,279.0,6.0,236.0,34.0,64.0,427.0,0.0,13.0,119.0,16.0,400.0,59.0,52.0,297.0,1.0,11.0,20.0,400.0,171.0,920.0,24.0,0.0,0.0,20.0,98.0,0.0,348.0,0.0,445.0,1.0,138.0,1.0,24.0,53.0,3.0,0.0,1020.0,11.0,477.0,29.0,47.0,123.0,1458.0,1369.0,79.0,174.0,11.0,29.0,303.0,64.0,562.0,169.0,0.0,1215.0,67.0,41.0,2778.0,309.0,824.0,58.0,1029.0,914.0,1.0,169.0,1.0,1.0,20.0,1169.0,0.0,16.0,1.0,352.0,90.0,21.0,998.0,4.0,541.0,0.0,70.0,72.0,57.0,1223.0,29.0,354.0,2818.0,0.0,426.0,3279.0,1168.0,315.0,406.0,627.0,17.0,73.0,0.0,222.0,25.0,36.0,83.0,3569.0,43.0,0.0,1221.0,49.0,5.0,443.0,182.0,378.0,473.0,20.0,129.0,0.0,0.0,9.0,65.0,80.0,466.0,194.0,3205.0,1449.0,75.0,139.0,17.0,18.0,0.0,0.0,31.0,668.0,69.0,154.0,440.0,45.0,56.0,19.0,59.0,47.0,62.0,2.0,701.0,172.0,82.0,45.0,0.0,0.0,239.0,248.0,1.0,162.0,70.0,63.0,45.0,99.0,149.0,1151.0,207.0,115.0,196.0,1482.0,137.0,7.0,256.0,43.0,863.0,0.0,1.0,225.0,0.0,45.0,5.0,23.0,6.0,258.0,29.0,105.0,247.0,14.0,435.0,937.0,51.0,1008.0,34.0,150.0,97.0,11.0,33.0,364.0,16.0,0.0,1.0,0.0,680.0,101.0,172.0,15.0,1.0,26.0,18.0,22.0,0.0,0.0,117.0,68.0,0.0,934.0,245.0,81.0,0.0,0.0,85.0,50.0,1939.0,386.0,21.0,135.0,0.0,0.0,773.0,24.0,893.0,33.0,0.0,98.0,44.0,73.0,131.0,0.0,0.0,152.0,34.298505307199996,2013-12-22,,2013-51,33.82565532389485,31.418710624379997, +113,113,165.0,23.0,13.0,9.0,283.0,159.0,16.0,105.0,378.0,179.0,46.0,1041.0,5.0,16.0,58.0,7.0,71.0,14.0,227.0,79.0,0.0,115.0,99.0,212.0,83.0,550.0,28.0,11.0,1.0,44.0,7.0,113.0,822.0,134.0,0.0,26.0,50.0,53.0,126.0,285.0,17.0,182.0,123.0,316.0,0.0,93.0,14.0,92.0,2513.0,237.0,131.0,659.0,97.0,67.0,51.0,3.0,100.0,1569.0,1113.0,197.0,16.0,209.0,4.0,190.0,11.0,233.0,35.0,86.0,348.0,0.0,8.0,155.0,12.0,328.0,63.0,46.0,278.0,0.0,5.0,21.0,307.0,135.0,827.0,20.0,0.0,0.0,23.0,104.0,13.0,341.0,1.0,422.0,1.0,184.0,1.0,28.0,44.0,7.0,1.0,972.0,4.0,414.0,43.0,44.0,85.0,1398.0,1247.0,64.0,158.0,6.0,18.0,255.0,54.0,531.0,165.0,0.0,1167.0,39.0,42.0,2347.0,268.0,644.0,77.0,974.0,953.0,1.0,143.0,0.0,0.0,17.0,1150.0,0.0,19.0,0.0,399.0,84.0,28.0,832.0,11.0,437.0,0.0,102.0,117.0,38.0,1252.0,37.0,344.0,2486.0,0.0,455.0,2814.0,1002.0,241.0,340.0,470.0,31.0,62.0,0.0,220.0,18.0,41.0,180.0,3128.0,37.0,1.0,1125.0,23.0,10.0,447.0,186.0,335.0,410.0,9.0,122.0,2.0,0.0,9.0,66.0,81.0,355.0,193.0,1719.0,1292.0,61.0,142.0,25.0,10.0,0.0,0.0,43.0,617.0,48.0,96.0,438.0,52.0,38.0,25.0,55.0,46.0,40.0,1.0,577.0,132.0,83.0,28.0,0.0,0.0,248.0,235.0,0.0,125.0,52.0,72.0,46.0,109.0,115.0,1132.0,197.0,85.0,165.0,1384.0,22.0,3.0,299.0,43.0,786.0,0.0,1.0,236.0,0.0,49.0,1.0,17.0,13.0,254.0,39.0,122.0,214.0,6.0,442.0,904.0,33.0,667.0,44.0,114.0,71.0,11.0,29.0,245.0,17.0,0.0,1.0,0.0,548.0,86.0,149.0,22.0,0.0,49.0,38.0,5.0,0.0,0.0,102.0,71.0,0.0,888.0,251.0,85.0,0.0,0.0,90.0,41.0,2110.0,342.0,15.0,86.0,0.0,0.0,735.0,13.0,788.0,27.0,0.0,63.0,44.0,75.0,82.0,0.0,0.0,122.0,39.7140587768,2013-12-29,,2013-52,39.326831619555676,40.20318392016, +114,114,164.0,20.0,7.0,6.0,219.0,124.0,15.0,84.0,321.0,107.0,40.0,843.0,5.0,19.0,49.0,5.0,61.0,10.0,112.0,68.0,0.0,71.0,79.0,190.0,39.0,333.0,15.0,6.0,0.0,20.0,11.0,86.0,573.0,149.0,0.0,11.0,20.0,26.0,105.0,200.0,10.0,229.0,85.0,213.0,0.0,98.0,15.0,98.0,1737.0,183.0,101.0,495.0,77.0,50.0,51.0,2.0,86.0,1489.0,1023.0,137.0,6.0,169.0,5.0,999.0,6.0,173.0,22.0,61.0,262.0,0.0,9.0,118.0,6.0,178.0,41.0,51.0,192.0,2.0,3.0,25.0,335.0,129.0,747.0,20.0,0.0,0.0,29.0,70.0,277.0,247.0,2.0,344.0,0.0,187.0,2.0,31.0,34.0,3.0,0.0,782.0,6.0,288.0,18.0,30.0,63.0,1355.0,910.0,36.0,154.0,6.0,24.0,187.0,38.0,350.0,101.0,0.0,810.0,33.0,41.0,2167.0,258.0,615.0,51.0,854.0,592.0,3.0,99.0,0.0,0.0,16.0,944.0,1.0,13.0,3.0,288.0,77.0,20.0,581.0,5.0,351.0,0.0,54.0,64.0,35.0,1131.0,28.0,256.0,1885.0,0.0,383.0,2196.0,918.0,130.0,337.0,445.0,17.0,68.0,0.0,232.0,20.0,24.0,39.0,2793.0,21.0,0.0,907.0,20.0,12.0,383.0,80.0,343.0,266.0,12.0,75.0,0.0,0.0,8.0,43.0,73.0,277.0,108.0,1441.0,1072.0,44.0,87.0,18.0,13.0,0.0,0.0,28.0,563.0,51.0,58.0,264.0,62.0,40.0,27.0,63.0,44.0,61.0,0.0,381.0,127.0,41.0,24.0,0.0,0.0,201.0,166.0,0.0,55.0,21.0,41.0,44.0,74.0,122.0,737.0,161.0,88.0,147.0,919.0,6.0,5.0,191.0,29.0,564.0,0.0,1.0,202.0,0.0,38.0,5.0,12.0,9.0,211.0,24.0,75.0,141.0,6.0,438.0,812.0,43.0,581.0,25.0,108.0,55.0,17.0,25.0,198.0,21.0,0.0,0.0,0.0,421.0,58.0,137.0,19.0,0.0,31.0,14.0,3.0,0.0,0.0,101.0,60.0,0.0,846.0,192.0,60.0,0.0,1.0,49.0,28.0,2055.0,385.0,18.0,66.0,0.0,0.0,773.0,9.0,723.0,15.0,0.0,45.0,22.0,48.0,57.0,0.0,0.0,148.0,22.5648061232,2014-01-05,,2014-1,22.03413844852172,24.547293811000003, +115,115,122.0,11.0,9.0,3.0,234.0,134.0,18.0,93.0,302.0,144.0,43.0,798.0,4.0,8.0,53.0,4.0,64.0,7.0,158.0,79.0,5.0,78.0,95.0,174.0,47.0,359.0,23.0,10.0,21.0,24.0,10.0,104.0,607.0,96.0,1.0,18.0,32.0,31.0,142.0,189.0,2.0,175.0,122.0,268.0,0.0,82.0,18.0,60.0,1550.0,151.0,100.0,888.0,85.0,58.0,45.0,1.0,85.0,1291.0,826.0,148.0,7.0,186.0,3.0,476.0,3.0,135.0,28.0,87.0,305.0,0.0,15.0,130.0,6.0,216.0,35.0,48.0,203.0,1.0,1.0,17.0,334.0,134.0,631.0,21.0,30.0,492.0,21.0,63.0,404.0,210.0,1.0,337.0,0.0,107.0,3.0,71.0,38.8,3.0,0.0,732.0,3.0,314.0,21.0,36.0,62.0,1210.0,1088.0,59.0,123.0,10.0,15.0,211.0,44.0,410.0,122.0,1.0,1054.5,41.0,35.0,1865.0,257.0,685.0,70.0,754.0,674.0,2.0,123.0,0.0,0.0,22.0,894.0,0.0,10.0,1.0,269.0,69.0,22.0,613.0,6.0,338.0,18.0,56.0,70.0,33.0,933.0,19.0,243.0,1807.0,0.0,341.0,2243.0,836.0,155.0,285.0,476.0,11.0,83.0,0.0,183.0,20.0,18.0,74.0,3151.0,23.0,2.0,610.0,23.0,8.0,243.0,79.0,236.0,233.0,11.0,127.0,2.0,0.0,7.333333333333332,46.0,80.0,312.0,131.0,1414.0,949.0,50.0,86.0,17.0,102.0,0.0,78.0,36.0,534.0,48.0,74.0,318.0,56.0,32.0,24.0,61.0,32.0,40.0,1.0,419.0,78.0,59.0,31.0,10.0,0.0,202.0,202.0,0.0,63.0,34.0,51.0,45.0,67.0,104.0,510.0,165.0,69.0,156.0,551.0,12.0,3.0,202.0,30.0,573.0,0.0,0.0,199.0,10.0,40.0,3.0,17.0,7.0,203.0,37.0,84.0,156.0,8.0,398.0,664.0,29.0,526.0,31.0,120.0,56.0,15.0,28.0,214.0,15.0,0.0,0.0,1.0,443.0,73.0,132.0,13.0,0.0,34.0,17.0,3.0,0.0,0.0,87.0,80.0,0.0,874.0,181.0,77.0,7.0,2.0,58.0,24.0,1677.0,355.0,5.0,71.0,0.0,0.0,683.0,10.0,654.0,27.0,0.0,63.0,35.0,82.0,65.0,0.0,0.0,140.0,30.1210489655,2014-01-12,,2014-2,29.374042090156635,28.765521861139998, +116,116,162.0,26.0,11.0,8.0,411.0,184.0,15.0,222.0,440.0,169.0,55.0,1172.0,3.0,11.0,69.0,8.0,82.0,10.0,224.0,90.0,0.0,121.0,129.0,188.0,110.0,674.0,25.0,7.0,0.0,33.0,17.0,108.0,970.0,156.0,0.0,26.0,59.0,62.0,179.0,378.0,10.0,273.0,155.0,327.0,0.0,136.0,4.0,101.0,2936.0,183.0,143.0,732.0,91.0,68.0,92.0,2.0,96.0,1398.0,1194.0,224.0,6.0,264.0,3.0,277.0,11.0,261.0,33.0,82.0,552.0,0.0,9.0,139.0,7.0,448.0,43.0,93.0,318.0,1.0,4.0,24.0,371.0,184.0,955.0,33.0,0.0,0.0,40.0,82.0,623.0,343.0,1.0,472.0,0.0,162.0,1.0,30.0,43.6,6.0,0.0,994.0,7.0,490.0,25.0,44.0,92.0,1563.0,1401.0,67.0,341.0,14.0,20.0,327.0,68.0,623.0,211.0,0.0,1299.0,78.0,57.0,2458.0,318.0,927.0,110.0,1111.0,1006.0,1.0,203.0,1.0,0.0,17.0,1369.0,1.0,21.0,2.0,458.0,83.0,26.0,1051.0,15.0,659.0,0.0,80.0,69.0,35.0,1216.0,46.0,390.0,3036.0,0.0,627.0,3285.0,1145.0,242.0,409.0,554.0,14.0,91.0,0.0,250.0,39.0,22.0,106.0,3961.0,46.0,0.0,1089.0,32.0,10.0,467.0,193.0,309.0,365.0,20.0,133.0,0.0,0.0,6.666666666666668,83.0,80.0,739.0,170.0,1435.0,1670.0,63.0,128.0,18.0,15.0,0.0,0.0,40.0,754.0,59.0,175.0,506.0,87.0,34.0,12.0,75.0,71.0,62.0,0.0,607.0,148.0,59.0,73.0,0.0,0.0,268.0,286.0,0.0,140.0,51.0,82.0,92.0,108.0,111.0,815.0,205.0,119.0,182.0,570.0,7.0,1.0,308.0,45.0,742.0,0.0,1.0,263.0,1.0,56.0,5.0,17.0,20.0,334.0,43.0,137.0,273.0,11.0,543.0,1173.0,46.0,1055.0,26.0,185.0,88.0,21.0,23.0,332.0,18.0,0.0,0.0,0.0,695.0,89.0,154.0,23.0,1.0,26.0,29.0,3.0,0.0,1.0,117.0,113.0,0.0,1001.0,265.0,120.0,0.0,0.0,76.0,56.0,1930.0,493.0,20.0,108.0,0.0,0.0,999.0,23.0,951.0,79.0,0.0,87.0,46.0,73.0,131.0,0.0,0.0,171.0,58.4167346763,2014-01-19,,2014-3,57.74486769083288,62.735039316400005, +117,117,163.0,10.0,12.0,8.0,465.0,210.0,11.0,179.0,533.0,152.0,85.0,1205.0,7.0,23.0,90.0,8.0,87.0,23.0,258.0,101.0,0.0,129.0,147.0,242.0,107.0,744.0,27.0,11.0,0.0,56.0,12.0,151.0,906.0,139.0,0.0,38.0,69.0,56.0,182.0,441.0,15.0,259.0,176.0,353.0,0.0,136.0,16.0,105.0,3300.0,229.0,166.0,899.0,96.0,72.0,65.0,1.0,122.0,1487.0,1197.0,216.0,11.0,297.0,2.0,721.0,10.0,281.0,36.0,89.0,670.0,0.0,9.0,192.0,7.0,455.0,63.0,76.0,523.0,0.0,8.0,30.0,441.0,192.0,1054.0,40.0,0.0,0.0,53.0,106.0,897.0,450.0,3.0,455.0,1.0,203.0,0.0,37.0,48.4,8.0,0.0,1348.0,8.0,831.0,39.0,53.0,113.0,1929.0,1692.0,74.0,283.0,9.0,22.0,551.0,77.0,676.0,220.0,0.0,1676.0,89.0,51.0,2550.0,264.0,1005.0,84.0,1094.0,1247.0,3.0,234.0,3.0,2.0,19.0,1527.0,1.0,27.0,0.0,525.0,104.0,37.0,1113.0,18.0,720.0,0.0,81.0,117.0,63.0,1202.0,50.0,409.0,3404.0,0.0,610.0,3562.0,1248.0,348.0,452.0,687.0,12.0,91.0,0.0,243.0,41.0,33.0,99.0,3976.0,38.0,0.0,1297.0,36.0,25.0,468.0,174.0,396.0,437.0,23.0,180.0,1.0,0.0,6.0,99.0,103.0,445.0,219.0,1659.0,1971.0,71.0,167.0,26.0,16.0,0.0,0.0,55.0,807.0,80.0,192.0,571.0,107.0,44.0,14.0,81.0,39.0,66.0,2.0,733.0,143.0,92.0,40.0,1.0,0.0,373.0,313.0,0.0,166.0,49.0,70.0,96.0,86.0,137.0,1053.0,255.0,120.0,277.0,592.0,13.0,8.0,371.0,48.0,960.0,0.0,0.0,326.0,1.0,42.0,2.0,15.0,22.0,368.0,61.0,159.0,332.0,12.0,591.0,1209.0,60.0,1224.0,56.0,195.0,83.0,17.0,38.0,332.0,18.0,0.0,0.0,0.0,844.0,118.0,251.0,38.0,1.0,28.0,36.0,2.0,0.0,1.0,148.0,127.0,1.0,972.0,365.0,152.0,0.0,2.0,87.0,55.0,2176.0,487.0,22.0,144.0,0.0,0.0,1093.0,11.0,1084.0,30.0,0.0,95.0,42.0,102.0,139.0,0.0,0.0,159.0,49.899720753500006,2014-01-26,,2014-4,50.23863398216889,54.51872710538001, +118,118,152.0,11.0,20.0,9.0,390.0,207.0,11.0,235.0,524.0,215.0,70.0,1404.0,8.0,11.0,114.0,9.0,78.0,15.0,325.0,126.0,0.0,157.0,157.0,224.0,145.0,577.0,21.0,17.0,0.0,69.0,14.0,142.0,955.0,122.0,0.0,32.0,77.0,85.0,221.0,450.0,8.0,259.0,242.0,328.0,0.0,107.0,12.0,104.0,3478.0,245.0,116.0,810.0,146.0,71.0,90.0,2.0,107.0,1448.0,1273.0,272.0,10.0,259.0,4.0,255.0,14.0,245.0,25.0,226.0,657.0,0.0,10.0,270.0,7.0,437.0,66.0,92.0,654.0,4.0,7.0,38.0,414.0,195.0,1181.0,38.0,0.0,0.0,62.0,130.0,764.0,423.0,2.0,445.0,0.0,197.0,0.0,39.0,53.2,9.0,1.0,1384.0,7.0,510.0,37.0,53.0,139.0,1887.0,1725.0,73.0,240.0,10.0,17.0,371.0,83.0,639.0,193.0,0.0,1758.0,65.0,40.0,2522.0,242.0,896.0,76.0,1203.0,1128.0,2.0,220.0,1.0,1.0,18.0,1425.0,1.0,36.0,0.0,564.0,88.0,38.0,1080.0,8.0,761.0,0.0,131.0,107.0,51.0,1339.0,42.0,385.0,3350.0,0.0,651.0,3644.0,1256.0,305.0,380.0,725.0,11.0,89.0,0.0,229.0,31.0,30.0,99.0,3836.0,41.0,0.0,1483.0,39.0,10.0,403.0,187.0,406.0,468.0,14.0,201.0,0.0,0.0,10.0,103.0,96.0,454.0,242.0,2781.0,1925.0,89.0,170.0,21.0,21.0,0.0,0.0,53.0,814.0,74.0,158.0,524.0,86.0,52.0,13.0,56.0,259.0,60.0,3.0,821.0,112.0,92.0,73.0,0.0,1.0,345.0,354.0,0.0,184.0,58.0,62.0,84.0,119.0,178.0,1241.0,218.0,148.0,293.0,562.0,14.0,2.0,296.0,31.0,943.0,0.0,6.0,262.0,1.0,43.0,1.0,9.0,21.0,376.0,49.0,166.0,258.0,14.0,533.0,1222.0,52.0,1197.0,54.0,181.0,90.0,15.0,35.0,357.0,17.0,0.0,0.0,207.0,797.0,114.0,194.0,21.0,1.0,37.0,18.0,1.0,0.0,1.0,140.0,88.0,1.0,990.0,352.0,107.0,0.0,0.0,86.0,44.0,2674.0,429.0,15.0,185.0,0.0,0.0,1037.0,16.0,959.0,39.0,0.0,85.0,38.0,91.0,129.0,0.0,0.0,197.0,52.6981450253,2014-02-02,,2014-5,52.863864795343716,48.35060308662, +119,119,159.0,28.0,16.0,1.0,415.0,227.0,14.0,212.0,497.0,201.0,57.0,1181.0,8.0,14.0,78.0,6.0,83.0,9.0,309.0,73.0,0.0,120.0,97.0,200.0,97.0,614.0,22.0,13.0,0.0,39.0,19.0,108.0,887.0,123.0,0.0,28.0,72.0,89.0,181.0,421.0,8.0,228.0,141.0,316.0,0.0,115.0,17.0,81.0,2937.0,269.0,162.0,747.0,102.0,92.0,93.0,1.0,117.0,1537.0,1233.0,196.0,16.0,225.0,7.0,177.0,14.0,292.0,32.0,139.0,556.0,0.0,18.0,193.0,12.0,392.0,54.0,81.0,334.0,2.0,8.0,32.0,375.0,222.0,937.0,27.0,0.0,0.0,68.0,92.0,668.0,382.0,1.0,400.0,0.0,219.0,2.0,41.0,58.0,10.0,0.0,1359.0,6.0,817.0,36.0,40.0,107.0,1879.0,1717.0,50.0,254.0,8.0,30.0,372.0,55.0,554.0,291.0,1.0,2137.0,82.0,58.0,2471.0,294.0,747.0,75.0,1097.0,1270.0,0.0,215.0,3.0,1.0,15.0,1316.0,1.0,17.0,1.0,424.0,81.0,39.0,1063.0,10.0,530.0,0.0,126.0,86.0,66.0,1272.0,49.0,413.0,3097.0,0.0,639.0,3672.0,1288.0,250.0,386.0,722.0,11.0,97.0,0.0,239.0,27.0,34.0,124.0,4064.0,48.0,0.0,1283.0,28.0,10.0,525.0,245.0,360.0,429.0,14.0,148.0,0.0,0.0,9.0,92.0,114.0,450.0,206.0,3984.0,1607.0,85.0,146.0,33.0,16.0,0.0,1.0,63.0,694.0,66.0,150.0,498.0,79.0,54.0,23.0,400.0,106.0,78.0,1.0,659.0,140.0,79.0,71.0,0.0,0.0,328.0,292.0,0.0,143.0,57.0,85.0,76.0,79.0,276.0,1050.0,173.0,114.0,245.0,594.0,10.0,4.0,244.0,43.0,952.0,0.0,2.0,299.0,2.0,330.0,3.0,12.0,15.0,391.0,49.0,120.0,305.0,7.0,516.0,1193.0,41.0,1026.0,30.0,171.0,82.0,27.0,25.0,310.0,13.0,0.0,1.0,39.0,677.0,108.0,179.0,19.0,0.0,30.0,21.0,6.0,0.0,0.0,128.0,118.0,0.0,1178.0,296.0,115.0,0.0,1.0,70.0,41.0,2492.0,399.0,23.0,134.0,0.0,0.0,1207.0,9.0,841.0,39.0,0.0,80.0,41.0,75.0,116.0,0.0,0.0,194.0,59.825036287299994,2014-02-09,,2014-6,60.01109460052018,54.397631904159994, +120,120,179.0,17.0,13.0,8.0,307.0,212.0,12.0,151.0,467.0,191.0,58.0,1098.0,6.0,15.0,46.0,10.0,86.0,12.0,251.0,71.0,0.0,127.0,118.0,295.0,100.0,592.0,25.0,7.0,0.0,40.0,12.0,100.0,720.0,87.0,0.0,24.0,60.0,42.0,176.0,452.0,19.0,216.0,218.0,310.0,0.0,128.0,12.0,55.0,3136.0,246.0,166.0,739.0,108.0,81.0,72.0,3.0,87.0,1671.0,1156.0,200.0,18.0,247.0,5.0,233.0,7.0,297.0,23.0,141.0,567.0,0.0,26.0,139.0,11.0,454.0,52.0,69.0,289.0,1.0,7.0,34.0,398.0,273.0,888.0,31.0,0.0,0.0,82.0,125.0,692.0,314.0,3.0,388.0,0.0,202.0,3.0,20.0,49.0,7.0,0.0,1171.0,12.0,423.0,32.0,47.0,100.0,1691.0,2068.0,76.0,206.0,9.0,28.0,302.0,69.0,496.0,187.0,0.0,1934.0,69.0,59.0,2505.0,297.0,721.0,66.0,1146.0,1107.0,3.0,183.0,1.0,1.0,17.0,1379.0,1.0,15.0,2.0,505.0,85.0,54.0,1174.0,10.0,567.0,0.0,74.0,76.0,41.0,1218.0,40.0,292.0,3176.0,0.0,502.0,3664.0,1207.0,250.0,413.0,719.0,10.0,243.0,0.0,207.0,24.0,36.0,93.0,4033.0,34.0,1.0,1237.0,34.0,11.0,577.0,178.0,363.0,581.0,15.0,130.0,0.0,0.0,7.0,62.0,99.0,479.0,160.0,2735.0,1412.0,81.0,139.0,31.0,26.0,0.0,0.0,29.0,683.0,80.0,260.0,497.0,44.0,43.0,21.0,87.0,79.0,62.0,1.0,675.0,127.0,66.0,71.0,0.0,1.0,274.0,249.0,0.0,151.0,48.0,69.0,84.0,95.0,220.0,1053.0,228.0,129.0,193.0,505.0,8.0,1.0,201.0,35.0,1031.0,0.0,4.0,255.0,0.0,75.0,0.0,32.0,25.0,307.0,58.0,111.0,255.0,13.0,512.0,1143.0,52.0,1198.0,34.0,168.0,84.0,22.0,27.0,325.0,13.0,0.0,1.0,31.0,606.0,150.0,182.0,25.0,0.0,29.0,19.0,1.0,0.0,2.0,103.0,130.0,0.0,1075.0,329.0,97.0,0.0,1.0,54.0,50.0,2636.0,388.0,30.0,106.0,0.0,0.0,1014.0,13.0,980.0,43.0,0.0,82.0,38.0,79.0,101.0,0.0,0.0,179.0,71.57107455020001,2014-02-16,,2014-7,71.16793544356399,68.48925241158001, +121,121,179.0,25.0,9.0,5.0,321.0,221.0,15.0,146.0,457.0,167.0,59.0,1093.0,7.0,9.0,49.0,13.0,63.0,22.0,244.0,81.0,0.0,107.0,132.0,271.0,76.0,448.0,16.0,10.0,0.0,41.0,13.0,97.0,740.0,90.0,0.0,16.0,43.0,41.0,183.0,404.0,9.0,144.0,157.0,353.0,0.0,122.0,11.0,88.0,2974.0,240.0,178.0,738.0,95.0,81.0,62.0,0.0,97.0,1630.0,1168.0,208.0,11.0,255.0,3.0,210.0,10.0,305.0,24.0,121.0,469.0,0.0,21.0,157.0,15.0,348.0,46.0,63.0,364.0,6.0,9.0,26.0,363.0,182.0,894.0,32.0,0.0,0.0,70.0,112.0,713.0,346.0,3.0,374.0,0.0,187.0,1.0,25.0,36.0,11.0,0.0,1229.0,11.0,441.0,33.0,43.0,102.0,1633.0,2316.0,81.0,199.0,12.0,28.0,344.0,57.0,498.0,170.0,0.0,1663.0,74.0,31.0,2849.0,259.0,780.0,62.0,1027.0,1110.0,1.0,184.0,1.0,0.0,25.0,1301.0,2.0,22.0,3.0,468.0,90.0,31.0,996.0,15.0,570.0,0.0,75.0,102.0,55.0,1249.0,36.0,319.0,3029.0,0.0,473.0,3751.0,1209.0,222.0,369.0,747.0,7.0,95.0,0.0,190.0,21.0,37.0,84.0,4302.0,41.0,0.0,1095.0,39.0,11.0,501.0,213.0,353.0,419.0,12.0,134.0,1.0,0.0,8.0,58.0,120.0,480.0,143.0,2046.0,1547.0,78.0,225.0,23.0,17.0,0.0,0.0,41.0,629.0,63.0,158.0,485.0,64.0,30.0,30.0,63.0,48.0,61.0,2.0,700.0,101.0,83.0,49.0,0.0,0.0,281.0,243.0,0.0,184.0,31.0,80.0,87.0,96.0,134.0,1044.0,190.0,107.0,195.0,508.0,14.0,2.0,232.0,34.0,915.0,0.0,7.0,261.0,0.0,51.0,7.0,8.0,12.0,384.0,62.0,95.0,263.0,20.0,493.0,1072.0,52.0,1095.0,38.0,194.0,67.0,32.0,36.0,293.0,12.0,0.0,0.0,17.0,600.0,125.0,180.0,25.0,0.0,26.0,23.0,6.0,0.0,0.0,115.0,123.0,0.0,1108.0,338.0,105.0,0.0,1.0,44.0,41.0,2599.0,432.0,25.0,115.0,0.0,0.0,953.0,15.0,864.0,23.0,0.0,67.0,53.0,138.0,156.0,0.0,0.0,166.0,85.4684974267,2014-02-23,,2014-8,85.3495885678875,80.39892018044, +122,122,178.0,17.0,14.0,7.0,255.0,238.0,35.0,215.0,456.0,214.0,50.0,1020.0,7.0,23.0,55.0,3.0,63.0,9.0,269.0,61.0,0.0,92.0,107.0,175.0,62.0,441.0,23.0,5.0,0.0,40.0,9.0,108.0,678.0,120.0,0.0,28.0,60.0,43.0,178.0,298.0,15.0,216.0,152.0,291.0,0.0,117.0,6.0,69.0,3017.0,194.0,131.0,780.0,88.0,63.0,60.0,1.0,94.0,1695.0,1124.0,199.0,12.0,269.0,4.0,255.0,14.0,234.0,34.0,102.0,503.0,0.0,18.0,174.0,14.0,364.0,41.0,72.0,321.0,3.0,8.0,26.0,518.0,178.0,897.0,35.0,0.0,0.0,70.0,109.0,644.0,296.0,4.0,514.0,0.0,240.0,0.0,33.0,43.0,5.0,0.0,1058.0,10.0,493.0,26.0,36.0,100.0,1712.0,2436.0,61.0,227.0,3.0,27.0,325.0,53.0,599.0,180.0,0.0,1577.0,62.0,40.0,2688.0,251.0,1094.0,72.0,1011.0,1153.0,3.0,192.0,2.0,0.0,31.0,1142.0,2.0,24.0,3.0,514.0,98.0,46.0,1058.0,4.0,528.0,0.0,73.0,177.0,99.0,1308.0,19.0,331.0,2979.0,0.0,574.0,3726.0,1081.0,239.0,423.0,724.0,10.0,92.0,0.0,209.0,22.0,31.0,102.0,3791.0,42.0,0.0,1120.0,32.0,11.0,425.0,147.0,394.0,539.0,18.0,129.0,2.0,0.0,8.0,60.0,78.0,459.0,131.0,1735.0,1538.0,65.0,180.0,26.0,18.0,0.0,0.0,37.0,692.0,92.0,147.0,430.0,59.0,46.0,21.0,75.0,68.0,62.0,2.0,600.0,103.0,81.0,45.0,0.0,0.0,262.0,254.0,0.0,166.0,55.0,74.0,80.0,92.0,135.0,865.0,224.0,86.0,161.0,437.0,13.0,2.0,201.0,40.0,874.0,0.0,6.0,271.0,3.0,39.0,5.0,13.0,8.0,350.0,64.0,117.0,241.0,10.0,567.0,1121.0,49.0,967.0,37.0,173.0,73.0,14.0,30.0,279.0,19.0,0.0,0.0,12.0,637.0,76.0,210.0,26.0,0.0,35.0,33.0,1.0,0.0,0.0,125.0,133.0,0.0,1037.0,314.0,103.0,0.0,0.0,40.0,37.0,2963.0,430.0,22.0,91.0,0.0,0.0,891.0,10.0,921.0,36.0,0.0,73.0,67.0,86.0,107.0,0.0,0.0,174.0,62.6701597575,2014-03-02,,2014-9,63.91963185660461,60.272869868440004, +123,123,168.0,32.0,8.0,2.0,291.0,199.0,8.0,169.0,411.0,188.0,61.0,1026.0,3.0,18.0,66.0,4.0,54.0,10.0,242.0,59.0,0.0,124.0,116.0,170.0,72.0,387.0,47.0,10.0,0.0,42.0,28.0,106.0,908.0,136.0,0.0,26.0,66.0,40.0,190.0,362.0,8.0,175.0,176.0,329.0,0.0,89.0,14.0,104.0,2931.0,219.0,118.0,750.0,106.0,73.0,48.0,2.0,110.0,1539.0,1021.0,209.0,7.0,226.0,4.0,228.0,9.0,260.0,27.0,74.0,420.0,0.0,29.0,184.0,5.0,409.0,30.0,94.0,281.0,0.0,3.0,30.0,389.0,150.0,905.0,35.0,0.0,0.0,23.0,118.0,849.0,355.0,1.0,455.0,1.0,122.0,1.0,32.0,44.0,14.0,0.0,1087.0,5.0,395.0,20.0,31.0,113.0,1692.0,2054.0,45.0,233.0,6.0,32.0,313.0,66.0,537.0,185.0,0.0,1567.0,56.0,50.0,2731.0,290.0,751.0,96.0,964.0,992.0,1.0,168.0,1.0,0.0,19.0,1214.0,2.0,24.0,2.0,433.0,91.0,24.0,1021.0,11.0,543.0,0.0,107.0,81.0,58.0,1416.0,32.0,318.0,3095.0,0.0,582.0,3418.0,1088.0,222.0,378.0,682.0,13.0,67.0,0.0,223.0,28.0,31.0,82.0,3519.0,36.0,0.0,1288.0,43.0,10.0,524.0,201.0,325.0,337.0,7.0,148.0,1.0,0.0,8.0,57.0,94.0,376.0,149.0,2757.0,1474.0,77.0,151.0,19.0,30.0,0.0,0.0,36.0,713.0,99.0,135.0,382.0,56.0,40.0,15.0,46.0,56.0,77.0,1.0,622.0,132.0,74.0,45.0,1.0,0.0,279.0,240.0,0.0,129.0,55.0,70.0,69.0,67.0,187.0,869.0,189.0,114.0,158.0,422.0,16.0,3.0,188.0,40.0,867.0,0.0,2.0,271.0,0.0,54.0,2.0,17.0,13.0,320.0,54.0,145.0,255.0,12.0,515.0,1175.0,60.0,1030.0,27.0,155.0,49.0,19.0,55.0,260.0,11.0,0.0,0.0,13.0,599.0,72.0,185.0,27.0,1.0,32.0,31.0,0.0,0.0,0.0,112.0,103.0,0.0,1056.0,312.0,95.0,0.0,7.0,69.0,49.0,3192.0,405.0,13.0,84.0,0.0,0.0,900.0,10.0,910.0,28.0,0.0,114.0,33.0,62.0,91.0,0.0,0.0,139.0,28.6816338641,2014-03-09,,2014-10,29.501218669987267,30.3832479365, +124,124,184.0,31.0,11.0,7.0,287.0,200.0,16.0,151.0,465.0,168.0,60.0,893.0,2.0,17.0,67.0,10.0,59.0,15.0,262.0,70.0,0.0,84.0,114.0,201.0,65.0,415.0,26.0,7.0,0.0,29.0,21.0,125.0,664.0,84.0,0.0,23.0,43.0,54.0,191.0,369.0,13.0,171.0,150.0,316.0,0.0,99.0,20.0,84.0,2814.0,237.0,126.0,762.0,119.0,91.0,60.0,3.0,107.0,1262.0,1016.0,226.0,10.0,226.0,5.0,214.0,16.0,241.0,32.0,102.0,470.0,0.0,33.0,157.0,16.0,455.0,58.0,74.0,232.0,3.0,5.0,27.0,364.0,178.0,875.0,49.0,0.0,0.0,22.0,104.0,690.0,295.0,3.0,418.0,0.0,191.0,4.0,40.0,48.0,9.0,1.0,1057.0,10.0,404.0,20.0,42.0,93.0,1658.0,1578.0,41.0,215.0,12.0,40.0,321.0,65.0,544.0,178.0,0.0,1461.0,67.0,56.0,2550.0,262.0,816.0,82.0,1128.0,1135.0,1.0,184.0,3.0,2.0,12.0,1119.0,0.0,30.0,2.0,445.0,122.0,32.0,1004.0,11.0,533.0,0.0,100.0,87.0,34.0,1387.0,24.0,315.0,2759.0,0.0,524.0,3328.0,1134.0,260.0,417.0,702.0,15.0,78.0,0.0,218.0,30.0,23.0,119.0,3107.0,46.0,0.0,1089.0,52.0,11.0,547.0,175.0,350.0,366.0,17.0,137.0,0.0,0.0,9.0,54.0,83.0,373.0,131.0,1515.0,1439.0,77.0,164.0,22.0,16.0,0.0,1.0,20.0,619.0,75.0,134.0,418.0,60.0,33.0,14.0,54.0,50.0,68.0,1.0,605.0,118.0,104.0,80.0,0.0,0.0,267.0,244.0,0.0,137.0,56.0,81.0,53.0,83.0,137.0,737.0,188.0,96.0,145.0,332.0,22.0,6.0,213.0,40.0,772.0,0.0,2.0,237.0,0.0,40.0,3.0,19.0,19.0,306.0,53.0,100.0,198.0,12.0,1390.0,1051.0,52.0,955.0,29.0,152.0,76.0,17.0,70.0,245.0,22.0,0.0,1.0,6.0,631.0,78.0,171.0,25.0,1.0,27.0,17.0,4.0,0.0,0.0,98.0,103.0,0.0,920.0,332.0,91.0,0.0,1.0,40.0,46.0,2923.0,427.0,19.0,98.0,0.0,0.0,824.0,14.0,1031.0,28.0,0.0,113.0,54.0,74.0,105.0,0.0,0.0,145.0,51.3285854392,2014-03-16,,2014-11,50.08280676424016,52.017826696680004, +125,125,177.0,26.0,7.0,7.0,341.0,174.0,11.0,138.0,490.0,216.0,74.0,1083.0,4.0,18.0,48.0,5.0,101.0,8.0,247.0,75.0,0.0,95.0,126.0,307.0,65.0,462.0,35.0,11.0,0.0,43.0,21.0,131.0,762.0,104.0,0.0,35.0,62.0,35.0,179.0,420.0,10.0,494.0,161.0,357.0,0.0,145.0,8.0,92.0,2861.0,241.0,127.0,804.0,113.0,73.0,87.0,2.0,123.0,1293.0,999.0,242.0,9.0,249.0,6.0,189.0,12.0,247.0,40.0,86.0,369.0,0.0,30.0,150.0,9.0,403.0,54.0,65.0,286.0,5.0,13.0,38.0,383.0,190.0,1018.0,49.0,0.0,0.0,44.0,112.0,705.0,331.0,1.0,444.0,3.0,138.0,3.0,33.0,44.0,12.0,1.0,1543.0,5.0,439.0,26.0,61.0,148.0,1598.0,1552.0,62.0,199.0,7.0,37.0,345.0,63.0,503.0,186.0,0.0,1632.0,63.0,71.0,2603.0,255.0,997.0,75.0,1183.0,1084.0,3.0,171.0,6.0,0.0,16.0,1119.0,2.0,20.0,6.0,521.0,92.0,47.0,1113.0,17.0,589.0,0.0,112.0,88.0,43.0,1398.0,36.0,422.0,3077.0,0.0,549.0,3367.0,1139.0,251.0,425.0,651.0,12.0,89.0,0.0,227.0,33.0,29.0,121.0,3813.0,45.0,1.0,1870.0,73.0,11.0,621.0,161.0,389.0,388.0,16.0,156.0,0.0,0.0,10.0,59.0,98.0,376.0,196.0,1409.0,1587.0,66.0,152.0,32.0,16.0,0.0,104.0,26.0,669.0,55.0,151.0,446.0,61.0,46.0,21.0,60.0,73.0,78.0,2.0,696.0,127.0,105.0,64.0,189.0,0.0,232.0,299.0,0.0,160.0,51.0,72.0,66.0,84.0,130.0,922.0,233.0,88.0,169.0,323.0,17.0,5.0,204.0,35.0,981.0,0.0,6.0,234.0,1.0,52.0,3.0,24.0,14.0,299.0,69.0,116.0,260.0,19.0,1369.0,1101.0,58.0,1063.0,79.0,222.0,75.0,20.0,26.0,307.0,24.0,0.0,0.0,12.0,640.0,89.0,176.0,33.0,1.0,24.0,40.0,3.0,0.0,0.0,107.0,87.0,2.0,963.0,298.0,112.0,0.0,1.0,36.0,51.0,2928.0,415.0,30.0,124.0,0.0,0.0,780.0,12.0,978.0,32.0,0.0,91.0,37.0,83.0,126.0,0.0,0.0,127.0,63.539029085699994,2014-03-23,,2014-12,63.28899274532945,72.33322326856, +126,126,196.0,22.0,14.0,7.0,390.0,224.0,15.0,152.0,563.0,261.0,58.0,1117.0,4.0,17.0,70.0,10.0,68.0,10.0,251.0,100.0,0.0,129.0,104.0,222.0,79.0,512.0,27.0,23.0,0.0,44.0,17.0,130.0,737.0,115.0,0.0,37.0,53.0,52.0,206.0,418.0,9.0,267.0,150.0,348.0,0.0,125.0,25.0,104.0,2954.0,211.0,218.0,787.0,100.0,78.0,67.0,1.0,126.0,1212.0,1096.0,210.0,12.0,254.0,6.0,163.0,12.0,283.0,47.0,111.0,536.0,0.0,29.0,156.0,12.0,376.0,50.0,70.0,328.0,0.0,13.0,35.0,436.0,176.0,868.0,43.0,0.0,0.0,33.0,103.0,732.0,369.0,2.0,462.0,0.0,174.0,3.0,79.0,37.0,5.0,0.0,1285.0,8.0,414.0,28.0,56.0,85.0,1696.0,1311.0,44.0,247.0,11.0,51.0,347.0,56.0,613.0,202.0,1.0,1501.0,50.0,67.0,2777.0,288.0,851.0,72.0,1233.0,1123.0,1.0,244.0,2.0,0.0,18.0,1143.0,5.0,18.0,6.0,450.0,97.0,26.0,1138.0,13.0,603.0,0.0,90.0,82.0,35.0,1330.0,37.0,364.0,3193.0,0.0,605.0,3403.0,1077.0,252.0,369.0,658.0,20.0,100.0,0.0,237.0,31.0,34.0,108.0,4027.0,56.0,2.0,1463.0,53.0,12.0,584.0,206.0,327.0,513.0,31.0,170.0,0.0,0.0,8.0,57.0,92.0,435.0,192.0,1630.0,1694.0,67.0,169.0,22.0,19.0,0.0,179.0,36.0,800.0,92.0,142.0,415.0,69.0,44.0,21.0,61.0,75.0,71.0,3.0,804.0,115.0,101.0,66.0,26.0,0.0,257.0,278.0,0.0,149.0,57.0,102.0,76.0,108.0,100.0,1073.0,224.0,106.0,246.0,270.0,26.0,3.0,215.0,75.0,1003.0,0.0,2.0,273.0,0.0,53.0,7.0,39.0,14.0,357.0,45.0,138.0,238.0,14.0,782.0,1172.0,55.0,1090.0,97.0,194.0,68.0,21.0,13.0,315.0,16.0,0.0,0.0,4.0,629.0,70.0,142.0,38.0,1.0,39.0,31.0,6.0,0.0,1.0,126.0,104.0,0.0,949.0,295.0,98.0,0.0,2.0,51.0,37.0,2952.0,393.0,23.0,101.0,0.0,0.0,808.0,13.0,933.0,29.0,0.0,78.0,47.0,81.0,119.0,0.0,0.0,166.0,40.8255840327,2014-03-30,,2014-13,40.6037567381956,58.219239561639995, +127,127,178.0,23.0,8.0,8.0,383.0,203.0,9.0,167.0,428.0,241.0,53.0,1105.0,4.0,27.0,101.0,8.0,94.0,13.0,285.0,103.0,0.0,102.0,133.0,237.0,116.0,574.0,25.0,27.0,0.0,29.0,21.0,133.0,803.0,110.0,0.0,34.0,52.0,54.0,233.0,350.0,14.0,744.0,201.0,346.0,0.0,108.0,20.0,95.0,2696.0,239.0,647.0,739.0,118.0,79.0,106.0,1.0,164.0,1055.0,981.0,226.0,10.0,233.0,7.0,176.0,12.0,226.0,36.0,86.0,479.0,0.0,18.0,220.0,11.0,388.0,49.0,57.0,329.0,4.0,5.0,34.0,385.0,148.0,785.0,50.0,0.0,0.0,27.0,113.0,1314.0,281.0,3.0,434.0,0.0,161.0,0.0,127.0,57.0,10.0,0.0,1204.0,7.0,374.0,32.0,51.0,156.0,1517.0,1208.0,54.0,221.0,8.0,48.0,362.0,65.0,505.0,191.0,0.0,1390.0,54.0,70.0,2294.0,242.0,903.0,62.0,1138.0,1057.0,3.0,216.0,0.0,1.0,19.0,1137.0,2.0,42.0,3.0,448.0,99.0,57.0,1080.0,22.0,556.0,0.0,113.0,72.0,67.0,1345.0,49.0,370.0,3239.0,0.0,513.0,3238.0,1100.0,229.0,381.0,739.0,26.0,91.0,0.0,228.0,102.0,25.0,133.0,4364.0,58.0,0.0,1236.0,48.0,11.0,506.0,203.0,390.0,424.0,54.0,144.0,0.0,0.0,8.0,46.0,107.0,464.0,187.0,1476.0,1596.0,91.0,147.0,37.0,18.0,0.0,166.0,59.0,696.0,72.0,184.0,434.0,59.0,39.0,18.0,75.0,65.0,80.0,2.0,652.0,111.0,112.0,55.0,24.0,0.0,301.0,274.0,0.0,176.0,80.0,74.0,69.0,97.0,93.0,859.0,188.0,111.0,173.0,261.0,17.0,4.0,249.0,38.0,852.0,0.0,1.0,277.0,0.0,55.0,7.0,28.0,16.0,318.0,52.0,114.0,278.0,22.0,531.0,1062.0,52.0,978.0,48.0,170.0,67.0,14.0,28.0,284.0,21.0,0.0,0.0,35.0,679.0,89.0,186.0,31.0,1.0,39.0,40.0,2.0,0.0,0.0,79.0,88.0,0.0,875.0,319.0,92.0,1.0,3.0,108.0,40.0,2557.0,436.0,24.0,112.0,0.0,0.0,733.0,12.0,948.0,37.0,0.0,78.0,49.0,80.0,124.0,0.0,0.0,187.0,38.896380043600004,2014-04-06,,2014-14,38.196586612133075,36.583304694140004, +128,128,192.0,22.0,15.0,8.0,334.0,167.0,22.0,161.0,470.0,254.0,47.0,1154.0,8.0,28.0,63.0,9.0,92.0,14.0,226.0,86.0,0.0,114.0,103.0,187.0,85.0,533.0,35.0,14.0,0.0,58.0,19.0,135.0,931.0,111.0,0.0,33.0,47.0,40.0,200.0,341.0,10.0,246.0,159.0,346.0,0.0,96.0,18.0,97.0,2628.0,180.0,529.0,773.0,107.0,60.0,94.0,0.0,107.0,1036.0,901.0,219.0,12.0,230.0,10.0,259.0,13.0,240.0,40.0,105.0,508.0,0.0,26.0,141.0,14.0,361.0,59.0,73.0,351.0,4.0,8.0,33.0,389.0,148.0,795.0,63.0,0.0,0.0,34.0,99.0,722.0,291.0,2.0,407.0,2.0,123.0,0.0,265.0,45.0,14.0,0.0,1099.0,13.0,434.0,34.0,41.0,139.0,1474.0,1180.0,44.0,247.0,17.0,42.0,332.0,53.0,571.0,227.0,1.0,1509.0,60.0,63.0,2368.0,274.0,850.0,74.0,1020.0,968.0,6.0,274.0,3.0,1.0,23.0,1030.0,3.0,27.0,1.0,445.0,105.0,34.0,1044.0,13.0,611.0,0.0,95.0,91.0,38.0,1305.0,48.0,381.0,2989.0,0.0,510.0,3287.0,930.0,275.0,383.0,551.0,22.0,87.0,0.0,228.0,67.0,32.0,152.0,3873.0,53.0,0.0,1446.0,45.0,10.0,446.0,196.0,298.0,431.0,76.0,172.0,0.0,0.0,8.0,80.0,111.0,379.0,187.0,1228.0,1577.0,78.0,172.0,28.0,10.0,0.0,198.0,67.0,679.0,65.0,164.0,429.0,70.0,33.0,27.0,98.0,98.0,95.0,0.0,665.0,112.0,183.0,39.0,34.0,1.0,254.0,243.0,0.0,167.0,64.0,79.0,89.0,72.0,133.0,847.0,178.0,126.0,150.0,237.0,19.0,6.0,326.0,52.0,814.0,0.0,4.0,238.0,1.0,53.0,5.0,13.0,19.0,370.0,54.0,118.0,287.0,19.0,637.0,989.0,42.0,1093.0,59.0,177.0,56.0,24.0,24.0,267.0,22.0,0.0,0.0,26.0,597.0,97.0,179.0,46.0,0.0,39.0,45.0,7.0,0.0,1.0,97.0,164.0,0.0,944.0,302.0,112.0,0.0,1.0,63.0,49.0,2818.0,404.0,25.0,119.0,0.0,0.0,641.0,19.0,996.0,42.0,0.0,108.0,51.0,133.0,107.0,0.0,0.0,176.0,49.598932767799994,2014-04-13,,2014-15,50.27677110698318,52.87204717306, +129,129,203.0,22.0,28.0,14.0,369.0,155.0,19.0,155.0,444.0,254.0,64.0,991.0,18.0,19.0,66.0,8.0,97.0,14.0,326.0,83.0,0.0,90.0,110.0,255.0,101.0,454.0,41.0,11.0,0.0,43.0,18.0,121.0,949.0,102.0,0.0,38.0,74.0,35.0,201.0,382.0,19.0,244.0,146.0,341.0,0.0,108.0,22.0,113.0,2702.0,179.0,178.0,779.0,126.0,76.0,71.0,1.0,113.0,955.0,917.0,235.0,11.0,214.0,7.0,230.0,17.0,267.0,42.0,253.0,459.0,0.0,21.0,192.0,24.0,404.0,64.0,73.0,333.0,2.0,8.0,27.0,373.0,171.0,841.0,42.0,0.0,0.0,57.0,126.0,687.0,368.0,1.0,508.0,0.0,186.0,2.0,145.0,53.0,12.0,0.0,1198.0,12.0,416.0,30.0,33.0,129.0,1602.0,1124.0,49.0,175.0,15.0,36.0,351.0,59.0,629.0,165.0,0.0,1349.0,80.0,65.0,3101.0,259.0,1251.0,73.0,1059.0,1086.0,2.0,241.0,3.0,0.0,23.0,942.0,2.0,23.0,0.0,476.0,130.0,40.0,1082.0,12.0,624.0,0.0,126.0,94.0,46.0,1369.0,48.0,406.0,2823.0,0.0,529.0,3008.0,970.0,242.0,370.0,588.0,21.0,98.0,0.0,183.0,62.0,38.0,115.0,3975.0,56.0,0.0,1406.0,56.0,16.0,433.0,170.0,304.0,400.0,41.0,148.0,1.0,0.0,15.0,70.0,115.0,357.0,192.0,1021.0,1656.0,53.0,166.0,20.0,25.0,0.0,175.0,160.0,755.0,66.0,177.0,431.0,88.0,51.0,22.0,83.0,61.0,77.0,0.0,633.0,96.0,106.0,64.0,19.0,0.0,263.0,248.0,0.0,167.0,60.0,66.0,89.0,92.0,120.0,705.0,219.0,113.0,181.0,192.0,15.0,8.0,289.0,39.0,826.0,0.0,1.0,221.0,28.0,51.0,6.0,21.0,16.0,313.0,74.0,124.0,256.0,17.0,523.0,1022.0,51.0,910.0,47.0,281.0,60.0,17.0,28.0,270.0,24.0,0.0,0.0,9.0,514.0,69.0,152.0,48.0,0.0,28.0,25.0,5.0,0.0,1.0,122.0,102.0,0.0,827.0,302.0,91.0,0.0,0.0,53.0,46.0,2792.0,436.0,20.0,136.0,0.0,0.0,659.0,13.0,945.0,36.0,0.0,109.0,57.0,98.0,178.0,0.0,0.0,162.0,53.4536493441,2014-04-20,,2014-16,54.52291388542383,44.46205684638001, +130,130,111.0,16.0,5.0,5.0,241.0,86.0,21.0,116.0,273.0,145.0,43.0,925.0,4.0,14.0,89.0,4.0,123.0,4.0,186.0,93.0,53.0,118.0,106.0,219.0,50.0,356.0,14.0,13.0,364.0,20.0,20.0,81.0,764.0,101.0,0.0,27.0,78.0,47.0,222.0,249.0,10.0,208.0,122.0,346.0,0.0,76.0,21.0,52.0,1434.0,105.0,105.0,405.0,55.0,56.0,83.0,0.0,106.0,840.0,468.0,192.0,5.0,156.0,10.0,1386.0,10.0,213.0,27.0,81.0,411.0,0.0,44.0,140.0,15.0,251.0,51.0,64.0,314.0,1.0,19.0,23.0,362.0,96.0,565.0,28.0,0.0,4581.0,22.0,205.0,636.0,172.0,2.0,339.0,0.0,86.0,4.0,906.0,55.0,6.0,0.0,749.0,6.0,396.0,26.0,49.0,75.0,921.0,1255.0,337.0,108.0,13.0,21.0,313.0,65.0,447.0,148.0,0.0,1265.0,59.0,41.0,1477.0,142.0,926.0,105.0,680.0,774.0,3.0,141.0,0.0,0.0,14.0,638.0,0.0,20.0,0.0,282.0,67.0,28.0,719.0,8.0,435.0,0.0,79.0,96.0,51.0,577.0,24.0,220.0,1829.0,0.0,331.0,2209.0,542.0,129.0,158.0,349.0,36.0,49.0,0.0,106.0,141.0,17.0,251.0,1889.0,30.0,0.0,577.0,33.0,6.0,786.0,153.0,231.0,507.0,143.0,126.0,0.0,0.0,10.0,51.0,56.0,332.0,108.0,755.0,834.0,51.0,124.0,27.0,17.0,0.0,155.0,49.0,564.0,43.0,109.0,430.0,85.0,30.0,26.0,74.0,81.0,40.0,0.0,421.0,47.0,77.0,42.0,15.0,0.0,181.0,204.0,0.0,93.0,47.0,52.0,52.0,73.0,87.0,398.0,155.0,188.0,216.0,182.0,16.0,6.0,197.0,44.0,537.0,0.0,3.0,131.0,21.0,122.0,4.0,13.0,13.0,156.0,49.0,108.0,221.0,17.0,1465.0,515.0,65.0,448.0,92.0,95.0,51.0,21.0,20.0,282.0,7.0,0.0,0.0,2.0,364.0,83.0,106.0,30.0,0.0,28.0,31.0,2.0,0.0,0.0,61.0,149.0,0.0,893.0,163.0,89.0,0.0,1.0,51.0,52.0,835.0,227.0,12.0,69.0,0.0,0.0,485.0,15.0,647.0,24.0,0.0,99.0,54.0,85.0,90.0,0.0,0.0,98.0,49.0331016448,2014-10-26,,2014-43,48.82290252719649,70.36555434706, +131,131,106.0,12.0,7.0,7.0,270.0,98.0,13.0,101.0,237.0,195.0,36.0,952.0,5.0,7.0,68.0,8.0,88.0,6.0,199.0,54.0,33.0,143.0,111.0,131.0,61.0,366.0,31.0,15.0,191.0,25.0,13.0,93.0,709.0,131.0,1.0,19.0,90.0,45.0,176.0,195.0,8.0,490.0,132.0,273.0,0.0,63.0,24.0,52.0,1384.0,79.0,108.0,369.0,57.0,58.0,60.0,0.0,96.0,831.0,432.0,214.0,6.0,160.0,6.0,1201.0,8.0,208.0,32.0,106.0,361.0,0.0,34.0,123.0,16.0,231.0,52.0,43.0,268.0,3.0,6.0,16.0,298.0,84.0,499.0,37.0,54.0,3446.0,28.0,187.0,612.0,204.0,2.0,371.0,0.0,95.0,3.0,577.0,65.0,8.0,0.0,880.0,10.0,370.0,13.0,34.0,88.0,816.0,1106.0,287.0,152.0,8.0,25.0,270.0,69.0,480.0,209.0,0.0,1082.0,84.0,40.0,1321.0,163.0,866.0,89.0,628.0,792.0,4.0,136.0,0.0,0.0,11.0,604.0,0.0,22.0,0.0,273.0,69.0,30.0,704.0,4.0,502.0,0.0,78.0,77.0,59.0,510.0,24.0,267.0,1546.0,0.0,267.0,1811.0,431.0,153.0,165.0,355.0,44.0,65.0,0.0,89.0,96.0,19.0,185.0,1645.0,41.0,0.0,532.0,26.0,19.0,507.0,129.0,238.0,366.0,85.0,157.0,0.0,0.0,9.0,64.0,48.0,287.0,203.0,556.0,856.0,35.0,164.0,18.0,10.0,0.0,190.0,38.0,528.0,34.0,128.0,448.0,73.0,60.0,42.0,215.0,93.0,52.0,0.0,501.0,52.0,65.0,50.0,29.0,1.0,197.0,216.0,0.0,92.0,54.0,46.0,56.0,73.0,90.0,390.0,121.0,179.0,184.0,171.0,19.0,4.0,206.0,33.0,484.0,0.0,2.0,147.0,17.0,70.0,2.0,11.0,16.0,160.0,47.0,98.0,186.0,24.0,904.0,468.0,52.0,401.0,58.0,134.0,56.0,9.0,13.0,226.0,7.0,0.0,0.0,3.0,336.0,89.0,128.0,31.0,0.0,27.0,32.0,3.0,0.0,1.0,58.0,115.0,0.0,720.0,146.0,81.0,0.0,1.0,70.0,21.0,771.0,204.0,14.0,113.0,1.0,0.0,497.0,9.0,551.0,29.0,0.0,83.0,45.0,90.0,127.0,0.0,0.0,107.0,27.3310032963,2014-11-02,,2014-44,27.821839187868697,53.44610918858, +132,132,109.0,20.0,7.0,4.0,318.0,69.0,12.0,98.0,230.0,194.0,20.0,868.0,4.0,17.0,61.0,3.0,69.0,9.0,215.0,72.0,21.0,110.0,105.0,147.0,83.0,367.0,25.0,8.0,103.0,24.0,12.0,105.0,812.0,122.0,0.0,32.0,34.0,31.0,194.0,229.0,8.0,286.0,159.0,283.0,0.0,94.0,7.0,45.0,1342.0,72.0,95.0,376.0,70.0,51.0,90.0,0.0,100.0,1016.0,422.0,237.0,6.0,136.0,4.0,1032.0,8.0,160.0,36.0,99.0,495.0,0.0,38.0,135.0,17.0,219.0,60.0,51.0,289.0,1.0,3.0,16.0,267.0,84.0,448.0,33.0,231.0,1806.0,18.0,141.0,633.0,240.0,0.0,295.0,0.0,96.0,1.0,452.0,34.0,5.0,2.0,801.0,2.0,259.0,16.0,44.0,75.0,976.0,1039.0,509.0,146.0,5.0,14.0,265.0,56.0,575.0,148.0,0.0,1035.0,65.0,41.0,1356.0,142.0,629.0,56.0,609.0,1024.0,2.0,155.0,0.0,0.0,23.0,687.0,0.0,16.0,0.0,281.0,62.0,20.0,741.0,6.0,467.0,0.0,76.0,84.0,38.0,506.0,21.0,224.0,1681.0,0.0,237.0,1821.0,510.0,127.0,151.0,367.0,24.0,50.0,0.0,111.0,67.0,28.0,168.0,1659.0,23.0,0.0,609.0,19.0,4.0,467.0,150.0,239.0,387.0,83.0,129.0,0.0,0.0,10.0,65.0,55.0,278.0,208.0,752.0,816.0,34.0,151.0,20.0,17.0,0.0,212.0,43.0,541.0,62.0,211.0,472.0,81.0,49.0,24.0,138.0,82.0,53.0,2.0,563.0,56.0,50.0,77.0,27.0,0.0,238.0,251.0,0.0,104.0,40.0,112.0,80.0,77.0,84.0,411.0,151.0,410.0,194.0,183.0,17.0,1.0,213.0,22.0,472.0,0.0,0.0,149.0,23.0,70.0,11.0,1862.0,10.0,167.0,40.0,115.0,193.0,14.0,669.0,528.0,46.0,468.0,74.0,118.0,59.0,16.0,27.0,200.0,15.0,0.0,1.0,3.0,336.0,83.0,124.0,24.0,0.0,20.0,10.0,0.0,0.0,1.0,56.0,89.0,0.0,718.0,143.0,96.0,0.0,1.0,84.0,45.0,837.0,184.0,15.0,125.0,0.0,0.0,399.0,4.0,511.0,26.0,0.0,103.0,37.0,75.0,118.0,0.0,0.0,93.0,38.7223350429,2014-11-09,,2014-45,38.810578381387415,38.7223350429, +133,133,112.0,16.0,8.0,0.0,298.0,98.0,9.0,103.0,256.0,174.0,28.0,981.0,4.0,10.0,59.0,7.0,92.0,7.0,176.0,87.0,22.0,89.0,130.0,171.0,81.0,509.0,23.0,16.0,87.0,30.0,8.0,106.0,696.0,100.0,0.0,87.0,39.0,35.0,181.0,192.0,8.0,425.0,146.0,301.0,0.0,90.0,16.0,73.0,1372.0,86.0,104.0,369.0,62.0,61.0,64.0,2.0,98.0,884.0,518.0,200.0,8.0,173.0,3.0,1272.0,8.0,189.0,19.0,65.0,365.0,0.0,39.0,135.0,11.0,192.0,110.0,41.0,292.0,1.0,2.0,18.0,363.0,102.0,468.0,68.0,215.0,1597.0,27.0,160.0,637.0,202.0,0.0,322.0,0.0,105.0,0.0,385.0,100.0,6.0,0.0,1135.0,50.0,320.0,17.0,38.0,70.0,815.0,1160.0,425.0,145.0,51.0,24.0,285.0,63.0,573.0,158.0,0.0,975.0,108.0,52.0,1515.0,226.0,697.0,48.0,674.0,781.0,3.0,155.0,0.0,2.0,15.0,775.0,0.0,16.0,1.0,237.0,78.0,21.0,787.0,10.0,425.0,0.0,86.0,65.0,52.0,605.0,22.0,284.0,1819.0,0.0,278.0,1968.0,454.0,147.0,204.0,473.0,46.0,81.0,0.0,121.0,107.0,24.0,172.0,1814.0,37.0,0.0,741.0,35.0,12.0,427.0,193.0,261.0,412.0,53.0,154.0,0.0,0.0,2.0,47.0,67.0,388.0,149.0,908.0,852.0,30.0,145.0,16.0,12.0,0.0,196.0,36.0,547.0,111.0,190.0,455.0,102.0,34.0,17.0,57.0,48.0,67.0,0.0,481.0,50.0,65.0,62.0,22.0,0.0,206.0,258.0,0.0,123.0,50.0,49.0,69.0,76.0,101.0,426.0,132.0,200.0,178.0,254.0,13.0,49.0,219.0,41.0,627.0,0.0,1.0,104.0,29.0,112.0,5.0,37.0,61.0,155.0,72.0,103.0,154.0,12.0,607.0,550.0,66.0,436.0,70.0,130.0,84.0,17.0,39.0,317.0,8.0,0.0,0.0,6.0,325.0,105.0,92.0,15.0,0.0,30.0,30.0,2.0,0.0,2.0,73.0,84.0,0.0,828.0,158.0,76.0,133.0,2.0,72.0,39.0,971.0,215.0,14.0,74.0,0.0,0.0,409.0,12.0,540.0,24.0,0.0,94.0,29.0,97.0,132.0,0.0,0.0,98.0,43.0670354972,2014-11-16,,2014-46,42.89744093259253,35.90368252598, +134,134,102.0,18.0,8.0,11.0,235.0,94.0,16.0,103.0,267.0,139.0,26.0,917.0,2.0,14.0,35.0,5.0,78.0,9.0,194.0,65.0,25.0,74.0,100.0,172.0,97.0,428.0,29.0,5.0,87.0,22.0,10.0,92.0,664.0,138.0,0.0,53.0,54.0,38.0,156.0,185.0,15.0,234.0,125.0,281.0,0.0,64.0,10.0,49.0,1410.0,87.0,84.0,363.0,71.0,66.0,64.0,2.0,89.0,819.0,537.0,169.0,4.0,162.0,8.0,1227.0,5.0,156.0,34.0,66.0,312.0,0.0,59.0,95.0,15.0,222.0,43.0,43.0,262.0,2.0,1.0,20.0,430.0,109.0,509.0,29.0,224.0,1544.0,39.0,183.0,527.0,217.0,1.0,300.0,0.0,81.0,1.0,325.0,45.0,5.0,0.0,833.0,11.0,315.0,21.0,36.0,78.0,917.0,1280.0,249.0,143.0,10.0,26.0,294.0,50.0,603.0,164.0,0.0,1113.0,61.0,41.0,1541.0,167.0,657.0,79.0,595.0,672.0,1.0,163.0,0.0,3.0,16.0,688.0,0.0,16.0,0.0,229.0,72.0,29.0,742.0,9.0,432.0,0.0,103.0,73.0,48.0,576.0,33.0,218.0,1917.0,0.0,236.0,1846.0,550.0,175.0,178.0,396.0,38.0,84.0,0.0,151.0,84.0,13.0,140.0,1723.0,46.0,0.0,721.0,41.0,15.0,819.0,132.0,226.0,372.0,50.0,150.0,1.0,0.0,3.0,49.0,55.0,301.0,156.0,1473.0,887.0,52.0,129.0,14.0,19.0,0.0,218.0,36.0,512.0,63.0,148.0,435.0,104.0,37.0,23.0,62.0,42.0,58.0,0.0,419.0,44.0,74.0,56.0,38.0,0.0,226.0,249.0,0.0,102.0,47.0,51.0,47.0,68.0,126.0,499.0,144.0,103.0,180.0,257.0,18.0,3.0,166.0,62.0,607.0,0.0,0.0,92.0,33.0,60.0,2.0,15.0,13.0,233.0,51.0,109.0,204.0,12.0,734.0,513.0,47.0,472.0,38.0,114.0,78.0,14.0,21.0,295.0,12.0,0.0,0.0,8.0,340.0,112.0,127.0,29.0,0.0,17.0,18.0,4.0,0.0,0.0,52.0,105.0,0.0,874.0,179.0,76.0,27.0,1.0,59.0,38.0,882.0,178.0,14.0,110.0,0.0,0.0,452.0,6.0,499.0,25.0,0.0,96.0,51.0,89.0,139.0,0.0,0.0,103.0,46.3798843816,2014-11-23,,2014-47,46.65331403743072,58.174214041179994, +135,135,98.0,18.0,6.0,7.0,242.0,120.0,15.0,140.0,235.0,168.0,31.0,1079.0,3.0,6.0,62.0,6.0,64.0,12.0,193.0,59.0,26.0,101.0,107.0,143.0,87.0,346.0,23.0,14.0,77.0,17.0,8.0,104.0,571.0,112.0,0.0,191.0,94.0,35.0,129.0,194.0,13.0,236.0,135.0,290.0,0.0,80.0,12.0,54.0,1426.0,79.0,118.0,392.0,61.0,70.0,52.0,0.0,109.0,924.0,454.0,230.0,9.0,151.0,2.0,1457.0,15.0,168.0,27.0,82.0,404.0,0.0,50.0,135.0,13.0,199.0,58.0,38.0,240.0,0.0,1.0,9.0,324.0,105.0,482.0,37.0,159.0,1760.0,41.0,198.0,576.0,232.0,2.0,278.0,1.0,71.0,1.0,313.0,55.0,4.0,0.0,892.0,10.0,372.0,28.0,73.0,113.0,848.0,1526.0,144.0,184.0,21.0,17.0,288.0,67.0,659.0,172.0,1.0,1088.0,65.0,41.0,1691.0,144.0,795.0,180.0,637.0,744.0,2.0,141.0,0.0,1.0,7.0,719.0,0.0,16.0,0.0,314.0,79.0,29.0,747.0,7.0,505.0,0.0,119.0,54.0,49.0,620.0,24.0,212.0,1846.0,0.0,284.0,1952.0,544.0,173.0,154.0,524.0,42.0,80.0,0.0,106.0,100.0,19.0,123.0,1781.0,28.0,0.0,641.0,18.0,6.0,702.0,130.0,240.0,601.0,37.0,160.0,0.0,0.0,5.0,55.0,73.0,298.0,166.0,1950.0,904.0,39.0,133.0,11.0,19.0,0.0,228.0,39.0,502.0,60.0,144.0,1040.0,89.0,41.0,26.0,60.0,64.0,68.0,0.0,465.0,41.0,70.0,63.0,32.0,0.0,211.0,254.0,0.0,90.0,56.0,51.0,59.0,62.0,159.0,569.0,136.0,149.0,190.0,330.0,9.0,2.0,180.0,77.0,605.0,0.0,1.0,137.0,18.0,99.0,4.0,17.0,9.0,177.0,76.0,134.0,221.0,6.0,951.0,538.0,51.0,391.0,53.0,132.0,73.0,21.0,34.0,256.0,15.0,0.0,0.0,3.0,347.0,114.0,115.0,20.0,0.0,37.0,37.0,0.0,0.0,0.0,54.0,142.0,0.0,791.0,161.0,94.0,35.0,2.0,57.0,46.0,832.0,189.0,10.0,70.0,0.0,0.0,520.0,4.0,584.0,18.0,0.0,79.0,38.0,93.0,118.0,0.0,0.0,87.0,37.9468238508,2014-11-30,,2014-48,38.27988484242069,57.01481869204, +136,136,93.0,11.0,5.0,5.0,240.0,96.0,15.0,111.0,273.0,181.0,29.0,854.0,9.0,14.0,57.0,7.0,63.0,8.0,182.0,72.0,18.0,94.0,99.0,159.0,86.0,351.0,60.0,8.0,85.0,24.0,11.0,102.0,662.0,118.0,0.0,75.0,48.0,65.0,184.0,219.0,5.0,232.0,181.0,269.0,0.0,103.0,12.0,78.0,1418.0,83.0,109.0,373.0,95.0,67.0,46.0,2.0,111.0,915.0,407.0,227.0,6.0,154.0,4.0,1271.0,7.0,173.0,32.0,63.0,394.0,0.0,21.0,116.0,9.0,256.0,43.0,47.0,231.0,3.0,1.0,14.0,279.0,152.0,436.0,20.0,133.0,1162.0,27.0,182.0,566.0,244.0,1.0,287.0,0.0,111.0,0.0,263.0,42.0,8.0,1.0,782.0,9.0,426.0,16.0,50.0,125.0,878.0,1223.0,122.0,130.0,13.0,30.0,330.0,50.0,724.0,145.0,0.0,1172.0,90.0,55.0,1449.0,164.0,678.0,78.0,565.0,822.0,0.0,145.0,0.0,0.0,21.0,636.0,0.0,21.0,0.0,260.0,78.0,25.0,821.0,10.0,573.0,135.0,119.0,87.0,42.0,558.0,23.0,254.0,1858.0,0.0,232.0,1892.0,478.0,171.0,149.0,496.0,29.0,78.0,0.0,124.0,59.0,23.0,105.0,1817.0,29.0,0.0,623.0,15.0,11.0,387.0,132.0,158.0,485.0,36.0,145.0,2.0,0.0,9.0,49.0,56.0,321.0,138.0,1618.0,871.0,35.0,128.0,16.0,5744.0,0.0,202.0,46.0,610.0,54.0,171.0,797.0,73.0,44.0,28.0,56.0,56.0,51.0,2.0,390.0,61.0,83.0,56.0,26.0,0.0,200.0,225.0,1.0,153.0,26.0,49.0,82.0,63.0,117.0,622.0,114.0,92.0,165.0,462.0,14.0,3.0,193.0,22.0,523.0,0.0,0.0,125.0,12.0,64.0,3.0,15.0,17.0,188.0,50.0,105.0,241.0,12.0,590.0,508.0,55.0,400.0,36.0,107.0,57.0,20.0,24.0,276.0,10.0,0.0,0.0,10.0,356.0,117.0,129.0,31.0,0.0,19.0,17.0,5.0,0.0,1.0,59.0,78.0,0.0,842.0,170.0,87.0,21.0,0.0,86.0,43.0,800.0,150.0,21.0,76.0,0.0,0.0,462.0,8.0,471.0,30.0,0.0,62.0,59.0,116.0,119.0,0.0,0.0,105.0,48.0363088238,2014-12-07,,2014-49,48.25426147233996,49.724966601060004, +137,137,120.0,19.0,13.0,9.0,216.0,138.0,14.0,102.0,235.0,167.0,25.0,907.0,2.0,16.0,48.0,4.0,44.0,8.0,208.0,63.0,21.0,94.0,84.0,177.0,74.0,333.0,33.0,12.0,66.0,21.0,10.0,113.0,721.0,87.0,0.0,83.0,75.0,48.0,146.0,224.0,14.0,191.0,133.0,266.0,0.0,86.0,14.0,56.0,1337.0,115.0,91.0,344.0,76.0,65.0,39.0,2.0,98.0,888.0,316.0,222.0,7.0,174.0,3.0,1407.0,20.0,184.0,36.0,74.0,379.0,0.0,37.0,99.0,13.0,247.0,66.0,57.0,274.0,2.0,7.0,11.0,249.0,94.0,398.0,30.0,122.0,1075.0,29.0,127.0,534.0,223.0,1.0,306.0,1.0,66.0,1.0,250.0,38.0,3.0,0.0,648.0,5.0,279.0,23.0,38.0,86.0,844.0,1129.0,133.0,82.0,6.0,18.0,352.0,54.0,467.0,128.0,0.0,1023.0,61.0,56.0,1308.0,179.0,631.0,110.0,496.0,964.0,1.0,184.0,0.0,2.0,30.0,601.0,0.0,11.0,1.0,251.0,89.0,24.0,669.0,8.0,415.0,18.0,84.0,84.0,49.0,559.0,20.0,199.0,1637.0,0.0,213.0,1961.0,501.0,136.0,135.0,487.0,20.0,55.0,0.0,122.0,55.0,24.0,107.0,1862.0,33.0,0.0,576.0,20.0,8.0,344.0,135.0,146.0,364.0,20.0,120.0,0.0,0.0,10.0,53.0,67.0,334.0,157.0,1902.0,859.0,45.0,113.0,19.0,7875.0,0.0,223.0,40.0,535.0,54.0,139.0,577.0,72.0,40.0,29.0,63.0,59.0,58.0,0.0,460.0,50.0,57.0,52.0,30.0,0.0,239.0,258.0,0.0,104.0,34.0,47.0,47.0,49.0,149.0,556.0,105.0,125.0,157.0,577.0,20.0,3.0,163.0,30.0,532.0,0.0,1.0,140.0,23.0,48.0,3.0,16.0,9.0,159.0,56.0,113.0,210.0,16.0,575.0,414.0,46.0,405.0,23.0,119.0,77.0,14.0,13.0,291.0,9.0,0.0,0.0,1.0,361.0,91.0,97.0,38.0,1.0,30.0,30.0,1.0,0.0,0.0,62.0,116.0,0.0,897.0,133.0,62.0,27.0,0.0,78.0,52.0,756.0,180.0,11.0,91.0,0.0,0.0,469.0,8.0,478.0,27.0,0.0,67.0,63.0,80.0,128.0,0.0,0.0,100.0,52.177369929300006,2014-12-14,,2014-50,52.0063449022794,100.98283266606, +138,138,90.0,13.0,7.0,4.0,222.0,111.0,14.0,105.0,259.0,159.0,42.0,935.0,1.0,7.0,90.0,4.0,68.0,9.0,202.0,78.0,13.0,103.0,104.0,139.0,58.0,426.0,25.0,5.0,47.0,18.0,9.0,80.0,725.0,87.0,0.0,49.0,46.0,30.0,143.0,221.0,5.0,245.0,130.0,234.0,0.0,77.0,11.0,29.0,1264.0,107.0,90.0,383.0,68.0,54.0,52.0,2.0,105.0,994.0,360.0,198.0,12.0,148.0,2.0,1073.0,11.0,176.0,26.0,89.0,385.0,0.0,13.0,122.0,9.0,227.0,55.0,67.0,292.0,0.0,5.0,17.0,268.0,82.0,477.0,31.0,102.0,1037.0,28.0,124.0,462.0,241.0,0.0,279.0,0.0,85.0,0.0,242.0,36.0,7.0,0.0,717.0,9.0,310.0,29.0,40.0,72.0,922.0,1118.0,86.0,82.0,11.0,19.0,281.0,74.0,569.0,179.0,0.0,885.0,73.0,40.0,1469.0,163.0,730.0,55.0,470.0,743.0,3.0,146.0,0.0,1.0,25.0,735.0,0.0,12.0,0.0,243.0,88.0,33.0,735.0,7.0,406.0,27.0,82.0,48.0,49.0,538.0,23.0,235.0,1629.0,0.0,259.0,2160.0,578.0,157.0,158.0,436.0,21.0,65.0,0.0,84.0,49.0,22.0,91.0,1924.0,37.0,0.0,591.0,21.0,5.0,286.0,179.0,142.0,313.0,31.0,133.0,0.0,0.0,7.0,57.0,68.0,315.0,149.0,2589.0,807.0,38.0,135.0,12.0,628.0,0.0,185.0,51.0,539.0,45.0,165.0,381.0,93.0,24.0,25.0,44.0,49.0,37.0,0.0,457.0,48.0,67.0,73.0,25.0,0.0,199.0,194.0,0.0,107.0,39.0,36.0,59.0,75.0,159.0,597.0,122.0,117.0,155.0,571.0,16.0,3.0,201.0,25.0,510.0,0.0,3.0,116.0,18.0,52.0,2.0,17.0,11.0,152.0,64.0,99.0,217.0,11.0,396.0,463.0,29.0,477.0,60.0,185.0,85.0,13.0,15.0,259.0,8.0,0.0,0.0,5.0,440.0,96.0,95.0,36.0,0.0,35.0,32.0,1.0,0.0,1.0,65.0,58.0,0.0,995.0,132.0,84.0,22.0,1.0,96.0,52.0,1018.0,164.0,15.0,88.0,0.0,0.0,433.0,11.0,443.0,21.0,0.0,90.0,62.0,79.0,96.0,0.0,0.0,97.0,72.8826754568,2014-12-21,,2014-51,72.48911805167307,81.99801066938001, +139,139,125.0,18.0,4.0,12.0,218.0,119.0,14.0,85.0,188.0,168.0,25.0,815.0,7.0,14.0,75.0,8.0,53.0,7.0,161.0,110.0,13.0,86.0,118.0,110.0,62.0,326.0,35.0,8.0,40.0,23.0,9.0,92.0,640.0,109.0,24.0,37.0,44.0,60.0,138.0,219.0,3.0,183.0,105.0,222.0,0.0,74.0,15.0,48.0,1151.0,89.0,97.0,334.0,56.0,60.0,48.0,2.0,104.0,930.0,329.0,196.0,6.0,116.0,8.0,3619.0,6.0,160.0,25.0,83.0,317.0,0.0,29.0,101.0,9.0,217.0,68.0,44.0,254.0,1.0,5.0,19.0,262.0,99.0,438.0,34.0,79.0,968.0,22.0,127.0,460.0,228.0,1.0,258.0,0.0,75.0,0.0,179.0,41.0,5.0,0.0,582.0,10.0,263.0,33.0,49.0,81.0,740.0,1224.0,75.0,84.0,8.0,19.0,244.0,60.0,563.0,148.0,1.0,802.0,51.0,45.0,1112.0,167.0,1939.0,273.0,462.0,663.0,1.0,137.0,0.0,1.0,16.0,583.0,0.0,17.0,0.0,232.0,62.0,26.0,651.0,8.0,361.0,24.0,109.0,78.0,46.0,467.0,17.0,187.0,1456.0,0.0,226.0,1998.0,402.0,121.0,121.0,378.0,20.0,77.0,0.0,91.0,43.0,26.0,92.0,1892.0,17.0,0.0,465.0,16.0,8.0,380.0,211.0,112.0,246.0,38.0,136.0,0.0,0.0,5.0,48.0,70.0,245.0,142.0,2446.0,767.0,31.0,134.0,14.0,247.0,0.0,208.0,43.0,485.0,43.0,144.0,464.0,105.0,43.0,20.0,45.0,39.0,27.0,0.0,385.0,49.0,87.0,63.0,26.0,0.0,231.0,176.0,0.0,77.0,33.0,33.0,53.0,95.0,144.0,560.0,148.0,134.0,204.0,513.0,18.0,2.0,225.0,24.0,401.0,0.0,1.0,97.0,24.0,54.0,2.0,14.0,7.0,138.0,45.0,111.0,142.0,13.0,502.0,409.0,33.0,312.0,41.0,128.0,55.0,21.0,40.0,197.0,11.0,0.0,1.0,4.0,345.0,118.0,87.0,27.0,0.0,36.0,27.0,3.0,0.0,0.0,51.0,94.0,1.0,784.0,122.0,94.0,23.0,1.0,57.0,30.0,794.0,169.0,13.0,82.0,0.0,0.0,390.0,8.0,360.0,24.0,0.0,82.0,36.0,110.0,75.0,0.0,0.0,78.0,121.7471965016,2014-12-28,,2014-52,122.07651648632827,129.98035253626, +140,140,89.0,15.0,5.0,6.0,155.0,100.0,14.0,77.0,173.0,125.0,13.0,522.0,1.0,9.0,54.0,11.0,36.0,6.0,94.0,72.0,13.0,48.0,61.0,114.0,44.0,185.0,16.0,12.0,46.0,20.0,12.0,73.0,428.0,89.0,3.0,32.0,48.0,23.0,79.0,113.0,6.0,178.0,58.0,167.0,0.0,47.0,6.0,47.0,795.0,77.0,62.0,239.0,53.0,36.0,25.0,0.0,69.0,734.0,305.0,149.0,5.0,82.0,2.0,845.0,3.0,89.0,18.0,73.0,193.0,0.0,16.0,54.0,14.0,119.0,50.0,37.0,155.0,0.0,5.0,11.0,176.0,97.0,406.0,18.0,52.0,745.0,30.0,89.0,376.0,179.0,1.0,170.0,0.0,71.0,0.0,83.0,37.0,3.0,0.0,437.0,5.0,206.0,24.0,33.0,62.0,581.0,942.0,60.0,69.0,11.0,12.0,156.0,39.0,326.0,113.0,0.0,525.0,39.0,34.0,1007.0,137.0,520.0,101.0,361.0,427.0,0.0,73.0,0.0,3.0,11.0,468.0,0.0,11.0,1.0,168.0,61.0,15.0,372.0,8.0,226.0,34.0,59.0,41.0,39.0,464.0,13.0,143.0,974.0,0.0,156.0,1464.0,352.0,104.0,100.0,331.0,17.0,51.0,0.0,73.0,28.0,15.0,59.0,1437.0,17.0,0.0,312.0,18.0,5.0,222.0,70.0,101.0,174.0,16.0,84.0,0.0,0.0,2.0,38.0,52.0,243.0,93.0,1439.0,551.0,36.0,82.0,14.0,187.0,0.0,126.0,27.0,371.0,38.0,73.0,215.0,56.0,24.0,21.0,46.0,44.0,32.0,0.0,267.0,33.0,34.0,32.0,23.0,0.0,176.0,117.0,0.0,47.0,29.0,38.0,40.0,43.0,74.0,294.0,98.0,73.0,128.0,338.0,14.0,3.0,133.0,29.0,298.0,0.0,0.0,62.0,19.0,30.0,3.0,8.0,18.0,102.0,26.0,62.0,92.0,11.0,331.0,273.0,30.0,204.0,29.0,95.0,48.0,9.0,23.0,140.0,13.0,0.0,0.0,3.0,272.0,96.0,72.0,24.0,0.0,26.0,18.0,0.0,0.0,0.0,41.0,54.0,0.0,629.0,91.0,65.0,14.0,1.0,51.0,31.0,632.0,151.0,15.0,51.0,0.0,0.0,353.0,12.0,320.0,9.0,0.0,47.0,22.0,86.0,32.0,0.0,0.0,95.0,79.00657815640001,2015-01-04,,2015-1,80.6352180864651,96.143730394, +141,141,52.0,8.0,7.0,3.0,102.0,59.0,8.0,33.0,111.0,55.0,22.0,348.0,0.0,9.0,35.0,4.0,30.0,5.0,66.0,78.0,13.0,34.0,45.0,81.0,34.0,153.0,19.0,6.0,29.0,7.0,9.0,42.0,298.0,53.0,4.0,14.0,22.0,19.0,61.0,65.0,7.0,105.0,59.0,137.0,0.0,37.0,3.0,33.0,498.0,50.0,41.0,146.0,32.0,27.0,16.0,0.0,34.0,486.0,180.0,82.0,3.0,85.0,1.0,488.0,4.0,74.0,12.0,37.0,166.0,0.0,15.0,32.0,6.0,83.0,34.0,47.0,81.0,1.0,3.0,3.0,169.0,47.0,238.0,12.0,35.0,414.0,20.0,31.0,193.0,82.0,1.0,104.0,0.0,27.0,0.0,68.0,37.0,3.0,0.0,319.0,0.0,124.0,13.0,17.0,30.0,352.0,543.0,37.0,33.0,0.0,56.0,102.0,23.0,219.0,45.0,0.0,826.0,26.0,20.0,506.0,92.0,314.0,78.0,221.0,337.0,1.0,66.0,0.0,1.0,9.0,262.0,0.0,7.0,0.0,102.0,40.0,6.0,242.0,3.0,158.0,20.0,49.0,39.0,15.0,246.0,9.0,92.0,559.0,0.0,109.0,1031.0,274.0,63.0,64.0,207.0,8.0,35.0,0.0,48.0,29.0,13.0,27.0,921.0,16.0,0.0,221.0,11.0,3.0,145.0,38.0,61.0,104.0,6.0,55.0,0.0,0.0,3.333333333333333,11.0,20.0,139.0,76.0,546.0,383.0,11.0,66.0,12.0,100.0,0.0,76.0,17.0,257.0,25.0,69.0,154.0,43.0,20.0,8.0,24.0,23.0,16.0,0.0,176.0,26.0,23.0,24.0,8.0,0.0,85.0,79.0,0.0,35.0,22.0,13.0,23.0,14.0,44.0,154.0,60.0,49.0,68.0,149.0,7.0,3.0,86.0,12.0,203.0,0.0,1.0,43.0,12.0,28.0,3.0,7.0,5.0,69.0,21.0,57.0,67.0,7.0,231.0,170.0,18.0,173.0,13.0,65.0,30.0,5.0,10.0,93.0,11.0,0.0,0.0,5.0,141.0,61.0,48.0,12.0,0.0,14.0,17.0,0.0,0.0,1.0,23.0,27.0,0.0,367.0,61.0,40.0,10.0,0.0,27.0,23.0,382.0,105.0,6.0,31.0,0.0,0.0,151.0,8.0,229.0,14.0,0.0,49.0,14.0,32.0,34.0,0.0,0.0,73.0,91.3682831382,2015-01-11,,2015-2,90.13690175549587,74.34271264668, +142,142,93.0,16.0,8.0,5.0,292.0,159.0,18.0,134.0,259.0,165.0,34.0,1017.0,6.0,15.0,73.0,6.0,57.0,13.0,179.0,84.0,32.0,95.0,106.0,182.0,68.0,419.0,28.0,12.0,56.0,23.0,11.0,97.0,736.0,121.0,6.0,25.0,64.0,37.0,158.0,290.0,56.0,383.0,150.0,269.0,0.0,78.0,9.0,51.0,1332.0,122.0,114.0,370.0,74.0,61.0,51.0,1.0,119.0,916.0,448.0,201.0,6.0,170.0,3.0,856.0,10.0,161.0,23.0,108.0,384.0,0.0,13.0,119.0,10.0,285.0,66.0,72.0,277.0,2.0,1.0,16.0,313.0,104.0,528.0,23.0,111.0,1255.0,30.0,111.0,466.0,240.0,0.0,272.0,1.0,76.0,1.0,176.0,37.0,7.0,0.0,757.0,3.0,320.0,46.0,39.0,107.0,777.0,1579.0,67.0,181.0,7.0,29.0,305.0,79.0,581.0,184.0,0.0,1127.0,65.0,58.0,1789.0,163.0,732.0,106.0,554.0,957.0,1.0,165.0,0.0,1.0,7.0,723.0,0.0,19.0,0.0,252.0,87.0,21.0,758.0,6.0,413.0,27.0,83.0,76.0,60.0,601.0,28.0,236.0,1550.0,0.0,293.0,2523.0,561.0,160.0,140.0,496.0,19.0,91.0,0.0,97.0,46.0,26.0,113.0,2301.0,33.0,0.0,608.0,31.0,7.0,324.0,124.0,115.0,281.0,31.0,166.0,0.0,0.0,4.666666666666666,85.0,78.0,358.0,164.0,1621.0,1064.0,51.0,142.0,15.0,184.0,0.0,206.0,57.0,585.0,41.0,179.0,497.0,75.0,35.0,18.0,50.0,51.0,35.0,2.0,498.0,47.0,78.0,38.0,28.0,0.0,223.0,251.0,0.0,111.0,27.0,43.0,89.0,52.0,107.0,407.0,124.0,107.0,164.0,323.0,24.0,1.0,228.0,32.0,504.0,0.0,0.0,106.0,18.0,35.0,5.0,11.0,11.0,186.0,57.0,123.0,196.0,5.0,456.0,498.0,44.0,469.0,75.0,140.0,71.0,20.0,20.0,240.0,14.0,38.0,1.0,2.0,384.0,116.0,123.0,18.0,0.0,32.0,32.0,1.0,0.0,0.0,89.0,72.0,0.0,897.0,109.0,92.0,28.0,0.0,78.0,52.0,903.0,294.0,13.0,86.0,0.0,0.0,412.0,11.0,493.0,32.0,0.0,111.0,38.0,88.0,119.0,0.0,0.0,98.0,137.9205306979,2015-01-18,,2015-3,137.4122235700894,134.02829486226003, +143,143,106.0,18.0,10.0,6.0,312.0,153.0,11.0,137.0,251.0,191.0,27.0,1109.0,0.0,16.0,71.0,3.0,61.0,9.0,182.0,90.0,15.0,98.0,111.0,188.0,79.0,458.0,42.0,14.0,56.0,33.0,12.0,104.0,727.0,132.0,6.0,19.0,56.0,32.0,169.0,234.0,13.0,242.0,158.0,248.0,0.0,62.0,9.0,44.0,1324.0,106.0,143.0,388.0,78.0,70.0,55.0,2.0,124.0,734.0,353.0,168.0,9.0,179.0,2.0,1222.0,14.0,205.0,25.0,98.0,552.0,0.0,20.0,127.0,13.0,260.0,59.0,69.0,297.0,1.0,2.0,21.0,347.0,111.0,498.0,19.0,97.0,1100.0,34.0,105.0,571.0,249.0,2.0,321.0,0.0,135.0,0.0,140.0,37.0,5.0,0.0,769.0,5.0,372.0,44.0,26.0,96.0,952.0,1831.0,62.0,228.0,6.0,23.0,352.0,70.0,542.0,197.0,0.0,1243.0,65.0,43.0,1600.0,188.0,835.0,118.0,488.0,1055.0,1.0,200.0,0.0,0.0,50.0,694.0,0.0,15.0,1.0,294.0,54.0,24.0,703.0,9.0,536.0,25.0,102.0,80.0,73.0,586.0,24.0,279.0,1620.0,0.0,258.0,2674.0,480.0,189.0,185.0,485.0,31.0,73.0,0.0,133.0,55.0,31.0,97.0,2425.0,30.0,0.0,663.0,28.0,8.0,327.0,179.0,139.0,256.0,24.0,207.0,0.0,0.0,6.0,42.0,81.0,330.0,175.0,1700.0,997.0,43.0,124.0,18.0,92.0,0.0,266.0,42.0,671.0,53.0,212.0,488.0,104.0,34.0,28.0,59.0,57.0,45.0,2.0,562.0,42.0,102.0,50.0,26.0,0.0,291.0,245.0,0.0,110.0,40.0,32.0,59.0,57.0,109.0,479.0,120.0,113.0,225.0,354.0,14.0,1.0,222.0,24.0,577.0,0.0,0.0,112.0,29.0,65.0,2.0,14.0,15.0,187.0,42.0,123.0,200.0,16.0,426.0,521.0,47.0,466.0,38.0,131.0,67.0,15.0,24.0,285.0,8.0,15.0,0.0,2.0,449.0,125.0,117.0,16.0,0.0,51.0,49.0,2.0,0.0,0.0,56.0,82.0,0.0,891.0,162.0,145.0,26.0,2.0,81.0,66.0,1013.0,246.0,13.0,85.0,0.0,0.0,460.0,8.0,596.0,20.0,0.0,123.0,30.0,114.0,102.0,0.0,0.0,124.0,118.4593515197,2015-01-25,,2015-4,118.02336944874546,109.42000743576, +144,144,104.0,14.0,7.0,7.0,276.0,166.0,12.0,81.0,235.0,195.0,23.0,963.0,11.0,26.0,87.0,7.0,69.0,8.0,209.0,84.0,24.0,115.0,84.0,190.0,102.0,497.0,25.0,13.0,53.0,26.0,17.0,116.0,804.0,90.0,12.0,24.0,77.0,69.0,199.0,223.0,11.0,219.0,149.0,276.0,0.0,115.0,11.0,29.0,1323.0,102.0,114.0,441.0,92.0,56.0,79.0,1.0,114.0,837.0,283.0,199.0,8.0,149.0,3.0,1300.0,10.0,161.0,23.0,104.0,486.0,0.0,15.0,101.0,14.0,289.0,63.0,73.0,276.0,0.0,5.0,9.0,301.0,126.0,509.0,26.0,73.0,855.0,34.0,93.0,618.0,226.0,0.0,323.0,0.0,95.0,1.0,141.0,37.0,5.0,0.0,798.0,10.0,350.0,20.0,31.0,111.0,888.0,2099.0,91.0,117.0,2.0,19.0,314.0,64.0,521.0,179.0,1.0,1228.0,62.0,44.0,1954.0,213.0,874.0,183.0,522.0,1099.0,2.0,176.0,0.0,0.0,13.0,602.0,0.0,13.0,0.0,275.0,121.0,27.0,706.0,6.0,467.0,37.0,92.0,81.0,36.0,587.0,34.0,243.0,1657.0,0.0,289.0,2629.0,509.0,185.0,147.0,496.0,30.0,74.0,0.0,114.0,46.0,23.0,74.0,2138.0,37.0,0.0,895.0,20.0,6.0,377.0,183.0,145.0,249.0,26.0,193.0,0.0,0.0,5.0,50.0,73.0,342.0,179.0,2875.0,1044.0,36.0,149.0,11.0,70.0,0.0,250.0,61.0,529.0,50.0,189.0,479.0,85.0,52.0,28.0,139.0,123.0,53.0,1.0,548.0,48.0,101.0,42.0,25.0,0.0,242.0,265.0,0.0,92.0,41.0,50.0,60.0,70.0,161.0,604.0,116.0,130.0,225.0,322.0,16.0,4.0,261.0,30.0,649.0,0.0,0.0,90.0,18.0,48.0,1.0,13.0,10.0,185.0,71.0,154.0,170.0,20.0,543.0,564.0,41.0,530.0,39.0,127.0,59.0,21.0,48.0,268.0,11.0,13.0,0.0,4.0,374.0,101.0,105.0,20.0,0.0,28.0,23.0,0.0,1.0,0.0,72.0,84.0,0.0,862.0,126.0,158.0,25.0,1.0,41.0,53.0,1077.0,237.0,18.0,119.0,0.0,0.0,457.0,7.0,514.0,31.0,0.0,95.0,38.0,82.0,92.0,0.0,0.0,143.0,145.3304154591,2015-02-01,,2015-5,145.69783707396587,91.57997763622001, +145,145,130.0,20.0,10.0,11.0,276.0,151.0,7.0,95.0,248.0,253.0,20.0,890.0,6.0,28.0,49.0,9.0,44.0,6.0,193.0,58.0,17.0,91.0,74.0,261.0,88.0,350.0,21.0,10.0,52.0,18.0,17.0,111.0,732.0,111.0,3.0,25.0,68.0,45.0,195.0,261.0,12.0,233.0,160.0,261.0,0.0,114.0,12.0,65.0,1258.0,110.0,86.0,402.0,82.0,46.0,82.0,1.0,93.0,863.0,325.0,129.0,6.0,144.0,4.0,616.0,12.0,208.0,22.0,109.0,387.0,0.0,363.0,132.0,12.0,328.0,79.0,60.0,231.0,0.0,3.0,21.0,323.0,92.0,479.0,18.0,57.0,547.0,44.0,84.0,580.0,220.0,0.0,294.0,0.0,71.0,0.0,141.0,37.0,8.0,0.0,703.0,6.0,267.0,21.0,38.0,62.0,834.0,2518.0,69.0,127.0,10.0,18.0,291.0,70.0,441.0,193.0,0.0,1303.0,64.0,39.0,1585.0,163.0,858.0,144.0,430.0,879.0,3.0,182.0,0.0,0.0,8.0,691.0,0.0,16.0,0.0,271.0,82.0,35.0,718.0,14.0,408.0,30.0,93.0,71.0,60.0,539.0,29.0,290.0,1464.0,0.0,327.0,2844.0,503.0,300.0,150.0,423.0,18.0,303.0,0.0,91.0,35.0,22.0,86.0,1977.0,23.0,0.0,812.0,25.0,9.0,341.0,171.0,115.0,329.0,34.0,106.0,0.0,0.0,5.0,69.0,72.0,354.0,151.0,2050.0,874.0,16.0,137.0,10.0,80.0,0.0,254.0,64.0,519.0,45.0,180.0,405.0,95.0,31.0,17.0,51.0,58.0,46.0,0.0,481.0,54.0,104.0,56.0,32.0,0.0,222.0,223.0,0.0,87.0,38.0,49.0,68.0,83.0,142.0,584.0,108.0,121.0,220.0,278.0,19.0,4.0,212.0,29.0,575.0,0.0,0.0,89.0,24.0,47.0,4.0,20.0,28.0,171.0,57.0,94.0,171.0,19.0,474.0,441.0,29.0,371.0,30.0,117.0,58.0,16.0,31.0,247.0,18.0,12.0,0.0,5.0,331.0,103.0,131.0,20.0,0.0,15.0,15.0,3.0,0.0,0.0,53.0,96.0,0.0,865.0,136.0,94.0,32.0,0.0,60.0,41.0,991.0,227.0,7.0,77.0,0.0,0.0,414.0,3.0,499.0,46.0,0.0,99.0,48.0,75.0,90.0,0.0,0.0,122.0,139.7232234237,2015-02-08,,2015-6,140.3133891902285,124.04122163004, +146,146,103.0,13.0,4.0,4.0,195.0,165.0,11.0,80.0,204.0,156.0,30.0,760.0,1.0,13.0,58.0,1.0,37.0,2.0,234.0,50.0,7.0,75.0,82.0,219.0,60.0,301.0,22.0,7.0,66.0,19.0,7.0,108.0,657.0,75.0,5.0,34.0,93.0,18.0,174.0,319.0,9.0,218.0,128.0,203.0,0.0,73.0,7.0,50.0,1255.0,107.0,109.0,341.0,64.0,79.0,28.0,1.0,84.0,753.0,281.0,143.0,2.0,163.0,1.0,538.0,9.0,198.0,20.0,107.0,362.0,0.0,52.0,87.0,13.0,342.0,38.0,63.0,196.0,2.0,6.0,13.0,279.0,98.0,502.0,14.0,50.0,502.0,17.0,98.0,500.0,181.0,1.0,247.0,0.0,95.0,1.0,106.0,31.0,2.0,1.0,705.0,3.0,281.0,16.0,34.0,101.0,953.0,2541.0,103.0,89.0,3.0,16.0,294.0,58.0,442.0,156.0,0.0,1164.0,62.0,48.0,1593.0,167.0,643.0,181.0,464.0,796.0,4.0,184.0,0.0,1.0,6.0,598.0,0.0,14.0,0.0,225.0,108.0,29.0,755.0,9.0,448.0,31.0,69.0,82.0,95.0,601.0,20.0,216.0,1517.0,0.0,244.0,2607.0,540.0,198.0,160.0,441.0,8.0,69.0,0.0,127.0,28.0,19.0,108.0,2139.0,21.0,0.0,1588.0,38.0,12.0,345.0,142.0,122.0,267.0,18.0,126.0,0.0,0.0,1.0,34.0,57.0,421.0,149.0,1714.0,786.0,36.0,134.0,16.0,63.0,0.0,217.0,28.0,489.0,33.0,192.0,349.0,50.0,28.0,26.0,54.0,46.0,39.0,0.0,492.0,43.0,99.0,39.0,17.0,1.0,195.0,202.0,0.0,53.0,40.0,42.0,48.0,46.0,147.0,437.0,125.0,124.0,166.0,337.0,19.0,2.0,143.0,32.0,608.0,0.0,0.0,89.0,19.0,25.0,3.0,164.0,14.0,165.0,46.0,116.0,144.0,11.0,492.0,405.0,29.0,367.0,20.0,113.0,85.0,11.0,24.0,199.0,12.0,8.0,0.0,6.0,288.0,77.0,111.0,23.0,0.0,16.0,16.0,2.0,0.0,2.0,58.0,112.0,0.0,942.0,117.0,74.0,35.0,2.0,46.0,37.0,1003.0,227.0,9.0,77.0,0.0,0.0,438.0,11.0,467.0,32.0,0.0,94.0,30.0,97.0,112.0,0.0,0.0,132.0,152.7330488135,2015-02-15,,2015-7,151.97161932468788,145.87830935474003, +147,147,125.0,16.0,5.0,5.0,171.0,123.0,16.0,76.0,208.0,171.0,30.0,818.0,4.0,9.0,49.0,3.0,27.0,11.0,189.0,35.0,14.0,71.0,64.0,138.0,83.0,280.0,21.0,3.0,66.0,25.0,10.0,94.0,567.0,80.0,5.0,33.0,46.0,29.0,167.0,319.0,10.0,187.0,132.0,240.0,1.0,74.0,7.0,38.0,1481.0,116.0,87.0,372.0,77.0,38.0,46.0,1.0,124.0,756.0,317.0,157.0,9.0,177.0,6.0,436.0,6.0,170.0,25.0,230.0,327.0,0.0,26.0,104.0,11.0,318.0,26.0,69.0,232.0,4.0,6.0,13.0,307.0,98.0,509.0,18.0,39.0,445.0,11.0,90.0,530.0,212.0,0.0,340.0,0.0,68.0,1.0,113.0,40.0,5.0,2.0,640.0,2.0,329.0,18.0,43.0,155.0,943.0,2145.0,99.0,116.0,6.0,17.0,254.0,40.0,468.0,149.0,0.0,1186.0,58.0,124.0,1640.0,196.0,583.0,86.0,454.0,796.0,1.0,214.0,0.0,1.0,18.0,623.0,0.0,18.0,0.0,227.0,86.0,33.0,777.0,8.0,416.0,25.0,76.0,96.0,88.0,568.0,13.0,222.0,1448.0,0.0,223.0,2633.0,521.0,187.0,145.0,475.0,9.0,65.0,1.0,98.0,34.0,15.0,91.0,2081.0,33.0,0.0,1105.0,24.0,7.0,322.0,152.0,117.0,244.0,11.0,119.0,0.0,0.0,4.0,34.0,77.0,362.0,115.0,1493.0,864.0,40.0,130.0,19.0,65.0,0.0,164.0,20.0,490.0,29.0,239.0,391.0,52.0,64.0,32.0,72.0,75.0,36.0,0.0,387.0,39.0,72.0,35.0,17.0,0.0,236.0,222.0,0.0,98.0,38.0,37.0,44.0,63.0,151.0,499.0,126.0,114.0,181.0,354.0,16.0,1.0,146.0,34.0,630.0,0.0,2.0,122.0,24.0,53.0,2.0,19.0,9.0,189.0,43.0,121.0,180.0,10.0,412.0,401.0,24.0,481.0,26.0,142.0,68.0,12.0,22.0,205.0,10.0,11.0,0.0,4.0,297.0,66.0,118.0,18.0,0.0,25.0,21.0,1.0,0.0,0.0,83.0,90.0,1.0,945.0,144.0,63.0,30.0,0.0,32.0,36.0,939.0,251.0,13.0,60.0,3.0,0.0,428.0,3.0,495.0,19.0,0.0,84.0,23.0,138.0,131.0,0.0,0.0,122.0,160.58789132389998,2015-02-22,,2015-8,160.29928251652575,156.41495774386, +148,148,135.0,12.0,7.0,5.0,168.0,96.0,7.0,64.0,176.0,169.0,19.0,754.0,9.0,11.0,56.0,6.0,45.0,8.0,143.0,53.0,18.0,67.0,66.0,148.0,66.0,257.0,13.0,6.0,49.0,14.0,12.0,100.0,564.0,96.0,9.0,20.0,48.0,40.0,182.0,307.0,12.0,176.0,102.0,208.0,0.0,61.0,9.0,37.0,1325.0,143.0,93.0,305.0,52.0,58.0,49.0,0.0,101.0,762.0,319.0,161.0,10.0,127.0,4.0,468.0,8.0,175.0,25.0,131.0,316.0,0.0,18.0,95.0,22.0,295.0,46.0,82.0,221.0,0.0,2.0,20.0,335.0,87.0,502.0,19.0,32.0,336.0,15.0,83.0,510.0,167.0,1.0,322.0,0.0,74.0,1.0,58.0,41.0,4.0,0.0,585.0,4.0,272.0,31.0,43.0,149.0,779.0,1794.0,65.0,92.0,5.0,17.0,272.0,65.0,460.0,160.0,1.0,982.0,64.0,57.0,1412.0,181.0,614.0,103.0,420.0,802.0,1.0,172.0,0.0,0.0,18.0,555.0,0.0,16.0,0.0,211.0,76.0,71.0,616.0,14.0,372.0,34.0,78.0,66.0,59.0,599.0,19.0,225.0,1430.0,0.0,257.0,2425.0,402.0,171.0,140.0,425.0,11.0,67.0,0.0,109.0,42.0,30.0,89.0,2028.0,33.0,0.0,743.0,29.0,4.0,381.0,151.0,116.0,479.0,16.0,117.0,0.0,0.0,11.0,32.0,75.0,562.0,135.0,1440.0,725.0,30.0,132.0,16.0,83.0,0.0,159.0,43.0,538.0,31.0,129.0,400.0,55.0,38.0,21.0,59.0,62.0,44.0,0.0,397.0,66.0,51.0,43.0,25.0,0.0,212.0,185.0,0.0,81.0,29.0,37.0,65.0,69.0,131.0,458.0,102.0,104.0,219.0,316.0,10.0,1.0,146.0,30.0,508.0,0.0,0.0,105.0,29.0,43.0,2.0,13.0,11.0,200.0,59.0,91.0,114.0,6.0,418.0,364.0,23.0,377.0,42.0,131.0,55.0,14.0,25.0,188.0,13.0,5.0,0.0,6.0,361.0,65.0,115.0,27.0,0.0,27.0,17.0,3.0,0.0,0.0,53.0,194.0,0.0,908.0,129.0,92.0,31.0,0.0,32.0,24.0,759.0,186.0,15.0,85.0,0.0,0.0,416.0,8.0,450.0,25.0,0.0,91.0,26.0,80.0,90.0,0.0,0.0,132.0,161.4606516028,2015-03-01,,2015-9,160.64780554417814,155.19055925646, +149,149,113.0,19.0,4.0,4.0,208.0,133.0,7.0,167.0,206.0,171.0,24.0,857.0,1.0,27.0,68.0,7.0,45.0,11.0,213.0,57.0,9.0,71.0,97.0,145.0,57.0,347.0,18.0,7.0,86.0,13.0,13.0,97.0,612.0,99.0,7.0,37.0,63.0,35.0,168.0,355.0,7.0,174.0,113.0,254.0,0.0,102.0,6.0,40.0,1266.0,113.0,148.0,378.0,69.0,64.0,34.0,1.0,114.0,731.0,294.0,165.0,6.0,127.0,4.0,415.0,11.0,194.0,23.0,124.0,338.0,0.0,23.0,100.0,6.0,339.0,52.0,80.0,260.0,5.0,2.0,29.0,289.0,75.0,579.0,29.0,36.0,387.0,16.0,101.0,567.0,231.0,1.0,335.0,0.0,123.0,1.0,104.0,29.0,9.0,0.0,671.0,5.0,352.0,24.0,39.0,99.0,889.0,1467.0,110.0,91.0,6.0,30.0,269.0,57.0,508.0,158.0,0.0,1201.0,70.0,45.0,1652.0,184.0,803.0,83.0,471.0,871.0,1.0,177.0,0.0,2.0,13.0,522.0,0.0,13.0,0.0,242.0,86.0,33.0,722.0,5.0,406.0,31.0,110.0,74.0,39.0,615.0,18.0,213.0,1548.0,0.0,257.0,2393.0,512.0,210.0,164.0,430.0,7.0,58.0,0.0,137.0,36.0,48.0,101.0,2011.0,38.0,0.0,1889.0,55.0,8.0,302.0,166.0,129.0,203.0,20.0,117.0,0.0,0.0,2.0,45.0,61.0,349.0,144.0,1211.0,808.0,12.0,129.0,14.0,60.0,0.0,211.0,54.0,531.0,47.0,111.0,431.0,112.0,33.0,10.0,47.0,83.0,63.0,1.0,405.0,60.0,67.0,39.0,20.0,0.0,241.0,167.0,0.0,68.0,33.0,41.0,57.0,66.0,117.0,459.0,119.0,83.0,172.0,343.0,13.0,5.0,136.0,32.0,698.0,0.0,0.0,106.0,30.0,49.0,0.0,14.0,8.0,195.0,37.0,109.0,175.0,9.0,395.0,395.0,26.0,397.0,39.0,126.0,76.0,9.0,33.0,211.0,15.0,16.0,0.0,4.0,368.0,75.0,129.0,29.0,1.0,27.0,12.0,1.0,0.0,0.0,81.0,233.0,0.0,823.0,132.0,88.0,14.0,0.0,31.0,36.0,1023.0,201.0,11.0,68.0,0.0,0.0,435.0,12.0,454.0,20.0,0.0,87.0,53.0,84.0,87.0,0.0,0.0,112.0,134.2367101122,2015-03-08,,2015-10,132.6257677875231,101.14218356082, +150,150,117.0,18.0,7.0,6.0,210.0,130.0,11.0,117.0,219.0,160.0,35.0,808.0,1.0,15.0,67.0,18.0,52.0,13.0,179.0,52.0,12.0,79.0,124.0,168.0,49.0,289.0,24.0,8.0,48.0,28.0,11.0,125.0,618.0,100.0,4.0,20.0,53.0,40.0,165.0,337.0,10.0,162.0,134.0,225.0,0.0,66.0,21.0,35.0,1517.0,135.0,88.0,357.0,59.0,55.0,52.0,3.0,149.0,605.0,373.0,148.0,7.0,119.0,3.0,387.0,17.0,194.0,17.0,133.0,371.0,0.0,22.0,118.0,17.0,370.0,42.0,89.0,223.0,3.0,2.0,21.0,278.0,104.0,587.0,26.0,25.0,374.0,18.0,93.0,630.0,206.0,0.0,284.0,0.0,72.0,2.0,114.0,40.0,2.0,0.0,663.0,3.0,366.0,22.0,34.0,96.0,834.0,1295.0,74.0,113.0,20.0,17.0,346.0,84.0,463.0,174.0,0.0,1389.0,92.0,36.0,1560.0,203.0,824.0,81.0,593.0,1008.0,2.0,207.0,0.0,0.0,13.0,666.0,0.0,14.0,0.0,239.0,74.0,37.0,712.0,14.0,461.0,31.0,75.0,92.0,84.0,621.0,17.0,284.0,1556.0,0.0,242.0,2084.0,529.0,139.0,166.0,371.0,12.0,93.0,0.0,137.0,56.0,21.0,102.0,1782.0,39.0,0.0,1263.0,49.0,12.0,437.0,140.0,241.0,225.0,31.0,117.0,0.0,0.0,7.0,37.0,47.0,340.0,153.0,1269.0,915.0,45.0,127.0,15.0,53.0,0.0,188.0,41.0,545.0,48.0,161.0,470.0,68.0,44.0,17.0,57.0,64.0,60.0,1.0,412.0,71.0,58.0,40.0,32.0,0.0,162.0,210.0,1.0,87.0,39.0,51.0,55.0,65.0,102.0,393.0,106.0,114.0,172.0,264.0,9.0,0.0,177.0,32.0,663.0,0.0,1.0,123.0,19.0,40.0,3.0,18.0,11.0,190.0,56.0,86.0,133.0,7.0,470.0,410.0,32.0,427.0,64.0,114.0,80.0,8.0,56.0,206.0,13.0,9.0,2.0,5.0,373.0,64.0,133.0,17.0,0.0,24.0,14.0,0.0,0.0,0.0,74.0,206.0,0.0,757.0,114.0,97.0,35.0,1.0,27.0,31.0,888.0,260.0,10.0,87.0,0.0,0.0,446.0,8.0,455.0,34.0,0.0,133.0,36.0,86.0,96.0,0.0,0.0,86.0,131.7357756728,2015-03-15,,2015-11,130.89982204944943,137.6807508588, +151,151,95.0,18.0,6.0,5.0,232.0,106.0,9.0,95.0,257.0,139.0,29.0,802.0,5.0,15.0,67.0,4.0,51.0,9.0,171.0,53.0,10.0,92.0,91.0,178.0,46.0,325.0,26.0,11.0,47.0,38.0,8.0,117.0,584.0,75.0,3.0,28.0,48.0,36.0,181.0,354.0,12.0,214.0,136.0,238.0,0.0,85.0,10.0,34.0,1403.0,104.0,99.0,334.0,79.0,57.0,57.0,0.0,102.0,584.0,371.0,187.0,7.0,128.0,3.0,404.0,7.0,165.0,21.0,115.0,325.0,0.0,15.0,133.0,13.0,349.0,46.0,73.0,258.0,1.0,6.0,15.0,274.0,75.0,572.0,32.0,32.0,305.0,12.0,93.0,541.0,245.0,2.0,261.0,0.0,64.0,1.0,97.0,30.0,5.0,1.0,719.0,8.0,298.0,22.0,41.0,102.0,758.0,1071.0,60.0,102.0,7.0,20.0,279.0,76.0,479.0,199.0,0.0,1226.0,56.0,31.0,1631.0,164.0,823.0,56.0,560.0,915.0,2.0,253.0,0.0,1.0,16.0,672.0,0.0,14.0,0.0,230.0,105.0,44.0,622.0,10.0,445.0,44.0,100.0,72.0,61.0,657.0,24.0,248.0,1651.0,0.0,260.0,1889.0,435.0,144.0,155.0,401.0,17.0,65.0,0.0,141.0,34.0,20.0,118.0,1650.0,30.0,0.0,922.0,36.0,11.0,627.0,191.0,212.0,238.0,20.0,129.0,0.0,0.0,9.0,39.0,52.0,341.0,151.0,1148.0,771.0,28.0,113.0,25.0,50.0,0.0,223.0,31.0,503.0,46.0,182.0,412.0,47.0,30.0,16.0,52.0,68.0,78.0,0.0,376.0,47.0,49.0,63.0,32.0,0.0,193.0,207.0,0.0,91.0,31.0,37.0,59.0,74.0,99.0,419.0,99.0,118.0,196.0,211.0,23.0,5.0,233.0,26.0,540.0,0.0,1.0,130.0,30.0,98.0,6.0,14.0,27.0,191.0,55.0,100.0,140.0,13.0,395.0,399.0,36.0,410.0,67.0,175.0,62.0,15.0,28.0,249.0,9.0,17.0,0.0,5.0,333.0,64.0,134.0,31.0,1.0,21.0,19.0,4.0,0.0,0.0,73.0,147.0,1.0,632.0,144.0,74.0,24.0,1.0,47.0,28.0,863.0,209.0,14.0,91.0,1.0,0.0,376.0,9.0,435.0,26.0,0.0,80.0,39.0,75.0,132.0,0.0,0.0,98.0,88.9328063241,2015-03-22,,2015-12,90.35893636135418,111.19508758142001, +152,152,131.0,13.0,4.0,4.0,249.0,127.0,20.0,81.0,216.0,143.0,37.0,895.0,4.0,17.0,60.0,5.0,62.0,11.0,208.0,49.0,18.0,82.0,109.0,173.0,53.0,333.0,20.0,9.0,56.0,18.0,13.0,101.0,658.0,75.0,2.0,19.0,31.0,30.0,163.0,252.0,7.0,179.0,100.0,206.0,0.0,89.0,8.0,24.0,1345.0,107.0,93.0,372.0,67.0,44.0,49.0,1.0,115.0,588.0,396.0,175.0,7.0,141.0,2.0,361.0,9.0,173.0,26.0,87.0,435.0,0.0,24.0,131.0,13.0,312.0,39.0,64.0,263.0,1.0,4.0,10.0,278.0,99.0,579.0,25.0,35.0,358.0,27.0,95.0,662.0,199.0,1.0,307.0,0.0,78.0,1.0,99.0,35.0,4.0,0.0,718.0,4.0,326.0,27.0,48.0,112.0,740.0,1028.0,29.0,101.0,6.0,21.0,300.0,63.0,519.0,208.0,0.0,1123.0,53.0,38.0,1933.0,218.0,710.0,51.0,520.0,770.0,1.0,206.0,0.0,2.0,13.0,705.0,0.0,15.0,0.0,232.0,97.0,21.0,599.0,10.0,417.0,23.0,77.0,108.0,50.0,552.0,20.0,252.0,1557.0,0.0,257.0,1854.0,435.0,116.0,163.0,366.0,6.0,83.0,0.0,112.0,33.0,29.0,87.0,1573.0,36.0,0.0,748.0,23.0,7.0,288.0,181.0,251.0,286.0,14.0,131.0,0.0,0.0,7.0,39.0,58.0,332.0,140.0,908.0,856.0,33.0,115.0,16.0,58.0,0.0,179.0,44.0,516.0,41.0,177.0,367.0,57.0,38.0,11.0,63.0,58.0,72.0,0.0,503.0,53.0,83.0,57.0,22.0,0.0,213.0,243.0,0.0,81.0,48.0,46.0,47.0,78.0,111.0,421.0,86.0,85.0,206.0,184.0,22.0,6.0,154.0,15.0,556.0,0.0,0.0,109.0,23.0,63.0,2.0,13.0,5.0,202.0,41.0,102.0,161.0,13.0,341.0,475.0,40.0,376.0,86.0,135.0,60.0,22.0,15.0,211.0,18.0,20.0,2.0,3.0,351.0,69.0,139.0,18.0,1.0,29.0,21.0,3.0,0.0,0.0,84.0,161.0,0.0,596.0,133.0,66.0,21.0,2.0,62.0,27.0,902.0,251.0,15.0,108.0,0.0,0.0,371.0,13.0,526.0,21.0,0.0,92.0,36.0,62.0,85.0,0.0,0.0,100.0,84.9133979833,2015-03-29,,2015-13,84.40202979206504,103.31723189876, +153,153,107.0,13.0,2.0,3.0,246.0,131.0,13.0,90.0,223.0,141.0,36.0,805.0,6.0,8.0,49.0,7.0,62.0,11.0,181.0,55.0,23.0,74.0,97.0,168.0,35.0,365.0,28.0,4.0,59.0,20.0,4.0,115.0,659.0,85.0,2.0,34.0,35.0,22.0,180.0,394.0,7.0,175.0,133.0,224.0,0.0,73.0,7.0,42.0,1517.0,124.0,84.0,323.0,72.0,33.0,67.0,0.0,150.0,521.0,345.0,179.0,8.0,147.0,8.0,326.0,9.0,204.0,33.0,93.0,365.0,0.0,15.0,113.0,16.0,350.0,42.0,82.0,266.0,1.0,4.0,8.0,317.0,83.0,586.0,35.0,18.0,285.0,24.0,101.0,592.0,222.0,1.0,277.0,0.0,76.0,1.0,72.0,39.0,5.0,0.0,737.0,3.0,317.0,19.0,49.0,79.0,753.0,979.0,43.0,94.0,8.0,15.0,264.0,62.0,455.0,242.0,1.0,1070.0,67.0,38.0,1559.0,125.0,628.0,57.0,535.0,884.0,1.0,171.0,0.0,0.0,10.0,610.0,0.0,9.0,0.0,233.0,78.0,44.0,627.0,14.0,493.0,31.0,90.0,70.0,38.0,538.0,28.0,247.0,1781.0,0.0,267.0,1900.0,417.0,133.0,166.0,375.0,10.0,61.0,0.0,96.0,33.0,18.0,102.0,1646.0,33.0,0.0,713.0,27.0,10.0,264.0,158.0,217.0,208.0,19.0,125.0,1.0,0.0,6.0,33.0,57.0,309.0,132.0,1275.0,842.0,57.0,123.0,15.0,72.0,0.0,197.0,46.0,508.0,49.0,178.0,344.0,82.0,38.0,17.0,63.0,65.0,84.0,3.0,440.0,61.0,57.0,64.0,36.0,0.0,181.0,185.0,0.0,94.0,27.0,34.0,45.0,59.0,99.0,426.0,90.0,83.0,162.0,180.0,19.0,2.0,181.0,27.0,613.0,0.0,5.0,117.0,24.0,30.0,5.0,13.0,13.0,193.0,58.0,90.0,136.0,10.0,329.0,425.0,30.0,389.0,81.0,131.0,73.0,8.0,27.0,213.0,12.0,18.0,0.0,2.0,309.0,57.0,94.0,18.0,0.0,17.0,16.0,1.0,0.0,0.0,64.0,122.0,0.0,650.0,143.0,76.0,15.0,0.0,52.0,40.0,972.0,209.0,9.0,90.0,0.0,0.0,409.0,7.0,457.0,32.0,0.0,70.0,46.0,106.0,102.0,0.0,0.0,116.0,76.4186989952,2015-04-05,,2015-14,77.24671659218531,78.11763879282, +154,154,87.0,7.0,9.0,9.0,189.0,113.0,13.0,95.0,238.0,158.0,33.0,700.0,10.0,10.0,51.0,5.0,76.0,8.0,167.0,59.0,9.0,93.0,72.0,184.0,53.0,355.0,24.0,10.0,57.0,22.0,9.0,93.0,586.0,83.0,6.0,20.0,28.0,30.0,135.0,291.0,4.0,183.0,110.0,222.0,0.0,66.0,8.0,39.0,1287.0,97.0,72.0,371.0,62.0,40.0,65.0,2.0,86.0,526.0,360.0,169.0,15.0,133.0,6.0,235.0,10.0,168.0,33.0,108.0,334.0,0.0,27.0,122.0,10.0,208.0,34.0,47.0,226.0,2.0,2.0,16.0,269.0,79.0,496.0,16.0,23.0,216.0,20.0,77.0,544.0,183.0,0.0,257.0,0.0,66.0,0.0,112.0,29.0,7.0,0.0,742.0,3.0,267.0,16.0,35.0,89.0,748.0,672.0,38.0,106.0,11.0,14.0,231.0,56.0,468.0,254.0,1.0,954.0,61.0,35.0,1328.0,141.0,606.0,43.0,444.0,1067.0,2.0,167.0,0.0,1.0,17.0,472.0,0.0,20.0,0.0,153.0,71.0,28.0,523.0,8.0,342.0,21.0,84.0,76.0,30.0,466.0,31.0,246.0,1522.0,0.0,232.0,1628.0,399.0,139.0,134.0,332.0,12.0,56.0,0.0,98.0,33.0,22.0,70.0,1362.0,35.0,0.0,515.0,24.0,7.0,220.0,169.0,195.0,261.0,9.0,111.0,0.0,0.0,7.0,55.0,59.0,256.0,144.0,786.0,658.0,30.0,97.0,14.0,37.0,0.0,184.0,54.0,460.0,35.0,157.0,351.0,48.0,29.0,20.0,48.0,54.0,49.0,0.0,410.0,42.0,44.0,31.0,42.0,0.0,157.0,163.0,0.0,77.0,33.0,33.0,43.0,58.0,79.0,353.0,92.0,71.0,188.0,154.0,13.0,5.0,193.0,25.0,392.0,0.0,0.0,94.0,17.0,30.0,4.0,13.0,9.0,177.0,63.0,94.0,128.0,8.0,263.0,335.0,39.0,334.0,103.0,147.0,51.0,9.0,24.0,202.0,3.0,9.0,1.0,3.0,385.0,70.0,110.0,22.0,0.0,31.0,19.0,1.0,0.0,1.0,67.0,61.0,0.0,566.0,117.0,78.0,35.0,0.0,36.0,39.0,820.0,194.0,34.0,69.0,0.0,0.0,377.0,11.0,449.0,22.0,0.0,89.0,29.0,81.0,86.0,0.0,0.0,165.0,54.876815989399994,2015-04-12,,2015-15,54.71880867536912,68.83494512752, +155,155,101.0,15.0,6.0,2.0,195.0,104.0,12.0,98.0,201.0,149.0,39.0,903.0,4.0,9.0,47.0,4.0,92.0,8.0,184.0,53.0,15.0,81.0,55.0,156.0,51.0,392.0,42.0,7.0,56.0,30.0,10.0,89.0,662.0,88.0,3.0,17.0,44.0,37.0,107.0,254.0,5.0,202.0,105.0,224.0,0.0,80.0,3.0,37.0,1106.0,84.0,88.0,331.0,49.0,41.0,67.0,0.0,105.0,547.0,329.0,189.0,10.0,121.0,1.0,317.0,5.0,140.0,46.0,78.0,334.0,0.0,20.0,73.0,22.0,209.0,44.0,89.0,205.0,2.0,4.0,16.0,299.0,83.0,541.0,17.0,35.0,250.0,31.0,91.0,460.0,194.0,0.0,287.0,0.0,56.0,1.0,92.0,23.0,9.0,0.0,772.0,7.0,316.0,29.0,50.0,84.0,747.0,624.0,41.0,84.0,3.0,13.0,231.0,53.0,407.0,158.0,0.0,812.0,45.0,36.0,1306.0,134.0,565.0,60.0,447.0,657.0,1.0,204.0,1.0,1.0,19.0,493.0,0.0,17.0,0.0,178.0,74.0,33.0,527.0,12.0,389.0,43.0,86.0,57.0,32.0,491.0,22.0,224.0,1360.0,0.0,211.0,1610.0,418.0,180.0,170.0,400.0,15.0,55.0,2.0,87.0,35.0,24.0,73.0,1285.0,37.0,0.0,585.0,23.0,13.0,302.0,159.0,225.0,220.0,18.0,131.0,0.0,0.0,9.0,44.0,51.0,253.0,158.0,656.0,782.0,34.0,105.0,20.0,49.0,0.0,163.0,171.0,522.0,55.0,164.0,329.0,60.0,27.0,28.0,64.0,47.0,40.0,1.0,484.0,50.0,61.0,45.0,25.0,0.0,161.0,151.0,0.0,67.0,31.0,39.0,56.0,84.0,110.0,318.0,87.0,102.0,177.0,121.0,24.0,2.0,216.0,22.0,393.0,0.0,0.0,100.0,22.0,34.0,8.0,15.0,8.0,186.0,59.0,104.0,134.0,6.0,306.0,343.0,29.0,368.0,58.0,220.0,52.0,15.0,31.0,200.0,9.0,15.0,0.0,4.0,331.0,79.0,111.0,21.0,0.0,34.0,23.0,5.0,0.0,1.0,63.0,72.0,0.0,577.0,144.0,92.0,19.0,0.0,29.0,17.0,831.0,167.0,19.0,75.0,0.0,0.0,251.0,11.0,403.0,22.0,0.0,85.0,27.0,85.0,90.0,0.0,0.0,95.0,55.663002971800005,2015-04-19,,2015-16,54.91948266753776,85.57975800736, +156,156,70.0,8.0,9.0,2.0,194.0,62.0,13.0,88.0,171.0,91.0,16.0,633.0,0.0,11.0,32.0,2.0,97.0,6.0,192.0,42.0,12.0,66.0,82.0,130.0,51.0,282.0,17.0,6.0,41.0,14.0,8.0,107.0,586.0,84.0,5.0,18.0,28.0,54.0,131.0,200.0,15.0,156.0,116.0,185.0,0.0,77.0,12.0,28.0,878.0,67.0,57.0,314.0,53.0,36.0,39.0,33.0,72.0,353.0,190.0,151.0,11.0,88.0,2.0,152.0,16.0,121.0,30.0,76.0,347.0,0.0,11.0,94.0,13.0,161.0,32.0,45.0,250.0,0.0,1.0,13.0,281.0,68.0,334.0,20.0,11.0,144.0,21.0,101.0,390.0,182.0,1.0,244.0,0.0,77.0,1.0,58.0,21.0,3.0,0.0,521.0,3.0,255.0,18.0,31.0,76.0,537.0,620.0,282.0,70.0,3.0,15.0,210.0,41.0,394.0,150.0,0.0,561.0,60.0,46.0,824.0,111.0,544.0,36.0,211.0,580.0,0.0,184.0,0.0,0.0,11.0,385.0,0.0,18.0,0.0,137.0,42.0,23.0,505.0,14.0,331.0,39.0,53.0,61.0,42.0,349.0,22.0,206.0,963.0,0.0,162.0,878.0,295.0,87.0,119.0,343.0,13.0,47.0,0.0,68.0,28.0,32.0,70.0,1028.0,27.0,0.0,426.0,18.0,16.0,213.0,129.0,84.0,292.0,10.0,142.0,0.0,0.0,4.0,44.0,42.0,218.0,109.0,271.0,564.0,17.0,123.0,16.0,59.0,0.0,178.0,61.0,476.0,44.0,137.0,432.0,65.0,26.0,19.0,51.0,46.0,44.0,0.0,315.0,24.0,72.0,44.0,21.0,0.0,150.0,150.0,0.0,67.0,45.0,34.0,52.0,42.0,50.0,506.0,69.0,75.0,152.0,144.0,13.0,2.0,165.0,11.0,380.0,0.0,0.0,87.0,25.0,43.0,7.0,13.0,7.0,138.0,23.0,89.0,150.0,12.0,339.0,231.0,28.0,193.0,77.0,105.0,47.0,7.0,12.0,151.0,13.0,17.0,0.0,7.0,371.0,51.0,114.0,17.0,0.0,32.0,21.0,0.0,0.0,0.0,49.0,49.0,0.0,558.0,88.0,112.0,20.0,0.0,43.0,41.0,464.0,98.0,13.0,65.0,0.0,0.0,268.0,7.0,343.0,28.0,0.0,94.0,36.0,63.0,138.0,0.0,0.0,85.0,45.5014787981,2015-10-25,,2015-43,45.28747846193975,44.39686537002001, +157,157,73.0,16.0,6.0,4.0,229.0,51.0,19.0,85.0,150.0,90.0,24.0,734.0,0.0,5.0,49.0,6.0,55.0,12.0,164.0,66.0,12.0,97.0,88.0,122.0,52.0,336.0,15.0,4.0,51.0,18.0,12.0,107.0,606.0,109.0,2.0,9.0,34.0,61.0,171.0,173.0,11.0,156.0,98.0,147.0,0.0,51.0,16.0,31.0,904.0,58.0,86.0,301.0,48.0,28.0,62.0,32.0,87.0,296.0,170.0,215.0,4.0,93.0,1.0,144.0,10.0,121.0,58.0,64.0,341.0,0.0,16.0,100.0,10.0,146.0,31.0,46.0,262.0,0.0,1.0,22.0,287.0,68.0,312.0,21.0,7.0,108.0,18.0,135.0,369.0,173.0,0.0,284.0,0.0,66.0,3.0,62.0,27.0,3.0,0.0,610.0,4.0,266.0,12.0,26.0,68.0,605.0,530.0,265.0,78.0,5.0,11.0,179.0,46.0,421.0,184.0,0.0,513.0,40.0,46.0,910.0,85.0,611.0,33.0,211.0,528.0,4.0,163.0,0.0,0.0,15.0,358.0,0.0,17.0,0.0,170.0,49.0,17.0,441.0,11.0,269.0,44.0,61.0,49.0,44.0,328.0,26.0,195.0,915.0,0.0,156.0,764.0,232.0,56.0,97.0,267.0,10.0,46.0,0.0,63.0,19.0,27.0,79.0,925.0,25.0,0.0,364.0,15.0,6.0,185.0,148.0,70.0,244.0,26.0,115.0,0.0,0.0,6.0,49.0,37.0,208.0,248.0,299.0,571.0,20.0,121.0,10.0,60.0,0.0,154.0,29.0,442.0,54.0,102.0,350.0,65.0,34.0,16.0,104.0,46.0,49.0,0.0,338.0,37.0,36.0,64.0,20.0,0.0,124.0,148.0,0.0,88.0,40.0,29.0,45.0,46.0,59.0,428.0,54.0,58.0,162.0,115.0,13.0,2.0,194.0,19.0,298.0,0.0,2.0,76.0,14.0,25.0,4.0,10.0,8.0,128.0,18.0,74.0,153.0,6.0,308.0,203.0,34.0,203.0,76.0,107.0,47.0,15.0,12.0,149.0,6.0,10.0,0.0,2.0,436.0,49.0,76.0,17.0,0.0,25.0,16.0,0.0,0.0,0.0,57.0,36.0,0.0,447.0,71.0,75.0,13.0,1.0,75.0,26.0,455.0,126.0,16.0,84.0,0.0,0.0,255.0,8.0,388.0,17.0,0.0,82.0,35.0,50.0,51.0,0.0,0.0,80.0,39.9784116577,2015-11-01,,2015-44,39.19826164624186,47.45482298532001, +158,158,78.0,18.0,4.0,4.0,239.0,62.0,16.0,74.0,145.0,103.0,26.0,632.0,1.0,8.0,45.0,3.0,57.0,2.0,209.0,66.0,10.0,85.0,94.0,114.0,39.0,308.0,18.0,7.0,41.0,21.0,14.0,109.0,660.0,86.0,3.0,27.0,28.0,30.0,151.0,153.0,5.0,175.0,86.0,150.0,0.0,47.0,11.0,34.0,982.0,53.0,74.0,346.0,49.0,21.0,33.0,41.0,85.0,299.0,192.0,139.0,9.0,82.0,1.0,160.0,7.0,143.0,44.0,60.0,415.0,0.0,15.0,110.0,12.0,173.0,34.0,50.0,231.0,0.0,2.0,12.0,267.0,51.0,297.0,22.0,9.0,81.0,25.0,79.0,566.0,167.0,1.0,213.0,0.0,63.0,1.0,38.0,19.0,2.0,0.0,628.0,7.0,267.0,14.0,31.0,44.0,541.0,527.0,352.0,95.0,2.0,17.0,163.0,51.0,428.0,118.0,0.0,538.0,75.0,40.0,896.0,109.0,534.0,34.0,255.0,574.0,1.0,157.0,0.0,0.0,12.0,334.0,0.0,14.0,0.0,133.0,48.0,30.0,510.0,4.0,389.0,39.0,54.0,60.0,37.0,340.0,22.0,181.0,906.0,0.0,142.0,920.0,265.0,77.0,123.0,277.0,13.0,56.0,0.0,60.0,28.0,36.0,73.0,1024.0,22.0,0.0,394.0,27.0,14.0,175.0,130.0,99.0,202.0,6.0,109.0,0.0,0.0,7.0,38.0,39.0,166.0,208.0,305.0,605.0,21.0,125.0,10.0,69.0,0.0,172.0,34.0,414.0,35.0,159.0,420.0,93.0,29.0,12.0,34.0,41.0,54.0,0.0,359.0,36.0,46.0,55.0,17.0,0.0,131.0,125.0,0.0,59.0,26.0,39.0,45.0,38.0,64.0,491.0,78.0,52.0,138.0,150.0,7.0,0.0,161.0,84.0,372.0,0.0,0.0,92.0,18.0,29.0,3.0,14.0,3.0,108.0,27.0,109.0,120.0,10.0,280.0,188.0,34.0,199.0,88.0,96.0,55.0,9.0,28.0,168.0,10.0,15.0,0.0,1.0,408.0,52.0,78.0,12.0,0.0,27.0,26.0,1.0,0.0,0.0,52.0,47.0,0.0,396.0,87.0,91.0,13.0,0.0,71.0,31.0,468.0,104.0,17.0,113.0,0.0,0.0,286.0,7.0,360.0,20.0,0.0,87.0,30.0,67.0,51.0,0.0,0.0,74.0,32.4772445622,2015-11-08,,2015-45,33.08590063798836,37.914346737319995, +159,159,70.0,12.0,8.0,4.0,201.0,40.0,18.0,84.0,160.0,67.0,20.0,730.0,3.0,10.0,54.0,3.0,63.0,10.0,241.0,68.0,13.0,96.0,75.0,108.0,61.0,436.0,14.0,4.0,34.0,16.0,14.0,88.0,604.0,93.0,0.0,29.0,41.0,39.0,143.0,188.0,9.0,219.0,131.0,155.0,0.0,62.0,16.0,42.0,902.0,51.0,85.0,340.0,46.0,41.0,32.0,23.0,93.0,309.0,161.0,141.0,9.0,108.0,1.0,151.0,8.0,125.0,35.0,66.0,374.0,0.0,21.0,77.0,15.0,157.0,40.0,53.0,255.0,0.0,2.0,14.0,273.0,76.0,304.0,25.0,12.0,114.0,33.0,73.0,452.0,177.0,0.0,208.0,0.0,54.0,1.0,63.0,20.0,8.0,0.0,517.0,5.0,233.0,25.0,32.0,61.0,529.0,538.0,359.0,63.0,2.0,13.0,187.0,51.0,485.0,128.0,0.0,521.0,82.0,43.0,855.0,102.0,598.0,31.0,215.0,553.0,2.0,155.0,0.0,0.0,15.0,395.0,0.0,9.0,0.0,175.0,40.0,25.0,553.0,8.0,342.0,31.0,70.0,58.0,28.0,324.0,18.0,206.0,913.0,0.0,161.0,816.0,271.0,82.0,112.0,324.0,13.0,46.0,0.0,56.0,26.0,26.0,222.0,1080.0,27.0,0.0,387.0,28.0,4.0,191.0,236.0,78.0,222.0,16.0,134.0,0.0,0.0,1.0,56.0,39.0,158.0,156.0,446.0,593.0,31.0,129.0,16.0,62.0,0.0,223.0,31.0,427.0,48.0,168.0,529.0,79.0,18.0,8.0,40.0,45.0,45.0,0.0,420.0,37.0,41.0,43.0,32.0,0.0,185.0,211.0,0.0,53.0,35.0,27.0,74.0,44.0,62.0,451.0,56.0,72.0,141.0,231.0,13.0,2.0,176.0,30.0,330.0,0.0,0.0,84.0,10.0,25.0,6.0,19.0,13.0,192.0,27.0,120.0,107.0,12.0,285.0,205.0,31.0,235.0,65.0,116.0,56.0,17.0,24.0,162.0,11.0,16.0,0.0,4.0,394.0,56.0,90.0,21.0,0.0,21.0,18.0,1.0,0.0,0.0,76.0,39.0,0.0,420.0,105.0,84.0,23.0,1.0,45.0,26.0,498.0,100.0,18.0,83.0,0.0,0.0,258.0,9.0,399.0,26.0,0.0,91.0,32.0,61.0,45.0,0.0,0.0,77.0,42.930015656799995,2015-11-15,,2015-46,42.98259575018953,39.68417295586, +160,160,93.0,19.0,7.0,4.0,242.0,47.0,12.0,93.0,145.0,69.0,22.0,652.0,5.0,8.0,44.0,2.0,50.0,3.0,236.0,56.0,16.0,58.0,112.0,127.0,44.0,294.0,13.0,4.0,44.0,21.0,12.0,105.0,698.0,85.0,3.0,16.0,25.0,24.0,112.0,167.0,8.0,185.0,86.0,157.0,0.0,47.0,8.0,31.0,868.0,44.0,107.0,293.0,48.0,25.0,28.0,45.0,78.0,310.0,184.0,128.0,5.0,83.0,2.0,146.0,4.0,122.0,39.0,48.0,345.0,0.0,15.0,105.0,8.0,162.0,43.0,39.0,213.0,0.0,1.0,25.0,305.0,75.0,312.0,19.0,10.0,161.0,17.0,86.0,496.0,215.0,1.0,198.0,0.0,59.0,0.0,38.0,29.0,4.0,0.0,616.0,3.0,277.0,24.0,31.0,80.0,551.0,475.0,183.0,93.0,5.0,15.0,181.0,45.0,605.0,106.0,0.0,665.0,67.0,43.0,855.0,99.0,551.0,29.0,214.0,534.0,1.0,158.0,0.0,0.0,9.0,345.0,0.0,10.0,0.0,165.0,44.0,29.0,547.0,2.0,328.0,30.0,82.0,53.0,34.0,316.0,26.0,163.0,1275.0,0.0,162.0,842.0,229.0,100.0,109.0,290.0,14.0,48.0,0.0,78.0,19.0,16.0,225.0,1000.0,22.0,0.0,380.0,20.0,4.0,201.0,173.0,102.0,270.0,4.0,143.0,0.0,0.0,1.0,40.0,32.0,170.0,126.0,399.0,587.0,23.0,97.0,18.0,49.0,0.0,210.0,29.0,410.0,55.0,126.0,401.0,62.0,20.0,14.0,63.0,53.0,46.0,0.0,321.0,50.0,49.0,28.0,21.0,0.0,152.0,153.0,0.0,30.0,38.0,24.0,49.0,43.0,84.0,387.0,73.0,64.0,159.0,222.0,11.0,1.0,125.0,25.0,415.0,0.0,0.0,95.0,17.0,31.0,2.0,18.0,6.0,134.0,21.0,89.0,90.0,9.0,365.0,187.0,29.0,201.0,26.0,135.0,54.0,12.0,20.0,134.0,7.0,11.0,0.0,2.0,387.0,69.0,96.0,6.0,0.0,16.0,13.0,1.0,0.0,0.0,58.0,35.0,0.0,360.0,91.0,96.0,25.0,0.0,24.0,23.0,477.0,100.0,11.0,68.0,0.0,0.0,258.0,16.0,294.0,19.0,0.0,89.0,41.0,76.0,50.0,0.0,0.0,434.0,28.117531280799998,2015-11-22,,2015-47,30.42827516475435,36.50506180146, +161,161,69.0,11.0,7.0,7.0,234.0,65.0,11.0,74.0,157.0,105.0,30.0,726.0,5.0,12.0,67.0,4.0,46.0,7.0,172.0,76.0,12.0,66.0,91.0,106.0,64.0,351.0,20.0,5.0,35.0,12.0,11.0,106.0,528.0,84.0,1.0,26.0,30.0,28.0,123.0,162.0,4.0,163.0,113.0,162.0,0.0,67.0,8.0,26.0,993.0,67.0,83.0,342.0,63.0,30.0,25.0,39.0,81.0,352.0,176.0,122.0,6.0,108.0,0.0,139.0,8.0,108.0,49.0,73.0,350.0,0.0,10.0,94.0,13.0,163.0,43.0,41.0,235.0,0.0,5.0,14.0,300.0,53.0,352.0,19.0,13.0,159.0,27.0,118.0,491.0,196.0,0.0,222.0,0.0,66.0,0.0,36.0,23.0,5.0,0.0,599.0,3.0,237.0,25.0,39.0,62.0,527.0,596.0,158.0,147.0,2.0,16.0,178.0,40.0,479.0,156.0,0.0,623.0,42.0,32.0,906.0,111.0,583.0,32.0,267.0,633.0,2.0,146.0,0.0,0.0,13.0,399.0,0.0,7.0,0.0,187.0,45.0,27.0,445.0,4.0,333.0,42.0,54.0,82.0,33.0,332.0,23.0,151.0,951.0,0.0,176.0,881.0,264.0,93.0,110.0,294.0,7.0,60.0,0.0,67.0,16.0,23.0,79.0,1047.0,33.0,0.0,478.0,37.0,8.0,190.0,146.0,89.0,240.0,9.0,139.0,0.0,0.0,3.0,41.0,41.0,173.0,132.0,360.0,581.0,25.0,101.0,15.0,64.0,0.0,243.0,28.0,444.0,67.0,117.0,343.0,61.0,27.0,10.0,36.0,41.0,85.0,0.0,330.0,33.0,48.0,51.0,31.0,0.0,196.0,136.0,0.0,53.0,39.0,27.0,46.0,45.0,80.0,438.0,76.0,73.0,181.0,310.0,17.0,4.0,129.0,35.0,525.0,0.0,2.0,73.0,15.0,74.0,3.0,10.0,4.0,134.0,15.0,110.0,101.0,5.0,304.0,208.0,32.0,223.0,44.0,135.0,66.0,19.0,21.0,163.0,15.0,10.0,0.0,5.0,360.0,86.0,89.0,15.0,0.0,19.0,17.0,0.0,0.0,0.0,61.0,34.0,0.0,426.0,113.0,60.0,17.0,0.0,55.0,30.0,559.0,114.0,16.0,53.0,0.0,0.0,260.0,12.0,334.0,16.0,0.0,86.0,30.0,57.0,63.0,0.0,0.0,137.0,33.5553146456,2015-11-29,,2015-48,33.163740263295495,34.08343082724, +162,162,83.0,10.0,5.0,5.0,221.0,60.0,9.0,105.0,156.0,94.0,23.0,721.0,6.0,7.0,50.0,8.0,43.0,9.0,220.0,61.0,20.0,82.0,76.0,119.0,66.0,306.0,76.0,6.0,32.0,16.0,9.0,94.0,573.0,100.0,3.0,15.0,21.0,30.0,129.0,156.0,5.0,168.0,96.0,180.0,0.0,54.0,6.0,34.0,871.0,92.0,74.0,290.0,58.0,32.0,30.0,19.0,89.0,325.0,160.0,145.0,10.0,113.0,1.0,155.0,7.0,183.0,46.0,62.0,381.0,0.0,11.0,95.0,15.0,202.0,33.0,59.0,219.0,0.0,1.0,22.0,220.0,83.0,378.0,21.0,17.0,145.0,16.0,109.0,492.0,167.0,0.0,224.0,0.0,78.0,0.0,44.0,32.0,4.0,0.0,530.0,17.0,222.0,28.0,28.0,138.0,588.0,601.0,133.0,88.0,7.0,12.0,221.0,58.0,415.0,159.0,0.0,637.0,54.0,41.0,914.0,101.0,450.0,36.0,234.0,579.0,4.0,148.0,0.0,0.0,9.0,407.0,0.0,13.0,0.0,194.0,70.0,28.0,464.0,6.0,373.0,46.0,74.0,70.0,30.0,355.0,21.0,156.0,1617.0,0.0,178.0,876.0,301.0,83.0,126.0,313.0,10.0,46.0,0.0,66.0,18.0,16.0,89.0,1081.0,28.0,0.0,414.0,17.0,9.0,398.0,175.0,100.0,255.0,16.0,127.0,0.0,0.0,4.0,35.0,31.0,225.0,135.0,434.0,606.0,20.0,162.0,10.0,263.0,0.0,184.0,33.0,481.0,32.0,131.0,380.0,69.0,26.0,9.0,31.0,36.0,60.0,0.0,343.0,28.0,47.0,56.0,28.0,0.0,146.0,185.0,0.0,62.0,42.0,19.0,45.0,54.0,106.0,430.0,107.0,62.0,200.0,471.0,11.0,1.0,131.0,22.0,423.0,0.0,1.0,89.0,24.0,36.0,4.0,18.0,8.0,168.0,32.0,106.0,113.0,12.0,326.0,190.0,37.0,196.0,31.0,121.0,49.0,15.0,18.0,178.0,12.0,18.0,0.0,2.0,393.0,73.0,122.0,9.0,0.0,30.0,20.0,2.0,0.0,0.0,78.0,44.0,0.0,520.0,117.0,71.0,21.0,0.0,69.0,28.0,492.0,134.0,14.0,52.0,0.0,0.0,319.0,8.0,289.0,20.0,0.0,81.0,25.0,54.0,70.0,0.0,0.0,97.0,31.792404193200003,2015-12-06,,2015-49,32.30263066471316,33.53097245362, +163,163,83.0,17.0,4.0,3.0,230.0,76.0,19.0,66.0,176.0,82.0,26.0,711.0,6.0,12.0,52.0,6.0,36.0,8.0,254.0,53.0,14.0,58.0,81.0,144.0,72.0,361.0,22.0,11.0,46.0,20.0,13.0,105.0,513.0,95.0,5.0,19.0,20.0,43.0,129.0,174.0,6.0,170.0,126.0,158.0,0.0,48.0,11.0,36.0,1025.0,84.0,83.0,314.0,41.0,41.0,34.0,33.0,93.0,352.0,207.0,157.0,2.0,100.0,4.0,163.0,5.0,152.0,47.0,59.0,348.0,0.0,19.0,99.0,22.0,219.0,49.0,54.0,204.0,0.0,2.0,20.0,268.0,119.0,377.0,17.0,12.0,149.0,18.0,56.0,481.0,215.0,1.0,218.0,0.0,67.0,0.0,47.0,22.0,5.0,0.0,548.0,10.0,271.0,18.0,27.0,83.0,620.0,593.0,92.0,70.0,6.0,18.0,171.0,48.0,436.0,152.0,0.0,718.0,52.0,43.0,896.0,146.0,523.0,38.0,235.0,700.0,1.0,159.0,0.0,0.0,16.0,457.0,0.0,7.0,0.0,176.0,47.0,13.0,522.0,11.0,314.0,51.0,54.0,55.0,41.0,363.0,21.0,186.0,1015.0,0.0,181.0,950.0,289.0,88.0,126.0,352.0,9.0,42.0,0.0,80.0,28.0,31.0,100.0,1242.0,27.0,0.0,414.0,26.0,8.0,232.0,177.0,68.0,272.0,15.0,126.0,0.0,0.0,4.0,58.0,40.0,225.0,140.0,645.0,581.0,28.0,167.0,15.0,189.0,0.0,179.0,33.0,479.0,51.0,162.0,376.0,59.0,24.0,19.0,48.0,41.0,47.0,0.0,380.0,42.0,47.0,35.0,25.0,0.0,197.0,170.0,0.0,44.0,30.0,32.0,52.0,53.0,125.0,475.0,94.0,77.0,182.0,386.0,16.0,2.0,155.0,41.0,407.0,0.0,1.0,98.0,17.0,31.0,2.0,12.0,12.0,166.0,16.0,94.0,157.0,5.0,345.0,192.0,36.0,216.0,47.0,115.0,51.0,20.0,16.0,191.0,13.0,15.0,0.0,5.0,363.0,79.0,102.0,9.0,0.0,24.0,12.0,1.0,0.0,0.0,62.0,55.0,0.0,574.0,102.0,70.0,13.0,2.0,47.0,32.0,630.0,115.0,13.0,91.0,0.0,0.0,307.0,10.0,357.0,31.0,0.0,73.0,41.0,92.0,68.0,0.0,0.0,87.0,36.1958955538,2015-12-13,,2015-50,35.91809584253021,36.1958955538, +164,164,64.0,13.0,4.0,2.0,237.0,80.0,10.0,79.0,171.0,113.0,26.0,869.0,2.0,10.0,35.0,4.0,66.0,5.0,204.0,49.0,11.0,83.0,73.0,102.0,62.0,379.0,29.0,5.0,36.0,17.0,14.0,83.0,601.0,65.0,1.0,24.0,27.0,34.0,126.0,158.0,6.0,180.0,98.0,155.0,0.0,69.0,9.0,63.0,904.0,60.0,49.0,331.0,46.0,28.0,15.0,35.0,83.0,398.0,166.0,135.0,8.0,100.0,0.0,168.0,10.0,139.0,45.0,83.0,301.0,0.0,16.0,76.0,12.0,188.0,44.0,44.0,224.0,0.0,5.0,11.0,267.0,56.0,354.0,26.0,13.0,113.0,24.0,86.0,524.0,161.0,2.0,228.0,0.0,64.0,1.0,60.0,28.0,6.0,0.0,488.0,9.0,294.0,20.0,38.0,88.0,589.0,691.0,74.0,52.0,20.0,12.0,229.0,61.0,443.0,129.0,0.0,639.0,68.0,39.0,933.0,118.0,490.0,28.0,215.0,546.0,4.0,169.0,0.0,0.0,21.0,373.0,0.0,14.0,0.0,185.0,40.0,14.0,509.0,4.0,340.0,39.0,78.0,78.0,38.0,355.0,17.0,187.0,931.0,0.0,197.0,926.0,278.0,112.0,114.0,326.0,8.0,45.0,0.0,55.0,27.0,39.0,71.0,1156.0,30.0,0.0,404.0,22.0,7.0,236.0,174.0,86.0,317.0,16.0,173.0,0.0,0.0,5.0,31.0,37.0,205.0,117.0,614.0,623.0,22.0,107.0,12.0,66.0,0.0,191.0,30.0,490.0,52.0,158.0,367.0,89.0,31.0,17.0,39.0,36.0,38.0,0.0,338.0,43.0,47.0,33.0,33.0,0.0,143.0,148.0,0.0,46.0,29.0,24.0,42.0,60.0,115.0,414.0,92.0,79.0,225.0,353.0,10.0,6.0,164.0,22.0,347.0,0.0,0.0,88.0,20.0,28.0,2.0,8.0,18.0,126.0,28.0,137.0,131.0,9.0,314.0,188.0,29.0,231.0,46.0,142.0,58.0,18.0,30.0,152.0,5.0,13.0,0.0,3.0,369.0,75.0,73.0,14.0,0.0,32.0,24.0,4.0,0.0,0.0,63.0,77.0,0.0,538.0,88.0,74.0,22.0,1.0,54.0,28.0,743.0,103.0,12.0,90.0,0.0,0.0,289.0,4.0,322.0,23.0,0.0,63.0,32.0,46.0,53.0,0.0,0.0,82.0,52.1001314908,2015-12-20,,2015-51,51.57970338449417,53.99283126096, +165,165,80.0,16.0,3.0,8.0,197.0,63.0,16.0,95.0,168.0,77.0,31.0,635.0,3.0,21.0,52.0,5.0,68.0,7.0,192.0,63.0,17.0,70.0,70.0,108.0,47.0,324.0,36.0,6.0,35.0,15.0,12.0,97.0,555.0,71.0,4.0,16.0,34.0,41.0,117.0,150.0,9.0,186.0,82.0,168.0,0.0,54.0,19.0,45.0,759.0,61.0,72.0,282.0,60.0,41.0,33.0,35.0,118.0,371.0,152.0,187.0,2.0,121.0,3.0,137.0,9.0,122.0,49.0,97.0,383.0,0.0,15.0,83.0,13.0,153.0,50.0,34.0,170.0,0.0,1.0,18.0,209.0,45.0,289.0,23.0,11.0,118.0,16.0,115.0,479.0,166.0,1.0,244.0,0.0,58.0,0.0,43.0,32.0,8.0,0.0,522.0,8.0,227.0,26.0,34.0,79.0,554.0,483.0,59.0,45.0,7.0,15.0,155.0,45.0,451.0,129.0,0.0,599.0,39.0,43.0,797.0,117.0,417.0,35.0,235.0,488.0,3.0,164.0,0.0,0.0,17.0,349.0,0.0,9.0,0.0,169.0,58.0,25.0,419.0,12.0,284.0,47.0,73.0,88.0,25.0,374.0,18.0,177.0,891.0,0.0,329.0,859.0,247.0,94.0,107.0,263.0,23.0,48.0,0.0,67.0,31.0,26.0,97.0,1171.0,31.0,0.0,356.0,23.0,12.0,200.0,221.0,93.0,284.0,12.0,140.0,0.0,0.0,3.0,39.0,33.0,201.0,139.0,522.0,623.0,23.0,139.0,16.0,46.0,0.0,185.0,49.0,496.0,42.0,147.0,413.0,92.0,21.0,7.0,50.0,37.0,39.0,0.0,297.0,45.0,44.0,39.0,30.0,0.0,188.0,136.0,0.0,44.0,28.0,28.0,32.0,57.0,86.0,315.0,97.0,72.0,177.0,299.0,23.0,3.0,209.0,38.0,317.0,0.0,0.0,76.0,22.0,30.0,14.0,21.0,8.0,146.0,22.0,95.0,113.0,6.0,303.0,215.0,36.0,187.0,71.0,135.0,35.0,9.0,14.0,178.0,13.0,8.0,0.0,2.0,360.0,81.0,79.0,16.0,0.0,31.0,26.0,0.0,0.0,0.0,62.0,54.0,0.0,479.0,85.0,74.0,21.0,0.0,55.0,24.0,621.0,132.0,17.0,79.0,0.0,0.0,277.0,6.0,289.0,26.0,0.0,57.0,31.0,68.0,42.0,0.0,0.0,79.0,48.9774875408,2015-12-27,,2015-52,50.12049942848664,48.09405004886, +166,166,49.0,12.0,4.0,8.0,125.0,46.0,7.0,39.0,106.0,59.0,12.0,383.0,3.0,13.0,44.0,4.0,64.0,5.0,110.0,52.0,16.0,30.0,48.0,79.0,26.0,222.0,16.0,7.0,35.0,10.0,11.0,64.0,399.0,88.0,5.0,6.0,15.0,34.0,86.0,89.0,11.0,143.0,46.0,142.0,0.0,48.0,9.0,27.0,578.0,34.0,71.0,215.0,34.0,39.0,18.0,41.0,71.0,248.0,150.0,107.0,4.0,57.0,1.0,89.0,3.0,76.0,27.0,53.0,206.0,0.0,12.0,71.0,10.0,107.0,30.0,39.0,142.0,0.0,5.0,15.0,213.0,38.0,244.0,17.0,8.0,93.0,17.0,66.0,328.0,117.0,0.0,172.0,0.0,55.0,1.0,44.0,27.0,6.0,0.0,411.0,8.0,158.0,14.0,14.0,37.0,445.0,337.0,24.0,39.0,7.0,10.0,130.0,49.0,292.0,112.0,0.0,373.0,29.0,37.0,617.0,91.0,370.0,25.0,210.0,362.0,4.0,81.0,0.0,0.0,7.0,258.0,0.0,10.0,0.0,124.0,34.0,14.0,256.0,4.0,180.0,19.0,43.0,35.0,29.0,255.0,15.0,98.0,671.0,0.0,139.0,696.0,185.0,78.0,73.0,191.0,8.0,38.0,0.0,47.0,23.0,13.0,49.0,766.0,20.0,0.0,226.0,27.0,5.0,221.0,87.0,74.0,152.0,8.0,106.0,0.0,0.0,3.0,24.0,29.0,125.0,94.0,411.0,442.0,17.0,73.0,13.0,32.0,0.0,148.0,41.0,340.0,39.0,60.0,219.0,68.0,26.0,14.0,26.0,33.0,17.0,0.0,214.0,35.0,27.0,21.0,21.0,0.0,121.0,102.0,0.0,20.0,22.0,30.0,34.0,29.0,72.0,198.0,63.0,58.0,92.0,208.0,9.0,7.0,112.0,20.0,215.0,0.0,0.0,48.0,5.0,19.0,10.0,22.0,10.0,107.0,15.0,56.0,84.0,12.0,207.0,127.0,27.0,155.0,29.0,88.0,44.0,11.0,23.0,144.0,16.0,12.0,0.0,2.0,272.0,40.0,67.0,7.0,0.0,20.0,17.0,5.0,0.0,0.0,63.0,66.0,0.0,376.0,75.0,47.0,21.0,0.0,50.0,16.0,502.0,126.0,14.0,41.0,0.0,0.0,174.0,7.0,236.0,20.0,0.0,36.0,24.0,55.0,36.0,0.0,0.0,88.0,40.8610376965,2016-01-03,,2015-53,40.460064468493975,45.88813352442, +167,167,71.0,20.0,11.0,8.0,396.0,93.0,19.0,132.0,209.0,75.0,34.0,838.0,6.0,7.0,57.0,7.0,51.0,5.0,225.0,63.66666666666666,18.0,106.0,87.0,114.0,46.0,504.0,25.0,12.0,48.0,12.0,15.0,105.0,1398.0,124.0,3.0,16.0,41.0,47.0,151.0,184.0,11.0,654.0,133.0,181.0,0.0,56.0,9.0,42.0,971.0,67.0,109.0,322.0,58.0,42.0,46.0,33.0,89.0,403.0,221.0,200.0,6.0,113.0,3.0,191.0,12.0,171.0,56.0,101.0,376.0,0.0,18.0,97.0,11.0,206.0,52.0,63.0,237.0,0.0,2.0,21.0,504.0,57.0,344.0,26.0,15.0,126.0,45.0,113.0,509.0,207.0,2.0,239.0,0.0,63.0,1.0,46.0,231.8,5.0,0.0,551.0,5.0,274.0,20.0,36.0,80.0,702.0,763.0,48.0,118.0,4.0,13.0,175.0,44.0,625.0,160.0,0.0,617.0,48.0,49.0,1125.0,113.0,534.0,41.0,281.0,634.0,6.0,207.0,0.0,0.0,15.0,433.0,0.0,8.0,0.0,164.0,71.0,25.0,571.0,8.0,313.0,34.0,86.0,66.0,33.0,444.0,32.0,172.0,1052.0,0.0,257.0,1120.0,329.0,104.0,113.0,385.0,6.0,78.0,0.0,65.0,312.0,31.0,84.0,1365.0,30.0,0.0,434.0,27.0,15.0,257.0,130.0,96.0,242.0,14.0,174.0,0.0,0.0,5.333333333333334,43.0,52.0,242.0,160.0,563.0,693.0,38.0,130.0,13.0,37.0,0.0,233.0,56.0,577.0,33.0,189.0,468.0,100.0,38.0,14.0,41.0,45.0,34.0,0.0,386.0,44.0,62.0,31.0,34.0,0.0,198.0,163.0,0.0,36.0,21.0,22.0,73.0,47.0,74.0,279.0,71.0,74.0,183.0,265.0,16.0,4.0,165.0,22.0,443.0,0.0,0.0,98.0,27.0,34.0,10.0,18.0,11.0,175.0,44.0,135.0,155.0,9.0,333.0,211.0,37.0,236.0,47.0,119.0,54.0,16.0,16.0,279.0,17.0,11.0,0.0,6.0,449.0,72.0,81.0,21.0,0.0,24.0,26.0,3.0,0.0,0.0,76.0,108.0,0.0,616.0,84.0,73.0,29.0,0.0,88.0,41.0,699.0,157.0,20.0,84.0,0.0,0.0,266.0,7.0,371.0,24.0,0.0,67.0,19.0,70.0,57.0,0.0,0.0,83.0,82.23826589800001,2016-01-10,,2016-1,80.77580655613289,74.89090847802001, +168,168,47.0,15.0,7.0,7.0,290.0,79.0,15.0,94.0,173.0,107.0,25.0,894.0,3.0,10.0,75.0,5.0,44.0,4.0,222.0,75.33333333333333,18.0,93.0,106.0,123.0,52.0,413.0,24.0,7.0,41.0,22.0,17.0,100.0,701.0,120.0,2.0,19.0,36.0,24.0,166.0,232.0,6.0,215.0,118.0,177.0,0.0,60.0,16.0,35.0,1015.0,85.0,133.0,285.0,35.0,36.0,32.0,41.0,99.0,362.0,189.0,242.0,7.0,90.0,3.0,208.0,9.0,121.0,30.0,78.0,455.0,0.0,26.0,103.0,10.0,229.0,57.0,52.0,283.0,0.0,1.0,18.0,329.0,73.0,317.0,28.0,14.0,168.0,30.0,95.0,572.0,205.0,0.0,274.0,0.0,80.0,0.0,59.0,436.6,4.0,0.0,656.0,4.0,350.0,31.0,49.0,93.0,639.0,805.0,37.0,152.0,9.0,16.0,344.0,42.0,514.0,170.0,0.0,861.0,35.0,62.0,1104.0,120.0,575.0,49.0,287.0,674.0,0.0,218.0,0.0,0.0,16.0,468.0,0.0,9.0,0.0,169.0,70.0,16.0,566.0,5.0,363.0,41.0,64.0,76.0,39.0,406.0,14.0,186.0,1198.0,0.0,231.0,1142.0,281.0,168.0,94.0,352.0,9.0,45.0,0.0,69.0,87.0,27.0,128.0,1275.0,40.0,0.0,533.0,40.0,15.0,341.0,146.0,75.0,296.0,10.0,168.0,0.0,0.0,7.666666666666668,38.0,48.0,226.0,186.0,669.0,665.0,27.0,124.0,13.0,65.0,0.0,288.0,34.0,548.0,35.0,202.0,457.0,95.0,40.0,16.0,46.0,30.0,41.0,0.0,391.0,26.0,56.0,31.0,40.0,0.0,226.0,180.0,0.0,65.0,34.0,34.0,63.0,54.0,100.0,376.0,68.0,82.0,171.0,241.0,14.0,2.0,166.0,24.0,603.0,0.0,6.0,86.0,24.0,24.0,4.0,16.0,8.0,178.0,28.0,118.0,102.0,14.0,348.0,201.0,58.0,266.0,52.0,149.0,72.0,14.0,39.0,220.0,14.0,12.0,0.0,3.0,448.0,72.0,105.0,11.0,0.0,19.0,29.0,2.0,0.0,0.0,75.0,181.0,0.0,579.0,106.0,118.0,38.0,1.0,56.0,37.0,650.0,154.0,16.0,66.0,0.0,0.0,338.0,2.0,347.0,20.0,0.0,103.0,34.0,56.0,73.0,0.0,1.0,117.0,78.5381433583,2016-01-17,,2016-2,79.78816995943143,83.74912154036002, +169,169,57.0,15.0,3.0,6.0,199.0,123.0,9.0,108.0,174.0,93.0,23.0,828.0,8.0,8.0,65.0,5.0,60.0,4.0,186.0,87.0,17.0,96.0,103.0,175.0,71.0,406.0,44.0,4.0,45.0,20.0,12.0,86.0,706.0,80.0,0.0,13.0,47.0,57.0,132.0,234.0,8.0,207.0,133.0,180.0,0.0,57.0,11.0,26.0,1012.0,88.0,121.0,290.0,40.0,36.0,44.0,28.0,104.0,468.0,196.0,269.0,6.0,106.0,3.0,443.0,4.0,111.0,35.0,124.0,433.0,0.0,32.0,89.0,16.0,198.0,51.0,56.0,281.0,0.0,0.0,10.0,461.0,55.0,418.0,41.0,11.0,131.0,41.0,1351.0,594.0,202.0,2.0,256.0,0.0,68.0,0.0,67.0,641.4000000000002,9.0,0.0,675.0,4.0,455.0,37.0,37.0,95.0,639.0,1132.0,95.0,79.0,4.0,19.0,200.0,48.0,483.0,145.0,0.0,1001.0,66.0,51.0,1028.0,124.0,635.0,54.0,234.0,733.0,2.0,206.0,0.0,0.0,19.0,445.0,0.0,6.0,0.0,175.0,48.0,32.0,564.0,5.0,370.0,39.0,70.0,69.0,136.0,395.0,21.0,228.0,1142.0,0.0,205.0,1299.0,308.0,111.0,117.0,356.0,5.0,52.0,0.0,68.0,53.0,15.0,190.0,1379.0,27.0,0.0,541.0,53.0,11.0,851.0,159.0,88.0,271.0,16.0,171.0,0.0,0.0,10.0,41.0,31.0,247.0,229.0,964.0,755.0,31.0,146.0,6.0,41.0,0.0,244.0,72.0,523.0,65.0,164.0,471.0,119.0,40.0,15.0,49.0,131.0,44.0,0.0,511.0,38.0,50.0,56.0,43.0,0.0,230.0,166.0,0.0,42.0,33.0,39.0,57.0,40.0,88.0,378.0,79.0,141.0,194.0,217.0,21.0,3.0,184.0,29.0,601.0,0.0,2.0,66.0,17.0,53.0,16.0,17.0,23.0,150.0,29.0,141.0,138.0,8.0,474.0,225.0,34.0,231.0,36.0,162.0,66.0,16.0,24.0,182.0,13.0,11.0,0.0,3.0,401.0,62.0,116.0,13.0,0.0,37.0,40.0,1.0,0.0,0.0,76.0,151.0,0.0,604.0,61.0,139.0,40.0,0.0,54.0,29.0,803.0,120.0,14.0,103.0,19.0,78.0,280.0,5.0,339.0,23.0,0.0,73.0,33.0,93.0,52.0,11.0,13.0,119.0,104.59303426860001,2016-01-24,,2016-3,104.11744830559907,115.79200567966001, +170,170,62.0,12.0,5.0,4.0,236.0,97.0,13.0,104.0,160.0,93.0,19.0,687.0,4.0,13.0,66.0,9.0,37.0,5.0,205.0,60.0,19.0,89.0,68.0,157.0,50.0,352.0,48.0,4.0,40.0,20.0,5.0,94.0,442.0,92.0,5.0,21.0,57.0,45.0,119.0,265.0,13.0,205.0,114.0,232.0,0.0,44.0,15.0,43.0,990.0,91.0,69.0,269.0,42.0,38.0,40.0,46.0,94.0,417.0,247.0,239.0,9.0,100.0,2.0,500.0,9.0,112.0,38.0,114.0,346.0,0.0,26.0,91.0,10.0,284.0,44.0,78.0,230.0,0.0,4.0,20.0,306.0,66.0,349.0,28.0,10.0,147.0,53.0,216.0,486.0,183.0,1.0,264.0,0.0,72.0,2.0,67.0,846.2,6.0,0.0,591.0,7.0,559.0,32.0,28.0,94.0,545.0,1471.0,76.0,70.0,8.0,14.0,174.0,52.0,452.0,152.0,0.0,1037.0,67.0,36.0,1216.0,127.0,572.0,72.0,252.0,645.0,3.0,213.0,0.0,0.0,8.0,429.0,0.0,9.0,0.0,151.0,45.0,31.0,512.0,11.0,332.0,26.0,76.0,56.0,162.0,403.0,19.0,187.0,1098.0,0.0,189.0,1348.0,297.0,146.0,106.0,329.0,14.0,58.0,0.0,86.0,50.0,32.0,104.0,1219.0,27.0,0.0,1506.0,45.0,14.0,684.0,158.0,88.0,332.0,13.0,121.0,0.0,0.0,10.0,38.0,44.0,223.0,144.0,1026.0,654.0,33.0,141.0,16.0,73.0,0.0,258.0,71.0,470.0,68.0,173.0,315.0,83.0,44.0,12.0,57.0,50.0,47.0,0.0,361.0,50.0,45.0,46.0,34.0,0.0,197.0,151.0,0.0,37.0,33.0,36.0,67.0,52.0,98.0,413.0,87.0,94.0,219.0,182.0,11.0,4.0,159.0,26.0,586.0,0.0,2.0,95.0,16.0,68.0,9.0,23.0,21.0,147.0,38.0,105.0,110.0,10.0,489.0,234.0,32.0,325.0,36.0,116.0,57.0,11.0,22.0,178.0,21.0,10.0,0.0,5.0,345.0,80.0,106.0,10.0,0.0,21.0,27.0,2.0,0.0,0.0,59.0,222.0,0.0,614.0,113.0,62.0,27.0,0.0,54.0,24.0,786.0,119.0,7.0,56.0,54.0,241.0,249.0,6.0,359.0,30.0,0.0,85.0,38.0,68.0,40.0,23.0,408.0,94.0,120.63448606290001,2016-01-31,,2016-4,120.70734420408783,114.29415011514003, +171,171,80.0,9.0,3.0,7.0,197.0,109.0,13.0,83.0,141.0,103.0,21.0,587.0,3.0,15.0,36.0,8.0,35.0,5.0,221.0,47.0,12.0,86.0,89.0,110.0,50.0,233.0,73.0,8.0,43.0,19.0,9.0,98.0,395.0,72.0,4.0,17.0,52.0,23.0,108.0,208.0,4.0,133.0,80.0,281.0,0.0,55.0,8.0,44.0,965.0,75.0,83.0,254.0,61.0,32.0,27.0,33.0,85.0,402.0,225.0,147.0,8.0,84.0,6.0,489.0,4.0,161.0,40.0,104.0,295.0,0.0,38.0,87.0,12.0,301.0,45.0,74.0,208.0,0.0,1.0,14.0,280.0,73.0,302.0,22.0,14.0,115.0,22.0,161.0,516.0,172.0,3.0,205.0,0.0,110.0,2.0,72.0,1051.0,4.0,0.0,549.0,9.0,597.0,20.0,29.0,90.0,574.0,1351.0,71.0,60.0,5.0,19.0,188.0,50.0,368.0,130.0,0.0,869.0,54.0,79.0,1100.0,129.0,623.0,57.0,265.0,634.0,1.0,158.0,0.0,0.0,10.0,368.0,0.0,7.0,0.0,147.0,54.0,26.0,535.0,10.0,381.0,42.0,61.0,51.0,149.0,389.0,15.0,182.0,1058.0,0.0,182.0,1449.0,251.0,116.0,115.0,283.0,15.0,62.0,1.0,88.0,112.0,28.0,121.0,1347.0,37.0,0.0,538.0,32.0,13.0,934.0,165.0,102.0,278.0,11.0,132.0,0.0,0.0,6.0,38.0,45.0,218.0,154.0,824.0,527.0,26.0,109.0,5.0,43.0,0.0,140.0,18.0,462.0,95.0,163.0,382.0,47.0,37.0,16.0,48.0,36.0,52.0,0.0,345.0,48.0,42.0,37.0,21.0,0.0,153.0,122.0,0.0,22.0,39.0,46.0,42.0,54.0,92.0,396.0,74.0,118.0,178.0,227.0,15.0,1.0,116.0,17.0,486.0,0.0,3.0,73.0,29.0,58.0,4.0,13.0,13.0,131.0,39.0,99.0,81.0,11.0,584.0,254.0,39.0,316.0,28.0,131.0,39.0,18.0,12.0,302.0,8.0,17.0,0.0,3.0,303.0,77.0,84.0,9.0,0.0,22.0,18.0,2.0,0.0,0.0,76.0,154.0,0.0,658.0,80.0,75.0,28.0,1.0,31.0,28.0,733.0,124.0,13.0,78.0,48.0,211.0,316.0,1.0,384.0,18.0,0.0,87.0,21.0,65.0,64.0,18.0,9922.0,84.0,120.150015877,2016-02-07,,2016-5,120.6021428197713,93.44964098144001, +172,172,70.0,17.0,4.0,4.0,177.0,81.0,13.0,83.0,157.0,82.0,14.0,581.0,1.0,13.0,36.0,8.0,44.0,4.0,226.0,34.0,22.0,76.0,83.0,86.0,26.0,258.0,34.0,3.0,37.0,23.0,14.0,75.0,436.0,63.0,4.0,9.0,67.0,27.0,134.0,237.0,14.0,191.0,88.0,233.0,0.0,51.0,18.0,26.0,874.0,87.0,77.0,254.0,48.0,36.0,21.0,24.0,80.0,332.0,193.0,180.0,7.0,118.0,2.0,314.0,9.0,129.0,54.0,99.0,305.0,0.0,34.0,93.0,12.0,236.0,36.0,70.0,197.0,0.0,3.0,22.0,246.0,87.0,329.0,24.0,7.0,109.0,19.0,64.0,482.0,224.0,4.0,245.0,0.0,111.0,0.0,48.0,470.0,8.0,0.0,496.0,7.0,367.0,13.0,29.0,54.0,551.0,1504.0,95.0,53.0,6.0,21.0,163.0,48.0,362.0,97.0,0.0,758.0,45.0,98.0,965.0,127.0,649.0,76.0,266.0,678.0,7.0,187.0,0.0,0.0,7.0,358.0,0.0,12.0,0.0,166.0,51.0,26.0,425.0,16.0,288.0,60.0,54.0,65.0,69.0,458.0,15.0,177.0,968.0,0.0,149.0,1310.0,268.0,113.0,115.0,407.0,16.0,65.0,0.0,66.0,53.0,14.0,100.0,1426.0,19.0,0.0,424.0,31.0,11.0,692.0,139.0,166.0,276.0,13.0,121.0,0.0,0.0,6.0,37.0,47.0,245.0,141.0,729.0,559.0,20.0,100.0,24.0,71.0,0.0,181.0,23.0,422.0,60.0,116.0,327.0,52.0,36.0,24.0,81.0,57.0,37.0,0.0,303.0,40.0,32.0,42.0,22.0,0.0,136.0,145.0,0.0,25.0,24.0,36.0,32.0,45.0,82.0,312.0,71.0,102.0,194.0,189.0,15.0,2.0,141.0,22.0,414.0,0.0,0.0,92.0,16.0,41.0,8.0,16.0,16.0,220.0,25.0,98.0,106.0,17.0,468.0,215.0,24.0,221.0,43.0,150.0,45.0,12.0,24.0,201.0,17.0,9.0,0.0,0.0,327.0,50.0,76.0,11.0,0.0,14.0,15.0,4.0,0.0,0.0,57.0,122.0,0.0,614.0,97.0,63.0,24.0,1.0,20.0,20.0,710.0,126.0,12.0,83.0,31.0,70.0,297.0,6.0,363.0,26.0,0.0,83.0,29.0,40.0,52.0,20.0,3338.0,130.0,118.41889170290001,2016-02-14,,2016-6,119.00047926441651,94.72354858788002, +173,173,39.0,15.0,5.0,5.0,228.0,105.0,26.0,92.0,138.0,95.0,22.0,720.0,3.0,10.0,51.0,4.0,44.0,9.0,222.0,55.0,12.0,80.0,77.0,107.0,66.0,314.0,42.0,6.0,42.0,18.0,10.0,99.0,448.0,65.0,1.0,22.0,40.0,37.0,129.0,235.0,5.0,211.0,90.0,201.0,0.0,65.0,14.0,38.0,850.0,70.0,83.0,276.0,58.0,46.0,27.0,33.0,96.0,394.0,217.0,145.0,9.0,86.0,2.0,275.0,4.0,130.0,57.0,114.0,332.0,95.0,26.0,82.0,12.0,242.0,50.0,66.0,212.0,0.0,3.0,29.0,288.0,79.0,335.0,24.0,8.0,115.0,22.0,83.0,481.0,216.0,2.0,336.0,0.0,65.0,0.0,83.0,419.0,7.0,0.0,581.0,6.0,353.0,19.0,51.0,85.0,607.0,1487.0,75.0,61.0,10.0,14.0,185.0,53.0,460.0,109.0,0.0,959.0,57.0,34.0,1202.0,120.0,560.0,67.0,265.0,707.0,5.0,226.0,0.0,0.0,6.0,388.0,0.0,8.0,0.0,170.0,61.0,59.0,542.0,8.0,351.0,45.0,63.0,71.0,64.0,429.0,28.0,159.0,1070.0,0.0,166.0,1491.0,279.0,146.0,103.0,378.0,8.0,84.0,0.0,82.0,39.0,25.0,126.0,1372.0,32.0,0.0,451.0,28.0,5.0,578.0,153.0,137.0,413.0,34.0,144.0,0.0,0.0,7.0,33.0,48.0,533.0,112.0,670.0,528.0,29.0,130.0,24.0,48.0,0.0,178.0,40.0,479.0,51.0,148.0,350.0,71.0,40.0,12.0,95.0,43.0,65.0,0.0,332.0,35.0,49.0,62.0,29.0,0.0,162.0,183.0,0.0,29.0,44.0,31.0,64.0,43.0,106.0,354.0,78.0,106.0,148.0,196.0,21.0,4.0,140.0,31.0,469.0,0.0,2.0,95.0,22.0,33.0,8.0,10.0,17.0,200.0,32.0,103.0,116.0,11.0,417.0,213.0,45.0,245.0,21.0,118.0,45.0,24.0,28.0,187.0,10.0,15.0,0.0,4.0,336.0,63.0,80.0,26.0,0.0,28.0,19.0,3.0,0.0,0.0,84.0,208.0,0.0,670.0,111.0,77.0,19.0,0.0,62.0,30.0,783.0,110.0,18.0,78.0,20.0,68.0,296.0,2.0,328.0,26.0,0.0,116.0,48.0,75.0,56.0,2.0,2923.0,139.0,147.34687395219999,2016-02-21,,2016-7,147.5347288372157,127.02270259587999, +174,174,87.0,17.0,4.0,7.0,215.0,81.0,12.0,155.0,141.0,101.0,23.0,718.0,5.0,15.0,60.0,4.0,51.0,10.0,187.0,91.0,14.0,60.0,61.0,117.0,64.0,351.0,50.0,4.0,44.0,11.0,13.0,98.0,411.0,81.0,3.0,12.0,49.0,38.0,125.0,215.0,9.0,147.0,87.0,179.0,0.0,57.0,16.0,42.0,979.0,80.0,107.0,273.0,54.0,46.0,25.0,43.0,104.0,364.0,208.0,145.0,6.0,95.0,1.0,221.0,8.0,124.0,34.0,129.0,351.0,6.0,25.0,101.0,6.0,207.0,33.0,82.0,244.0,0.0,3.0,22.0,298.0,67.0,366.0,39.0,6.0,86.0,19.0,125.0,497.0,228.0,3.0,240.0,0.0,54.0,0.0,41.0,580.0,6.0,0.0,528.0,8.0,365.0,18.0,34.0,89.0,568.0,1400.0,59.0,52.0,2.0,22.0,162.0,53.0,482.0,148.0,0.0,751.0,50.0,42.0,1171.0,117.0,584.0,38.0,284.0,613.0,0.0,202.0,0.0,0.0,11.0,335.0,0.0,12.0,0.0,143.0,59.0,36.0,490.0,10.0,332.0,43.0,77.0,76.0,61.0,439.0,22.0,167.0,1024.0,0.0,206.0,1473.0,212.0,141.0,101.0,379.0,9.0,70.0,0.0,67.0,37.0,17.0,82.0,1469.0,36.0,0.0,557.0,40.0,7.0,447.0,151.0,174.0,215.0,13.0,117.0,0.0,0.0,6.0,31.0,56.0,204.0,169.0,623.0,559.0,26.0,105.0,16.0,37.0,0.0,132.0,35.0,423.0,27.0,100.0,337.0,116.0,41.0,13.0,66.0,26.0,45.0,0.0,336.0,46.0,44.0,51.0,28.0,0.0,185.0,192.0,0.0,25.0,40.0,33.0,66.0,54.0,91.0,383.0,71.0,76.0,144.0,190.0,12.0,2.0,157.0,35.0,412.0,0.0,1.0,82.0,25.0,33.0,13.0,13.0,7.0,162.0,42.0,84.0,96.0,11.0,454.0,249.0,24.0,203.0,39.0,110.0,39.0,7.0,30.0,170.0,17.0,16.0,0.0,1.0,350.0,38.0,88.0,9.0,0.0,25.0,22.0,2.0,0.0,0.0,64.0,128.0,0.0,577.0,109.0,110.0,21.0,2.0,49.0,29.0,708.0,131.0,18.0,92.0,32.0,92.0,290.0,4.0,327.0,28.0,0.0,90.0,31.0,62.0,65.0,1.0,3728.0,76.0,118.41889170290001,2016-02-28,,2016-8,118.95942630715328,82.85602596274, +175,175,68.0,14.0,2.0,1.0,189.0,88.0,20.0,107.0,174.0,89.0,29.0,700.0,7.0,11.0,47.0,3.0,44.0,7.0,211.0,56.0,16.0,90.0,73.0,106.0,50.0,318.0,35.0,5.0,43.0,12.0,8.0,101.0,415.0,88.0,1.0,11.0,63.0,27.0,150.0,208.0,5.0,164.0,99.0,204.0,0.0,70.0,10.0,31.0,943.0,85.0,86.0,262.0,60.0,30.0,29.0,26.0,75.0,444.0,212.0,195.0,5.0,83.0,2.0,183.0,9.0,124.0,36.0,100.0,325.0,19.0,25.0,96.0,10.0,213.0,34.0,79.0,197.0,0.0,4.0,18.0,286.0,65.0,408.0,34.0,10.0,91.0,16.0,66.0,505.0,166.0,1.0,197.0,0.0,52.0,0.0,28.0,457.0,11.0,0.0,593.0,6.0,278.0,23.0,39.0,84.0,601.0,1363.0,78.0,61.0,7.0,17.0,147.0,37.0,468.0,135.0,0.0,943.0,55.0,34.0,1112.0,117.0,626.0,62.0,262.0,1027.0,2.0,170.0,0.0,0.0,12.0,440.0,0.0,3.0,0.0,177.0,57.0,22.0,494.0,10.0,347.0,30.0,70.0,87.0,48.0,396.0,18.0,186.0,947.0,0.0,214.0,1451.0,262.0,126.0,118.0,405.0,14.0,43.0,0.0,79.0,32.0,18.0,98.0,1395.0,26.0,0.0,432.0,16.0,6.0,478.0,154.0,117.0,251.0,13.0,138.0,0.0,0.0,4.0,40.0,39.0,254.0,143.0,796.0,541.0,34.0,95.0,5.0,48.0,0.0,168.0,33.0,432.0,40.0,192.0,391.0,68.0,50.0,20.0,63.0,44.0,64.0,0.0,328.0,35.0,67.0,34.0,30.0,0.0,177.0,146.0,0.0,32.0,28.0,26.0,47.0,56.0,83.0,349.0,74.0,83.0,142.0,139.0,12.0,3.0,159.0,33.0,460.0,0.0,2.0,93.0,23.0,16.0,9.0,14.0,13.0,133.0,28.0,107.0,111.0,13.0,410.0,207.0,38.0,225.0,61.0,166.0,50.0,12.0,34.0,178.0,10.0,12.0,0.0,10.0,383.0,56.0,89.0,23.0,0.0,27.0,20.0,2.0,0.0,0.0,63.0,98.0,0.0,563.0,108.0,88.0,22.0,0.0,25.0,20.0,740.0,83.0,3.0,91.0,19.0,50.0,307.0,7.0,294.0,17.0,0.0,91.0,33.0,58.0,48.0,1.0,2799.0,73.0,130.1101898711,2016-03-06,,2016-9,127.3183130044417,80.89981128920002, +176,176,88.0,9.0,8.0,2.0,189.0,74.0,9.0,84.0,133.0,85.0,20.0,663.0,5.0,10.0,64.0,8.0,43.0,5.0,227.0,77.0,9.0,70.0,86.0,145.0,33.0,280.0,53.0,7.0,25.0,15.0,10.0,89.0,406.0,62.0,1.0,10.0,41.0,29.0,151.0,220.0,4.0,167.0,104.0,158.0,0.0,49.0,8.0,24.0,969.0,76.0,89.0,224.0,47.0,35.0,24.0,26.0,118.0,336.0,160.0,164.0,22.0,86.0,1.0,179.0,7.0,118.0,34.0,106.0,316.0,9.0,24.0,78.0,7.0,215.0,39.0,67.0,241.0,0.0,3.0,9.0,255.0,64.0,336.0,34.0,4.0,128.0,11.0,84.0,502.0,177.0,0.0,180.0,0.0,53.0,0.0,46.0,430.0,5.0,0.0,639.0,7.0,313.0,15.0,32.0,70.0,602.0,1153.0,56.0,59.0,3.0,8.0,153.0,42.0,476.0,121.0,0.0,775.0,65.0,33.0,1118.0,87.0,515.0,35.0,249.0,661.0,4.0,189.0,0.0,0.0,8.0,424.0,0.0,6.0,0.0,179.0,51.0,28.0,455.0,12.0,349.0,39.0,51.0,59.0,48.0,406.0,16.0,191.0,1217.0,0.0,209.0,1352.0,243.0,124.0,110.0,397.0,17.0,48.0,0.0,61.0,401.0,21.0,80.0,1289.0,18.0,0.0,577.0,20.0,5.0,493.0,166.0,94.0,237.0,14.0,106.0,0.0,20.0,2.0,18.0,49.0,220.0,137.0,691.0,558.0,19.0,112.0,9.0,45.0,0.0,165.0,23.0,493.0,39.0,150.0,346.0,60.0,42.0,10.0,42.0,47.0,59.0,0.0,391.0,32.0,88.0,45.0,20.0,0.0,170.0,208.0,0.0,39.0,37.0,18.0,44.0,30.0,58.0,338.0,69.0,74.0,149.0,143.0,13.0,3.0,136.0,26.0,423.0,19.0,2.0,59.0,10.0,81.0,5.0,10.0,14.0,114.0,56.0,97.0,107.0,12.0,357.0,231.0,22.0,222.0,50.0,167.0,44.0,14.0,30.0,188.0,6.0,9.0,0.0,8.0,395.0,42.0,67.0,17.0,0.0,24.0,26.0,5.0,0.0,0.0,55.0,60.0,0.0,597.0,96.0,69.0,19.0,0.0,43.0,27.0,742.0,97.0,6.0,88.0,21.0,41.0,245.0,1.0,345.0,18.0,0.0,90.0,38.0,76.0,50.0,0.0,2295.0,52.0,107.5809281941,2016-03-13,,2016-10,106.36276635271597,71.10381909664001, +177,177,97.0,12.0,9.0,0.0,177.0,69.0,8.0,84.0,148.0,77.0,27.0,1130.0,4.0,5.0,50.0,7.0,51.0,5.0,232.0,56.0,13.0,52.0,74.0,143.0,44.0,367.0,35.0,7.0,38.0,22.0,6.0,96.0,502.0,63.0,1.0,19.0,38.0,31.0,122.0,221.0,6.0,188.0,84.0,151.0,0.0,56.0,9.0,28.0,939.0,91.0,76.0,239.0,47.0,37.0,19.0,21.0,122.0,336.0,150.0,161.0,8.0,88.0,3.0,151.0,5.0,122.0,37.0,97.0,323.0,7.0,9.0,83.0,9.0,220.0,29.0,67.0,216.0,0.0,1.0,16.0,324.0,67.0,319.0,17.0,7.0,115.0,27.0,61.0,492.0,234.0,0.0,187.0,0.0,54.0,1.0,80.0,520.0,3.0,0.0,692.0,7.0,400.0,13.0,20.0,90.0,569.0,977.0,62.0,60.0,2.0,16.0,199.0,46.0,425.0,140.0,0.0,763.0,50.0,37.0,1267.0,105.0,528.0,32.0,276.0,579.0,2.0,196.0,0.0,0.0,9.0,389.0,0.0,7.0,0.0,165.0,79.0,22.0,556.0,27.0,323.0,44.0,49.0,76.0,41.0,409.0,20.0,175.0,1236.0,0.0,200.0,1202.0,242.0,117.0,115.0,394.0,9.0,62.0,0.0,54.0,77.0,19.0,80.0,1275.0,40.0,0.0,552.0,35.0,19.0,425.0,154.0,85.0,316.0,17.0,120.0,0.0,3.0,9.0,29.0,41.0,217.0,134.0,650.0,621.0,25.0,108.0,13.0,32.0,0.0,213.0,28.0,407.0,31.0,200.0,330.0,52.0,34.0,9.0,56.0,34.0,59.0,0.0,394.0,40.0,56.0,36.0,22.0,0.0,176.0,163.0,0.0,36.0,34.0,36.0,35.0,49.0,74.0,361.0,68.0,72.0,154.0,101.0,12.0,2.0,164.0,29.0,450.0,8.0,3.0,86.0,21.0,35.0,9.0,17.0,11.0,138.0,33.0,95.0,75.0,5.0,356.0,227.0,31.0,236.0,77.0,98.0,55.0,11.0,25.0,192.0,10.0,9.0,0.0,8.0,396.0,52.0,81.0,19.0,0.0,28.0,18.0,1.0,0.0,0.0,63.0,80.0,0.0,539.0,113.0,76.0,17.0,1.0,45.0,23.0,671.0,106.0,14.0,86.0,17.0,34.0,279.0,9.0,292.0,28.0,0.0,56.0,38.0,58.0,57.0,5.0,2082.0,73.0,69.3006622063,2016-03-20,,2016-11,68.56758371821039,67.97456171654, +178,178,64.0,11.0,5.0,2.0,162.0,58.0,10.0,74.0,141.0,75.0,23.0,715.0,5.0,9.0,41.0,5.0,55.0,5.0,191.0,37.0,12.0,52.0,89.0,100.0,45.0,299.0,31.0,3.0,53.0,10.0,5.0,112.0,383.0,62.0,2.0,14.0,41.0,32.0,193.0,236.0,4.0,127.0,63.0,165.0,0.0,52.0,9.0,34.0,867.0,76.0,93.0,232.0,58.0,40.0,24.0,27.0,103.0,313.0,155.0,142.0,7.0,82.0,17.0,152.0,6.0,116.0,53.0,114.0,265.0,5.0,12.0,82.0,20.0,173.0,43.0,60.0,189.0,0.0,5.0,16.0,250.0,46.0,324.0,25.0,9.0,93.0,26.0,60.0,484.0,191.0,1.0,200.0,0.0,40.0,2.0,46.0,356.0,3.0,0.0,595.0,5.0,257.0,10.0,19.0,72.0,657.0,782.0,43.0,41.0,10.0,14.0,158.0,46.0,418.0,109.0,0.0,730.0,54.0,31.0,852.0,108.0,434.0,42.0,231.0,544.0,1.0,142.0,0.0,0.0,9.0,362.0,0.0,9.0,0.0,153.0,46.0,60.0,390.0,8.0,249.0,35.0,74.0,74.0,35.0,303.0,16.0,127.0,954.0,0.0,160.0,922.0,207.0,74.0,115.0,335.0,12.0,63.0,0.0,76.0,35.0,30.0,76.0,1131.0,28.0,0.0,387.0,22.0,16.0,265.0,122.0,93.0,256.0,12.0,99.0,0.0,3.0,7.0,27.0,41.0,192.0,116.0,625.0,505.0,20.0,75.0,14.0,24.0,0.0,172.0,20.0,445.0,32.0,161.0,333.0,62.0,38.0,13.0,34.0,35.0,30.0,0.0,282.0,32.0,89.0,39.0,18.0,0.0,145.0,164.0,0.0,32.0,60.0,27.0,54.0,42.0,48.0,302.0,65.0,76.0,144.0,95.0,10.0,0.0,161.0,25.0,354.0,9.0,0.0,64.0,13.0,35.0,10.0,18.0,19.0,125.0,37.0,85.0,78.0,7.0,266.0,162.0,31.0,222.0,78.0,153.0,52.0,14.0,22.0,143.0,11.0,17.0,0.0,5.0,359.0,50.0,86.0,15.0,0.0,16.0,20.0,5.0,0.0,0.0,59.0,65.0,0.0,416.0,104.0,61.0,22.0,0.0,42.0,25.0,596.0,87.0,8.0,66.0,15.0,40.0,234.0,3.0,280.0,30.0,0.0,62.0,19.0,60.0,57.0,3.0,1354.0,59.0,45.7260171706,2016-03-27,,2016-12,47.24913802427605,54.880571261000014, +179,179,79.0,17.0,6.0,5.0,206.0,99.0,16.0,90.0,133.0,77.0,21.0,633.0,6.0,14.0,37.0,8.0,54.0,5.0,209.0,46.0,12.0,82.0,73.0,126.0,45.0,356.0,38.0,3.0,49.0,25.0,6.0,97.0,406.0,83.0,1.0,15.0,18.0,40.0,137.0,263.0,3.0,112.0,95.0,142.0,0.0,50.0,14.0,25.0,797.0,70.0,73.0,300.0,47.0,43.0,26.0,43.0,76.0,317.0,180.0,158.0,6.0,69.0,3.0,107.0,5.0,108.0,36.0,90.0,327.0,8.0,19.0,63.0,8.0,173.0,25.0,64.0,223.0,0.0,3.0,14.0,312.0,63.0,359.0,31.0,6.0,75.0,50.0,84.0,433.0,186.0,0.0,208.0,0.0,53.0,0.0,47.0,214.0,4.0,0.0,558.0,13.0,231.0,17.0,28.0,77.0,591.0,618.0,38.0,46.0,5.0,13.0,157.0,40.0,434.0,127.0,0.0,589.0,65.0,45.0,993.0,110.0,385.0,28.0,264.0,527.0,3.0,164.0,0.0,0.0,14.0,324.0,0.0,11.0,0.0,165.0,56.0,33.0,384.0,6.0,213.0,48.0,90.0,61.0,45.0,291.0,105.0,170.0,940.0,0.0,187.0,938.0,227.0,91.0,109.0,285.0,13.0,32.0,0.0,66.0,32.0,23.0,55.0,1205.0,31.0,0.0,372.0,25.0,10.0,301.0,141.0,85.0,162.0,16.0,147.0,0.0,2.0,7.0,33.0,42.0,190.0,145.0,495.0,581.0,16.0,116.0,7.0,28.0,0.0,198.0,32.0,457.0,21.0,170.0,305.0,74.0,20.0,17.0,38.0,32.0,30.0,0.0,304.0,46.0,240.0,33.0,32.0,0.0,155.0,161.0,0.0,29.0,30.0,24.0,60.0,56.0,59.0,238.0,74.0,78.0,148.0,108.0,7.0,2.0,175.0,25.0,355.0,5.0,0.0,84.0,15.0,44.0,6.0,15.0,8.0,112.0,46.0,102.0,76.0,7.0,306.0,185.0,32.0,235.0,72.0,137.0,38.0,11.0,22.0,138.0,11.0,19.0,0.0,7.0,375.0,54.0,78.0,16.0,0.0,44.0,32.0,1.0,0.0,0.0,41.0,59.0,0.0,379.0,96.0,69.0,14.0,0.0,40.0,29.0,547.0,111.0,12.0,88.0,18.0,33.0,220.0,5.0,326.0,18.0,0.0,68.0,22.0,43.0,42.0,66.0,1204.0,62.0,49.4551550712,2016-04-03,,2016-13,48.467215878970165,48.40108203842001, +180,180,74.0,23.0,4.0,6.0,198.0,89.0,9.0,90.0,156.0,101.0,21.0,723.0,9.0,15.0,41.0,19.0,65.0,9.0,201.0,45.0,51.0,88.0,78.0,153.0,53.0,354.0,29.0,5.0,45.0,24.0,14.0,102.0,470.0,98.0,14.0,21.0,20.0,59.0,172.0,232.0,11.0,170.0,69.0,151.0,0.0,82.0,14.0,29.0,834.0,49.0,72.0,272.0,65.0,39.0,32.0,29.0,96.0,301.0,156.0,199.0,6.0,90.0,2.0,95.0,14.0,129.0,45.0,111.0,354.0,6.0,20.0,122.0,14.0,176.0,51.0,65.0,257.0,0.0,0.0,18.0,310.0,70.0,449.0,14.0,21.0,72.0,41.0,64.0,484.0,202.0,0.0,259.0,0.0,47.0,0.0,59.0,155.0,4.0,0.0,580.0,14.0,319.0,18.0,45.0,93.0,550.0,582.0,44.0,62.0,4.0,19.0,147.0,52.0,456.0,149.0,0.0,706.0,91.0,57.0,1295.0,108.0,430.0,30.0,244.0,567.0,5.0,176.0,0.0,0.0,25.0,368.0,0.0,9.0,0.0,163.0,47.0,31.0,422.0,22.0,289.0,36.0,130.0,63.0,35.0,341.0,429.0,195.0,1049.0,0.0,188.0,956.0,215.0,97.0,105.0,308.0,9.0,49.0,0.0,80.0,30.0,21.0,86.0,1128.0,25.0,0.0,420.0,28.0,3.0,221.0,155.0,77.0,187.0,12.0,163.0,0.0,8.0,4.0,53.0,57.0,206.0,145.0,612.0,551.0,32.0,100.0,17.0,47.0,0.0,166.0,37.0,542.0,45.0,195.0,390.0,62.0,42.0,21.0,59.0,42.0,38.0,0.0,332.0,31.0,91.0,26.0,31.0,0.0,183.0,205.0,0.0,28.0,43.0,21.0,61.0,57.0,76.0,237.0,69.0,86.0,134.0,110.0,12.0,5.0,219.0,37.0,407.0,5.0,4.0,89.0,13.0,37.0,11.0,20.0,7.0,124.0,22.0,94.0,88.0,14.0,285.0,210.0,33.0,224.0,82.0,190.0,61.0,25.0,30.0,151.0,20.0,24.0,0.0,5.0,362.0,60.0,108.0,15.0,0.0,36.0,21.0,5.0,0.0,0.0,63.0,56.0,0.0,384.0,116.0,91.0,22.0,0.0,54.0,29.0,644.0,129.0,17.0,115.0,20.0,59.0,223.0,14.0,316.0,24.0,0.0,77.0,30.0,73.0,44.0,37.0,1069.0,84.0,45.967576441599995,2016-04-10,,2016-14,46.72046221111925,61.123500453599995, +181,181,80.0,15.0,7.0,1.0,152.0,80.0,26.0,78.0,155.0,72.0,22.0,682.0,15.0,15.0,43.0,10.0,76.0,13.0,212.0,41.0,35.0,74.0,77.0,114.0,51.0,304.0,58.0,5.0,74.0,14.0,8.0,106.0,376.0,69.0,10.0,19.0,40.0,42.0,155.0,293.0,13.0,140.0,108.0,139.0,0.0,60.0,23.0,29.0,898.0,91.0,72.0,270.0,76.0,45.0,26.0,31.0,76.0,244.0,166.0,165.0,7.0,98.0,3.0,117.0,13.0,104.0,66.0,98.0,287.0,5.0,15.0,83.0,22.0,191.0,44.0,70.0,224.0,0.0,7.0,24.0,254.0,69.0,382.0,23.0,15.0,110.0,29.0,53.0,507.0,182.0,0.0,210.0,0.0,48.0,1.0,32.0,570.0,6.0,0.0,556.0,12.0,401.0,14.0,40.0,82.0,582.0,414.0,48.0,48.0,17.0,7.0,151.0,45.0,439.0,128.0,0.0,850.0,59.0,57.0,1011.0,104.0,629.0,30.0,226.0,658.0,2.0,163.0,0.0,0.0,20.0,311.0,0.0,15.0,0.0,161.0,72.0,26.0,435.0,9.0,320.0,46.0,60.0,72.0,37.0,348.0,393.0,183.0,1200.0,0.0,217.0,776.0,190.0,112.0,94.0,257.0,12.0,74.0,1.0,69.0,44.0,27.0,85.0,1024.0,45.0,0.0,532.0,28.0,6.0,311.0,165.0,89.0,246.0,11.0,140.0,0.0,6.0,5.0,29.0,30.0,210.0,147.0,508.0,548.0,20.0,102.0,15.0,32.0,0.0,175.0,38.0,492.0,40.0,151.0,312.0,56.0,27.0,16.0,40.0,39.0,43.0,0.0,406.0,31.0,61.0,40.0,34.0,0.0,157.0,176.0,0.0,32.0,40.0,20.0,49.0,53.0,111.0,230.0,69.0,84.0,140.0,105.0,12.0,2.0,164.0,38.0,395.0,9.0,0.0,76.0,34.0,36.0,11.0,21.0,10.0,132.0,36.0,98.0,130.0,14.0,250.0,193.0,34.0,249.0,34.0,184.0,53.0,14.0,41.0,160.0,16.0,22.0,0.0,3.0,365.0,59.0,67.0,23.0,0.0,30.0,20.0,3.0,0.0,0.0,50.0,51.0,0.0,328.0,76.0,61.0,21.0,0.0,48.0,24.0,639.0,123.0,18.0,99.0,32.0,53.0,233.0,12.0,306.0,32.0,0.0,82.0,25.0,61.0,61.0,65.0,2080.0,72.0,39.2641726955,2016-04-17,,2016-15,40.559082843371215,39.26417269550001, +182,182,239.0,5.0,5.0,0.0,256.0,90.0,11.0,113.0,181.0,152.0,14.0,962.0,1.0,7.0,56.0,8.0,89.0,3.0,257.0,37.0,9.0,83.0,98.0,195.0,48.0,493.0,17.0,4.0,44.0,27.0,13.0,155.0,579.0,105.0,0.0,16.0,62.0,39.0,167.0,219.0,4.0,487.0,126.0,197.0,0.0,64.0,4.0,35.0,1414.0,92.0,111.0,448.0,84.0,31.0,41.0,73.0,96.0,1125.0,329.0,184.0,4.0,128.0,0.0,237.0,1.0,170.0,104.0,89.0,401.0,0.0,11.0,142.0,9.0,222.0,27.0,142.0,319.0,108.0,3.0,20.0,498.0,84.0,612.0,22.0,7.0,84.0,29.0,161.0,680.0,240.0,0.0,362.0,46.0,103.0,112.0,50.0,71.0,2.0,36.0,777.0,7.0,461.0,17.0,39.0,65.0,1527.0,1534.0,508.0,125.0,9.0,100.0,167.0,50.0,634.0,117.0,4.0,1001.0,49.0,60.0,2370.0,190.0,870.0,81.0,343.0,954.0,1.0,183.0,326.0,77.0,24.0,574.0,283.0,16.0,153.0,239.0,137.0,21.0,697.0,12.0,409.0,47.0,65.0,100.0,23.0,1046.0,717.0,257.0,2296.0,1.0,429.0,1952.0,579.0,156.0,124.0,590.0,22.0,128.0,0.0,133.0,29.0,34.0,115.0,2283.0,39.0,31.0,856.0,22.0,20.0,327.0,204.0,144.0,540.0,9.0,189.0,17.0,1.0,0.0,64.0,85.0,460.0,155.0,2125.0,903.0,26.0,133.0,24.0,95.0,0.0,250.0,36.0,765.0,87.0,126.0,488.0,53.0,33.0,32.0,59.0,57.0,48.0,813.0,519.0,135.0,67.0,36.0,41.0,43.0,171.0,186.0,33.0,26.0,50.0,34.0,57.0,53.0,200.0,566.0,130.0,67.0,232.0,197.0,5.0,0.0,230.0,28.0,632.0,9.0,16.0,153.0,31.0,39.0,7.0,11.0,10.0,155.0,87.0,116.0,132.0,8.0,692.0,372.0,37.0,368.0,35.0,244.0,97.0,9.0,18.0,221.0,20.0,14.0,25.0,2.0,559.0,55.0,145.0,10.0,74.0,19.0,16.0,0.0,0.0,179.0,93.0,76.0,3.0,1139.0,191.0,89.0,15.0,0.0,63.0,35.0,1046.0,137.0,18.0,84.0,22.0,74.0,685.0,6.0,675.0,36.0,0.0,104.0,37.0,82.0,52.0,73.0,694.0,393.0,25.2412644191,2016-10-23,,2016-42,23.894137016044454,26.66701153528, +183,183,249.0,16.0,4.0,0.0,304.0,86.0,7.0,120.0,170.0,140.0,20.0,1100.0,0.0,6.0,58.0,2.0,81.0,5.0,291.0,53.0,11.0,110.0,95.0,217.0,60.0,604.0,30.0,2.0,43.0,25.0,18.0,146.0,780.0,121.0,2.0,12.0,62.0,58.0,147.0,339.0,4.0,385.0,123.0,197.0,0.0,76.0,5.0,31.0,1511.0,112.0,146.0,428.0,77.0,21.0,49.0,47.0,98.0,1240.0,294.0,213.0,4.0,111.0,1.0,201.0,9.0,145.0,106.0,85.0,390.0,1.0,18.0,162.0,19.0,308.0,22.0,161.0,355.0,128.0,5.0,18.0,527.0,74.0,663.0,18.0,9.0,90.0,34.0,137.0,723.0,256.0,0.0,426.0,76.0,98.0,114.0,60.0,58.0,1.0,42.0,773.0,6.0,417.0,10.0,41.0,76.0,1506.0,1436.0,698.0,82.0,4.0,79.0,181.0,53.0,677.0,152.0,7.0,1034.0,65.0,70.0,3343.0,176.0,1494.0,86.0,344.0,1120.0,1.0,147.0,437.0,84.0,26.0,680.0,300.0,12.0,166.0,282.0,189.0,25.0,719.0,6.0,420.0,57.0,67.0,97.0,34.0,1094.0,685.0,451.0,2231.0,0.0,390.0,2185.0,604.0,175.0,135.0,605.0,8.0,116.0,0.0,127.0,35.0,45.0,142.0,2449.0,33.0,34.0,1404.0,36.0,20.0,354.0,243.0,119.0,586.0,7.0,169.0,22.0,1.0,1.0,48.0,92.0,493.0,195.0,2043.0,865.0,18.0,104.0,3.0,65.0,0.0,265.0,60.0,899.0,54.0,213.0,462.0,64.0,31.0,5.0,49.0,33.0,45.0,914.0,577.0,105.0,104.0,22.0,41.0,126.0,162.0,216.0,25.0,29.0,54.0,64.0,40.0,76.0,244.0,616.0,120.0,85.0,222.0,251.0,5.0,0.0,232.0,29.0,857.0,8.0,18.0,165.0,23.0,38.0,16.0,16.0,6.0,176.0,72.0,126.0,762.0,8.0,763.0,318.0,37.0,363.0,41.0,180.0,136.0,15.0,18.0,270.0,6.0,14.0,22.0,2.0,666.0,70.0,138.0,6.0,85.0,33.0,20.0,0.0,0.0,155.0,73.0,72.0,8.0,1027.0,150.0,102.0,20.0,0.0,128.0,51.0,1338.0,159.0,19.0,145.0,17.0,71.0,635.0,15.0,663.0,31.0,0.0,93.0,40.0,115.0,53.0,77.0,751.0,414.0,28.222325519600002,2016-10-30,,2016-43,28.695079888091726,37.51586041568, +184,184,240.0,9.0,10.0,3.0,287.0,74.0,15.0,114.0,155.0,151.0,38.0,1008.0,1.0,9.0,43.0,3.0,81.0,3.0,301.0,62.0,13.0,84.0,114.0,214.0,92.0,574.0,37.0,8.0,58.0,37.0,7.0,129.0,641.0,108.0,0.0,14.0,41.0,53.0,184.0,294.0,2.0,401.0,161.0,207.0,26.0,73.0,12.0,26.0,1397.0,99.0,124.0,465.0,53.0,32.0,92.0,48.0,102.0,1126.0,274.0,207.0,9.0,127.0,2.0,199.0,4.0,160.0,68.0,72.0,475.0,0.0,21.0,138.0,22.0,229.0,43.0,122.0,456.0,128.0,2.0,26.0,537.0,70.0,667.0,31.0,6.0,107.0,34.0,151.0,679.0,234.0,0.0,371.0,68.0,109.0,146.0,45.0,91.0,2.0,63.0,1456.0,17.0,432.0,14.0,27.0,91.0,1343.0,1919.0,742.0,65.0,4.0,137.0,179.0,48.0,744.0,119.0,7.0,1167.0,60.0,56.0,2395.0,201.0,1094.0,71.0,417.0,1014.0,0.0,158.0,414.0,82.0,27.0,624.0,300.0,6.0,163.0,275.0,180.0,32.0,705.0,4.0,391.0,64.0,71.0,105.0,67.0,1024.0,833.0,296.0,2299.0,1.0,478.0,1878.0,621.0,145.0,133.0,629.0,16.0,73.0,0.0,109.0,27.0,23.0,130.0,2367.0,37.0,29.0,674.0,26.0,17.0,278.0,224.0,145.0,516.0,10.0,158.0,25.0,6.0,3.0,59.0,107.0,407.0,177.0,2367.0,862.0,39.0,98.0,16.0,86.0,0.0,251.0,73.0,958.0,56.0,255.0,551.0,68.0,25.0,6.0,52.0,33.0,49.0,818.0,722.0,134.0,89.0,33.0,87.0,21.0,226.0,231.0,66.0,31.0,34.0,20.0,58.0,61.0,199.0,690.0,140.0,99.0,217.0,308.0,7.0,0.0,211.0,25.0,667.0,4.0,24.0,156.0,17.0,31.0,20.0,15.0,10.0,190.0,58.0,115.0,190.0,5.0,877.0,356.0,45.0,369.0,43.0,199.0,122.0,8.0,19.0,271.0,11.0,12.0,32.0,0.0,648.0,53.0,128.0,22.0,75.0,31.0,24.0,0.0,0.0,184.0,84.0,77.0,10.0,950.0,172.0,120.0,33.0,0.0,108.0,41.0,1079.0,160.0,24.0,154.0,41.0,93.0,720.0,7.0,716.0,38.0,0.0,94.0,36.0,105.0,36.0,75.0,744.0,505.0,31.7709946704,2016-11-06,,2016-44,31.74184066488786,31.061260840240006, +185,185,169.0,5.0,1.0,15.0,311.0,110.0,10.0,112.0,152.0,148.0,21.0,840.0,2.0,6.0,55.0,2.0,76.0,4.0,319.0,71.0,14.0,83.0,95.0,172.0,67.0,566.0,26.0,4.0,53.0,26.0,6.0,123.0,594.0,70.0,4.0,23.0,63.0,23.0,144.0,223.0,4.0,794.0,157.0,228.0,25.0,95.0,4.0,26.0,1335.0,146.0,154.0,465.0,73.0,24.0,36.0,54.0,113.0,1159.0,328.0,212.0,8.0,137.0,0.0,180.0,5.0,143.0,65.0,69.0,426.0,0.0,23.0,148.0,11.0,236.0,40.0,120.0,355.0,99.0,2.0,30.0,497.0,76.0,619.0,28.0,5.0,118.0,40.0,147.0,669.0,287.0,0.0,368.0,63.0,87.0,99.0,54.0,63.0,0.0,38.0,866.0,5.0,332.0,19.0,35.0,77.0,1393.0,1407.0,549.0,90.0,44.0,94.0,138.0,57.0,639.0,108.0,6.0,965.0,53.0,48.0,2267.0,188.0,852.0,110.0,316.0,968.0,0.0,170.0,369.0,75.0,16.0,635.0,285.0,6.0,140.0,283.0,112.0,22.0,724.0,9.0,428.0,42.0,62.0,95.0,29.0,1160.0,656.0,249.0,2422.0,1.0,373.0,2005.0,650.0,158.0,120.0,601.0,5.0,79.0,0.0,111.0,14.0,36.0,94.0,2348.0,28.0,33.0,747.0,32.0,10.0,372.0,253.0,146.0,523.0,5.0,147.0,27.0,2.0,0.0,47.0,99.0,462.0,123.0,2723.0,793.0,29.0,133.0,11.0,54.0,0.0,247.0,65.0,843.0,80.0,225.0,668.0,44.0,51.0,12.0,47.0,47.0,64.0,829.0,577.0,149.0,91.0,27.0,37.0,16.0,219.0,287.0,62.0,18.0,29.0,25.0,61.0,47.0,242.0,718.0,115.0,84.0,249.0,346.0,9.0,0.0,181.0,22.0,661.0,1.0,10.0,152.0,20.0,41.0,8.0,16.0,4.0,170.0,42.0,95.0,154.0,3.0,811.0,322.0,42.0,327.0,34.0,177.0,86.0,16.0,16.0,243.0,17.0,7.0,32.0,0.0,612.0,83.0,127.0,4.0,68.0,24.0,20.0,0.0,0.0,159.0,81.0,126.0,7.0,988.0,155.0,94.0,17.0,0.0,64.0,67.0,1103.0,176.0,12.0,115.0,34.0,43.0,636.0,20.0,651.0,26.0,0.0,111.0,43.0,81.0,51.0,65.0,651.0,452.0,36.0354834505,2016-11-13,,2016-45,36.258950890041405,70.12101659268001, +186,186,226.0,2.0,3.0,3.0,300.0,90.0,20.0,110.0,188.0,163.0,26.0,1067.0,1.0,12.0,55.0,3.0,70.0,7.0,303.0,68.0,11.0,64.0,147.0,249.0,70.0,536.0,29.0,2.0,46.0,21.0,4.0,145.0,575.0,74.0,3.0,42.0,63.0,32.0,195.0,440.0,5.0,600.0,168.0,231.0,17.0,100.0,9.0,33.0,1345.0,91.0,152.0,404.0,89.0,19.0,49.0,46.0,118.0,1235.0,302.0,186.0,5.0,110.0,1.0,226.0,5.0,150.0,79.0,105.0,477.0,0.0,26.0,130.0,17.0,323.0,35.0,144.0,385.0,143.0,0.0,30.0,476.0,104.0,699.0,36.0,9.0,144.0,17.0,142.0,730.0,286.0,0.0,394.0,45.0,138.0,126.0,39.0,77.0,6.0,24.0,753.0,14.0,425.0,25.0,40.0,102.0,1361.0,1538.0,305.0,114.0,33.0,109.0,166.0,43.0,622.0,128.0,5.0,1067.0,62.0,69.0,2234.0,164.0,795.0,116.0,325.0,1222.0,0.0,180.0,340.0,56.0,33.0,629.0,289.0,16.0,159.0,271.0,124.0,20.0,698.0,5.0,517.0,33.0,73.0,128.0,44.0,1117.0,599.0,282.0,2495.0,1.0,463.0,2169.0,721.0,176.0,140.0,536.0,15.0,78.0,0.0,111.0,13.0,58.0,154.0,2397.0,44.0,37.0,1265.0,39.0,12.0,361.0,248.0,150.0,530.0,8.0,166.0,15.0,1.0,2.0,59.0,91.0,529.0,113.0,3296.0,894.0,25.0,93.0,11.0,73.0,0.0,294.0,39.0,819.0,106.0,215.0,633.0,63.0,134.0,4.0,59.0,39.0,59.0,733.0,512.0,127.0,87.0,32.0,47.0,29.0,187.0,251.0,43.0,21.0,41.0,36.0,60.0,59.0,235.0,901.0,119.0,94.0,207.0,495.0,14.0,0.0,191.0,30.0,921.0,4.0,22.0,151.0,25.0,34.0,12.0,14.0,8.0,181.0,41.0,94.0,140.0,7.0,848.0,284.0,42.0,322.0,33.0,158.0,130.0,13.0,12.0,236.0,13.0,13.0,27.0,2.0,676.0,74.0,148.0,15.0,86.0,11.0,11.0,1.0,0.0,154.0,127.0,84.0,8.0,1044.0,157.0,113.0,29.0,0.0,32.0,44.0,1206.0,186.0,25.0,116.0,37.0,94.0,568.0,11.0,666.0,18.0,0.0,84.0,44.0,92.0,64.0,87.0,943.0,485.0,54.436581382700005,2016-11-20,,2016-46,54.384844046049665,72.63400259958, +187,187,235.0,8.0,5.0,6.0,247.0,84.0,7.0,134.0,194.0,150.0,31.0,1164.0,5.0,5.0,69.0,3.0,55.0,7.0,320.0,49.0,10.0,95.0,258.0,251.0,96.0,475.0,21.0,7.0,45.0,31.0,9.0,133.0,546.0,100.0,4.0,32.0,51.0,38.0,210.0,439.0,7.0,404.0,175.0,218.0,13.0,104.0,9.0,17.0,1464.0,90.0,149.0,408.0,96.0,28.0,30.0,52.0,123.0,1177.0,300.0,238.0,13.0,118.0,0.0,171.0,7.0,205.0,99.0,113.0,454.0,1.0,26.0,133.0,8.0,305.0,38.0,120.0,322.0,123.0,3.0,24.0,465.0,93.0,631.0,32.0,7.0,143.0,17.0,185.0,814.0,310.0,0.0,394.0,59.0,103.0,115.0,41.0,84.0,6.0,43.0,789.0,11.0,403.0,33.0,63.0,98.0,1417.0,1478.0,208.0,121.0,25.0,124.0,177.0,84.0,726.0,111.0,6.0,1051.0,52.0,58.0,2335.0,164.0,917.0,83.0,328.0,999.0,0.0,161.0,419.0,80.0,30.0,596.0,329.0,13.0,183.0,285.0,118.0,19.0,750.0,5.0,438.0,46.0,54.0,195.0,33.0,1026.0,649.0,270.0,2540.0,2.0,393.0,2071.0,674.0,229.0,120.0,566.0,13.0,60.0,0.0,148.0,25.0,21.0,109.0,2475.0,32.0,42.0,1245.0,50.0,18.0,324.0,236.0,155.0,556.0,11.0,161.0,23.0,3.0,5.0,62.0,108.0,421.0,130.0,3437.0,934.0,69.0,110.0,17.0,183.0,0.0,291.0,47.0,830.0,52.0,176.0,565.0,57.0,82.0,12.0,43.0,38.0,49.0,743.0,453.0,122.0,108.0,46.0,54.0,31.0,203.0,278.0,40.0,23.0,33.0,25.0,48.0,57.0,271.0,900.0,137.0,95.0,191.0,737.0,8.0,0.0,159.0,33.0,1899.0,8.0,48.0,133.0,18.0,50.0,9.0,19.0,7.0,194.0,33.0,104.0,137.0,6.0,715.0,341.0,56.0,344.0,42.0,170.0,142.0,10.0,22.0,229.0,9.0,19.0,14.0,2.0,657.0,84.0,145.0,4.0,85.0,40.0,27.0,1.0,0.0,146.0,106.0,73.0,6.0,1018.0,149.0,112.0,11.0,0.0,59.0,47.0,1314.0,231.0,31.0,83.0,21.0,49.0,596.0,13.0,726.0,31.0,0.0,89.0,43.0,139.0,49.0,83.0,807.0,425.0,43.5330851447,2016-11-27,,2016-47,43.626154617838296,43.53308514470001, +188,188,364.0,6.0,7.0,6.0,226.0,91.0,7.0,93.0,200.0,137.0,38.0,1075.0,2.0,12.0,41.0,3.0,37.0,5.0,241.0,43.0,17.0,77.0,146.0,204.0,80.0,471.0,18.0,3.0,38.0,20.0,2.0,131.0,586.0,164.0,1.0,32.0,29.0,34.0,169.0,239.0,6.0,366.0,238.0,188.0,14.0,94.0,5.0,42.0,1338.0,123.0,135.0,455.0,61.0,40.0,24.0,42.0,99.0,1176.0,245.0,214.0,3.0,111.0,0.0,224.0,3.0,135.0,77.0,102.0,385.0,0.0,13.0,96.0,7.0,237.0,38.0,123.0,349.0,126.0,3.0,13.0,465.0,129.0,687.0,35.0,13.0,131.0,28.0,188.0,801.0,302.0,0.0,391.0,73.0,71.0,180.0,43.0,73.0,1.0,32.0,806.0,5.0,349.0,22.0,49.0,146.0,1275.0,1410.0,157.0,77.0,25.0,90.0,176.0,52.0,571.0,135.0,6.0,941.0,54.0,33.0,2286.0,174.0,778.0,83.0,300.0,929.0,0.0,209.0,389.0,85.0,20.0,620.0,309.0,6.0,195.0,265.0,104.0,14.0,712.0,8.0,405.0,54.0,78.0,90.0,23.0,1027.0,657.0,296.0,2432.0,3.0,406.0,1970.0,696.0,191.0,109.0,648.0,5.0,62.0,0.0,130.0,29.0,19.0,103.0,2602.0,40.0,36.0,859.0,22.0,10.0,280.0,237.0,151.0,516.0,4.0,160.0,13.0,1.0,3.0,53.0,110.0,408.0,146.0,3175.0,892.0,33.0,189.0,8.0,222.0,0.0,249.0,47.0,830.0,120.0,195.0,390.0,55.0,80.0,16.0,71.0,46.0,59.0,898.0,424.0,146.0,93.0,41.0,44.0,15.0,202.0,267.0,37.0,18.0,37.0,28.0,35.0,50.0,308.0,822.0,107.0,97.0,211.0,874.0,8.0,0.0,148.0,36.0,887.0,4.0,28.0,157.0,18.0,61.0,7.0,15.0,3.0,154.0,24.0,121.0,154.0,7.0,679.0,294.0,46.0,383.0,40.0,155.0,84.0,9.0,12.0,244.0,13.0,14.0,22.0,0.0,590.0,65.0,128.0,6.0,74.0,46.0,22.0,0.0,0.0,173.0,95.0,96.0,7.0,1101.0,166.0,116.0,25.0,0.0,76.0,55.0,1102.0,211.0,22.0,98.0,31.0,56.0,602.0,11.0,558.0,30.0,0.0,61.0,30.0,107.0,64.0,117.0,835.0,428.0,57.63598978130001,2016-12-04,,2016-48,58.073191153817774,57.63598978130001, +189,189,251.0,7.0,5.0,7.0,234.0,61.0,21.0,126.0,202.0,120.0,20.0,927.0,0.0,4.0,49.0,2.0,62.0,12.0,246.0,47.0,9.0,78.0,145.0,186.0,55.0,463.0,22.0,3.0,43.0,38.0,13.0,153.0,954.0,116.0,3.0,33.0,69.0,44.0,145.0,274.0,6.0,452.0,137.0,193.0,15.0,73.0,3.0,34.0,1296.0,110.0,129.0,359.0,78.0,30.0,22.0,43.0,89.0,1201.0,292.0,175.0,5.0,95.0,1.0,142.0,2.0,120.0,88.0,99.0,380.0,0.0,13.0,96.0,20.0,192.0,32.0,99.0,332.0,106.0,1.0,19.0,490.0,59.0,686.0,15.0,6.0,138.0,10.0,215.0,821.0,269.0,0.0,363.0,60.0,98.0,188.0,37.0,41.0,4.0,33.0,737.0,6.0,360.0,19.0,45.0,89.0,1266.0,1507.0,119.0,71.0,17.0,78.0,182.0,61.0,692.0,106.0,6.0,847.0,42.0,34.0,2313.0,238.0,797.0,87.0,310.0,1054.0,0.0,153.0,395.0,70.0,17.0,571.0,312.0,6.0,171.0,218.0,110.0,21.0,708.0,3.0,327.0,57.0,56.0,96.0,35.0,1081.0,623.0,275.0,2461.0,3.0,387.0,2067.0,617.0,224.0,120.0,770.0,12.0,71.0,0.0,105.0,19.0,26.0,143.0,2559.0,38.0,42.0,659.0,19.0,11.0,382.0,215.0,139.0,413.0,6.0,168.0,15.0,1.0,5.0,41.0,122.0,457.0,108.0,3692.0,827.0,26.0,91.0,18.0,94.0,0.0,270.0,41.0,833.0,56.0,218.0,409.0,69.0,39.0,13.0,77.0,57.0,40.0,840.0,430.0,161.0,105.0,34.0,33.0,12.0,175.0,202.0,51.0,38.0,38.0,28.0,32.0,58.0,302.0,843.0,128.0,68.0,217.0,973.0,9.0,2.0,158.0,31.0,686.0,7.0,13.0,143.0,24.0,45.0,10.0,13.0,6.0,181.0,48.0,85.0,140.0,6.0,755.0,286.0,30.0,354.0,36.0,152.0,84.0,21.0,20.0,218.0,12.0,6.0,18.0,0.0,611.0,94.0,133.0,5.0,85.0,18.0,14.0,0.0,0.0,139.0,89.0,460.0,6.0,1083.0,167.0,109.0,19.0,0.0,52.0,48.0,1251.0,206.0,36.0,93.0,23.0,35.0,598.0,7.0,563.0,38.0,0.0,88.0,42.0,98.0,44.0,85.0,800.0,336.0,61.140110205,2016-12-11,,2016-49,60.096412924899255,58.42772214914001, +190,190,246.0,6.0,4.0,0.0,212.0,81.0,7.0,126.0,182.0,174.0,28.0,1064.0,0.0,7.0,51.0,4.0,70.0,6.0,248.0,70.0,9.0,117.0,140.0,187.0,73.0,565.0,30.0,7.0,30.0,22.0,6.0,155.0,696.0,86.0,3.0,32.0,95.0,37.0,149.0,237.0,9.0,360.0,155.0,233.0,18.0,94.0,12.0,38.0,1270.0,111.0,142.0,418.0,79.0,37.0,29.0,52.0,102.0,1223.0,299.0,199.0,3.0,131.0,1.0,132.0,1.0,124.0,112.0,126.0,356.0,3.0,19.0,88.0,11.0,273.0,34.0,115.0,368.0,98.0,1.0,15.0,491.0,78.0,695.0,30.0,12.0,110.0,15.0,175.0,1008.0,267.0,0.0,383.0,79.0,86.0,187.0,49.0,57.0,7.0,43.0,813.0,15.0,390.0,32.0,49.0,104.0,1382.0,3186.0,161.0,80.0,13.0,98.0,143.0,77.0,750.0,116.0,2.0,900.0,57.0,41.0,2604.0,216.0,1081.0,336.0,285.0,981.0,0.0,169.0,437.0,102.0,18.0,577.0,318.0,6.0,251.0,256.0,114.0,21.0,677.0,11.0,395.0,51.0,75.0,123.0,33.0,1135.0,566.0,291.0,2544.0,0.0,410.0,2554.0,592.0,211.0,113.0,839.0,14.0,66.0,0.0,109.0,29.0,55.0,142.0,2891.0,49.0,38.0,647.0,17.0,11.0,370.0,207.0,136.0,522.0,20.0,196.0,18.0,4.0,2.0,45.0,123.0,497.0,128.0,3801.0,957.0,29.0,119.0,8.0,73.0,11.0,256.0,41.0,939.0,133.0,186.0,539.0,73.0,52.0,23.0,72.0,45.0,38.0,812.0,463.0,94.0,102.0,33.0,45.0,26.0,212.0,220.0,22.0,22.0,45.0,33.0,36.0,64.0,278.0,853.0,117.0,103.0,249.0,1357.0,14.0,2.0,208.0,35.0,618.0,1.0,19.0,140.0,20.0,31.0,9.0,14.0,8.0,207.0,55.0,105.0,120.0,7.0,743.0,270.0,45.0,372.0,68.0,144.0,94.0,10.0,23.0,254.0,8.0,19.0,22.0,0.0,668.0,87.0,139.0,4.0,96.0,32.0,19.0,0.0,0.0,154.0,106.0,145.0,7.0,1254.0,147.0,110.0,28.0,0.0,39.0,50.0,1324.0,192.0,31.0,96.0,28.0,42.0,565.0,13.0,649.0,20.0,0.0,86.0,36.0,102.0,86.0,106.0,880.0,310.0,64.5490572835,2016-12-18,,2016-50,65.18953068755725,80.35921254634002, +191,191,234.0,7.0,5.0,5.0,222.0,66.0,11.0,92.0,170.0,167.0,22.0,835.0,0.0,5.0,40.0,2.0,43.0,3.0,212.0,62.0,13.0,76.0,92.0,193.0,36.0,392.0,26.0,8.0,55.0,23.0,7.0,108.0,588.0,94.0,1.0,31.0,59.0,28.0,124.0,215.0,1.0,407.0,123.0,217.0,10.0,86.0,4.0,26.0,1021.0,97.0,136.0,392.0,52.0,29.0,23.0,34.0,104.0,1166.0,271.0,166.0,3.0,90.0,0.0,149.0,1.0,119.0,91.0,191.0,332.0,7.0,31.0,86.0,7.0,204.0,28.0,82.0,263.0,72.0,0.0,13.0,369.0,57.0,652.0,20.0,7.0,104.0,13.0,116.0,743.0,257.0,0.0,348.0,48.0,74.0,132.0,36.0,63.0,3.0,19.0,610.0,10.0,335.0,15.0,29.0,73.0,1456.0,1877.0,87.0,57.0,15.0,97.0,128.0,63.0,489.0,147.0,2.0,727.0,58.0,44.0,2211.0,207.0,783.0,109.0,276.0,738.0,0.0,133.0,369.0,81.0,21.0,485.0,272.0,11.0,164.0,239.0,884.0,15.0,505.0,2.0,386.0,35.0,58.0,50.0,24.0,1056.0,575.0,251.0,2019.0,0.0,384.0,2316.0,518.0,220.0,112.0,750.0,21.0,56.0,65.0,94.0,25.0,29.0,114.0,3202.0,34.0,42.0,718.0,35.0,8.0,322.0,208.0,130.0,510.0,9.0,114.0,20.0,3.0,2.0,37.0,151.0,460.0,95.0,3023.0,895.0,33.0,148.0,19.0,68.0,5.0,234.0,64.0,771.0,25.0,110.0,451.0,63.0,46.0,26.0,52.0,118.0,34.0,691.0,337.0,116.0,97.0,26.0,22.0,24.0,150.0,176.0,25.0,23.0,26.0,15.0,42.0,53.0,314.0,665.0,103.0,75.0,196.0,4438.0,14.0,0.0,181.0,29.0,617.0,11.0,15.0,112.0,16.0,28.0,4.0,7.0,5.0,155.0,30.0,86.0,118.0,5.0,794.0,237.0,38.0,304.0,62.0,158.0,100.0,5.0,27.0,183.0,19.0,9.0,25.0,1.0,529.0,83.0,134.0,8.0,88.0,16.0,12.0,0.0,0.0,140.0,80.0,65.0,6.0,1216.0,141.0,108.0,44.0,0.0,61.0,40.0,1291.0,134.0,34.0,99.0,29.0,36.0,580.0,3.0,491.0,26.0,0.0,73.0,41.0,70.0,38.0,73.0,968.0,206.0,117.63438900530001,2016-12-25,,2016-51,117.19671655782108,117.63438900530001, +192,192,201.0,2.0,3.0,4.0,154.0,74.0,6.0,77.0,138.0,120.0,21.0,596.0,2.0,6.0,87.0,1.0,49.0,5.0,142.0,91.0,28.0,58.0,71.0,133.0,45.0,267.0,13.0,5.0,30.0,14.0,6.0,83.0,431.0,95.0,0.0,14.0,90.0,39.0,94.0,127.0,1.0,325.0,103.0,172.0,12.0,67.0,6.0,48.0,849.0,93.0,102.0,373.0,43.0,31.0,24.0,35.0,74.0,1186.0,268.0,129.0,2.0,77.0,1.0,125.0,3.0,72.0,112.0,123.0,252.0,0.0,24.0,54.0,4.0,150.0,26.0,79.0,230.0,66.0,3.0,14.0,459.0,75.0,579.0,28.0,14.0,62.0,13.0,128.0,546.0,170.0,0.0,277.0,74.0,61.0,135.0,42.0,37.0,5.0,28.0,574.0,11.0,267.0,18.0,17.0,53.0,1186.0,1878.0,76.0,52.0,15.0,82.0,83.0,44.0,416.0,132.0,2.0,680.0,36.0,37.0,2271.0,239.0,788.0,142.0,246.0,700.0,0.0,108.0,278.0,58.0,24.0,446.0,224.0,9.0,161.0,158.0,228.0,16.0,447.0,7.0,237.0,29.0,51.0,70.0,24.0,1041.0,352.0,169.0,1652.0,0.0,301.0,2224.0,576.0,181.0,117.0,624.0,8.0,48.0,74.0,66.0,25.0,20.0,191.0,3190.0,28.0,37.0,510.0,17.0,5.0,283.0,141.0,129.0,335.0,13.0,101.0,14.0,4.0,0.0,34.0,116.0,482.0,76.0,2654.0,918.0,24.0,71.0,4.0,118.0,0.0,169.0,36.0,676.0,21.0,48.0,254.0,63.0,55.0,19.0,47.0,76.0,172.0,615.0,243.0,102.0,42.0,25.0,29.0,27.0,168.0,127.0,12.0,6.0,24.0,24.0,17.0,44.0,210.0,502.0,111.0,65.0,133.0,862.0,7.0,0.0,139.0,26.0,480.0,7.0,8.0,96.0,18.0,38.0,5.0,14.0,11.0,130.0,33.0,47.0,98.0,6.0,617.0,173.0,27.0,222.0,21.0,169.0,103.0,3.0,17.0,143.0,11.0,8.0,20.0,2.0,400.0,73.0,112.0,7.0,80.0,22.0,15.0,0.0,0.0,95.0,80.0,65.0,5.0,1117.0,115.0,68.0,20.0,0.0,52.0,50.0,1243.0,143.0,23.0,69.0,18.0,40.0,471.0,4.0,522.0,36.0,0.0,56.0,17.0,83.0,29.0,78.0,977.0,214.0,81.0558404257,2017-01-01,,2016-52,79.59475598253634,103.2427338449, +193,193,226.0,10.0,5.0,4.0,249.0,107.0,14.0,120.0,181.0,172.0,29.0,921.0,0.0,11.0,94.0,5.0,78.0,7.0,216.0,94.0,15.0,97.0,123.0,188.0,68.0,461.0,27.0,5.0,36.0,23.0,13.0,125.0,650.0,179.0,3.0,14.0,73.0,38.0,136.0,184.0,3.0,653.0,146.0,221.0,11.0,90.0,11.0,71.0,1175.0,141.0,123.0,440.0,48.0,34.0,34.0,57.0,116.0,1309.0,333.0,219.0,8.0,114.0,1.0,161.0,3.0,126.0,99.0,198.0,440.0,0.0,21.0,111.0,23.0,197.0,43.0,106.0,369.0,91.0,2.0,21.0,626.0,78.0,742.0,27.0,9.0,81.0,29.0,161.0,826.0,303.0,0.0,413.0,84.0,93.0,156.0,35.0,38.6,5.0,28.0,807.0,12.0,403.0,27.0,44.0,74.0,1315.0,2983.0,87.0,103.0,6.0,111.0,140.0,85.0,726.0,171.0,2.0,913.5,58.0,78.0,2811.0,291.0,1108.0,149.0,323.0,900.0,0.0,153.0,393.0,93.0,31.0,620.0,288.0,7.0,203.0,293.0,190.0,15.0,676.0,6.0,353.0,53.0,65.0,75.0,52.0,1298.0,646.0,317.0,2349.0,0.0,399.0,2987.0,924.0,224.0,145.0,789.0,8.0,73.0,190.0,122.0,27.0,25.0,159.0,3118.0,35.0,26.0,694.0,23.0,11.0,391.0,191.0,142.0,548.0,20.0,139.0,17.0,4.0,0.3333333333333333,55.0,112.0,599.0,149.0,3463.0,941.0,30.0,126.0,13.0,56.0,0.0,315.0,61.0,1030.0,17.0,115.0,408.0,100.0,48.0,13.0,65.0,62.0,86.0,808.0,382.0,114.0,87.0,41.0,37.0,23.0,231.0,221.0,26.0,20.0,33.0,24.0,48.0,66.0,267.0,460.0,147.0,115.0,178.0,707.0,17.0,0.0,228.0,35.0,614.0,20.0,12.0,135.0,18.0,40.0,7.0,14.0,16.0,218.0,54.0,113.0,166.0,5.0,736.0,276.0,57.0,357.0,47.0,182.0,85.0,15.0,18.0,221.0,14.0,14.0,28.0,0.0,699.0,79.0,197.0,10.0,103.0,21.0,27.0,0.0,0.0,141.0,101.0,95.0,10.0,1491.0,141.0,97.0,28.0,0.0,65.0,24.0,1540.0,200.0,29.0,123.0,28.0,39.0,653.0,8.0,719.0,22.0,0.0,88.0,35.0,142.0,50.0,80.0,823.0,175.0,96.7852285717,2017-01-08,,2017-1,97.14779635741166,92.81434042458, +194,194,206.0,9.0,6.0,6.0,401.0,129.0,10.0,168.0,215.0,206.0,15.0,1154.0,2.0,6.0,92.0,2.0,84.0,4.0,288.0,97.0,13.0,116.0,128.0,183.0,96.0,665.0,23.0,9.0,40.0,35.0,8.0,163.0,879.0,128.0,4.0,24.0,120.0,33.0,138.0,275.0,5.0,466.0,133.0,219.0,10.0,94.0,9.0,62.0,1435.0,110.0,181.0,546.0,72.0,42.0,37.0,57.0,105.0,1124.0,333.0,231.0,6.0,139.0,0.0,168.0,4.0,173.0,90.0,388.0,440.0,0.0,19.0,129.0,6.0,293.0,54.0,137.0,404.0,101.0,0.0,25.0,528.0,82.0,798.0,38.0,7.0,103.0,40.0,149.0,832.0,284.0,0.0,499.0,86.0,69.0,200.0,55.0,40.2,3.0,45.0,816.0,11.0,474.0,32.0,60.0,109.0,1533.0,3225.0,157.0,94.0,12.0,106.0,186.0,66.0,776.0,156.0,7.0,1147.0,66.0,47.0,2536.0,242.0,1098.0,236.0,339.0,1330.0,0.0,194.0,461.0,129.0,27.0,709.0,298.0,13.0,322.0,296.0,151.0,16.0,733.0,9.0,470.0,75.0,73.0,95.0,34.0,1186.0,682.0,340.0,2562.0,9.0,506.0,2920.0,790.0,215.0,160.0,733.0,17.0,68.0,233.0,118.0,35.0,46.0,167.0,2984.0,48.0,84.0,875.0,46.0,7.0,390.0,255.0,138.0,451.0,16.0,318.0,18.0,3.0,0.6666666666666666,76.0,101.0,580.0,180.0,2976.0,1000.0,30.0,189.0,12.0,74.0,7.0,323.0,73.0,1122.0,30.0,174.0,515.0,91.0,57.0,24.0,70.0,54.0,60.0,939.0,463.0,107.0,96.0,83.0,34.0,19.0,248.0,299.0,42.0,39.0,38.0,30.0,68.0,63.0,217.0,529.0,138.0,131.0,241.0,478.0,13.0,0.0,256.0,35.0,792.0,14.0,13.0,138.0,20.0,54.0,12.0,21.0,14.0,221.0,125.0,136.0,157.0,7.0,861.0,296.0,53.0,427.0,48.0,221.0,134.0,9.0,20.0,263.0,14.0,15.0,45.0,0.0,728.0,95.0,181.0,6.0,122.0,32.0,34.0,1.0,0.0,207.0,100.0,84.0,7.0,1254.0,166.0,163.0,27.0,0.0,117.0,44.0,1396.0,210.0,15.0,150.0,18.0,45.0,648.0,6.0,770.0,28.0,0.0,134.0,45.0,105.0,46.0,80.0,1281.0,175.0,121.2931333234,2017-01-15,,2017-2,121.30228306211978,108.75972654326002, +195,195,253.0,15.0,3.0,2.0,310.0,127.0,17.0,145.0,206.0,186.0,21.0,1091.0,1.0,10.0,102.0,3.0,73.0,5.0,307.0,100.0,14.0,111.0,147.0,210.0,119.0,611.0,29.0,6.0,58.0,23.0,9.0,117.0,1209.0,102.0,3.0,18.0,92.0,36.0,127.0,228.0,2.0,504.0,177.0,241.0,26.0,99.0,15.0,44.0,1315.0,115.0,207.0,463.0,88.0,61.0,28.0,59.0,126.0,1248.0,280.0,262.0,3.0,119.0,1.0,123.0,4.0,148.0,87.0,247.0,473.0,1.0,21.0,110.0,15.0,276.0,34.0,154.0,464.0,117.0,1.0,23.0,563.0,87.0,730.0,50.0,11.0,117.0,30.0,155.0,864.0,263.0,0.0,410.0,64.0,103.0,212.0,41.0,41.8,4.0,45.0,785.0,12.0,617.0,38.0,33.0,127.0,1533.0,3244.0,127.0,115.0,3.0,107.0,177.0,93.0,699.0,144.0,6.0,1127.0,68.0,42.0,2250.0,242.0,1180.0,145.0,320.0,1026.0,1.0,189.0,592.0,103.0,40.0,735.0,357.0,13.0,290.0,245.0,198.0,15.0,701.0,7.0,440.0,89.0,67.0,88.0,34.0,1112.0,717.0,300.0,2386.0,2.0,497.0,3130.0,766.0,228.0,139.0,853.0,13.0,76.0,253.0,114.0,66.0,34.0,171.0,2771.0,38.0,47.0,740.0,37.0,17.0,369.0,277.0,147.0,445.0,13.0,274.0,19.0,3.0,1.0,63.0,121.0,567.0,151.0,8932.0,957.0,28.0,122.0,9.0,55.0,6.0,314.0,58.0,1049.0,35.0,236.0,568.0,80.0,70.0,31.0,89.0,237.0,63.0,935.0,493.0,107.0,104.0,59.0,36.0,26.0,264.0,271.0,53.0,28.0,29.0,29.0,55.0,87.0,395.0,603.0,143.0,121.0,273.0,393.0,13.0,1.0,237.0,21.0,786.0,23.0,20.0,129.0,23.0,60.0,5.0,7.0,11.0,235.0,84.0,121.0,188.0,8.0,745.0,301.0,66.0,436.0,36.0,220.0,102.0,8.0,20.0,382.0,7.0,13.0,33.0,3.0,741.0,103.0,144.0,9.0,85.0,45.0,36.0,0.0,0.0,238.0,98.0,87.0,8.0,1137.0,149.0,131.0,47.0,0.0,123.0,31.0,1473.0,223.0,32.0,110.0,27.0,42.0,668.0,13.0,684.0,36.0,45.0,121.0,37.0,108.0,53.0,86.0,1104.0,125.0,103.2537738828,2017-01-22,,2017-3,104.42455228340614,88.95721804032002, +196,196,262.0,12.0,4.0,5.0,328.0,139.0,10.0,118.0,208.0,172.0,24.0,943.0,3.0,11.0,91.0,3.0,69.0,8.0,321.0,79.0,15.0,83.0,130.0,190.0,92.0,615.0,18.0,12.0,62.0,28.0,9.0,155.0,926.0,74.0,4.0,24.0,77.0,71.0,174.0,550.0,14.0,544.0,142.0,210.0,8.0,89.0,6.0,39.0,1236.0,130.0,193.0,444.0,94.0,29.0,41.0,54.0,106.0,1133.0,302.0,196.0,6.0,92.0,2.0,124.0,4.0,119.0,84.0,260.0,535.0,2.0,31.0,98.0,18.0,258.0,46.0,111.0,498.0,112.0,7.0,21.0,695.0,76.0,729.0,24.0,18.0,253.0,41.0,149.0,767.0,281.0,0.0,360.0,56.0,74.0,206.0,36.0,43.4,9.0,55.0,1003.0,33.0,1196.0,28.0,40.0,149.0,1338.0,2995.0,138.0,99.0,8.0,1285.0,145.0,84.0,619.0,143.0,7.0,1140.0,96.0,53.0,2363.0,233.0,940.0,190.0,342.0,892.0,1.0,172.0,614.0,130.0,29.0,625.0,352.0,14.0,250.0,258.0,145.0,16.0,641.0,8.0,384.0,46.0,74.0,95.0,39.0,1214.0,769.0,253.0,2337.0,1.0,524.0,3470.0,804.0,265.0,138.0,933.0,9.0,75.0,377.0,86.0,992.0,42.0,155.0,2598.0,48.0,47.0,708.0,48.0,8.0,457.0,265.0,143.0,461.0,14.0,239.0,16.0,3.0,6.0,45.0,90.0,566.0,159.0,3411.0,964.0,41.0,136.0,12.0,42.0,2.0,329.0,67.0,942.0,34.0,235.0,513.0,108.0,35.0,8.0,57.0,47.0,62.0,873.0,504.0,115.0,78.0,34.0,45.0,15.0,265.0,276.0,59.0,30.0,28.0,38.0,43.0,62.0,232.0,659.0,142.0,117.0,254.0,362.0,22.0,2.0,242.0,27.0,811.0,11.0,31.0,142.0,17.0,48.0,14.0,22.0,12.0,207.0,59.0,93.0,151.0,10.0,1128.0,257.0,70.0,419.0,32.0,199.0,70.0,8.0,28.0,253.0,17.0,16.0,42.0,4.0,677.0,104.0,146.0,10.0,106.0,33.0,25.0,3.0,37.0,226.0,104.0,76.0,13.0,1117.0,150.0,120.0,56.0,0.0,88.0,51.0,1557.0,189.0,29.0,137.0,39.0,83.0,623.0,5.0,649.0,82.0,4.0,127.0,53.0,120.0,52.0,81.0,867.0,111.0,92.38877195239999,2017-01-29,,2017-4,92.66333378644492,86.36798631008, +197,197,305.0,5.0,4.0,6.0,406.0,111.0,13.0,150.0,157.0,175.0,31.0,1056.0,1.0,11.0,53.0,6.0,57.0,3.0,358.0,56.0,10.0,53.0,83.0,206.0,72.0,530.0,28.0,15.0,44.0,16.0,9.0,142.0,665.0,70.0,0.0,27.0,112.0,34.0,133.0,272.0,6.0,400.0,214.0,260.0,13.0,78.0,7.0,39.0,1337.0,120.0,174.0,489.0,98.0,31.0,47.0,52.0,107.0,1243.0,324.0,164.0,2.0,127.0,1.0,153.0,2.0,141.0,87.0,196.0,531.0,3.0,18.0,108.0,24.0,261.0,31.0,121.0,353.0,88.0,1.0,18.0,534.0,99.0,732.0,35.0,14.0,260.0,30.0,102.0,815.0,337.0,0.0,467.0,83.0,67.0,188.0,38.0,45.0,3.0,41.0,918.0,12.0,513.0,18.0,32.0,135.0,1417.0,3244.0,89.0,92.0,17.0,192.0,140.0,81.0,671.0,145.0,5.0,1359.0,58.0,46.0,2570.0,201.0,1121.0,160.0,361.0,1064.0,1.0,173.0,491.0,125.0,37.0,673.0,329.0,7.0,287.0,320.0,146.0,20.0,684.0,7.0,439.0,61.0,85.0,93.0,27.0,1327.0,521.0,282.0,2539.0,1.0,481.0,3635.0,725.0,237.0,131.0,900.0,18.0,91.0,371.0,125.0,365.0,41.0,154.0,2827.0,44.0,53.0,846.0,70.0,13.0,412.0,254.0,126.0,560.0,5.0,203.0,17.0,0.0,9.0,61.0,106.0,566.0,133.0,4636.0,986.0,33.0,123.0,15.0,61.0,1.0,225.0,54.0,908.0,20.0,181.0,510.0,59.0,45.0,9.0,56.0,48.0,48.0,904.0,453.0,131.0,123.0,24.0,47.0,15.0,257.0,250.0,46.0,17.0,48.0,30.0,41.0,64.0,296.0,597.0,126.0,110.0,286.0,364.0,17.0,2.0,201.0,38.0,898.0,7.0,20.0,136.0,20.0,34.0,4.0,15.0,6.0,184.0,48.0,96.0,204.0,9.0,773.0,318.0,58.0,394.0,55.0,174.0,75.0,8.0,23.0,268.0,11.0,14.0,21.0,1.0,751.0,80.0,176.0,5.0,100.0,27.0,19.0,3.0,31.0,229.0,76.0,87.0,4.0,1235.0,190.0,110.0,98.0,0.0,41.0,29.0,1493.0,209.0,27.0,97.0,24.0,43.0,700.0,9.0,707.0,40.0,11.0,80.0,35.0,145.0,58.0,81.0,837.0,132.0,123.5129131035,2017-02-05,,2017-5,121.57938086792122,99.80675552248, +198,198,316.0,4.0,3.0,4.0,371.0,123.0,12.0,98.0,238.0,148.0,19.0,1023.0,0.0,12.0,44.0,6.0,50.0,7.0,325.0,37.0,28.0,67.0,117.0,225.0,59.0,455.0,29.0,4.0,54.0,35.0,13.0,153.0,694.0,63.0,4.0,24.0,98.0,27.0,151.0,324.0,7.0,507.0,151.0,272.0,20.0,87.0,9.0,23.0,1500.0,126.0,153.0,417.0,98.0,26.0,19.0,58.0,96.0,1255.0,406.0,153.0,1.0,161.0,0.0,108.0,7.0,260.0,108.0,229.0,391.0,2.0,19.0,101.0,7.0,282.0,21.0,157.0,356.0,128.0,1.0,22.0,571.0,106.0,774.0,30.0,25.0,291.0,19.0,128.0,880.0,380.0,0.0,379.0,48.0,125.0,169.0,29.0,51.0,2.0,48.0,1012.0,12.0,515.0,15.0,28.0,83.0,1390.0,2955.0,122.0,90.0,6.0,132.0,162.0,79.0,714.0,143.0,1.0,1165.0,64.0,53.0,2392.0,218.0,959.0,114.0,387.0,964.0,0.0,160.0,463.0,104.0,25.0,671.0,371.0,7.0,247.0,287.0,147.0,19.0,895.0,12.0,519.0,62.0,69.0,197.0,22.0,1231.0,583.0,333.0,2601.0,2.0,470.0,3125.0,645.0,243.0,137.0,865.0,11.0,59.0,376.0,133.0,672.0,21.0,129.0,2582.0,37.0,40.0,999.0,54.0,11.0,428.0,274.0,133.0,598.0,4.0,211.0,30.0,3.0,1.0,47.0,101.0,526.0,123.0,2769.0,906.0,31.0,119.0,4.0,65.0,0.0,183.0,32.0,909.0,49.0,146.0,627.0,49.0,27.0,19.0,64.0,44.0,63.0,944.0,449.0,105.0,91.0,43.0,26.0,22.0,180.0,174.0,45.0,28.0,37.0,55.0,38.0,63.0,247.0,635.0,114.0,75.0,248.0,367.0,4.0,0.0,125.0,59.0,888.0,20.0,14.0,166.0,15.0,31.0,5.0,13.0,8.0,209.0,54.0,100.0,181.0,7.0,739.0,341.0,46.0,391.0,27.0,212.0,82.0,8.0,18.0,253.0,11.0,8.0,24.0,0.0,682.0,78.0,147.0,12.0,108.0,14.0,12.0,0.0,31.0,210.0,96.0,71.0,6.0,1075.0,163.0,104.0,77.0,0.0,34.0,42.0,1646.0,188.0,21.0,107.0,83.0,72.0,659.0,12.0,657.0,33.0,13.0,112.0,41.0,116.0,50.0,61.0,621.0,106.0,101.4901727808,2017-02-12,,2017-6,102.4185998163118,95.76867331599999, +199,199,295.0,11.0,11.0,3.0,298.0,118.0,9.0,124.0,275.0,159.0,36.0,1060.0,4.0,14.0,40.0,4.0,53.0,6.0,292.0,34.0,18.0,87.0,125.0,183.0,58.0,439.0,19.0,3.0,56.0,55.0,18.0,158.0,683.0,71.0,0.0,23.0,64.0,17.0,146.0,289.0,4.0,771.0,196.0,219.0,23.0,102.0,16.0,29.0,1392.0,109.0,172.0,425.0,106.0,37.0,26.0,73.0,82.0,1291.0,363.0,214.0,4.0,144.0,1.0,150.0,1.0,150.0,86.0,217.0,399.0,1.0,23.0,89.0,20.0,323.0,32.0,122.0,402.0,138.0,1.0,22.0,550.0,80.0,837.0,28.0,7.0,181.0,20.0,132.0,928.0,295.0,0.0,367.0,71.0,101.0,169.0,48.0,69.0,2.0,37.0,875.0,13.0,545.0,7.0,38.0,81.0,1404.0,2616.0,61.0,87.0,6.0,93.0,175.0,79.0,537.0,102.0,4.0,1258.0,64.0,104.0,2466.0,198.0,925.0,107.0,402.0,1095.0,1.0,174.0,500.0,100.0,26.0,644.0,400.0,9.0,342.0,316.0,129.0,20.0,741.0,7.0,479.0,60.0,43.0,96.0,36.0,1433.0,542.0,265.0,2591.0,1.0,504.0,2909.0,762.0,213.0,170.0,888.0,6.0,70.0,363.0,132.0,130.0,39.0,143.0,2528.0,33.0,48.0,909.0,35.0,14.0,433.0,207.0,117.0,530.0,16.0,141.0,26.0,3.0,1.0,53.0,96.0,740.0,140.0,2591.0,919.0,27.0,96.0,13.0,44.0,0.0,205.0,39.0,878.0,33.0,172.0,437.0,80.0,61.0,25.0,69.0,81.0,89.0,929.0,377.0,127.0,86.0,22.0,35.0,17.0,199.0,243.0,23.0,35.0,45.0,25.0,43.0,47.0,183.0,497.0,139.0,104.0,235.0,335.0,10.0,1.0,161.0,30.0,842.0,30.0,27.0,155.0,23.0,32.0,18.0,11.0,8.0,196.0,59.0,97.0,155.0,8.0,664.0,314.0,54.0,339.0,32.0,169.0,87.0,4.0,26.0,223.0,7.0,13.0,45.0,2.0,674.0,76.0,143.0,11.0,74.0,20.0,21.0,0.0,25.0,200.0,90.0,82.0,13.0,1111.0,191.0,86.0,30.0,0.0,27.0,46.0,1600.0,197.0,21.0,102.0,18.0,46.0,592.0,8.0,725.0,19.0,5.0,110.0,41.0,106.0,56.0,40.0,494.0,122.0,83.3374589501,2017-02-19,,2017-7,83.58946713072739,86.02701287442001, +200,200,333.0,7.0,3.0,4.0,300.0,142.0,8.0,153.0,233.0,169.0,43.0,968.0,2.0,4.0,43.0,1.0,49.0,9.0,269.0,35.0,10.0,66.0,104.0,130.0,41.0,455.0,22.0,2.0,67.0,19.0,22.0,145.0,820.0,75.0,0.0,29.0,72.0,16.0,186.0,244.0,8.0,562.0,161.0,241.0,16.0,99.0,15.0,33.0,1381.0,83.0,119.0,443.0,83.0,24.0,38.0,47.0,126.0,1064.0,379.0,164.0,4.0,122.0,2.0,148.0,2.0,122.0,114.0,175.0,388.0,7.0,33.0,66.0,8.0,281.0,51.0,118.0,333.0,115.0,0.0,17.0,532.0,105.0,851.0,29.0,7.0,153.0,21.0,134.0,833.0,261.0,0.0,339.0,100.0,72.0,178.0,25.0,41.0,4.0,40.0,844.0,8.0,466.0,10.0,16.0,71.0,1392.0,2054.0,75.0,91.0,4.0,142.0,193.0,80.0,653.0,104.0,5.0,1002.0,61.0,33.0,2869.0,216.0,1311.0,88.0,345.0,1046.0,0.0,181.0,535.0,104.0,21.0,629.0,354.0,8.0,199.0,340.0,117.0,31.0,707.0,7.0,430.0,52.0,56.0,87.0,29.0,1387.0,454.0,292.0,2603.0,2.0,487.0,2349.0,618.0,213.0,123.0,701.0,15.0,61.0,299.0,111.0,79.0,18.0,129.0,2314.0,34.0,52.0,766.0,32.0,13.0,313.0,202.0,176.0,697.0,3.0,122.0,14.0,0.0,3.0,42.0,112.0,479.0,117.0,1930.0,867.0,32.0,93.0,11.0,51.0,0.0,155.0,27.0,840.0,68.0,151.0,472.0,111.0,49.0,20.0,54.0,42.0,50.0,861.0,394.0,114.0,79.0,28.0,30.0,23.0,166.0,209.0,40.0,19.0,43.0,29.0,24.0,53.0,254.0,530.0,115.0,88.0,210.0,252.0,8.0,0.0,162.0,30.0,789.0,27.0,17.0,149.0,25.0,17.0,9.0,20.0,9.0,236.0,47.0,73.0,235.0,7.0,646.0,327.0,38.0,323.0,42.0,224.0,80.0,6.0,17.0,197.0,7.0,15.0,20.0,0.0,810.0,61.0,134.0,4.0,83.0,14.0,8.0,0.0,11.0,150.0,88.0,68.0,6.0,925.0,162.0,110.0,25.0,0.0,43.0,48.0,1542.0,214.0,24.0,91.0,22.0,48.0,719.0,11.0,643.0,35.0,7.0,90.0,42.0,127.0,54.0,53.0,472.0,117.0,62.2848437408,2017-02-26,,2017-8,62.42533461976177,69.48565098334, +201,201,292.0,6.0,4.0,4.0,258.0,131.0,9.0,168.0,254.0,194.0,35.0,806.0,3.0,8.0,45.0,4.0,49.0,8.0,271.0,37.0,19.0,57.0,85.0,185.0,50.0,360.0,31.0,2.0,57.0,28.0,5.0,164.0,1069.0,65.0,1.0,17.0,58.0,24.0,183.0,199.0,4.0,521.0,128.0,231.0,15.0,95.0,11.0,24.0,1324.0,96.0,138.0,476.0,75.0,22.0,26.0,44.0,93.0,997.0,331.0,248.0,4.0,151.0,0.0,145.0,3.0,122.0,84.0,202.0,396.0,4.0,9.0,49.0,8.0,212.0,20.0,90.0,382.0,90.0,0.0,29.0,521.0,69.0,852.0,21.0,7.0,149.0,12.0,185.0,835.0,320.0,0.0,375.0,77.0,100.0,220.0,37.0,44.0,1.0,38.0,946.0,7.0,477.0,9.0,26.0,89.0,1359.0,1458.0,50.0,85.0,5.0,134.0,153.0,86.0,590.0,110.0,7.0,997.0,45.0,38.0,2332.0,170.0,1157.0,80.0,328.0,1035.0,0.0,186.0,498.0,109.0,18.0,660.0,326.0,13.0,218.0,258.0,175.0,18.0,575.0,12.0,300.0,62.0,55.0,68.0,25.0,1499.0,506.0,253.0,2655.0,2.0,499.0,2031.0,704.0,217.0,142.0,624.0,9.0,66.0,352.0,122.0,57.0,21.0,131.0,2232.0,41.0,55.0,1058.0,30.0,15.0,303.0,208.0,187.0,494.0,10.0,104.0,25.0,1.0,0.0,43.0,90.0,385.0,104.0,1534.0,933.0,31.0,104.0,3.0,96.0,1.0,221.0,29.0,923.0,36.0,107.0,387.0,52.0,34.0,16.0,53.0,39.0,61.0,837.0,365.0,110.0,84.0,39.0,42.0,20.0,189.0,272.0,36.0,21.0,40.0,34.0,41.0,54.0,191.0,500.0,131.0,66.0,224.0,214.0,6.0,0.0,178.0,39.0,659.0,15.0,12.0,121.0,19.0,18.0,6.0,12.0,4.0,204.0,80.0,77.0,161.0,12.0,568.0,309.0,44.0,336.0,45.0,200.0,74.0,9.0,39.0,170.0,10.0,11.0,26.0,0.0,749.0,61.0,138.0,5.0,85.0,26.0,15.0,0.0,9.0,217.0,99.0,53.0,8.0,786.0,171.0,96.0,30.0,0.0,44.0,43.0,1681.0,184.0,27.0,53.0,46.0,51.0,633.0,3.0,681.0,39.0,6.0,138.0,36.0,136.0,48.0,114.0,572.0,132.0,52.807894780299996,2017-03-05,,2017-9,53.18521821835222,63.8381432016, +202,202,244.0,9.0,4.0,4.0,232.0,95.0,8.0,112.0,192.0,156.0,34.0,857.0,3.0,8.0,33.0,2.0,35.0,7.0,239.0,38.0,11.0,79.0,94.0,132.0,48.0,311.0,18.0,5.0,60.0,18.0,6.0,125.0,932.0,59.0,5.0,13.0,35.0,19.0,157.0,226.0,3.0,310.0,180.0,208.0,14.0,86.0,8.0,17.0,1120.0,86.0,108.0,465.0,79.0,19.0,31.0,30.0,80.0,812.0,325.0,183.0,4.0,94.0,3.0,88.0,3.0,140.0,107.0,142.0,437.0,1.0,24.0,82.0,5.0,230.0,24.0,119.0,345.0,87.0,1.0,20.0,388.0,65.0,638.0,23.0,11.0,115.0,14.0,145.0,777.0,226.0,0.0,301.0,54.0,41.0,204.0,31.0,51.0,2.0,47.0,965.0,36.0,1450.0,28.0,30.0,76.0,1210.0,1020.0,46.0,67.0,8.0,115.0,175.0,68.0,567.0,93.0,5.0,949.0,50.0,24.0,1836.0,161.0,825.0,49.0,287.0,858.0,1.0,181.0,484.0,102.0,17.0,612.0,258.0,15.0,259.0,241.0,133.0,18.0,611.0,9.0,392.0,40.0,55.0,71.0,24.0,1147.0,496.0,239.0,2377.0,1.0,483.0,1717.0,648.0,196.0,123.0,575.0,16.0,45.0,347.0,106.0,49.0,17.0,153.0,1783.0,25.0,39.0,769.0,18.0,12.0,234.0,208.0,136.0,542.0,9.0,116.0,37.0,0.0,2.0,50.0,66.0,379.0,99.0,1727.0,871.0,30.0,104.0,6.0,45.0,1.0,195.0,25.0,861.0,23.0,155.0,363.0,47.0,37.0,11.0,41.0,60.0,51.0,1061.0,373.0,109.0,93.0,43.0,39.0,8.0,145.0,199.0,29.0,17.0,35.0,30.0,46.0,57.0,156.0,393.0,113.0,67.0,159.0,158.0,4.0,1.0,135.0,22.0,688.0,12.0,29.0,142.0,6.0,41.0,7.0,11.0,10.0,205.0,67.0,66.0,114.0,13.0,518.0,281.0,42.0,349.0,45.0,139.0,72.0,8.0,20.0,212.0,8.0,11.0,62.0,5.0,615.0,55.0,120.0,9.0,68.0,22.0,12.0,1.0,10.0,184.0,102.0,47.0,3.0,680.0,139.0,110.0,23.0,48.0,17.0,29.0,1631.0,225.0,40.0,50.0,22.0,51.0,542.0,7.0,549.0,23.0,5.0,119.0,30.0,94.0,44.0,50.0,385.0,101.0,60.1206111954,2017-03-12,,2017-10,59.528642294486644,58.203989443640005, +203,203,264.0,5.0,10.0,4.0,299.0,119.0,11.0,111.0,260.0,169.0,28.0,962.0,2.0,29.0,53.0,1.0,41.0,3.0,306.0,56.0,17.0,67.0,125.0,219.0,48.0,357.0,24.0,5.0,57.0,15.0,7.0,162.0,706.0,60.0,3.0,15.0,49.0,21.0,148.0,238.0,6.0,532.0,196.0,244.0,9.0,115.0,6.0,51.0,1408.0,324.0,162.0,450.0,77.0,23.0,26.0,44.0,92.0,792.0,341.0,176.0,3.0,110.0,0.0,106.0,1.0,125.0,101.0,143.0,398.0,0.0,11.0,73.0,8.0,257.0,20.0,132.0,403.0,115.0,1.0,17.0,521.0,78.0,626.0,22.0,8.0,146.0,18.0,143.0,779.0,364.0,0.0,387.0,60.0,59.0,200.0,37.0,41.0,2.0,47.0,1026.0,14.0,990.0,8.0,33.0,114.0,1408.0,885.0,36.0,92.0,6.0,102.0,174.0,77.0,692.0,114.0,7.0,965.0,40.0,44.0,2477.0,172.0,1125.0,39.0,260.0,935.0,0.0,147.0,453.0,95.0,20.0,642.0,349.0,15.0,242.0,231.0,122.0,17.0,594.0,5.0,377.0,47.0,49.0,80.0,31.0,1353.0,503.0,279.0,2633.0,2.0,464.0,1797.0,771.0,159.0,121.0,602.0,18.0,79.0,361.0,162.0,41.0,32.0,121.0,1818.0,33.0,46.0,883.0,22.0,28.0,223.0,217.0,148.0,712.0,7.0,136.0,36.0,2.0,3.0,48.0,78.0,372.0,106.0,1299.0,959.0,27.0,111.0,6.0,72.0,1.0,238.0,46.0,894.0,17.0,209.0,526.0,60.0,50.0,12.0,74.0,48.0,56.0,1096.0,704.0,117.0,109.0,50.0,32.0,20.0,186.0,184.0,26.0,30.0,43.0,27.0,40.0,45.0,197.0,471.0,121.0,70.0,201.0,177.0,5.0,0.0,146.0,20.0,745.0,31.0,17.0,169.0,13.0,40.0,6.0,14.0,7.0,195.0,59.0,88.0,137.0,10.0,453.0,286.0,36.0,379.0,64.0,162.0,65.0,8.0,18.0,182.0,9.0,10.0,76.0,0.0,691.0,59.0,164.0,15.0,69.0,17.0,12.0,0.0,4.0,162.0,125.0,66.0,10.0,802.0,173.0,86.0,30.0,46.0,28.0,20.0,1761.0,230.0,24.0,70.0,28.0,56.0,574.0,6.0,633.0,35.0,6.0,126.0,43.0,71.0,40.0,39.0,429.0,95.0,38.8971306582,2017-03-19,,2017-11,40.08481933972206,42.104655461940006, +204,204,262.0,5.0,9.0,5.0,286.0,137.0,13.0,112.0,219.0,134.0,28.0,1071.0,2.0,10.0,65.0,3.0,24.0,7.0,301.0,57.0,16.0,111.0,100.0,261.0,58.0,428.0,39.0,6.0,98.0,20.0,6.0,126.0,547.0,70.0,1.0,27.0,38.0,30.0,184.0,274.0,5.0,13011.0,226.0,235.0,14.0,111.0,5.0,38.0,1366.0,91.0,159.0,491.0,74.0,34.0,22.0,54.0,97.0,767.0,359.0,203.0,2.0,143.0,1.0,138.0,0.0,131.0,111.0,113.0,445.0,4.0,23.0,112.0,7.0,310.0,24.0,109.0,338.0,115.0,1.0,20.0,515.0,102.0,685.0,25.0,9.0,122.0,40.0,200.0,870.0,293.0,0.0,363.0,69.0,72.0,175.0,48.0,59.0,4.0,56.0,1021.0,15.0,549.0,27.0,34.0,94.0,1530.0,850.0,63.0,75.0,5.0,89.0,163.0,68.0,625.0,130.0,7.0,1070.0,77.0,45.0,2623.0,162.0,887.0,45.0,290.0,838.0,2.0,174.0,545.0,82.0,24.0,596.0,394.0,15.0,277.0,232.0,172.0,16.0,584.0,14.0,410.0,40.0,72.0,100.0,22.0,1219.0,483.0,289.0,2724.0,0.0,567.0,1705.0,773.0,170.0,161.0,651.0,9.0,87.0,295.0,136.0,27.0,25.0,321.0,1873.0,50.0,44.0,821.0,23.0,15.0,237.0,210.0,134.0,820.0,18.0,123.0,33.0,3.0,7.0,56.0,64.0,324.0,121.0,1177.0,892.0,27.0,141.0,13.0,55.0,1.0,210.0,42.0,879.0,34.0,203.0,422.0,57.0,48.0,14.0,58.0,154.0,66.0,1069.0,482.0,160.0,102.0,68.0,38.0,30.0,149.0,183.0,38.0,28.0,47.0,32.0,42.0,41.0,154.0,531.0,145.0,94.0,168.0,151.0,7.0,1.0,172.0,30.0,745.0,57.0,13.0,125.0,16.0,26.0,7.0,10.0,11.0,373.0,64.0,95.0,163.0,5.0,645.0,353.0,43.0,354.0,57.0,157.0,70.0,13.0,18.0,187.0,8.0,15.0,34.0,1.0,728.0,59.0,129.0,9.0,72.0,23.0,10.0,1.0,6.0,185.0,108.0,62.0,3.0,796.0,186.0,119.0,24.0,19.0,50.0,28.0,1953.0,264.0,26.0,53.0,26.0,62.0,583.0,8.0,664.0,32.0,4.0,113.0,46.0,103.0,50.0,50.0,458.0,133.0,41.184465219699995,2017-03-26,,2017-12,41.428048352799976,47.820515296100005, +205,205,257.0,4.0,6.0,6.0,251.0,89.0,8.0,104.0,266.0,152.0,22.0,2047.0,1.0,10.0,48.0,2.0,39.0,3.0,268.0,42.0,13.0,62.0,101.0,224.0,45.0,368.0,29.0,2.0,59.0,17.0,4.0,147.0,612.0,53.0,0.0,18.0,49.0,30.0,181.0,249.0,1.0,1663.0,174.0,239.0,21.0,108.0,4.0,23.0,1298.0,107.0,146.0,517.0,90.0,18.0,27.0,43.0,96.0,695.0,312.0,187.0,0.0,112.0,2.0,130.0,3.0,132.0,124.0,90.0,396.0,3.0,17.0,102.0,12.0,279.0,23.0,132.0,377.0,81.0,0.0,23.0,436.0,76.0,608.0,28.0,20.0,110.0,27.0,154.0,867.0,323.0,0.0,364.0,54.0,56.0,213.0,39.0,50.0,1.0,71.0,970.0,12.0,478.0,22.0,24.0,68.0,1417.0,752.0,30.0,68.0,5.0,118.0,178.0,63.0,630.0,89.0,3.0,1115.0,73.0,60.0,2183.0,156.0,932.0,62.0,295.0,887.0,0.0,140.0,497.0,119.0,18.0,594.0,338.0,9.0,283.0,276.0,183.0,17.0,587.0,9.0,360.0,48.0,123.0,72.0,29.0,1193.0,476.0,281.0,2513.0,2.0,587.0,1550.0,821.0,158.0,144.0,564.0,14.0,52.0,339.0,101.0,34.0,46.0,125.0,1634.0,45.0,56.0,1606.0,55.0,23.0,256.0,218.0,122.0,696.0,7.0,150.0,34.0,1.0,2.0,40.0,93.0,388.0,122.0,909.0,866.0,35.0,114.0,14.0,58.0,0.0,221.0,29.0,961.0,39.0,183.0,381.0,45.0,33.0,6.0,46.0,82.0,61.0,1145.0,423.0,92.0,91.0,55.0,26.0,21.0,149.0,178.0,53.0,18.0,38.0,36.0,32.0,45.0,153.0,501.0,122.0,67.0,162.0,148.0,13.0,0.0,181.0,19.0,766.0,26.0,16.0,138.0,21.0,97.0,4.0,11.0,12.0,177.0,64.0,76.0,165.0,14.0,459.0,300.0,39.0,409.0,107.0,126.0,80.0,9.0,22.0,186.0,11.0,15.0,35.0,0.0,696.0,64.0,114.0,12.0,91.0,18.0,8.0,1.0,16.0,130.0,85.0,43.0,3.0,725.0,142.0,127.0,30.0,23.0,35.0,31.0,1908.0,285.0,22.0,63.0,46.0,74.0,449.0,10.0,621.0,26.0,4.0,98.0,37.0,82.0,45.0,34.0,341.0,79.0,34.960770763,2017-04-02,,2017-13,34.95538871562022,39.61578676512, +206,206,255.0,7.0,10.0,1.0,269.0,92.0,7.0,104.0,234.0,169.0,22.0,891.0,0.0,11.0,48.0,4.0,49.0,2.0,284.0,41.0,15.0,74.0,116.0,216.0,42.0,419.0,26.0,4.0,55.0,16.0,22.0,135.0,595.0,78.0,11.0,8.0,25.0,34.0,119.0,210.0,3.0,931.0,135.0,218.0,9.0,146.0,6.0,32.0,1187.0,97.0,157.0,449.0,99.0,21.0,37.0,44.0,82.0,574.0,261.0,226.0,6.0,85.0,1.0,120.0,1.0,122.0,131.0,84.0,423.0,4.0,29.0,88.0,4.0,266.0,25.0,135.0,369.0,94.0,3.0,19.0,410.0,74.0,593.0,45.0,12.0,69.0,29.0,176.0,786.0,259.0,0.0,426.0,55.0,64.0,181.0,26.0,50.0,3.0,71.0,925.0,12.0,434.0,23.0,33.0,83.0,1259.0,612.0,29.0,80.0,4.0,68.0,147.0,63.0,604.0,120.0,8.0,1011.0,47.0,58.0,2525.0,148.0,1116.0,22.0,240.0,1131.0,1.0,125.0,389.0,89.0,22.0,565.0,329.0,15.0,253.0,233.0,173.0,18.0,535.0,9.0,389.0,55.0,58.0,99.0,31.0,1109.0,721.0,241.0,2447.0,3.0,484.0,1473.0,635.0,187.0,94.0,608.0,9.0,54.0,363.0,115.0,50.0,17.0,119.0,1478.0,35.0,42.0,932.0,38.0,10.0,202.0,206.0,129.0,628.0,13.0,155.0,54.0,3.0,0.0,51.0,80.0,359.0,117.0,904.0,821.0,17.0,119.0,10.0,37.0,0.0,197.0,32.0,913.0,34.0,165.0,370.0,64.0,28.0,5.0,43.0,53.0,35.0,1054.0,398.0,97.0,70.0,41.0,27.0,21.0,136.0,193.0,5.0,27.0,36.0,27.0,40.0,40.0,145.0,388.0,106.0,87.0,197.0,167.0,11.0,1.0,202.0,30.0,676.0,20.0,11.0,113.0,31.0,37.0,3.0,12.0,9.0,167.0,57.0,105.0,142.0,8.0,472.0,273.0,45.0,335.0,104.0,150.0,56.0,8.0,21.0,155.0,19.0,8.0,30.0,0.0,713.0,66.0,119.0,11.0,54.0,25.0,19.0,0.0,61.0,155.0,92.0,48.0,9.0,580.0,181.0,89.0,19.0,13.0,28.0,30.0,1783.0,256.0,31.0,57.0,44.0,49.0,579.0,10.0,659.0,20.0,4.0,92.0,83.0,82.0,34.0,38.0,376.0,87.0,29.542097488899998,2017-04-09,,2017-14,28.854288846306815,38.21021308248, +207,207,256.0,6.0,6.0,1.0,226.0,128.0,11.0,101.0,241.0,158.0,30.0,813.0,2.0,8.0,42.0,4.0,52.0,4.0,272.0,43.0,17.0,76.0,115.0,194.0,51.0,335.0,26.0,4.0,59.0,21.0,34.0,179.0,590.0,81.0,11.0,10.0,35.0,79.0,145.0,211.0,6.0,833.0,137.0,220.0,13.0,103.0,8.0,33.0,1262.0,85.0,144.0,518.0,115.0,20.0,26.0,63.0,68.0,611.0,293.0,178.0,1.0,126.0,0.0,97.0,0.0,126.0,163.0,94.0,449.0,3.0,22.0,90.0,11.0,327.0,33.0,153.0,379.0,75.0,1.0,20.0,433.0,66.0,584.0,29.0,7.0,95.0,49.0,157.0,1867.0,448.0,0.0,422.0,68.0,89.0,172.0,30.0,32.0,10.0,67.0,917.0,14.0,424.0,15.0,25.0,94.0,1261.0,554.0,45.0,69.0,4.0,86.0,157.0,59.0,561.0,101.0,4.0,1008.0,56.0,50.0,2089.0,146.0,1198.0,46.0,345.0,1004.0,0.0,174.0,455.0,103.0,22.0,535.0,359.0,17.0,286.0,209.0,156.0,27.0,508.0,13.0,345.0,35.0,72.0,105.0,25.0,1176.0,536.0,267.0,3254.0,1.0,488.0,1406.0,724.0,185.0,111.0,617.0,11.0,58.0,356.0,102.0,50.0,16.0,104.0,1526.0,52.0,54.0,788.0,21.0,4.0,261.0,208.0,131.0,720.0,6.0,120.0,39.0,2.0,1.0,55.0,82.0,395.0,103.0,831.0,898.0,18.0,109.0,10.0,62.0,0.0,230.0,33.0,885.0,45.0,134.0,366.0,79.0,44.0,10.0,43.0,54.0,36.0,1063.0,381.0,112.0,83.0,39.0,44.0,20.0,106.0,169.0,24.0,16.0,33.0,44.0,49.0,53.0,185.0,420.0,188.0,95.0,227.0,128.0,4.0,0.0,194.0,18.0,708.0,17.0,22.0,127.0,251.0,33.0,18.0,22.0,4.0,174.0,39.0,88.0,106.0,9.0,552.0,283.0,41.0,345.0,42.0,180.0,63.0,17.0,13.0,237.0,8.0,9.0,32.0,2.0,633.0,68.0,123.0,17.0,58.0,16.0,11.0,1.0,13.0,199.0,86.0,45.0,7.0,672.0,146.0,109.0,40.0,23.0,23.0,32.0,1983.0,261.0,18.0,92.0,46.0,65.0,555.0,10.0,681.0,14.0,6.0,88.0,38.0,109.0,36.0,21.0,392.0,113.0,30.4674698001,2017-04-16,,2017-15,30.247264347101066,37.029217174719996, +208,208,184.0,6.0,3.0,3.0,238.0,79.0,9.0,119.0,158.0,92.0,19.0,758.0,1.0,10.0,35.0,2.0,53.0,4.0,313.0,47.0,10.0,72.0,92.0,246.0,67.0,300.0,24.0,6.0,52.0,44.0,1.0,131.0,558.0,101.0,1.0,7.0,48.0,37.0,266.0,179.0,10.0,12848.0,160.0,174.0,12.0,84.0,13.0,35.0,1232.0,84.0,123.0,501.0,90.0,27.0,38.0,51.0,64.0,788.0,254.0,280.0,5.0,134.0,2.0,180.0,1.0,122.0,98.0,146.0,358.0,1.0,19.0,88.0,14.0,215.0,29.0,127.0,318.0,95.0,1.0,18.0,708.0,80.0,500.0,19.0,8.0,99.0,24.0,190.0,1362.0,190.0,29.0,349.0,70.0,59.0,285.0,37.0,43.0,0.0,67.0,880.0,10.0,364.0,25.0,20.0,70.0,1480.0,1008.0,504.0,75.0,10.0,73.0,91.0,54.0,555.0,136.0,2.0,1059.0,26.0,70.0,2178.0,105.0,1357.0,81.0,259.0,838.0,1.0,149.0,439.0,95.0,15.0,634.0,334.0,33.0,351.0,223.0,161.0,14.0,594.0,14.0,347.0,35.0,80.0,101.0,41.0,1072.0,413.0,234.0,2132.0,1.0,453.0,1380.0,736.0,428.0,104.0,429.0,10.0,59.0,411.0,108.0,47.0,27.0,376.0,1789.0,33.0,32.0,677.0,15.0,14.0,265.0,170.0,145.0,610.0,8.0,154.0,28.0,2.0,3.0,66.0,96.0,325.0,164.0,658.0,750.0,10.0,108.0,7.0,62.0,2.0,102.0,39.0,904.0,81.0,100.0,373.0,70.0,38.0,14.0,47.0,59.0,39.0,789.0,346.0,155.0,59.0,26.0,32.0,30.0,148.0,173.0,19.0,18.0,50.0,42.0,24.0,68.0,139.0,892.0,77.0,81.0,213.0,161.0,7.0,2.0,161.0,26.0,522.0,14.0,11.0,148.0,15.0,52.0,7.0,17.0,6.0,180.0,31.0,122.0,188.0,6.0,679.0,319.0,57.0,343.0,36.0,123.0,65.0,7.0,19.0,190.0,7.0,8.0,26.0,1.0,647.0,104.0,167.0,5.0,81.0,20.0,9.0,1.0,69.0,175.0,95.0,55.0,10.0,858.0,158.0,67.0,41.0,53.0,49.0,28.0,845.0,172.0,22.0,47.0,62.0,98.0,560.0,7.0,662.0,24.0,6.0,120.0,40.0,194.0,71.0,35.0,239.0,116.0,33.3827605214,2017-10-22,,2017-42,33.70134602752549,34.18020841712001, +209,209,194.0,7.0,2.0,0.0,300.0,87.0,7.0,137.0,154.0,99.0,18.0,831.0,3.0,7.0,49.0,1.0,56.0,3.0,304.0,55.0,8.0,86.0,112.0,187.0,63.0,370.0,20.0,13.0,69.0,32.0,3.0,129.0,603.0,118.0,3.0,11.0,49.0,34.0,198.0,146.0,17.0,24515.0,138.0,216.0,17.0,74.0,9.0,34.0,1285.0,72.0,132.0,497.0,111.0,11.0,39.0,34.0,85.0,906.0,266.0,224.0,5.0,116.0,2.0,114.0,2.0,125.0,120.0,103.0,337.0,5.0,19.0,56.0,15.0,188.0,31.0,123.0,290.0,107.0,1.0,24.0,604.0,86.0,522.0,18.0,3.0,98.0,16.0,234.0,1036.0,213.0,25.0,351.0,87.0,77.0,276.0,38.0,39.0,0.0,53.0,874.0,8.0,351.0,37.0,19.0,76.0,1255.0,907.0,583.0,70.0,4.0,84.0,133.0,53.0,557.0,226.0,3.0,949.0,31.0,56.0,2339.0,114.0,1009.0,72.0,269.0,763.0,2.0,158.0,483.0,99.0,30.0,618.0,362.0,40.0,393.0,215.0,129.0,11.0,623.0,2.0,327.0,44.0,65.0,68.0,17.0,1048.0,389.0,265.0,2060.0,1.0,432.0,1448.0,832.0,284.0,89.0,460.0,12.0,59.0,517.0,144.0,39.0,36.0,517.0,1767.0,36.0,24.0,579.0,20.0,10.0,314.0,170.0,127.0,613.0,9.0,224.0,23.0,0.0,2.0,37.0,93.0,349.0,159.0,1175.0,752.0,25.0,89.0,7.0,55.0,1.0,152.0,70.0,935.0,65.0,141.0,445.0,112.0,23.0,13.0,39.0,68.0,50.0,727.0,349.0,179.0,93.0,47.0,42.0,14.0,124.0,195.0,36.0,32.0,45.0,50.0,35.0,58.0,157.0,783.0,105.0,83.0,182.0,177.0,11.0,2.0,233.0,121.0,467.0,9.0,17.0,150.0,16.0,61.0,10.0,11.0,6.0,156.0,24.0,171.0,159.0,12.0,780.0,322.0,42.0,297.0,49.0,134.0,63.0,4.0,27.0,198.0,15.0,15.0,38.0,2.0,733.0,79.0,194.0,10.0,65.0,50.0,22.0,3.0,45.0,199.0,110.0,49.0,9.0,777.0,215.0,74.0,40.0,45.0,63.0,36.0,858.0,164.0,20.0,62.0,55.0,63.0,619.0,9.0,583.0,21.0,9.0,122.0,32.0,100.0,44.0,25.0,221.0,66.0,23.4019791388,2017-10-29,,2017-43,23.304998053865518,34.28163680502001, +210,210,181.0,14.0,2.0,0.0,268.0,89.0,12.0,96.0,152.0,110.0,18.0,916.0,5.0,11.0,46.0,2.0,56.0,2.0,302.0,57.0,13.0,68.0,100.0,161.0,84.0,375.0,43.0,19.0,75.0,36.0,4.0,122.0,502.0,90.0,1.0,10.0,50.0,35.0,140.0,161.0,11.0,11546.0,182.0,201.0,17.0,81.0,10.0,35.0,1306.0,99.0,106.0,490.0,105.0,32.0,34.0,53.0,63.0,870.0,271.0,237.0,5.0,114.0,2.0,173.0,0.0,160.0,124.0,82.0,355.0,7.0,28.0,59.0,13.0,146.0,51.0,114.0,410.0,118.0,7.0,22.0,567.0,82.0,599.0,25.0,12.0,98.0,15.0,166.0,935.0,193.0,43.0,334.0,93.0,55.0,337.0,41.0,41.0,3.0,55.0,877.0,15.0,426.0,21.0,24.0,76.0,1299.0,944.0,835.0,64.0,5.0,92.0,128.0,82.0,613.0,163.0,6.0,1020.0,47.0,55.0,2297.0,142.0,1297.0,63.0,264.0,799.0,2.0,161.0,544.0,90.0,24.0,703.0,456.0,40.0,412.0,251.0,231.0,23.0,723.0,7.0,353.0,52.0,52.0,73.0,26.0,1167.0,465.0,263.0,2144.0,2.0,436.0,1569.0,1056.0,344.0,106.0,561.0,13.0,48.0,450.0,139.0,34.0,34.0,319.0,2073.0,43.0,40.0,563.0,28.0,18.0,289.0,188.0,142.0,707.0,17.0,114.0,23.0,1.0,12.0,63.0,81.0,355.0,172.0,782.0,798.0,21.0,119.0,5.0,78.0,3.0,100.0,48.0,886.0,89.0,188.0,519.0,60.0,30.0,5.0,41.0,53.0,52.0,714.0,387.0,247.0,76.0,37.0,19.0,12.0,128.0,205.0,56.0,17.0,48.0,50.0,40.0,72.0,180.0,746.0,156.0,97.0,241.0,251.0,13.0,3.0,203.0,38.0,527.0,13.0,18.0,136.0,23.0,57.0,16.0,24.0,14.0,179.0,29.0,122.0,152.0,10.0,667.0,308.0,59.0,322.0,36.0,155.0,66.0,10.0,17.0,219.0,24.0,14.0,32.0,3.0,790.0,89.0,163.0,9.0,48.0,15.0,14.0,3.0,65.0,189.0,92.0,50.0,7.0,781.0,148.0,75.0,26.0,33.0,121.0,32.0,824.0,182.0,22.0,70.0,27.0,56.0,609.0,12.0,622.0,28.0,32.0,133.0,33.0,130.0,31.0,36.0,237.0,95.0,24.213991146799998,2017-11-05,,2017-44,24.16873889789585,34.32399228648, +211,211,208.0,11.0,5.0,0.0,358.0,68.0,4.0,127.0,145.0,125.0,23.0,846.0,0.0,6.0,35.0,0.0,65.0,3.0,285.0,59.0,23.0,86.0,95.0,215.0,77.0,371.0,40.0,9.0,68.0,21.0,10.0,111.0,544.0,98.0,4.0,6.0,50.0,23.0,161.0,205.0,18.0,3280.0,178.0,207.0,16.0,90.0,10.0,42.0,1310.0,117.0,81.0,468.0,89.0,34.0,33.0,44.0,80.0,992.0,309.0,194.0,8.0,121.0,0.0,192.0,2.0,94.0,138.0,100.0,379.0,2.0,26.0,69.0,15.0,181.0,41.0,147.0,269.0,136.0,8.0,22.0,436.0,67.0,531.0,23.0,12.0,107.0,23.0,158.0,871.0,202.0,35.0,383.0,67.0,55.0,281.0,39.0,36.0,2.0,37.0,1205.0,8.0,431.0,22.0,31.0,68.0,1230.0,994.0,675.0,88.0,5.0,72.0,163.0,91.0,615.0,166.0,3.0,1986.0,52.0,58.0,2080.0,111.0,1022.0,53.0,272.0,805.0,1.0,154.0,562.0,98.0,19.0,684.0,366.0,34.0,408.0,300.0,138.0,23.0,728.0,11.0,421.0,43.0,93.0,75.0,31.0,1185.0,467.0,267.0,2280.0,1.0,523.0,1541.0,1169.0,390.0,102.0,539.0,9.0,64.0,414.0,138.0,46.0,33.0,190.0,1974.0,28.0,39.0,653.0,25.0,11.0,313.0,230.0,150.0,529.0,5.0,135.0,36.0,5.0,1.0,54.0,81.0,403.0,166.0,896.0,870.0,20.0,128.0,14.0,60.0,1.0,148.0,63.0,926.0,64.0,126.0,433.0,65.0,36.0,20.0,41.0,45.0,52.0,684.0,423.0,175.0,140.0,21.0,28.0,14.0,147.0,298.0,65.0,22.0,51.0,29.0,43.0,77.0,201.0,694.0,139.0,82.0,227.0,269.0,10.0,2.0,211.0,20.0,581.0,19.0,16.0,152.0,25.0,35.0,3.0,3.0,6.0,152.0,31.0,125.0,169.0,3.0,847.0,310.0,31.0,299.0,45.0,139.0,63.0,9.0,16.0,227.0,63.0,16.0,30.0,1.0,797.0,93.0,215.0,19.0,64.0,23.0,17.0,0.0,31.0,187.0,107.0,45.0,6.0,887.0,142.0,84.0,38.0,40.0,78.0,47.0,911.0,188.0,28.0,60.0,49.0,51.0,575.0,2.0,590.0,25.0,5.0,147.0,35.0,127.0,75.0,39.0,291.0,87.0,42.0664326047,2017-11-12,,2017-45,42.38586402671709,42.0664326047, +212,212,152.0,5.0,4.0,4.0,319.0,63.0,15.0,105.0,164.0,135.0,20.0,988.0,1.0,14.0,47.0,0.0,53.0,5.0,253.0,67.0,18.0,84.0,138.0,174.0,89.0,378.0,36.0,18.0,61.0,18.0,1.0,132.0,520.0,91.0,2.0,15.0,43.0,34.0,147.0,189.0,8.0,2547.0,169.0,233.0,11.0,98.0,7.0,17.0,1314.0,127.0,102.0,528.0,98.0,32.0,24.0,55.0,82.0,1065.0,330.0,158.0,1.0,136.0,0.0,134.0,5.0,114.0,134.0,86.0,385.0,3.0,25.0,66.0,8.0,167.0,51.0,113.0,318.0,96.0,0.0,16.0,450.0,71.0,558.0,37.0,6.0,105.0,14.0,170.0,888.0,210.0,15.0,349.0,45.0,59.0,267.0,34.0,61.0,1.0,22.0,966.0,16.0,408.0,35.0,45.0,98.0,1386.0,990.0,356.0,115.0,2.0,81.0,128.0,57.0,735.0,155.0,6.0,1155.0,39.0,32.0,1980.0,137.0,1078.0,37.0,271.0,833.0,0.0,176.0,536.0,123.0,17.0,650.0,353.0,30.0,357.0,292.0,131.0,30.0,648.0,7.0,387.0,34.0,86.0,200.0,38.0,1183.0,381.0,277.0,2360.0,0.0,476.0,1622.0,1169.0,348.0,99.0,548.0,6.0,58.0,437.0,143.0,44.0,56.0,196.0,2039.0,44.0,48.0,598.0,33.0,3.0,246.0,160.0,156.0,514.0,13.0,161.0,36.0,1.0,5.0,40.0,90.0,377.0,129.0,1131.0,887.0,18.0,85.0,10.0,96.0,0.0,174.0,49.0,865.0,81.0,145.0,466.0,61.0,31.0,14.0,55.0,42.0,65.0,675.0,396.0,201.0,91.0,38.0,49.0,13.0,136.0,186.0,24.0,28.0,42.0,31.0,35.0,78.0,185.0,921.0,122.0,78.0,221.0,424.0,8.0,2.0,165.0,30.0,600.0,20.0,19.0,148.0,25.0,33.0,5.0,4.0,13.0,169.0,34.0,139.0,152.0,14.0,591.0,309.0,41.0,322.0,39.0,122.0,85.0,4.0,11.0,221.0,16.0,13.0,25.0,3.0,794.0,92.0,196.0,11.0,77.0,46.0,27.0,0.0,33.0,166.0,111.0,42.0,5.0,996.0,153.0,61.0,34.0,30.0,58.0,40.0,893.0,188.0,24.0,54.0,47.0,68.0,563.0,7.0,611.0,29.0,6.0,122.0,41.0,107.0,49.0,30.0,364.0,92.0,32.8688380484,2017-11-19,,2017-46,32.469740903657765,31.137868668080003, +213,213,160.0,5.0,6.0,2.0,292.0,70.0,6.0,110.0,172.0,126.0,16.0,1109.0,3.0,12.0,33.0,1.0,51.0,4.0,280.0,45.0,14.0,93.0,121.0,230.0,112.0,272.0,31.0,12.0,57.0,26.0,8.0,134.0,558.0,101.0,1.0,12.0,31.0,31.0,155.0,175.0,4.0,1944.0,155.0,205.0,17.0,107.0,12.0,27.0,1230.0,126.0,86.0,479.0,117.0,27.0,27.0,42.0,65.0,1231.0,309.0,194.0,4.0,87.0,1.0,140.0,1.0,141.0,105.0,108.0,339.0,3.0,6.0,72.0,4.0,149.0,52.0,137.0,257.0,118.0,2.0,19.0,408.0,70.0,563.0,46.0,11.0,125.0,16.0,166.0,792.0,203.0,1.0,383.0,68.0,49.0,277.0,45.0,42.0,1.0,31.0,883.0,8.0,384.0,40.0,43.0,97.0,1222.0,967.0,218.0,116.0,5.0,97.0,130.0,55.0,707.0,140.0,8.0,1051.0,33.0,51.0,1982.0,141.0,1007.0,47.0,274.0,771.0,0.0,143.0,524.0,97.0,20.0,653.0,318.0,32.0,312.0,284.0,102.0,10.0,648.0,4.0,336.0,35.0,92.0,81.0,30.0,1257.0,429.0,222.0,2282.0,0.0,528.0,1579.0,1066.0,318.0,92.0,465.0,10.0,70.0,366.0,123.0,40.0,38.0,216.0,2013.0,41.0,32.0,659.0,24.0,9.0,254.0,174.0,137.0,472.0,10.0,174.0,20.0,1.0,1.0,47.0,92.0,465.0,137.0,1315.0,865.0,23.0,68.0,11.0,123.0,0.0,148.0,43.0,875.0,122.0,130.0,431.0,54.0,33.0,11.0,47.0,36.0,66.0,683.0,371.0,173.0,108.0,32.0,27.0,23.0,130.0,240.0,29.0,16.0,38.0,33.0,38.0,65.0,203.0,937.0,119.0,83.0,206.0,1091.0,9.0,1.0,185.0,33.0,626.0,10.0,20.0,149.0,16.0,89.0,10.0,16.0,6.0,165.0,23.0,161.0,503.0,15.0,607.0,320.0,46.0,311.0,48.0,150.0,98.0,10.0,11.0,238.0,17.0,14.0,16.0,1.0,747.0,79.0,163.0,10.0,87.0,44.0,27.0,0.0,23.0,206.0,121.0,41.0,6.0,935.0,144.0,82.0,25.0,73.0,52.0,42.0,1067.0,185.0,25.0,58.0,21.0,55.0,470.0,4.0,523.0,40.0,4.0,102.0,31.0,114.0,51.0,25.0,264.0,80.0,30.9221591209,2017-11-26,,2017-47,30.863434698520052,33.54034960316, +214,214,172.0,7.0,6.0,3.0,262.0,73.0,9.0,94.0,170.0,140.0,21.0,915.0,1.0,6.0,38.0,0.0,38.0,3.0,271.0,50.0,14.0,77.0,92.0,198.0,60.0,276.0,15.0,5.0,56.0,26.0,6.0,119.0,534.0,89.0,3.0,10.0,30.0,41.0,171.0,163.0,3.0,1518.0,190.0,213.0,23.0,70.0,6.0,26.0,1148.0,117.0,86.0,443.0,94.0,29.0,16.0,23.0,63.0,1226.0,245.0,229.0,5.0,102.0,1.0,127.0,1.0,95.0,88.0,96.0,364.0,1.0,20.0,67.0,7.0,151.0,30.0,111.0,267.0,108.0,1.0,16.0,380.0,86.0,514.0,24.0,9.0,142.0,5.0,147.0,857.0,260.0,0.0,296.0,82.0,46.0,272.0,31.0,40.0,1.0,35.0,814.0,12.0,402.0,21.0,29.0,87.0,1253.0,1110.0,177.0,74.0,4.0,86.0,148.0,61.0,569.0,134.0,4.0,1007.0,26.0,52.0,2008.0,148.0,956.0,46.0,254.0,797.0,0.0,143.0,438.0,103.0,12.0,592.0,303.0,25.0,307.0,222.0,109.0,15.0,599.0,3.0,335.0,56.0,74.0,107.0,27.0,1336.0,391.0,198.0,1936.0,0.0,427.0,1482.0,1080.0,351.0,93.0,505.0,7.0,61.0,362.0,119.0,39.0,15.0,194.0,2103.0,31.0,40.0,550.0,48.0,10.0,273.0,182.0,117.0,465.0,9.0,196.0,68.0,2.0,4.0,42.0,89.0,407.0,113.0,1744.0,769.0,23.0,119.0,11.0,212.0,0.0,108.0,31.0,812.0,86.0,130.0,399.0,54.0,45.0,9.0,35.0,44.0,63.0,653.0,335.0,158.0,76.0,39.0,45.0,18.0,121.0,192.0,24.0,11.0,32.0,34.0,37.0,56.0,207.0,926.0,128.0,78.0,212.0,819.0,11.0,1.0,172.0,34.0,573.0,14.0,26.0,134.0,18.0,55.0,6.0,9.0,4.0,193.0,38.0,164.0,188.0,9.0,531.0,318.0,42.0,302.0,32.0,112.0,112.0,11.0,10.0,197.0,15.0,12.0,36.0,0.0,693.0,81.0,162.0,8.0,66.0,30.0,20.0,0.0,19.0,194.0,94.0,49.0,10.0,983.0,138.0,57.0,33.0,45.0,70.0,21.0,947.0,169.0,23.0,46.0,40.0,37.0,535.0,5.0,527.0,48.0,5.0,108.0,34.0,94.0,47.0,30.0,276.0,66.0,37.8588237041,2017-12-03,,2017-48,37.65581307611629,50.10352948164, +215,215,165.0,4.0,6.0,3.0,230.0,60.0,5.0,112.0,173.0,108.0,14.0,857.0,1.0,5.0,41.0,5.0,36.0,3.0,248.0,46.0,12.0,75.0,98.0,168.0,63.0,286.0,19.0,5.0,55.0,18.0,8.0,118.0,532.0,84.0,2.0,26.0,40.0,31.0,135.0,124.0,4.0,1238.0,127.0,236.0,12.0,54.0,16.0,21.0,1164.0,130.0,76.0,355.0,82.0,25.0,20.0,37.0,46.0,1295.0,221.0,201.0,6.0,100.0,3.0,122.0,4.0,130.0,96.0,110.0,334.0,2.0,12.0,78.0,8.0,137.0,38.0,93.0,187.0,94.0,2.0,25.0,368.0,62.0,520.0,29.0,13.0,93.0,18.0,130.0,715.0,168.0,1.0,316.0,84.0,80.0,297.0,28.0,46.0,5.0,46.0,813.0,12.0,377.0,23.0,36.0,91.0,1242.0,1041.0,135.0,44.0,5.0,57.0,109.0,73.0,460.0,79.0,2.0,941.0,31.0,49.0,2190.0,147.0,840.0,49.0,236.0,854.0,1.0,131.0,415.0,83.0,17.0,560.0,267.0,35.0,331.0,185.0,96.0,13.0,494.0,11.0,325.0,37.0,51.0,111.0,28.0,1257.0,461.0,237.0,1822.0,3.0,408.0,1342.0,1013.0,381.0,98.0,522.0,15.0,58.0,372.0,124.0,73.0,37.0,176.0,2091.0,23.0,26.0,564.0,29.0,6.0,297.0,141.0,117.0,463.0,7.0,119.0,24.0,1.0,3.0,47.0,77.0,394.0,107.0,2082.0,771.0,23.0,64.0,8.0,74.0,2.0,73.0,28.0,677.0,110.0,115.0,422.0,39.0,41.0,12.0,35.0,36.0,40.0,556.0,359.0,150.0,103.0,30.0,18.0,32.0,139.0,189.0,16.0,19.0,30.0,28.0,28.0,63.0,254.0,709.0,122.0,70.0,199.0,843.0,12.0,1.0,186.0,26.0,493.0,10.0,14.0,146.0,23.0,65.0,1.0,7.0,9.0,150.0,31.0,93.0,103.0,5.0,558.0,233.0,40.0,241.0,36.0,126.0,74.0,12.0,7.0,161.0,8.0,13.0,29.0,2.0,601.0,67.0,185.0,7.0,77.0,28.0,19.0,1.0,32.0,200.0,88.0,60.0,8.0,967.0,141.0,81.0,581.0,43.0,43.0,37.0,867.0,142.0,34.0,56.0,40.0,53.0,480.0,12.0,481.0,21.0,3.0,79.0,44.0,110.0,36.0,43.0,263.0,73.0,36.374163951,2017-12-10,,2017-49,36.181057984156155,52.62620896186001, +216,216,167.0,6.0,6.0,5.0,173.0,70.0,10.0,117.0,127.0,118.0,22.0,950.0,1.0,9.0,36.0,4.0,51.0,5.0,212.0,45.0,7.0,81.0,119.0,161.0,58.0,320.0,26.0,15.0,39.0,33.0,6.0,115.0,455.0,66.0,1.0,15.0,44.0,33.0,146.0,176.0,5.0,1108.0,147.0,213.0,7.0,68.0,7.0,23.0,1085.0,161.0,71.0,475.0,77.0,30.0,57.0,43.0,67.0,1356.0,273.0,229.0,7.0,99.0,0.0,90.0,0.0,92.0,107.0,183.0,285.0,2.0,13.0,62.0,6.0,164.0,45.0,96.0,228.0,89.0,0.0,22.0,394.0,47.0,479.0,34.0,6.0,87.0,13.0,130.0,926.0,179.0,0.0,300.0,52.0,53.0,284.0,40.0,53.0,3.0,33.0,761.0,4.0,405.0,14.0,35.0,77.0,1257.0,1093.0,117.0,70.0,4.0,64.0,122.0,54.0,524.0,122.0,4.0,855.0,28.0,48.0,2218.0,147.0,1185.0,56.0,239.0,795.0,0.0,102.0,426.0,133.0,15.0,594.0,307.0,33.0,315.0,246.0,112.0,19.0,436.0,7.0,439.0,30.0,65.0,110.0,32.0,1391.0,379.0,214.0,1750.0,0.0,414.0,1442.0,1130.0,368.0,95.0,527.0,14.0,43.0,341.0,155.0,54.0,31.0,157.0,2185.0,28.0,25.0,623.0,43.0,5.0,257.0,137.0,132.0,557.0,16.0,150.0,39.0,5.0,2.0,46.0,86.0,401.0,112.0,2456.0,702.0,20.0,80.0,7.0,82.0,0.0,85.0,30.0,731.0,132.0,99.0,334.0,34.0,36.0,11.0,49.0,42.0,60.0,629.0,325.0,164.0,90.0,34.0,27.0,19.0,139.0,171.0,31.0,21.0,31.0,61.0,18.0,66.0,245.0,679.0,121.0,86.0,203.0,707.0,18.0,0.0,197.0,26.0,515.0,12.0,17.0,149.0,12.0,65.0,5.0,5.0,8.0,134.0,24.0,101.0,113.0,2.0,470.0,265.0,25.0,319.0,69.0,106.0,90.0,5.0,15.0,190.0,10.0,9.0,35.0,3.0,667.0,86.0,169.0,5.0,82.0,22.0,18.0,0.0,37.0,162.0,69.0,45.0,2.0,1014.0,132.0,69.0,156.0,38.0,34.0,38.0,1136.0,152.0,24.0,39.0,40.0,53.0,527.0,8.0,463.0,21.0,10.0,62.0,25.0,133.0,38.0,42.0,250.0,99.0,51.9630913585,2017-12-17,,2017-50,53.33335288035383,49.87673703072, +217,217,138.0,8.0,6.0,1.0,143.0,53.0,2.0,69.0,122.0,75.0,8.0,661.0,4.0,5.0,15.0,0.0,38.0,3.0,175.0,25.0,4.0,52.0,63.0,123.0,37.0,200.0,15.0,5.0,33.0,17.0,4.0,90.0,361.0,52.0,6.0,10.0,40.0,13.0,110.0,134.0,1.0,942.0,99.0,190.0,7.0,48.0,7.0,18.0,694.0,74.0,68.0,282.0,59.0,35.0,14.0,29.0,51.0,1093.0,179.0,202.0,1.0,75.0,0.0,82.0,0.0,86.0,63.0,111.0,180.0,0.0,12.0,39.0,5.0,118.0,31.0,74.0,130.0,65.0,1.0,9.0,283.0,56.0,387.0,14.0,7.0,94.0,15.0,97.0,621.0,135.0,2.0,205.0,51.0,34.0,210.0,22.0,27.0,5.0,25.0,577.0,2.0,323.0,14.0,23.0,67.0,1229.0,892.0,64.0,54.0,2.0,43.0,77.0,54.0,441.0,84.0,2.0,642.0,22.0,36.0,1523.0,95.0,645.0,26.0,190.0,489.0,0.0,79.0,276.0,64.0,14.0,414.0,193.0,23.0,231.0,160.0,83.0,25.0,348.0,6.0,218.0,33.0,47.0,53.0,38.0,915.0,294.0,193.0,1310.0,1.0,274.0,1102.0,798.0,333.0,60.0,324.0,5.0,32.0,230.0,75.0,29.0,30.0,108.0,1608.0,28.0,19.0,442.0,11.0,8.0,205.0,107.0,100.0,269.0,3.0,92.0,21.0,1.0,6.0,33.0,72.0,292.0,96.0,2108.0,594.0,11.0,77.0,9.0,48.0,1.0,65.0,19.0,532.0,89.0,63.0,271.0,35.0,30.0,15.0,26.0,49.0,35.0,450.0,279.0,117.0,65.0,34.0,30.0,5.0,86.0,127.0,16.0,13.0,30.0,42.0,13.0,52.0,203.0,553.0,82.0,59.0,169.0,447.0,3.0,0.0,152.0,17.0,336.0,15.0,7.0,114.0,33.0,64.0,3.0,7.0,2.0,100.0,27.0,63.0,97.0,3.0,436.0,192.0,25.0,203.0,60.0,62.0,67.0,3.0,9.0,97.0,8.0,8.0,17.0,0.0,516.0,64.0,130.0,7.0,68.0,7.0,8.0,0.0,78.0,106.0,68.0,35.0,3.0,844.0,98.0,53.0,58.0,25.0,36.0,32.0,842.0,135.0,11.0,28.0,21.0,26.0,370.0,4.0,363.0,22.0,6.0,49.0,10.0,60.0,39.0,17.0,199.0,44.0,83.88327605020001,2017-12-24,,2017-51,83.83995998159064,80.11486231216003, +218,218,179.0,8.0,4.0,4.0,190.0,91.0,7.0,90.0,176.0,93.0,16.0,678.0,3.0,4.0,37.0,1.0,48.0,6.0,160.0,46.0,9.0,59.0,87.0,176.0,24.0,232.0,9.0,8.0,35.0,14.0,3.0,89.0,419.0,83.0,1.0,17.0,83.0,28.0,111.0,135.0,5.0,1109.0,158.0,206.0,13.0,80.0,10.0,20.0,935.0,147.0,99.0,364.0,91.0,71.0,18.0,42.0,64.0,1869.0,296.0,171.0,6.0,84.0,0.0,75.0,1.0,77.0,87.0,191.0,267.0,0.0,26.0,70.0,7.0,163.0,26.0,118.0,216.0,60.0,2.0,12.0,531.0,68.0,465.0,18.0,8.0,100.0,19.0,161.0,887.0,192.0,1.0,308.0,92.0,42.0,222.0,22.0,21.0,4.0,21.0,816.0,7.0,428.0,20.0,15.0,58.0,1354.0,2965.0,87.0,71.0,9.0,90.0,97.0,60.0,311.0,109.0,2.0,732.0,27.0,43.0,2166.0,166.0,1163.0,88.0,299.0,656.0,0.0,98.0,257.0,68.0,22.0,652.0,188.0,38.0,220.0,197.0,237.0,5.0,446.0,5.0,202.0,28.0,63.0,45.0,40.0,1379.0,327.0,206.0,2267.0,4.0,424.0,1866.0,1056.0,532.0,103.0,653.0,6.0,48.0,247.0,187.0,23.0,13.0,136.0,2631.0,33.0,46.0,662.0,29.0,5.0,384.0,84.0,145.0,399.0,5.0,64.0,28.0,6.0,4.0,57.0,107.0,538.0,86.0,2675.0,1175.0,24.0,57.0,8.0,213.0,0.0,87.0,32.0,795.0,157.0,82.0,230.0,56.0,38.0,11.0,34.0,65.0,59.0,645.0,298.0,197.0,52.0,17.0,21.0,22.0,134.0,117.0,16.0,3.0,17.0,29.0,27.0,51.0,292.0,659.0,136.0,73.0,170.0,651.0,9.0,0.0,166.0,25.0,520.0,22.0,9.0,171.0,21.0,33.0,7.0,9.0,3.0,148.0,25.0,69.0,136.0,10.0,964.0,236.0,43.0,311.0,28.0,101.0,135.0,4.0,25.0,167.0,25.0,11.0,29.0,1.0,625.0,78.0,239.0,12.0,86.0,17.0,12.0,0.0,22.0,152.0,87.0,72.0,5.0,1420.0,151.0,44.0,77.0,24.0,59.0,41.0,1345.0,228.0,42.0,66.0,8.0,34.0,656.0,4.0,537.0,24.0,6.0,40.0,24.0,78.0,19.0,27.0,380.0,130.0,54.066337044799994,2017-12-31,,2017-52,55.6287266991068,78.39624753056, +219,219,217.0,6.0,6.0,4.0,257.0,76.0,15.0,106.0,188.0,93.0,28.0,830.0,0.0,8.0,51.0,4.0,10.0,3.0,208.0,56.33333333333334,11.0,96.0,101.0,328.0,57.0,296.0,18.0,6.0,50.0,21.0,8.0,117.0,482.0,125.0,0.0,5.0,84.0,32.0,104.0,156.0,0.0,1906.0,160.0,221.0,26.0,81.0,10.0,29.0,1095.0,133.0,123.0,406.0,87.0,67.0,22.0,50.0,80.0,1766.0,282.0,259.0,2.0,99.0,0.0,102.0,3.0,121.0,126.0,166.0,349.0,2.0,23.0,53.0,21.0,205.0,46.0,115.0,232.0,84.0,2.0,31.0,614.0,73.0,538.0,21.0,5.0,129.0,14.0,139.0,853.0,224.0,0.0,373.0,65.0,51.0,270.0,26.0,26.6,6.0,42.0,1008.0,8.0,501.0,25.0,31.0,66.0,1436.0,2537.0,100.0,87.0,8.0,98.0,127.0,84.0,539.0,148.0,1.0,907.5,32.0,70.0,2335.0,194.0,1279.0,113.0,303.0,789.0,0.0,124.0,394.0,67.0,31.0,671.0,310.0,47.0,307.0,217.0,229.0,9.0,531.0,8.0,228.0,33.0,75.0,81.0,41.0,1502.0,445.0,275.0,2172.0,10.0,477.0,2008.0,1345.0,490.0,121.0,571.0,14.0,62.0,375.0,221.0,32.0,24.0,184.0,3657.0,27.0,56.0,693.0,29.0,5.0,421.0,125.0,159.0,358.0,13.0,112.0,31.0,3.0,4.333333333333333,38.0,125.0,454.0,130.0,2031.0,943.0,26.0,103.0,15.0,146.0,0.0,114.0,57.0,950.0,147.0,115.0,388.0,47.0,29.0,8.0,48.0,46.0,38.0,699.0,360.0,242.0,77.0,27.0,27.0,33.0,164.0,171.0,25.0,17.0,35.0,37.0,31.0,51.0,243.0,551.0,152.0,94.0,206.0,1481.0,17.0,2.0,244.0,33.0,530.0,4.0,24.0,239.0,34.0,46.0,3.0,9.0,12.0,173.0,37.0,143.0,188.0,2.0,855.0,281.0,49.0,315.0,53.0,146.0,126.0,9.0,13.0,192.0,32.0,11.0,38.0,2.0,849.0,79.0,213.0,7.0,132.0,37.0,15.0,0.0,16.0,198.0,99.0,80.0,5.0,1403.0,141.0,70.0,48.0,30.0,58.0,40.0,1475.0,234.0,30.0,71.0,33.0,112.0,738.0,5.0,601.0,23.0,11.0,103.0,26.0,113.0,24.0,29.0,368.0,113.0,83.01564401600001,2018-01-07,,2018-1,83.6941965734022,88.45305192966002, +220,220,159.0,9.0,2.0,4.0,338.0,123.0,10.0,154.0,191.0,121.0,19.0,1078.0,1.0,6.0,42.0,0.0,19.0,1.0,268.0,66.66666666666667,9.0,108.0,145.0,251.0,89.0,384.0,20.0,8.0,43.0,20.0,9.0,125.0,523.0,121.0,1.0,17.0,82.0,36.0,147.0,238.0,6.0,1343.0,171.0,219.0,13.0,76.0,8.0,34.0,1321.0,133.0,114.0,428.0,113.0,41.0,29.0,48.0,93.0,1580.0,330.0,309.0,5.0,137.0,0.0,166.0,5.0,136.0,110.0,174.0,410.0,3.0,32.0,74.0,7.0,230.0,49.0,155.0,268.0,121.0,5.0,27.0,490.0,95.0,508.0,19.0,4.0,123.0,20.0,110.0,908.0,188.0,0.0,334.0,79.0,51.0,294.0,28.0,32.2,11.0,29.0,1059.0,9.0,691.0,46.0,63.0,108.0,1448.0,2733.0,115.0,166.0,8.0,93.0,148.0,54.0,563.0,151.0,4.0,1083.0,26.0,53.0,2102.0,182.0,1086.0,161.0,304.0,903.0,0.0,191.0,517.0,115.0,18.0,683.0,339.0,56.0,370.0,249.0,155.0,17.0,590.0,10.0,315.0,45.0,68.0,99.0,37.0,1329.0,500.0,324.0,2440.0,2.0,496.0,1945.0,1234.0,509.0,108.0,583.0,14.0,63.0,409.0,204.0,36.0,34.0,181.0,2858.0,30.0,25.0,790.0,54.0,10.0,487.0,167.0,157.0,401.0,7.0,159.0,38.0,4.0,4.666666666666667,71.0,96.0,415.0,178.0,1776.0,863.0,23.0,108.0,19.0,81.0,2.0,133.0,55.0,919.0,138.0,128.0,438.0,50.0,60.0,9.0,51.0,53.0,48.0,712.0,360.0,191.0,74.0,31.0,22.0,23.0,175.0,238.0,17.0,20.0,46.0,40.0,34.0,59.0,292.0,651.0,147.0,96.0,256.0,531.0,19.0,2.0,321.0,27.0,635.0,7.0,36.0,208.0,28.0,43.0,7.0,14.0,12.0,173.0,32.0,182.0,162.0,7.0,857.0,271.0,70.0,447.0,61.0,172.0,65.0,7.0,24.0,218.0,26.0,14.0,34.0,1.0,879.0,81.0,244.0,10.0,86.0,48.0,31.0,0.0,25.0,203.0,94.0,57.0,3.0,1103.0,153.0,102.0,63.0,45.0,103.0,23.0,1159.0,213.0,16.0,75.0,8.0,79.0,710.0,9.0,636.0,18.0,7.0,121.0,37.0,119.0,37.0,55.0,440.0,86.0,98.2888799535,2018-01-14,,2018-2,97.89279203409885,102.15798176386001, +221,221,145.0,7.0,5.0,0.0,301.0,78.0,10.0,124.0,198.0,151.0,19.0,1419.0,0.0,9.0,54.0,3.0,14.0,1.0,268.0,77.0,16.0,79.0,126.0,204.0,72.0,368.0,32.0,8.0,62.0,32.0,5.0,109.0,516.0,104.0,6.0,14.0,100.0,26.0,173.0,273.0,4.0,1600.0,202.0,210.0,17.0,95.0,15.0,26.0,1536.0,121.0,103.0,502.0,96.0,24.0,31.0,78.0,100.0,1771.0,274.0,309.0,6.0,111.0,1.0,178.0,2.0,120.0,100.0,169.0,399.0,1.0,31.0,65.0,11.0,238.0,54.0,162.0,319.0,123.0,1.0,26.0,948.0,68.0,595.0,27.0,7.0,219.0,26.0,134.0,1079.0,232.0,1.0,314.0,73.0,62.0,316.0,64.0,37.8,2.0,34.0,1660.0,49.0,2077.0,35.0,29.0,119.0,1589.0,2905.0,161.0,141.0,5.0,86.0,155.0,73.0,638.0,141.0,2.0,1159.0,35.0,75.0,2099.0,187.0,1463.0,125.0,253.0,946.0,0.0,167.0,627.0,124.0,21.0,721.0,393.0,82.0,418.0,249.0,146.0,18.0,639.0,5.0,328.0,38.0,58.0,106.0,50.0,1628.0,482.0,327.0,2556.0,2.0,479.0,2388.0,1290.0,613.0,135.0,701.0,119.0,50.0,450.0,134.0,62.0,31.0,226.0,2979.0,37.0,71.0,851.0,33.0,8.0,501.0,162.0,142.0,426.0,8.0,171.0,33.0,1.0,5.0,53.0,133.0,633.0,145.0,1957.0,877.0,26.0,90.0,10.0,93.0,0.0,130.0,48.0,855.0,452.0,158.0,430.0,68.0,44.0,22.0,87.0,67.0,61.0,848.0,386.0,198.0,82.0,25.0,29.0,24.0,157.0,192.0,22.0,15.0,47.0,40.0,45.0,63.0,238.0,982.0,152.0,107.0,181.0,406.0,15.0,1.0,270.0,28.0,856.0,9.0,58.0,164.0,8.0,54.0,4.0,10.0,4.0,199.0,34.0,161.0,197.0,10.0,1048.0,287.0,68.0,316.0,41.0,135.0,65.0,7.0,13.0,219.0,13.0,26.0,37.0,0.0,860.0,114.0,195.0,7.0,128.0,39.0,31.0,1.0,23.0,259.0,108.0,85.0,11.0,1161.0,133.0,100.0,83.0,142.0,92.0,26.0,1369.0,225.0,20.0,77.0,19.0,56.0,746.0,5.0,659.0,34.0,6.0,107.0,31.0,109.0,50.0,84.0,430.0,127.0,110.2026835843,2018-01-21,,2018-3,109.9712646126024,97.39796038096, +222,222,237.0,12.0,7.0,1.0,281.0,83.0,13.0,111.0,222.0,151.0,34.0,1968.0,1.0,11.0,62.0,4.0,10.0,3.0,289.0,76.0,9.0,91.0,138.0,185.0,74.0,387.0,33.0,12.0,58.0,28.0,4.0,124.0,618.0,78.0,1.0,20.0,103.0,36.0,211.0,226.0,6.0,1462.0,210.0,227.0,11.0,81.0,11.0,24.0,1586.0,124.0,91.0,582.0,79.0,36.0,26.0,46.0,71.0,1783.0,234.0,256.0,2.0,121.0,0.0,129.0,1.0,150.0,111.0,190.0,446.0,7.0,48.0,85.0,15.0,248.0,54.0,168.0,366.0,94.0,6.0,23.0,546.0,67.0,563.0,26.0,11.0,145.0,11.0,185.0,1248.0,207.0,0.0,312.0,52.0,42.0,337.0,37.0,43.4,9.0,38.0,1109.0,14.0,1145.0,20.0,27.0,100.0,1575.0,3333.0,124.0,140.0,6.0,94.0,145.0,57.0,534.0,149.0,4.0,1063.0,34.0,52.0,1945.0,212.0,1145.0,139.0,251.0,891.0,0.0,163.0,697.0,95.0,23.0,756.0,362.0,68.0,353.0,266.0,137.0,18.0,633.0,6.0,392.0,51.0,75.0,90.0,42.0,1926.0,444.0,355.0,2787.0,4.0,450.0,2795.0,1264.0,580.0,119.0,771.0,97.0,60.0,447.0,150.0,71.0,66.0,239.0,3002.0,42.0,31.0,888.0,24.0,10.0,469.0,167.0,152.0,344.0,7.0,146.0,26.0,1.0,3.0,63.0,106.0,445.0,179.0,2029.0,974.0,27.0,96.0,6.0,59.0,0.0,139.0,37.0,944.0,143.0,171.0,486.0,102.0,51.0,14.0,74.0,161.0,61.0,874.0,389.0,194.0,101.0,27.0,20.0,28.0,159.0,231.0,20.0,16.0,42.0,39.0,30.0,75.0,222.0,888.0,140.0,110.0,247.0,330.0,17.0,0.0,301.0,34.0,741.0,10.0,38.0,167.0,19.0,43.0,3.0,9.0,8.0,244.0,68.0,138.0,148.0,5.0,972.0,286.0,76.0,361.0,35.0,136.0,61.0,4.0,27.0,221.0,13.0,23.0,43.0,0.0,866.0,85.0,170.0,8.0,118.0,30.0,17.0,0.0,120.0,196.0,95.0,67.0,9.0,1127.0,187.0,104.0,57.0,47.0,107.0,34.0,1450.0,185.0,15.0,72.0,11.0,61.0,594.0,3.0,653.0,61.0,10.0,97.0,32.0,102.0,41.0,58.0,396.0,120.0,166.0097028502,2018-01-28,,2018-4,165.91200400051542,150.64523145806, +223,223,194.0,5.0,6.0,2.0,210.0,102.0,10.0,88.0,145.0,166.0,17.0,759.0,6.0,5.0,35.0,5.0,21.0,4.0,185.0,49.0,9.0,53.0,148.0,165.0,41.0,277.0,25.0,9.0,59.0,20.0,6.0,105.0,470.0,76.0,5.0,14.0,104.0,26.0,123.0,211.0,6.0,1330.0,161.0,206.0,8.0,87.0,6.0,31.0,1537.0,135.0,85.0,392.0,80.0,23.0,34.0,35.0,65.0,1567.0,220.0,171.0,4.0,97.0,1.0,108.0,1.0,138.0,72.0,165.0,279.0,5.0,44.0,57.0,9.0,253.0,35.0,134.0,260.0,76.0,2.0,25.0,486.0,51.0,537.0,19.0,11.0,182.0,174.0,154.0,821.0,237.0,0.0,315.0,76.0,63.0,333.0,41.0,49.0,8.0,48.0,959.0,19.0,613.0,22.0,27.0,75.0,1388.0,3539.0,113.0,90.0,7.0,69.0,125.0,56.0,474.0,141.0,5.0,1005.0,36.0,70.0,2059.0,161.0,1133.0,135.0,252.0,831.0,1.0,125.0,512.0,106.0,8.0,672.0,311.0,46.0,366.0,226.0,121.0,7.0,527.0,8.0,328.0,35.0,56.0,84.0,36.0,1751.0,331.0,287.0,2848.0,1.0,287.0,2448.0,964.0,540.0,95.0,570.0,73.0,71.0,348.0,157.0,65.0,39.0,247.0,2741.0,24.0,34.0,786.0,29.0,9.0,585.0,138.0,123.0,322.0,16.0,117.0,19.0,6.0,5.0,49.0,117.0,385.0,106.0,1524.0,827.0,26.0,75.0,11.0,95.0,1.0,81.0,52.0,694.0,130.0,123.0,365.0,80.0,55.0,20.0,65.0,73.0,63.0,589.0,330.0,175.0,87.0,29.0,19.0,18.0,121.0,161.0,36.0,19.0,35.0,38.0,44.0,68.0,223.0,826.0,107.0,115.0,176.0,302.0,15.0,2.0,193.0,28.0,611.0,17.0,29.0,161.0,27.0,50.0,2.0,6.0,9.0,165.0,22.0,98.0,147.0,2.0,1219.0,273.0,74.0,332.0,75.0,82.0,70.0,8.0,22.0,201.0,6.0,17.0,21.0,2.0,702.0,66.0,194.0,10.0,99.0,23.0,13.0,1.0,279.0,182.0,91.0,94.0,8.0,1047.0,147.0,59.0,34.0,48.0,57.0,39.0,1340.0,208.0,20.0,28.0,16.0,54.0,533.0,7.0,568.0,53.0,5.0,77.0,37.0,118.0,52.0,49.0,361.0,100.0,161.5809617418,2018-02-04,,2018-5,162.1971991126407,132.33949639748002, +224,224,213.0,5.0,4.0,3.0,134.0,80.0,11.0,59.0,146.0,107.0,13.0,518.0,1.0,11.0,15.0,0.0,13.0,2.0,153.0,16.0,12.0,65.0,100.0,192.0,44.0,148.0,21.0,6.0,36.0,18.0,0.0,82.0,303.0,46.0,2.0,8.0,103.0,12.0,132.0,161.0,4.0,948.0,146.0,178.0,8.0,75.0,11.0,22.0,1024.0,114.0,78.0,326.0,67.0,19.0,17.0,30.0,55.0,1371.0,195.0,121.0,6.0,79.0,1.0,116.0,2.0,93.0,57.0,142.0,239.0,2.0,24.0,39.0,6.0,194.0,26.0,95.0,174.0,79.0,2.0,15.0,434.0,46.0,371.0,6.0,8.0,118.0,49.0,107.0,649.0,180.0,0.0,231.0,42.0,49.0,210.0,67.0,29.0,7.0,31.0,802.0,15.0,474.0,9.0,7.0,43.0,1050.0,3139.0,128.0,64.0,5.0,82.0,81.0,59.0,348.0,102.0,2.0,858.0,26.0,112.0,1974.0,135.0,738.0,95.0,204.0,727.0,2.0,77.0,367.0,75.0,13.0,471.0,211.0,34.0,233.0,165.0,101.0,24.0,506.0,1.0,249.0,33.0,54.0,62.0,35.0,1505.0,475.0,225.0,2107.0,1.0,245.0,2213.0,1015.0,478.0,81.0,556.0,41.0,50.0,269.0,107.0,102.0,36.0,220.0,2130.0,19.0,29.0,628.0,36.0,2.0,545.0,117.0,111.0,278.0,7.0,80.0,27.0,1.0,2.0,25.0,89.0,324.0,87.0,4170.0,573.0,12.0,80.0,5.0,35.0,2.0,61.0,13.0,544.0,97.0,92.0,322.0,32.0,58.0,15.0,52.0,53.0,34.0,553.0,261.0,114.0,54.0,37.0,23.0,20.0,81.0,122.0,48.0,24.0,42.0,64.0,21.0,37.0,288.0,539.0,101.0,118.0,112.0,243.0,7.0,0.0,116.0,30.0,536.0,15.0,17.0,123.0,14.0,54.0,14.0,21.0,5.0,138.0,24.0,63.0,121.0,6.0,903.0,227.0,56.0,243.0,27.0,72.0,24.0,4.0,20.0,158.0,7.0,10.0,43.0,5.0,487.0,43.0,155.0,11.0,99.0,12.0,12.0,2.0,76.0,137.0,68.0,58.0,8.0,1085.0,118.0,53.0,58.0,49.0,19.0,21.0,1153.0,141.0,25.0,27.0,7.0,43.0,425.0,4.0,439.0,21.0,10.0,62.0,25.0,79.0,46.0,44.0,426.0,89.0,156.3686726534,2018-02-11,,2018-6,153.98842606266055,95.91961206984001, +225,225,212.0,10.0,5.0,3.0,156.0,122.0,15.0,121.0,186.0,129.0,22.0,771.0,2.0,8.0,17.0,1.0,9.0,3.0,295.0,27.0,10.0,63.0,91.0,197.0,54.0,210.0,15.0,6.0,60.0,22.0,5.0,119.0,404.0,57.0,4.0,9.0,166.0,21.0,143.0,221.0,5.0,1195.0,170.0,196.0,20.0,65.0,4.0,22.0,1280.0,139.0,92.0,428.0,59.0,28.0,31.0,48.0,81.0,1640.0,229.0,148.0,7.0,82.0,1.0,111.0,1.0,121.0,70.0,109.0,232.0,4.0,24.0,73.0,5.0,313.0,19.0,147.0,228.0,101.0,0.0,21.0,425.0,45.0,465.0,31.0,7.0,161.0,5.0,144.0,809.0,187.0,0.0,330.0,74.0,51.0,250.0,50.0,37.0,15.0,34.0,1015.0,16.0,513.0,8.0,19.0,77.0,1836.0,4218.0,125.0,86.0,7.0,67.0,98.0,57.0,432.0,105.0,3.0,971.0,32.0,62.0,2506.0,160.0,974.0,118.0,259.0,883.0,0.0,129.0,467.0,100.0,35.0,553.0,302.0,42.0,388.0,244.0,195.0,8.0,400.0,4.0,353.0,34.0,58.0,73.0,43.0,2328.0,489.0,274.0,2722.0,0.0,323.0,3245.0,1462.0,665.0,113.0,751.0,28.0,65.0,353.0,150.0,218.0,37.0,180.0,2902.0,36.0,58.0,971.0,41.0,5.0,698.0,126.0,123.0,370.0,12.0,153.0,37.0,1.0,1.0,42.0,122.0,548.0,72.0,2944.0,740.0,15.0,74.0,7.0,83.0,2.0,89.0,18.0,739.0,141.0,96.0,354.0,32.0,52.0,31.0,77.0,62.0,50.0,692.0,290.0,177.0,68.0,26.0,25.0,32.0,97.0,140.0,19.0,13.0,40.0,40.0,19.0,54.0,229.0,726.0,131.0,79.0,198.0,233.0,12.0,1.0,135.0,19.0,644.0,13.0,28.0,158.0,19.0,67.0,7.0,11.0,5.0,141.0,27.0,98.0,172.0,3.0,1005.0,214.0,91.0,336.0,24.0,88.0,62.0,4.0,31.0,500.0,9.0,9.0,32.0,5.0,689.0,47.0,172.0,5.0,124.0,18.0,9.0,1.0,29.0,141.0,96.0,259.0,7.0,1386.0,137.0,81.0,45.0,68.0,44.0,22.0,1374.0,187.0,22.0,29.0,6.0,46.0,529.0,6.0,580.0,31.0,15.0,87.0,33.0,109.0,70.0,61.0,385.0,231.0,145.1994817495,2018-02-18,,2018-7,146.61340302491752,145.1994817495, +226,226,235.0,16.0,8.0,1.0,151.0,102.0,13.0,101.0,203.0,97.0,19.0,1617.0,1.0,8.0,27.0,2.0,9.0,1.0,257.0,39.0,16.0,83.0,145.0,229.0,47.0,251.0,25.0,41.0,70.0,11.0,4.0,109.0,450.0,49.0,1.0,26.0,95.0,23.0,157.0,216.0,2.0,931.0,204.0,225.0,10.0,89.0,4.0,39.0,1308.0,153.0,95.0,367.0,97.0,30.0,30.0,58.0,74.0,1755.0,203.0,173.0,3.0,100.0,6.0,102.0,3.0,128.0,137.0,206.0,293.0,5.0,30.0,66.0,8.0,240.0,34.0,129.0,252.0,110.0,1.0,26.0,580.0,73.0,540.0,23.0,9.0,199.0,5.0,129.0,761.0,196.0,1.0,269.0,82.0,65.0,274.0,56.0,47.0,3.0,73.0,1062.0,13.0,509.0,30.0,25.0,81.0,3470.0,4250.0,87.0,115.0,5.0,102.0,118.0,52.0,521.0,110.0,4.0,1035.0,33.0,38.0,2680.0,187.0,1179.0,122.0,272.0,1109.0,1.0,166.0,477.0,83.0,24.0,618.0,310.0,58.0,373.0,198.0,248.0,17.0,572.0,14.0,380.0,40.0,57.0,116.0,33.0,2280.0,438.0,287.0,3037.0,16.0,399.0,3216.0,1324.0,603.0,116.0,716.0,54.0,59.0,429.0,137.0,2593.0,39.0,220.0,3078.0,24.0,50.0,1162.0,31.0,11.0,618.0,161.0,109.0,428.0,12.0,77.0,27.0,6.0,2.0,71.0,106.0,428.0,104.0,2748.0,711.0,15.0,78.0,12.0,77.0,0.0,73.0,21.0,795.0,105.0,112.0,410.0,27.0,44.0,18.0,34.0,59.0,82.0,657.0,289.0,174.0,84.0,45.0,29.0,28.0,99.0,161.0,22.0,23.0,44.0,34.0,38.0,79.0,186.0,652.0,101.0,109.0,184.0,249.0,15.0,2.0,218.0,33.0,611.0,13.0,15.0,167.0,24.0,68.0,12.0,30.0,11.0,169.0,44.0,115.0,145.0,9.0,1052.0,257.0,70.0,346.0,29.0,127.0,62.0,4.0,23.0,208.0,18.0,11.0,46.0,5.0,747.0,55.0,205.0,7.0,138.0,25.0,11.0,1.0,25.0,176.0,99.0,80.0,7.0,1594.0,138.0,86.0,58.0,70.0,33.0,34.0,1525.0,180.0,16.0,32.0,13.0,47.0,568.0,9.0,560.0,45.0,9.0,76.0,31.0,111.0,60.0,67.0,481.0,168.0,162.9129766749,2018-02-25,,2018-8,163.30342788420413,139.77250153778002, +227,227,216.0,9.0,4.0,0.0,148.0,103.0,21.0,181.0,164.0,127.0,17.0,840.0,1.0,11.0,18.0,1.0,8.0,5.0,235.0,20.0,15.0,50.0,102.0,206.0,47.0,208.0,18.0,7.0,46.0,35.0,6.0,130.0,456.0,65.0,0.0,21.0,295.0,17.0,112.0,176.0,2.0,860.0,151.0,216.0,8.0,72.0,8.0,24.0,1090.0,175.0,84.0,344.0,72.0,19.0,31.0,37.0,50.0,1691.0,183.0,212.0,2.0,101.0,0.0,176.0,0.0,107.0,99.0,132.0,301.0,2.0,108.0,65.0,8.0,177.0,33.0,145.0,262.0,105.0,4.0,27.0,405.0,52.0,496.0,14.0,8.0,184.0,10.0,111.0,882.0,237.0,0.0,261.0,69.0,89.0,264.0,60.0,35.0,1.0,29.0,928.0,14.0,474.0,14.0,37.0,92.0,1550.0,3879.0,127.0,92.0,9.0,65.0,117.0,57.0,392.0,121.0,2.0,1058.0,27.0,54.0,3131.0,168.0,963.0,303.0,242.0,876.0,1.0,122.0,400.0,108.0,25.0,609.0,358.0,62.0,292.0,204.0,246.0,15.0,530.0,6.0,436.0,32.0,48.0,107.0,27.0,2014.0,420.0,336.0,2619.0,29.0,421.0,2766.0,1321.0,598.0,96.0,582.0,23.0,46.0,315.0,89.0,163.0,33.0,175.0,3578.0,35.0,51.0,833.0,30.0,3.0,952.0,149.0,112.0,331.0,5.0,138.0,19.0,1.0,10.0,46.0,116.0,428.0,123.0,2142.0,720.0,16.0,77.0,8.0,60.0,0.0,62.0,22.0,825.0,94.0,85.0,342.0,46.0,42.0,13.0,61.0,44.0,72.0,706.0,299.0,145.0,71.0,38.0,19.0,15.0,84.0,163.0,27.0,16.0,38.0,34.0,24.0,52.0,205.0,700.0,117.0,86.0,207.0,201.0,11.0,0.0,172.0,25.0,641.0,16.0,12.0,120.0,23.0,64.0,9.0,19.0,0.0,176.0,31.0,76.0,160.0,8.0,4310.0,203.0,89.0,287.0,25.0,116.0,66.0,5.0,13.0,159.0,11.0,6.0,38.0,0.0,648.0,50.0,185.0,9.0,125.0,12.0,15.0,0.0,30.0,162.0,83.0,86.0,4.0,1395.0,146.0,54.0,38.0,52.0,37.0,30.0,1268.0,161.0,17.0,35.0,23.0,69.0,596.0,13.0,492.0,27.0,4.0,71.0,20.0,88.0,46.0,38.0,287.0,139.0,166.00613175799998,2018-03-04,,2018-9,165.721711499129,134.77603701914, +228,228,145.0,10.0,2.0,0.0,152.0,85.0,18.0,86.0,135.0,74.0,13.0,728.0,2.0,4.0,13.0,5.0,5.0,2.0,200.0,25.0,13.0,85.0,64.0,167.0,57.0,172.0,6.0,3.0,34.0,21.0,0.0,104.0,330.0,39.0,2.0,15.0,115.0,13.0,92.0,140.0,3.0,879.0,132.0,186.0,14.0,64.0,5.0,42.0,1075.0,107.0,68.0,309.0,91.0,25.0,16.0,42.0,62.0,1360.0,165.0,161.0,2.0,85.0,1.0,72.0,2.0,99.0,79.0,123.0,243.0,2.0,46.0,202.0,3.0,158.0,13.0,128.0,163.0,66.0,0.0,16.0,345.0,45.0,372.0,12.0,3.0,158.0,8.0,84.0,587.0,142.0,1.0,223.0,52.0,37.0,209.0,43.0,28.0,3.0,36.0,833.0,6.0,388.0,21.0,19.0,51.0,2090.0,2633.0,65.0,92.0,5.0,58.0,78.0,39.0,372.0,77.0,2.0,788.0,19.0,26.0,2587.0,117.0,946.0,116.0,197.0,672.0,2.0,116.0,343.0,79.0,22.0,569.0,255.0,31.0,243.0,195.0,122.0,5.0,444.0,10.0,240.0,25.0,38.0,97.0,11.0,1440.0,333.0,246.0,2013.0,24.0,325.0,2142.0,914.0,556.0,92.0,412.0,25.0,45.0,267.0,92.0,324.0,22.0,129.0,2141.0,29.0,32.0,735.0,41.0,18.0,520.0,114.0,95.0,274.0,12.0,81.0,24.0,0.0,2.0,35.0,82.0,318.0,98.0,1912.0,751.0,17.0,75.0,9.0,55.0,1.0,39.0,17.0,605.0,78.0,108.0,274.0,33.0,28.0,15.0,39.0,35.0,46.0,651.0,262.0,153.0,59.0,17.0,10.0,16.0,67.0,124.0,25.0,10.0,29.0,36.0,21.0,47.0,178.0,488.0,75.0,65.0,171.0,160.0,4.0,1.0,120.0,22.0,496.0,13.0,13.0,104.0,11.0,43.0,6.0,7.0,4.0,152.0,39.0,66.0,184.0,6.0,1650.0,240.0,80.0,245.0,41.0,79.0,54.0,3.0,23.0,135.0,7.0,12.0,25.0,1.0,618.0,44.0,137.0,6.0,98.0,22.0,12.0,1.0,28.0,134.0,74.0,65.0,2.0,839.0,147.0,79.0,30.0,19.0,23.0,23.0,1190.0,163.0,19.0,30.0,5.0,43.0,427.0,3.0,463.0,21.0,16.0,56.0,19.0,100.0,42.0,42.0,271.0,119.0,169.66161532299998,2018-03-11,,2018-10,168.13153780548777,124.95241845738002, +229,229,241.0,6.0,3.0,1.0,183.0,121.0,10.0,79.0,153.0,136.0,21.0,974.0,2.0,8.0,34.0,3.0,7.0,2.0,272.0,36.0,16.0,72.0,108.0,226.0,65.0,230.0,11.0,8.0,59.0,44.0,3.0,138.0,482.0,57.0,5.0,29.0,118.0,15.0,153.0,220.0,6.0,928.0,210.0,210.0,20.0,115.0,2.0,21.0,1285.0,114.0,94.0,385.0,114.0,39.0,23.0,41.0,70.0,1440.0,203.0,225.0,6.0,81.0,0.0,122.0,5.0,104.0,108.0,165.0,239.0,1.0,49.0,63.0,2.0,266.0,33.0,144.0,261.0,104.0,0.0,13.0,514.0,43.0,508.0,23.0,7.0,161.0,10.0,104.0,756.0,226.0,0.0,279.0,168.0,71.0,295.0,35.0,43.0,2.0,54.0,1026.0,9.0,533.0,22.0,36.0,77.0,1650.0,2432.0,87.0,97.0,5.0,69.0,113.0,60.0,459.0,119.0,6.0,1017.0,25.0,39.0,2455.0,140.0,1007.0,109.0,225.0,883.0,0.0,125.0,468.0,132.0,18.0,661.0,355.0,42.0,332.0,208.0,136.0,16.0,546.0,6.0,352.0,43.0,61.0,98.0,40.0,1429.0,378.0,352.0,2611.0,26.0,482.0,2011.0,967.0,554.0,110.0,398.0,38.0,79.0,345.0,119.0,137.0,27.0,188.0,2483.0,35.0,38.0,985.0,48.0,8.0,683.0,131.0,103.0,359.0,18.0,117.0,25.0,1.0,1.0,53.0,98.0,356.0,117.0,2042.0,803.0,28.0,105.0,10.0,42.0,1.0,68.0,23.0,719.0,137.0,125.0,419.0,47.0,42.0,8.0,42.0,73.0,70.0,724.0,333.0,177.0,81.0,30.0,16.0,28.0,100.0,160.0,41.0,11.0,51.0,38.0,34.0,67.0,202.0,520.0,113.0,96.0,225.0,141.0,2.0,0.0,196.0,35.0,669.0,14.0,10.0,146.0,18.0,141.0,7.0,25.0,4.0,134.0,40.0,86.0,194.0,5.0,1487.0,266.0,104.0,321.0,39.0,124.0,64.0,2.0,32.0,182.0,20.0,13.0,64.0,1.0,811.0,61.0,158.0,9.0,112.0,22.0,14.0,0.0,34.0,171.0,73.0,83.0,3.0,858.0,191.0,95.0,35.0,38.0,41.0,30.0,1213.0,224.0,18.0,40.0,10.0,78.0,610.0,9.0,621.0,30.0,16.0,148.0,32.0,116.0,51.0,44.0,379.0,117.0,116.2362556042,2018-03-18,,2018-11,116.11966722161606,96.20043295918, +230,230,227.0,2.0,8.0,0.0,187.0,155.0,4.0,125.0,214.0,129.0,11.0,825.0,0.0,7.0,25.0,0.0,21.0,4.0,288.0,18.0,14.0,63.0,117.0,200.0,79.0,278.0,32.0,13.0,60.0,29.0,8.0,138.0,476.0,57.0,5.0,23.0,86.0,28.0,145.0,211.0,3.0,968.0,160.0,232.0,8.0,111.0,10.0,28.0,1179.0,139.0,115.0,439.0,113.0,43.0,25.0,37.0,80.0,1488.0,247.0,226.0,3.0,108.0,1.0,129.0,0.0,140.0,171.0,180.0,267.0,4.0,67.0,54.0,7.0,431.0,28.0,123.0,288.0,85.0,0.0,25.0,505.0,65.0,559.0,13.0,8.0,174.0,7.0,119.0,708.0,232.0,0.0,313.0,76.0,52.0,322.0,56.0,43.0,1.0,54.0,1138.0,11.0,703.0,14.0,27.0,98.0,1753.0,1935.0,51.0,126.0,5.0,85.0,139.0,53.0,573.0,119.0,1.0,1030.0,28.0,46.0,3050.0,174.0,1102.0,113.0,292.0,950.0,0.0,157.0,623.0,107.0,15.0,699.0,435.0,48.0,433.0,216.0,174.0,24.0,577.0,15.0,290.0,53.0,72.0,148.0,33.0,1479.0,407.0,338.0,2798.0,27.0,543.0,1771.0,1040.0,508.0,99.0,476.0,33.0,53.0,385.0,149.0,91.0,36.0,200.0,2307.0,21.0,27.0,776.0,28.0,7.0,460.0,161.0,113.0,389.0,10.0,105.0,27.0,1.0,3.0,42.0,92.0,365.0,152.0,2841.0,859.0,23.0,78.0,10.0,71.0,0.0,93.0,17.0,734.0,116.0,134.0,393.0,38.0,39.0,19.0,37.0,49.0,55.0,902.0,339.0,104.0,77.0,35.0,27.0,25.0,137.0,149.0,42.0,17.0,57.0,29.0,33.0,65.0,263.0,516.0,142.0,91.0,250.0,141.0,11.0,1.0,182.0,33.0,621.0,12.0,15.0,143.0,14.0,444.0,6.0,11.0,7.0,136.0,25.0,96.0,197.0,5.0,1213.0,295.0,84.0,324.0,60.0,128.0,58.0,4.0,24.0,328.0,7.0,14.0,42.0,0.0,760.0,78.0,202.0,5.0,78.0,29.0,16.0,0.0,23.0,171.0,72.0,70.0,12.0,928.0,182.0,91.0,64.0,36.0,30.0,42.0,1237.0,182.0,25.0,40.0,13.0,53.0,554.0,7.0,601.0,24.0,6.0,105.0,37.0,90.0,38.0,49.0,406.0,114.0,85.1917898217,2018-03-25,,2018-12,85.33671527697044,72.63710894832, +231,231,276.0,8.0,2.0,2.0,159.0,116.0,12.0,121.0,248.0,105.0,19.0,767.0,2.0,9.0,39.0,4.0,11.0,2.0,269.0,39.0,21.0,65.0,103.0,266.0,56.0,235.0,32.0,6.0,53.0,25.0,5.0,139.0,483.0,63.0,0.0,14.0,70.0,22.0,155.0,247.0,1.0,1359.0,158.0,238.0,5.0,111.0,10.0,26.0,1273.0,86.0,107.0,446.0,135.0,56.0,22.0,59.0,59.0,1548.0,350.0,213.0,1.0,134.0,0.0,133.0,2.0,114.0,146.0,125.0,253.0,1.0,28.0,49.0,6.0,313.0,35.0,152.0,275.0,77.0,2.0,18.0,441.0,66.0,614.0,21.0,2.0,143.0,15.0,121.0,806.0,229.0,0.0,334.0,54.0,71.0,331.0,31.0,56.0,3.0,56.0,1092.0,16.0,543.0,20.0,21.0,73.0,1750.0,1468.0,69.0,82.0,8.0,72.0,85.0,52.0,538.0,144.0,5.0,1099.0,42.0,49.0,2945.0,164.0,1011.0,65.0,351.0,1151.0,1.0,137.0,486.0,115.0,18.0,640.0,366.0,56.0,333.0,213.0,118.0,15.0,532.0,11.0,287.0,26.0,76.0,116.0,22.0,1491.0,415.0,291.0,2883.0,30.0,464.0,1695.0,954.0,455.0,134.0,403.0,25.0,65.0,335.0,187.0,55.0,25.0,188.0,2051.0,26.0,62.0,692.0,30.0,15.0,486.0,120.0,123.0,381.0,7.0,121.0,29.0,0.0,2.0,44.0,80.0,329.0,127.0,2389.0,858.0,45.0,94.0,3.0,51.0,0.0,86.0,21.0,814.0,121.0,110.0,309.0,31.0,26.0,15.0,61.0,64.0,54.0,775.0,409.0,164.0,88.0,33.0,36.0,28.0,111.0,152.0,34.0,10.0,39.0,36.0,27.0,63.0,178.0,520.0,135.0,96.0,253.0,152.0,6.0,2.0,183.0,33.0,626.0,14.0,13.0,168.0,12.0,91.0,2.0,11.0,6.0,174.0,34.0,88.0,164.0,5.0,1040.0,311.0,89.0,356.0,83.0,100.0,70.0,10.0,34.0,206.0,10.0,14.0,37.0,3.0,627.0,61.0,193.0,9.0,94.0,35.0,18.0,1.0,26.0,191.0,99.0,48.0,3.0,944.0,174.0,80.0,68.0,27.0,35.0,26.0,1406.0,218.0,21.0,34.0,19.0,51.0,605.0,6.0,670.0,28.0,8.0,103.0,32.0,71.0,49.0,37.0,335.0,96.0,69.8231636508,2018-04-01,,2018-13,69.70861082409252,69.8231636508, +232,232,209.0,6.0,6.0,1.0,182.0,165.0,13.0,126.0,189.0,106.0,15.0,795.0,1.0,20.0,38.0,1.0,11.0,4.0,227.0,34.0,17.0,52.0,89.0,208.0,53.0,233.0,22.0,9.0,48.0,26.0,7.0,121.0,479.0,54.0,0.0,13.0,80.0,16.0,120.0,210.0,2.0,1089.0,152.0,198.0,18.0,73.0,6.0,37.0,1265.0,109.0,81.0,420.0,83.0,26.0,19.0,45.0,52.0,1498.0,343.0,224.0,1.0,122.0,0.0,87.0,0.0,128.0,167.0,72.0,293.0,4.0,18.0,93.0,8.0,240.0,33.0,135.0,287.0,98.0,1.0,24.0,921.0,52.0,585.0,23.0,10.0,151.0,11.0,105.0,710.0,241.0,0.0,305.0,64.0,44.0,252.0,24.0,35.0,3.0,74.0,1063.0,5.0,416.0,18.0,28.0,82.0,1508.0,1141.0,55.0,99.0,4.0,85.0,98.0,59.0,467.0,124.0,1.0,923.0,23.0,41.0,2367.0,159.0,1280.0,43.0,380.0,756.0,0.0,141.0,426.0,96.0,22.0,667.0,319.0,51.0,311.0,222.0,173.0,15.0,448.0,9.0,255.0,35.0,80.0,97.0,34.0,1519.0,409.0,275.0,2698.0,28.0,445.0,1397.0,1114.0,414.0,117.0,339.0,37.0,83.0,336.0,169.0,57.0,15.0,140.0,1837.0,30.0,41.0,755.0,33.0,8.0,340.0,139.0,125.0,411.0,10.0,124.0,15.0,1.0,1.0,47.0,69.0,356.0,112.0,1979.0,978.0,28.0,87.0,12.0,57.0,0.0,65.0,33.0,827.0,204.0,120.0,270.0,54.0,31.0,20.0,57.0,44.0,45.0,813.0,395.0,164.0,79.0,31.0,20.0,26.0,112.0,136.0,19.0,14.0,19.0,43.0,31.0,74.0,197.0,601.0,150.0,101.0,211.0,158.0,10.0,0.0,228.0,31.0,536.0,10.0,16.0,179.0,21.0,95.0,6.0,10.0,4.0,149.0,27.0,103.0,194.0,7.0,759.0,303.0,81.0,447.0,65.0,116.0,51.0,7.0,22.0,187.0,10.0,15.0,36.0,2.0,718.0,53.0,205.0,13.0,85.0,17.0,10.0,0.0,28.0,178.0,86.0,43.0,3.0,871.0,207.0,68.0,36.0,37.0,41.0,25.0,1390.0,226.0,29.0,47.0,21.0,77.0,523.0,14.0,595.0,32.0,7.0,68.0,40.0,72.0,40.0,37.0,314.0,101.0,50.5375024366,2018-04-08,,2018-14,49.60951435200198,67.27591935112001, +233,233,230.0,13.0,7.0,1.0,183.0,112.0,10.0,117.0,214.0,114.0,15.0,842.0,0.0,11.0,34.0,3.0,20.0,0.0,271.0,36.0,14.0,86.0,81.0,177.0,45.0,320.0,39.0,9.0,38.0,42.0,6.0,130.0,536.0,61.0,1.0,11.0,49.0,19.0,109.0,249.0,3.0,846.0,150.0,246.0,11.0,96.0,12.0,33.0,1200.0,76.0,74.0,434.0,83.0,39.0,30.0,62.0,54.0,1168.0,267.0,296.0,5.0,101.0,1.0,101.0,1.0,107.0,170.0,84.0,287.0,3.0,17.0,99.0,15.0,260.0,26.0,151.0,297.0,112.0,1.0,16.0,539.0,53.0,511.0,16.0,4.0,113.0,9.0,114.0,717.0,247.0,1.0,358.0,78.0,61.0,312.0,27.0,32.0,0.0,131.0,1053.0,13.0,407.0,25.0,29.0,72.0,1567.0,950.0,48.0,117.0,9.0,74.0,115.0,71.0,457.0,133.0,3.0,996.0,20.0,44.0,2431.0,186.0,1073.0,28.0,351.0,885.0,0.0,165.0,501.0,100.0,16.0,704.0,357.0,74.0,395.0,223.0,184.0,25.0,471.0,11.0,250.0,30.0,86.0,148.0,36.0,1319.0,472.0,285.0,2717.0,28.0,525.0,1209.0,1142.0,311.0,83.0,335.0,37.0,51.0,372.0,128.0,75.0,36.0,122.0,1765.0,34.0,38.0,629.0,30.0,15.0,299.0,133.0,112.0,400.0,11.0,117.0,37.0,2.0,3.0,48.0,66.0,286.0,139.0,1578.0,925.0,27.0,69.0,7.0,56.0,0.0,86.0,37.0,786.0,72.0,150.0,317.0,49.0,23.0,11.0,37.0,28.0,62.0,848.0,335.0,163.0,106.0,47.0,34.0,18.0,97.0,176.0,52.0,19.0,51.0,38.0,32.0,72.0,170.0,556.0,136.0,81.0,221.0,152.0,10.0,2.0,215.0,45.0,563.0,16.0,22.0,136.0,69.0,47.0,2.0,4.0,4.0,184.0,49.0,112.0,212.0,2.0,662.0,288.0,82.0,395.0,46.0,117.0,52.0,6.0,16.0,155.0,9.0,15.0,39.0,0.0,714.0,61.0,176.0,7.0,83.0,32.0,23.0,0.0,34.0,187.0,92.0,45.0,6.0,718.0,182.0,73.0,42.0,43.0,24.0,41.0,1517.0,196.0,21.0,31.0,17.0,89.0,700.0,11.0,710.0,35.0,6.0,106.0,19.0,89.0,48.0,28.0,312.0,95.0,54.61916594229999,2018-04-15,,2018-15,54.859668404458944,66.68654167594, +234,234,170.0,17.0,9.0,5.0,266.0,59.0,4.0,109.0,143.0,84.0,11.0,727.0,1.0,11.0,37.0,3.0,15.0,1.0,220.0,44.0,11.0,75.0,106.0,204.0,65.0,160.0,38.0,8.0,43.0,28.0,8.0,144.0,483.0,73.0,3.0,6.0,33.0,19.0,87.0,175.0,8.0,464.0,185.0,249.0,10.0,82.0,12.0,15.0,1011.0,94.0,63.0,603.0,81.0,10.0,28.0,77.0,39.0,1097.0,242.0,166.0,4.0,88.0,1.0,115.0,3.0,80.0,123.0,72.0,284.0,2.0,14.0,70.0,7.0,179.0,38.0,99.0,284.0,92.0,2.0,18.0,406.0,45.0,1820.0,30.0,9.0,151.0,18.0,157.0,689.0,207.0,0.0,302.0,84.0,46.0,258.0,33.0,41.0,1.0,53.0,1058.0,7.0,366.0,29.0,18.0,49.0,1216.0,784.0,558.0,121.0,10.0,63.0,125.0,52.0,563.0,117.0,5.0,806.0,22.0,63.0,2123.0,129.0,944.0,36.0,267.0,805.0,1.0,128.0,501.0,106.0,25.0,501.0,265.0,96.0,425.0,266.0,68.0,27.0,643.0,10.0,254.0,32.0,60.0,72.0,19.0,1125.0,406.0,284.0,1640.0,30.0,521.0,1067.0,622.0,229.0,104.0,356.0,13.0,45.0,344.0,300.0,68.0,32.0,128.0,1210.0,33.0,41.0,575.0,25.0,3.0,286.0,125.0,135.0,452.0,8.0,112.0,18.0,4.0,2.0,31.0,62.0,281.0,123.0,718.0,788.0,28.0,96.0,12.0,57.0,2.0,108.0,33.0,1050.0,109.0,121.0,340.0,36.0,92.0,7.0,41.0,48.0,39.0,665.0,304.0,99.0,83.0,20.0,30.0,19.0,118.0,163.0,42.0,11.0,24.0,34.0,31.0,74.0,157.0,662.0,121.0,72.0,177.0,150.0,20.0,2.0,161.0,25.0,426.0,16.0,8.0,159.0,134.0,36.0,10.0,15.0,8.0,141.0,26.0,130.0,155.0,2.0,829.0,289.0,49.0,258.0,32.0,95.0,65.0,8.0,19.0,166.0,19.0,11.0,25.0,3.0,598.0,83.0,167.0,4.0,84.0,22.0,16.0,2.0,46.0,120.0,81.0,61.0,14.0,748.0,148.0,57.0,46.0,41.0,42.0,38.0,829.0,118.0,28.0,59.0,44.0,95.0,497.0,4.0,583.0,26.0,14.0,94.0,23.0,76.0,52.0,26.0,326.0,72.0,41.16,2018-10-21,,2018-42,41.16656692945108,41.266, +235,235,211.0,7.0,8.0,2.0,290.0,76.0,13.0,84.0,145.0,222.0,8.0,673.0,1.0,14.0,38.0,3.0,6.0,5.0,213.0,41.0,10.0,69.0,90.0,222.0,69.0,221.0,37.0,3.0,58.0,26.0,6.0,123.0,496.0,109.0,1.0,10.0,55.0,30.0,214.0,344.0,2.0,460.0,163.0,456.0,12.0,90.0,6.0,21.0,1118.0,90.0,67.0,767.0,85.0,17.0,24.0,73.0,36.0,1236.0,326.0,176.0,2.0,88.0,0.0,102.0,4.0,116.0,117.0,63.0,333.0,2.0,29.0,83.0,11.0,222.0,28.0,119.0,371.0,96.0,4.0,24.0,508.0,60.0,590.0,20.0,23.0,204.0,12.0,175.0,721.0,220.0,0.0,247.0,82.0,55.0,372.0,33.0,35.0,3.0,37.0,1212.0,6.0,445.0,17.0,18.0,59.0,1301.0,898.0,694.0,105.0,4.0,96.0,119.0,69.0,686.0,132.0,4.0,862.0,27.0,39.0,2322.0,177.0,941.0,51.0,265.0,885.0,0.0,118.0,529.0,136.0,19.0,529.0,326.0,108.0,422.0,254.0,82.0,17.0,682.0,6.0,285.0,48.0,64.0,81.0,27.0,1219.0,440.0,321.0,1680.0,28.0,607.0,1082.0,991.0,292.0,99.0,485.0,18.0,71.0,548.0,335.0,56.0,43.0,157.0,1377.0,39.0,34.0,1044.0,28.0,5.0,349.0,186.0,133.0,517.0,12.0,99.0,24.0,3.0,1.0,45.0,85.0,304.0,148.0,838.0,914.0,28.0,99.0,14.0,73.0,0.0,137.0,42.0,1174.0,94.0,91.0,428.0,106.0,148.0,15.0,49.0,49.0,49.0,622.0,379.0,125.0,58.0,28.0,26.0,25.0,122.0,232.0,46.0,18.0,30.0,38.0,27.0,79.0,152.0,681.0,145.0,67.0,172.0,184.0,17.0,3.0,219.0,34.0,660.0,27.0,22.0,132.0,84.0,33.0,15.0,22.0,8.0,150.0,16.0,113.0,145.0,4.0,973.0,341.0,67.0,205.0,55.0,111.0,71.0,7.0,25.0,218.0,10.0,14.0,14.0,1.0,673.0,81.0,167.0,5.0,82.0,15.0,10.0,0.0,95.0,114.0,84.0,46.0,18.0,964.0,137.0,50.0,48.0,47.0,73.0,42.0,995.0,144.0,19.0,74.0,73.0,180.0,601.0,12.0,582.0,21.0,22.0,77.0,23.0,90.0,49.0,32.0,329.0,109.0,19.05,2018-10-28,,2018-43,19.405815266228217,21.42443182418, +236,236,218.0,5.0,11.0,0.0,330.0,105.0,10.0,97.0,179.0,91.0,16.0,767.0,4.0,10.0,58.0,1.0,14.0,1.0,231.0,57.0,9.0,83.0,107.0,193.0,62.0,240.0,30.0,6.0,72.0,27.0,14.0,133.0,442.0,79.0,1.0,10.0,36.0,35.0,139.0,222.0,8.0,625.0,190.0,314.0,7.0,88.0,16.0,19.0,1151.0,120.0,77.0,855.0,84.0,20.0,27.0,70.0,65.0,1495.0,536.0,168.0,4.0,144.0,1.0,151.0,7.0,105.0,116.0,75.0,446.0,3.0,33.0,83.0,15.0,194.0,34.0,106.0,366.0,83.0,1.0,20.0,487.0,63.0,610.0,19.0,13.0,146.0,21.0,100.0,641.0,256.0,0.0,229.0,74.0,64.0,416.0,61.0,61.0,2.0,29.0,1214.0,5.0,338.0,17.0,25.0,95.0,1324.0,1109.0,855.0,81.0,9.0,93.0,117.0,70.0,667.0,129.0,4.0,880.0,21.0,46.0,2155.0,170.0,1025.0,55.0,265.0,825.0,1.0,145.0,617.0,146.0,9.0,511.0,443.0,121.0,449.0,251.0,71.0,23.0,886.0,13.0,451.0,53.0,42.0,63.0,8.0,1359.0,431.0,328.0,1584.0,30.0,602.0,1290.0,1168.0,326.0,109.0,628.0,31.0,62.0,474.0,326.0,107.0,51.0,181.0,1469.0,36.0,31.0,807.0,26.0,5.0,325.0,173.0,164.0,504.0,27.0,116.0,26.0,2.0,1.0,38.0,73.0,360.0,196.0,1108.0,1032.0,41.0,114.0,12.0,64.0,2.0,164.0,48.0,1266.0,180.0,207.0,483.0,49.0,57.0,17.0,63.0,56.0,45.0,725.0,422.0,109.0,76.0,36.0,40.0,22.0,119.0,175.0,51.0,8.0,28.0,40.0,43.0,75.0,226.0,647.0,151.0,92.0,199.0,239.0,9.0,6.0,214.0,28.0,599.0,11.0,19.0,141.0,51.0,52.0,19.0,23.0,7.0,168.0,15.0,137.0,128.0,3.0,1147.0,307.0,47.0,186.0,37.0,117.0,92.0,14.0,17.0,211.0,19.0,8.0,35.0,5.0,685.0,81.0,209.0,9.0,114.0,25.0,20.0,4.0,59.0,125.0,104.0,41.0,11.0,1065.0,133.0,58.0,20.0,31.0,82.0,28.0,924.0,151.0,21.0,90.0,44.0,94.0,651.0,11.0,593.0,32.0,20.0,127.0,31.0,90.0,64.0,34.0,469.0,80.0,38.59,2018-11-04,,2018-44,37.90442943456094,39.71138163338, +237,237,217.0,10.0,12.0,2.0,397.0,91.0,10.0,135.0,195.0,85.0,13.0,723.0,0.0,12.0,48.0,1.0,5.0,2.0,203.0,41.0,9.0,72.0,98.0,174.0,71.0,190.0,22.0,0.0,107.0,20.0,9.0,159.0,408.0,64.0,1.0,9.0,132.0,26.0,113.0,207.0,3.0,842.0,204.0,287.0,21.0,120.0,10.0,23.0,1152.0,116.0,83.0,1073.0,79.0,18.0,38.0,67.0,78.0,1582.0,645.0,213.0,2.0,119.0,1.0,91.0,3.0,109.0,121.0,81.0,523.0,3.0,59.0,101.0,10.0,202.0,36.0,90.0,396.0,119.0,4.0,22.0,545.0,62.0,653.0,22.0,25.0,194.0,19.0,145.0,592.0,256.0,0.0,264.0,74.0,48.0,357.0,69.0,36.0,1.0,30.0,1252.0,12.0,475.0,19.0,26.0,64.0,1372.0,1142.0,629.0,153.0,1.0,103.0,111.0,65.0,698.0,114.0,7.0,786.0,25.0,61.0,2314.0,138.0,951.0,120.0,277.0,794.0,0.0,139.0,626.0,148.0,26.0,635.0,417.0,107.0,455.0,261.0,65.0,20.0,883.0,11.0,424.0,34.0,61.0,118.0,37.0,1455.0,399.0,298.0,1814.0,26.0,676.0,1420.0,919.0,295.0,116.0,651.0,12.0,63.0,519.0,351.0,57.0,39.0,187.0,1631.0,51.0,50.0,812.0,26.0,10.0,566.0,165.0,191.0,593.0,12.0,110.0,30.0,1.0,1.0,50.0,51.0,392.0,192.0,1036.0,1075.0,40.0,133.0,10.0,50.0,1.0,140.0,50.0,1397.0,124.0,171.0,528.0,45.0,35.0,7.0,45.0,52.0,55.0,844.0,433.0,129.0,90.0,36.0,106.0,22.0,124.0,200.0,43.0,11.0,33.0,34.0,31.0,100.0,192.0,774.0,151.0,88.0,244.0,306.0,10.0,2.0,207.0,29.0,532.0,20.0,22.0,153.0,40.0,73.0,12.0,10.0,7.0,158.0,7.0,105.0,135.0,3.0,4271.0,339.0,60.0,214.0,26.0,125.0,74.0,8.0,20.0,192.0,36.0,12.0,29.0,0.0,722.0,99.0,229.0,7.0,134.0,18.0,23.0,0.0,36.0,208.0,85.0,57.0,6.0,1103.0,175.0,53.0,40.0,56.0,31.0,39.0,1050.0,165.0,31.0,57.0,59.0,100.0,630.0,9.0,635.0,31.0,17.0,108.0,24.0,96.0,67.0,31.0,313.0,95.0,45.48,2018-11-11,,2018-45,46.47579399672077,60.64262666468001, +238,238,249.0,6.0,8.0,3.0,330.0,122.0,14.0,100.0,154.0,75.0,13.0,665.0,2.0,6.0,28.0,0.0,13.0,4.0,163.0,35.0,10.0,58.0,127.0,168.0,74.0,199.0,23.0,2.0,79.0,22.0,6.0,157.0,424.0,97.0,6.0,8.0,67.0,23.0,102.0,219.0,7.0,751.0,224.0,242.0,9.0,88.0,19.0,19.0,1137.0,112.0,96.0,912.0,165.0,23.0,32.0,68.0,71.0,1465.0,638.0,170.0,3.0,109.0,0.0,102.0,1.0,110.0,107.0,101.0,489.0,2.0,41.0,120.0,3.0,194.0,32.0,102.0,380.0,119.0,3.0,23.0,529.0,69.0,675.0,21.0,13.0,138.0,15.0,114.0,584.0,265.0,0.0,239.0,70.0,54.0,298.0,40.0,49.0,4.0,46.0,1205.0,11.0,360.0,23.0,20.0,89.0,1361.0,1020.0,364.0,122.0,4.0,79.0,111.0,75.0,678.0,162.0,3.0,803.0,34.0,51.0,3545.0,153.0,1244.0,63.0,298.0,781.0,0.0,138.0,568.0,152.0,24.0,586.0,345.0,101.0,495.0,274.0,96.0,21.0,838.0,5.0,321.0,38.0,54.0,114.0,34.0,1473.0,384.0,298.0,1784.0,25.0,772.0,1341.0,912.0,246.0,125.0,728.0,11.0,71.0,462.0,350.0,62.0,46.0,178.0,1996.0,28.0,47.0,650.0,22.0,14.0,402.0,137.0,149.0,635.0,9.0,81.0,29.0,3.0,3.0,44.0,92.0,356.0,155.0,1027.0,1044.0,32.0,126.0,4.0,65.0,0.0,169.0,38.0,1403.0,98.0,186.0,487.0,96.0,33.0,4.0,115.0,30.0,43.0,876.0,344.0,128.0,90.0,25.0,26.0,23.0,124.0,170.0,37.0,13.0,25.0,38.0,33.0,67.0,200.0,823.0,187.0,67.0,205.0,406.0,8.0,2.0,149.0,109.0,591.0,39.0,28.0,169.0,32.0,54.0,11.0,19.0,4.0,148.0,19.0,92.0,131.0,20.0,2381.0,328.0,61.0,245.0,42.0,137.0,71.0,5.0,11.0,231.0,24.0,4.0,25.0,3.0,655.0,86.0,193.0,6.0,132.0,30.0,10.0,0.0,32.0,142.0,88.0,42.0,11.0,1204.0,158.0,49.0,30.0,51.0,55.0,39.0,1046.0,153.0,27.0,63.0,46.0,88.0,627.0,18.0,580.0,40.0,6.0,95.0,29.0,107.0,51.0,31.0,307.0,79.0,32.37,2018-11-18,,2018-46,31.953722495094496,35.37200000000001, +239,239,167.0,9.0,10.0,2.0,275.0,102.0,12.0,119.0,168.0,171.0,17.0,760.0,0.0,9.0,39.0,1.0,18.0,2.0,205.0,67.0,9.0,87.0,92.0,235.0,69.0,195.0,32.0,4.0,82.0,24.0,7.0,134.0,471.0,81.0,1.0,15.0,46.0,25.0,122.0,235.0,0.0,899.0,193.0,299.0,13.0,112.0,11.0,18.0,1149.0,141.0,110.0,731.0,101.0,28.0,33.0,94.0,81.0,1651.0,510.0,170.0,1.0,98.0,1.0,252.0,8.0,84.0,127.0,120.0,491.0,0.0,27.0,101.0,8.0,285.0,29.0,118.0,385.0,119.0,3.0,29.0,478.0,66.0,572.0,15.0,13.0,144.0,15.0,148.0,740.0,341.0,0.0,219.0,101.0,62.0,319.0,46.0,37.0,0.0,37.0,1044.0,15.0,589.0,29.0,32.0,125.0,1457.0,1180.0,317.0,115.0,2.0,97.0,119.0,87.0,884.0,171.0,4.0,953.0,31.0,58.0,2860.0,195.0,1250.0,52.0,248.0,974.0,0.0,139.0,676.0,195.0,25.0,637.0,368.0,108.0,443.0,229.0,98.0,26.0,781.0,9.0,286.0,34.0,48.0,158.0,27.0,1560.0,395.0,302.0,1859.0,32.0,665.0,1572.0,1060.0,325.0,88.0,594.0,12.0,72.0,445.0,311.0,104.0,44.0,233.0,1732.0,33.0,41.0,934.0,35.0,4.0,337.0,137.0,147.0,552.0,7.0,130.0,19.0,1.0,3.0,53.0,85.0,430.0,163.0,1286.0,947.0,55.0,94.0,8.0,80.0,0.0,145.0,71.0,1215.0,162.0,151.0,454.0,63.0,50.0,22.0,92.0,66.0,53.0,683.0,393.0,123.0,86.0,38.0,46.0,20.0,143.0,147.0,33.0,17.0,37.0,38.0,42.0,83.0,217.0,891.0,200.0,74.0,186.0,622.0,9.0,2.0,207.0,29.0,794.0,21.0,27.0,187.0,32.0,72.0,10.0,12.0,5.0,143.0,7.0,125.0,143.0,12.0,1189.0,284.0,68.0,200.0,40.0,112.0,94.0,10.0,15.0,224.0,22.0,7.0,23.0,1.0,691.0,90.0,178.0,4.0,139.0,23.0,16.0,0.0,54.0,126.0,90.0,51.0,5.0,1426.0,175.0,57.0,29.0,70.0,54.0,46.0,1305.0,173.0,21.0,39.0,22.0,93.0,700.0,12.0,645.0,24.0,10.0,99.0,33.0,96.0,69.0,46.0,311.0,67.0,50.38,2018-11-25,,2018-47,51.11397432748595,50.38, +240,240,129.0,16.0,6.0,1.0,242.0,116.0,14.0,123.0,164.0,141.0,14.0,707.0,2.0,10.0,51.0,2.0,12.0,6.0,202.0,66.0,11.0,94.0,125.0,305.0,83.0,256.0,27.0,3.0,46.0,26.0,12.0,138.0,518.0,94.0,2.0,7.0,40.0,34.0,152.0,235.0,4.0,858.0,183.0,284.0,11.0,73.0,10.0,30.0,1111.0,117.0,70.0,467.0,102.0,22.0,24.0,108.0,63.0,1832.0,286.0,215.0,3.0,96.0,0.0,117.0,0.0,95.0,107.0,144.0,397.0,5.0,16.0,84.0,10.0,177.0,41.0,132.0,390.0,86.0,3.0,27.0,405.0,83.0,610.0,24.0,27.0,189.0,10.0,192.0,774.0,296.0,0.0,272.0,117.0,68.0,328.0,50.0,37.0,1.0,20.0,897.0,16.0,450.0,30.0,30.0,78.0,1519.0,1157.0,287.0,107.0,4.0,118.0,150.0,107.0,784.0,202.0,5.0,921.0,28.0,66.0,2396.0,170.0,1293.0,46.0,270.0,1044.0,0.0,131.0,595.0,137.0,27.0,572.0,397.0,101.0,475.0,246.0,70.0,22.0,734.0,12.0,316.0,27.0,39.0,92.0,30.0,1440.0,452.0,296.0,1838.0,31.0,572.0,1325.0,1073.0,303.0,102.0,308.0,11.0,65.0,479.0,425.0,43.0,21.0,206.0,1766.0,36.0,57.0,901.0,24.0,5.0,320.0,172.0,180.0,613.0,16.0,134.0,25.0,2.0,1.0,45.0,95.0,406.0,146.0,1523.0,823.0,40.0,147.0,16.0,141.0,0.0,161.0,53.0,1021.0,133.0,131.0,415.0,80.0,31.0,12.0,51.0,43.0,53.0,651.0,420.0,152.0,105.0,32.0,50.0,15.0,141.0,213.0,40.0,16.0,23.0,38.0,23.0,79.0,211.0,895.0,168.0,84.0,189.0,838.0,5.0,3.0,177.0,20.0,648.0,21.0,35.0,185.0,29.0,82.0,8.0,21.0,4.0,130.0,42.0,149.0,139.0,7.0,979.0,310.0,63.0,230.0,35.0,109.0,111.0,8.0,17.0,201.0,21.0,16.0,37.0,0.0,687.0,85.0,190.0,15.0,101.0,24.0,19.0,0.0,26.0,155.0,98.0,50.0,3.0,1282.0,156.0,63.0,25.0,52.0,47.0,44.0,1208.0,128.0,20.0,67.0,27.0,128.0,633.0,7.0,583.0,28.0,10.0,102.0,48.0,118.0,71.0,31.0,384.0,57.0,53.57,2018-12-02,,2018-48,52.78454621568184,54.88012223908001, +241,241,136.0,8.0,6.0,3.0,236.0,102.0,12.0,138.0,164.0,104.0,20.0,701.0,1.0,13.0,37.0,1.0,18.0,2.0,208.0,38.0,8.0,101.0,115.0,307.0,69.0,226.0,22.0,0.0,63.0,20.0,10.0,133.0,400.0,93.0,2.0,18.0,27.0,25.0,111.0,199.0,4.0,656.0,161.0,281.0,18.0,90.0,8.0,15.0,1008.0,102.0,105.0,447.0,119.0,27.0,25.0,104.0,65.0,1734.0,335.0,231.0,0.0,110.0,0.0,116.0,1.0,105.0,100.0,175.0,431.0,0.0,9.0,88.0,8.0,210.0,56.0,110.0,390.0,100.0,2.0,12.0,382.0,151.0,570.0,11.0,9.0,207.0,9.0,117.0,659.0,308.0,0.0,242.0,110.0,63.0,347.0,37.0,30.0,3.0,30.0,940.0,13.0,512.0,24.0,21.0,80.0,1533.0,974.0,163.0,99.0,2.0,117.0,122.0,84.0,775.0,140.0,8.0,888.0,29.0,52.0,2145.0,175.0,1024.0,39.0,296.0,1095.0,0.0,148.0,589.0,538.0,23.0,623.0,343.0,83.0,469.0,267.0,77.0,18.0,686.0,11.0,303.0,49.0,78.0,106.0,37.0,1441.0,423.0,277.0,1927.0,32.0,538.0,1327.0,853.0,279.0,86.0,296.0,17.0,54.0,461.0,378.0,54.0,20.0,201.0,1872.0,25.0,45.0,808.0,38.0,6.0,314.0,191.0,202.0,535.0,15.0,134.0,16.0,1.0,5.0,30.0,99.0,435.0,133.0,1471.0,884.0,45.0,109.0,10.0,72.0,0.0,160.0,30.0,996.0,125.0,131.0,401.0,60.0,58.0,15.0,65.0,41.0,50.0,659.0,400.0,158.0,104.0,22.0,29.0,20.0,105.0,185.0,34.0,24.0,21.0,39.0,51.0,91.0,240.0,756.0,168.0,104.0,173.0,1122.0,18.0,4.0,215.0,26.0,568.0,13.0,28.0,168.0,24.0,78.0,4.0,20.0,5.0,130.0,34.0,124.0,104.0,18.0,883.0,264.0,63.0,233.0,43.0,107.0,91.0,3.0,22.0,199.0,31.0,16.0,38.0,0.0,674.0,106.0,233.0,5.0,99.0,16.0,14.0,1.0,34.0,114.0,105.0,60.0,11.0,1319.0,164.0,68.0,38.0,67.0,89.0,38.0,1172.0,147.0,32.0,63.0,95.0,194.0,610.0,8.0,579.0,18.0,6.0,88.0,33.0,107.0,64.0,56.0,419.0,86.0,47.38,2018-12-09,,2018-49,47.60209052534839,45.07776760968, +242,242,109.0,7.0,8.0,5.0,200.0,106.0,9.0,85.0,137.0,108.0,20.0,585.0,1.0,9.0,36.0,2.0,10.0,3.0,209.0,43.0,15.0,57.0,122.0,508.0,88.0,166.0,21.0,4.0,47.0,25.0,9.0,145.0,411.0,71.0,3.0,9.0,32.0,27.0,113.0,184.0,4.0,597.0,124.0,272.0,11.0,75.0,13.0,22.0,899.0,125.0,85.0,370.0,84.0,29.0,41.0,84.0,61.0,1490.0,280.0,218.0,4.0,118.0,1.0,102.0,1.0,85.0,110.0,182.0,352.0,4.0,22.0,62.0,1.0,225.0,42.0,71.0,339.0,124.0,1.0,15.0,295.0,42.0,510.0,17.0,16.0,243.0,23.0,178.0,626.0,255.0,0.0,208.0,70.0,73.0,313.0,30.0,37.0,2.0,39.0,837.0,8.0,411.0,18.0,21.0,87.0,1463.0,1047.0,106.0,103.0,12.0,87.0,107.0,57.0,583.0,128.0,6.0,773.0,27.0,34.0,1839.0,169.0,871.0,41.0,240.0,982.0,1.0,92.0,558.0,221.0,16.0,545.0,383.0,93.0,570.0,207.0,74.0,14.0,559.0,6.0,260.0,37.0,41.0,103.0,30.0,1342.0,369.0,237.0,1736.0,28.0,507.0,1153.0,956.0,288.0,63.0,328.0,11.0,58.0,395.0,341.0,64.0,41.0,211.0,1890.0,31.0,37.0,637.0,22.0,10.0,274.0,159.0,149.0,521.0,7.0,141.0,26.0,4.0,5.0,45.0,94.0,397.0,109.0,1572.0,768.0,47.0,111.0,6.0,71.0,0.0,140.0,40.0,821.0,111.0,136.0,439.0,70.0,41.0,16.0,43.0,55.0,35.0,551.0,356.0,147.0,105.0,36.0,38.0,25.0,115.0,120.0,20.0,16.0,46.0,40.0,40.0,76.0,152.0,624.0,154.0,110.0,182.0,857.0,10.0,2.0,202.0,30.0,559.0,18.0,27.0,151.0,38.0,50.0,13.0,10.0,5.0,126.0,18.0,130.0,154.0,4.0,651.0,259.0,59.0,211.0,37.0,116.0,109.0,6.0,18.0,279.0,20.0,13.0,32.0,0.0,630.0,81.0,202.0,9.0,90.0,16.0,9.0,2.0,40.0,129.0,76.0,46.0,5.0,1125.0,140.0,76.0,86.0,82.0,73.0,24.0,1115.0,118.0,42.0,66.0,58.0,75.0,524.0,9.0,483.0,30.0,35.0,92.0,28.0,115.0,58.0,16.0,314.0,81.0,62.81,2018-12-16,,2018-50,60.88003515274781,59.441515288320005, +243,243,146.0,4.0,12.0,3.0,185.0,93.0,7.0,107.0,138.0,110.0,13.0,585.0,1.0,10.0,42.0,1.0,16.0,2.0,176.0,48.0,2.0,70.0,86.0,444.0,64.0,158.0,26.0,6.0,41.0,14.0,4.0,113.0,396.0,91.0,1.0,9.0,42.0,31.0,105.0,150.0,1.0,484.0,122.0,272.0,13.0,64.0,10.0,17.0,778.0,89.0,70.0,447.0,94.0,9.0,26.0,79.0,61.0,1378.0,222.0,186.0,1.0,84.0,1.0,92.0,0.0,103.0,96.0,121.0,284.0,0.0,24.0,52.0,2.0,156.0,38.0,87.0,288.0,99.0,1.0,14.0,309.0,50.0,489.0,19.0,12.0,141.0,21.0,107.0,670.0,236.0,0.0,182.0,94.0,59.0,311.0,24.0,28.0,1.0,27.0,782.0,6.0,464.0,16.0,29.0,62.0,1394.0,943.0,89.0,74.0,3.0,69.0,108.0,66.0,605.0,119.0,2.0,708.0,20.0,45.0,2236.0,151.0,1208.0,40.0,205.0,810.0,0.0,134.0,513.0,136.0,12.0,503.0,283.0,106.0,399.0,200.0,83.0,19.0,464.0,8.0,225.0,22.0,63.0,69.0,25.0,1332.0,368.0,212.0,1492.0,27.0,561.0,1067.0,1071.0,358.0,86.0,251.0,20.0,55.0,356.0,317.0,74.0,47.0,152.0,1609.0,41.0,49.0,558.0,24.0,3.0,310.0,137.0,145.0,562.0,6.0,100.0,14.0,2.0,1.0,36.0,78.0,374.0,106.0,1375.0,698.0,33.0,114.0,15.0,70.0,1.0,91.0,44.0,880.0,123.0,102.0,373.0,71.0,38.0,8.0,57.0,42.0,50.0,522.0,308.0,118.0,102.0,26.0,30.0,19.0,130.0,102.0,25.0,10.0,17.0,36.0,31.0,71.0,195.0,659.0,161.0,89.0,174.0,612.0,12.0,2.0,192.0,46.0,543.0,8.0,34.0,117.0,27.0,84.0,15.0,22.0,13.0,120.0,21.0,94.0,98.0,21.0,1271.0,222.0,67.0,133.0,55.0,91.0,62.0,8.0,18.0,142.0,30.0,7.0,26.0,1.0,583.0,103.0,192.0,14.0,77.0,17.0,13.0,0.0,25.0,122.0,80.0,86.0,3.0,1029.0,111.0,55.0,84.0,79.0,79.0,43.0,1148.0,114.0,34.0,44.0,13.0,46.0,510.0,5.0,483.0,36.0,11.0,80.0,17.0,89.0,43.0,16.0,323.0,66.0,69.53,2018-12-23,,2018-51,70.95052162951828,84.39272683892, +244,244,113.0,4.0,4.0,3.0,208.0,118.0,12.0,72.0,121.0,124.0,21.0,485.0,2.0,15.0,26.0,1.0,12.0,3.0,106.0,37.0,5.0,61.0,78.0,1470.0,50.0,149.0,17.0,7.0,30.0,21.0,3.0,98.0,351.0,72.0,0.0,10.0,64.0,30.0,92.0,164.0,3.0,601.0,129.0,313.0,14.0,99.0,20.0,20.0,659.0,100.0,87.0,378.0,75.0,11.0,27.0,53.0,44.0,1664.0,219.0,159.0,1.0,70.0,1.0,70.0,3.0,72.0,83.0,146.0,290.0,1.0,34.0,62.0,6.0,144.0,35.0,85.0,297.0,64.0,3.0,21.0,451.0,45.0,468.0,15.0,9.0,121.0,31.0,121.0,503.0,229.0,0.0,182.0,84.0,75.0,278.0,38.0,19.0,3.0,15.0,823.0,5.0,381.0,17.0,19.0,57.0,1536.0,1305.0,91.0,81.0,4.0,142.0,103.0,62.0,450.0,99.0,3.0,530.0,21.0,41.0,2092.0,138.0,992.0,77.0,220.0,667.0,0.0,103.0,338.0,105.0,17.0,413.0,268.0,70.0,367.0,143.0,151.0,8.0,432.0,2.0,163.0,26.0,52.0,45.0,25.0,1425.0,325.0,208.0,1509.0,25.0,469.0,1069.0,897.0,426.0,51.0,297.0,15.0,66.0,269.0,358.0,45.0,18.0,151.0,1622.0,27.0,36.0,636.0,18.0,2.0,1007.0,82.0,172.0,445.0,6.0,76.0,12.0,1.0,2.0,32.0,85.0,420.0,124.0,1486.0,789.0,43.0,88.0,10.0,106.0,1.0,84.0,44.0,803.0,113.0,67.0,246.0,67.0,29.0,15.0,63.0,51.0,45.0,557.0,294.0,131.0,52.0,15.0,37.0,19.0,84.0,114.0,10.0,6.0,17.0,42.0,21.0,70.0,138.0,542.0,144.0,76.0,201.0,676.0,8.0,1.0,189.0,28.0,515.0,15.0,21.0,128.0,39.0,128.0,5.0,4.0,5.0,103.0,12.0,87.0,179.0,4.0,1089.0,227.0,56.0,130.0,21.0,94.0,114.0,5.0,18.0,123.0,26.0,9.0,36.0,1.0,444.0,83.0,186.0,58.0,72.0,7.0,3.0,0.0,25.0,116.0,81.0,110.0,5.0,1206.0,107.0,57.0,90.0,63.0,92.0,46.0,1239.0,162.0,26.0,54.0,10.0,53.0,704.0,3.0,552.0,49.0,11.0,74.0,25.0,58.0,24.0,33.0,354.0,99.0,37.37,2018-12-30,,2018-52,37.482724343913496,44.97731249336, +245,245,107.0,3.0,2.0,2.0,195.0,101.0,12.0,97.0,137.0,103.0,20.0,574.0,2.0,6.0,71.0,3.0,14.0,5.0,88.0,55.33333333333333,11.0,59.0,84.0,1250.0,47.0,153.0,16.0,6.0,43.0,29.0,6.0,82.0,389.0,86.0,1.0,11.0,57.0,23.0,102.0,136.0,5.0,717.0,108.0,225.0,11.0,70.0,10.0,25.0,661.0,91.0,92.0,369.0,64.0,18.0,32.0,63.0,54.0,1390.0,212.0,172.0,1.0,64.0,2.0,90.0,1.0,95.0,83.0,141.0,320.0,2.0,20.0,50.0,3.0,139.0,40.0,85.0,296.0,84.0,2.0,20.0,568.0,56.0,470.0,21.0,9.0,99.0,17.0,73.0,527.0,206.0,0.0,171.0,63.0,73.0,276.0,29.0,23.6,1.0,23.0,778.0,11.0,301.0,38.0,20.0,76.0,1381.0,1291.0,134.0,77.0,9.0,121.0,93.0,58.0,602.0,109.0,3.0,724.5,16.0,59.0,1776.0,144.0,1134.0,65.0,196.0,683.0,1.0,104.0,367.0,111.0,21.0,452.0,280.0,96.0,342.0,140.0,104.0,9.0,482.0,6.0,172.0,26.0,49.0,61.0,19.0,1342.0,326.0,223.0,1416.0,25.0,480.0,1108.0,846.0,231.0,97.0,298.0,14.0,63.0,330.0,377.0,44.0,41.0,126.0,1606.0,28.0,29.0,552.0,28.0,4.0,601.0,93.0,146.0,352.0,7.0,107.0,18.0,1.0,2.0,35.0,69.0,343.0,163.0,1267.0,665.0,24.0,61.0,17.0,56.0,1.0,87.0,46.0,782.0,229.0,74.0,308.0,66.0,38.0,10.0,51.0,34.0,26.0,588.0,306.0,127.0,53.0,19.0,19.0,19.0,131.0,97.0,25.0,6.0,21.0,25.0,45.0,62.0,131.0,362.0,142.0,91.0,146.0,384.0,13.0,2.0,209.0,41.0,487.0,13.0,33.0,126.0,36.0,75.0,6.0,11.0,6.0,108.0,34.0,83.0,131.0,9.0,896.0,228.0,64.0,143.0,12.0,120.0,62.0,5.0,11.0,174.0,23.0,17.0,53.0,0.0,497.0,94.0,158.0,12.0,72.0,12.0,13.0,0.0,29.0,114.0,58.0,167.0,3.0,1046.0,123.0,79.0,98.0,53.0,89.0,45.0,1183.0,137.0,26.0,51.0,11.0,42.0,623.0,5.0,509.0,17.0,5.0,87.0,27.0,62.0,36.0,27.0,416.0,113.0,50.98,2019-01-13,,2019-2,51.72032245838568,56.49162867166, +246,246,96.0,6.0,4.0,3.0,402.0,136.0,9.0,138.0,154.0,106.0,17.0,750.0,0.0,15.0,63.0,8.0,14.0,5.0,201.0,73.66666666666666,10.0,78.0,123.0,974.0,108.0,252.0,18.0,10.0,47.0,19.0,9.0,141.0,530.0,132.0,1.0,11.0,59.0,22.0,194.0,220.0,8.0,744.0,157.0,294.0,21.0,75.0,12.0,32.0,1035.0,162.0,76.0,461.0,127.0,10.0,28.0,84.0,77.0,1318.0,251.0,259.0,9.0,112.0,1.0,102.0,0.0,111.0,117.0,175.0,473.0,2.0,19.0,93.0,7.0,208.0,61.0,90.0,451.0,101.0,2.0,21.0,703.0,59.0,567.0,22.0,14.0,137.0,20.0,111.0,720.0,328.0,0.0,259.0,88.0,73.0,399.0,39.0,28.2,0.0,54.0,1228.0,10.0,502.0,37.0,27.0,100.0,1683.0,1530.0,121.0,125.0,4.0,93.0,140.0,78.0,829.0,193.0,4.0,919.0,25.0,42.0,1962.0,181.0,1044.0,91.0,234.0,1015.0,0.0,146.0,647.0,137.0,21.0,631.0,421.0,119.0,504.0,257.0,83.0,20.0,753.0,3.0,339.0,36.0,70.0,86.0,53.0,1384.0,516.0,314.0,2232.0,27.0,611.0,1480.0,974.0,410.0,123.0,322.0,26.0,79.0,600.0,368.0,56.0,33.0,173.0,2140.0,34.0,32.0,782.0,51.0,12.0,577.0,166.0,133.0,459.0,10.0,154.0,22.0,10.0,2.0,46.0,83.0,416.0,274.0,1414.0,919.0,46.0,121.0,8.0,77.0,0.0,154.0,61.0,1174.0,117.0,165.0,469.0,79.0,56.0,11.0,51.0,46.0,62.0,707.0,452.0,128.0,119.0,33.0,45.0,24.0,137.0,163.0,36.0,11.0,16.0,33.0,41.0,91.0,169.0,496.0,175.0,109.0,203.0,1110.0,16.0,4.0,261.0,23.0,688.0,11.0,43.0,137.0,22.0,89.0,12.0,3.0,12.0,132.0,25.0,171.0,183.0,10.0,869.0,297.0,106.0,206.0,42.0,129.0,95.0,4.0,19.0,237.0,36.0,26.0,54.0,2.0,700.0,103.0,198.0,15.0,74.0,17.0,19.0,1.0,40.0,125.0,98.0,151.0,7.0,1094.0,141.0,77.0,69.0,74.0,114.0,44.0,1259.0,151.0,20.0,96.0,426.0,398.0,636.0,3.0,555.0,35.0,8.0,136.0,42.0,101.0,60.0,40.0,486.0,146.0,78.68,2019-01-20,,2019-3,78.39130073909038,81.42175439048, +247,247,128.0,8.0,5.0,2.0,313.0,128.0,24.0,117.0,170.0,96.0,19.0,785.0,0.0,6.0,84.0,0.0,16.0,2.0,207.0,92.0,31.0,81.0,110.0,713.0,111.0,254.0,29.0,5.0,66.0,42.0,9.0,128.0,1137.0,110.0,3.0,9.0,73.0,43.0,169.0,194.0,0.0,637.0,204.0,307.0,20.0,104.0,8.0,22.0,1168.0,122.0,94.0,574.0,148.0,35.0,31.0,127.0,75.0,1376.0,249.0,245.0,3.0,138.0,0.0,136.0,0.0,88.0,102.0,160.0,444.0,1.0,26.0,74.0,3.0,260.0,44.0,127.0,399.0,110.0,5.0,17.0,596.0,103.0,645.0,23.0,11.0,170.0,26.0,107.0,815.0,292.0,0.0,295.0,94.0,68.0,415.0,39.0,32.8,8.0,33.0,1301.0,17.0,474.0,32.0,25.0,137.0,1509.0,1415.0,96.0,133.0,5.0,105.0,164.0,127.0,743.0,187.0,5.0,1074.0,15.0,62.0,1903.0,179.0,1170.0,64.0,242.0,1066.0,0.0,169.0,756.0,189.0,33.0,777.0,470.0,117.0,579.0,262.0,122.0,24.0,725.0,8.0,321.0,49.0,62.0,108.0,33.0,1341.0,539.0,395.0,2066.0,20.0,603.0,1521.0,1011.0,451.0,189.0,507.0,22.0,102.0,575.0,381.0,133.0,52.0,185.0,2148.0,24.0,40.0,727.0,34.0,5.0,440.0,160.0,146.0,491.0,4.0,177.0,20.0,3.0,2.0,51.0,83.0,388.0,213.0,1269.0,1042.0,24.0,120.0,12.0,63.0,0.0,145.0,62.0,1081.0,160.0,191.0,496.0,129.0,58.0,10.0,66.0,54.0,62.0,662.0,449.0,144.0,91.0,34.0,42.0,30.0,176.0,160.0,30.0,17.0,28.0,26.0,48.0,87.0,173.0,600.0,151.0,105.0,231.0,548.0,10.0,5.0,245.0,49.0,761.0,60.0,32.0,139.0,26.0,97.0,8.0,26.0,5.0,161.0,37.0,181.0,258.0,10.0,814.0,314.0,107.0,242.0,33.0,107.0,78.0,4.0,24.0,241.0,26.0,9.0,49.0,1.0,767.0,111.0,192.0,11.0,110.0,16.0,31.0,1.0,30.0,159.0,110.0,132.0,2.0,1071.0,144.0,80.0,69.0,179.0,126.0,42.0,1247.0,155.0,29.0,76.0,42.0,97.0,651.0,10.0,646.0,40.0,10.0,119.0,41.0,99.0,66.0,45.0,398.0,98.0,74.69,2019-01-27,,2019-4,74.85794229521946,71.50700376372001, +248,248,139.0,38.0,6.0,1.0,316.0,157.0,9.0,135.0,181.0,111.0,14.0,719.0,0.0,21.0,72.0,1.0,14.0,4.0,206.0,66.0,25.0,80.0,122.0,596.0,85.0,198.0,15.0,5.0,67.0,40.0,11.0,132.0,650.0,137.0,0.0,10.0,90.0,41.0,135.0,217.0,5.0,631.0,181.0,257.0,18.0,106.0,10.0,37.0,964.0,170.0,105.0,553.0,135.0,21.0,58.0,173.0,40.0,1487.0,216.0,207.0,4.0,81.0,0.0,100.0,4.0,96.0,106.0,182.0,447.0,1.0,16.0,84.0,10.0,251.0,35.0,85.0,440.0,116.0,0.0,19.0,490.0,80.0,664.0,34.0,15.0,146.0,31.0,109.0,875.0,297.0,0.0,292.0,98.0,54.0,329.0,54.0,37.4,1.0,28.0,925.0,5.0,478.0,61.0,28.0,102.0,1631.0,1584.0,149.0,104.0,5.0,206.0,137.0,88.0,747.0,152.0,2.0,860.0,30.0,53.0,2016.0,187.0,1136.0,56.0,235.0,986.0,0.0,166.0,845.0,149.0,27.0,643.0,399.0,132.0,441.0,231.0,117.0,26.0,675.0,6.0,292.0,50.0,71.0,174.0,34.0,1459.0,625.0,260.0,2064.0,5.0,589.0,1642.0,1055.0,416.0,123.0,405.0,12.0,90.0,673.0,358.0,95.0,52.0,234.0,2162.0,32.0,37.0,994.0,51.0,6.0,416.0,189.0,134.0,481.0,11.0,187.0,29.0,0.0,0.0,51.0,98.0,412.0,229.0,1219.0,995.0,30.0,118.0,10.0,68.0,0.0,146.0,38.0,1193.0,209.0,162.0,513.0,78.0,38.0,15.0,70.0,287.0,53.0,581.0,420.0,128.0,86.0,39.0,42.0,52.0,139.0,148.0,25.0,19.0,25.0,38.0,43.0,86.0,138.0,657.0,188.0,110.0,233.0,429.0,17.0,4.0,277.0,36.0,783.0,23.0,45.0,115.0,30.0,133.0,12.0,17.0,7.0,161.0,25.0,156.0,216.0,5.0,877.0,263.0,80.0,212.0,38.0,93.0,66.0,11.0,28.0,248.0,29.0,16.0,39.0,0.0,732.0,102.0,290.0,5.0,90.0,23.0,20.0,0.0,108.0,162.0,83.0,129.0,3.0,1186.0,152.0,75.0,57.0,59.0,81.0,36.0,1445.0,178.0,26.0,73.0,26.0,71.0,726.0,9.0,608.0,85.0,12.0,108.0,31.0,122.0,56.0,47.0,405.0,108.0,67.12,2019-02-03,,2019-5,66.72693538262456,70.14800000000001, +249,249,145.0,21.0,8.0,1.0,287.0,140.0,8.0,106.0,167.0,98.0,22.0,648.0,2.0,6.0,47.0,5.0,8.0,1.0,201.0,39.0,9.0,59.0,120.0,532.0,70.0,186.0,24.0,4.0,47.0,21.0,3.0,145.0,533.0,87.0,1.0,19.0,102.0,33.0,143.0,230.0,5.0,1639.0,166.0,261.0,16.0,101.0,10.0,23.0,930.0,166.0,84.0,452.0,96.0,21.0,56.0,106.0,77.0,1552.0,212.0,202.0,5.0,104.0,0.0,133.0,2.0,132.0,118.0,196.0,396.0,0.0,39.0,53.0,21.0,233.0,31.0,101.0,382.0,97.0,0.0,22.0,622.0,100.0,559.0,17.0,9.0,159.0,17.0,101.0,797.0,286.0,0.0,240.0,111.0,73.0,398.0,41.0,42.0,0.0,22.0,963.0,14.0,493.0,37.0,25.0,106.0,1654.0,2106.0,128.0,89.0,6.0,180.0,134.0,68.0,652.0,152.0,1.0,910.0,23.0,48.0,1932.0,197.0,1187.0,119.0,272.0,1000.0,0.0,169.0,797.0,195.0,26.0,640.0,850.0,147.0,441.0,221.0,97.0,16.0,651.0,10.0,320.0,43.0,48.0,100.0,31.0,1507.0,524.0,348.0,2117.0,3.0,570.0,1766.0,933.0,508.0,120.0,365.0,24.0,110.0,606.0,370.0,124.0,25.0,288.0,2222.0,35.0,40.0,1200.0,29.0,12.0,1842.0,206.0,140.0,551.0,8.0,126.0,21.0,1.0,3.0,55.0,75.0,428.0,222.0,1765.0,920.0,47.0,109.0,13.0,73.0,0.0,129.0,47.0,1015.0,151.0,138.0,412.0,48.0,50.0,11.0,110.0,83.0,51.0,623.0,363.0,141.0,79.0,31.0,30.0,24.0,132.0,148.0,30.0,10.0,53.0,24.0,46.0,94.0,167.0,684.0,165.0,116.0,189.0,363.0,8.0,0.0,250.0,32.0,863.0,29.0,38.0,146.0,16.0,110.0,8.0,17.0,8.0,123.0,17.0,161.0,124.0,12.0,1833.0,288.0,83.0,215.0,53.0,92.0,74.0,5.0,27.0,214.0,36.0,16.0,26.0,1.0,742.0,78.0,249.0,4.0,101.0,22.0,15.0,0.0,115.0,168.0,67.0,893.0,5.0,1152.0,163.0,43.0,41.0,100.0,76.0,40.0,1514.0,166.0,18.0,53.0,78.0,113.0,735.0,10.0,552.0,73.0,10.0,124.0,25.0,87.0,42.0,32.0,305.0,96.0,59.44,2019-02-10,,2019-6,59.84028399824874,71.19721093302, +250,250,214.0,15.0,3.0,2.0,219.0,108.0,8.0,112.0,142.0,110.0,16.0,724.0,0.0,10.0,24.0,0.0,9.0,1.0,217.0,30.0,12.0,48.0,124.0,515.0,58.0,167.0,16.0,2.0,65.0,31.0,3.0,142.0,448.0,74.0,2.0,21.0,128.0,15.0,185.0,264.0,6.0,11101.0,157.0,270.0,17.0,86.0,3.0,26.0,969.0,163.0,85.0,519.0,111.0,11.0,27.0,100.0,68.0,1627.0,229.0,189.0,0.0,100.0,0.0,155.0,3.0,118.0,100.0,152.0,325.0,1.0,28.0,71.0,23.0,256.0,38.0,100.0,355.0,112.0,2.0,15.0,432.0,74.0,474.0,35.0,5.0,118.0,6.0,109.0,969.0,257.0,0.0,192.0,98.0,47.0,430.0,48.0,45.0,2.0,33.0,868.0,16.0,999.0,7.0,17.0,62.0,1577.0,2398.0,96.0,90.0,11.0,102.0,132.0,65.0,661.0,124.0,3.0,837.0,26.0,176.0,3017.0,222.0,1173.0,80.0,279.0,1133.0,0.0,145.0,595.0,160.0,14.0,622.0,374.0,112.0,456.0,193.0,93.0,19.0,883.0,4.0,285.0,44.0,42.0,110.0,39.0,1518.0,533.0,321.0,2189.0,4.0,542.0,1848.0,1035.0,536.0,92.0,381.0,15.0,110.0,526.0,334.0,106.0,33.0,317.0,2410.0,36.0,37.0,1553.0,41.0,6.0,1495.0,175.0,151.0,555.0,9.0,105.0,14.0,1.0,5.0,53.0,81.0,473.0,173.0,1794.0,822.0,29.0,89.0,11.0,77.0,0.0,92.0,36.0,999.0,132.0,158.0,464.0,47.0,62.0,21.0,84.0,70.0,67.0,630.0,345.0,137.0,93.0,34.0,39.0,31.0,120.0,160.0,45.0,12.0,23.0,52.0,36.0,58.0,141.0,646.0,145.0,98.0,167.0,280.0,11.0,4.0,189.0,26.0,917.0,23.0,68.0,143.0,22.0,92.0,12.0,7.0,3.0,155.0,17.0,93.0,268.0,4.0,1250.0,283.0,64.0,213.0,30.0,82.0,82.0,5.0,38.0,190.0,28.0,11.0,35.0,1.0,620.0,58.0,204.0,18.0,108.0,13.0,10.0,0.0,27.0,144.0,97.0,578.0,4.0,1317.0,164.0,58.0,61.0,98.0,34.0,39.0,1587.0,134.0,24.0,70.0,45.0,54.0,667.0,5.0,509.0,27.0,13.0,106.0,33.0,99.0,57.0,41.0,348.0,89.0,107.51,2019-02-17,,2019-7,107.09687118069871,109.15122635159999, +251,251,253.0,11.0,4.0,1.0,183.0,118.0,15.0,155.0,166.0,100.0,17.0,609.0,1.0,10.0,33.0,2.0,21.0,0.0,228.0,25.0,12.0,41.0,108.0,349.0,83.0,129.0,17.0,6.0,67.0,38.0,5.0,143.0,446.0,42.0,2.0,11.0,83.0,28.0,123.0,372.0,2.0,1782.0,144.0,259.0,15.0,68.0,3.0,13.0,839.0,142.0,75.0,379.0,99.0,17.0,35.0,119.0,67.0,1487.0,207.0,193.0,1.0,82.0,0.0,102.0,0.0,121.0,103.0,175.0,296.0,2.0,23.0,70.0,3.0,306.0,24.0,119.0,384.0,131.0,0.0,15.0,376.0,73.0,518.0,19.0,10.0,128.0,15.0,118.0,758.0,258.0,0.0,187.0,93.0,49.0,339.0,41.0,40.0,2.0,43.0,985.0,9.0,513.0,18.0,26.0,102.0,1401.0,1983.0,122.0,67.0,4.0,81.0,133.0,63.0,553.0,105.0,3.0,763.0,21.0,52.0,2824.0,199.0,1169.0,59.0,382.0,1049.0,0.0,127.0,554.0,137.0,20.0,464.0,346.0,97.0,425.0,202.0,93.0,22.0,652.0,6.0,325.0,20.0,38.0,76.0,24.0,1442.0,451.0,277.0,1928.0,3.0,524.0,1682.0,826.0,429.0,98.0,310.0,8.0,87.0,430.0,345.0,81.0,54.0,202.0,2038.0,27.0,46.0,1934.0,73.0,10.0,1053.0,161.0,137.0,373.0,7.0,114.0,15.0,1.0,0.0,70.0,89.0,498.0,157.0,1115.0,770.0,21.0,109.0,8.0,57.0,0.0,76.0,32.0,965.0,192.0,162.0,421.0,47.0,62.0,28.0,51.0,62.0,46.0,728.0,324.0,110.0,81.0,45.0,31.0,32.0,111.0,128.0,58.0,18.0,44.0,27.0,43.0,53.0,117.0,535.0,162.0,77.0,147.0,257.0,13.0,6.0,188.0,45.0,753.0,21.0,29.0,119.0,23.0,121.0,12.0,15.0,5.0,115.0,14.0,106.0,128.0,4.0,812.0,229.0,85.0,211.0,26.0,136.0,73.0,9.0,31.0,222.0,20.0,11.0,31.0,0.0,618.0,61.0,200.0,7.0,99.0,10.0,11.0,0.0,26.0,122.0,76.0,225.0,3.0,1103.0,182.0,54.0,30.0,73.0,28.0,31.0,1562.0,142.0,21.0,42.0,45.0,51.0,529.0,5.0,522.0,26.0,9.0,118.0,31.0,105.0,54.0,33.0,265.0,58.0,90.67,2019-02-24,,2019-8,90.97194147454505,78.022, +252,252,222.0,4.0,5.0,0.0,219.0,130.0,13.0,153.0,181.0,98.0,17.0,598.0,2.0,16.0,32.0,1.0,7.0,3.0,164.0,30.0,12.0,49.0,117.0,293.0,41.0,154.0,25.0,5.0,71.0,25.0,5.0,138.0,412.0,71.0,0.0,9.0,100.0,27.0,144.0,366.0,2.0,1016.0,147.0,271.0,21.0,78.0,8.0,22.0,990.0,132.0,52.0,475.0,121.0,12.0,26.0,115.0,71.0,1594.0,185.0,198.0,5.0,121.0,1.0,141.0,1.0,108.0,120.0,149.0,290.0,1.0,23.0,63.0,7.0,277.0,38.0,118.0,384.0,126.0,0.0,20.0,454.0,49.0,535.0,20.0,7.0,121.0,11.0,87.0,852.0,299.0,0.0,209.0,196.0,49.0,379.0,23.0,43.0,1.0,48.0,901.0,9.0,468.0,23.0,23.0,70.0,1513.0,1876.0,166.0,70.0,3.0,89.0,114.0,58.0,663.0,127.0,2.0,797.0,14.0,48.0,2575.0,190.0,1298.0,114.0,248.0,918.0,0.0,156.0,622.0,125.0,12.0,478.0,375.0,105.0,403.0,218.0,96.0,21.0,648.0,8.0,250.0,48.0,59.0,53.0,18.0,1421.0,423.0,331.0,2210.0,4.0,568.0,1686.0,881.0,272.0,100.0,350.0,10.0,65.0,416.0,349.0,71.0,52.0,181.0,2265.0,44.0,61.0,2850.0,55.0,7.0,850.0,158.0,127.0,466.0,10.0,122.0,19.0,5.0,1.0,64.0,74.0,501.0,144.0,1333.0,861.0,15.0,92.0,14.0,59.0,1.0,108.0,26.0,1058.0,262.0,117.0,421.0,51.0,31.0,14.0,40.0,57.0,34.0,754.0,280.0,104.0,85.0,22.0,31.0,20.0,90.0,116.0,27.0,24.0,25.0,46.0,51.0,72.0,154.0,595.0,140.0,103.0,176.0,249.0,6.0,3.0,169.0,48.0,795.0,14.0,36.0,126.0,21.0,101.0,14.0,9.0,3.0,137.0,15.0,106.0,162.0,7.0,930.0,254.0,63.0,202.0,28.0,97.0,83.0,8.0,28.0,209.0,23.0,23.0,28.0,3.0,636.0,70.0,186.0,23.0,120.0,19.0,13.0,0.0,25.0,125.0,83.0,182.0,3.0,1083.0,175.0,69.0,43.0,83.0,31.0,29.0,1703.0,175.0,36.0,58.0,23.0,66.0,544.0,4.0,560.0,40.0,6.0,111.0,18.0,99.0,39.0,42.0,331.0,96.0,76.31,2019-03-03,,2019-9,75.63664667783439,69.21835796434, +253,253,123.0,3.0,4.0,0.0,159.0,100.0,6.0,85.0,115.0,68.0,21.0,483.0,1.0,7.0,26.0,0.0,11.0,3.0,125.0,21.0,13.0,38.0,82.0,246.0,40.0,131.0,21.0,5.0,63.0,27.0,2.0,113.0,307.0,33.0,1.0,13.0,63.0,12.0,113.0,207.0,3.0,750.0,125.0,260.0,2.0,78.0,7.0,16.0,688.0,107.0,65.0,388.0,81.0,8.0,26.0,68.0,61.0,1157.0,173.0,157.0,5.0,81.0,0.0,147.0,2.0,61.0,85.0,124.0,264.0,0.0,11.0,64.0,6.0,196.0,22.0,88.0,232.0,90.0,1.0,19.0,316.0,43.0,447.0,16.0,8.0,106.0,12.0,75.0,677.0,228.0,0.0,182.0,90.0,52.0,284.0,35.0,30.0,1.0,42.0,772.0,8.0,320.0,9.0,26.0,58.0,1171.0,1260.0,40.0,76.0,4.0,68.0,104.0,48.0,502.0,113.0,6.0,657.0,14.0,32.0,1790.0,149.0,847.0,48.0,246.0,725.0,0.0,80.0,432.0,81.0,12.0,465.0,283.0,67.0,302.0,150.0,66.0,15.0,510.0,7.0,238.0,34.0,34.0,65.0,19.0,1104.0,319.0,261.0,1651.0,5.0,405.0,1219.0,733.0,277.0,100.0,232.0,8.0,53.0,410.0,279.0,53.0,23.0,139.0,1744.0,28.0,47.0,1153.0,36.0,3.0,581.0,114.0,106.0,270.0,6.0,81.0,11.0,2.0,2.0,25.0,67.0,492.0,142.0,969.0,671.0,18.0,73.0,8.0,46.0,0.0,67.0,25.0,752.0,249.0,89.0,298.0,48.0,28.0,12.0,25.0,43.0,44.0,524.0,260.0,95.0,56.0,22.0,34.0,14.0,113.0,106.0,19.0,20.0,29.0,25.0,30.0,55.0,118.0,382.0,127.0,70.0,128.0,178.0,8.0,3.0,123.0,19.0,567.0,19.0,26.0,105.0,17.0,76.0,5.0,10.0,2.0,122.0,12.0,93.0,89.0,4.0,611.0,212.0,53.0,208.0,44.0,74.0,75.0,2.0,19.0,150.0,17.0,16.0,28.0,0.0,462.0,42.0,160.0,7.0,79.0,13.0,7.0,0.0,20.0,99.0,70.0,88.0,2.0,742.0,110.0,80.0,31.0,56.0,34.0,19.0,1317.0,109.0,20.0,56.0,29.0,70.0,416.0,9.0,481.0,26.0,6.0,61.0,27.0,78.0,37.0,30.0,221.0,56.0,54.29,2019-03-10,,2019-10,53.31851952242775,54.29, +254,254,125.0,4.0,5.0,1.0,136.0,98.0,4.0,65.0,96.0,81.0,21.0,436.0,2.0,25.0,23.0,3.0,21.0,0.0,115.0,30.0,13.0,50.0,77.0,182.0,46.0,83.0,21.0,3.0,54.0,25.0,5.0,116.0,317.0,80.0,0.0,7.0,58.0,26.0,85.0,253.0,2.0,464.0,127.0,240.0,8.0,71.0,6.0,23.0,687.0,102.0,55.0,337.0,53.0,14.0,15.0,87.0,21.0,1019.0,141.0,161.0,3.0,75.0,0.0,187.0,0.0,66.0,96.0,111.0,260.0,2.0,8.0,57.0,5.0,176.0,30.0,108.0,194.0,67.0,3.0,31.0,323.0,46.0,375.0,27.0,5.0,98.0,34.0,81.0,646.0,253.0,0.0,164.0,61.0,35.0,278.0,24.0,20.0,1.0,37.0,747.0,6.0,535.0,15.0,14.0,73.0,1106.0,946.0,61.0,60.0,4.0,67.0,94.0,42.0,480.0,99.0,0.0,641.0,22.0,27.0,1583.0,136.0,717.0,49.0,193.0,759.0,0.0,95.0,410.0,86.0,11.0,413.0,223.0,84.0,287.0,148.0,63.0,9.0,461.0,4.0,159.0,38.0,24.0,97.0,28.0,1152.0,287.0,247.0,1278.0,1.0,409.0,1048.0,600.0,219.0,87.0,259.0,18.0,48.0,328.0,310.0,45.0,39.0,104.0,1532.0,37.0,38.0,1145.0,20.0,7.0,376.0,113.0,95.0,219.0,21.0,59.0,16.0,0.0,1.0,30.0,58.0,307.0,142.0,792.0,641.0,25.0,85.0,13.0,61.0,0.0,80.0,9.0,746.0,89.0,114.0,256.0,52.0,28.0,5.0,24.0,35.0,43.0,511.0,249.0,122.0,34.0,19.0,21.0,27.0,92.0,127.0,30.0,8.0,23.0,40.0,26.0,51.0,72.0,348.0,104.0,70.0,156.0,132.0,5.0,1.0,131.0,34.0,527.0,17.0,24.0,139.0,13.0,60.0,11.0,12.0,4.0,109.0,19.0,60.0,112.0,4.0,523.0,225.0,61.0,132.0,31.0,66.0,46.0,8.0,37.0,156.0,6.0,7.0,24.0,0.0,435.0,39.0,139.0,3.0,63.0,19.0,19.0,0.0,11.0,72.0,43.0,65.0,2.0,649.0,102.0,54.0,31.0,38.0,17.0,29.0,1092.0,99.0,97.0,35.0,21.0,119.0,433.0,5.0,460.0,19.0,5.0,87.0,25.0,59.0,36.0,36.0,322.0,51.0,61.2,2019-03-17,,2019-11,61.06130852935942,65.18965662764, +255,255,155.0,6.0,5.0,2.0,247.0,87.0,11.0,100.0,163.0,106.0,15.0,1060.0,0.0,21.0,36.0,1.0,4.0,4.0,183.0,37.0,21.0,59.0,105.0,259.0,77.0,140.0,19.0,3.0,77.0,44.0,5.0,129.0,409.0,78.0,0.0,15.0,60.0,42.0,135.0,343.0,7.0,617.0,162.0,244.0,16.0,103.0,6.0,31.0,982.0,116.0,79.0,450.0,88.0,21.0,28.0,98.0,57.0,1283.0,225.0,207.0,1.0,101.0,0.0,133.0,0.0,90.0,138.0,153.0,305.0,1.0,15.0,90.0,9.0,247.0,30.0,126.0,204.0,89.0,0.0,13.0,349.0,37.0,448.0,29.0,7.0,138.0,15.0,106.0,877.0,270.0,0.0,216.0,87.0,33.0,339.0,30.0,30.0,0.0,40.0,880.0,8.0,342.0,29.0,17.0,69.0,1295.0,1104.0,52.0,66.0,4.0,62.0,119.0,66.0,714.0,118.0,3.0,766.0,18.0,34.0,1731.0,141.0,841.0,47.0,219.0,888.0,0.0,135.0,510.0,129.0,26.0,545.0,336.0,95.0,390.0,219.0,66.0,16.0,666.0,4.0,290.0,63.0,47.0,104.0,22.0,1334.0,370.0,276.0,1850.0,4.0,536.0,1387.0,695.0,248.0,76.0,282.0,25.0,80.0,458.0,296.0,36.0,26.0,154.0,1915.0,41.0,46.0,1167.0,33.0,5.0,488.0,167.0,102.0,326.0,6.0,98.0,23.0,2.0,1.0,44.0,60.0,358.0,131.0,1136.0,803.0,29.0,84.0,11.0,53.0,0.0,110.0,30.0,848.0,153.0,144.0,403.0,59.0,32.0,16.0,55.0,60.0,76.0,732.0,341.0,135.0,81.0,23.0,40.0,25.0,97.0,125.0,41.0,15.0,23.0,29.0,21.0,51.0,115.0,426.0,134.0,78.0,201.0,162.0,9.0,2.0,168.0,31.0,673.0,7.0,17.0,125.0,30.0,264.0,7.0,19.0,7.0,103.0,14.0,92.0,144.0,6.0,667.0,256.0,71.0,207.0,40.0,122.0,70.0,8.0,28.0,184.0,20.0,22.0,51.0,1.0,528.0,53.0,167.0,6.0,77.0,14.0,12.0,0.0,17.0,111.0,66.0,47.0,10.0,733.0,108.0,73.0,41.0,50.0,17.0,17.0,1254.0,129.0,28.0,53.0,27.0,59.0,576.0,2.0,492.0,17.0,5.0,124.0,28.0,77.0,56.0,33.0,277.0,64.0,57.22,2019-03-24,,2019-12,56.95095970730708,56.014, +256,256,112.0,3.0,4.0,2.0,209.0,89.0,4.0,73.0,115.0,79.0,15.0,526.0,0.0,16.0,21.0,3.0,7.0,1.0,125.0,25.0,8.0,36.0,86.0,259.0,47.0,102.0,20.0,2.0,69.0,14.0,1.0,107.0,311.0,37.0,0.0,6.0,40.0,7.0,103.0,161.0,4.0,404.0,122.0,230.0,11.0,73.0,6.0,27.0,794.0,90.0,53.0,443.0,79.0,10.0,20.0,81.0,45.0,884.0,215.0,122.0,0.0,81.0,0.0,81.0,1.0,88.0,129.0,79.0,253.0,3.0,24.0,72.0,4.0,187.0,22.0,105.0,193.0,60.0,0.0,6.0,414.0,38.0,341.0,22.0,7.0,87.0,9.0,83.0,643.0,194.0,0.0,156.0,87.0,46.0,255.0,25.0,21.0,0.0,36.0,869.0,3.0,335.0,12.0,20.0,84.0,1296.0,646.0,48.0,62.0,4.0,80.0,88.0,61.0,468.0,156.0,3.0,628.0,14.0,39.0,1563.0,128.0,697.0,38.0,181.0,744.0,0.0,92.0,535.0,137.0,15.0,485.0,290.0,61.0,406.0,155.0,114.0,13.0,530.0,5.0,172.0,34.0,44.0,67.0,12.0,1073.0,253.0,217.0,1715.0,1.0,462.0,938.0,694.0,172.0,120.0,272.0,9.0,95.0,327.0,308.0,50.0,35.0,100.0,1346.0,21.0,40.0,827.0,16.0,6.0,330.0,105.0,90.0,268.0,6.0,69.0,22.0,0.0,2.0,47.0,46.0,332.0,97.0,875.0,683.0,23.0,62.0,6.0,31.0,0.0,64.0,15.0,829.0,120.0,115.0,289.0,49.0,38.0,17.0,57.0,28.0,39.0,642.0,233.0,118.0,59.0,22.0,23.0,11.0,99.0,105.0,22.0,16.0,25.0,20.0,26.0,50.0,98.0,473.0,116.0,38.0,209.0,113.0,5.0,2.0,125.0,25.0,475.0,13.0,11.0,104.0,24.0,72.0,2.0,3.0,8.0,87.0,21.0,71.0,208.0,3.0,573.0,254.0,54.0,198.0,59.0,89.0,40.0,3.0,14.0,173.0,15.0,6.0,29.0,1.0,396.0,44.0,165.0,7.0,88.0,15.0,10.0,0.0,15.0,93.0,66.0,67.0,5.0,561.0,137.0,44.0,29.0,48.0,22.0,26.0,1526.0,119.0,29.0,33.0,16.0,49.0,407.0,8.0,503.0,27.0,7.0,82.0,20.0,64.0,36.0,23.0,188.0,50.0,36.64,2019-03-31,,2019-13,36.5763650354603,61.8265980561, +257,257,174.0,12.0,6.0,0.0,256.0,100.0,10.0,111.0,208.0,89.0,24.0,715.0,2.0,10.0,27.0,1.0,10.0,2.0,157.0,38.0,12.0,63.0,109.0,279.0,57.0,150.0,42.0,5.0,96.0,21.0,5.0,156.0,413.0,68.0,1.0,13.0,80.0,21.0,172.0,338.0,3.0,637.0,148.0,476.0,11.0,107.0,15.0,35.0,1074.0,130.0,92.0,590.0,117.0,8.0,41.0,89.0,64.0,1210.0,261.0,177.0,2.0,122.0,1.0,147.0,14.0,92.0,126.0,103.0,310.0,1.0,25.0,80.0,6.0,237.0,34.0,105.0,292.0,115.0,3.0,17.0,528.0,42.0,457.0,18.0,9.0,177.0,23.0,72.0,956.0,259.0,0.0,238.0,88.0,54.0,302.0,61.0,40.0,1.0,54.0,1068.0,14.0,394.0,14.0,30.0,87.0,1503.0,741.0,36.0,78.0,2.0,88.0,135.0,55.0,749.0,167.0,3.0,857.0,24.0,50.0,2071.0,173.0,854.0,57.0,242.0,853.0,1.0,117.0,641.0,176.0,9.0,602.0,393.0,90.0,519.0,230.0,134.0,16.0,744.0,10.0,306.0,48.0,56.0,102.0,22.0,1629.0,381.0,252.0,2248.0,4.0,558.0,1222.0,822.0,213.0,157.0,284.0,16.0,97.0,397.0,393.0,49.0,38.0,135.0,1633.0,30.0,50.0,2090.0,57.0,10.0,483.0,127.0,114.0,297.0,5.0,89.0,34.0,2.0,1.0,57.0,77.0,363.0,180.0,977.0,978.0,18.0,114.0,9.0,48.0,0.0,102.0,23.0,1079.0,201.0,173.0,447.0,44.0,46.0,16.0,55.0,36.0,72.0,858.0,387.0,116.0,101.0,24.0,39.0,25.0,132.0,130.0,47.0,16.0,23.0,30.0,50.0,65.0,134.0,648.0,136.0,93.0,271.0,128.0,7.0,2.0,148.0,29.0,772.0,5.0,31.0,127.0,25.0,177.0,5.0,7.0,7.0,131.0,31.0,86.0,200.0,3.0,566.0,298.0,84.0,224.0,51.0,109.0,79.0,6.0,21.0,206.0,14.0,6.0,28.0,1.0,511.0,66.0,188.0,11.0,88.0,21.0,16.0,0.0,27.0,108.0,77.0,61.0,4.0,765.0,200.0,77.0,42.0,59.0,30.0,26.0,1765.0,166.0,28.0,62.0,72.0,105.0,522.0,7.0,706.0,35.0,8.0,150.0,48.0,104.0,46.0,48.0,293.0,74.0,33.72,2019-04-07,,2019-14,34.049527244646214,42.47319795626001, +258,258,152.0,6.0,2.0,1.0,224.0,113.0,8.0,112.0,181.0,127.0,17.0,633.0,0.0,10.0,29.0,0.0,7.0,2.0,167.0,42.0,14.0,81.0,95.0,367.0,55.0,141.0,21.0,2.0,97.0,35.0,8.0,157.0,424.0,73.0,0.0,12.0,40.0,16.0,137.0,625.0,1.0,527.0,178.0,311.0,13.0,117.0,29.0,16.0,1067.0,129.0,65.0,522.0,144.0,38.0,19.0,124.0,64.0,1153.0,299.0,180.0,0.0,99.0,0.0,108.0,1.0,94.0,186.0,100.0,301.0,0.0,18.0,84.0,6.0,307.0,38.0,115.0,426.0,132.0,0.0,12.0,459.0,60.0,508.0,32.0,7.0,105.0,16.0,149.0,882.0,285.0,0.0,211.0,126.0,44.0,405.0,28.0,55.0,5.0,92.0,991.0,7.0,363.0,21.0,17.0,83.0,1502.0,762.0,59.0,55.0,6.0,68.0,132.0,63.0,656.0,189.0,2.0,756.0,31.0,61.0,1865.0,167.0,793.0,34.0,250.0,1051.0,0.0,127.0,565.0,152.0,24.0,564.0,379.0,96.0,554.0,225.0,135.0,37.0,747.0,10.0,281.0,43.0,56.0,86.0,25.0,1485.0,382.0,290.0,1907.0,5.0,564.0,1296.0,796.0,249.0,163.0,320.0,11.0,64.0,403.0,371.0,44.0,39.0,145.0,1677.0,33.0,52.0,6697.0,127.0,7.0,337.0,144.0,110.0,363.0,9.0,93.0,27.0,1.0,0.0,58.0,60.0,385.0,210.0,1042.0,881.0,34.0,76.0,15.0,46.0,1.0,117.0,32.0,1048.0,137.0,152.0,348.0,53.0,53.0,11.0,54.0,42.0,27.0,935.0,389.0,102.0,83.0,35.0,46.0,19.0,129.0,141.0,55.0,13.0,33.0,19.0,44.0,46.0,111.0,572.0,173.0,86.0,191.0,109.0,4.0,1.0,205.0,39.0,818.0,11.0,36.0,127.0,18.0,79.0,13.0,14.0,7.0,130.0,49.0,75.0,138.0,5.0,553.0,277.0,104.0,215.0,56.0,129.0,145.0,3.0,20.0,194.0,25.0,9.0,39.0,1.0,578.0,55.0,182.0,15.0,107.0,23.0,9.0,0.0,24.0,137.0,55.0,37.0,7.0,796.0,154.0,66.0,28.0,55.0,38.0,41.0,1789.0,170.0,24.0,77.0,33.0,85.0,488.0,3.0,742.0,22.0,4.0,108.0,63.0,83.0,49.0,38.0,242.0,61.0,35.12,2019-04-14,,2019-15,35.512545141606836,32.724000000000004, +259,259,197.0,7.0,5.0,0.0,294.0,120.0,18.0,125.0,211.0,119.0,35.0,671.0,4.0,7.0,51.0,1.0,13.0,1.0,190.0,60.0,18.0,65.0,94.0,330.0,72.0,151.0,47.0,9.0,75.0,40.0,3.0,153.0,486.0,122.0,1.0,9.0,46.0,29.0,140.0,1070.0,1.0,580.0,204.0,376.0,15.0,125.0,18.0,80.0,1041.0,148.0,74.0,621.0,209.0,23.0,37.0,107.0,56.0,1197.0,295.0,240.0,4.0,118.0,1.0,250.0,3.0,107.0,257.0,78.0,331.0,0.0,18.0,107.0,19.0,475.0,38.0,145.0,292.0,121.0,1.0,15.0,510.0,47.0,552.0,21.0,10.0,118.0,28.0,100.0,918.0,366.0,0.0,241.0,124.0,54.0,381.0,32.0,45.0,5.0,76.0,1263.0,10.0,413.0,26.0,44.0,103.0,1764.0,646.0,56.0,78.0,11.0,95.0,144.0,61.0,735.0,183.0,2.0,842.0,20.0,61.0,2196.0,161.0,922.0,43.0,234.0,979.0,0.0,171.0,676.0,164.0,12.0,583.0,417.0,152.0,613.0,243.0,203.0,21.0,758.0,15.0,260.0,68.0,80.0,111.0,31.0,1575.0,361.0,315.0,2116.0,1.0,656.0,1391.0,1048.0,333.0,184.0,321.0,16.0,104.0,417.0,455.0,38.0,42.0,136.0,1840.0,29.0,43.0,9765.0,204.0,13.0,423.0,135.0,125.0,484.0,13.0,113.0,37.0,2.0,5.0,58.0,57.0,470.0,205.0,3000.0,1062.0,33.0,112.0,13.0,61.0,0.0,119.0,53.0,1252.0,139.0,157.0,398.0,76.0,74.0,16.0,44.0,43.0,58.0,1095.0,408.0,128.0,124.0,37.0,44.0,41.0,148.0,150.0,43.0,17.0,31.0,36.0,55.0,79.0,168.0,658.0,151.0,104.0,269.0,138.0,10.0,9.0,216.0,42.0,1027.0,8.0,34.0,141.0,158.0,97.0,5.0,21.0,3.0,143.0,49.0,111.0,380.0,5.0,901.0,293.0,84.0,236.0,65.0,115.0,214.0,5.0,22.0,222.0,23.0,7.0,56.0,2.0,506.0,57.0,182.0,9.0,109.0,35.0,8.0,0.0,30.0,142.0,105.0,55.0,8.0,728.0,184.0,86.0,33.0,91.0,27.0,23.0,2176.0,191.0,38.0,66.0,51.0,83.0,787.0,3.0,832.0,23.0,1.0,116.0,28.0,75.0,69.0,47.0,238.0,59.0,24.54,2019-04-21,,2019-16,24.93920437579561,31.544, diff --git a/gsoc_application_projects/2020/influenza/web/influenza_estimator/data/germany.csv b/gsoc_application_projects/2020/influenza/dash/data/germany.csv similarity index 100% rename from gsoc_application_projects/2020/influenza/web/influenza_estimator/data/germany.csv rename to gsoc_application_projects/2020/influenza/dash/data/germany.csv diff --git a/gsoc_application_projects/2020/influenza/web/influenza_estimator/data/italy.csv b/gsoc_application_projects/2020/influenza/dash/data/italy.csv similarity index 100% rename from gsoc_application_projects/2020/influenza/web/influenza_estimator/data/italy.csv rename to gsoc_application_projects/2020/influenza/dash/data/italy.csv diff --git a/gsoc_application_projects/2020/influenza/web/influenza_estimator/data/netherlands.csv b/gsoc_application_projects/2020/influenza/dash/data/netherlands.csv similarity index 100% rename from gsoc_application_projects/2020/influenza/web/influenza_estimator/data/netherlands.csv rename to gsoc_application_projects/2020/influenza/dash/data/netherlands.csv diff --git a/gsoc_application_projects/2020/influenza/web/influenza_estimator/data/processed/austria_features.csv b/gsoc_application_projects/2020/influenza/dash/data/processed/austria_features.csv similarity index 100% rename from gsoc_application_projects/2020/influenza/web/influenza_estimator/data/processed/austria_features.csv rename to gsoc_application_projects/2020/influenza/dash/data/processed/austria_features.csv diff --git a/gsoc_application_projects/2020/influenza/web/influenza_estimator/data/processed/austria_labels.csv b/gsoc_application_projects/2020/influenza/dash/data/processed/austria_labels.csv similarity index 100% rename from gsoc_application_projects/2020/influenza/web/influenza_estimator/data/processed/austria_labels.csv rename to gsoc_application_projects/2020/influenza/dash/data/processed/austria_labels.csv diff --git a/gsoc_application_projects/2020/influenza/web/influenza_estimator/data/processed/belgium_features.csv b/gsoc_application_projects/2020/influenza/dash/data/processed/belgium_features.csv similarity index 100% rename from gsoc_application_projects/2020/influenza/web/influenza_estimator/data/processed/belgium_features.csv rename to gsoc_application_projects/2020/influenza/dash/data/processed/belgium_features.csv diff --git a/gsoc_application_projects/2020/influenza/web/influenza_estimator/data/processed/belgium_labels.csv b/gsoc_application_projects/2020/influenza/dash/data/processed/belgium_labels.csv similarity index 100% rename from gsoc_application_projects/2020/influenza/web/influenza_estimator/data/processed/belgium_labels.csv rename to gsoc_application_projects/2020/influenza/dash/data/processed/belgium_labels.csv diff --git a/gsoc_application_projects/2020/influenza/web/influenza_estimator/data/processed/germany_features.csv b/gsoc_application_projects/2020/influenza/dash/data/processed/germany_features.csv similarity index 100% rename from gsoc_application_projects/2020/influenza/web/influenza_estimator/data/processed/germany_features.csv rename to gsoc_application_projects/2020/influenza/dash/data/processed/germany_features.csv diff --git a/gsoc_application_projects/2020/influenza/web/influenza_estimator/data/processed/germany_labels.csv b/gsoc_application_projects/2020/influenza/dash/data/processed/germany_labels.csv similarity index 100% rename from gsoc_application_projects/2020/influenza/web/influenza_estimator/data/processed/germany_labels.csv rename to gsoc_application_projects/2020/influenza/dash/data/processed/germany_labels.csv diff --git a/gsoc_application_projects/2020/influenza/web/influenza_estimator/data/processed/italy_features.csv b/gsoc_application_projects/2020/influenza/dash/data/processed/italy_features.csv similarity index 100% rename from gsoc_application_projects/2020/influenza/web/influenza_estimator/data/processed/italy_features.csv rename to gsoc_application_projects/2020/influenza/dash/data/processed/italy_features.csv diff --git a/gsoc_application_projects/2020/influenza/web/influenza_estimator/data/processed/italy_labels.csv b/gsoc_application_projects/2020/influenza/dash/data/processed/italy_labels.csv similarity index 100% rename from gsoc_application_projects/2020/influenza/web/influenza_estimator/data/processed/italy_labels.csv rename to gsoc_application_projects/2020/influenza/dash/data/processed/italy_labels.csv diff --git a/gsoc_application_projects/2020/influenza/web/influenza_estimator/data/processed/netherlands.csv b/gsoc_application_projects/2020/influenza/dash/data/processed/netherlands.csv similarity index 100% rename from gsoc_application_projects/2020/influenza/web/influenza_estimator/data/processed/netherlands.csv rename to gsoc_application_projects/2020/influenza/dash/data/processed/netherlands.csv diff --git a/gsoc_application_projects/2020/influenza/web/influenza_estimator/data/processed/netherlands_features.csv b/gsoc_application_projects/2020/influenza/dash/data/processed/netherlands_features.csv similarity index 100% rename from gsoc_application_projects/2020/influenza/web/influenza_estimator/data/processed/netherlands_features.csv rename to gsoc_application_projects/2020/influenza/dash/data/processed/netherlands_features.csv diff --git a/gsoc_application_projects/2020/influenza/web/influenza_estimator/data/processed/netherlands_labels.csv b/gsoc_application_projects/2020/influenza/dash/data/processed/netherlands_labels.csv similarity index 100% rename from gsoc_application_projects/2020/influenza/web/influenza_estimator/data/processed/netherlands_labels.csv rename to gsoc_application_projects/2020/influenza/dash/data/processed/netherlands_labels.csv diff --git a/gsoc_application_projects/2020/influenza/dash/data/saved.csv b/gsoc_application_projects/2020/influenza/dash/data/saved.csv new file mode 100644 index 0000000..e958ab5 --- /dev/null +++ b/gsoc_application_projects/2020/influenza/dash/data/saved.csv @@ -0,0 +1,31 @@ +,Unnamed: 0,Unnamed: 0.1,Unnamed: 0.1.1,Unnamed: 0.1.1.1,Unnamed: 0.1.1.1.1,Unnamed: 0.1.1.1.1.1,Unnamed: 0.1.1.1.1.1.1,Unnamed: 0.1.1.1.1.1.1.1,Unnamed: 0.1.1.1.1.1.1.1.1,austria,belgium,germany,italy,netherlands,date +0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,844.5686933370198,277.96020465846,20.208,9.302,88.72925250566, +1,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,,844.5686933370198,277.96020465846,20.208,9.302,88.72925250566, +2,2.0,2.0,2.0,2.0,2.0,2.0,2.0,,,844.5686933370198,277.96020465846,20.208,9.302,88.72925250566, +3,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,,844.5686933370198,277.96020465846,20.208,9.302,88.72925250566, +4,4.0,4.0,4.0,4.0,4.0,4.0,,,,844.5686933370198,277.96020465846,20.208,9.302,88.72925250566, +5,5.0,5.0,5.0,5.0,5.0,5.0,,,,844.5686933370198,277.96020465846,20.208,9.302,88.72925250566, +6,6.0,6.0,6.0,6.0,6.0,,,,,851.0207308266597,515.6326506475001,20.208,8.030000000000001,88.72925250566, +7,7.0,7.0,7.0,7.0,7.0,,,,,851.0207308266597,515.6326506475001,20.208,8.030000000000001,88.72925250566, +8,8.0,8.0,8.0,8.0,8.0,,,,,757.5273658733,599.9983690378001,20.208,8.004000000000001,88.72925250566, +9,9.0,9.0,9.0,9.0,9.0,,,,,757.5273658733,599.9983690378001,20.208,8.004000000000001,88.72925250566, +10,10.0,10.0,10.0,10.0,10.0,,,,,757.5273658733,599.9983690378001,20.208,8.004000000000001,88.72925250566, +11,11.0,11.0,11.0,11.0,11.0,,,,,757.5273658733,599.9983690378001,20.208,8.004000000000001,88.72925250566, +12,12.0,12.0,12.0,12.0,,,,,,757.5273658733,599.9983690378001,20.208,8.004000000000001,88.72925250566, +13,13.0,13.0,13.0,13.0,,,,,,757.5273658733,599.9983690378001,20.208,8.004000000000001,88.72925250566, +14,14.0,14.0,14.0,,,,,,,757.5273658733,599.9983690378001,20.208,8.004000000000001,88.72925250566, +15,15.0,15.0,15.0,,,,,,,757.5273658733,599.9983690378001,20.208,8.004000000000001,88.72925250566, +16,16.0,16.0,,,,,,,,858.42189079074,550.4945693249001,20.208,7.786000000000001,88.78670247880001, +17,17.0,17.0,,,,,,,,858.42189079074,550.4945693249001,20.208,7.786000000000001,88.78670247880001, +18,18.0,18.0,,,,,,,,858.42189079074,550.4945693249001,20.208,7.786000000000001,88.78670247880001, +19,19.0,19.0,,,,,,,,858.42189079074,550.4945693249001,20.208,7.786000000000001,88.78670247880001, +20,20.0,20.0,,,,,,,,858.42189079074,550.4945693249001,20.208,7.786000000000001,88.78670247880001, +21,21.0,21.0,,,,,,,,858.42189079074,550.4945693249001,20.208,7.786000000000001,88.78670247880001, +22,22.0,22.0,,,,,,,,858.42189079074,550.4945693249001,20.208,7.786000000000001,88.78670247880001, +23,23.0,,,,,,,,,844.5686933370202,503.62144715825997,20.208,10.43,73.89386277972, +24,24.0,,,,,,,,,844.5686933370202,503.62144715825997,20.208,10.43,73.89386277972, +25,25.0,,,,,,,,,844.5686933370202,503.62144715825997,20.208,10.43,73.89386277972, +26,26.0,,,,,,,,,844.5686933370202,503.62144715825997,20.208,10.43,73.89386277972, +27,27.0,,,,,,,,,844.5686933370202,503.62144715825997,20.208,10.43,73.89386277972, +28,28.0,,,,,,,,,844.5686933370202,503.62144715825997,20.208,10.43,73.89386277972, +29,,,,,,,,,,844.5686933370202,503.62144715825997,20.208,10.43,73.89386277972,2020-08-31 diff --git a/gsoc_application_projects/2020/influenza/web/influenza_estimator/random_forest/model.py b/gsoc_application_projects/2020/influenza/dash/random_forest/model.py similarity index 94% rename from gsoc_application_projects/2020/influenza/web/influenza_estimator/random_forest/model.py rename to gsoc_application_projects/2020/influenza/dash/random_forest/model.py index cf643eb..dc2446d 100644 --- a/gsoc_application_projects/2020/influenza/web/influenza_estimator/random_forest/model.py +++ b/gsoc_application_projects/2020/influenza/dash/random_forest/model.py @@ -7,14 +7,14 @@ import logging import numpy as np import shogun as sg -from .. import config -from . import util +import config +from random_forest import util class Model: def __init__(self): logging.basicConfig(filename=config.LOG_FILENAME, level=logging.INFO) - sg.env().signal().enable_handler(False) + # sg.env().signal().enable_handler(False) self.random_forest = {} def train(self): diff --git a/gsoc_application_projects/2020/influenza/web/influenza_estimator/random_forest/util.py b/gsoc_application_projects/2020/influenza/dash/random_forest/util.py similarity index 100% rename from gsoc_application_projects/2020/influenza/web/influenza_estimator/random_forest/util.py rename to gsoc_application_projects/2020/influenza/dash/random_forest/util.py diff --git a/gsoc_application_projects/2020/influenza/web/requirements.txt b/gsoc_application_projects/2020/influenza/dash/requirements.txt similarity index 96% rename from gsoc_application_projects/2020/influenza/web/requirements.txt rename to gsoc_application_projects/2020/influenza/dash/requirements.txt index b7f563b..5093a58 100644 --- a/gsoc_application_projects/2020/influenza/web/requirements.txt +++ b/gsoc_application_projects/2020/influenza/dash/requirements.txt @@ -1,3 +1,6 @@ +pandas==0.24.2 +dash==1.12.0 +gunicorn==19.9.0 attrdict==2.0.1 attrs==19.3.0 backcall==0.1.0 @@ -33,7 +36,6 @@ notebook==6.0.3 numpy==1.18.4 opencv-python==4.2.0.34 pageviewapi==0.4.0 -pandas==0.22.0 pandocfilters==1.4.2 parso==0.7.0 patsy==0.5.1 diff --git a/gsoc_application_projects/2020/influenza/web/influenza_estimator/revised_keywords/austria.txt b/gsoc_application_projects/2020/influenza/dash/revised_keywords/austria.txt similarity index 100% rename from gsoc_application_projects/2020/influenza/web/influenza_estimator/revised_keywords/austria.txt rename to gsoc_application_projects/2020/influenza/dash/revised_keywords/austria.txt diff --git a/gsoc_application_projects/2020/influenza/web/influenza_estimator/revised_keywords/belgium.txt b/gsoc_application_projects/2020/influenza/dash/revised_keywords/belgium.txt similarity index 100% rename from gsoc_application_projects/2020/influenza/web/influenza_estimator/revised_keywords/belgium.txt rename to gsoc_application_projects/2020/influenza/dash/revised_keywords/belgium.txt diff --git a/gsoc_application_projects/2020/influenza/web/influenza_estimator/revised_keywords/germany.txt b/gsoc_application_projects/2020/influenza/dash/revised_keywords/germany.txt similarity index 100% rename from gsoc_application_projects/2020/influenza/web/influenza_estimator/revised_keywords/germany.txt rename to gsoc_application_projects/2020/influenza/dash/revised_keywords/germany.txt diff --git a/gsoc_application_projects/2020/influenza/web/influenza_estimator/revised_keywords/italy.txt b/gsoc_application_projects/2020/influenza/dash/revised_keywords/italy.txt similarity index 100% rename from gsoc_application_projects/2020/influenza/web/influenza_estimator/revised_keywords/italy.txt rename to gsoc_application_projects/2020/influenza/dash/revised_keywords/italy.txt diff --git a/gsoc_application_projects/2020/influenza/web/influenza_estimator/revised_keywords/netherlands.txt b/gsoc_application_projects/2020/influenza/dash/revised_keywords/netherlands.txt similarity index 100% rename from gsoc_application_projects/2020/influenza/web/influenza_estimator/revised_keywords/netherlands.txt rename to gsoc_application_projects/2020/influenza/dash/revised_keywords/netherlands.txt diff --git a/gsoc_application_projects/2020/influenza/web/influenza_estimator/util.py b/gsoc_application_projects/2020/influenza/dash/util.py similarity index 88% rename from gsoc_application_projects/2020/influenza/web/influenza_estimator/util.py rename to gsoc_application_projects/2020/influenza/dash/util.py index dc02322..ffa4f7b 100644 --- a/gsoc_application_projects/2020/influenza/web/influenza_estimator/util.py +++ b/gsoc_application_projects/2020/influenza/dash/util.py @@ -1,3 +1,10 @@ +# -*- coding: utf-8 -*- +"""Utility Functions for web application. + +Author: Tej Sukhatme + +""" + import copy import logging from datetime import timedelta, date, datetime @@ -9,21 +16,24 @@ from pageviewapi.client import ZeroOrDataNotLoadedException, \ ThrottlingException -from . import config -from .random_forest import model +import config +from random_forest import model class DataGateway: def __init__(self): logging.basicConfig(filename=config.LOG_FILENAME, level=logging.INFO) - self.data_path = Path.cwd() / 'influenza_estimator' / 'data' + self.data_path = Path.cwd() / 'data' self.df = {} self.wiki = WikiGateway() self.estimator = ModelGateway() self.current_file_path = self.data_path / 'current.csv' + self.saved_file_path = self.data_path / 'saved.csv' self.current_df = pd.read_csv(self.current_file_path) self.current_df = self.current_df.set_index('country') + self.saved_df = pd.read_csv(self.saved_file_path) + self.saved_df = self.saved_df.set_index('date') for country in config.COUNTRIES: file_path = self.data_path / (country + '.csv') self.df[country] = pd.read_csv(file_path) @@ -49,6 +59,16 @@ def get_incidence(self, **filters): query = self.query(country, week) incidence = query['estimate'] ans[country] = incidence + if week == 'current': + yesterday = date.today() - timedelta(days=1) + self.saved_df = self.saved_df.append({'date': yesterday, + 'austria': ans['austria'], + 'belgium': ans['belgium'], + 'germany': ans['germany'], + 'italy': ans['italy'], + 'netherlands': ans['netherlands']}, + ignore_index=True) + self.saved_df.to_csv(self.saved_file_path) return ans def query(self, country, week): diff --git a/gsoc_application_projects/2020/influenza/web/MANIFEST.in b/gsoc_application_projects/2020/influenza/web/MANIFEST.in deleted file mode 100644 index 680e553..0000000 --- a/gsoc_application_projects/2020/influenza/web/MANIFEST.in +++ /dev/null @@ -1,3 +0,0 @@ -graft influenza_estimator/static -graft influenza_estimator/templates -global-exclude *.pyc diff --git a/gsoc_application_projects/2020/influenza/web/influenza_estimator/__init__.py b/gsoc_application_projects/2020/influenza/web/influenza_estimator/__init__.py deleted file mode 100644 index ffdaadb..0000000 --- a/gsoc_application_projects/2020/influenza/web/influenza_estimator/__init__.py +++ /dev/null @@ -1,35 +0,0 @@ -import os -from . import home, api_v1 -from flask import Flask, redirect, url_for - - -def create_app(test_config=None): - # create and configure the app - app = Flask(__name__, instance_relative_config=True) - app.config.from_mapping( - SECRET_KEY='dev', - ) - - if test_config is None: - # load the instance config, if it exists, when not testing - app.config.from_pyfile('config.py', silent=True) - else: - # load the test config if passed in - app.config.from_mapping(test_config) - - # ensure the instance folder exists - try: - os.makedirs(app.instance_path) - except OSError: - pass - - # a simple page that says hello - @app.route('/') - def hello(): - return redirect('home') - - app.register_blueprint(home.bp) - - app.register_blueprint(api_v1.bp) - - return app diff --git a/gsoc_application_projects/2020/influenza/web/influenza_estimator/api_v1.py b/gsoc_application_projects/2020/influenza/web/influenza_estimator/api_v1.py deleted file mode 100644 index 593b860..0000000 --- a/gsoc_application_projects/2020/influenza/web/influenza_estimator/api_v1.py +++ /dev/null @@ -1,54 +0,0 @@ -import json - -from flask import Blueprint - -from . import util - -bp = Blueprint('api', __name__, url_prefix='/api/v1.0') - -data = util.DataGateway() - - -# Returns the Live influenza ESTIMATE numbers as a JSON file for all countries. -@bp.route('/all/current/', methods=['GET']) -def get_all_current(): - ans = data.get_incidence() - return json.dumps(ans) - - -# Returns older influenza ESTIMATE numbers as a JSON file for all countries. -@bp.route('/all/weekly/estimate///', methods=['GET']) -def get_all_weekly_estimate(year, week): - ans = data.get_incidence(year=year, week=week) - return json.dumps(ans) - - -# Returns older influenza INCIDENCE numbers as a JSON file for all countries. -@bp.route('/all/weekly/incidence///', methods=['GET']) -def get_all_weekly_incidence(year, week): - ans = data.get_incidence(year=year, week=week, category='incidence') - return json.dumps(ans) - - -# Returns the Live influenza ESTIMATE number as a JSON file for one country. -@bp.route('/specific/current/', methods=['GET']) -def get_specific_current(country): - ans = data.get_incidence(countries=[country]) - return json.dumps(ans) - - -# Returns the older influenza ESTIMATE number as a JSON file for one country. -@bp.route('/specific/weekly/estimate///', - methods=['GET']) -def get_specific_weekly_estimate(year, week, country): - ans = data.get_incidence(year=year, week=week, countries=[country]) - return json.dumps(ans) - - -# Returns the older influenza INCIDENCE number as a JSON file for one country. -@bp.route('/specific/weekly/incidence///', - methods=['GET']) -def get_specific_weekly_current(year, week, country): - ans = data.get_incidence(year=year, week=week, countries=[country], - category='incidence') - return json.dumps(ans) diff --git a/gsoc_application_projects/2020/influenza/web/influenza_estimator/config.py b/gsoc_application_projects/2020/influenza/web/influenza_estimator/config.py deleted file mode 100644 index c457d6c..0000000 --- a/gsoc_application_projects/2020/influenza/web/influenza_estimator/config.py +++ /dev/null @@ -1,55 +0,0 @@ -from os import path - -from pathlib import Path - - -class Config(object): - DEBUG = True - PORT = 5000 - HOST = '0.0.0.0' - # URL_PREFIX = '/api' - PROJECT_ROOT = path.abspath(path.dirname(__file__)) - TEMPLATE_FOLDER = path.join(PROJECT_ROOT, 'templates') - # MYSQL_DATABASE_HOST = '127.0.0.1' - # MYSQL_DATABASE_DB = 'default_db' - # MYSQL_DATABASE_USER = 'default_user' - # MYSQL_DATABASE_PASSWORD = 'password' - - -class Development(Config): - DEBUG = True - SECRET_KEY = 'development' - - -class Production(Config): - pass - - -class Testing(Config): - TESTING = True - SECRET_KEY = 'testing' - - -COUNTRIES = ['austria', 'belgium', 'germany', 'italy', 'netherlands'] -LANGUAGE = {'austria' : 'german', - 'belgium' : 'dutch', - 'germany' : 'german', - 'italy' : 'italian', - 'netherlands': 'dutch'} - -PREFIX = {'german': 'de', 'dutch': 'nl', 'italian': 'it'} - -POPULATION = {'austria' : 9003354, - 'belgium' : 11586640, - 'germany' : 83768122, - 'italy' : 60467045, - 'netherlands': 17132636} - -processed_data_path = Path.cwd() / 'influenza_estimator' / 'data' / 'processed' -keywords_path = Path.cwd() / 'influenza_estimator' / 'revised_keywords' -models_path = Path.cwd() / 'influenza_estimator' / 'models' - -years = [2007 + i for i in range(13)] - -LOG_FILENAME = str( - (Path.cwd() / 'influenza_estimator' / 'information.log').absolute()) diff --git a/gsoc_application_projects/2020/influenza/web/influenza_estimator/data/current.csv b/gsoc_application_projects/2020/influenza/web/influenza_estimator/data/current.csv deleted file mode 100644 index ff83905..0000000 --- a/gsoc_application_projects/2020/influenza/web/influenza_estimator/data/current.csv +++ /dev/null @@ -1,6 +0,0 @@ -country,level_0,index,Unnamed: 0,last_checked,estimate -austria,0,0,0,2020-06-14,681.71439619392 -belgium,1,1,1,2020-06-14,544.21695805752 -germany,2,2,2,2020-06-14,11.296000000000001 -italy,3,3,3,2020-06-14,6.816 -netherlands,4,4,4,2020-06-14,105.41629837892002 diff --git a/gsoc_application_projects/2020/influenza/web/influenza_estimator/home.py b/gsoc_application_projects/2020/influenza/web/influenza_estimator/home.py deleted file mode 100644 index ab36b22..0000000 --- a/gsoc_application_projects/2020/influenza/web/influenza_estimator/home.py +++ /dev/null @@ -1,17 +0,0 @@ -from datetime import timedelta, date -from pathlib import Path -from . import util -import pageviewapi -from flask import ( - Blueprint, render_template -) - -bp = Blueprint('home', __name__, url_prefix='/home') -data = util.DataGateway() - - -@bp.route('/') -def display(): - estimates = data.get_incidence() - estimates = util.calculate_count(estimates) - return render_template('home.html', estimates=estimates) diff --git a/gsoc_application_projects/2020/influenza/web/influenza_estimator/models/austria_model.pkl b/gsoc_application_projects/2020/influenza/web/influenza_estimator/models/austria_model.pkl deleted file mode 100644 index f89e7f3..0000000 Binary files a/gsoc_application_projects/2020/influenza/web/influenza_estimator/models/austria_model.pkl and /dev/null differ diff --git a/gsoc_application_projects/2020/influenza/web/influenza_estimator/models/belgium_model.pkl b/gsoc_application_projects/2020/influenza/web/influenza_estimator/models/belgium_model.pkl deleted file mode 100644 index daf35f6..0000000 Binary files a/gsoc_application_projects/2020/influenza/web/influenza_estimator/models/belgium_model.pkl and /dev/null differ diff --git a/gsoc_application_projects/2020/influenza/web/influenza_estimator/models/germany_model.pkl b/gsoc_application_projects/2020/influenza/web/influenza_estimator/models/germany_model.pkl deleted file mode 100644 index 080d297..0000000 Binary files a/gsoc_application_projects/2020/influenza/web/influenza_estimator/models/germany_model.pkl and /dev/null differ diff --git a/gsoc_application_projects/2020/influenza/web/influenza_estimator/models/italy_model.pkl b/gsoc_application_projects/2020/influenza/web/influenza_estimator/models/italy_model.pkl deleted file mode 100644 index 807bf79..0000000 Binary files a/gsoc_application_projects/2020/influenza/web/influenza_estimator/models/italy_model.pkl and /dev/null differ diff --git a/gsoc_application_projects/2020/influenza/web/influenza_estimator/models/netherlands_model.pkl b/gsoc_application_projects/2020/influenza/web/influenza_estimator/models/netherlands_model.pkl deleted file mode 100644 index 10c725b..0000000 Binary files a/gsoc_application_projects/2020/influenza/web/influenza_estimator/models/netherlands_model.pkl and /dev/null differ diff --git a/gsoc_application_projects/2020/influenza/web/influenza_estimator/prepare.ipynb b/gsoc_application_projects/2020/influenza/web/influenza_estimator/prepare.ipynb deleted file mode 100644 index 213e42e..0000000 --- a/gsoc_application_projects/2020/influenza/web/influenza_estimator/prepare.ipynb +++ /dev/null @@ -1,255 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": 8, - "outputs": [], - "source": [ - "import pandas as pd\n", - "import numpy as np\n", - "from pathlib import Path\n", - "import pickle" - ], - "metadata": { - "collapsed": false, - "pycharm": { - "name": "#%%\n" - } - } - }, - { - "cell_type": "code", - "execution_count": 9, - "metadata": { - "collapsed": true, - "pycharm": { - "name": "#%%\n" - } - }, - "outputs": [], - "source": [ - "column_names = [\"country\", \"last_checked\", \"estimate\"]\n", - "data = [['austria', '2020-06-07', 694.5881009475402],\n", - " ['belgium', '2020-06-07', 411.36811373870006],\n", - " ['germany', '2020-06-07', 11.756],\n", - " ['italy', '2020-06-07', 8.456000000000001],\n", - " ['netherlands', '2020-06-07', 88.06163623878001]]\n", - "df = pd.DataFrame(data, columns = column_names)" - ] - }, - { - "cell_type": "code", - "execution_count": 10, - "outputs": [ - { - "data": { - "text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
countrylast_checkedestimate
0austria2020-06-07694.588101
1belgium2020-06-07411.368114
2germany2020-06-0711.756000
3italy2020-06-078.456000
4netherlands2020-06-0788.061636
\n
", - "text/plain": " country last_checked estimate\n0 austria 2020-06-07 694.588101\n1 belgium 2020-06-07 411.368114\n2 germany 2020-06-07 11.756000\n3 italy 2020-06-07 8.456000\n4 netherlands 2020-06-07 88.061636" - }, - "execution_count": 10, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "\n", - "df" - ], - "metadata": { - "collapsed": false, - "pycharm": { - "name": "#%%\n" - } - } - }, - { - "cell_type": "code", - "execution_count": 11, - "outputs": [ - { - "data": { - "text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
last_checkedestimate
country
austria2020-06-07694.588101
belgium2020-06-07411.368114
germany2020-06-0711.756000
italy2020-06-078.456000
netherlands2020-06-0788.061636
\n
", - "text/plain": " last_checked estimate\ncountry \naustria 2020-06-07 694.588101\nbelgium 2020-06-07 411.368114\ngermany 2020-06-07 11.756000\nitaly 2020-06-07 8.456000\nnetherlands 2020-06-07 88.061636" - }, - "execution_count": 11, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "df.set_index('country')" - ], - "metadata": { - "collapsed": false, - "pycharm": { - "name": "#%%\n" - } - } - }, - { - "cell_type": "code", - "execution_count": 12, - "outputs": [ - { - "data": { - "text/plain": "PosixPath('/home/tejsukhatme/GSOC2020/applications/gsoc_application_projects/2020/influenza/web/influenza_estimator/data/current.csv')" - }, - "execution_count": 12, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "data_path = Path.cwd() / 'data' / 'current.csv'\n", - "data_path" - ], - "metadata": { - "collapsed": false, - "pycharm": { - "name": "#%%\n" - } - } - }, - { - "cell_type": "code", - "execution_count": 13, - "outputs": [], - "source": [ - "df.to_csv(data_path)" - ], - "metadata": { - "collapsed": false, - "pycharm": { - "name": "#%%\n" - } - } - }, - { - "cell_type": "code", - "execution_count": 15, - "outputs": [], - "source": [ - "df = {}\n", - "data_path = Path.cwd() / 'data'\n", - "COUNTRIES = ['austria', 'belgium', 'germany', 'italy', 'netherlands']\n", - "for country in COUNTRIES:\n", - " file_path = data_path / (country + '.csv')\n", - " df[country] = pd.read_csv(file_path)\n" - ], - "metadata": { - "collapsed": false, - "pycharm": { - "name": "#%%\n" - } - } - }, - { - "cell_type": "code", - "execution_count": 16, - "outputs": [ - { - "data": { - "text/plain": "array(['Acetaldehydsyndrom', 'Achsensymptom', 'Adeno-assoziierte_Viren',\n 'Adenovirusimpfstoff', 'Adipsie', 'Adynamie', 'Aggravation',\n 'Akantholyse', 'Akroosteolyse', 'Akrozyanose', 'Akute_Bronchitis',\n 'Akute_Mittelohrentzündung', 'Akute_eitrige_Thyreoiditis',\n 'Alkalose', 'Alkoholintoleranz', 'Allgemeininfektion',\n 'Alterssyndrom', 'Amnioninfektionssyndrom', 'Anorexie',\n 'Anthraximpfstoff', 'Anthroponose',\n 'Anti-NMDA-Rezeptor-Enzephalitis', 'Anämie',\n 'Arjenyattah-Epidemie', 'Asthenie', 'Attische_Seuche', 'Azidose',\n 'B-Symptomatik', 'Bagatellisierung', 'Bazex-Syndrom', 'Bendopnoe',\n 'Bilirubinurie', 'Biologische_Schutzstufe',\n 'Biologische_Sicherheitsstufe', 'Blutvergiftung', 'Bradykardie',\n 'Bürstenschädel', 'Cafeteria-roenbergensis-Virus',\n 'Cholera-Aufstand_in_Königsberg',\n 'Choleraepidemie_in_Haiti_ab_2010', 'Choleraepidemie_von_1892',\n 'Choleraimpfstoff', 'Chronische_Schleimhauteiterung',\n 'Chronisches_Schmerzsyndrom', 'Couperose', 'Cyprianische_Pest',\n 'Cytomegalievirusimpfstoff', 'DTP-Impfstoff', 'Dakryozystitis',\n 'Dehnungsstreifen', 'Dengue-Virus-Impfstoff',\n 'Diphtherieepidemie_in_Nome', 'Diphtherieimpfstoff',\n 'Dissimulation', 'Druckpuls', 'Dyschylie', 'Ebola-Impfstoff',\n 'Ebolafieber-Epidemie_2014',\n 'Ebolafieber-Epidemie_in_der_Demokratischen_Republik_Kongo_2014',\n 'Elektrolytstörung', 'Emerging_Infectious_Disease', 'Endokarditis',\n 'Englischer_Schweiß', 'Enzephalitis', 'Enzootie',\n 'Epstein-Barr-Virus-Impfstoff', 'Erkältung', 'Erythrodiapedese',\n 'Exsikkose', 'FSME-Impfstoff', 'Facies_leonina', 'Fieber',\n 'Fieber_unklarer_Genese', 'Fieberdelirium', 'Fischwirbel',\n 'Fleckfieberimpfstoff', 'Furunkel', 'Gebrechlichkeit',\n 'Gelbfieberimpfstoff', 'Geonose', 'Gliederschmerz', 'Glucosurie',\n 'Gordon-Syndrom', 'Grey-Turner-Zeichen', 'Große_Pest_von_London',\n 'HIV-Impfstoff', 'HPV-Impfstoff', 'HUS-Epidemie_2011',\n 'Haar-Heterochromie', 'Haffkrankheit', 'Hakenwurmimpfstoff',\n 'Hamman-Zeichen', 'Harnwegsinfekt', 'Hepatitis-A-Impfstoff',\n 'Hepatitis-B-Impfstoff', 'Hepatosplenomegalie', 'Herdenzephalitis',\n 'Hexavalenter_Impfstoff', 'Hexenschuss', 'Hiatus_leucaemicus',\n 'Hordeolum', 'Horner-Syndrom', 'Hospitalfieber', 'Hypalbuminämie',\n 'Hyperhydratation', 'Hyperkaliämie', 'Hypernatriämie',\n 'Hyperorexie', 'Hyperviskositätssyndrom', 'Hypochromie',\n 'Hypokaliämie', 'Hypokalzämie', 'Hyponatriämie', 'Hämatozele',\n 'Hämaturie', 'Hämoglobinurie', 'Hämolyse', 'Impfstoff',\n 'Infektion', 'Infektionskrankheit', 'Influenzaimpfstoff',\n 'Initialsymptom', 'Intelligenzminderung', 'Intercostalneuralgie',\n 'International_Society_of_Chemotherapy', 'Ischämie',\n 'Isomorpher_Reizeffekt', 'Isosthenurie', 'Italienisches_Fieber',\n 'Japanische-Enzephalitis-Impfstoff', 'Jarisch-Herxheimer-Reaktion',\n 'Juckreiz', 'Kachexie', 'Kahnbauch', 'Kalzinose', 'Kardiomegalie',\n 'Kehr-Zeichen', 'Keratolyse', 'Ketonurie', 'Kolpitis',\n 'Konjugierter_Impfstoff', 'Konjunktivitis', 'Kontaktblutung',\n 'Konvergenzexzess', 'Koordinationsstörungen', 'Kopfschmerz',\n 'Koprophagie', 'Krampfanfall', 'Krebsimpfstoff', 'Krepitation',\n 'Lackzunge', 'Lasègue-Zeichen', 'Lebendimpfstoff',\n 'Legionellose-Ausbruch_in_Jülich_2014',\n 'Legionellose-Ausbruch_in_Warstein_2013', 'Leitsymptom',\n 'Liebermeister-Regel', 'Lipomastie',\n 'Liste_von_Epidemien_und_Pandemien', 'Lokalinfektion',\n 'Lungenentzündung', 'Lymphopenie', 'MMR-Impfstoff',\n 'Madonnenfinger', 'Malariaimpfstoff', 'Marfan-Zeichen',\n 'Markerimpfstoff', 'Marschhämoglobinurie', 'Masernimpfstoff',\n 'Maskengesicht', 'Megalokornea', 'Metabolische_Alkalose',\n 'Metabolische_Azidose', 'Mikroalbuminurie',\n 'Milzbrand-Unfall_in_Swerdlowsk', 'Mittelmeerkrankheit',\n 'Modified-Vaccinia-Ankara-Virus', 'Mumpsimpfstoff',\n 'Muskelhypotonie',\n 'Muskelkrampf-Muskelschmerz-und-Faszikulationen-Syndrom',\n 'Muskelschmerz', 'Myalgie', 'Myoglobinurie', 'Nachtschweiß',\n 'Nageldystrophie', 'Nagelhypoplasie', 'Nervosität',\n 'Neugeborenensepsis', 'Nikolski-Phänomen', 'Nonnensausen',\n 'Nykturie', 'Ohrspeicheldrüsenerkrankung', 'Organomegalie',\n 'Osler-Knötchen', 'Osmotische_Diurese', 'Osteosklerose',\n 'Oststaaten-Polio-Epidemie_von_1916',\n 'Otter-Valley-Polio-Epidemie', 'Palmarerythem', 'Panzytopenie',\n 'Paraneoplastisches_Syndrom', 'Parotitis', 'Pel-Ebstein-Fieber',\n 'Peptidimpfstoff', 'Perifokalödem', 'Pertussisimpfstoff',\n 'Pestimpfstoff', 'Picardsches_Schweißfieber', 'Plazentitis',\n 'Pleuraerguss', 'Pneumococcusimpfstoff', 'Pneumonie',\n 'Pockenepidemie_an_der_Pazifikküste_Nordamerikas_1862',\n 'Pockenepidemie_an_der_Pazifikküste_Nordamerikas_ab_1775',\n 'Pockenepidemie_in_Australien_1789',\n 'Pockenepidemie_in_Boston_1721', 'Pockenimpfstoff',\n 'Polioimpfstoff', 'Polydipsie', 'Polyurie',\n 'Portosystemischer_Shunt', 'Postenzephalitisches_Syndrom',\n 'Potato-Spindle-Tuber-Viroid', 'Proteinurie', 'Protothekose',\n 'Präödem', 'Pseudoparese', 'Pulsdefizit', 'Pyogen', 'Pyämie',\n 'Rachitischer_Rosenkranz', 'Rhinosinusitis', 'Rieder-Formen',\n 'Risus_sardonicus', 'Roseole', 'Rotavirusimpfstoff',\n 'Rötelnimpfstoff', 'Rückenschmerzen', 'Rückenschonhaltung',\n 'SARS-assoziiertes_Coronavirus', 'Saegesser-Zeichen',\n 'Scheidenausfluss', 'Schistosomiasisimpfstoff', 'Schlafstörung',\n 'Schmerz', 'Schmetterlingserythem', 'Schonhaltung',\n 'Schwangerschaftsassoziierte_Osteoporose', 'Schüttelfrost',\n 'Seitenstiche', 'Septikämie', 'Sicca-Syndrom', 'Simulant',\n 'Spermatitis', 'Sphärozytose', 'Sporotrichose',\n 'Stieda-Pellegrini-Köhler-Schatten', 'Symptomatologie',\n 'Säbelscheidentibia', 'Tachykardie', 'Talimogen_laherparepvec',\n 'Tanganjika-Lachepidemie', 'Tetanie', 'Tetanusimpfstoff',\n 'Tollwutimpfstoff', 'Totimpfstoff', 'Toxoidimpfstoff', 'Trachom',\n 'Tropenkrankheit', 'Trypanosomiasisimpfstoff',\n 'Tränendrüsenentzündung', 'Tumoranämie', 'Tumorkachexie',\n 'Typhusepidemie_in_Gelsenkirchen_1901',\n 'Typhusepidemie_von_Lebach', 'Typhusimpfstoff', 'Ulnardeviation',\n 'Untereinheitenimpfstoff', 'Untergewicht',\n 'Unwohlsein_und_Ermüdung', 'Vaginalstein', 'Varicellaimpfstoff',\n 'Vasovagale_Synkope', 'Vergessen', 'Verspannung', 'Virophagen',\n 'Virusinfektion', 'Viszeromegalie', 'Vollmondgesicht',\n 'Wachstumsschmerzen', 'Wehau-Krankheit', 'Winterbottom-Zeichen',\n 'Zahnschmerzen', 'Zervizitis', 'Zikavirus-Epidemie_2015/2016',\n 'Zohlen-Zeichen', 'Zwerchfellhochstand', 'Zyanose', 'cases',\n 'incidence', 'Ödem', 'Übelkeit', 'date', 'estimate', 'week'],\n dtype=object)" - }, - "execution_count": 16, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "df['austria'].columns.values" - ], - "metadata": { - "collapsed": false, - "pycharm": { - "name": "#%%\n" - } - } - }, - { - "cell_type": "code", - "execution_count": 17, - "outputs": [ - { - "data": { - "text/plain": "0 NaN\n1 NaN\n2 NaN\n3 NaN\n4 NaN\n5 NaN\n6 NaN\n7 NaN\n8 NaN\n9 NaN\n10 NaN\n11 NaN\n12 NaN\n13 NaN\n14 NaN\n15 NaN\n16 NaN\n17 NaN\n18 NaN\n19 NaN\n20 NaN\n21 NaN\n22 NaN\n23 NaN\n24 NaN\n25 NaN\n26 NaN\n27 NaN\n28 NaN\n29 NaN\n ... \n126 NaN\n127 NaN\n128 NaN\n129 NaN\n130 NaN\n131 NaN\n132 NaN\n133 NaN\n134 NaN\n135 NaN\n136 NaN\n137 NaN\n138 NaN\n139 NaN\n140 NaN\n141 NaN\n142 NaN\n143 NaN\n144 NaN\n145 NaN\n146 NaN\n147 NaN\n148 NaN\n149 NaN\n150 NaN\n151 NaN\n152 NaN\n153 NaN\n154 NaN\n155 NaN\nName: week, Length: 156, dtype: object" - }, - "execution_count": 17, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "df['austria']['week']" - ], - "metadata": { - "collapsed": false, - "pycharm": { - "name": "#%%\n" - } - } - }, - { - "cell_type": "code", - "execution_count": 21, - "outputs": [], - "source": [ - "from datetime import datetime\n", - "\n", - "for country in COUNTRIES:\n", - " week = []\n", - " if 'cases' in df[country].columns:\n", - " df[country] = df[country].drop(columns=['cases'])\n", - " if 'week' in df[country].columns:\n", - " df[country] = df[country].drop(columns=['week'])\n", - " for index, row in df[country].iterrows():\n", - " date = datetime.strptime(str(row['date']), '%Y-%m-%d')\n", - " week.append(str(date.isocalendar()[0])+'-'+str(date.isocalendar()[1]))\n", - " df[country]['week'] = week" - ], - "metadata": { - "collapsed": false, - "pycharm": { - "name": "#%%\n" - } - } - }, - { - "cell_type": "code", - "execution_count": 22, - "outputs": [], - "source": [ - "for country in COUNTRIES:\n", - " file_path = data_path / (country + '.csv')\n", - " df[country].to_csv(file_path)" - ], - "metadata": { - "collapsed": false, - "pycharm": { - "name": "#%%\n" - } - } - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 2 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython2", - "version": "2.7.6" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/gsoc_application_projects/2020/influenza/web/influenza_estimator/static/css/main.css b/gsoc_application_projects/2020/influenza/web/influenza_estimator/static/css/main.css deleted file mode 100644 index c856ad0..0000000 --- a/gsoc_application_projects/2020/influenza/web/influenza_estimator/static/css/main.css +++ /dev/null @@ -1,58 +0,0 @@ -.row, col-2, col-9 container, container-fluid { - background-color: #4d0026; -} -.block { - background-color: #800040; - color: #ffcce6; - font-family: "Courier New", Courier, monospace; - font-weight: bold; -} -body, html, head { - background-color: #4d0026; - color: #ffcce6; - font-family: "Courier New", Courier, monospace; - font-weight: bold; -} -.ocean { - background-color: #004466; -} -.austria { - position: absolute; - top: 50%; - left: 75%; - color: #e6f9ff; - font-family: "Courier New", Courier, monospace; - font-weight: bold; -} -.belgium { - position: absolute; - top: 45%; - left: 15%; - color: #e6f9ff; - font-family: "Courier New", Courier, monospace; - font-weight: bold; -} -.germany { - position: absolute; - top: 20%; - left: 55%; - color: #e6f9ff; - font-family: "Courier New", Courier, monospace; - font-weight: bold; -} -.italy { - position: absolute; - top: 45%; - left: 40%; - color: #e6f9ff; - font-family: "Courier New", Courier, monospace; - font-weight: bold; -} -.netherlands { - position: absolute; - top: 20%; - left: 28%; - color: #e6f9ff; - font-family: "Courier New", Courier, monospace; - font-weight: bold; -} \ No newline at end of file diff --git a/gsoc_application_projects/2020/influenza/web/influenza_estimator/static/images/bitmap.png b/gsoc_application_projects/2020/influenza/web/influenza_estimator/static/images/bitmap.png deleted file mode 100644 index 32f48b4..0000000 Binary files a/gsoc_application_projects/2020/influenza/web/influenza_estimator/static/images/bitmap.png and /dev/null differ diff --git a/gsoc_application_projects/2020/influenza/web/influenza_estimator/templates/base.html b/gsoc_application_projects/2020/influenza/web/influenza_estimator/templates/base.html deleted file mode 100644 index 1372971..0000000 --- a/gsoc_application_projects/2020/influenza/web/influenza_estimator/templates/base.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - {% block head %}{% endblock %} - - -{% block body %}{% endblock %} - - \ No newline at end of file diff --git a/gsoc_application_projects/2020/influenza/web/influenza_estimator/templates/home.html b/gsoc_application_projects/2020/influenza/web/influenza_estimator/templates/home.html deleted file mode 100644 index d0174d3..0000000 --- a/gsoc_application_projects/2020/influenza/web/influenza_estimator/templates/home.html +++ /dev/null @@ -1,74 +0,0 @@ -{% extends 'base.html' %} - -{% block head %} - Influenza predictor - - - - -{% endblock %} - -{% block body %} -
-
-

Web Tool for Disease Incidence Estimation with SHOGUN

-
- -
-
-
-
-

Total Number of cases

-

{{ estimates['total_count'] }}

-
-
-

Estimated cases by country

-
- - - - - - - - - - - - - - - - - - - - - - - - -

Austria

{{ estimates['austria_count'] }}

Belgium

{{ estimates['belgium_count'] }}

Germany

{{ estimates['germany_count'] }}

Italy

{{ estimates['italy_count'] }}

Netherlands

{{ estimates['netherlands_count'] }}

-
-
-
-

Last Updated at:

-

-

2020/06/12

-
-
-
-
- -

{{ estimates['austria_count'] }}

-

{{ estimates['belgium_count'] }}

-

{{ estimates['germany_count'] }}

-

{{ estimates['italy_count'] }}

-

{{ estimates['netherlands_count'] }}

- -
-
-
-
-
-{% endblock %} \ No newline at end of file diff --git a/gsoc_application_projects/2020/influenza/web/setup.py b/gsoc_application_projects/2020/influenza/web/setup.py deleted file mode 100644 index b961718..0000000 --- a/gsoc_application_projects/2020/influenza/web/setup.py +++ /dev/null @@ -1,12 +0,0 @@ -from setuptools import find_packages, setup - -setup( - name='influenza_estimator', - version='1.0.0', - packages=find_packages(), - include_package_data=True, - zip_safe=False, - install_requires=[ - 'flask', - ], -)