diff --git a/app/components/log_summary_component.html.erb b/app/components/log_summary_component.html.erb index 9c251b6b4..a59c78c64 100644 --- a/app/components/log_summary_component.html.erb +++ b/app/components/log_summary_component.html.erb @@ -25,7 +25,7 @@ <% end %> - <% if log.is_a?(LettingsLog) && (log.needstype? or log.startdate?) %> + <% if log.lettings? && (log.needstype? or log.startdate?) %>

<% if log.needstype? %> <%= log.is_general_needs? ? "General needs" : "Supported housing" %>
@@ -37,18 +37,20 @@ <% end %> <% if current_user.support? || current_user.organisation.has_managing_agents? %> - <% if log.owning_organisation or log.managing_organisation %> -

+
+ <% if log.owning_organisation %> + <% end %> + <% if log.lettings? && log.managing_organisation %> -
- <% end %> + <% end %> +
<% end %> diff --git a/app/controllers/lettings_logs_controller.rb b/app/controllers/lettings_logs_controller.rb index 40560fca8..e7d233f87 100644 --- a/app/controllers/lettings_logs_controller.rb +++ b/app/controllers/lettings_logs_controller.rb @@ -101,6 +101,12 @@ class LettingsLogsController < LogsController end end + def org_params + super.merge( + { "managing_organisation_id" => current_user.organisation.id }, + ) + end + private def permitted_log_params diff --git a/app/controllers/logs_controller.rb b/app/controllers/logs_controller.rb index 083d40178..603608241 100644 --- a/app/controllers/logs_controller.rb +++ b/app/controllers/logs_controller.rb @@ -63,7 +63,6 @@ private owning_organisation_id = current_user.organisation.holds_own_stock? ? current_user.organisation.id : nil { "owning_organisation_id" => owning_organisation_id, - "managing_organisation_id" => current_user.organisation.id, "created_by_id" => current_user.id, } end diff --git a/app/helpers/tab_nav_helper.rb b/app/helpers/tab_nav_helper.rb index 801560b91..c29ae5d86 100644 --- a/app/helpers/tab_nav_helper.rb +++ b/app/helpers/tab_nav_helper.rb @@ -21,11 +21,4 @@ module TabNavHelper role = "#{user.role.to_s.humanize}" [user.organisation.name, role].join("\n") end - - def tab_items(user) - [ - { name: t("Details"), url: details_organisation_path(user.organisation) }, - { name: t("Users"), url: users_organisation_path(user.organisation) }, - ] - end end diff --git a/app/models/form.rb b/app/models/form.rb index 5f6544086..179c56526 100644 --- a/app/models/form.rb +++ b/app/models/form.rb @@ -61,7 +61,7 @@ class Form page_ids = subsection_for_page(page).pages.map(&:id) page_index = page_ids.index(page.id) - page_id = if page.id.include?("value_check") && log[page.questions[0].id] == 1 && page.routed_to?(log, current_user) + page_id = if page.interruption_screen? && log[page.questions[0].id] == 1 && page.routed_to?(log, current_user) previous_page(page_ids, page_index, log, current_user) else page_ids[page_index + 1] diff --git a/app/models/form/sales/pages/extra_borrowing_value_check.rb b/app/models/form/sales/pages/extra_borrowing_value_check.rb new file mode 100644 index 000000000..18f975b8d --- /dev/null +++ b/app/models/form/sales/pages/extra_borrowing_value_check.rb @@ -0,0 +1,21 @@ +class Form::Sales::Pages::ExtraBorrowingValueCheck < Form::Page + def initialize(id, hsh, subsection) + super + @depends_on = [ + { + "extra_borrowing_expected_but_not_reported?" => true, + }, + ] + @title_text = { + "translation" => "soft_validations.extra_borrowing.title", + } + @informative_text = { + } + end + + def questions + @questions ||= [ + Form::Sales::Questions::ExtraBorrowingValueCheck.new(nil, nil, self), + ] + end +end diff --git a/app/models/form/sales/pages/grant_value_check.rb b/app/models/form/sales/pages/grant_value_check.rb new file mode 100644 index 000000000..a739a1654 --- /dev/null +++ b/app/models/form/sales/pages/grant_value_check.rb @@ -0,0 +1,18 @@ +class Form::Sales::Pages::GrantValueCheck < ::Form::Page + def initialize(id, hsh, subsection) + super + @id = "grant_value_check" + @depends_on = [ + { + "grant_outside_common_range?" => true, + }, + ] + @informative_text = {} + end + + def questions + @questions ||= [ + Form::Sales::Questions::GrantValueCheck.new(nil, nil, self), + ] + end +end diff --git a/app/models/form/sales/questions/buyer1_income.rb b/app/models/form/sales/questions/buyer1_income.rb index 4a7e43e55..43451af50 100644 --- a/app/models/form/sales/questions/buyer1_income.rb +++ b/app/models/form/sales/questions/buyer1_income.rb @@ -4,6 +4,7 @@ class Form::Sales::Questions::Buyer1Income < ::Form::Question @id = "income1" @check_answer_label = "Buyer 1’s gross annual income" @header = "Buyer 1’s gross annual income" + @hint_text = "Provide the gross annual income (i.e. salary before tax) plus the annual amount of benefits, Universal Credit or pensions, and income from investments." @type = "numeric" @min = 0 @max = 999_999 diff --git a/app/models/form/sales/questions/buyer1_income_known.rb b/app/models/form/sales/questions/buyer1_income_known.rb index 36b5ec3f4..64462fa59 100644 --- a/app/models/form/sales/questions/buyer1_income_known.rb +++ b/app/models/form/sales/questions/buyer1_income_known.rb @@ -6,8 +6,6 @@ class Form::Sales::Questions::Buyer1IncomeKnown < ::Form::Question @header = "Do you know buyer 1’s annual income?" @type = "radio" @answer_options = ANSWER_OPTIONS - @guidance_position = GuidancePosition::BOTTOM - @guidance_partial = "what_counts_as_income_sales" @conditional_for = { "income1" => [0], } diff --git a/app/models/form/sales/questions/buyer2_income.rb b/app/models/form/sales/questions/buyer2_income.rb index 2bda83544..680bf8ae7 100644 --- a/app/models/form/sales/questions/buyer2_income.rb +++ b/app/models/form/sales/questions/buyer2_income.rb @@ -5,6 +5,7 @@ class Form::Sales::Questions::Buyer2Income < ::Form::Question @check_answer_label = "Buyer 2’s gross annual income" @header = "Buyer 2’s gross annual income" @type = "numeric" + @hint_text = "Provide the gross annual income (i.e. salary before tax) plus the annual amount of benefits, Universal Credit or pensions, and income from investments." @min = 0 @step = 1 @width = 5 diff --git a/app/models/form/sales/questions/buyer2_income_known.rb b/app/models/form/sales/questions/buyer2_income_known.rb index 385bd9562..0b4613809 100644 --- a/app/models/form/sales/questions/buyer2_income_known.rb +++ b/app/models/form/sales/questions/buyer2_income_known.rb @@ -6,8 +6,6 @@ class Form::Sales::Questions::Buyer2IncomeKnown < ::Form::Question @header = "Do you know buyer 2’s annual income?" @type = "radio" @answer_options = ANSWER_OPTIONS - @guidance_position = GuidancePosition::BOTTOM - @guidance_partial = "what_counts_as_income_sales" @conditional_for = { "income2" => [0], } diff --git a/app/models/form/sales/questions/extra_borrowing_value_check.rb b/app/models/form/sales/questions/extra_borrowing_value_check.rb new file mode 100644 index 000000000..0f12ce110 --- /dev/null +++ b/app/models/form/sales/questions/extra_borrowing_value_check.rb @@ -0,0 +1,23 @@ +class Form::Sales::Questions::ExtraBorrowingValueCheck < ::Form::Question + def initialize(id, hsh, page) + super(id, hsh, page) + @id = "extrabor_value_check" + @check_answer_label = "Extra borrowing confirmation" + @type = "interruption_screen" + @answer_options = { + "0" => { "value" => "Yes" }, + "1" => { "value" => "No" }, + } + @hidden_in_check_answers = { + "depends_on" => [ + { + "extrabor_value_check" => 0, + }, + { + "extrabor_value_check" => 1, + }, + ], + } + @header = "Are you sure there is no extra borrowing?" + end +end diff --git a/app/models/form/sales/questions/grant.rb b/app/models/form/sales/questions/grant.rb index 181e2281d..beef93c58 100644 --- a/app/models/form/sales/questions/grant.rb +++ b/app/models/form/sales/questions/grant.rb @@ -6,6 +6,7 @@ class Form::Sales::Questions::Grant < ::Form::Question @header = "What was the amount of any loan, grant, discount or subsidy given?" @type = "numeric" @min = 0 + @max = 999_999 @width = 5 @prefix = "£" @hint_text = "For all schemes except Right to Buy (RTB), Preserved Right to Buy (PRTB), Voluntary Right to Buy (VRTB)" diff --git a/app/models/form/sales/questions/grant_value_check.rb b/app/models/form/sales/questions/grant_value_check.rb new file mode 100644 index 000000000..a7efdbaee --- /dev/null +++ b/app/models/form/sales/questions/grant_value_check.rb @@ -0,0 +1,23 @@ +class Form::Sales::Questions::GrantValueCheck < ::Form::Question + def initialize(id, hsh, page) + super + @id = "grant_value_check" + @check_answer_label = "Grant value confirmation" + @header = "Are you sure? Grants are usually £9,000 - £16,000" + @type = "interruption_screen" + @answer_options = { + "0" => { "value" => "Yes" }, + "1" => { "value" => "No" }, + } + @hidden_in_check_answers = { + "depends_on" => [ + { + "grant_value_check" => 0, + }, + { + "grant_value_check" => 1, + }, + ], + } + end +end diff --git a/app/models/form/sales/questions/mortgage_length.rb b/app/models/form/sales/questions/mortgage_length.rb index 317489763..56a358f01 100644 --- a/app/models/form/sales/questions/mortgage_length.rb +++ b/app/models/form/sales/questions/mortgage_length.rb @@ -8,5 +8,6 @@ class Form::Sales::Questions::MortgageLength < ::Form::Question @min = 0 @width = 5 @suffix = " years" + @hint_text = "You should round up to the nearest year. Value should not exceed 60 years." end end diff --git a/app/models/form/sales/questions/number_of_others_in_property.rb b/app/models/form/sales/questions/number_of_others_in_property.rb index 136cabcfb..3eb1f34e6 100644 --- a/app/models/form/sales/questions/number_of_others_in_property.rb +++ b/app/models/form/sales/questions/number_of_others_in_property.rb @@ -3,7 +3,7 @@ class Form::Sales::Questions::NumberOfOthersInProperty < ::Form::Question super @id = "hholdcount" @check_answer_label = "Number of other people living in the property" - @header = "Besides the buyers, how many other people live in the property?" + @header = "Besides the buyer(s), how many other people live or will live in the property?" @type = "numeric" @hint_text = "You can provide details for a maximum of 4 other people." @width = 2 diff --git a/app/models/form/sales/subsections/discounted_ownership_scheme.rb b/app/models/form/sales/subsections/discounted_ownership_scheme.rb index b527cd7d4..2ab47e729 100644 --- a/app/models/form/sales/subsections/discounted_ownership_scheme.rb +++ b/app/models/form/sales/subsections/discounted_ownership_scheme.rb @@ -10,15 +10,20 @@ class Form::Sales::Subsections::DiscountedOwnershipScheme < ::Form::Subsection @pages ||= [ Form::Sales::Pages::LivingBeforePurchase.new("living_before_purchase_discounted_ownership", nil, self), Form::Sales::Pages::AboutPriceRtb.new(nil, nil, self), + Form::Sales::Pages::ExtraBorrowingValueCheck.new("extra_borrowing_price_value_check", nil, self), Form::Sales::Pages::AboutPriceNotRtb.new(nil, nil, self), + Form::Sales::Pages::GrantValueCheck.new(nil, nil, self), Form::Sales::Pages::PurchasePrice.new("purchase_price_discounted_ownership", nil, self), Form::Sales::Pages::Mortgageused.new("mortgage_used_discounted_ownership", nil, self), Form::Sales::Pages::MortgageAmount.new("mortgage_amount_discounted_ownership", nil, self), + Form::Sales::Pages::ExtraBorrowingValueCheck.new("extra_borrowing_mortgage_value_check", nil, self), Form::Sales::Pages::MortgageLender.new("mortgage_lender_discounted_ownership", nil, self), Form::Sales::Pages::MortgageLenderOther.new("mortgage_lender_other_discounted_ownership", nil, self), Form::Sales::Pages::MortgageLength.new("mortgage_length_discounted_ownership", nil, self), Form::Sales::Pages::ExtraBorrowing.new("extra_borrowing_discounted_ownership", nil, self), + Form::Sales::Pages::ExtraBorrowingValueCheck.new("extra_borrowing_value_check", nil, self), Form::Sales::Pages::AboutDepositWithoutDiscount.new("about_deposit_discounted_ownership", nil, self), + Form::Sales::Pages::ExtraBorrowingValueCheck.new("extra_borrowing_deposit_value_check", nil, self), Form::Sales::Pages::DepositValueCheck.new("discounted_ownership_deposit_value_check", nil, self), Form::Sales::Pages::LeaseholdCharges.new("leasehold_charges_discounted_ownership", nil, self), ] diff --git a/app/models/lettings_log.rb b/app/models/lettings_log.rb index 04b4b4ec9..66f622270 100644 --- a/app/models/lettings_log.rb +++ b/app/models/lettings_log.rb @@ -35,6 +35,7 @@ class LettingsLog < Log belongs_to :scheme, optional: true belongs_to :location, optional: true + belongs_to :managing_organisation, class_name: "Organisation", optional: true scope :filter_by_year, ->(year) { where(startdate: Time.zone.local(year.to_i, 4, 1)...Time.zone.local(year.to_i + 1, 4, 1)) } scope :filter_by_tenant_code, ->(tenant_code) { where("tenancycode ILIKE ?", "%#{tenant_code}%") } @@ -50,6 +51,7 @@ class LettingsLog < Log } scope :filter_by_before_startdate, ->(date) { where("lettings_logs.startdate >= ?", date) } scope :unresolved, -> { where(unresolved: true) } + scope :filter_by_organisation, ->(org, _user = nil) { where(owning_organisation: org).or(where(managing_organisation: org)) } AUTOGENERATED_FIELDS = %w[id status created_at updated_at discarded_at].freeze OPTIONAL_FIELDS = %w[first_time_property_let_as_social_housing tenancycode propcode].freeze @@ -495,6 +497,18 @@ class LettingsLog < Log update(unresolved: false) end + def managing_organisation_provider_type + managing_organisation&.provider_type + end + + def reset_created_by! + return unless updated_by&.support? + return if owning_organisation.blank? || managing_organisation.blank? || created_by.blank? + return if created_by&.organisation == managing_organisation || created_by&.organisation == owning_organisation + + update!(created_by: nil) + end + private def reset_derived_questions diff --git a/app/models/log.rb b/app/models/log.rb index 6aa8569f5..60ca2deec 100644 --- a/app/models/log.rb +++ b/app/models/log.rb @@ -2,7 +2,6 @@ class Log < ApplicationRecord self.abstract_class = true belongs_to :owning_organisation, class_name: "Organisation", optional: true - belongs_to :managing_organisation, class_name: "Organisation", optional: true belongs_to :created_by, class_name: "User", optional: true belongs_to :updated_by, class_name: "User", optional: true belongs_to :bulk_upload, optional: true @@ -12,7 +11,6 @@ class Log < ApplicationRecord STATUS = { "not_started" => 0, "in_progress" => 1, "completed" => 2 }.freeze enum status: STATUS - scope :filter_by_organisation, ->(org, _user = nil) { where(owning_organisation: org).or(where(managing_organisation: org)) } scope :filter_by_status, ->(status, _user = nil) { where status: } scope :filter_by_years, lambda { |years, _user = nil| first_year = years.shift @@ -45,10 +43,6 @@ class Log < ApplicationRecord ethnic_group == 17 end - def managing_organisation_provider_type - managing_organisation&.provider_type - end - def collection_period_open? form.end_date > Time.zone.today end @@ -115,14 +109,6 @@ private reset_created_by! end - def reset_created_by! - return unless updated_by&.support? - return if owning_organisation.blank? || managing_organisation.blank? || created_by.blank? - return if created_by&.organisation == managing_organisation || created_by&.organisation == owning_organisation - - update!(created_by: nil) - end - PIO = PostcodeService.new def process_previous_postcode_changes! diff --git a/app/models/organisation.rb b/app/models/organisation.rb index 8e68500a4..69e4134d8 100644 --- a/app/models/organisation.rb +++ b/app/models/organisation.rb @@ -3,7 +3,6 @@ class Organisation < ApplicationRecord has_many :owned_lettings_logs, class_name: "LettingsLog", foreign_key: "owning_organisation_id", dependent: :delete_all has_many :managed_lettings_logs, class_name: "LettingsLog", foreign_key: "managing_organisation_id" has_many :owned_sales_logs, class_name: "SalesLog", foreign_key: "owning_organisation_id", dependent: :delete_all - has_many :managed_sales_logs, class_name: "SalesLog", foreign_key: "managing_organisation_id" has_many :data_protection_confirmations has_many :organisation_rent_periods has_many :owned_schemes, class_name: "Scheme", foreign_key: "owning_organisation_id", dependent: :delete_all diff --git a/app/models/sales_log.rb b/app/models/sales_log.rb index b59a72046..66c39d3b8 100644 --- a/app/models/sales_log.rb +++ b/app/models/sales_log.rb @@ -32,6 +32,7 @@ class SalesLog < Log scope :filter_by_year, ->(year) { where(saledate: Time.zone.local(year.to_i, 4, 1)...Time.zone.local(year.to_i + 1, 4, 1)) } scope :search_by, ->(param) { filter_by_id(param) } + scope :filter_by_organisation, ->(org, _user = nil) { where(owning_organisation: org) } OPTIONAL_FIELDS = %w[purchid].freeze RETIREMENT_AGES = { "M" => 65, "F" => 60, "X" => 65 }.freeze @@ -184,6 +185,14 @@ class SalesLog < Log process_postcode(postcode_full, "pcodenk", "is_la_inferred", "la") end + def reset_created_by! + return unless updated_by&.support? + return if owning_organisation.blank? || created_by.blank? + return if created_by&.organisation == owning_organisation + + update!(created_by: nil) + end + def retirement_age_for_person(person_num) gender = public_send("sex#{person_num}".to_sym) return unless gender diff --git a/app/models/user.rb b/app/models/user.rb index 66e3e806f..04a545584 100644 --- a/app/models/user.rb +++ b/app/models/user.rb @@ -10,7 +10,6 @@ class User < ApplicationRecord has_many :owned_lettings_logs, through: :organisation has_many :managed_lettings_logs, through: :organisation has_many :owned_sales_logs, through: :organisation - has_many :managed_sales_logs, through: :organisation has_many :legacy_users has_many :bulk_uploads diff --git a/app/models/validations/sales/household_validations.rb b/app/models/validations/sales/household_validations.rb index 42846273c..8c03d9db9 100644 --- a/app/models/validations/sales/household_validations.rb +++ b/app/models/validations/sales/household_validations.rb @@ -109,10 +109,6 @@ private economic_status == 7 end - def person_economic_status_refused?(economic_status) - economic_status == 10 - end - def person_is_child?(relationship) relationship == "C" end diff --git a/app/models/validations/sales/sale_information_validations.rb b/app/models/validations/sales/sale_information_validations.rb index d66194a31..67c9a09a2 100644 --- a/app/models/validations/sales/sale_information_validations.rb +++ b/app/models/validations/sales/sale_information_validations.rb @@ -16,6 +16,29 @@ module Validations::Sales::SaleInformationValidations end end + def validate_years_living_in_property_before_purchase(record) + return unless record.proplen && record.proplen.nonzero? + + case record.type + when 18 + record.errors.add :type, I18n.t("validations.sale_information.proplen.social_homebuy") + record.errors.add :proplen, I18n.t("validations.sale_information.proplen.social_homebuy") + when 28, 29 + record.errors.add :type, I18n.t("validations.sale_information.proplen.rent_to_buy") + record.errors.add :proplen, I18n.t("validations.sale_information.proplen.rent_to_buy") + end + end + + def validate_exchange_date(record) + return unless record.exdate && record.saledate + + record.errors.add(:exdate, I18n.t("validations.sale_information.exdate.must_be_before_saledate")) if record.exdate > record.saledate + + return if (record.saledate.to_date - record.exdate.to_date).to_i / 365 < 1 + + record.errors.add(:exdate, I18n.t("validations.sale_information.exdate.must_be_less_than_1_year_from_saledate")) + end + def validate_previous_property_unit_type(record) return unless record.fromprop && record.frombeds @@ -24,4 +47,20 @@ module Validations::Sales::SaleInformationValidations record.errors.add :fromprop, I18n.t("validations.sale_information.previous_property_type.property_type_bedsit") end end + + def validate_discounted_ownership_value(record) + return unless record.value && record.deposit && record.ownershipsch + return unless record.mortgage || record.mortgageused == 2 + return unless record.discount || record.grant || record.type == 29 + + discount_amount = record.discount ? record.value * record.discount / 100 : 0 + grant_amount = record.grant || 0 + mortgage_amount = record.mortgage || 0 + value_with_discount = (record.value - discount_amount) + if mortgage_amount + record.deposit + grant_amount != value_with_discount && record.discounted_ownership_sale? + %i[mortgage deposit grant value discount ownershipsch].each do |field| + record.errors.add field, I18n.t("validations.sale_information.discounted_ownership_value", value_with_discount: sprintf("%.2f", value_with_discount)) + end + end + end end diff --git a/app/models/validations/sales/soft_validations.rb b/app/models/validations/sales/soft_validations.rb index ecb8d90d7..b6b393352 100644 --- a/app/models/validations/sales/soft_validations.rb +++ b/app/models/validations/sales/soft_validations.rb @@ -37,6 +37,13 @@ module Validations::Sales::SoftValidations deposit > savings * 4 / 3 end + def extra_borrowing_expected_but_not_reported? + return unless extrabor && mortgage && deposit && value && discount + + extrabor != 1 && mortgage + deposit > value - value * discount / 100 + end + + def hodate_3_years_or_more_exdate? return unless hodate && exdate @@ -57,6 +64,12 @@ module Validations::Sales::SoftValidations value < sale_range.soft_min ? sale_range.soft_min : sale_range.soft_max end + def grant_outside_common_range? + return unless grant + + !grant.between?(9_000, 16_000) + end + private def sale_range diff --git a/app/services/filter_service.rb b/app/services/filter_service.rb index 8fe1030de..4ef3a582c 100644 --- a/app/services/filter_service.rb +++ b/app/services/filter_service.rb @@ -17,6 +17,14 @@ class FilterService logs = logs.public_send("filter_by_#{category}", values, user) end logs = logs.order(created_at: :desc) - user.support? ? logs.all.includes(:owning_organisation, :managing_organisation) : logs + if user.support? + if logs.first&.lettings? + logs.all.includes(:owning_organisation, :managing_organisation) + else + logs.all.includes(:owning_organisation) + end + else + logs + end end end diff --git a/app/views/form/guidance/_what_counts_as_income_sales.html.erb b/app/views/form/guidance/_what_counts_as_income_sales.html.erb deleted file mode 100644 index c5e2c7116..000000000 --- a/app/views/form/guidance/_what_counts_as_income_sales.html.erb +++ /dev/null @@ -1,17 +0,0 @@ -<%= govuk_details(summary_text: "What counts as income?") do %> -

You should include any income from:

- - -

Don’t include:

- -<% end %> diff --git a/app/views/form/page.html.erb b/app/views/form/page.html.erb index 7a860c1db..c7b18cdda 100644 --- a/app/views/form/page.html.erb +++ b/app/views/form/page.html.erb @@ -44,7 +44,7 @@ <%= f.hidden_field :page, value: @page.id %>
- <% if !@page.id.include?("value_check") && if request.query_parameters["referrer"] != "check_answers" %> + <% if !@page.interruption_screen? && if request.query_parameters["referrer"] != "check_answers" %> <%= f.govuk_submit "Save and continue" %> <%= govuk_link_to "Skip for now", send(@log.form.next_page_redirect_path(@page, @log, current_user), @log) %> <% else %> diff --git a/app/views/logs/_log_list.html.erb b/app/views/logs/_log_list.html.erb index 702cd7d1f..1aeaa03f2 100644 --- a/app/views/logs/_log_list.html.erb +++ b/app/views/logs/_log_list.html.erb @@ -1,6 +1,8 @@

<%= render(SearchResultCaptionComponent.new(searched:, count: pagy.count, item_label:, total_count:, item: "logs", path: request.path)) %> - <%= govuk_link_to "Download (CSV)", csv_download_url, type: "text/csv" %> + <% if logs&.first&.lettings? %> + <%= govuk_link_to "Download (CSV)", csv_download_url, type: "text/csv" %> + <% end %>

<% logs.map do |log| %> <%= render(LogSummaryComponent.new(current_user:, log:)) %> diff --git a/config/environments/development.rb b/config/environments/development.rb index 24155edfa..6261c29c8 100644 --- a/config/environments/development.rb +++ b/config/environments/development.rb @@ -73,7 +73,7 @@ Rails.application.configure do config.active_record.verbose_query_logs = true # Raises error for missing translations. - # config.i18n.raise_on_missing_translations = true + config.i18n.raise_on_missing_translations = true # Annotate rendered view with file names. # config.action_view.annotate_rendered_view_with_filenames = true diff --git a/config/environments/test.rb b/config/environments/test.rb index dca19f3d1..1c399b19d 100644 --- a/config/environments/test.rb +++ b/config/environments/test.rb @@ -57,7 +57,7 @@ Rails.application.configure do config.active_support.disallowed_deprecation_warnings = [] # Raises error for missing translations. - # config.i18n.raise_on_missing_translations = true + config.i18n.raise_on_missing_translations = true # Annotate rendered view with file names. # config.action_view.annotate_rendered_view_with_filenames = true diff --git a/config/locales/en.yml b/config/locales/en.yml index 4d2d35999..09200918c 100644 --- a/config/locales/en.yml +++ b/config/locales/en.yml @@ -413,6 +413,14 @@ en: deactivation: during_deactivated_period: "The location is already deactivated during this date, please enter a different date" sale_information: + proplen: + social_homebuy: "Social HomeBuy buyers should not have lived here before" + rent_to_buy: "Rent to Buy buyers should not have lived here before" + exdate: + must_be_before_saledate: + Contract exchange date must be less than 1 year before completion date + must_be_less_than_1_year_from_saledate: + Contract exchange date must be less than 1 year before completion date previous_property_beds: property_type_bedsit: "Bedsit bedroom maximum 1" previous_property_type: @@ -420,6 +428,7 @@ en: handover_exchange: handover_before_exchange: "Practical completion or handover date must be before exchange date" exchange_after_handover: "Exchange date must be after practical completion or handover date" + discounted_ownership_value: "Mortgage, deposit, and grant total must equal £%{value_with_discount}" soft_validations: net_income: @@ -446,6 +455,8 @@ en: max: title: "You told us this person is %{age} or over and not retired" hint_text: "The minimum expected retirement age for %{gender} in England is %{age}." + extra_borrowing: + title: "The mortgage and deposit are higher than the purchase minus the discount" pregnancy: title: "You told us somebody in the household is pregnant" no_females: "You also told us there are no female tenants living at the property." diff --git a/config/rent_range_data/2022.csv b/config/rent_range_data/2022.csv index dbd8d2f29..16f8b5aaf 100644 --- a/config/rent_range_data/2022.csv +++ b/config/rent_range_data/2022.csv @@ -1,7726 +1,7726 @@ ranges_rent_id,lettype,la,beds,soft_min,soft_max,hard_min,hard_max -1,1,E07000223,1,57.79,124.33,26.1,177.93 -327,1,E07000223,2,71.78,147.91,26.1,188.66 -653,1,E07000223,3,82.02,162.93,26.1,205.81 -979,1,E07000223,4,90.42,180.08,26.1,224.01 -1305,3,E07000223,1,52.2,116.83,26.1,160.78 -1631,3,E07000223,2,63.38,130.77,26.1,146.84 -1957,3,E07000223,3,68.97,151.13,26.1,187.58 -2283,3,E07000223,4,73.64,186.51,26.1,196.15 -2609,2,E07000223,0,61.49,265.21,18.44,340.65 -2935,4,E07000223,0,48.18,193.32,18.44,202.73 -3261,6,E07000223,0,61.49,486.82,18.44,530.44 -3587,8,E07000223,0,48.18,486.82,18.44,530.44 -3983,5,E07000223,1,57.79,131.84,26.1,144.7 -4050,7,E07000223,1,52.2,131.84,26.1,144.7 -4598,5,E07000223,2,71.78,183.29,26.1,200.45 -4745,7,E07000223,2,63.38,183.29,26.1,200.45 -5250,5,E07000223,3,82.02,228.29,26.1,248.67 -5350,7,E07000223,3,68.97,228.29,26.1,248.67 -5935,5,E07000223,4,90.42,430.9,26.1,470.55 -6039,7,E07000223,4,73.64,430.9,26.1,470.55 -6521,9,E07000223,1,57.79,164.8,26.1,180.87 -6847,9,E07000223,2,71.78,229.13,26.1,250.54 -7173,9,E07000223,3,82.02,285.39,26.1,310.84 -7499,9,E07000223,4,90.42,538.61,26.1,588.19 -7825,10,E07000223,0,61.49,608.53,18.44,663.05 -2,1,E07000026,1,52.2,94.33,26.1,117.9 -328,1,E07000026,2,59.66,108.27,26.1,136.13 -654,1,E07000026,3,66.17,121.11,26.1,146.84 -980,1,E07000026,4,72.71,135.06,26.1,160.78 -1306,3,E07000026,1,43.8,86.81,26.1,101.83 -1632,3,E07000026,2,54.06,95.42,26.1,114.68 -1958,3,E07000026,3,58.72,106.12,26.1,125.4 -2284,3,E07000026,4,55.93,120.05,26.1,135.06 -2610,2,E07000026,0,55.36,236.93,18.44,338.29 -2936,4,E07000026,0,32.8,464.43,18.44,592.92 -3262,6,E07000026,0,55.36,207.45,18.44,226.32 -3588,8,E07000026,0,32.8,207.45,18.44,226.32 -4351,5,E07000026,1,52.2,87.89,26.1,95.42 -4463,7,E07000026,1,43.8,87.89,26.1,95.42 -4921,5,E07000026,2,59.66,110.39,26.1,120.05 -5059,7,E07000026,2,54.06,110.39,26.1,120.05 -5564,5,E07000026,3,66.17,136.13,26.1,148.99 -5739,7,E07000026,3,58.72,136.13,26.1,148.99 -6312,5,E07000026,4,72.71,188.66,26.1,205.81 -6363,7,E07000026,4,55.93,188.66,26.1,205.81 -6522,9,E07000026,1,52.2,109.88,26.1,119.25 -6848,9,E07000026,2,59.66,138.01,26.1,150.06 -7174,9,E07000026,3,66.17,170.16,26.1,186.23 -7500,9,E07000026,4,72.71,235.82,26.1,257.26 -7826,10,E07000026,0,55.36,259.31,18.44,282.91 -3,1,E07000032,1,52.2,100.76,26.1,123.26 -329,1,E07000032,2,62.45,115.76,26.1,130.77 -655,1,E07000032,3,68.97,127.56,26.1,139.34 -981,1,E07000032,4,76.43,159.7,26.1,168.29 -1307,3,E07000032,1,46.6,91.12,26.1,108.27 -1633,3,E07000032,2,53.13,97.54,26.1,109.33 -1959,3,E07000032,3,58.72,105.05,26.1,120.05 -2285,3,E07000032,4,64.31,123.26,26.1,123.26 -2611,2,E07000032,0,51.26,238.1,18.44,357.17 -2937,4,E07000032,0,49.2,113.15,18.44,122.59 -3263,6,E07000032,0,51.26,207.45,18.44,226.32 -3589,8,E07000032,0,49.2,207.45,18.44,226.32 -4311,5,E07000032,1,52.2,97.54,26.1,106.12 -4411,7,E07000032,1,46.6,97.54,26.1,106.12 -5007,5,E07000032,2,62.45,114.68,26.1,124.33 -5147,7,E07000032,2,53.13,114.68,26.1,124.33 -5650,5,E07000032,3,68.97,136.13,26.1,148.99 -5808,7,E07000032,3,58.72,136.13,26.1,148.99 -6225,5,E07000032,4,76.43,188.66,26.1,205.81 -6469,7,E07000032,4,64.31,188.66,26.1,205.81 -6523,9,E07000032,1,52.2,121.95,26.1,132.65 -6849,9,E07000032,2,62.45,143.37,26.1,155.41 -7175,9,E07000032,3,68.97,170.16,26.1,186.23 -7501,9,E07000032,4,76.43,235.82,26.1,257.26 -7827,10,E07000032,0,51.26,259.31,18.44,282.91 -4,1,E07000224,1,57.79,124.33,26.1,177.93 -330,1,E07000224,2,71.78,147.91,26.1,188.66 -656,1,E07000224,3,82.02,162.93,26.1,205.81 -982,1,E07000224,4,90.42,180.08,26.1,224.01 -1308,3,E07000224,1,52.2,116.83,26.1,160.78 -1634,3,E07000224,2,63.38,130.77,26.1,146.84 -1960,3,E07000224,3,68.97,151.13,26.1,187.58 -2286,3,E07000224,4,73.64,186.51,26.1,196.15 -2612,2,E07000224,0,61.49,265.21,18.44,340.65 -2938,4,E07000224,0,48.18,193.32,18.44,202.73 -3264,6,E07000224,0,61.49,374.83,18.44,409.03 -3590,8,E07000224,0,48.18,374.83,18.44,409.03 -3984,5,E07000224,1,57.79,126.48,26.1,138.27 -4051,7,E07000224,1,52.2,126.48,26.1,138.27 -4599,5,E07000224,2,71.78,172.58,26.1,187.58 -4746,7,E07000224,2,63.38,172.58,26.1,187.58 -5251,5,E07000224,3,82.02,211.17,26.1,230.44 -5351,7,E07000224,3,68.97,211.17,26.1,230.44 -5936,5,E07000224,4,90.42,340.85,26.1,371.94 -6040,7,E07000224,4,73.64,340.85,26.1,371.94 -6524,9,E07000224,1,57.79,158.09,26.1,172.84 -6850,9,E07000224,2,71.78,215.73,26.1,234.49 -7176,9,E07000224,3,82.02,263.95,26.1,288.07 -7502,9,E07000224,4,90.42,426.06,26.1,464.91 -7828,10,E07000224,0,61.49,468.55,18.44,511.3 -5,1,E07000170,1,52.2,100.76,26.1,123.26 -331,1,E07000170,2,62.45,115.76,26.1,130.77 -657,1,E07000170,3,68.97,127.56,26.1,139.34 -983,1,E07000170,4,76.43,159.7,26.1,168.29 -1309,3,E07000170,1,46.6,91.12,26.1,108.27 -1635,3,E07000170,2,53.13,97.54,26.1,109.33 -1961,3,E07000170,3,58.72,105.05,26.1,120.05 -2287,3,E07000170,4,64.31,123.26,26.1,123.26 -2613,2,E07000170,0,51.26,238.1,18.44,357.17 -2939,4,E07000170,0,49.2,113.15,18.44,122.59 -3265,6,E07000170,0,51.26,198.03,18.44,214.52 -3591,8,E07000170,0,49.2,198.03,18.44,214.52 -4312,5,E07000170,1,52.2,87.89,26.1,95.42 -4412,7,E07000170,1,46.6,87.89,26.1,95.42 -5008,5,E07000170,2,62.45,110.39,26.1,120.05 -5148,7,E07000170,2,53.13,110.39,26.1,120.05 -5651,5,E07000170,3,68.97,126.48,26.1,138.27 -5809,7,E07000170,3,58.72,126.48,26.1,138.27 -6226,5,E07000170,4,76.43,180.08,26.1,195.08 -6470,7,E07000170,4,64.31,180.08,26.1,195.08 -6525,9,E07000170,1,52.2,109.88,26.1,119.25 -6851,9,E07000170,2,62.45,138.01,26.1,150.06 -7177,9,E07000170,3,68.97,158.09,26.1,172.84 -7503,9,E07000170,4,76.43,225.1,26.1,243.85 -7829,10,E07000170,0,51.26,247.53,18.44,268.16 -6,1,E07000105,1,57.79,124.33,26.1,177.93 -332,1,E07000105,2,71.78,147.91,26.1,188.66 -658,1,E07000105,3,82.02,162.93,26.1,205.81 -984,1,E07000105,4,90.42,180.08,26.1,224.01 -1310,3,E07000105,1,52.2,116.83,26.1,160.78 -1636,3,E07000105,2,63.38,130.77,26.1,146.84 -1962,3,E07000105,3,68.97,151.13,26.1,187.58 -2288,3,E07000105,4,73.64,186.51,26.1,196.15 -2614,2,E07000105,0,61.49,265.21,18.44,340.65 -2940,4,E07000105,0,48.18,193.32,18.44,202.73 -3266,6,E07000105,0,61.49,306.46,18.44,334.77 -3592,8,E07000105,0,48.18,306.46,18.44,334.77 -3985,5,E07000105,1,57.79,126.48,26.1,138.27 -4052,7,E07000105,1,52.2,126.48,26.1,138.27 -4600,5,E07000105,2,71.78,155.41,26.1,169.36 -4747,7,E07000105,2,63.38,155.41,26.1,169.36 -5252,5,E07000105,3,82.02,188.66,26.1,205.81 -5352,7,E07000105,3,68.97,188.66,26.1,205.81 -5937,5,E07000105,4,90.42,278.69,26.1,304.41 -6041,7,E07000105,4,73.64,278.69,26.1,304.41 -6526,9,E07000105,1,57.79,158.09,26.1,172.84 -6852,9,E07000105,2,71.78,194.27,26.1,211.69 -7178,9,E07000105,3,82.02,235.82,26.1,257.26 -7504,9,E07000105,4,90.42,348.37,26.1,380.53 -7830,10,E07000105,0,61.49,383.1,18.44,418.45 -8,1,E07000200,1,54.99,120.05,26.1,150.06 -334,1,E07000200,2,65.24,143.62,26.1,169.36 -660,1,E07000200,3,71.78,157.56,26.1,182.22 -986,1,E07000200,4,82.02,172.58,26.1,180.08 -1312,3,E07000200,1,50.34,100.76,26.1,132.91 -1638,3,E07000200,2,58.72,118.97,26.1,133.98 -1964,3,E07000200,3,64.31,131.84,26.1,144.7 -2290,3,E07000200,4,71.78,150.06,26.1,160.78 -2616,2,E07000200,0,35.87,223.96,18.44,418.45 -2942,4,E07000200,0,55.36,134.38,18.44,314.73 -3268,6,E07000200,0,35.87,351.26,18.44,383.09 -3594,8,E07000200,0,55.36,351.26,18.44,383.09 -4117,5,E07000200,1,54.99,115.76,26.1,125.4 -4234,7,E07000200,1,50.34,115.76,26.1,125.4 -4698,5,E07000200,2,65.24,143.62,26.1,156.49 -4960,7,E07000200,2,58.72,143.62,26.1,156.49 -5417,5,E07000200,3,71.78,172.58,26.1,187.58 -5603,7,E07000200,3,64.31,172.58,26.1,187.58 -6127,5,E07000200,4,82.02,319.42,26.1,348.36 -6265,7,E07000200,4,71.78,319.42,26.1,348.36 -6528,9,E07000200,1,54.99,144.7,26.1,156.77 -6854,9,E07000200,2,65.24,179.53,26.1,195.6 -7180,9,E07000200,3,71.78,215.73,26.1,234.49 -7506,9,E07000200,4,82.02,399.29,26.1,435.45 -7832,10,E07000200,0,35.87,439.1,18.44,478.86 -9,1,E09000002,1,66.17,146.84,26.1,199.38 -335,1,E09000002,2,78.29,158.63,26.1,194.01 -661,1,E09000002,3,84.82,168.29,26.1,228.29 -987,1,E09000002,4,102.51,188.66,26.1,254.03 -1313,3,E09000002,1,58.72,120.05,26.1,147.91 -1639,3,E09000002,2,64.31,140.42,26.1,176.86 -1965,3,E09000002,3,71.78,160.78,26.1,202.58 -2291,3,E09000002,4,83.89,262.61,26.1,263.68 -2617,2,E09000002,0,69.7,313.55,18.44,497.44 -2943,4,E09000002,0,59.45,367.77,18.44,398.42 -3269,6,E09000002,0,69.7,338.29,18.44,368.95 -3595,8,E09000002,0,59.45,338.29,18.44,368.95 -3950,5,E09000002,1,66.17,161.86,26.1,176.86 -4164,7,E09000002,1,58.72,161.86,26.1,176.86 -4565,5,E09000002,2,78.29,205.81,26.1,222.95 -4665,7,E09000002,2,64.31,205.81,26.1,222.95 -5217,5,E09000002,3,84.82,250.82,26.1,273.34 -5317,7,E09000002,3,71.78,250.82,26.1,273.34 -5869,7,E09000002,4,83.89,307.63,26.1,335.49 -5902,5,E09000002,4,102.51,307.63,26.1,335.49 -6529,9,E09000002,1,66.17,202.34,26.1,221.08 -6855,9,E09000002,2,78.29,257.26,26.1,278.69 -7181,9,E09000002,3,84.82,313.51,26.1,341.67 -7507,9,E09000002,4,102.51,384.53,26.1,419.36 -7833,10,E09000002,0,69.7,422.87,18.44,461.19 -10,1,E09000003,1,66.17,146.84,26.1,199.38 -336,1,E09000003,2,78.29,158.63,26.1,194.01 -662,1,E09000003,3,84.82,168.29,26.1,228.29 -988,1,E09000003,4,102.51,188.66,26.1,254.03 -1314,3,E09000003,1,58.72,120.05,26.1,147.91 -1640,3,E09000003,2,64.31,140.42,26.1,176.86 -1966,3,E09000003,3,71.78,160.78,26.1,202.58 -2292,3,E09000003,4,83.89,262.61,26.1,263.68 -2618,2,E09000003,0,69.7,313.55,18.44,497.44 -2944,4,E09000003,0,59.45,367.77,18.44,398.42 -3270,6,E09000003,0,69.7,838.12,18.44,915.9 -3596,8,E09000003,0,59.45,838.12,18.44,915.9 -3951,5,E09000003,1,66.17,237.96,26.1,259.39 -4165,7,E09000003,1,58.72,237.96,26.1,259.39 -4566,5,E09000003,2,78.29,305.47,26.1,333.34 -4666,7,E09000003,2,64.31,305.47,26.1,333.34 -5218,5,E09000003,3,84.82,419.11,26.1,456.62 -5318,7,E09000003,3,71.78,419.11,26.1,456.62 -5870,7,E09000003,4,83.89,763.17,26.1,832.85 -5903,5,E09000003,4,102.51,763.17,26.1,832.85 -6530,9,E09000003,1,66.17,297.46,26.1,324.23 -6856,9,E09000003,2,78.29,381.85,26.1,416.7 -7182,9,E09000003,3,84.82,523.89,26.1,570.76 -7508,9,E09000003,4,102.51,953.97,26.1,1041.07 -7834,10,E09000003,0,69.7,1047.62,18.44,1144.86 -11,1,E08000016,1,51.27,92.19,26.1,114.68 -337,1,E08000016,2,58.72,109.33,26.1,141.49 -663,1,E08000016,3,63.38,121.11,26.1,162.93 -989,1,E08000016,4,73.64,145.77,26.1,180.08 -1315,3,E08000016,1,46.6,82.54,26.1,93.26 -1641,3,E08000016,2,53.13,113.61,26.1,145.77 -1967,3,E08000016,3,56.86,105.05,26.1,114.68 -2293,3,E08000016,4,64.31,122.19,26.1,176.86 -2619,2,E08000016,0,52.28,232.2,18.44,319.44 -2945,4,E08000016,0,51.26,159.13,18.44,188.6 -3271,6,E08000016,0,52.28,189.79,18.44,206.28 -3597,8,E08000016,0,51.26,189.79,18.44,206.28 -4390,5,E08000016,1,51.27,85.75,26.1,93.26 -4544,7,E08000016,1,46.6,85.75,26.1,93.26 -4812,7,E08000016,2,53.13,98.62,26.1,108.27 -4870,5,E08000016,2,58.72,98.62,26.1,108.27 -5501,5,E08000016,3,63.38,115.76,26.1,125.4 -5848,7,E08000016,3,56.86,115.76,26.1,125.4 -6106,5,E08000016,4,73.64,172.58,26.1,187.58 -6204,7,E08000016,4,64.31,172.58,26.1,187.58 -6531,9,E08000016,1,51.27,107.2,26.1,116.56 -6857,9,E08000016,2,53.13,123.26,26.1,135.33 -7183,9,E08000016,3,63.38,144.7,26.1,156.77 -7509,9,E08000016,4,73.64,215.73,26.1,234.49 -7835,10,E08000016,0,52.28,237.24,18.44,257.84 -12,1,E07000027,1,52.2,94.33,26.1,117.9 -338,1,E07000027,2,59.66,108.27,26.1,136.13 -664,1,E07000027,3,66.17,121.11,26.1,146.84 -990,1,E07000027,4,72.71,135.06,26.1,160.78 -1316,3,E07000027,1,43.8,86.81,26.1,101.83 -1642,3,E07000027,2,54.06,95.42,26.1,114.68 -1968,3,E07000027,3,58.72,106.12,26.1,125.4 -2294,3,E07000027,4,55.93,120.05,26.1,135.06 -2620,2,E07000027,0,55.36,236.93,18.44,338.29 -2946,4,E07000027,0,32.8,464.43,18.44,592.92 -3272,6,E07000027,0,55.36,189.79,18.44,206.28 -3598,8,E07000027,0,32.8,189.79,18.44,206.28 -4352,5,E07000027,1,52.2,87.89,26.1,95.42 -4464,7,E07000027,1,43.8,87.89,26.1,95.42 -4922,5,E07000027,2,59.66,103.98,26.1,113.61 -5060,7,E07000027,2,54.06,103.98,26.1,113.61 -5565,5,E07000027,3,66.17,136.13,26.1,148.99 -5740,7,E07000027,3,58.72,136.13,26.1,148.99 -6313,5,E07000027,4,72.71,172.58,26.1,187.58 -6364,7,E07000027,4,55.93,172.58,26.1,187.58 -6532,9,E07000027,1,52.2,109.88,26.1,119.25 -6858,9,E07000027,2,59.66,129.97,26.1,142.02 -7184,9,E07000027,3,66.17,170.16,26.1,186.23 -7510,9,E07000027,4,72.71,215.73,26.1,234.49 -7836,10,E07000027,0,55.36,237.24,18.44,257.84 -13,1,E07000066,1,54.99,120.05,26.1,150.06 -339,1,E07000066,2,65.24,143.62,26.1,169.36 -665,1,E07000066,3,71.78,157.56,26.1,182.22 -991,1,E07000066,4,82.02,172.58,26.1,180.08 -1317,3,E07000066,1,50.34,100.76,26.1,132.91 -1643,3,E07000066,2,58.72,118.97,26.1,133.98 -1969,3,E07000066,3,64.31,131.84,26.1,144.7 -2295,3,E07000066,4,71.78,150.06,26.1,160.78 -2621,2,E07000066,0,35.87,223.96,18.44,418.45 -2947,4,E07000066,0,55.36,134.38,18.44,314.73 -3273,6,E07000066,0,35.87,399.59,18.44,436.14 -3599,8,E07000066,0,55.36,399.59,18.44,436.14 -4118,5,E07000066,1,54.99,143.62,26.1,156.49 -4235,7,E07000066,1,50.34,143.62,26.1,156.49 -4699,5,E07000066,2,65.24,182.22,26.1,199.38 -4961,7,E07000066,2,58.72,182.22,26.1,199.38 -5418,5,E07000066,3,71.78,221.88,26.1,242.25 -5604,7,E07000066,3,64.31,221.88,26.1,242.25 -6128,5,E07000066,4,82.02,363.36,26.1,396.59 -6266,7,E07000066,4,71.78,363.36,26.1,396.59 -6533,9,E07000066,1,54.99,179.53,26.1,195.6 -6859,9,E07000066,2,65.24,227.8,26.1,249.22 -7185,9,E07000066,3,71.78,277.34,26.1,302.81 -7511,9,E07000066,4,82.02,454.21,26.1,495.75 -7837,10,E07000066,0,35.87,499.52,18.44,545.18 -14,1,E07000084,1,57.79,124.33,26.1,177.93 -340,1,E07000084,2,71.78,147.91,26.1,188.66 -666,1,E07000084,3,82.02,162.93,26.1,205.81 -992,1,E07000084,4,90.42,180.08,26.1,224.01 -1318,3,E07000084,1,52.2,116.83,26.1,160.78 -1644,3,E07000084,2,63.38,130.77,26.1,146.84 -1970,3,E07000084,3,68.97,151.13,26.1,187.58 -2296,3,E07000084,4,73.64,186.51,26.1,196.15 -2622,2,E07000084,0,61.49,265.21,18.44,340.65 -2948,4,E07000084,0,48.18,193.32,18.44,202.73 -3274,6,E07000084,0,61.49,374.83,18.44,409.03 -3600,8,E07000084,0,48.18,374.83,18.44,409.03 -3987,5,E07000084,1,57.79,148.99,26.1,161.86 -4054,7,E07000084,1,52.2,148.99,26.1,161.86 -4602,5,E07000084,2,71.78,183.29,26.1,200.45 -4749,7,E07000084,2,63.38,183.29,26.1,200.45 -5254,5,E07000084,3,82.02,211.17,26.1,230.44 -5354,7,E07000084,3,68.97,211.17,26.1,230.44 -5939,5,E07000084,4,90.42,340.85,26.1,371.94 -6043,7,E07000084,4,73.64,340.85,26.1,371.94 -6534,9,E07000084,1,57.79,186.23,26.1,202.34 -6860,9,E07000084,2,71.78,229.13,26.1,250.54 -7186,9,E07000084,3,82.02,263.95,26.1,288.07 -7512,9,E07000084,4,90.42,426.06,26.1,464.91 -7838,10,E07000084,0,61.49,468.55,18.44,511.3 -15,1,E07000171,1,52.2,100.76,26.1,123.26 -341,1,E07000171,2,62.45,115.76,26.1,130.77 -667,1,E07000171,3,68.97,127.56,26.1,139.34 -993,1,E07000171,4,76.43,159.7,26.1,168.29 -1319,3,E07000171,1,46.6,91.12,26.1,108.27 -1645,3,E07000171,2,53.13,97.54,26.1,109.33 -1971,3,E07000171,3,58.72,105.05,26.1,120.05 -2297,3,E07000171,4,64.31,123.26,26.1,123.26 -2623,2,E07000171,0,51.26,238.1,18.44,357.17 -2949,4,E07000171,0,49.2,113.15,18.44,122.59 -3275,6,E07000171,0,51.26,200.38,18.44,219.25 -3601,8,E07000171,0,49.2,200.38,18.44,219.25 -4313,5,E07000171,1,52.2,85.75,26.1,93.26 -4413,7,E07000171,1,46.6,85.75,26.1,93.26 -5009,5,E07000171,2,62.45,106.12,26.1,115.76 -5149,7,E07000171,2,53.13,106.12,26.1,115.76 -5652,5,E07000171,3,68.97,126.48,26.1,138.27 -5810,7,E07000171,3,58.72,126.48,26.1,138.27 -6227,5,E07000171,4,76.43,182.22,26.1,199.38 -6471,7,E07000171,4,64.31,182.22,26.1,199.38 -6535,9,E07000171,1,52.2,107.2,26.1,116.56 -6861,9,E07000171,2,62.45,132.65,26.1,144.7 -7187,9,E07000171,3,68.97,158.09,26.1,172.84 -7513,9,E07000171,4,76.43,227.8,26.1,249.22 -7839,10,E07000171,0,51.26,250.47,18.44,274.05 -16,1,E06000022,1,49.41,108.27,26.1,141.49 -342,1,E06000022,2,55.93,122.19,26.1,145.77 -668,1,E06000022,3,62.45,142.56,26.1,162.93 -994,1,E06000022,4,71.78,159.7,26.1,196.15 -1320,3,E06000022,1,47.54,90.03,26.1,212.24 -1646,3,E06000022,2,54.99,101.83,26.1,112.54 -1972,3,E06000022,3,62.45,110.39,26.1,127.56 -2298,3,E06000022,4,74.57,131.84,26.1,131.84 -2624,2,E06000022,0,54.33,228.68,18.44,354.8 -2950,4,E06000022,0,54.33,114.33,18.44,140.27 -3276,6,E06000022,0,54.33,431.42,18.44,470.32 -3602,8,E06000022,0,54.33,431.42,18.44,470.32 -3913,7,E06000022,1,47.54,155.41,26.1,169.36 -4197,5,E06000022,1,49.41,155.41,26.1,169.36 -4833,5,E06000022,2,55.93,194.01,26.1,212.24 -5110,7,E06000022,2,54.99,194.01,26.1,212.24 -5464,5,E06000022,3,62.45,234.74,26.1,255.1 -5690,7,E06000022,3,62.45,234.74,26.1,255.1 -6002,5,E06000022,4,71.78,392.31,26.1,427.69 -6402,7,E06000022,4,74.57,392.31,26.1,427.69 -6536,9,E06000022,1,49.41,194.27,26.1,211.69 -6862,9,E06000022,2,55.93,242.51,26.1,265.29 -7188,9,E06000022,3,62.45,293.43,26.1,318.88 -7514,9,E06000022,4,71.78,490.4,26.1,534.61 -7840,10,E06000022,0,54.33,539.28,18.44,587.9 -17,1,E06000055,1,54.99,120.05,26.1,150.06 -343,1,E06000055,2,65.24,143.62,26.1,169.36 -669,1,E06000055,3,71.78,157.56,26.1,182.22 -995,1,E06000055,4,82.02,172.58,26.1,180.08 -1321,3,E06000055,1,50.34,100.76,26.1,132.91 -1647,3,E06000055,2,58.72,118.97,26.1,133.98 -1973,3,E06000055,3,64.31,131.84,26.1,144.7 -2299,3,E06000055,4,71.78,150.06,26.1,160.78 -2625,2,E06000055,0,35.87,223.96,18.44,418.45 -2951,4,E06000055,0,55.36,134.38,18.44,314.73 -3277,6,E06000055,0,35.87,312.38,18.44,340.65 -3603,8,E06000055,0,55.36,312.38,18.44,340.65 -4119,5,E06000055,1,54.99,114.68,26.1,124.33 -4236,7,E06000055,1,50.34,114.68,26.1,124.33 -4700,5,E06000055,2,65.24,143.62,26.1,156.49 -4962,7,E06000055,2,58.72,143.62,26.1,156.49 -5419,5,E06000055,3,71.78,172.58,26.1,187.58 -5605,7,E06000055,3,64.31,172.58,26.1,187.58 -6129,5,E06000055,4,82.02,284.04,26.1,309.78 -6267,7,E06000055,4,71.78,284.04,26.1,309.78 -6537,9,E06000055,1,54.99,143.37,26.1,155.41 -6863,9,E06000055,2,65.24,179.53,26.1,195.6 -7189,9,E06000055,3,71.78,215.73,26.1,234.49 -7515,9,E06000055,4,82.02,355.06,26.1,387.21 -7841,10,E06000055,0,35.87,390.47,18.44,425.82 -18,1,E09000004,1,66.17,146.84,26.1,199.38 -344,1,E09000004,2,78.29,158.63,26.1,194.01 -670,1,E09000004,3,84.82,168.29,26.1,228.29 -996,1,E09000004,4,102.51,188.66,26.1,254.03 -1322,3,E09000004,1,58.72,120.05,26.1,147.91 -1648,3,E09000004,2,64.31,140.42,26.1,176.86 -1974,3,E09000004,3,71.78,160.78,26.1,202.58 -2300,3,E09000004,4,83.89,262.61,26.1,263.68 -2626,2,E09000004,0,69.7,313.55,18.44,497.44 -2952,4,E09000004,0,59.45,367.77,18.44,398.42 -3278,6,E09000004,0,69.7,374.83,18.44,409.03 -3604,8,E09000004,0,59.45,374.83,18.44,409.03 -3952,5,E09000004,1,66.17,158.63,26.1,174.72 -4166,7,E09000004,1,58.72,158.63,26.1,174.72 -4567,5,E09000004,2,78.29,194.01,26.1,212.24 -4667,7,E09000004,2,64.31,194.01,26.1,212.24 -5219,5,E09000004,3,84.82,250.82,26.1,273.34 -5319,7,E09000004,3,71.78,250.82,26.1,273.34 -5871,7,E09000004,4,83.89,340.85,26.1,371.94 -5904,5,E09000004,4,102.51,340.85,26.1,371.94 -6538,9,E09000004,1,66.17,198.3,26.1,218.38 -6864,9,E09000004,2,78.29,242.51,26.1,265.29 -7190,9,E09000004,3,84.82,313.51,26.1,341.67 -7516,9,E09000004,4,102.51,426.06,26.1,464.91 -7842,10,E09000004,0,69.7,468.55,18.44,511.3 -19,1,E08000025,1,53.13,99.69,26.1,125.4 -345,1,E08000025,2,58.72,117.9,26.1,138.27 -671,1,E08000025,3,69.9,133.98,26.1,161.86 -997,1,E08000025,4,81.09,162.93,26.1,180.08 -1323,3,E08000025,1,46.6,88.96,26.1,98.62 -1649,3,E08000025,2,50.34,95.42,26.1,103.98 -1975,3,E08000025,3,60.59,105.05,26.1,121.11 -2301,3,E08000025,4,68.97,128.63,26.1,128.63 -2627,2,E08000025,0,38.95,242.82,18.44,378.37 -2953,4,E08000025,0,46.12,106.09,18.44,106.09 -3279,6,E08000025,0,38.95,248.71,18.44,272.3 -3605,8,E08000025,0,46.12,248.71,18.44,272.3 -4281,5,E08000025,1,53.13,115.76,26.1,125.4 -4502,7,E08000025,1,46.6,115.76,26.1,125.4 -4891,5,E08000025,2,58.72,141.49,26.1,153.28 -5187,7,E08000025,2,50.34,141.49,26.1,153.28 -5522,5,E08000025,3,69.9,148.99,26.1,161.86 -5778,7,E08000025,3,60.59,148.99,26.1,161.86 -6174,5,E08000025,4,81.09,228.29,26.1,247.6 -6439,7,E08000025,4,68.97,228.29,26.1,247.6 -6539,9,E08000025,1,53.13,144.7,26.1,156.77 -6865,9,E08000025,2,58.72,176.86,26.1,191.6 -7191,9,E08000025,3,69.9,186.23,26.1,202.34 -7517,9,E08000025,4,81.09,285.39,26.1,309.5 -7843,10,E08000025,0,38.95,310.9,18.44,340.38 -20,1,E07000129,1,52.2,100.76,26.1,123.26 -346,1,E07000129,2,62.45,115.76,26.1,130.77 -672,1,E07000129,3,68.97,127.56,26.1,139.34 -998,1,E07000129,4,76.43,159.7,26.1,168.29 -1324,3,E07000129,1,46.6,91.12,26.1,108.27 -1650,3,E07000129,2,53.13,97.54,26.1,109.33 -1976,3,E07000129,3,58.72,105.05,26.1,120.05 -2302,3,E07000129,4,64.31,123.26,26.1,123.26 -2628,2,E07000129,0,51.26,238.1,18.44,357.17 -2954,4,E07000129,0,49.2,113.15,18.44,122.59 -3280,6,E07000129,0,51.26,225.15,18.44,245.18 -3606,8,E07000129,0,49.2,225.15,18.44,245.18 -4314,5,E07000129,1,52.2,110.39,26.1,120.05 -4414,7,E07000129,1,46.6,110.39,26.1,120.05 -5010,5,E07000129,2,62.45,126.48,26.1,138.27 -5150,7,E07000129,2,53.13,126.48,26.1,138.27 -5653,5,E07000129,3,68.97,151.13,26.1,164.01 -5811,7,E07000129,3,58.72,151.13,26.1,164.01 -6228,5,E07000129,4,76.43,204.74,26.1,222.95 -6472,7,E07000129,4,64.31,204.74,26.1,222.95 -6540,9,E07000129,1,52.2,138.01,26.1,150.06 -6866,9,E07000129,2,62.45,158.09,26.1,172.84 -7192,9,E07000129,3,68.97,188.91,26.1,205 -7518,9,E07000129,4,76.43,255.92,26.1,278.69 -7844,10,E07000129,0,51.26,281.43,18.44,306.45 -21,1,E06000008,1,52.2,94.33,26.1,117.9 -347,1,E06000008,2,59.66,108.27,26.1,136.13 -673,1,E06000008,3,66.17,121.11,26.1,146.84 -999,1,E06000008,4,72.71,135.06,26.1,160.78 -1325,3,E06000008,1,43.8,86.81,26.1,101.83 -1651,3,E06000008,2,54.06,95.42,26.1,114.68 -1977,3,E06000008,3,58.72,106.12,26.1,125.4 -2303,3,E06000008,4,55.93,120.05,26.1,135.06 -2629,2,E06000008,0,55.36,236.93,18.44,338.29 -2955,4,E06000008,0,32.8,464.43,18.44,592.92 -3281,6,E06000008,0,55.36,189.79,18.44,206.28 -3607,8,E06000008,0,32.8,189.79,18.44,206.28 -4353,5,E06000008,1,52.2,103.98,26.1,113.61 -4465,7,E06000008,1,43.8,103.98,26.1,113.61 -4923,5,E06000008,2,59.66,110.39,26.1,120.05 -5061,7,E06000008,2,54.06,110.39,26.1,120.05 -5566,5,E06000008,3,66.17,131.84,26.1,144.7 -5741,7,E06000008,3,58.72,131.84,26.1,144.7 -6314,5,E06000008,4,72.71,172.58,26.1,187.58 -6365,7,E06000008,4,55.93,172.58,26.1,187.58 -6541,9,E06000008,1,52.2,129.97,26.1,142.02 -6867,9,E06000008,2,59.66,138.01,26.1,150.06 -7193,9,E06000008,3,66.17,164.8,26.1,180.87 -7519,9,E06000008,4,72.71,215.73,26.1,234.49 -7845,10,E06000008,0,55.36,237.24,18.44,257.84 -22,1,E06000009,1,52.2,94.33,26.1,117.9 -348,1,E06000009,2,59.66,108.27,26.1,136.13 -674,1,E06000009,3,66.17,121.11,26.1,146.84 -1000,1,E06000009,4,72.71,135.06,26.1,160.78 -1326,3,E06000009,1,43.8,86.81,26.1,101.83 -1652,3,E06000009,2,54.06,95.42,26.1,114.68 -1978,3,E06000009,3,58.72,106.12,26.1,125.4 -2304,3,E06000009,4,55.93,120.05,26.1,135.06 -2630,2,E06000009,0,55.36,236.93,18.44,338.29 -2956,4,E06000009,0,32.8,464.43,18.44,592.92 -3282,6,E06000009,0,55.36,201.56,18.44,220.42 -3608,8,E06000009,0,32.8,201.56,18.44,220.42 -4354,5,E06000009,1,52.2,99.69,26.1,110.39 -4466,7,E06000009,1,43.8,99.69,26.1,110.39 -4924,5,E06000009,2,59.66,126.48,26.1,138.27 -5062,7,E06000009,2,54.06,126.48,26.1,138.27 -5567,5,E06000009,3,66.17,144.7,26.1,157.56 -5742,7,E06000009,3,58.72,144.7,26.1,157.56 -6315,5,E06000009,4,72.71,183.29,26.1,200.45 -6366,7,E06000009,4,55.93,183.29,26.1,200.45 -6542,9,E06000009,1,52.2,124.6,26.1,138.01 -6868,9,E06000009,2,59.66,158.09,26.1,172.84 -7194,9,E06000009,3,66.17,180.87,26.1,196.95 -7520,9,E06000009,4,72.71,229.13,26.1,250.54 -7846,10,E06000009,0,55.36,251.95,18.44,275.54 -23,1,E07000033,1,52.2,100.76,26.1,123.26 -349,1,E07000033,2,62.45,115.76,26.1,130.77 -675,1,E07000033,3,68.97,127.56,26.1,139.34 -1001,1,E07000033,4,76.43,159.7,26.1,168.29 -1327,3,E07000033,1,46.6,91.12,26.1,108.27 -1653,3,E07000033,2,53.13,97.54,26.1,109.33 -1979,3,E07000033,3,58.72,105.05,26.1,120.05 -2305,3,E07000033,4,64.31,123.26,26.1,123.26 -2631,2,E07000033,0,51.26,238.1,18.44,357.17 -2957,4,E07000033,0,49.2,113.15,18.44,122.59 -3283,6,E07000033,0,51.26,189.79,18.44,206.28 -3609,8,E07000033,0,49.2,189.79,18.44,206.28 -4315,5,E07000033,1,52.2,91.12,26.1,98.62 -4415,7,E07000033,1,46.6,91.12,26.1,98.62 -5011,5,E07000033,2,62.45,103.98,26.1,113.61 -5151,7,E07000033,2,53.13,103.98,26.1,113.61 -5654,5,E07000033,3,68.97,121.11,26.1,131.84 -5812,7,E07000033,3,58.72,121.11,26.1,131.84 -6229,5,E07000033,4,76.43,172.58,26.1,187.58 -6473,7,E07000033,4,64.31,172.58,26.1,187.58 -6543,9,E07000033,1,52.2,113.9,26.1,123.26 -6869,9,E07000033,2,62.45,129.97,26.1,142.02 -7195,9,E07000033,3,68.97,151.41,26.1,164.8 -7521,9,E07000033,4,76.43,215.73,26.1,234.49 -7847,10,E07000033,0,51.26,237.24,18.44,257.84 -24,1,E08000001,1,52.2,94.33,26.1,117.9 -350,1,E08000001,2,59.66,108.27,26.1,136.13 -676,1,E08000001,3,66.17,121.11,26.1,146.84 -1002,1,E08000001,4,72.71,135.06,26.1,160.78 -1328,3,E08000001,1,43.8,86.81,26.1,101.83 -1654,3,E08000001,2,54.06,95.42,26.1,114.68 -1980,3,E08000001,3,58.72,106.12,26.1,125.4 -2306,3,E08000001,4,55.93,120.05,26.1,135.06 -2632,2,E08000001,0,55.36,236.93,18.44,338.29 -2958,4,E08000001,0,32.8,464.43,18.44,592.92 -3284,6,E08000001,0,55.36,213.35,18.44,233.38 -3610,8,E08000001,0,32.8,213.35,18.44,233.38 -4355,5,E08000001,1,52.2,93.26,26.1,100.76 -4467,7,E08000001,1,43.8,93.26,26.1,100.76 -4925,5,E08000001,2,59.66,111.47,26.1,121.11 -5063,7,E08000001,2,54.06,111.47,26.1,121.11 -5568,5,E08000001,3,66.17,136.13,26.1,148.99 -5743,7,E08000001,3,58.72,136.13,26.1,148.99 -6316,5,E08000001,4,72.71,194.01,26.1,212.24 -6367,7,E08000001,4,55.93,194.01,26.1,212.24 -6544,9,E08000001,1,52.2,116.56,26.1,125.95 -6870,9,E08000001,2,59.66,139.34,26.1,151.41 -7196,9,E08000001,3,66.17,170.16,26.1,186.23 -7522,9,E08000001,4,72.71,242.51,26.1,265.29 -7848,10,E08000001,0,55.36,266.69,18.44,291.74 -25,1,E07000136,1,52.2,100.76,26.1,123.26 -351,1,E07000136,2,62.45,115.76,26.1,130.77 -677,1,E07000136,3,68.97,127.56,26.1,139.34 -1003,1,E07000136,4,76.43,159.7,26.1,168.29 -1329,3,E07000136,1,46.6,91.12,26.1,108.27 -1655,3,E07000136,2,53.13,97.54,26.1,109.33 -1981,3,E07000136,3,58.72,105.05,26.1,120.05 -2307,3,E07000136,4,64.31,123.26,26.1,123.26 -2633,2,E07000136,0,51.26,238.1,18.44,357.17 -2959,4,E07000136,0,49.2,113.15,18.44,122.59 -3285,6,E07000136,0,51.26,196.86,18.44,213.35 -3611,8,E07000136,0,49.2,196.86,18.44,213.35 -4316,5,E07000136,1,52.2,98.62,26.1,108.27 -4416,7,E07000136,1,46.6,98.62,26.1,108.27 -5012,5,E07000136,2,62.45,121.11,26.1,131.84 -5152,7,E07000136,2,53.13,121.11,26.1,131.84 -5655,5,E07000136,3,68.97,136.13,26.1,148.99 -5813,7,E07000136,3,58.72,136.13,26.1,148.99 -6230,5,E07000136,4,76.43,179,26.1,194.01 -6474,7,E07000136,4,64.31,179,26.1,194.01 -6545,9,E07000136,1,52.2,123.26,26.1,135.33 -6871,9,E07000136,2,62.45,151.41,26.1,164.8 -7197,9,E07000136,3,68.97,170.16,26.1,186.23 -7523,9,E07000136,4,76.43,223.75,26.1,242.51 -7849,10,E07000136,0,51.26,246.05,18.44,266.69 -59,1,E06000058,1,49.41,108.27,26.1,141.49 -385,1,E06000058,2,55.93,122.19,26.1,145.77 -711,1,E06000058,3,62.45,142.56,26.1,162.93 -1037,1,E06000058,4,71.78,159.7,26.1,196.15 -1363,3,E06000058,1,47.54,90.03,26.1,212.24 -1689,3,E06000058,2,54.99,101.83,26.1,112.54 -2015,3,E06000058,3,62.45,110.39,26.1,127.56 -2341,3,E06000058,4,74.57,131.84,26.1,131.84 -2667,2,E06000058,0,54.33,228.68,18.44,354.8 -2993,4,E06000058,0,54.33,114.33,18.44,140.27 -3319,6,E06000058,0,54.33,399.59,18.44,436.14 -3645,8,E06000058,0,54.33,399.59,18.44,436.14 -3917,7,E06000058,1,47.54,138.27,26.1,150.06 -4201,5,E06000058,1,49.41,138.27,26.1,150.06 -4837,5,E06000058,2,55.93,172.58,26.1,187.58 -5114,7,E06000058,2,54.99,172.58,26.1,187.58 -5468,5,E06000058,3,62.45,228.29,26.1,247.6 -5694,7,E06000058,3,62.45,228.29,26.1,247.6 -6006,5,E06000058,4,71.78,363.36,26.1,396.59 -6406,7,E06000058,4,74.57,363.36,26.1,396.59 -6579,9,E06000058,1,49.41,172.84,26.1,187.57 -6905,9,E06000058,2,55.93,215.73,26.1,234.49 -7231,9,E06000058,3,62.45,285.39,26.1,309.5 -7557,9,E06000058,4,71.78,454.21,26.1,495.75 -7883,10,E06000058,0,54.33,499.52,18.44,545.18 -27,1,E06000036,1,57.79,124.33,26.1,177.93 -353,1,E06000036,2,71.78,147.91,26.1,188.66 -679,1,E06000036,3,82.02,162.93,26.1,205.81 -1005,1,E06000036,4,90.42,180.08,26.1,224.01 -1331,3,E06000036,1,52.2,116.83,26.1,160.78 -1657,3,E06000036,2,63.38,130.77,26.1,146.84 -1983,3,E06000036,3,68.97,151.13,26.1,187.58 -2309,3,E06000036,4,73.64,186.51,26.1,196.15 -2635,2,E06000036,0,61.49,265.21,18.44,340.65 -2961,4,E06000036,0,48.18,193.32,18.44,202.73 -3287,6,E06000036,0,61.49,549.31,18.44,598.8 -3613,8,E06000036,0,48.18,549.31,18.44,598.8 -3988,5,E06000036,1,57.79,158.63,26.1,174.72 -4055,7,E06000036,1,52.2,158.63,26.1,174.72 -4603,5,E06000036,2,71.78,200.45,26.1,217.59 -4750,7,E06000036,2,63.38,200.45,26.1,217.59 -5255,5,E06000036,3,82.02,272.26,26.1,296.91 -5355,7,E06000036,3,68.97,272.26,26.1,296.91 -5940,5,E06000036,4,90.42,499.48,26.1,544.51 -6044,7,E06000036,4,73.64,499.48,26.1,544.51 -6547,9,E06000036,1,57.79,198.3,26.1,218.38 -6873,9,E06000036,2,71.78,250.54,26.1,271.98 -7199,9,E06000036,3,82.02,340.33,26.1,371.13 -7525,9,E06000036,4,90.42,624.36,26.1,680.64 -7851,10,E06000036,0,61.49,686.61,18.44,748.51 -28,1,E08000032,1,51.27,92.19,26.1,114.68 -354,1,E08000032,2,58.72,109.33,26.1,141.49 -680,1,E08000032,3,63.38,121.11,26.1,162.93 -1006,1,E08000032,4,73.64,145.77,26.1,180.08 -1332,3,E08000032,1,46.6,82.54,26.1,93.26 -1658,3,E08000032,2,53.13,113.61,26.1,145.77 -1984,3,E08000032,3,56.86,105.05,26.1,114.68 -2310,3,E08000032,4,64.31,122.19,26.1,176.86 -2636,2,E08000032,0,52.28,232.2,18.44,319.44 -2962,4,E08000032,0,51.26,159.13,18.44,188.6 -3288,6,E08000032,0,52.28,207.45,18.44,226.32 -3614,8,E08000032,0,51.26,207.45,18.44,226.32 -4391,5,E08000032,1,51.27,98.62,26.1,108.27 -4545,7,E08000032,1,46.6,98.62,26.1,108.27 -4813,7,E08000032,2,53.13,115.76,26.1,125.4 -4871,5,E08000032,2,58.72,115.76,26.1,125.4 -5502,5,E08000032,3,63.38,136.13,26.1,148.99 -5849,7,E08000032,3,56.86,136.13,26.1,148.99 -6107,5,E08000032,4,73.64,188.66,26.1,205.81 -6205,7,E08000032,4,64.31,188.66,26.1,205.81 -6548,9,E08000032,1,51.27,123.26,26.1,135.33 -6874,9,E08000032,2,53.13,144.7,26.1,156.77 -7200,9,E08000032,3,63.38,170.16,26.1,186.23 -7526,9,E08000032,4,73.64,235.82,26.1,257.26 -7852,10,E08000032,0,52.28,259.31,18.44,282.91 -29,1,E07000067,1,54.99,120.05,26.1,150.06 -355,1,E07000067,2,65.24,143.62,26.1,169.36 -681,1,E07000067,3,71.78,157.56,26.1,182.22 -1007,1,E07000067,4,82.02,172.58,26.1,180.08 -1333,3,E07000067,1,50.34,100.76,26.1,132.91 -1659,3,E07000067,2,58.72,118.97,26.1,133.98 -1985,3,E07000067,3,64.31,131.84,26.1,144.7 -2311,3,E07000067,4,71.78,150.06,26.1,160.78 -2637,2,E07000067,0,35.87,223.96,18.44,418.45 -2963,4,E07000067,0,55.36,134.38,18.44,314.73 -3289,6,E07000067,0,35.87,312.38,18.44,340.65 -3615,8,E07000067,0,55.36,312.38,18.44,340.65 -4120,5,E07000067,1,54.99,121.11,26.1,131.84 -4237,7,E07000067,1,50.34,121.11,26.1,131.84 -4701,5,E07000067,2,65.24,148.99,26.1,161.86 -4963,7,E07000067,2,58.72,148.99,26.1,161.86 -5420,5,E07000067,3,71.78,183.29,26.1,200.45 -5606,7,E07000067,3,64.31,183.29,26.1,200.45 -6130,5,E07000067,4,82.02,284.04,26.1,309.78 -6268,7,E07000067,4,71.78,284.04,26.1,309.78 -6549,9,E07000067,1,54.99,151.41,26.1,164.8 -6875,9,E07000067,2,65.24,186.23,26.1,202.34 -7201,9,E07000067,3,71.78,229.13,26.1,250.54 -7527,9,E07000067,4,82.02,355.06,26.1,387.21 -7853,10,E07000067,0,35.87,390.47,18.44,425.82 -30,1,E07000143,1,54.99,120.05,26.1,150.06 -356,1,E07000143,2,65.24,143.62,26.1,169.36 -682,1,E07000143,3,71.78,157.56,26.1,182.22 -1008,1,E07000143,4,82.02,172.58,26.1,180.08 -1334,3,E07000143,1,50.34,100.76,26.1,132.91 -1660,3,E07000143,2,58.72,118.97,26.1,133.98 -1986,3,E07000143,3,64.31,131.84,26.1,144.7 -2312,3,E07000143,4,71.78,150.06,26.1,160.78 -2638,2,E07000143,0,35.87,223.96,18.44,418.45 -2964,4,E07000143,0,55.36,134.38,18.44,314.73 -3290,6,E07000143,0,35.87,264.04,18.44,287.62 -3616,8,E07000143,0,55.36,264.04,18.44,287.62 -4121,5,E07000143,1,54.99,101.83,26.1,111.47 -4238,7,E07000143,1,50.34,101.83,26.1,111.47 -4702,5,E07000143,2,65.24,126.48,26.1,138.27 -4964,7,E07000143,2,58.72,126.48,26.1,138.27 -5421,5,E07000143,3,71.78,148.99,26.1,161.86 -5607,7,E07000143,3,64.31,148.99,26.1,161.86 -6131,5,E07000143,4,82.02,240.09,26.1,261.54 -6269,7,E07000143,4,71.78,240.09,26.1,261.54 -6550,9,E07000143,1,54.99,127.29,26.1,139.34 -6876,9,E07000143,2,65.24,158.09,26.1,172.84 -7202,9,E07000143,3,71.78,186.23,26.1,202.34 -7528,9,E07000143,4,82.02,300.12,26.1,326.92 -7854,10,E07000143,0,35.87,330.05,18.44,359.53 -31,1,E09000005,1,66.17,146.84,26.1,194.01 -357,1,E09000005,2,78.29,158.63,26.1,199.38 -683,1,E09000005,3,84.82,168.29,26.1,228.29 -1009,1,E09000005,4,102.51,188.66,26.1,254.03 -1335,3,E09000005,1,58.72,120.05,26.1,147.91 -1661,3,E09000005,2,64.31,140.42,26.1,176.86 -1987,3,E09000005,3,71.78,160.78,26.1,202.58 -2313,3,E09000005,4,83.89,262.61,26.1,263.68 -2639,2,E09000005,0,69.7,313.55,18.44,497.44 -2965,4,E09000005,0,59.45,367.77,18.44,398.42 -3291,6,E09000005,0,69.7,627.09,18.44,683.68 -3617,8,E09000005,0,59.45,627.09,18.44,683.68 -3953,5,E09000005,1,66.17,276.55,26.1,301.2 -4167,7,E09000005,1,58.72,276.55,26.1,301.2 -4568,5,E09000005,2,78.29,359.08,26.1,392.31 -4668,7,E09000005,2,64.31,359.08,26.1,392.31 -5220,5,E09000005,3,84.82,468.41,26.1,509.15 -5320,7,E09000005,3,71.78,468.41,26.1,509.15 -5872,7,E09000005,4,83.89,570.24,26.1,621.7 -5905,5,E09000005,4,102.51,570.24,26.1,621.7 -6551,9,E09000005,1,66.17,345.69,26.1,376.51 -6877,9,E09000005,2,78.29,448.85,26.1,490.4 -7203,9,E09000005,3,84.82,585.52,26.1,636.44 -7529,9,E09000005,4,102.51,712.79,26.1,777.12 -7855,10,E09000005,0,69.7,783.87,18.44,854.59 -32,1,E07000068,1,54.99,120.05,26.1,150.06 -358,1,E07000068,2,65.24,143.62,26.1,169.36 -684,1,E07000068,3,71.78,157.56,26.1,182.22 -1010,1,E07000068,4,82.02,172.58,26.1,180.08 -1336,3,E07000068,1,50.34,100.76,26.1,132.91 -1662,3,E07000068,2,58.72,118.97,26.1,133.98 -1988,3,E07000068,3,64.31,131.84,26.1,144.7 -2314,3,E07000068,4,71.78,150.06,26.1,160.78 -2640,2,E07000068,0,35.87,223.96,18.44,418.45 -2966,4,E07000068,0,55.36,134.38,18.44,314.73 -3292,6,E07000068,0,35.87,598.8,18.44,653.04 -3618,8,E07000068,0,55.36,598.8,18.44,653.04 -4122,5,E07000068,1,54.99,182.22,26.1,199.38 -4239,7,E07000068,1,50.34,182.22,26.1,199.38 -4703,5,E07000068,2,65.24,226.16,26.1,247.6 -4965,7,E07000068,2,58.72,226.16,26.1,247.6 -5422,5,E07000068,3,71.78,319.42,26.1,348.36 -5608,7,E07000068,3,64.31,319.42,26.1,348.36 -6132,5,E07000068,4,82.02,544.51,26.1,593.82 -6270,7,E07000068,4,71.78,544.51,26.1,593.82 -6552,9,E07000068,1,54.99,227.8,26.1,249.22 -6878,9,E07000068,2,65.24,282.71,26.1,309.5 -7204,9,E07000068,3,71.78,399.29,26.1,435.45 -7530,9,E07000068,4,82.02,680.64,26.1,742.29 -7856,10,E07000068,0,35.87,748.51,18.44,816.29 -33,1,E06000043,1,57.79,124.33,26.1,177.93 -359,1,E06000043,2,71.78,147.91,26.1,188.66 -685,1,E06000043,3,82.02,162.93,26.1,205.81 -1011,1,E06000043,4,90.42,180.08,26.1,224.01 -1337,3,E06000043,1,52.2,116.83,26.1,160.78 -1663,3,E06000043,2,63.38,130.77,26.1,146.84 -1989,3,E06000043,3,68.97,151.13,26.1,187.58 -2315,3,E06000043,4,73.64,186.51,26.1,196.15 -2641,2,E06000043,0,61.49,265.21,18.44,340.65 -2967,4,E06000043,0,48.18,193.32,18.44,202.73 -3293,6,E06000043,0,61.49,499.79,18.44,544.59 -3619,8,E06000043,0,48.18,499.79,18.44,544.59 -3989,5,E06000043,1,57.79,177.93,26.1,192.94 -4056,7,E06000043,1,52.2,177.93,26.1,192.94 -4604,5,E06000043,2,71.78,250.82,26.1,273.34 -4751,7,E06000043,2,63.38,250.82,26.1,273.34 -5256,5,E06000043,3,82.02,307.63,26.1,335.49 -5356,7,E06000043,3,68.97,307.63,26.1,335.49 -5941,5,E06000043,4,90.42,454.47,26.1,495.21 -6045,7,E06000043,4,73.64,454.47,26.1,495.21 -6553,9,E06000043,1,57.79,222.43,26.1,241.18 -6879,9,E06000043,2,71.78,313.51,26.1,341.67 -7205,9,E06000043,3,82.02,384.53,26.1,419.36 -7531,9,E06000043,4,90.42,568.09,26.1,619.01 -7857,10,E06000043,0,61.49,624.74,18.44,680.75 -34,1,E06000023,1,49.41,108.27,26.1,141.49 -360,1,E06000023,2,55.93,122.19,26.1,145.77 -686,1,E06000023,3,62.45,142.56,26.1,162.93 -1012,1,E06000023,4,71.78,159.7,26.1,196.15 -1338,3,E06000023,1,47.54,90.03,26.1,212.24 -1664,3,E06000023,2,54.99,101.83,26.1,112.54 -1990,3,E06000023,3,62.45,110.39,26.1,127.56 -2316,3,E06000023,4,74.57,131.84,26.1,131.84 -2642,2,E06000023,0,54.33,228.68,18.44,354.8 -2968,4,E06000023,0,54.33,114.33,18.44,140.27 -3294,6,E06000023,0,54.33,462.06,18.44,503.31 -3620,8,E06000023,0,54.33,462.06,18.44,503.31 -3915,7,E06000023,1,47.54,148.99,26.1,161.86 -4199,5,E06000023,1,49.41,148.99,26.1,161.86 -4835,5,E06000023,2,55.93,183.29,26.1,200.45 -5112,7,E06000023,2,54.99,183.29,26.1,200.45 -5466,5,E06000023,3,62.45,228.29,26.1,247.6 -5692,7,E06000023,3,62.45,228.29,26.1,247.6 -6004,5,E06000023,4,71.78,420.18,26.1,457.7 -6404,7,E06000023,4,74.57,420.18,26.1,457.7 -6554,9,E06000023,1,49.41,186.23,26.1,202.34 -6880,9,E06000023,2,55.93,229.13,26.1,250.54 -7206,9,E06000023,3,62.45,285.39,26.1,309.5 -7532,9,E06000023,4,71.78,525.22,26.1,572.11 -7858,10,E06000023,0,54.33,577.59,18.44,629.15 -35,1,E07000144,1,54.99,120.05,26.1,150.06 -361,1,E07000144,2,65.24,143.62,26.1,169.36 -687,1,E07000144,3,71.78,157.56,26.1,182.22 -1013,1,E07000144,4,82.02,172.58,26.1,180.08 -1339,3,E07000144,1,50.34,100.76,26.1,132.91 -1665,3,E07000144,2,58.72,118.97,26.1,133.98 -1991,3,E07000144,3,64.31,131.84,26.1,144.7 -2317,3,E07000144,4,71.78,150.06,26.1,160.78 -2643,2,E07000144,0,35.87,223.96,18.44,418.45 -2969,4,E07000144,0,55.36,134.38,18.44,314.73 -3295,6,E07000144,0,35.87,238.1,18.44,260.5 -3621,8,E07000144,0,55.36,238.1,18.44,260.5 -4123,5,E07000144,1,54.99,109.33,26.1,118.97 -4240,7,E07000144,1,50.34,109.33,26.1,118.97 -4704,5,E07000144,2,65.24,131.84,26.1,144.7 -4966,7,E07000144,2,58.72,131.84,26.1,144.7 -5423,5,E07000144,3,71.78,159.7,26.1,174.72 -5609,7,E07000144,3,64.31,159.7,26.1,174.72 -6133,5,E07000144,4,82.02,216.52,26.1,236.89 -6271,7,E07000144,4,71.78,216.52,26.1,236.89 -6555,9,E07000144,1,54.99,136.67,26.1,148.72 -6881,9,E07000144,2,65.24,164.8,26.1,180.87 -7207,9,E07000144,3,71.78,199.62,26.1,218.38 -7533,9,E07000144,4,82.02,270.66,26.1,296.11 -7859,10,E07000144,0,35.87,297.64,18.44,325.63 -36,1,E09000006,1,66.17,146.84,26.1,199.38 -362,1,E09000006,2,78.29,158.63,26.1,194.01 -688,1,E09000006,3,84.82,168.29,26.1,228.29 -1014,1,E09000006,4,102.51,188.66,26.1,254.03 -1340,3,E09000006,1,58.72,120.05,26.1,147.91 -1666,3,E09000006,2,64.31,140.42,26.1,176.86 -1992,3,E09000006,3,71.78,160.78,26.1,202.58 -2318,3,E09000006,4,83.89,262.61,26.1,263.68 -2644,2,E09000006,0,69.7,313.55,18.44,497.44 -2970,4,E09000006,0,59.45,367.77,18.44,398.42 -3296,6,E09000006,0,69.7,499.79,18.44,544.59 -3622,8,E09000006,0,59.45,499.79,18.44,544.59 -3954,5,E09000006,1,66.17,183.29,26.1,200.45 -4168,7,E09000006,1,58.72,183.29,26.1,200.45 -4569,5,E09000006,2,78.29,240.09,26.1,261.54 -4669,7,E09000006,2,64.31,240.09,26.1,261.54 -5221,5,E09000006,3,84.82,295.83,26.1,322.64 -5321,7,E09000006,3,71.78,295.83,26.1,322.64 -5873,7,E09000006,4,83.89,454.47,26.1,495.21 -5906,5,E09000006,4,102.51,454.47,26.1,495.21 -6556,9,E09000006,1,66.17,229.13,26.1,250.54 -6882,9,E09000006,2,78.29,300.12,26.1,326.92 -7208,9,E09000006,3,84.82,369.81,26.1,403.3 -7534,9,E09000006,4,102.51,568.09,26.1,619.01 -7860,10,E09000006,0,69.7,624.74,18.44,680.75 -37,1,E07000234,1,53.13,99.69,26.1,125.4 -363,1,E07000234,2,58.72,117.9,26.1,138.27 -689,1,E07000234,3,69.9,133.98,26.1,161.86 -1015,1,E07000234,4,81.09,162.93,26.1,180.08 -1341,3,E07000234,1,46.6,88.96,26.1,98.62 -1667,3,E07000234,2,50.34,95.42,26.1,103.98 -1993,3,E07000234,3,60.59,105.05,26.1,121.11 -2319,3,E07000234,4,68.97,128.63,26.1,128.63 -2645,2,E07000234,0,38.95,242.82,18.44,378.37 -2971,4,E07000234,0,46.12,106.09,18.44,106.09 -3297,6,E07000234,0,38.95,312.38,18.44,340.65 -3623,8,E07000234,0,46.12,312.38,18.44,340.65 -4282,5,E07000234,1,53.13,117.9,26.1,128.63 -4503,7,E07000234,1,46.6,117.9,26.1,128.63 -4892,5,E07000234,2,58.72,136.13,26.1,148.99 -5188,7,E07000234,2,50.34,136.13,26.1,148.99 -5523,5,E07000234,3,69.9,177.93,26.1,192.94 -5779,7,E07000234,3,60.59,177.93,26.1,192.94 -6175,5,E07000234,4,81.09,284.04,26.1,309.78 -6440,7,E07000234,4,68.97,284.04,26.1,309.78 -6557,9,E07000234,1,53.13,147.38,26.1,160.78 -6883,9,E07000234,2,58.72,170.16,26.1,186.23 -7209,9,E07000234,3,69.9,222.43,26.1,241.18 -7535,9,E07000234,4,81.09,355.06,26.1,387.21 -7861,10,E07000234,0,38.95,390.47,18.44,425.82 -38,1,E07000095,1,54.99,120.05,26.1,150.06 -364,1,E07000095,2,65.24,143.62,26.1,169.36 -690,1,E07000095,3,71.78,157.56,26.1,182.22 -1016,1,E07000095,4,82.02,172.58,26.1,180.08 -1342,3,E07000095,1,50.34,100.76,26.1,132.91 -1668,3,E07000095,2,58.72,118.97,26.1,133.98 -1994,3,E07000095,3,64.31,131.84,26.1,144.7 -2320,3,E07000095,4,71.78,150.06,26.1,160.78 -2646,2,E07000095,0,35.87,223.96,18.44,418.45 -2972,4,E07000095,0,55.36,134.38,18.44,314.73 -3298,6,E07000095,0,35.87,459.7,18.44,500.96 -3624,8,E07000095,0,55.36,459.7,18.44,500.96 -4124,5,E07000095,1,54.99,155.41,26.1,169.36 -4241,7,E07000095,1,50.34,155.41,26.1,169.36 -4705,5,E07000095,2,65.24,194.01,26.1,212.24 -4967,7,E07000095,2,58.72,194.01,26.1,212.24 -5424,5,E07000095,3,71.78,262.61,26.1,285.11 -5610,7,E07000095,3,64.31,262.61,26.1,285.11 -6134,5,E07000095,4,82.02,419.11,26.1,455.55 -6272,7,E07000095,4,71.78,419.11,26.1,455.55 -6558,9,E07000095,1,54.99,194.27,26.1,211.69 -6884,9,E07000095,2,65.24,242.51,26.1,265.29 -7210,9,E07000095,3,71.78,328.26,26.1,356.4 -7536,9,E07000095,4,82.02,523.89,26.1,569.43 -7862,10,E07000095,0,35.87,574.64,18.44,626.21 -39,1,E07000172,1,52.2,100.76,26.1,123.26 -365,1,E07000172,2,62.45,115.76,26.1,130.77 -691,1,E07000172,3,68.97,127.56,26.1,139.34 -1017,1,E07000172,4,76.43,159.7,26.1,168.29 -1343,3,E07000172,1,46.6,91.12,26.1,108.27 -1669,3,E07000172,2,53.13,97.54,26.1,109.33 -1995,3,E07000172,3,58.72,105.05,26.1,120.05 -2321,3,E07000172,4,64.31,123.26,26.1,123.26 -2647,2,E07000172,0,51.26,238.1,18.44,357.17 -2973,4,E07000172,0,49.2,113.15,18.44,122.59 -3299,6,E07000172,0,51.26,218.08,18.44,236.93 -3625,8,E07000172,0,49.2,218.08,18.44,236.93 -4317,5,E07000172,1,52.2,103.98,26.1,113.61 -4417,7,E07000172,1,46.6,103.98,26.1,113.61 -5013,5,E07000172,2,62.45,126.48,26.1,138.27 -5153,7,E07000172,2,53.13,126.48,26.1,138.27 -5656,5,E07000172,3,68.97,138.27,26.1,150.06 -5814,7,E07000172,3,58.72,138.27,26.1,150.06 -6231,5,E07000172,4,76.43,198.3,26.1,215.44 -6475,7,E07000172,4,64.31,198.3,26.1,215.44 -6559,9,E07000172,1,52.2,129.97,26.1,142.02 -6885,9,E07000172,2,62.45,158.09,26.1,172.84 -7211,9,E07000172,3,68.97,172.84,26.1,187.57 -7537,9,E07000172,4,76.43,247.88,26.1,269.31 -7863,10,E07000172,0,51.26,272.59,18.44,296.18 -323,1,E06000060,1,58.96,110.31,26.63,157.87 -649,1,E06000060,2,73.23,131.23,26.63,167.38 -975,1,E06000060,3,83.69,144.56,26.63,182.6 -1301,1,E06000060,4,92.25,159.77,26.63,198.75 -1627,3,E06000060,1,53.26,103.65,26.63,142.64 -1953,3,E06000060,2,64.67,116.02,26.63,130.28 -2279,3,E06000060,3,70.37,134.09,26.63,166.42 -2605,3,E06000060,4,75.13,165.47,26.63,174.03 -2931,2,E06000060,0,60.4,226.52,18.12,290.96 -3257,4,E06000060,0,47.32,165.12,18.12,173.16 -3583,6,E06000060,0,60.4,744.03,18.12,812.49 -3909,8,E06000060,0,47.32,744.03,18.12,812.49 -4049,5,E06000060,1,58.96,172.13,26.63,188.3 -4116,7,E06000060,1,53.26,172.13,26.63,188.3 -4664,5,E06000060,2,73.23,232.99,26.63,252.96 -4811,7,E06000060,2,64.67,232.99,26.63,252.96 -5316,5,E06000060,3,83.69,332.85,26.63,363.28 -5416,7,E06000060,3,70.37,332.85,26.63,363.28 -6001,5,E06000060,4,92.25,702.78,26.63,767.45 -6105,7,E06000060,4,75.13,702.78,26.63,767.45 -6843,9,E06000060,1,58.96,215.16,26.63,235.37 -7169,9,E06000060,2,73.23,291.24,26.63,316.21 -7495,9,E06000060,3,83.69,416.06,26.63,454.1 -7821,9,E06000060,4,92.25,878.48,26.63,959.31 -8147,10,E06000060,0,60.4,930.03,18.12,1015.61 -40,1,E07000117,1,52.2,94.33,26.1,117.9 -366,1,E07000117,2,59.66,108.27,26.1,136.13 -692,1,E07000117,3,66.17,121.11,26.1,146.84 -1018,1,E07000117,4,72.71,135.06,26.1,160.78 -1344,3,E07000117,1,43.8,86.81,26.1,101.83 -1670,3,E07000117,2,54.06,95.42,26.1,114.68 -1996,3,E07000117,3,58.72,106.12,26.1,125.4 -2322,3,E07000117,4,55.93,120.05,26.1,135.06 -2648,2,E07000117,0,55.36,236.93,18.44,338.29 -2974,4,E07000117,0,32.8,464.43,18.44,592.92 -3300,6,E07000117,0,55.36,205.1,18.44,225.15 -3626,8,E07000117,0,32.8,205.1,18.44,225.15 -4356,5,E07000117,1,52.2,82.54,26.1,88.96 -4468,7,E07000117,1,43.8,82.54,26.1,88.96 -4926,5,E07000117,2,59.66,98.62,26.1,108.27 -5064,7,E07000117,2,54.06,98.62,26.1,108.27 -5569,5,E07000117,3,66.17,130.77,26.1,142.56 -5744,7,E07000117,3,58.72,130.77,26.1,142.56 -6317,5,E07000117,4,72.71,187.58,26.1,204.74 -6368,7,E07000117,4,55.93,187.58,26.1,204.74 -6560,9,E07000117,1,52.2,103.19,26.1,111.21 -6886,9,E07000117,2,59.66,123.26,26.1,135.33 -7212,9,E07000117,3,66.17,163.46,26.1,178.2 -7538,9,E07000117,4,72.71,234.49,26.1,255.92 -7864,10,E07000117,0,55.36,256.39,18.44,281.43 -41,1,E08000002,1,52.2,94.33,26.1,117.9 -367,1,E08000002,2,59.66,108.27,26.1,136.13 -693,1,E08000002,3,66.17,121.11,26.1,146.84 -1019,1,E08000002,4,72.71,135.06,26.1,160.78 -1345,3,E08000002,1,43.8,86.81,26.1,101.83 -1671,3,E08000002,2,54.06,95.42,26.1,114.68 -1997,3,E08000002,3,58.72,106.12,26.1,125.4 -2323,3,E08000002,4,55.93,120.05,26.1,135.06 -2649,2,E08000002,0,55.36,236.93,18.44,338.29 -2975,4,E08000002,0,32.8,464.43,18.44,592.92 -3301,6,E08000002,0,55.36,226.32,18.44,246.36 -3627,8,E08000002,0,32.8,226.32,18.44,246.36 -4357,5,E08000002,1,52.2,98.62,26.1,108.27 -4469,7,E08000002,1,43.8,98.62,26.1,108.27 -4927,5,E08000002,2,59.66,126.48,26.1,138.27 -5065,7,E08000002,2,54.06,126.48,26.1,138.27 -5570,5,E08000002,3,66.17,148.99,26.1,161.86 -5745,7,E08000002,3,58.72,148.99,26.1,161.86 -6318,5,E08000002,4,72.71,205.81,26.1,224.01 -6369,7,E08000002,4,55.93,205.81,26.1,224.01 -6561,9,E08000002,1,52.2,123.26,26.1,135.33 -6887,9,E08000002,2,59.66,158.09,26.1,172.84 -7213,9,E08000002,3,66.17,186.23,26.1,202.34 -7539,9,E08000002,4,72.71,257.26,26.1,280.03 -7865,10,E08000002,0,55.36,282.91,18.44,307.95 -42,1,E08000033,1,51.27,92.19,26.1,114.68 -368,1,E08000033,2,58.72,109.33,26.1,141.49 -694,1,E08000033,3,63.38,121.11,26.1,162.93 -1020,1,E08000033,4,73.64,145.77,26.1,180.08 -1346,3,E08000033,1,46.6,82.54,26.1,93.26 -1672,3,E08000033,2,53.13,113.61,26.1,145.77 -1998,3,E08000033,3,56.86,105.05,26.1,114.68 -2324,3,E08000033,4,64.31,122.19,26.1,176.86 -2650,2,E08000033,0,52.28,232.2,18.44,319.44 -2976,4,E08000033,0,51.26,159.13,18.44,188.6 -3302,6,E08000033,0,52.28,225.15,18.44,245.18 -3628,8,E08000033,0,51.26,225.15,18.44,245.18 -4392,5,E08000033,1,51.27,98.62,26.1,108.27 -4546,7,E08000033,1,46.6,98.62,26.1,108.27 -4814,7,E08000033,2,53.13,114.68,26.1,124.33 -4872,5,E08000033,2,58.72,114.68,26.1,124.33 -5503,5,E08000033,3,63.38,138.27,26.1,150.06 -5850,7,E08000033,3,56.86,138.27,26.1,150.06 -6108,5,E08000033,4,73.64,204.74,26.1,222.95 -6206,7,E08000033,4,64.31,204.74,26.1,222.95 -6562,9,E08000033,1,51.27,123.26,26.1,135.33 -6888,9,E08000033,2,53.13,143.37,26.1,155.41 -7214,9,E08000033,3,63.38,172.84,26.1,187.57 -7540,9,E08000033,4,73.64,255.92,26.1,278.69 -7866,10,E08000033,0,52.28,281.43,18.44,306.45 -43,1,E07000008,1,54.99,120.05,26.1,150.06 -369,1,E07000008,2,65.24,143.62,26.1,169.36 -695,1,E07000008,3,71.78,157.56,26.1,182.22 -1021,1,E07000008,4,82.02,172.58,26.1,180.08 -1347,3,E07000008,1,50.34,100.76,26.1,132.91 -1673,3,E07000008,2,58.72,118.97,26.1,133.98 -1999,3,E07000008,3,64.31,131.84,26.1,144.7 -2325,3,E07000008,4,71.78,150.06,26.1,160.78 -2651,2,E07000008,0,35.87,223.96,18.44,418.45 -2977,4,E07000008,0,55.36,134.38,18.44,314.73 -3303,6,E07000008,0,35.87,412.57,18.44,450.29 -3629,8,E07000008,0,55.36,412.57,18.44,450.29 -4125,5,E07000008,1,54.99,189.72,26.1,206.88 -4242,7,E07000008,1,50.34,189.72,26.1,206.88 -4706,5,E07000008,2,65.24,226.16,26.1,247.6 -4968,7,E07000008,2,58.72,226.16,26.1,247.6 -5425,5,E07000008,3,71.78,262.61,26.1,285.11 -5611,7,E07000008,3,64.31,262.61,26.1,285.11 -6135,5,E07000008,4,82.02,375.16,26.1,409.45 -6273,7,E07000008,4,71.78,375.16,26.1,409.45 -6563,9,E07000008,1,54.99,237.14,26.1,258.59 -6889,9,E07000008,2,65.24,282.71,26.1,309.5 -7215,9,E07000008,3,71.78,328.26,26.1,356.4 -7541,9,E07000008,4,82.02,468.95,26.1,511.83 -7867,10,E07000008,0,35.87,515.71,18.44,562.87 -44,1,E09000007,1,66.17,146.84,26.1,199.38 -370,1,E09000007,2,78.29,158.63,26.1,194.01 -696,1,E09000007,3,84.82,168.29,26.1,228.29 -1022,1,E09000007,4,102.51,188.66,26.1,254.03 -1348,3,E09000007,1,58.72,120.05,26.1,147.91 -1674,3,E09000007,2,64.31,140.42,26.1,176.86 -2000,3,E09000007,3,71.78,160.78,26.1,202.58 -2326,3,E09000007,4,83.89,262.61,26.1,263.68 -2652,2,E09000007,0,69.7,313.55,18.44,497.44 -2978,4,E09000007,0,59.45,367.77,18.44,398.42 -3304,6,E09000007,0,69.7,1347.32,18.44,1469.9 -3630,8,E09000007,0,59.45,1347.32,18.44,1469.9 -3955,5,E09000007,1,66.17,368.73,26.1,401.95 -4169,7,E09000007,1,58.72,368.73,26.1,401.95 -4570,5,E09000007,2,78.29,501.63,26.1,546.65 -4670,7,E09000007,2,64.31,501.63,26.1,546.65 -5222,5,E09000007,3,84.82,735.31,26.1,802.83 -5322,7,E09000007,3,71.78,735.31,26.1,802.83 -5874,7,E09000007,4,83.89,1226.22,26.1,1336.62 -5907,5,E09000007,4,102.51,1226.22,26.1,1336.62 -6564,9,E09000007,1,66.17,460.91,26.1,502.45 -6890,9,E09000007,2,78.29,627.05,26.1,683.32 -7216,9,E09000007,3,84.82,919.14,26.1,1003.53 -7542,9,E09000007,4,102.51,1532.77,26.1,1670.78 -7868,10,E09000007,0,69.7,1684.16,18.44,1837.38 -45,1,E07000192,1,53.13,99.69,26.1,125.4 -371,1,E07000192,2,58.72,117.9,26.1,138.27 -697,1,E07000192,3,69.9,133.98,26.1,161.86 -1023,1,E07000192,4,81.09,162.93,26.1,180.08 -1349,3,E07000192,1,46.6,88.96,26.1,98.62 -1675,3,E07000192,2,50.34,95.42,26.1,103.98 -2001,3,E07000192,3,60.59,105.05,26.1,121.11 -2327,3,E07000192,4,68.97,128.63,26.1,128.63 -2653,2,E07000192,0,38.95,242.82,18.44,378.37 -2979,4,E07000192,0,46.12,106.09,18.44,106.09 -3305,6,E07000192,0,38.95,218.08,18.44,236.93 -3631,8,E07000192,0,46.12,218.08,18.44,236.93 -4283,5,E07000192,1,53.13,92.19,26.1,100.76 -4504,7,E07000192,1,46.6,92.19,26.1,100.76 -4893,5,E07000192,2,58.72,115.76,26.1,125.4 -5189,7,E07000192,2,50.34,115.76,26.1,125.4 -5524,5,E07000192,3,69.9,136.13,26.1,148.99 -5780,7,E07000192,3,60.59,136.13,26.1,148.99 -6176,5,E07000192,4,81.09,198.3,26.1,215.44 -6441,7,E07000192,4,68.97,198.3,26.1,215.44 -6565,9,E07000192,1,53.13,115.24,26.1,125.95 -6891,9,E07000192,2,58.72,144.7,26.1,156.77 -7217,9,E07000192,3,69.9,170.16,26.1,186.23 -7543,9,E07000192,4,81.09,247.88,26.1,269.31 -7869,10,E07000192,0,38.95,272.59,18.44,296.18 -46,1,E07000106,1,57.79,124.33,26.1,177.93 -372,1,E07000106,2,71.78,147.91,26.1,188.66 -698,1,E07000106,3,82.02,162.93,26.1,205.81 -1024,1,E07000106,4,90.42,180.08,26.1,224.01 -1350,3,E07000106,1,52.2,116.83,26.1,160.78 -1676,3,E07000106,2,63.38,130.77,26.1,146.84 -2002,3,E07000106,3,68.97,151.13,26.1,187.58 -2328,3,E07000106,4,73.64,186.51,26.1,196.15 -2654,2,E07000106,0,61.49,265.21,18.44,340.65 -2980,4,E07000106,0,48.18,193.32,18.44,202.73 -3306,6,E07000106,0,61.49,393.7,18.44,429.07 -3632,8,E07000106,0,48.18,393.7,18.44,429.07 -3990,5,E07000106,1,57.79,158.63,26.1,174.72 -4057,7,E07000106,1,52.2,158.63,26.1,174.72 -4605,5,E07000106,2,71.78,182.22,26.1,199.38 -4752,7,E07000106,2,63.38,182.22,26.1,199.38 -5257,5,E07000106,3,82.02,230.44,26.1,249.75 -5357,7,E07000106,3,68.97,230.44,26.1,249.75 -5942,5,E07000106,4,90.42,358,26.1,390.16 -6046,7,E07000106,4,73.64,358,26.1,390.16 -6566,9,E07000106,1,57.79,198.3,26.1,218.38 -6892,9,E07000106,2,71.78,227.8,26.1,249.22 -7218,9,E07000106,3,82.02,288.07,26.1,312.18 -7544,9,E07000106,4,90.42,447.51,26.1,487.71 -7870,10,E07000106,0,61.49,492.14,18.44,536.34 -47,1,E07000028,1,52.2,94.33,26.1,117.9 -373,1,E07000028,2,59.66,108.27,26.1,136.13 -699,1,E07000028,3,66.17,121.11,26.1,146.84 -1025,1,E07000028,4,72.71,135.06,26.1,160.78 -1351,3,E07000028,1,43.8,86.81,26.1,101.83 -1677,3,E07000028,2,54.06,95.42,26.1,114.68 -2003,3,E07000028,3,58.72,106.12,26.1,125.4 -2329,3,E07000028,4,55.93,120.05,26.1,135.06 -2655,2,E07000028,0,55.36,236.93,18.44,338.29 -2981,4,E07000028,0,32.8,464.43,18.44,592.92 -3307,6,E07000028,0,55.36,189.79,18.44,206.28 -3633,8,E07000028,0,32.8,189.79,18.44,206.28 -4358,5,E07000028,1,52.2,93.26,26.1,100.76 -4470,7,E07000028,1,43.8,93.26,26.1,100.76 -4928,5,E07000028,2,59.66,110.39,26.1,120.05 -5066,7,E07000028,2,54.06,110.39,26.1,120.05 -5571,5,E07000028,3,66.17,131.84,26.1,144.7 -5746,7,E07000028,3,58.72,131.84,26.1,144.7 -6319,5,E07000028,4,72.71,172.58,26.1,187.58 -6370,7,E07000028,4,55.93,172.58,26.1,187.58 -6567,9,E07000028,1,52.2,116.56,26.1,125.95 -6893,9,E07000028,2,59.66,138.01,26.1,150.06 -7219,9,E07000028,3,66.17,164.8,26.1,180.87 -7545,9,E07000028,4,72.71,215.73,26.1,234.49 -7871,10,E07000028,0,55.36,237.24,18.44,257.84 -48,1,E07000069,1,54.99,120.05,26.1,150.06 -374,1,E07000069,2,65.24,143.62,26.1,169.36 -700,1,E07000069,3,71.78,157.56,26.1,182.22 -1026,1,E07000069,4,82.02,172.58,26.1,180.08 -1352,3,E07000069,1,50.34,100.76,26.1,132.91 -1678,3,E07000069,2,58.72,118.97,26.1,133.98 -2004,3,E07000069,3,64.31,131.84,26.1,144.7 -2330,3,E07000069,4,71.78,150.06,26.1,160.78 -2656,2,E07000069,0,35.87,223.96,18.44,418.45 -2982,4,E07000069,0,55.36,134.38,18.44,314.73 -3308,6,E07000069,0,35.87,312.38,18.44,340.65 -3634,8,E07000069,0,55.36,312.38,18.44,340.65 -4126,5,E07000069,1,54.99,143.62,26.1,156.49 -4243,7,E07000069,1,50.34,143.62,26.1,156.49 -4707,5,E07000069,2,65.24,177.93,26.1,192.94 -4969,7,E07000069,2,58.72,177.93,26.1,192.94 -5426,5,E07000069,3,71.78,205.81,26.1,224.01 -5612,7,E07000069,3,64.31,205.81,26.1,224.01 -6136,5,E07000069,4,82.02,284.04,26.1,309.78 -6274,7,E07000069,4,71.78,284.04,26.1,309.78 -6568,9,E07000069,1,54.99,179.53,26.1,195.6 -6894,9,E07000069,2,65.24,222.43,26.1,241.18 -7220,9,E07000069,3,71.78,257.26,26.1,280.03 -7546,9,E07000069,4,82.02,355.06,26.1,387.21 -7872,10,E07000069,0,35.87,390.47,18.44,425.82 -49,1,E06000056,1,54.99,120.05,26.1,150.06 -375,1,E06000056,2,65.24,143.62,26.1,169.36 -701,1,E06000056,3,71.78,157.56,26.1,182.22 -1027,1,E06000056,4,82.02,172.58,26.1,180.08 -1353,3,E06000056,1,50.34,100.76,26.1,132.91 -1679,3,E06000056,2,58.72,118.97,26.1,133.98 -2005,3,E06000056,3,64.31,131.84,26.1,144.7 -2331,3,E06000056,4,71.78,150.06,26.1,160.78 -2657,2,E06000056,0,35.87,223.96,18.44,418.45 -2983,4,E06000056,0,55.36,134.38,18.44,314.73 -3309,6,E06000056,0,35.87,300.58,18.44,327.69 -3635,8,E06000056,0,55.36,300.58,18.44,327.69 -4127,5,E06000056,1,54.99,121.11,26.1,131.84 -4244,7,E06000056,1,50.34,121.11,26.1,131.84 -4708,5,E06000056,2,65.24,148.99,26.1,161.86 -4970,7,E06000056,2,58.72,148.99,26.1,161.86 -5427,5,E06000056,3,71.78,194.01,26.1,212.24 -5613,7,E06000056,3,64.31,194.01,26.1,212.24 -6137,5,E06000056,4,82.02,273.34,26.1,297.99 -6275,7,E06000056,4,71.78,273.34,26.1,297.99 -6569,9,E06000056,1,54.99,151.41,26.1,164.8 -6895,9,E06000056,2,65.24,186.23,26.1,202.34 -7221,9,E06000056,3,71.78,242.51,26.1,265.29 -7547,9,E06000056,4,82.02,341.67,26.1,372.48 -7873,10,E06000056,0,35.87,375.73,18.44,409.61 -50,1,E07000130,1,52.2,100.76,26.1,123.26 -376,1,E07000130,2,62.45,115.76,26.1,130.77 -702,1,E07000130,3,68.97,127.56,26.1,139.34 -1028,1,E07000130,4,76.43,159.7,26.1,168.29 -1354,3,E07000130,1,46.6,91.12,26.1,108.27 -1680,3,E07000130,2,53.13,97.54,26.1,109.33 -2006,3,E07000130,3,58.72,105.05,26.1,120.05 -2332,3,E07000130,4,64.31,123.26,26.1,123.26 -2658,2,E07000130,0,51.26,238.1,18.44,357.17 -2984,4,E07000130,0,49.2,113.15,18.44,122.59 -3310,6,E07000130,0,51.26,248.71,18.44,272.3 -3636,8,E07000130,0,49.2,248.71,18.44,272.3 -4318,5,E07000130,1,52.2,103.98,26.1,113.61 -4418,7,E07000130,1,46.6,103.98,26.1,113.61 -5014,5,E07000130,2,62.45,126.48,26.1,138.27 -5154,7,E07000130,2,53.13,126.48,26.1,138.27 -5657,5,E07000130,3,68.97,148.99,26.1,161.86 -5815,7,E07000130,3,58.72,148.99,26.1,161.86 -6232,5,E07000130,4,76.43,228.29,26.1,247.6 -6476,7,E07000130,4,64.31,228.29,26.1,247.6 -6570,9,E07000130,1,52.2,129.97,26.1,142.02 -6896,9,E07000130,2,62.45,158.09,26.1,172.84 -7222,9,E07000130,3,68.97,186.23,26.1,202.34 -7548,9,E07000130,4,76.43,285.39,26.1,309.5 -7874,10,E07000130,0,51.26,310.9,18.44,340.38 -51,1,E07000070,1,54.99,120.05,26.1,150.06 -377,1,E07000070,2,65.24,143.62,26.1,169.36 -703,1,E07000070,3,71.78,157.56,26.1,182.22 -1029,1,E07000070,4,82.02,172.58,26.1,180.08 -1355,3,E07000070,1,50.34,100.76,26.1,132.91 -1681,3,E07000070,2,58.72,118.97,26.1,133.98 -2007,3,E07000070,3,64.31,131.84,26.1,144.7 -2333,3,E07000070,4,71.78,150.06,26.1,160.78 -2659,2,E07000070,0,35.87,223.96,18.44,418.45 -2985,4,E07000070,0,55.36,134.38,18.44,314.73 -3311,6,E07000070,0,35.87,412.57,18.44,450.29 -3637,8,E07000070,0,55.36,412.57,18.44,450.29 -4128,5,E07000070,1,54.99,143.62,26.1,156.49 -4245,7,E07000070,1,50.34,143.62,26.1,156.49 -4709,5,E07000070,2,65.24,182.22,26.1,199.38 -4971,7,E07000070,2,58.72,182.22,26.1,199.38 -5428,5,E07000070,3,71.78,216.52,26.1,236.89 -5614,7,E07000070,3,64.31,216.52,26.1,236.89 -6138,5,E07000070,4,82.02,375.16,26.1,409.45 -6276,7,E07000070,4,71.78,375.16,26.1,409.45 -6571,9,E07000070,1,54.99,179.53,26.1,195.6 -6897,9,E07000070,2,65.24,227.8,26.1,249.22 -7223,9,E07000070,3,71.78,270.66,26.1,296.11 -7549,9,E07000070,4,82.02,468.95,26.1,511.83 -7875,10,E07000070,0,35.87,515.71,18.44,562.87 -52,1,E07000078,1,49.41,108.27,26.1,141.49 -378,1,E07000078,2,55.93,122.19,26.1,145.77 -704,1,E07000078,3,62.45,142.56,26.1,162.93 -1030,1,E07000078,4,71.78,159.7,26.1,196.15 -1356,3,E07000078,1,47.54,90.03,26.1,212.24 -1682,3,E07000078,2,54.99,101.83,26.1,112.54 -2008,3,E07000078,3,62.45,110.39,26.1,127.56 -2334,3,E07000078,4,74.57,131.84,26.1,131.84 -2660,2,E07000078,0,54.33,228.68,18.44,354.8 -2986,4,E07000078,0,54.33,114.33,18.44,140.27 -3312,6,E07000078,0,54.33,523.37,18.44,570.54 -3638,8,E07000078,0,54.33,523.37,18.44,570.54 -3916,7,E07000078,1,47.54,129.7,26.1,142.56 -4200,5,E07000078,1,49.41,129.7,26.1,142.56 -4836,5,E07000078,2,55.93,172.58,26.1,187.58 -5113,7,E07000078,2,54.99,172.58,26.1,187.58 -5467,5,E07000078,3,62.45,216.52,26.1,236.89 -5693,7,E07000078,3,62.45,216.52,26.1,236.89 -6005,5,E07000078,4,71.78,475.91,26.1,518.79 -6405,7,E07000078,4,74.57,475.91,26.1,518.79 -6572,9,E07000078,1,49.41,162.13,26.1,178.2 -6898,9,E07000078,2,55.93,215.73,26.1,234.49 -7224,9,E07000078,3,62.45,270.66,26.1,296.11 -7550,9,E07000078,4,71.78,594.88,26.1,648.48 -7876,10,E07000078,0,54.33,654.22,18.44,713.15 -53,1,E07000177,1,57.79,124.33,26.1,177.93 -379,1,E07000177,2,71.78,147.91,26.1,188.66 -705,1,E07000177,3,82.02,162.93,26.1,205.81 -1031,1,E07000177,4,90.42,180.08,26.1,224.01 -1357,3,E07000177,1,52.2,116.83,26.1,160.78 -1683,3,E07000177,2,63.38,130.77,26.1,146.84 -2009,3,E07000177,3,68.97,151.13,26.1,187.58 -2335,3,E07000177,4,73.64,186.51,26.1,196.15 -2661,2,E07000177,0,61.49,265.21,18.44,340.65 -2987,4,E07000177,0,48.18,193.32,18.44,202.73 -3313,6,E07000177,0,61.49,374.83,18.44,409.03 -3639,8,E07000177,0,48.18,374.83,18.44,409.03 -3991,5,E07000177,1,57.79,136.13,26.1,148.99 -4058,7,E07000177,1,52.2,136.13,26.1,148.99 -4606,5,E07000177,2,71.78,172.58,26.1,187.58 -4753,7,E07000177,2,63.38,172.58,26.1,187.58 -5258,5,E07000177,3,82.02,211.17,26.1,230.44 -5358,7,E07000177,3,68.97,211.17,26.1,230.44 -5943,5,E07000177,4,90.42,340.85,26.1,371.94 -6047,7,E07000177,4,73.64,340.85,26.1,371.94 -6573,9,E07000177,1,57.79,170.16,26.1,186.23 -6899,9,E07000177,2,71.78,215.73,26.1,234.49 -7225,9,E07000177,3,82.02,263.95,26.1,288.07 -7551,9,E07000177,4,90.42,426.06,26.1,464.91 -7877,10,E07000177,0,61.49,468.55,18.44,511.3 -83,1,E06000049,1,52.2,94.33,26.1,117.9 -409,1,E06000049,2,59.66,108.27,26.1,136.13 -735,1,E06000049,3,66.17,121.11,26.1,146.84 -1061,1,E06000049,4,72.71,135.06,26.1,160.78 -1387,3,E06000049,1,43.8,86.81,26.1,101.83 -1713,3,E06000049,2,54.06,95.42,26.1,114.68 -2039,3,E06000049,3,58.72,106.12,26.1,125.4 -2365,3,E06000049,4,55.93,120.05,26.1,135.06 -2691,2,E06000049,0,55.36,236.93,18.44,338.29 -3017,4,E06000049,0,32.8,464.43,18.44,592.92 -3343,6,E06000049,0,55.36,373.65,18.44,407.85 -3669,8,E06000049,0,32.8,373.65,18.44,407.85 -4363,5,E06000049,1,52.2,114.68,26.1,124.33 -4475,7,E06000049,1,43.8,114.68,26.1,124.33 -4933,5,E06000049,2,59.66,148.99,26.1,161.86 -5071,7,E06000049,2,54.06,148.99,26.1,161.86 -5576,5,E06000049,3,66.17,194.01,26.1,212.24 -5751,7,E06000049,3,58.72,194.01,26.1,212.24 -6324,5,E06000049,4,72.71,339.77,26.1,370.87 -6375,7,E06000049,4,55.93,339.77,26.1,370.87 -6603,9,E06000049,1,52.2,143.37,26.1,155.41 -6929,9,E06000049,2,59.66,186.23,26.1,202.34 -7255,9,E06000049,3,66.17,242.51,26.1,265.29 -7581,9,E06000049,4,72.71,424.73,26.1,463.59 -7907,10,E06000049,0,55.36,467.08,18.44,509.82 -54,1,E06000050,1,52.2,94.33,26.1,117.9 -380,1,E06000050,2,59.66,108.27,26.1,136.13 -706,1,E06000050,3,66.17,121.11,26.1,146.84 -1032,1,E06000050,4,72.71,135.06,26.1,160.78 -1358,3,E06000050,1,43.8,86.81,26.1,101.83 -1684,3,E06000050,2,54.06,95.42,26.1,114.68 -2010,3,E06000050,3,58.72,106.12,26.1,125.4 -2336,3,E06000050,4,55.93,120.05,26.1,135.06 -2662,2,E06000050,0,55.36,236.93,18.44,338.29 -2988,4,E06000050,0,32.8,464.43,18.44,592.92 -3314,6,E06000050,0,55.36,288.79,18.44,313.55 -3640,8,E06000050,0,32.8,288.79,18.44,313.55 -4359,5,E06000050,1,52.2,121.11,26.1,131.84 -4471,7,E06000050,1,43.8,121.11,26.1,131.84 -4929,5,E06000050,2,59.66,143.62,26.1,156.49 -5067,7,E06000050,2,54.06,143.62,26.1,156.49 -5572,5,E06000050,3,66.17,166.14,26.1,181.15 -5747,7,E06000050,3,58.72,166.14,26.1,181.15 -6320,5,E06000050,4,72.71,262.61,26.1,285.11 -6371,7,E06000050,4,55.93,262.61,26.1,285.11 -6574,9,E06000050,1,52.2,151.41,26.1,164.8 -6900,9,E06000050,2,59.66,179.53,26.1,195.6 -7226,9,E06000050,3,66.17,207.68,26.1,226.44 -7552,9,E06000050,4,72.71,328.26,26.1,356.4 -7878,10,E06000050,0,55.36,360.99,18.44,391.95 -55,1,E07000034,1,52.2,100.76,26.1,123.26 -381,1,E07000034,2,62.45,115.76,26.1,130.77 -707,1,E07000034,3,68.97,127.56,26.1,139.34 -1033,1,E07000034,4,76.43,159.7,26.1,168.29 -1359,3,E07000034,1,46.6,91.12,26.1,108.27 -1685,3,E07000034,2,53.13,97.54,26.1,109.33 -2011,3,E07000034,3,58.72,105.05,26.1,120.05 -2337,3,E07000034,4,64.31,123.26,26.1,123.26 -2663,2,E07000034,0,51.26,238.1,18.44,357.17 -2989,4,E07000034,0,49.2,113.15,18.44,122.59 -3315,6,E07000034,0,51.26,207.45,18.44,226.32 -3641,8,E07000034,0,49.2,207.45,18.44,226.32 -4319,5,E07000034,1,52.2,98.62,26.1,108.27 -4419,7,E07000034,1,46.6,98.62,26.1,108.27 -5015,5,E07000034,2,62.45,114.68,26.1,124.33 -5155,7,E07000034,2,53.13,114.68,26.1,124.33 -5658,5,E07000034,3,68.97,136.13,26.1,148.99 -5816,7,E07000034,3,58.72,136.13,26.1,148.99 -6233,5,E07000034,4,76.43,188.66,26.1,205.81 -6477,7,E07000034,4,64.31,188.66,26.1,205.81 -6575,9,E07000034,1,52.2,123.26,26.1,135.33 -6901,9,E07000034,2,62.45,143.37,26.1,155.41 -7227,9,E07000034,3,68.97,170.16,26.1,186.23 -7553,9,E07000034,4,76.43,235.82,26.1,257.26 -7879,10,E07000034,0,51.26,259.31,18.44,282.91 -56,1,E07000225,1,57.79,124.33,26.1,177.93 -382,1,E07000225,2,71.78,147.91,26.1,188.66 -708,1,E07000225,3,82.02,162.93,26.1,205.81 -1034,1,E07000225,4,90.42,180.08,26.1,224.01 -1360,3,E07000225,1,52.2,116.83,26.1,160.78 -1686,3,E07000225,2,63.38,130.77,26.1,146.84 -2012,3,E07000225,3,68.97,151.13,26.1,187.58 -2338,3,E07000225,4,73.64,186.51,26.1,196.15 -2664,2,E07000225,0,61.49,265.21,18.44,340.65 -2990,4,E07000225,0,48.18,193.32,18.44,202.73 -3316,6,E07000225,0,61.49,473.86,18.44,517.47 -3642,8,E07000225,0,48.18,473.86,18.44,517.47 -3992,5,E07000225,1,57.79,148.99,26.1,161.86 -4059,7,E07000225,1,52.2,148.99,26.1,161.86 -4607,5,E07000225,2,71.78,194.01,26.1,212.24 -4754,7,E07000225,2,63.38,194.01,26.1,212.24 -5259,5,E07000225,3,82.02,250.82,26.1,273.34 -5359,7,E07000225,3,68.97,250.82,26.1,273.34 -5944,5,E07000225,4,90.42,430.9,26.1,470.55 -6048,7,E07000225,4,73.64,430.9,26.1,470.55 -6576,9,E07000225,1,57.79,186.23,26.1,202.34 -6902,9,E07000225,2,71.78,242.51,26.1,265.29 -7228,9,E07000225,3,82.02,313.51,26.1,341.67 -7554,9,E07000225,4,90.42,538.61,26.1,588.19 -7880,10,E07000225,0,61.49,592.32,18.44,646.84 -58,1,E07000118,1,52.2,94.33,26.1,117.9 -384,1,E07000118,2,59.66,108.27,26.1,136.13 -710,1,E07000118,3,66.17,121.11,26.1,146.84 -1036,1,E07000118,4,72.71,135.06,26.1,160.78 -1362,3,E07000118,1,43.8,86.81,26.1,101.83 -1688,3,E07000118,2,54.06,95.42,26.1,114.68 -2014,3,E07000118,3,58.72,106.12,26.1,125.4 -2340,3,E07000118,4,55.93,120.05,26.1,135.06 -2666,2,E07000118,0,55.36,236.93,18.44,338.29 -2992,4,E07000118,0,32.8,464.43,18.44,592.92 -3318,6,E07000118,0,55.36,225.15,18.44,245.18 -3644,8,E07000118,0,32.8,225.15,18.44,245.18 -4360,5,E07000118,1,52.2,97.54,26.1,106.12 -4472,7,E07000118,1,43.8,97.54,26.1,106.12 -4930,5,E07000118,2,59.66,126.48,26.1,138.27 -5068,7,E07000118,2,54.06,126.48,26.1,138.27 -5573,5,E07000118,3,66.17,148.99,26.1,161.86 -5748,7,E07000118,3,58.72,148.99,26.1,161.86 -6321,5,E07000118,4,72.71,204.74,26.1,222.95 -6372,7,E07000118,4,55.93,204.74,26.1,222.95 -6578,9,E07000118,1,52.2,121.95,26.1,132.65 -6904,9,E07000118,2,59.66,158.09,26.1,172.84 -7230,9,E07000118,3,66.17,186.23,26.1,202.34 -7556,9,E07000118,4,72.71,255.92,26.1,278.69 -7882,10,E07000118,0,55.36,281.43,18.44,306.45 -60,1,E09000001,1,66.17,146.84,26.1,199.38 -386,1,E09000001,2,78.29,158.63,26.1,194.01 -712,1,E09000001,3,84.82,168.29,26.1,228.29 -1038,1,E09000001,4,102.51,188.66,26.1,254.03 -1364,3,E09000001,1,58.72,120.05,26.1,147.91 -1690,3,E09000001,2,64.31,140.42,26.1,176.86 -2016,3,E09000001,3,71.78,160.78,26.1,202.58 -2342,3,E09000001,4,83.89,262.61,26.1,263.68 -2668,2,E09000001,0,69.7,313.55,18.44,497.44 -2994,4,E09000001,0,59.45,367.77,18.44,398.42 -3320,6,E09000001,0,69.7,3175.58,18.44,3464.37 -3646,8,E09000001,0,59.45,3175.58,18.44,3464.37 -3956,5,E09000001,1,66.17,389.09,26.1,424.47 -4170,7,E09000001,1,58.72,389.09,26.1,424.47 -4571,5,E09000001,2,78.29,496.29,26.1,541.3 -4671,7,E09000001,2,64.31,496.29,26.1,541.3 -5223,5,E09000001,3,84.82,932.53,26.1,1017.2 -5323,7,E09000001,3,71.78,932.53,26.1,1017.2 -5875,7,E09000001,4,83.89,2276.66,26.1,2483.53 -5908,5,E09000001,4,102.51,2276.66,26.1,2483.53 -6580,9,E09000001,1,66.17,486.38,26.1,530.59 -6906,9,E09000001,2,78.29,620.35,26.1,676.64 -7232,9,E09000001,3,84.82,1165.67,26.1,1271.52 -7558,9,E09000001,4,102.51,2845.82,26.1,3104.42 -7884,10,E09000001,0,69.7,3969.47,18.44,4330.46 -62,1,E07000071,1,54.99,120.05,26.1,150.06 -388,1,E07000071,2,65.24,143.62,26.1,169.36 -714,1,E07000071,3,71.78,157.56,26.1,182.22 -1040,1,E07000071,4,82.02,172.58,26.1,180.08 -1366,3,E07000071,1,50.34,100.76,26.1,132.91 -1692,3,E07000071,2,58.72,118.97,26.1,133.98 -2018,3,E07000071,3,64.31,131.84,26.1,144.7 -2344,3,E07000071,4,71.78,150.06,26.1,160.78 -2670,2,E07000071,0,35.87,223.96,18.44,418.45 -2996,4,E07000071,0,55.36,134.38,18.44,314.73 -3322,6,E07000071,0,35.87,312.38,18.44,340.65 -3648,8,E07000071,0,55.36,312.38,18.44,340.65 -4129,5,E07000071,1,54.99,124.33,26.1,135.06 -4246,7,E07000071,1,50.34,124.33,26.1,135.06 -4710,5,E07000071,2,65.24,148.99,26.1,161.86 -4972,7,E07000071,2,58.72,148.99,26.1,161.86 -5429,5,E07000071,3,71.78,192.94,26.1,211.17 -5615,7,E07000071,3,64.31,192.94,26.1,211.17 -6139,5,E07000071,4,82.02,284.04,26.1,309.78 -6277,7,E07000071,4,71.78,284.04,26.1,309.78 -6582,9,E07000071,1,54.99,155.41,26.1,168.82 -6908,9,E07000071,2,65.24,186.23,26.1,202.34 -7234,9,E07000071,3,71.78,241.18,26.1,263.95 -7560,9,E07000071,4,82.02,355.06,26.1,387.21 -7886,10,E07000071,0,35.87,390.47,18.44,425.82 -63,1,E07000029,1,52.2,94.33,26.1,117.9 -389,1,E07000029,2,59.66,108.27,26.1,136.13 -715,1,E07000029,3,66.17,121.11,26.1,146.84 -1041,1,E07000029,4,72.71,135.06,26.1,160.78 -1367,3,E07000029,1,43.8,86.81,26.1,101.83 -1693,3,E07000029,2,54.06,95.42,26.1,114.68 -2019,3,E07000029,3,58.72,106.12,26.1,125.4 -2345,3,E07000029,4,55.93,120.05,26.1,135.06 -2671,2,E07000029,0,55.36,236.93,18.44,338.29 -2997,4,E07000029,0,32.8,464.43,18.44,592.92 -3323,6,E07000029,0,55.36,225.15,18.44,245.18 -3649,8,E07000029,0,32.8,225.15,18.44,245.18 -4362,5,E07000029,1,52.2,95.42,26.1,102.91 -4474,7,E07000029,1,43.8,95.42,26.1,102.91 -4932,5,E07000029,2,59.66,115.76,26.1,125.4 -5070,7,E07000029,2,54.06,115.76,26.1,125.4 -5575,5,E07000029,3,66.17,131.84,26.1,144.7 -5750,7,E07000029,3,58.72,131.84,26.1,144.7 -6323,5,E07000029,4,72.71,204.74,26.1,222.95 -6374,7,E07000029,4,55.93,204.74,26.1,222.95 -6583,9,E07000029,1,52.2,119.25,26.1,128.63 -6909,9,E07000029,2,59.66,144.7,26.1,156.77 -7235,9,E07000029,3,66.17,164.8,26.1,180.87 -7561,9,E07000029,4,72.71,255.92,26.1,278.69 -7887,10,E07000029,0,55.36,281.43,18.44,306.45 -4320,5,E06000061,1,52.2,98.62,26.1,108.27 -65,1,E06000052,1,49.41,108.27,26.1,141.49 -391,1,E06000052,2,55.93,122.19,26.1,145.77 -717,1,E06000052,3,62.45,142.56,26.1,162.93 -1043,1,E06000052,4,71.78,159.7,26.1,196.15 -1369,3,E06000052,1,47.54,90.03,26.1,212.24 -1695,3,E06000052,2,54.99,101.83,26.1,112.54 -2021,3,E06000052,3,62.45,110.39,26.1,127.56 -2347,3,E06000052,4,74.57,131.84,26.1,131.84 -2673,2,E06000052,0,54.33,228.68,18.44,354.8 -2999,4,E06000052,0,54.33,114.33,18.44,140.27 -3325,6,E06000052,0,54.33,244,18.44,266.39 -3651,8,E06000052,0,54.33,244,18.44,266.39 -3918,7,E06000052,1,47.54,115.76,26.1,125.4 -4202,5,E06000052,1,49.41,115.76,26.1,125.4 -4838,5,E06000052,2,55.93,143.62,26.1,156.49 -5115,7,E06000052,2,54.99,143.62,26.1,156.49 -5469,5,E06000052,3,62.45,168.29,26.1,182.22 -5695,7,E06000052,3,62.45,168.29,26.1,182.22 -6007,5,E06000052,4,71.78,221.88,26.1,242.25 -6407,7,E06000052,4,74.57,221.88,26.1,242.25 -6585,9,E06000052,1,49.41,144.7,26.1,156.77 -6911,9,E06000052,2,55.93,179.53,26.1,195.6 -7237,9,E06000052,3,62.45,210.37,26.1,227.8 -7563,9,E06000052,4,71.78,277.34,26.1,302.81 -7889,10,E06000052,0,54.33,305,18.44,332.99 -66,1,E07000079,1,49.41,108.27,26.1,141.49 -392,1,E07000079,2,55.93,122.19,26.1,145.77 -718,1,E07000079,3,62.45,142.56,26.1,162.93 -1044,1,E07000079,4,71.78,159.7,26.1,196.15 -1370,3,E07000079,1,47.54,90.03,26.1,212.24 -1696,3,E07000079,2,54.99,101.83,26.1,112.54 -2022,3,E07000079,3,62.45,110.39,26.1,127.56 -2348,3,E07000079,4,74.57,131.84,26.1,131.84 -2674,2,E07000079,0,54.33,228.68,18.44,354.8 -3000,4,E07000079,0,54.33,114.33,18.44,140.27 -3326,6,E07000079,0,54.33,497.44,18.44,541.06 -3652,8,E07000079,0,54.33,497.44,18.44,541.06 -3919,7,E07000079,1,47.54,126.48,26.1,138.27 -4203,5,E07000079,1,49.41,126.48,26.1,138.27 -4839,5,E07000079,2,55.93,166.14,26.1,181.15 -5116,7,E07000079,2,54.99,166.14,26.1,181.15 -5470,5,E07000079,3,62.45,205.81,26.1,224.01 -5696,7,E07000079,3,62.45,205.81,26.1,224.01 -6008,5,E07000079,4,71.78,452.33,26.1,492 -6408,7,E07000079,4,74.57,452.33,26.1,492 -6586,9,E07000079,1,49.41,158.09,26.1,172.84 -6912,9,E07000079,2,55.93,207.68,26.1,226.44 -7238,9,E07000079,3,62.45,257.26,26.1,280.03 -7564,9,E07000079,4,71.78,565.41,26.1,615.01 -7890,10,E07000079,0,54.33,621.79,18.44,676.32 -80,1,E06000047,1,51.27,88.96,26.1,98.62 -406,1,E06000047,2,57.79,102.91,26.1,121.11 -732,1,E06000047,3,61.52,114.68,26.1,160.78 -1058,1,E06000047,4,70.84,128.63,26.1,140.42 -1384,3,E06000047,1,42.87,100.76,26.1,106.12 -1710,3,E06000047,2,50.34,91.12,26.1,112.54 -2036,3,E06000047,3,54.06,106.12,26.1,125.4 -2362,3,E06000047,4,56.86,116.83,26.1,121.11 -2688,2,E06000047,0,55.36,234.56,18.44,337.12 -3014,4,E06000047,0,47.15,251.08,18.44,285.25 -3340,6,E06000047,0,55.36,200.38,18.44,219.25 -3666,8,E06000047,0,47.15,200.38,18.44,219.25 -4452,7,E06000047,1,42.87,126.48,26.1,138.27 -4533,5,E06000047,1,51.27,126.48,26.1,138.27 -5048,5,E06000047,2,57.79,103.98,26.1,113.61 -5099,7,E06000047,2,50.34,103.98,26.1,113.61 -5553,5,E06000047,3,61.52,124.33,26.1,135.06 -5728,7,E06000047,3,54.06,124.33,26.1,135.06 -6352,5,E06000047,4,70.84,182.22,26.1,199.38 -6510,7,E06000047,4,56.86,182.22,26.1,199.38 -6600,9,E06000047,1,42.87,158.09,26.1,172.84 -6926,9,E06000047,2,57.79,129.97,26.1,142.02 -7252,9,E06000047,3,61.52,155.41,26.1,168.82 -7578,9,E06000047,4,70.84,227.8,26.1,249.22 -7904,10,E06000047,0,55.36,250.47,18.44,274.05 -67,1,E08000026,1,53.13,99.69,26.1,125.4 -393,1,E08000026,2,58.72,117.9,26.1,138.27 -719,1,E08000026,3,69.9,133.98,26.1,161.86 -1045,1,E08000026,4,81.09,162.93,26.1,180.08 -1371,3,E08000026,1,46.6,88.96,26.1,98.62 -1697,3,E08000026,2,50.34,95.42,26.1,103.98 -2023,3,E08000026,3,60.59,105.05,26.1,121.11 -2349,3,E08000026,4,68.97,128.63,26.1,128.63 -2675,2,E08000026,0,38.95,242.82,18.44,378.37 -3001,4,E08000026,0,46.12,106.09,18.44,106.09 -3327,6,E08000026,0,38.95,261.68,18.44,285.25 -3653,8,E08000026,0,46.12,261.68,18.44,285.25 -4284,5,E08000026,1,53.13,114.68,26.1,124.33 -4505,7,E08000026,1,46.6,114.68,26.1,124.33 -4894,5,E08000026,2,58.72,131.84,26.1,144.7 -5190,7,E08000026,2,50.34,131.84,26.1,144.7 -5525,5,E08000026,3,69.9,148.99,26.1,161.86 -5781,7,E08000026,3,60.59,148.99,26.1,161.86 -6177,5,E08000026,4,81.09,237.96,26.1,259.39 -6442,7,E08000026,4,68.97,237.96,26.1,259.39 -6587,9,E08000026,1,53.13,143.37,26.1,155.41 -6913,9,E08000026,2,58.72,164.8,26.1,180.87 -7239,9,E08000026,3,69.9,186.23,26.1,202.34 -7565,9,E08000026,4,81.09,297.46,26.1,324.23 -7891,10,E08000026,0,38.95,327.11,18.44,356.59 -68,1,E07000163,1,51.27,92.19,26.1,114.68 -394,1,E07000163,2,58.72,109.33,26.1,141.49 -720,1,E07000163,3,63.38,121.11,26.1,162.93 -1046,1,E07000163,4,73.64,145.77,26.1,180.08 -1372,3,E07000163,1,46.6,82.54,26.1,93.26 -1698,3,E07000163,2,53.13,113.61,26.1,145.77 -2024,3,E07000163,3,56.86,105.05,26.1,114.68 -2350,3,E07000163,4,64.31,122.19,26.1,176.86 -2676,2,E07000163,0,52.28,232.2,18.44,319.44 -3002,4,E07000163,0,51.26,159.13,18.44,188.6 -3328,6,E07000163,0,52.28,213.35,18.44,233.38 -3654,8,E07000163,0,51.26,213.35,18.44,233.38 -4393,5,E07000163,1,51.27,100.76,26.1,110.39 -4547,7,E07000163,1,46.6,100.76,26.1,110.39 -4815,7,E07000163,2,53.13,130.77,26.1,143.62 -4873,5,E07000163,2,58.72,130.77,26.1,143.62 -5504,5,E07000163,3,63.38,148.99,26.1,161.86 -5851,7,E07000163,3,56.86,148.99,26.1,161.86 -6109,5,E07000163,4,73.64,194.01,26.1,212.24 -6207,7,E07000163,4,64.31,194.01,26.1,212.24 -6588,9,E07000163,1,51.27,125.95,26.1,138.01 -6914,9,E07000163,2,53.13,163.46,26.1,179.53 -7240,9,E07000163,3,63.38,186.23,26.1,202.34 -7566,9,E07000163,4,73.64,242.51,26.1,265.29 -7892,10,E07000163,0,52.28,266.69,18.44,291.74 -69,1,E07000226,1,57.79,124.33,26.1,177.93 -395,1,E07000226,2,71.78,147.91,26.1,188.66 -721,1,E07000226,3,82.02,162.93,26.1,205.81 -1047,1,E07000226,4,90.42,180.08,26.1,224.01 -1373,3,E07000226,1,52.2,116.83,26.1,160.78 -1699,3,E07000226,2,63.38,130.77,26.1,146.84 -2025,3,E07000226,3,68.97,151.13,26.1,187.58 -2351,3,E07000226,4,73.64,186.51,26.1,196.15 -2677,2,E07000226,0,61.49,265.21,18.44,340.65 -3003,4,E07000226,0,48.18,193.32,18.44,202.73 -3329,6,E07000226,0,61.49,350.07,18.44,380.74 -3655,8,E07000226,0,48.18,350.07,18.44,380.74 -3994,5,E07000226,1,57.79,155.41,26.1,169.36 -4061,7,E07000226,1,52.2,155.41,26.1,169.36 -4609,5,E07000226,2,71.78,194.01,26.1,212.24 -4756,7,E07000226,2,63.38,194.01,26.1,212.24 -5261,5,E07000226,3,82.02,229.37,26.1,248.67 -5361,7,E07000226,3,68.97,229.37,26.1,248.67 -5946,5,E07000226,4,90.42,318.35,26.1,346.22 -6050,7,E07000226,4,73.64,318.35,26.1,346.22 -6589,9,E07000226,1,57.79,194.27,26.1,211.69 -6915,9,E07000226,2,71.78,242.51,26.1,265.29 -7241,9,E07000226,3,82.02,286.72,26.1,310.84 -7567,9,E07000226,4,90.42,397.93,26.1,432.75 -7893,10,E07000226,0,61.49,437.59,18.44,475.94 -70,1,E09000008,1,66.17,146.84,26.1,199.38 -396,1,E09000008,2,78.29,158.63,26.1,194.01 -722,1,E09000008,3,84.82,168.29,26.1,228.29 -1048,1,E09000008,4,102.51,188.66,26.1,254.03 -1374,3,E09000008,1,58.72,120.05,26.1,147.91 -1700,3,E09000008,2,64.31,140.42,26.1,176.86 -2026,3,E09000008,3,71.78,160.78,26.1,202.58 -2352,3,E09000008,4,83.89,262.61,26.1,263.68 -2678,2,E09000008,0,69.7,313.55,18.44,497.44 -3004,4,E09000008,0,59.45,367.77,18.44,398.42 -3330,6,E09000008,0,69.7,432.61,18.44,471.5 -3656,8,E09000008,0,59.45,432.61,18.44,471.5 -3957,5,E09000008,1,66.17,177.93,26.1,192.94 -4171,7,E09000008,1,58.72,177.93,26.1,192.94 -4572,5,E09000008,2,78.29,216.52,26.1,236.89 -4672,7,E09000008,2,64.31,216.52,26.1,236.89 -5224,5,E09000008,3,84.82,273.34,26.1,297.99 -5324,7,E09000008,3,71.78,273.34,26.1,297.99 -5876,7,E09000008,4,83.89,394.47,26.1,428.76 -5909,5,E09000008,4,102.51,394.47,26.1,428.76 -6590,9,E09000008,1,66.17,222.43,26.1,241.18 -6916,9,E09000008,2,78.29,270.66,26.1,296.11 -7242,9,E09000008,3,84.82,341.67,26.1,372.48 -7568,9,E09000008,4,102.51,493.07,26.1,535.95 -7894,10,E09000008,0,69.7,540.75,18.44,589.38 -71,1,E07000096,1,54.99,120.05,26.1,150.06 -397,1,E07000096,2,65.24,143.62,26.1,169.36 -723,1,E07000096,3,71.78,157.56,26.1,182.22 -1049,1,E07000096,4,82.02,172.58,26.1,180.08 -1375,3,E07000096,1,50.34,100.76,26.1,132.91 -1701,3,E07000096,2,58.72,118.97,26.1,133.98 -2027,3,E07000096,3,64.31,131.84,26.1,144.7 -2353,3,E07000096,4,71.78,150.06,26.1,160.78 -2679,2,E07000096,0,35.87,223.96,18.44,418.45 -3005,4,E07000096,0,55.36,134.38,18.44,314.73 -3331,6,E07000096,0,35.87,498.61,18.44,543.41 -3657,8,E07000096,0,55.36,498.61,18.44,543.41 -4130,5,E07000096,1,54.99,148.99,26.1,161.86 -4247,7,E07000096,1,50.34,148.99,26.1,161.86 -4711,5,E07000096,2,65.24,194.01,26.1,212.24 -4973,7,E07000096,2,58.72,194.01,26.1,212.24 -5430,5,E07000096,3,71.78,273.34,26.1,297.99 -5616,7,E07000096,3,64.31,273.34,26.1,297.99 -6140,5,E07000096,4,82.02,453.4,26.1,494.14 -6278,7,E07000096,4,71.78,453.4,26.1,494.14 -6591,9,E07000096,1,54.99,186.23,26.1,202.34 -6917,9,E07000096,2,65.24,242.51,26.1,265.29 -7243,9,E07000096,3,71.78,341.67,26.1,372.48 -7569,9,E07000096,4,82.02,566.75,26.1,617.67 -7895,10,E07000096,0,35.87,623.27,18.44,679.26 -72,1,E06000005,1,51.27,88.96,26.1,98.62 -398,1,E06000005,2,57.79,102.91,26.1,121.11 -724,1,E06000005,3,61.52,114.68,26.1,160.78 -1050,1,E06000005,4,70.84,128.63,26.1,140.42 -1376,3,E06000005,1,42.87,100.76,26.1,106.12 -1702,3,E06000005,2,50.34,91.12,26.1,112.54 -2028,3,E06000005,3,54.06,106.12,26.1,125.4 -2354,3,E06000005,4,56.86,116.83,26.1,121.11 -2680,2,E06000005,0,55.36,234.56,18.44,337.12 -3006,4,E06000005,0,47.15,251.08,18.44,285.25 -3332,6,E06000005,0,55.36,207.45,18.44,226.32 -3658,8,E06000005,0,47.15,207.45,18.44,226.32 -4451,7,E06000005,1,42.87,91.12,26.1,98.62 -4532,5,E06000005,1,51.27,91.12,26.1,98.62 -5047,5,E06000005,2,57.79,110.39,26.1,120.05 -5098,7,E06000005,2,50.34,110.39,26.1,120.05 -5552,5,E06000005,3,61.52,131.84,26.1,144.7 -5727,7,E06000005,3,54.06,131.84,26.1,144.7 -6351,5,E06000005,4,70.84,188.66,26.1,205.81 -6509,7,E06000005,4,56.86,188.66,26.1,205.81 -6592,9,E06000005,1,42.87,113.9,26.1,123.26 -6918,9,E06000005,2,57.79,138.01,26.1,150.06 -7244,9,E06000005,3,61.52,164.8,26.1,180.87 -7570,9,E06000005,4,70.84,235.82,26.1,257.26 -7896,10,E06000005,0,55.36,259.31,18.44,282.91 -73,1,E07000107,1,57.79,124.33,26.1,177.93 -399,1,E07000107,2,71.78,147.91,26.1,188.66 -725,1,E07000107,3,82.02,162.93,26.1,205.81 -1051,1,E07000107,4,90.42,180.08,26.1,224.01 -1377,3,E07000107,1,52.2,116.83,26.1,160.78 -1703,3,E07000107,2,63.38,130.77,26.1,146.84 -2029,3,E07000107,3,68.97,151.13,26.1,187.58 -2355,3,E07000107,4,73.64,186.51,26.1,196.15 -2681,2,E07000107,0,61.49,265.21,18.44,340.65 -3007,4,E07000107,0,48.18,193.32,18.44,202.73 -3333,6,E07000107,0,61.49,363.05,18.44,396.05 -3659,8,E07000107,0,48.18,363.05,18.44,396.05 -3995,5,E07000107,1,57.79,138.27,26.1,150.06 -4062,7,E07000107,1,52.2,138.27,26.1,150.06 -4610,5,E07000107,2,71.78,182.22,26.1,199.38 -4757,7,E07000107,2,63.38,182.22,26.1,199.38 -5262,5,E07000107,3,82.02,211.17,26.1,230.44 -5362,7,E07000107,3,68.97,211.17,26.1,230.44 -5947,5,E07000107,4,90.42,330.14,26.1,360.15 -6051,7,E07000107,4,73.64,330.14,26.1,360.15 -6593,9,E07000107,1,57.79,172.84,26.1,187.57 -6919,9,E07000107,2,71.78,227.8,26.1,249.22 -7245,9,E07000107,3,82.02,263.95,26.1,288.07 -7571,9,E07000107,4,90.42,412.67,26.1,450.18 -7897,10,E07000107,0,61.49,453.82,18.44,495.08 -75,1,E06000015,1,52.2,100.76,26.1,123.26 -401,1,E06000015,2,62.45,115.76,26.1,130.77 -727,1,E06000015,3,68.97,127.56,26.1,139.34 -1053,1,E06000015,4,76.43,159.7,26.1,168.29 -1379,3,E06000015,1,46.6,91.12,26.1,108.27 -1705,3,E06000015,2,53.13,97.54,26.1,109.33 -2031,3,E06000015,3,58.72,105.05,26.1,120.05 -2357,3,E06000015,4,64.31,123.26,26.1,123.26 -2683,2,E06000015,0,51.26,238.1,18.44,357.17 -3009,4,E06000015,0,49.2,113.15,18.44,122.59 -3335,6,E06000015,0,51.26,248.71,18.44,272.3 -3661,8,E06000015,0,49.2,248.71,18.44,272.3 -4322,5,E06000015,1,52.2,98.62,26.1,108.27 -4422,7,E06000015,1,46.6,98.62,26.1,108.27 -5018,5,E06000015,2,62.45,121.11,26.1,131.84 -5158,7,E06000015,2,53.13,121.11,26.1,131.84 -5661,5,E06000015,3,68.97,143.62,26.1,156.49 -5819,7,E06000015,3,58.72,143.62,26.1,156.49 -6236,5,E06000015,4,76.43,228.29,26.1,247.6 -6480,7,E06000015,4,64.31,228.29,26.1,247.6 -6595,9,E06000015,1,52.2,123.26,26.1,135.33 -6921,9,E06000015,2,62.45,151.41,26.1,164.8 -7247,9,E06000015,3,68.97,179.53,26.1,195.6 -7573,9,E06000015,4,76.43,285.39,26.1,309.5 -7899,10,E06000015,0,51.26,310.9,18.44,340.38 -76,1,E07000035,1,52.2,100.76,26.1,123.26 -402,1,E07000035,2,62.45,115.76,26.1,130.77 -728,1,E07000035,3,68.97,127.56,26.1,139.34 -1054,1,E07000035,4,76.43,159.7,26.1,168.29 -1380,3,E07000035,1,46.6,91.12,26.1,108.27 -1706,3,E07000035,2,53.13,97.54,26.1,109.33 -2032,3,E07000035,3,58.72,105.05,26.1,120.05 -2358,3,E07000035,4,64.31,123.26,26.1,123.26 -2684,2,E07000035,0,51.26,238.1,18.44,357.17 -3010,4,E07000035,0,49.2,113.15,18.44,122.59 -3336,6,E07000035,0,51.26,272.3,18.44,297.05 -3662,8,E07000035,0,49.2,272.3,18.44,297.05 -4323,5,E07000035,1,52.2,110.39,26.1,120.05 -4423,7,E07000035,1,46.6,110.39,26.1,120.05 -5019,5,E07000035,2,62.45,136.13,26.1,148.99 -5159,7,E07000035,2,53.13,136.13,26.1,148.99 -5662,5,E07000035,3,68.97,159.7,26.1,174.72 -5820,7,E07000035,3,58.72,159.7,26.1,174.72 -6237,5,E07000035,4,76.43,247.6,26.1,270.11 -6481,7,E07000035,4,64.31,247.6,26.1,270.11 -6596,9,E07000035,1,52.2,138.01,26.1,150.06 -6922,9,E07000035,2,62.45,170.16,26.1,186.23 -7248,9,E07000035,3,68.97,199.62,26.1,218.38 -7574,9,E07000035,4,76.43,309.5,26.1,337.64 -7900,10,E07000035,0,51.26,340.38,18.44,371.3 -77,1,E08000017,1,51.27,92.19,26.1,114.68 -403,1,E08000017,2,58.72,109.33,26.1,141.49 -729,1,E08000017,3,63.38,121.11,26.1,162.93 -1055,1,E08000017,4,73.64,145.77,26.1,180.08 -1381,3,E08000017,1,46.6,82.54,26.1,93.26 -1707,3,E08000017,2,53.13,113.61,26.1,145.77 -2033,3,E08000017,3,56.86,105.05,26.1,114.68 -2359,3,E08000017,4,64.31,122.19,26.1,176.86 -2685,2,E08000017,0,52.28,232.2,18.44,319.44 -3011,4,E08000017,0,51.26,159.13,18.44,188.6 -3337,6,E08000017,0,52.28,189.79,18.44,206.28 -3663,8,E08000017,0,51.26,189.79,18.44,206.28 -4394,5,E08000017,1,51.27,92.19,26.1,99.69 -4548,7,E08000017,1,46.6,92.19,26.1,99.69 -4816,7,E08000017,2,53.13,110.39,26.1,120.05 -4874,5,E08000017,2,58.72,110.39,26.1,120.05 -5505,5,E08000017,3,63.38,126.48,26.1,138.27 -5852,7,E08000017,3,56.86,126.48,26.1,138.27 -6110,5,E08000017,4,73.64,172.58,26.1,187.58 -6208,7,E08000017,4,64.31,172.58,26.1,187.58 -6597,9,E08000017,1,51.27,115.24,26.1,124.6 -6923,9,E08000017,2,53.13,138.01,26.1,150.06 -7249,9,E08000017,3,63.38,158.09,26.1,172.84 -7575,9,E08000017,4,73.64,215.73,26.1,234.49 -7901,10,E08000017,0,52.28,237.24,18.44,257.84 -85,1,E06000059,1,49.41,108.27,26.1,141.49 -411,1,E06000059,2,55.93,122.19,26.1,145.77 -737,1,E06000059,3,62.45,142.56,26.1,162.93 -1063,1,E06000059,4,71.78,159.7,26.1,196.15 -1389,3,E06000059,1,47.54,90.03,26.1,212.24 -1715,3,E06000059,2,54.99,101.83,26.1,112.54 -2041,3,E06000059,3,62.45,110.39,26.1,127.56 -2367,3,E06000059,4,74.57,131.84,26.1,131.84 -2693,2,E06000059,0,54.33,228.68,18.44,354.8 -3019,4,E06000059,0,54.33,114.33,18.44,140.27 -3345,6,E06000059,0,54.33,398.42,18.44,434.96 -3671,8,E06000059,0,54.33,398.42,18.44,434.96 -3921,7,E06000059,1,47.54,136.13,26.1,148.99 -4205,5,E06000059,1,49.41,136.13,26.1,148.99 -4841,5,E06000059,2,55.93,172.58,26.1,187.58 -5118,7,E06000059,2,54.99,172.58,26.1,187.58 -5472,5,E06000059,3,62.45,211.17,26.1,230.44 -5698,7,E06000059,3,62.45,211.17,26.1,230.44 -6010,5,E06000059,4,71.78,362.28,26.1,395.52 -6410,7,E06000059,4,74.57,362.28,26.1,395.52 -6605,9,E06000059,1,49.41,170.16,26.1,186.23 -6931,9,E06000059,2,55.93,215.73,26.1,234.49 -7257,9,E06000059,3,62.45,263.95,26.1,288.07 -7583,9,E06000059,4,71.78,452.87,26.1,494.42 -7909,10,E06000059,0,54.33,498.02,18.44,543.71 -78,1,E07000108,1,57.79,124.33,26.1,177.93 -404,1,E07000108,2,71.78,147.91,26.1,188.66 -730,1,E07000108,3,82.02,162.93,26.1,205.81 -1056,1,E07000108,4,90.42,180.08,26.1,224.01 -1382,3,E07000108,1,52.2,116.83,26.1,160.78 -1708,3,E07000108,2,63.38,130.77,26.1,146.84 -2034,3,E07000108,3,68.97,151.13,26.1,187.58 -2360,3,E07000108,4,73.64,186.51,26.1,196.15 -2686,2,E07000108,0,61.49,265.21,18.44,340.65 -3012,4,E07000108,0,48.18,193.32,18.44,202.73 -3338,6,E07000108,0,61.49,264.04,18.44,287.62 -3664,8,E07000108,0,48.18,264.04,18.44,287.62 -3996,5,E07000108,1,57.79,106.12,26.1,115.76 -4063,7,E07000108,1,52.2,106.12,26.1,115.76 -4611,5,E07000108,2,71.78,143.62,26.1,156.49 -4758,7,E07000108,2,63.38,143.62,26.1,156.49 -5263,5,E07000108,3,82.02,172.58,26.1,187.58 -5363,7,E07000108,3,68.97,172.58,26.1,187.58 -5948,5,E07000108,4,90.42,240.09,26.1,261.54 -6052,7,E07000108,4,73.64,240.09,26.1,261.54 -6598,9,E07000108,1,57.79,132.65,26.1,144.7 -6924,9,E07000108,2,71.78,179.53,26.1,195.6 -7250,9,E07000108,3,82.02,215.73,26.1,234.49 -7576,9,E07000108,4,90.42,300.12,26.1,326.92 -7902,10,E07000108,0,61.49,330.05,18.44,359.53 -79,1,E08000027,1,53.13,99.69,26.1,125.4 -405,1,E08000027,2,58.72,117.9,26.1,138.27 -731,1,E08000027,3,69.9,133.98,26.1,161.86 -1057,1,E08000027,4,81.09,162.93,26.1,180.08 -1383,3,E08000027,1,46.6,88.96,26.1,98.62 -1709,3,E08000027,2,50.34,95.42,26.1,103.98 -2035,3,E08000027,3,60.59,105.05,26.1,121.11 -2361,3,E08000027,4,68.97,128.63,26.1,128.63 -2687,2,E08000027,0,38.95,242.82,18.44,378.37 -3013,4,E08000027,0,46.12,106.09,18.44,106.09 -3339,6,E08000027,0,38.95,213.35,18.44,233.38 -3665,8,E08000027,0,46.12,213.35,18.44,233.38 -4285,5,E08000027,1,53.13,98.62,26.1,108.27 -4506,7,E08000027,1,46.6,98.62,26.1,108.27 -4895,5,E08000027,2,58.72,121.11,26.1,131.84 -5191,7,E08000027,2,50.34,121.11,26.1,131.84 -5526,5,E08000027,3,69.9,143.62,26.1,156.49 -5782,7,E08000027,3,60.59,143.62,26.1,156.49 -6178,5,E08000027,4,81.09,194.01,26.1,212.24 -6443,7,E08000027,4,68.97,194.01,26.1,212.24 -6599,9,E08000027,1,53.13,123.26,26.1,135.33 -6925,9,E08000027,2,58.72,151.41,26.1,164.8 -7251,9,E08000027,3,69.9,179.53,26.1,195.6 -7577,9,E08000027,4,81.09,242.51,26.1,265.29 -7903,10,E08000027,0,38.95,266.69,18.44,291.74 -81,1,E09000009,1,66.17,146.84,26.1,199.38 -407,1,E09000009,2,78.29,158.63,26.1,194.01 -733,1,E09000009,3,84.82,168.29,26.1,228.29 -1059,1,E09000009,4,102.51,188.66,26.1,254.03 -1385,3,E09000009,1,58.72,120.05,26.1,147.91 -1711,3,E09000009,2,64.31,140.42,26.1,176.86 -2037,3,E09000009,3,71.78,160.78,26.1,202.58 -2363,3,E09000009,4,83.89,262.61,26.1,263.68 -2689,2,E09000009,0,69.7,313.55,18.44,497.44 -3015,4,E09000009,0,59.45,367.77,18.44,398.42 -3341,6,E09000009,0,69.7,674.26,18.44,735.54 -3667,8,E09000009,0,59.45,674.26,18.44,735.54 -3958,5,E09000009,1,66.17,240.09,26.1,262.61 -4172,7,E09000009,1,58.72,240.09,26.1,262.61 -4573,5,E09000009,2,78.29,319.42,26.1,348.36 -4673,7,E09000009,2,64.31,319.42,26.1,348.36 -5225,5,E09000009,3,84.82,363.36,26.1,396.59 -5325,7,E09000009,3,71.78,363.36,26.1,396.59 -5877,7,E09000009,4,83.89,614.19,26.1,668.85 -5910,5,E09000009,4,102.51,614.19,26.1,668.85 -6601,9,E09000009,1,66.17,300.12,26.1,328.26 -6927,9,E09000009,2,78.29,399.29,26.1,435.45 -7253,9,E09000009,3,84.82,454.21,26.1,495.75 -7579,9,E09000009,4,102.51,767.74,26.1,836.07 -7905,10,E09000009,0,69.7,842.81,18.44,919.43 -82,1,E07000009,1,54.99,120.05,26.1,150.06 -408,1,E07000009,2,65.24,143.62,26.1,169.36 -734,1,E07000009,3,71.78,157.56,26.1,182.22 -1060,1,E07000009,4,82.02,172.58,26.1,180.08 -1386,3,E07000009,1,50.34,100.76,26.1,132.91 -1712,3,E07000009,2,58.72,118.97,26.1,133.98 -2038,3,E07000009,3,64.31,131.84,26.1,144.7 -2364,3,E07000009,4,71.78,150.06,26.1,160.78 -2690,2,E07000009,0,35.87,223.96,18.44,418.45 -3016,4,E07000009,0,55.36,134.38,18.44,314.73 -3342,6,E07000009,0,35.87,338.29,18.44,368.95 -3668,8,E07000009,0,55.36,338.29,18.44,368.95 -4131,5,E07000009,1,54.99,115.76,26.1,125.4 -4248,7,E07000009,1,50.34,115.76,26.1,125.4 -4712,5,E07000009,2,65.24,143.62,26.1,156.49 -4974,7,E07000009,2,58.72,143.62,26.1,156.49 -5431,5,E07000009,3,71.78,183.29,26.1,200.45 -5617,7,E07000009,3,64.31,183.29,26.1,200.45 -6141,5,E07000009,4,82.02,307.63,26.1,335.49 -6279,7,E07000009,4,71.78,307.63,26.1,335.49 -6602,9,E07000009,1,54.99,144.7,26.1,156.77 -6928,9,E07000009,2,65.24,179.53,26.1,195.6 -7254,9,E07000009,3,71.78,229.13,26.1,250.54 -7580,9,E07000009,4,82.02,384.53,26.1,419.36 -7906,10,E07000009,0,35.87,422.87,18.44,461.19 -84,1,E07000040,1,49.41,108.27,26.1,141.49 -410,1,E07000040,2,55.93,122.19,26.1,145.77 -736,1,E07000040,3,62.45,142.56,26.1,162.93 -1062,1,E07000040,4,71.78,159.7,26.1,196.15 -1388,3,E07000040,1,47.54,90.03,26.1,212.24 -1714,3,E07000040,2,54.99,101.83,26.1,112.54 -2040,3,E07000040,3,62.45,110.39,26.1,127.56 -2366,3,E07000040,4,74.57,131.84,26.1,131.84 -2692,2,E07000040,0,54.33,228.68,18.44,354.8 -3018,4,E07000040,0,54.33,114.33,18.44,140.27 -3344,6,E07000040,0,54.33,312.38,18.44,340.65 -3670,8,E07000040,0,54.33,312.38,18.44,340.65 -3920,7,E07000040,1,47.54,115.76,26.1,125.4 -4204,5,E07000040,1,49.41,115.76,26.1,125.4 -4840,5,E07000040,2,55.93,148.99,26.1,161.86 -5117,7,E07000040,2,54.99,148.99,26.1,161.86 -5471,5,E07000040,3,62.45,183.29,26.1,200.45 -5697,7,E07000040,3,62.45,183.29,26.1,200.45 -6009,5,E07000040,4,71.78,284.04,26.1,309.78 -6409,7,E07000040,4,74.57,284.04,26.1,309.78 -6604,9,E07000040,1,49.41,144.7,26.1,156.77 -6930,9,E07000040,2,55.93,186.23,26.1,202.34 -7256,9,E07000040,3,62.45,229.13,26.1,250.54 -7582,9,E07000040,4,71.78,355.06,26.1,387.21 -7908,10,E07000040,0,54.33,390.47,18.44,425.82 -86,1,E07000085,1,57.79,124.33,26.1,177.93 -412,1,E07000085,2,71.78,147.91,26.1,188.66 -738,1,E07000085,3,82.02,162.93,26.1,205.81 -1064,1,E07000085,4,90.42,180.08,26.1,224.01 -1390,3,E07000085,1,52.2,116.83,26.1,160.78 -1716,3,E07000085,2,63.38,130.77,26.1,146.84 -2042,3,E07000085,3,68.97,151.13,26.1,187.58 -2368,3,E07000085,4,73.64,186.51,26.1,196.15 -2694,2,E07000085,0,61.49,265.21,18.44,340.65 -3020,4,E07000085,0,48.18,193.32,18.44,202.73 -3346,6,E07000085,0,61.49,449.11,18.44,489.16 -3672,8,E07000085,0,48.18,449.11,18.44,489.16 -3997,5,E07000085,1,57.79,138.27,26.1,150.06 -4064,7,E07000085,1,52.2,138.27,26.1,150.06 -4612,5,E07000085,2,71.78,182.22,26.1,199.38 -4759,7,E07000085,2,63.38,182.22,26.1,199.38 -5264,5,E07000085,3,82.02,228.29,26.1,247.6 -5364,7,E07000085,3,68.97,228.29,26.1,247.6 -5949,5,E07000085,4,90.42,408.38,26.1,444.82 -6053,7,E07000085,4,73.64,408.38,26.1,444.82 -6606,9,E07000085,1,57.79,172.84,26.1,187.57 -6932,9,E07000085,2,71.78,227.8,26.1,249.22 -7258,9,E07000085,3,82.02,285.39,26.1,309.5 -7584,9,E07000085,4,90.42,510.49,26.1,556.05 -7910,10,E07000085,0,61.49,561.4,18.44,611.47 -87,1,E07000242,1,54.99,120.05,26.1,150.06 -413,1,E07000242,2,65.24,143.62,26.1,169.36 -739,1,E07000242,3,71.78,157.56,26.1,182.22 -1065,1,E07000242,4,82.02,172.58,26.1,180.08 -1391,3,E07000242,1,50.34,100.76,26.1,132.91 -1717,3,E07000242,2,58.72,118.97,26.1,133.98 -2043,3,E07000242,3,64.31,131.84,26.1,144.7 -2369,3,E07000242,4,71.78,150.06,26.1,160.78 -2695,2,E07000242,0,35.87,223.96,18.44,418.45 -3021,4,E07000242,0,55.36,134.38,18.44,314.73 -3347,6,E07000242,0,35.87,437.32,18.44,476.22 -3673,8,E07000242,0,55.36,437.32,18.44,476.22 -4132,5,E07000242,1,54.99,155.41,26.1,169.36 -4249,7,E07000242,1,50.34,155.41,26.1,169.36 -4713,5,E07000242,2,65.24,194.01,26.1,212.24 -4975,7,E07000242,2,58.72,194.01,26.1,212.24 -5432,5,E07000242,3,71.78,272.26,26.1,296.91 -5618,7,E07000242,3,64.31,272.26,26.1,296.91 -6142,5,E07000242,4,82.02,397.66,26.1,433.04 -6280,7,E07000242,4,71.78,397.66,26.1,433.04 -6607,9,E07000242,1,54.99,194.27,26.1,211.69 -6933,9,E07000242,2,65.24,242.51,26.1,265.29 -7259,9,E07000242,3,71.78,340.33,26.1,371.13 -7585,9,E07000242,4,82.02,497.09,26.1,541.3 -7911,10,E07000242,0,35.87,546.66,18.44,595.28 -88,1,E07000137,1,52.2,100.76,26.1,123.26 -414,1,E07000137,2,62.45,115.76,26.1,130.77 -740,1,E07000137,3,68.97,127.56,26.1,139.34 -1066,1,E07000137,4,76.43,159.7,26.1,168.29 -1392,3,E07000137,1,46.6,91.12,26.1,108.27 -1718,3,E07000137,2,53.13,97.54,26.1,109.33 -2044,3,E07000137,3,58.72,105.05,26.1,120.05 -2370,3,E07000137,4,64.31,123.26,26.1,123.26 -2696,2,E07000137,0,51.26,238.1,18.44,357.17 -3022,4,E07000137,0,49.2,113.15,18.44,122.59 -3348,6,E07000137,0,51.26,176.82,18.44,193.32 -3674,8,E07000137,0,49.2,176.82,18.44,193.32 -4324,5,E07000137,1,52.2,87.89,26.1,95.42 -4424,7,E07000137,1,46.6,87.89,26.1,95.42 -5020,5,E07000137,2,62.45,110.39,26.1,120.05 -5160,7,E07000137,2,53.13,110.39,26.1,120.05 -5663,5,E07000137,3,68.97,126.48,26.1,139.34 -5821,7,E07000137,3,58.72,126.48,26.1,139.34 -6238,5,E07000137,4,76.43,160.78,26.1,175.78 -6482,7,E07000137,4,64.31,160.78,26.1,175.78 -6608,9,E07000137,1,52.2,109.88,26.1,119.25 -6934,9,E07000137,2,62.45,138.01,26.1,150.06 -7260,9,E07000137,3,68.97,158.09,26.1,174.17 -7586,9,E07000137,4,76.43,200.97,26.1,219.74 -7912,10,E07000137,0,51.26,221.02,18.44,241.66 -89,1,E06000061,1,52.2,100.76,26.1,123.26 -415,1,E06000061,2,62.45,115.76,26.1,130.77 -741,1,E06000061,3,68.97,127.56,26.1,139.34 -1067,1,E06000061,4,76.43,159.7,26.1,168.29 -1393,3,E06000061,1,46.6,91.12,26.1,108.27 -1719,3,E06000061,2,53.13,97.54,26.1,109.33 -2045,3,E06000061,3,58.72,105.05,26.1,120.05 -2371,3,E06000061,4,64.31,123.26,26.1,123.26 -2697,2,E06000061,0,51.26,238.1,18.44,357.17 -3023,4,E06000061,0,49.2,113.15,18.44,122.59 -3349,6,E06000061,0,51.26,275.83,18.44,300.58 -3675,8,E06000061,0,49.2,275.83,18.44,300.58 -4425,7,E06000061,1,46.6,98.62,26.1,108.27 -5021,5,E06000061,2,62.45,126.48,26.1,138.27 -5161,7,E06000061,2,53.13,126.48,26.1,138.27 -5664,5,E06000061,3,68.97,148.99,26.1,161.86 -5822,7,E06000061,3,58.72,148.99,26.1,161.86 -6239,5,E06000061,4,76.43,250.82,26.1,273.34 -6483,7,E06000061,4,64.31,250.82,26.1,273.34 -6609,9,E06000061,1,52.2,123.26,26.1,135.33 -6935,9,E06000061,2,62.45,158.09,26.1,172.84 -7261,9,E06000061,3,68.97,186.23,26.1,202.34 -7587,9,E06000061,4,76.43,313.51,26.1,341.67 -7913,10,E06000061,0,51.26,344.81,18.44,375.73 -90,1,E06000011,1,51.27,92.19,26.1,114.68 -416,1,E06000011,2,58.72,109.33,26.1,141.49 -742,1,E06000011,3,63.38,121.11,26.1,162.93 -1068,1,E06000011,4,73.64,145.77,26.1,180.08 -1394,3,E06000011,1,46.6,82.54,26.1,93.26 -1720,3,E06000011,2,53.13,113.61,26.1,145.77 -2046,3,E06000011,3,56.86,105.05,26.1,114.68 -2372,3,E06000011,4,64.31,122.19,26.1,176.86 -2698,2,E06000011,0,52.28,232.2,18.44,319.44 -3024,4,E06000011,0,51.26,159.13,18.44,188.6 -3350,6,E06000011,0,52.28,207.45,18.44,226.32 -3676,8,E06000011,0,51.26,207.45,18.44,226.32 -4395,5,E06000011,1,51.27,90.03,26.1,97.54 -4549,7,E06000011,1,46.6,90.03,26.1,97.54 -4817,7,E06000011,2,53.13,113.61,26.1,123.26 -4875,5,E06000011,2,58.72,113.61,26.1,123.26 -5506,5,E06000011,3,63.38,136.13,26.1,148.99 -5853,7,E06000011,3,56.86,136.13,26.1,148.99 -6111,5,E06000011,4,73.64,188.66,26.1,205.81 -6209,7,E06000011,4,64.31,188.66,26.1,205.81 -6610,9,E06000011,1,51.27,112.54,26.1,121.95 -6936,9,E06000011,2,53.13,142.02,26.1,154.09 -7262,9,E06000011,3,63.38,170.16,26.1,186.23 -7588,9,E06000011,4,73.64,235.82,26.1,257.26 -7914,10,E06000011,0,52.28,259.31,18.44,282.91 -91,1,E07000193,1,53.13,99.69,26.1,125.4 -417,1,E07000193,2,58.72,117.9,26.1,138.27 -743,1,E07000193,3,69.9,133.98,26.1,161.86 -1069,1,E07000193,4,81.09,162.93,26.1,180.08 -1395,3,E07000193,1,46.6,88.96,26.1,98.62 -1721,3,E07000193,2,50.34,95.42,26.1,103.98 -2047,3,E07000193,3,60.59,105.05,26.1,121.11 -2373,3,E07000193,4,68.97,128.63,26.1,128.63 -2699,2,E07000193,0,38.95,242.82,18.44,378.37 -3025,4,E07000193,0,46.12,106.09,18.44,106.09 -3351,6,E07000193,0,38.95,226.32,18.44,246.36 -3677,8,E07000193,0,46.12,226.32,18.44,246.36 -4286,5,E07000193,1,53.13,92.19,26.1,100.76 -4507,7,E07000193,1,46.6,92.19,26.1,100.76 -4896,5,E07000193,2,58.72,115.76,26.1,125.4 -5192,7,E07000193,2,50.34,115.76,26.1,125.4 -5527,5,E07000193,3,69.9,148.99,26.1,161.86 -5783,7,E07000193,3,60.59,148.99,26.1,161.86 -6179,5,E07000193,4,81.09,205.81,26.1,224.01 -6444,7,E07000193,4,68.97,205.81,26.1,224.01 -6611,9,E07000193,1,53.13,115.24,26.1,125.95 -6937,9,E07000193,2,58.72,144.7,26.1,156.77 -7263,9,E07000193,3,69.9,186.23,26.1,202.34 -7589,9,E07000193,4,81.09,257.26,26.1,280.03 -7915,10,E07000193,0,38.95,282.91,18.44,307.95 -264,1,E07000244,1,54.99,120.05,26.1,150.06 -590,1,E07000244,2,65.24,143.62,26.1,169.36 -916,1,E07000244,3,71.78,157.56,26.1,182.22 -1242,1,E07000244,4,82.02,172.58,26.1,180.08 -1568,3,E07000244,1,50.34,100.76,26.1,132.91 -1894,3,E07000244,2,58.72,118.97,26.1,133.98 -2220,3,E07000244,3,64.31,131.84,26.1,144.7 -2546,3,E07000244,4,71.78,150.06,26.1,160.78 -2872,2,E07000244,0,35.87,223.96,18.44,418.45 -3198,4,E07000244,0,55.36,134.38,18.44,314.73 -3524,6,E07000244,0,35.87,252.25,18.44,273.47 -3850,8,E07000244,0,55.36,252.25,18.44,273.47 -4156,5,E07000244,1,54.99,106.12,26.1,115.76 -4273,7,E07000244,1,50.34,106.12,26.1,115.76 -4737,5,E07000244,2,65.24,126.48,26.1,138.27 -4999,7,E07000244,2,58.72,126.48,26.1,138.27 -5456,5,E07000244,3,71.78,155.41,26.1,169.36 -5642,7,E07000244,3,64.31,155.41,26.1,169.36 -6166,5,E07000244,4,82.02,229.37,26.1,248.67 -6304,7,E07000244,4,71.78,229.37,26.1,248.67 -6784,9,E07000244,1,54.99,132.65,26.1,144.7 -7110,9,E07000244,2,65.24,158.09,26.1,172.84 -7436,9,E07000244,3,71.78,194.27,26.1,211.69 -7762,9,E07000244,4,82.02,286.72,26.1,310.84 -8088,10,E07000244,0,35.87,315.32,18.44,341.84 -92,1,E07000061,1,57.79,124.33,26.1,177.93 -418,1,E07000061,2,71.78,147.91,26.1,188.66 -744,1,E07000061,3,82.02,162.93,26.1,205.81 -1070,1,E07000061,4,90.42,180.08,26.1,224.01 -1396,3,E07000061,1,52.2,116.83,26.1,160.78 -1722,3,E07000061,2,63.38,130.77,26.1,146.84 -2048,3,E07000061,3,68.97,151.13,26.1,187.58 -2374,3,E07000061,4,73.64,186.51,26.1,196.15 -2700,2,E07000061,0,61.49,265.21,18.44,340.65 -3026,4,E07000061,0,48.18,193.32,18.44,202.73 -3352,6,E07000061,0,61.49,524.54,18.44,571.71 -3678,8,E07000061,0,48.18,524.54,18.44,571.71 -3998,5,E07000061,1,57.79,131.84,26.1,144.7 -4065,7,E07000061,1,52.2,131.84,26.1,144.7 -4613,5,E07000061,2,71.78,172.58,26.1,187.58 -4760,7,E07000061,2,63.38,172.58,26.1,187.58 -5265,5,E07000061,3,82.02,211.17,26.1,230.44 -5365,7,E07000061,3,68.97,211.17,26.1,230.44 -5950,5,E07000061,4,90.42,476.98,26.1,519.86 -6054,7,E07000061,4,73.64,476.98,26.1,519.86 -6612,9,E07000061,1,57.79,164.8,26.1,180.87 -6938,9,E07000061,2,71.78,215.73,26.1,234.49 -7264,9,E07000061,3,82.02,263.95,26.1,288.07 -7590,9,E07000061,4,90.42,596.23,26.1,649.84 -7916,10,E07000061,0,61.49,655.68,18.44,714.62 -93,1,E07000086,1,57.79,124.33,26.1,177.93 -419,1,E07000086,2,71.78,147.91,26.1,188.66 -745,1,E07000086,3,82.02,162.93,26.1,205.81 -1071,1,E07000086,4,90.42,180.08,26.1,224.01 -1397,3,E07000086,1,52.2,116.83,26.1,160.78 -1723,3,E07000086,2,63.38,130.77,26.1,146.84 -2049,3,E07000086,3,68.97,151.13,26.1,187.58 -2375,3,E07000086,4,73.64,186.51,26.1,196.15 -2701,2,E07000086,0,61.49,265.21,18.44,340.65 -3027,4,E07000086,0,48.18,193.32,18.44,202.73 -3353,6,E07000086,0,61.49,339.47,18.44,371.29 -3679,8,E07000086,0,48.18,339.47,18.44,371.29 -3999,5,E07000086,1,57.79,136.13,26.1,148.99 -4066,7,E07000086,1,52.2,136.13,26.1,148.99 -4614,5,E07000086,2,71.78,166.14,26.1,181.15 -4761,7,E07000086,2,63.38,166.14,26.1,181.15 -5266,5,E07000086,3,82.02,204.74,26.1,222.95 -5366,7,E07000086,3,68.97,204.74,26.1,222.95 -5951,5,E07000086,4,90.42,309.78,26.1,337.63 -6055,7,E07000086,4,73.64,309.78,26.1,337.63 -6613,9,E07000086,1,57.79,170.16,26.1,186.23 -6939,9,E07000086,2,71.78,207.68,26.1,226.44 -7265,9,E07000086,3,82.02,255.92,26.1,278.69 -7591,9,E07000086,4,90.42,387.21,26.1,422.05 -7917,10,E07000086,0,61.49,424.32,18.44,464.12 -94,1,E07000030,1,52.2,94.33,26.1,117.9 -420,1,E07000030,2,59.66,108.27,26.1,136.13 -746,1,E07000030,3,66.17,121.11,26.1,146.84 -1072,1,E07000030,4,72.71,135.06,26.1,160.78 -1398,3,E07000030,1,43.8,86.81,26.1,101.83 -1724,3,E07000030,2,54.06,95.42,26.1,114.68 -2050,3,E07000030,3,58.72,106.12,26.1,125.4 -2376,3,E07000030,4,55.93,120.05,26.1,135.06 -2702,2,E07000030,0,55.36,236.93,18.44,338.29 -3028,4,E07000030,0,32.8,464.43,18.44,592.92 -3354,6,E07000030,0,55.36,226.32,18.44,246.36 -3680,8,E07000030,0,32.8,226.32,18.44,246.36 -4364,5,E07000030,1,52.2,101.83,26.1,111.47 -4476,7,E07000030,1,43.8,101.83,26.1,111.47 -4934,5,E07000030,2,59.66,121.11,26.1,131.84 -5072,7,E07000030,2,54.06,121.11,26.1,131.84 -5577,5,E07000030,3,66.17,147.91,26.1,159.7 -5752,7,E07000030,3,58.72,147.91,26.1,159.7 -6325,5,E07000030,4,72.71,205.81,26.1,224.01 -6376,7,E07000030,4,55.93,205.81,26.1,224.01 -6614,9,E07000030,1,52.2,127.29,26.1,139.34 -6940,9,E07000030,2,59.66,151.41,26.1,164.8 -7266,9,E07000030,3,66.17,184.89,26.1,199.62 -7592,9,E07000030,4,72.71,257.26,26.1,280.03 -7918,10,E07000030,0,55.36,282.91,18.44,307.95 -95,1,E07000207,1,57.79,124.33,26.1,177.93 -421,1,E07000207,2,71.78,147.91,26.1,188.66 -747,1,E07000207,3,82.02,162.93,26.1,205.81 -1073,1,E07000207,4,90.42,180.08,26.1,224.01 -1399,3,E07000207,1,52.2,116.83,26.1,160.78 -1725,3,E07000207,2,63.38,130.77,26.1,146.84 -2051,3,E07000207,3,68.97,151.13,26.1,187.58 -2377,3,E07000207,4,73.64,186.51,26.1,196.15 -2703,2,E07000207,0,61.49,265.21,18.44,340.65 -3029,4,E07000207,0,48.18,193.32,18.44,202.73 -3355,6,E07000207,0,61.49,834.56,18.44,910 -3681,8,E07000207,0,48.18,834.56,18.44,910 -4000,5,E07000207,1,57.79,188.66,26.1,205.81 -4067,7,E07000207,1,52.2,188.66,26.1,205.81 -4615,5,E07000207,2,71.78,273.34,26.1,297.99 -4762,7,E07000207,2,63.38,273.34,26.1,297.99 -5267,5,E07000207,3,82.02,330.14,26.1,360.15 -5367,7,E07000207,3,68.97,330.14,26.1,360.15 -5952,5,E07000207,4,90.42,758.89,26.1,827.48 -6056,7,E07000207,4,73.64,758.89,26.1,827.48 -6615,9,E07000207,1,57.79,235.82,26.1,257.26 -6941,9,E07000207,2,71.78,341.67,26.1,372.48 -7267,9,E07000207,3,82.02,412.67,26.1,450.18 -7593,9,E07000207,4,90.42,948.61,26.1,1034.37 -7919,10,E07000207,0,61.49,1043.21,18.44,1137.52 -96,1,E09000010,1,66.17,146.84,26.1,199.38 -422,1,E09000010,2,78.29,158.63,26.1,194.01 -748,1,E09000010,3,84.82,168.29,26.1,228.29 -1074,1,E09000010,4,102.51,188.66,26.1,254.03 -1400,3,E09000010,1,58.72,120.05,26.1,147.91 -1726,3,E09000010,2,64.31,140.42,26.1,176.86 -2052,3,E09000010,3,71.78,160.78,26.1,202.58 -2378,3,E09000010,4,83.89,262.61,26.1,263.68 -2704,2,E09000010,0,69.7,313.55,18.44,497.44 -3030,4,E09000010,0,59.45,367.77,18.44,398.42 -3356,6,E09000010,0,69.7,473.86,18.44,517.47 -3682,8,E09000010,0,59.45,473.86,18.44,517.47 -3959,5,E09000010,1,66.17,188.66,26.1,205.81 -4173,7,E09000010,1,58.72,188.66,26.1,205.81 -4574,5,E09000010,2,78.29,262.61,26.1,285.11 -4674,7,E09000010,2,64.31,262.61,26.1,285.11 -5226,5,E09000010,3,84.82,307.63,26.1,335.49 -5326,7,E09000010,3,71.78,307.63,26.1,335.49 -5878,7,E09000010,4,83.89,430.9,26.1,470.55 -5911,5,E09000010,4,102.51,430.9,26.1,470.55 -6616,9,E09000010,1,66.17,235.82,26.1,257.26 -6942,9,E09000010,2,78.29,328.26,26.1,356.4 -7268,9,E09000010,3,84.82,384.53,26.1,419.36 -7594,9,E09000010,4,102.51,538.61,26.1,588.19 -7920,10,E09000010,0,69.7,592.32,18.44,646.84 -97,1,E07000072,1,54.99,120.05,26.1,150.06 -423,1,E07000072,2,65.24,143.62,26.1,169.36 -749,1,E07000072,3,71.78,157.56,26.1,182.22 -1075,1,E07000072,4,82.02,172.58,26.1,180.08 -1401,3,E07000072,1,50.34,100.76,26.1,132.91 -1727,3,E07000072,2,58.72,118.97,26.1,133.98 -2053,3,E07000072,3,64.31,131.84,26.1,144.7 -2379,3,E07000072,4,71.78,150.06,26.1,160.78 -2705,2,E07000072,0,35.87,223.96,18.44,418.45 -3031,4,E07000072,0,55.36,134.38,18.44,314.73 -3357,6,E07000072,0,35.87,549.31,18.44,598.8 -3683,8,E07000072,0,55.36,549.31,18.44,598.8 -4133,5,E07000072,1,54.99,172.58,26.1,187.58 -4250,7,E07000072,1,50.34,172.58,26.1,187.58 -4714,5,E07000072,2,65.24,229.37,26.1,248.67 -4976,7,E07000072,2,58.72,229.37,26.1,248.67 -5433,5,E07000072,3,71.78,295.83,26.1,322.64 -5619,7,E07000072,3,64.31,295.83,26.1,322.64 -6143,5,E07000072,4,82.02,499.48,26.1,544.51 -6281,7,E07000072,4,71.78,499.48,26.1,544.51 -6617,9,E07000072,1,54.99,215.73,26.1,234.49 -6943,9,E07000072,2,65.24,286.72,26.1,310.84 -7269,9,E07000072,3,71.78,369.81,26.1,403.3 -7595,9,E07000072,4,82.02,624.36,26.1,680.64 -7921,10,E07000072,0,35.87,686.61,18.44,748.51 -98,1,E07000208,1,57.79,124.33,26.1,177.93 -424,1,E07000208,2,71.78,147.91,26.1,188.66 -750,1,E07000208,3,82.02,162.93,26.1,205.81 -1076,1,E07000208,4,90.42,180.08,26.1,224.01 -1402,3,E07000208,1,52.2,116.83,26.1,160.78 -1728,3,E07000208,2,63.38,130.77,26.1,146.84 -2054,3,E07000208,3,68.97,151.13,26.1,187.58 -2380,3,E07000208,4,73.64,186.51,26.1,196.15 -2706,2,E07000208,0,61.49,265.21,18.44,340.65 -3032,4,E07000208,0,48.18,193.32,18.44,202.73 -3358,6,E07000208,0,61.49,581.15,18.44,633 -3684,8,E07000208,0,48.18,581.15,18.44,633 -4001,5,E07000208,1,57.79,188.66,26.1,205.81 -4068,7,E07000208,1,52.2,188.66,26.1,205.81 -4616,5,E07000208,2,71.78,250.82,26.1,273.34 -4763,7,E07000208,2,63.38,250.82,26.1,273.34 -5268,5,E07000208,3,82.02,340.85,26.1,371.94 -5368,7,E07000208,3,68.97,340.85,26.1,371.94 -5953,5,E07000208,4,90.42,528.44,26.1,575.6 -6057,7,E07000208,4,73.64,528.44,26.1,575.6 -6618,9,E07000208,1,57.79,235.82,26.1,257.26 -6944,9,E07000208,2,71.78,313.51,26.1,341.67 -7270,9,E07000208,3,82.02,426.06,26.1,464.91 -7596,9,E07000208,4,90.42,660.55,26.1,719.49 -7922,10,E07000208,0,61.49,726.41,18.44,791.22 -99,1,E07000036,1,52.2,100.76,26.1,123.26 -425,1,E07000036,2,62.45,115.76,26.1,130.77 -751,1,E07000036,3,68.97,127.56,26.1,139.34 -1077,1,E07000036,4,76.43,159.7,26.1,168.29 -1403,3,E07000036,1,46.6,91.12,26.1,108.27 -1729,3,E07000036,2,53.13,97.54,26.1,109.33 -2055,3,E07000036,3,58.72,105.05,26.1,120.05 -2381,3,E07000036,4,64.31,123.26,26.1,123.26 -2707,2,E07000036,0,51.26,238.1,18.44,357.17 -3033,4,E07000036,0,49.2,113.15,18.44,122.59 -3359,6,E07000036,0,51.26,226.32,18.44,246.36 -3685,8,E07000036,0,49.2,226.32,18.44,246.36 -4326,5,E07000036,1,52.2,92.19,26.1,99.69 -4426,7,E07000036,1,46.6,92.19,26.1,99.69 -5022,5,E07000036,2,62.45,114.68,26.1,124.33 -5162,7,E07000036,2,53.13,114.68,26.1,124.33 -5665,5,E07000036,3,68.97,131.84,26.1,144.7 -5823,7,E07000036,3,58.72,131.84,26.1,144.7 -6240,5,E07000036,4,76.43,205.81,26.1,224.01 -6484,7,E07000036,4,64.31,205.81,26.1,224.01 -6619,9,E07000036,1,52.2,115.24,26.1,124.6 -6945,9,E07000036,2,62.45,143.37,26.1,155.41 -7271,9,E07000036,3,68.97,164.8,26.1,180.87 -7597,9,E07000036,4,76.43,257.26,26.1,280.03 -7923,10,E07000036,0,51.26,282.91,18.44,307.95 -100,1,E07000041,1,49.41,108.27,26.1,141.49 -426,1,E07000041,2,55.93,122.19,26.1,145.77 -752,1,E07000041,3,62.45,142.56,26.1,162.93 -1078,1,E07000041,4,71.78,159.7,26.1,196.15 -1404,3,E07000041,1,47.54,90.03,26.1,212.24 -1730,3,E07000041,2,54.99,101.83,26.1,112.54 -2056,3,E07000041,3,62.45,110.39,26.1,127.56 -2382,3,E07000041,4,74.57,131.84,26.1,131.84 -2708,2,E07000041,0,54.33,228.68,18.44,354.8 -3034,4,E07000041,0,54.33,114.33,18.44,140.27 -3360,6,E07000041,0,54.33,535.15,18.44,584.67 -3686,8,E07000041,0,54.33,535.15,18.44,584.67 -3922,7,E07000041,1,47.54,136.13,26.1,148.99 -4206,5,E07000041,1,49.41,136.13,26.1,148.99 -4842,5,E07000041,2,55.93,166.14,26.1,181.15 -5119,7,E07000041,2,54.99,166.14,26.1,181.15 -5473,5,E07000041,3,62.45,205.81,26.1,222.95 -5699,7,E07000041,3,62.45,205.81,26.1,222.95 -6011,5,E07000041,4,71.78,486.62,26.1,531.67 -6411,7,E07000041,4,74.57,486.62,26.1,531.67 -6620,9,E07000041,1,49.41,170.16,26.1,186.23 -6946,9,E07000041,2,55.93,207.68,26.1,226.44 -7272,9,E07000041,3,62.45,257.26,26.1,278.69 -7598,9,E07000041,4,71.78,608.29,26.1,664.55 -7924,10,E07000041,0,54.33,668.96,18.44,730.84 -101,1,E07000087,1,57.79,124.33,26.1,177.93 -427,1,E07000087,2,71.78,147.91,26.1,188.66 -753,1,E07000087,3,82.02,162.93,26.1,205.81 -1079,1,E07000087,4,90.42,180.08,26.1,224.01 -1405,3,E07000087,1,52.2,116.83,26.1,160.78 -1731,3,E07000087,2,63.38,130.77,26.1,146.84 -2057,3,E07000087,3,68.97,151.13,26.1,187.58 -2383,3,E07000087,4,73.64,186.51,26.1,196.15 -2709,2,E07000087,0,61.49,265.21,18.44,340.65 -3035,4,E07000087,0,48.18,193.32,18.44,202.73 -3361,6,E07000087,0,61.49,350.07,18.44,380.74 -3687,8,E07000087,0,48.18,350.07,18.44,380.74 -4002,5,E07000087,1,57.79,136.13,26.1,148.99 -4069,7,E07000087,1,52.2,136.13,26.1,148.99 -4617,5,E07000087,2,71.78,166.14,26.1,181.15 -4764,7,E07000087,2,63.38,166.14,26.1,181.15 -5269,5,E07000087,3,82.02,204.74,26.1,222.95 -5369,7,E07000087,3,68.97,204.74,26.1,222.95 -5954,5,E07000087,4,90.42,318.35,26.1,346.22 -6058,7,E07000087,4,73.64,318.35,26.1,346.22 -6621,9,E07000087,1,57.79,170.16,26.1,186.23 -6947,9,E07000087,2,71.78,207.68,26.1,226.44 -7273,9,E07000087,3,82.02,255.92,26.1,278.69 -7599,9,E07000087,4,90.42,397.93,26.1,432.75 -7925,10,E07000087,0,61.49,437.59,18.44,475.94 -102,1,E07000010,1,54.99,120.05,26.1,150.06 -428,1,E07000010,2,65.24,143.62,26.1,169.36 -754,1,E07000010,3,71.78,157.56,26.1,182.22 -1080,1,E07000010,4,82.02,172.58,26.1,180.08 -1406,3,E07000010,1,50.34,100.76,26.1,132.91 -1732,3,E07000010,2,58.72,118.97,26.1,133.98 -2058,3,E07000010,3,64.31,131.84,26.1,144.7 -2384,3,E07000010,4,71.78,150.06,26.1,160.78 -2710,2,E07000010,0,35.87,223.96,18.44,418.45 -3036,4,E07000010,0,55.36,134.38,18.44,314.73 -3362,6,E07000010,0,35.87,213.35,18.44,233.38 -3688,8,E07000010,0,55.36,213.35,18.44,233.38 -4134,5,E07000010,1,54.99,96.49,26.1,105.05 -4251,7,E07000010,1,50.34,96.49,26.1,105.05 -4715,5,E07000010,2,65.24,126.48,26.1,138.27 -4977,7,E07000010,2,58.72,126.48,26.1,138.27 -5434,5,E07000010,3,71.78,148.99,26.1,161.86 -5620,7,E07000010,3,64.31,148.99,26.1,161.86 -6144,5,E07000010,4,82.02,194.01,26.1,212.24 -6282,7,E07000010,4,71.78,194.01,26.1,212.24 -6622,9,E07000010,1,54.99,120.59,26.1,131.29 -6948,9,E07000010,2,65.24,158.09,26.1,172.84 -7274,9,E07000010,3,71.78,186.23,26.1,202.34 -7600,9,E07000010,4,82.02,242.51,26.1,265.29 -7926,10,E07000010,0,35.87,266.69,18.44,291.74 -104,1,E07000080,1,49.41,108.27,26.1,141.49 -430,1,E07000080,2,55.93,122.19,26.1,145.77 -756,1,E07000080,3,62.45,142.56,26.1,162.93 -1082,1,E07000080,4,71.78,159.7,26.1,196.15 -1408,3,E07000080,1,47.54,90.03,26.1,212.24 -1734,3,E07000080,2,54.99,101.83,26.1,112.54 -2060,3,E07000080,3,62.45,110.39,26.1,127.56 -2386,3,E07000080,4,74.57,131.84,26.1,131.84 -2712,2,E07000080,0,54.33,228.68,18.44,354.8 -3038,4,E07000080,0,54.33,114.33,18.44,140.27 -3364,6,E07000080,0,54.33,226.32,18.44,246.36 -3690,8,E07000080,0,54.33,226.32,18.44,246.36 -3923,7,E07000080,1,47.54,98.62,26.1,108.27 -4207,5,E07000080,1,49.41,98.62,26.1,108.27 -4843,5,E07000080,2,55.93,127.56,26.1,139.34 -5120,7,E07000080,2,54.99,127.56,26.1,139.34 -5474,5,E07000080,3,62.45,148.99,26.1,161.86 -5700,7,E07000080,3,62.45,148.99,26.1,161.86 -6012,5,E07000080,4,71.78,205.81,26.1,224.01 -6412,7,E07000080,4,74.57,205.81,26.1,224.01 -6624,9,E07000080,1,49.41,123.26,26.1,135.33 -6950,9,E07000080,2,55.93,159.44,26.1,174.17 -7276,9,E07000080,3,62.45,186.23,26.1,202.34 -7602,9,E07000080,4,71.78,257.26,26.1,280.03 -7928,10,E07000080,0,54.33,282.91,18.44,307.95 -105,1,E07000119,1,52.2,94.33,26.1,117.9 -431,1,E07000119,2,59.66,108.27,26.1,136.13 -757,1,E07000119,3,66.17,121.11,26.1,146.84 -1083,1,E07000119,4,72.71,135.06,26.1,160.78 -1409,3,E07000119,1,43.8,86.81,26.1,101.83 -1735,3,E07000119,2,54.06,95.42,26.1,114.68 -2061,3,E07000119,3,58.72,106.12,26.1,125.4 -2387,3,E07000119,4,55.93,120.05,26.1,135.06 -2713,2,E07000119,0,55.36,236.93,18.44,338.29 -3039,4,E07000119,0,32.8,464.43,18.44,592.92 -3365,6,E07000119,0,55.36,275.83,18.44,300.58 -3691,8,E07000119,0,32.8,275.83,18.44,300.58 -4365,5,E07000119,1,52.2,103.98,26.1,113.61 -4477,7,E07000119,1,43.8,103.98,26.1,113.61 -4935,5,E07000119,2,59.66,138.27,26.1,150.06 -5073,7,E07000119,2,54.06,138.27,26.1,150.06 -5578,5,E07000119,3,66.17,172.58,26.1,187.58 -5753,7,E07000119,3,58.72,172.58,26.1,187.58 -6326,5,E07000119,4,72.71,250.82,26.1,273.34 -6377,7,E07000119,4,55.93,250.82,26.1,273.34 -6625,9,E07000119,1,52.2,129.97,26.1,142.02 -6951,9,E07000119,2,59.66,172.84,26.1,187.57 -7277,9,E07000119,3,66.17,215.73,26.1,234.49 -7603,9,E07000119,4,72.71,313.51,26.1,341.67 -7929,10,E07000119,0,55.36,344.81,18.44,375.73 -106,1,E08000037,1,51.27,88.96,26.1,98.62 -432,1,E08000037,2,57.79,102.91,26.1,121.11 -758,1,E08000037,3,61.52,114.68,26.1,160.78 -1084,1,E08000037,4,70.84,128.63,26.1,140.42 -1410,3,E08000037,1,42.87,100.76,26.1,106.12 -1736,3,E08000037,2,50.34,91.12,26.1,112.54 -2062,3,E08000037,3,54.06,106.12,26.1,125.4 -2388,3,E08000037,4,56.86,116.83,26.1,121.11 -2714,2,E08000037,0,55.36,234.56,18.44,337.12 -3040,4,E08000037,0,47.15,251.08,18.44,285.25 -3366,6,E08000037,0,55.36,213.35,18.44,233.38 -3692,8,E08000037,0,47.15,213.35,18.44,233.38 -4453,7,E08000037,1,42.87,114.68,26.1,124.33 -4534,5,E08000037,1,51.27,114.68,26.1,124.33 -5049,5,E08000037,2,57.79,121.11,26.1,131.84 -5100,7,E08000037,2,50.34,121.11,26.1,131.84 -5554,5,E08000037,3,61.52,143.62,26.1,156.49 -5729,7,E08000037,3,54.06,143.62,26.1,156.49 -6353,5,E08000037,4,70.84,194.01,26.1,212.24 -6511,7,E08000037,4,56.86,194.01,26.1,212.24 -6626,9,E08000037,1,42.87,143.37,26.1,155.41 -6952,9,E08000037,2,57.79,151.41,26.1,164.8 -7278,9,E08000037,3,61.52,179.53,26.1,195.6 -7604,9,E08000037,4,70.84,242.51,26.1,265.29 -7930,10,E08000037,0,55.36,266.69,18.44,291.74 -107,1,E07000173,1,52.2,100.76,26.1,123.26 -433,1,E07000173,2,62.45,115.76,26.1,130.77 -759,1,E07000173,3,68.97,127.56,26.1,139.34 -1085,1,E07000173,4,76.43,159.7,26.1,168.29 -1411,3,E07000173,1,46.6,91.12,26.1,108.27 -1737,3,E07000173,2,53.13,97.54,26.1,109.33 -2063,3,E07000173,3,58.72,105.05,26.1,120.05 -2389,3,E07000173,4,64.31,123.26,26.1,123.26 -2715,2,E07000173,0,51.26,238.1,18.44,357.17 -3041,4,E07000173,0,49.2,113.15,18.44,122.59 -3367,6,E07000173,0,51.26,225.15,18.44,245.18 -3693,8,E07000173,0,49.2,225.15,18.44,245.18 -4327,5,E07000173,1,52.2,103.98,26.1,113.61 -4427,7,E07000173,1,46.6,103.98,26.1,113.61 -5023,5,E07000173,2,62.45,121.11,26.1,131.84 -5163,7,E07000173,2,53.13,121.11,26.1,131.84 -5666,5,E07000173,3,68.97,147.91,26.1,159.7 -5824,7,E07000173,3,58.72,147.91,26.1,159.7 -6241,5,E07000173,4,76.43,204.74,26.1,222.95 -6485,7,E07000173,4,64.31,204.74,26.1,222.95 -6627,9,E07000173,1,52.2,129.97,26.1,142.02 -6953,9,E07000173,2,62.45,151.41,26.1,164.8 -7279,9,E07000173,3,68.97,184.89,26.1,199.62 -7605,9,E07000173,4,76.43,255.92,26.1,278.69 -7931,10,E07000173,0,51.26,281.43,18.44,306.45 -108,1,E07000081,1,49.41,108.27,26.1,141.49 -434,1,E07000081,2,55.93,122.19,26.1,145.77 -760,1,E07000081,3,62.45,142.56,26.1,162.93 -1086,1,E07000081,4,71.78,159.7,26.1,196.15 -1412,3,E07000081,1,47.54,90.03,26.1,212.24 -1738,3,E07000081,2,54.99,101.83,26.1,112.54 -2064,3,E07000081,3,62.45,110.39,26.1,127.56 -2390,3,E07000081,4,74.57,131.84,26.1,131.84 -2716,2,E07000081,0,54.33,228.68,18.44,354.8 -3042,4,E07000081,0,54.33,114.33,18.44,140.27 -3368,6,E07000081,0,54.33,275.83,18.44,300.58 -3694,8,E07000081,0,54.33,275.83,18.44,300.58 -3924,7,E07000081,1,47.54,110.39,26.1,120.05 -4208,5,E07000081,1,49.41,110.39,26.1,120.05 -4844,5,E07000081,2,55.93,131.84,26.1,144.7 -5121,7,E07000081,2,54.99,131.84,26.1,144.7 -5475,5,E07000081,3,62.45,166.14,26.1,181.15 -5701,7,E07000081,3,62.45,166.14,26.1,181.15 -6013,5,E07000081,4,71.78,250.82,26.1,273.34 -6413,7,E07000081,4,74.57,250.82,26.1,273.34 -6628,9,E07000081,1,49.41,138.01,26.1,150.06 -6954,9,E07000081,2,55.93,164.8,26.1,180.87 -7280,9,E07000081,3,62.45,207.68,26.1,226.44 -7606,9,E07000081,4,71.78,313.51,26.1,341.67 -7932,10,E07000081,0,54.33,344.81,18.44,375.73 -109,1,E07000088,1,57.79,124.33,26.1,177.93 -435,1,E07000088,2,71.78,147.91,26.1,188.66 -761,1,E07000088,3,82.02,162.93,26.1,205.81 -1087,1,E07000088,4,90.42,180.08,26.1,224.01 -1413,3,E07000088,1,52.2,116.83,26.1,160.78 -1739,3,E07000088,2,63.38,130.77,26.1,146.84 -2065,3,E07000088,3,68.97,151.13,26.1,187.58 -2391,3,E07000088,4,73.64,186.51,26.1,196.15 -2717,2,E07000088,0,61.49,265.21,18.44,340.65 -3043,4,E07000088,0,48.18,193.32,18.44,202.73 -3369,6,E07000088,0,61.49,312.38,18.44,340.65 -3695,8,E07000088,0,48.18,312.38,18.44,340.65 -4003,5,E07000088,1,57.79,126.48,26.1,138.27 -4070,7,E07000088,1,52.2,126.48,26.1,138.27 -4618,5,E07000088,2,71.78,148.99,26.1,161.86 -4765,7,E07000088,2,63.38,148.99,26.1,161.86 -5270,5,E07000088,3,82.02,177.93,26.1,192.94 -5370,7,E07000088,3,68.97,177.93,26.1,192.94 -5955,5,E07000088,4,90.42,284.04,26.1,309.78 -6059,7,E07000088,4,73.64,284.04,26.1,309.78 -6629,9,E07000088,1,57.79,158.09,26.1,172.84 -6955,9,E07000088,2,71.78,186.23,26.1,202.34 -7281,9,E07000088,3,82.02,222.43,26.1,241.18 -7607,9,E07000088,4,90.42,355.06,26.1,387.21 -7933,10,E07000088,0,61.49,390.47,18.44,425.82 -110,1,E07000109,1,57.79,124.33,26.1,177.93 -436,1,E07000109,2,71.78,147.91,26.1,188.66 -762,1,E07000109,3,82.02,162.93,26.1,205.81 -1088,1,E07000109,4,90.42,180.08,26.1,224.01 -1414,3,E07000109,1,52.2,116.83,26.1,160.78 -1740,3,E07000109,2,63.38,130.77,26.1,146.84 -2066,3,E07000109,3,68.97,151.13,26.1,187.58 -2392,3,E07000109,4,73.64,186.51,26.1,196.15 -2718,2,E07000109,0,61.49,265.21,18.44,340.65 -3044,4,E07000109,0,48.18,193.32,18.44,202.73 -3370,6,E07000109,0,61.49,300.58,18.44,327.69 -3696,8,E07000109,0,48.18,300.58,18.44,327.69 -4004,5,E07000109,1,57.79,126.48,26.1,138.27 -4071,7,E07000109,1,52.2,126.48,26.1,138.27 -4619,5,E07000109,2,71.78,160.78,26.1,175.78 -4766,7,E07000109,2,63.38,160.78,26.1,175.78 -5271,5,E07000109,3,82.02,188.66,26.1,205.81 -5371,7,E07000109,3,68.97,188.66,26.1,205.81 -5956,5,E07000109,4,90.42,273.34,26.1,297.99 -6060,7,E07000109,4,73.64,273.34,26.1,297.99 -6630,9,E07000109,1,57.79,158.09,26.1,172.84 -6956,9,E07000109,2,71.78,200.97,26.1,219.74 -7282,9,E07000109,3,82.02,235.82,26.1,257.26 -7608,9,E07000109,4,90.42,341.67,26.1,372.48 -7934,10,E07000109,0,61.49,375.73,18.44,409.61 -111,1,E07000145,1,54.99,120.05,26.1,150.06 -437,1,E07000145,2,65.24,143.62,26.1,169.36 -763,1,E07000145,3,71.78,157.56,26.1,182.22 -1089,1,E07000145,4,82.02,172.58,26.1,180.08 -1415,3,E07000145,1,50.34,100.76,26.1,132.91 -1741,3,E07000145,2,58.72,118.97,26.1,133.98 -2067,3,E07000145,3,64.31,131.84,26.1,144.7 -2393,3,E07000145,4,71.78,150.06,26.1,160.78 -2719,2,E07000145,0,35.87,223.96,18.44,418.45 -3045,4,E07000145,0,55.36,134.38,18.44,314.73 -3371,6,E07000145,0,35.87,190.96,18.44,207.45 -3697,8,E07000145,0,55.36,190.96,18.44,207.45 -4136,5,E07000145,1,54.99,99.69,26.1,109.33 -4253,7,E07000145,1,50.34,99.69,26.1,109.33 -4717,5,E07000145,2,65.24,121.11,26.1,131.84 -4979,7,E07000145,2,58.72,121.11,26.1,131.84 -5436,5,E07000145,3,71.78,131.84,26.1,143.62 -5622,7,E07000145,3,64.31,131.84,26.1,143.62 -6146,5,E07000145,4,82.02,173.65,26.1,188.66 -6284,7,E07000145,4,71.78,173.65,26.1,188.66 -6631,9,E07000145,1,54.99,124.6,26.1,136.67 -6957,9,E07000145,2,65.24,151.41,26.1,164.8 -7283,9,E07000145,3,71.78,164.8,26.1,179.53 -7609,9,E07000145,4,82.02,217.08,26.1,235.82 -7935,10,E07000145,0,35.87,238.71,18.44,259.31 -112,1,E09000011,1,66.17,146.84,26.1,199.38 -438,1,E09000011,2,78.29,158.63,26.1,194.01 -764,1,E09000011,3,84.82,168.29,26.1,228.29 -1090,1,E09000011,4,102.51,188.66,26.1,254.03 -1416,3,E09000011,1,58.72,120.05,26.1,147.91 -1742,3,E09000011,2,64.31,140.42,26.1,176.86 -2068,3,E09000011,3,71.78,160.78,26.1,202.58 -2394,3,E09000011,4,83.89,262.61,26.1,263.68 -2720,2,E09000011,0,69.7,313.55,18.44,497.44 -3046,4,E09000011,0,59.45,367.77,18.44,398.42 -3372,6,E09000011,0,69.7,425.53,18.44,463.25 -3698,8,E09000011,0,59.45,425.53,18.44,463.25 -3960,5,E09000011,1,66.17,200.45,26.1,217.59 -4174,7,E09000011,1,58.72,200.45,26.1,217.59 -4575,5,E09000011,2,78.29,284.04,26.1,309.78 -4675,7,E09000011,2,64.31,284.04,26.1,309.78 -5227,5,E09000011,3,84.82,295.83,26.1,322.64 -5327,7,E09000011,3,71.78,295.83,26.1,322.64 -5879,7,E09000011,4,83.89,386.95,26.1,421.25 -5912,5,E09000011,4,102.51,386.95,26.1,421.25 -6632,9,E09000011,1,66.17,250.54,26.1,271.98 -6958,9,E09000011,2,78.29,355.06,26.1,387.21 -7284,9,E09000011,3,84.82,369.81,26.1,403.3 -7610,9,E09000011,4,102.51,483.69,26.1,526.56 -7936,10,E09000011,0,69.7,531.91,18.44,579.06 -113,1,E07000209,1,57.79,124.33,26.1,177.93 -439,1,E07000209,2,71.78,147.91,26.1,188.66 -765,1,E07000209,3,82.02,162.93,26.1,205.81 -1091,1,E07000209,4,90.42,180.08,26.1,224.01 -1417,3,E07000209,1,52.2,116.83,26.1,160.78 -1743,3,E07000209,2,63.38,130.77,26.1,146.84 -2069,3,E07000209,3,68.97,151.13,26.1,187.58 -2395,3,E07000209,4,73.64,186.51,26.1,196.15 -2721,2,E07000209,0,61.49,265.21,18.44,340.65 -3047,4,E07000209,0,48.18,193.32,18.44,202.73 -3373,6,E07000209,0,61.49,623.56,18.44,678.97 -3699,8,E07000209,0,48.18,623.56,18.44,678.97 -4005,5,E07000209,1,57.79,194.01,26.1,212.24 -4072,7,E07000209,1,52.2,194.01,26.1,212.24 -4620,5,E07000209,2,71.78,272.26,26.1,296.91 -4767,7,E07000209,2,63.38,272.26,26.1,296.91 -5272,5,E07000209,3,82.02,330.14,26.1,360.15 -5372,7,E07000209,3,68.97,330.14,26.1,360.15 -5957,5,E07000209,4,90.42,567.02,26.1,617.4 -6061,7,E07000209,4,73.64,567.02,26.1,617.4 -6633,9,E07000209,1,57.79,242.51,26.1,265.29 -6959,9,E07000209,2,71.78,340.33,26.1,371.13 -7285,9,E07000209,3,82.02,412.67,26.1,450.18 -7611,9,E07000209,4,90.42,708.78,26.1,771.75 -7937,10,E07000209,0,61.49,779.44,18.44,848.71 -114,1,E09000012,1,66.17,146.84,26.1,199.38 -440,1,E09000012,2,78.29,158.63,26.1,194.01 -766,1,E09000012,3,84.82,168.29,26.1,228.29 -1092,1,E09000012,4,102.51,188.66,26.1,254.03 -1418,3,E09000012,1,58.72,120.05,26.1,147.91 -1744,3,E09000012,2,64.31,140.42,26.1,176.86 -2070,3,E09000012,3,71.78,160.78,26.1,202.58 -2396,3,E09000012,4,83.89,262.61,26.1,263.68 -2722,2,E09000012,0,69.7,313.55,18.44,497.44 -3048,4,E09000012,0,59.45,367.77,18.44,398.42 -3374,6,E09000012,0,69.7,648.32,18.44,706.08 -3700,8,E09000012,0,59.45,648.32,18.44,706.08 -3961,5,E09000012,1,66.17,310.85,26.1,338.7 -4175,7,E09000012,1,58.72,310.85,26.1,338.7 -4576,5,E09000012,2,78.29,374.07,26.1,408.38 -4676,7,E09000012,2,64.31,374.07,26.1,408.38 -5228,5,E09000012,3,84.82,442.67,26.1,482.35 -5328,7,E09000012,3,71.78,442.67,26.1,482.35 -5880,7,E09000012,4,83.89,589.54,26.1,642.06 -5913,5,E09000012,4,102.51,589.54,26.1,642.06 -6634,9,E09000012,1,66.17,388.57,26.1,423.4 -6960,9,E09000012,2,78.29,467.6,26.1,510.49 -7286,9,E09000012,3,84.82,553.35,26.1,602.94 -7612,9,E09000012,4,102.51,736.91,26.1,802.56 -7938,10,E09000012,0,69.7,810.39,18.44,882.59 -115,1,E06000006,1,52.2,94.33,26.1,117.9 -441,1,E06000006,2,59.66,108.27,26.1,136.13 -767,1,E06000006,3,66.17,121.11,26.1,146.84 -1093,1,E06000006,4,72.71,135.06,26.1,160.78 -1419,3,E06000006,1,43.8,86.81,26.1,101.83 -1745,3,E06000006,2,54.06,95.42,26.1,114.68 -2071,3,E06000006,3,58.72,106.12,26.1,125.4 -2397,3,E06000006,4,55.93,120.05,26.1,135.06 -2723,2,E06000006,0,55.36,236.93,18.44,338.29 -3049,4,E06000006,0,32.8,464.43,18.44,592.92 -3375,6,E06000006,0,55.36,226.32,18.44,246.36 -3701,8,E06000006,0,32.8,226.32,18.44,246.36 -4366,5,E06000006,1,52.2,103.98,26.1,113.61 -4478,7,E06000006,1,43.8,103.98,26.1,113.61 -4936,5,E06000006,2,59.66,115.76,26.1,125.4 -5074,7,E06000006,2,54.06,115.76,26.1,125.4 -5579,5,E06000006,3,66.17,136.13,26.1,148.99 -5754,7,E06000006,3,58.72,136.13,26.1,148.99 -6327,5,E06000006,4,72.71,205.81,26.1,224.01 -6378,7,E06000006,4,55.93,205.81,26.1,224.01 -6635,9,E06000006,1,52.2,129.97,26.1,142.02 -6961,9,E06000006,2,59.66,144.7,26.1,156.77 -7287,9,E06000006,3,66.17,170.16,26.1,186.23 -7613,9,E06000006,4,72.71,257.26,26.1,280.03 -7939,10,E06000006,0,55.36,282.91,18.44,307.95 -116,1,E07000164,1,51.27,92.19,26.1,114.68 -442,1,E07000164,2,58.72,109.33,26.1,141.49 -768,1,E07000164,3,63.38,121.11,26.1,162.93 -1094,1,E07000164,4,73.64,145.77,26.1,180.08 -1420,3,E07000164,1,46.6,82.54,26.1,93.26 -1746,3,E07000164,2,53.13,113.61,26.1,145.77 -2072,3,E07000164,3,56.86,105.05,26.1,114.68 -2398,3,E07000164,4,64.31,122.19,26.1,176.86 -2724,2,E07000164,0,52.28,232.2,18.44,319.44 -3050,4,E07000164,0,51.26,159.13,18.44,188.6 -3376,6,E07000164,0,52.28,248.71,18.44,272.3 -3702,8,E07000164,0,51.26,248.71,18.44,272.3 -4396,5,E07000164,1,51.27,103.98,26.1,113.61 -4550,7,E07000164,1,46.6,103.98,26.1,113.61 -4818,7,E07000164,2,53.13,126.48,26.1,138.27 -4876,5,E07000164,2,58.72,126.48,26.1,138.27 -5507,5,E07000164,3,63.38,148.99,26.1,161.86 -5854,7,E07000164,3,56.86,148.99,26.1,161.86 -6112,5,E07000164,4,73.64,228.29,26.1,247.6 -6210,7,E07000164,4,64.31,228.29,26.1,247.6 -6636,9,E07000164,1,51.27,129.97,26.1,142.02 -6962,9,E07000164,2,53.13,158.09,26.1,172.84 -7288,9,E07000164,3,63.38,186.23,26.1,202.34 -7614,9,E07000164,4,73.64,285.39,26.1,309.5 -7940,10,E07000164,0,52.28,310.9,18.44,340.38 -117,1,E09000013,1,66.17,146.84,26.1,199.38 -443,1,E09000013,2,78.29,158.63,26.1,194.01 -769,1,E09000013,3,84.82,168.29,26.1,228.29 -1095,1,E09000013,4,102.51,188.66,26.1,254.03 -1421,3,E09000013,1,58.72,120.05,26.1,147.91 -1747,3,E09000013,2,64.31,140.42,26.1,176.86 -2073,3,E09000013,3,71.78,160.78,26.1,202.58 -2399,3,E09000013,4,83.89,262.61,26.1,263.68 -2725,2,E09000013,0,69.7,313.55,18.44,497.44 -3051,4,E09000013,0,59.45,367.77,18.44,398.42 -3377,6,E09000013,0,69.7,1078.55,18.44,1176.39 -3703,8,E09000013,0,59.45,1078.55,18.44,1176.39 -3962,5,E09000013,1,66.17,320.49,26.1,349.42 -4176,7,E09000013,1,58.72,320.49,26.1,349.42 -4577,5,E09000013,2,78.29,427.69,26.1,466.26 -4677,7,E09000013,2,64.31,427.69,26.1,466.26 -5229,5,E09000013,3,84.82,614.19,26.1,668.85 -5329,7,E09000013,3,71.78,614.19,26.1,668.85 -5881,7,E09000013,4,83.89,981.83,26.1,1069.73 -5914,5,E09000013,4,102.51,981.83,26.1,1069.73 -6637,9,E09000013,1,66.17,400.6,26.1,436.8 -6963,9,E09000013,2,78.29,534.61,26.1,582.81 -7289,9,E09000013,3,84.82,767.74,26.1,836.07 -7615,9,E09000013,4,102.51,1227.29,26.1,1337.18 -7941,10,E09000013,0,69.7,1348.21,18.44,1470.5 -118,1,E07000131,1,52.2,100.76,26.1,123.26 -444,1,E07000131,2,62.45,115.76,26.1,130.77 -770,1,E07000131,3,68.97,127.56,26.1,139.34 -1096,1,E07000131,4,76.43,159.7,26.1,168.29 -1422,3,E07000131,1,46.6,91.12,26.1,108.27 -1748,3,E07000131,2,53.13,97.54,26.1,109.33 -2074,3,E07000131,3,58.72,105.05,26.1,120.05 -2400,3,E07000131,4,64.31,123.26,26.1,123.26 -2726,2,E07000131,0,51.26,238.1,18.44,357.17 -3052,4,E07000131,0,49.2,113.15,18.44,122.59 -3378,6,E07000131,0,51.26,275.83,18.44,300.58 -3704,8,E07000131,0,49.2,275.83,18.44,300.58 -4328,5,E07000131,1,52.2,108.27,26.1,117.9 -4428,7,E07000131,1,46.6,108.27,26.1,117.9 -5024,5,E07000131,2,62.45,126.48,26.1,138.27 -5164,7,E07000131,2,53.13,126.48,26.1,138.27 -5667,5,E07000131,3,68.97,159.7,26.1,174.72 -5825,7,E07000131,3,58.72,159.7,26.1,174.72 -6242,5,E07000131,4,76.43,250.82,26.1,273.34 -6486,7,E07000131,4,64.31,250.82,26.1,273.34 -6638,9,E07000131,1,52.2,135.33,26.1,147.38 -6964,9,E07000131,2,62.45,158.09,26.1,172.84 -7290,9,E07000131,3,68.97,199.62,26.1,218.38 -7616,9,E07000131,4,76.43,313.51,26.1,341.67 -7942,10,E07000131,0,51.26,344.81,18.44,375.73 -119,1,E09000014,1,66.17,146.84,26.1,199.38 -445,1,E09000014,2,78.29,158.63,26.1,194.01 -771,1,E09000014,3,84.82,168.29,26.1,228.29 -1097,1,E09000014,4,102.51,188.66,26.1,254.03 -1423,3,E09000014,1,58.72,120.05,26.1,147.91 -1749,3,E09000014,2,64.31,140.42,26.1,176.86 -2075,3,E09000014,3,71.78,160.78,26.1,202.58 -2401,3,E09000014,4,83.89,262.61,26.1,263.68 -2727,2,E09000014,0,69.7,313.55,18.44,497.44 -3053,4,E09000014,0,59.45,367.77,18.44,398.42 -3379,6,E09000014,0,69.7,701.37,18.44,766.19 -3705,8,E09000014,0,59.45,701.37,18.44,766.19 -3963,5,E09000014,1,66.17,262.61,26.1,285.11 -4177,7,E09000014,1,58.72,262.61,26.1,285.11 -4578,5,E09000014,2,78.29,335.49,26.1,365.5 -4678,7,E09000014,2,64.31,335.49,26.1,365.5 -5230,5,E09000014,3,84.82,419.11,26.1,456.62 -5330,7,E09000014,3,71.78,419.11,26.1,456.62 -5882,7,E09000014,4,83.89,638.84,26.1,696.71 -5915,5,E09000014,4,102.51,638.84,26.1,696.71 -6639,9,E09000014,1,66.17,328.26,26.1,356.4 -6965,9,E09000014,2,78.29,419.36,26.1,456.88 -7291,9,E09000014,3,84.82,523.89,26.1,570.76 -7617,9,E09000014,4,102.51,798.54,26.1,870.9 -7943,10,E09000014,0,69.7,876.7,18.44,957.73 -120,1,E07000073,1,54.99,120.05,26.1,150.06 -446,1,E07000073,2,65.24,143.62,26.1,169.36 -772,1,E07000073,3,71.78,157.56,26.1,182.22 -1098,1,E07000073,4,82.02,172.58,26.1,180.08 -1424,3,E07000073,1,50.34,100.76,26.1,132.91 -1750,3,E07000073,2,58.72,118.97,26.1,133.98 -2076,3,E07000073,3,64.31,131.84,26.1,144.7 -2402,3,E07000073,4,71.78,150.06,26.1,160.78 -2728,2,E07000073,0,35.87,223.96,18.44,418.45 -3054,4,E07000073,0,55.36,134.38,18.44,314.73 -3380,6,E07000073,0,35.87,351.26,18.44,383.09 -3706,8,E07000073,0,55.36,351.26,18.44,383.09 -4137,5,E07000073,1,54.99,133.98,26.1,146.84 -4254,7,E07000073,1,50.34,133.98,26.1,146.84 -4718,5,E07000073,2,65.24,181.15,26.1,198.3 -4980,7,E07000073,2,58.72,181.15,26.1,198.3 -5437,5,E07000073,3,71.78,216.52,26.1,236.89 -5623,7,E07000073,3,64.31,216.52,26.1,236.89 -6147,5,E07000073,4,82.02,319.42,26.1,348.36 -6285,7,E07000073,4,71.78,319.42,26.1,348.36 -6640,9,E07000073,1,54.99,167.48,26.1,183.56 -6966,9,E07000073,2,65.24,226.44,26.1,247.88 -7292,9,E07000073,3,71.78,270.66,26.1,296.11 -7618,9,E07000073,4,82.02,399.29,26.1,435.45 -7944,10,E07000073,0,35.87,439.1,18.44,478.86 -121,1,E07000165,1,51.27,92.19,26.1,114.68 -447,1,E07000165,2,58.72,109.33,26.1,141.49 -773,1,E07000165,3,63.38,121.11,26.1,162.93 -1099,1,E07000165,4,73.64,145.77,26.1,180.08 -1425,3,E07000165,1,46.6,82.54,26.1,93.26 -1751,3,E07000165,2,53.13,113.61,26.1,145.77 -2077,3,E07000165,3,56.86,105.05,26.1,114.68 -2403,3,E07000165,4,64.31,122.19,26.1,176.86 -2729,2,E07000165,0,52.28,232.2,18.44,319.44 -3055,4,E07000165,0,51.26,159.13,18.44,188.6 -3381,6,E07000165,0,52.28,412.57,18.44,450.29 -3707,8,E07000165,0,51.26,412.57,18.44,450.29 -4397,5,E07000165,1,51.27,126.48,26.1,138.27 -4551,7,E07000165,1,46.6,126.48,26.1,138.27 -4819,7,E07000165,2,53.13,158.63,26.1,174.72 -4877,5,E07000165,2,58.72,158.63,26.1,174.72 -5508,5,E07000165,3,63.38,194.01,26.1,212.24 -5855,7,E07000165,3,56.86,194.01,26.1,212.24 -6113,5,E07000165,4,73.64,375.16,26.1,409.45 -6211,7,E07000165,4,64.31,375.16,26.1,409.45 -6641,9,E07000165,1,51.27,158.09,26.1,172.84 -6967,9,E07000165,2,53.13,198.3,26.1,218.38 -7293,9,E07000165,3,63.38,242.51,26.1,265.29 -7619,9,E07000165,4,73.64,468.95,26.1,511.83 -7945,10,E07000165,0,52.28,515.71,18.44,562.87 -122,1,E09000015,1,66.17,146.84,26.1,199.38 -448,1,E09000015,2,78.29,158.63,26.1,194.01 -774,1,E09000015,3,84.82,168.29,26.1,228.29 -1100,1,E09000015,4,102.51,188.66,26.1,254.03 -1426,3,E09000015,1,58.72,120.05,26.1,147.91 -1752,3,E09000015,2,64.31,140.42,26.1,176.86 -2078,3,E09000015,3,71.78,160.78,26.1,202.58 -2404,3,E09000015,4,83.89,262.61,26.1,263.68 -2730,2,E09000015,0,69.7,313.55,18.44,497.44 -3056,4,E09000015,0,59.45,367.77,18.44,398.42 -3382,6,E09000015,0,69.7,499.79,18.44,544.59 -3708,8,E09000015,0,59.45,499.79,18.44,544.59 -3964,5,E09000015,1,66.17,200.45,26.1,217.59 -4178,7,E09000015,1,58.72,200.45,26.1,217.59 -4579,5,E09000015,2,78.29,262.61,26.1,285.11 -4679,7,E09000015,2,64.31,262.61,26.1,285.11 -5231,5,E09000015,3,84.82,319.42,26.1,348.36 -5331,7,E09000015,3,71.78,319.42,26.1,348.36 -5883,7,E09000015,4,83.89,454.47,26.1,495.21 -5916,5,E09000015,4,102.51,454.47,26.1,495.21 -6642,9,E09000015,1,66.17,250.54,26.1,271.98 -6968,9,E09000015,2,78.29,328.26,26.1,356.4 -7294,9,E09000015,3,84.82,399.29,26.1,435.45 -7620,9,E09000015,4,102.51,568.09,26.1,619.01 -7946,10,E09000015,0,69.7,624.74,18.44,680.75 -123,1,E07000089,1,57.79,124.33,26.1,177.93 -449,1,E07000089,2,71.78,147.91,26.1,188.66 -775,1,E07000089,3,82.02,162.93,26.1,205.81 -1101,1,E07000089,4,90.42,180.08,26.1,224.01 -1427,3,E07000089,1,52.2,116.83,26.1,160.78 -1753,3,E07000089,2,63.38,130.77,26.1,146.84 -2079,3,E07000089,3,68.97,151.13,26.1,187.58 -2405,3,E07000089,4,73.64,186.51,26.1,196.15 -2731,2,E07000089,0,61.49,265.21,18.44,340.65 -3057,4,E07000089,0,48.18,193.32,18.44,202.73 -3383,6,E07000089,0,61.49,462.06,18.44,503.31 -3709,8,E07000089,0,48.18,462.06,18.44,503.31 -4006,5,E07000089,1,57.79,166.14,26.1,181.15 -4073,7,E07000089,1,52.2,166.14,26.1,181.15 -4621,5,E07000089,2,71.78,200.45,26.1,217.59 -4768,7,E07000089,2,63.38,200.45,26.1,217.59 -5273,5,E07000089,3,82.02,273.34,26.1,297.99 -5373,7,E07000089,3,68.97,273.34,26.1,297.99 -5958,5,E07000089,4,90.42,420.18,26.1,457.7 -6062,7,E07000089,4,73.64,420.18,26.1,457.7 -6643,9,E07000089,1,57.79,207.68,26.1,226.44 -6969,9,E07000089,2,71.78,250.54,26.1,271.98 -7295,9,E07000089,3,82.02,341.67,26.1,372.48 -7621,9,E07000089,4,90.42,525.22,26.1,572.11 -7947,10,E07000089,0,61.49,577.59,18.44,629.15 -124,1,E06000001,1,51.27,88.96,26.1,98.62 -450,1,E06000001,2,57.79,102.91,26.1,121.11 -776,1,E06000001,3,61.52,114.68,26.1,160.78 -1102,1,E06000001,4,70.84,128.63,26.1,140.42 -1428,3,E06000001,1,42.87,100.76,26.1,106.12 -1754,3,E06000001,2,50.34,91.12,26.1,112.54 -2080,3,E06000001,3,54.06,106.12,26.1,125.4 -2406,3,E06000001,4,56.86,116.83,26.1,121.11 -2732,2,E06000001,0,55.36,234.56,18.44,337.12 -3058,4,E06000001,0,47.15,251.08,18.44,285.25 -3384,6,E06000001,0,55.36,189.79,18.44,206.28 -3710,8,E06000001,0,47.15,189.79,18.44,206.28 -4454,7,E06000001,1,42.87,93.26,26.1,101.83 -4535,5,E06000001,1,51.27,93.26,26.1,101.83 -5050,5,E06000001,2,57.79,105.05,26.1,115.76 -5101,7,E06000001,2,50.34,105.05,26.1,115.76 -5555,5,E06000001,3,61.52,136.13,26.1,148.99 -5730,7,E06000001,3,54.06,136.13,26.1,148.99 -6354,5,E06000001,4,70.84,172.58,26.1,187.58 -6512,7,E06000001,4,56.86,172.58,26.1,187.58 -6644,9,E06000001,1,42.87,116.56,26.1,127.29 -6970,9,E06000001,2,57.79,131.29,26.1,144.7 -7296,9,E06000001,3,61.52,170.16,26.1,186.23 -7622,9,E06000001,4,70.84,215.73,26.1,234.49 -7948,10,E06000001,0,55.36,237.24,18.44,257.84 -125,1,E07000062,1,57.79,124.33,26.1,177.93 -451,1,E07000062,2,71.78,147.91,26.1,188.66 -777,1,E07000062,3,82.02,162.93,26.1,205.81 -1103,1,E07000062,4,90.42,180.08,26.1,224.01 -1429,3,E07000062,1,52.2,116.83,26.1,160.78 -1755,3,E07000062,2,63.38,130.77,26.1,146.84 -2081,3,E07000062,3,68.97,151.13,26.1,187.58 -2407,3,E07000062,4,73.64,186.51,26.1,196.15 -2733,2,E07000062,0,61.49,265.21,18.44,340.65 -3059,4,E07000062,0,48.18,193.32,18.44,202.73 -3385,6,E07000062,0,61.49,275.83,18.44,300.58 -3711,8,E07000062,0,48.18,275.83,18.44,300.58 -4007,5,E07000062,1,57.79,100.76,26.1,110.39 -4074,7,E07000062,1,52.2,100.76,26.1,110.39 -4622,5,E07000062,2,71.78,136.13,26.1,148.99 -4769,7,E07000062,2,63.38,136.13,26.1,148.99 -5274,5,E07000062,3,82.02,172.58,26.1,187.58 -5374,7,E07000062,3,68.97,172.58,26.1,187.58 -5959,5,E07000062,4,90.42,250.82,26.1,273.34 -6063,7,E07000062,4,73.64,250.82,26.1,273.34 -6645,9,E07000062,1,57.79,125.95,26.1,138.01 -6971,9,E07000062,2,71.78,170.16,26.1,186.23 -7297,9,E07000062,3,82.02,215.73,26.1,234.49 -7623,9,E07000062,4,90.42,313.51,26.1,341.67 -7949,10,E07000062,0,61.49,344.81,18.44,375.73 -126,1,E07000090,1,57.79,124.33,26.1,177.93 -452,1,E07000090,2,71.78,147.91,26.1,188.66 -778,1,E07000090,3,82.02,162.93,26.1,205.81 -1104,1,E07000090,4,90.42,180.08,26.1,224.01 -1430,3,E07000090,1,52.2,116.83,26.1,160.78 -1756,3,E07000090,2,63.38,130.77,26.1,146.84 -2082,3,E07000090,3,68.97,151.13,26.1,187.58 -2408,3,E07000090,4,73.64,186.51,26.1,196.15 -2734,2,E07000090,0,61.49,265.21,18.44,340.65 -3060,4,E07000090,0,48.18,193.32,18.44,202.73 -3386,6,E07000090,0,61.49,312.38,18.44,340.65 -3712,8,E07000090,0,48.18,312.38,18.44,340.65 -4008,5,E07000090,1,57.79,131.84,26.1,144.7 -4075,7,E07000090,1,52.2,131.84,26.1,144.7 -4623,5,E07000090,2,71.78,160.78,26.1,175.78 -4770,7,E07000090,2,63.38,160.78,26.1,175.78 -5275,5,E07000090,3,82.02,194.01,26.1,212.24 -5375,7,E07000090,3,68.97,194.01,26.1,212.24 -5960,5,E07000090,4,90.42,284.04,26.1,309.78 -6064,7,E07000090,4,73.64,284.04,26.1,309.78 -6646,9,E07000090,1,57.79,164.8,26.1,180.87 -6972,9,E07000090,2,71.78,200.97,26.1,219.74 -7298,9,E07000090,3,82.02,242.51,26.1,265.29 -7624,9,E07000090,4,90.42,355.06,26.1,387.21 -7950,10,E07000090,0,61.49,390.47,18.44,425.82 -127,1,E09000016,1,66.17,146.84,26.1,199.38 -453,1,E09000016,2,78.29,158.63,26.1,194.01 -779,1,E09000016,3,84.82,168.29,26.1,228.29 -1105,1,E09000016,4,102.51,188.66,26.1,254.03 -1431,3,E09000016,1,58.72,120.05,26.1,147.91 -1757,3,E09000016,2,64.31,140.42,26.1,176.86 -2083,3,E09000016,3,71.78,160.78,26.1,202.58 -2409,3,E09000016,4,83.89,262.61,26.1,263.68 -2735,2,E09000016,0,69.7,313.55,18.44,497.44 -3061,4,E09000016,0,59.45,367.77,18.44,398.42 -3387,6,E09000016,0,69.7,450.29,18.44,490.34 -3713,8,E09000016,0,59.45,450.29,18.44,490.34 -3965,5,E09000016,1,66.17,162.93,26.1,177.93 -4179,7,E09000016,1,58.72,162.93,26.1,177.93 -4580,5,E09000016,2,78.29,205.81,26.1,224.01 -4680,7,E09000016,2,64.31,205.81,26.1,224.01 -5232,5,E09000016,3,84.82,250.82,26.1,273.34 -5332,7,E09000016,3,71.78,250.82,26.1,273.34 -5884,7,E09000016,4,83.89,409.45,26.1,445.89 -5917,5,E09000016,4,102.51,409.45,26.1,445.89 -6647,9,E09000016,1,66.17,203.65,26.1,222.43 -6973,9,E09000016,2,78.29,257.26,26.1,280.03 -7299,9,E09000016,3,84.82,313.51,26.1,341.67 -7625,9,E09000016,4,102.51,511.83,26.1,557.37 -7951,10,E09000016,0,69.7,562.87,18.44,612.95 -128,1,E06000019,1,53.13,99.69,26.1,125.4 -454,1,E06000019,2,58.72,117.9,26.1,138.27 -780,1,E06000019,3,69.9,133.98,26.1,161.86 -1106,1,E06000019,4,81.09,162.93,26.1,180.08 -1432,3,E06000019,1,46.6,88.96,26.1,98.62 -1758,3,E06000019,2,50.34,95.42,26.1,103.98 -2084,3,E06000019,3,60.59,105.05,26.1,121.11 -2410,3,E06000019,4,68.97,128.63,26.1,128.63 -2736,2,E06000019,0,38.95,242.82,18.44,378.37 -3062,4,E06000019,0,46.12,106.09,18.44,106.09 -3388,6,E06000019,0,38.95,238.1,18.44,260.5 -3714,8,E06000019,0,46.12,238.1,18.44,260.5 -4287,5,E06000019,1,53.13,110.39,26.1,120.05 -4508,7,E06000019,1,46.6,110.39,26.1,120.05 -4897,5,E06000019,2,58.72,131.84,26.1,144.7 -5193,7,E06000019,2,50.34,131.84,26.1,144.7 -5528,5,E06000019,3,69.9,159.7,26.1,174.72 -5784,7,E06000019,3,60.59,159.7,26.1,174.72 -6180,5,E06000019,4,81.09,216.52,26.1,236.89 -6445,7,E06000019,4,68.97,216.52,26.1,236.89 -6648,9,E06000019,1,53.13,138.01,26.1,150.06 -6974,9,E06000019,2,58.72,164.8,26.1,180.87 -7300,9,E06000019,3,69.9,199.62,26.1,218.38 -7626,9,E06000019,4,81.09,270.66,26.1,296.11 -7952,10,E06000019,0,38.95,297.64,18.44,325.63 -129,1,E07000098,1,54.99,120.05,26.1,150.06 -455,1,E07000098,2,65.24,143.62,26.1,169.36 -781,1,E07000098,3,71.78,157.56,26.1,182.22 -1107,1,E07000098,4,82.02,172.58,26.1,180.08 -1433,3,E07000098,1,50.34,100.76,26.1,132.91 -1759,3,E07000098,2,58.72,118.97,26.1,133.98 -2085,3,E07000098,3,64.31,131.84,26.1,144.7 -2411,3,E07000098,4,71.78,150.06,26.1,160.78 -2737,2,E07000098,0,35.87,223.96,18.44,418.45 -3063,4,E07000098,0,55.36,134.38,18.44,314.73 -3389,6,E07000098,0,35.87,584.67,18.44,636.54 -3715,8,E07000098,0,55.36,584.67,18.44,636.54 -4138,5,E07000098,1,54.99,177.93,26.1,192.94 -4255,7,E07000098,1,50.34,177.93,26.1,192.94 -4719,5,E07000098,2,65.24,229.37,26.1,248.67 -4981,7,E07000098,2,58.72,229.37,26.1,248.67 -5438,5,E07000098,3,71.78,319.42,26.1,348.36 -5624,7,E07000098,3,64.31,319.42,26.1,348.36 -6148,5,E07000098,4,82.02,531.67,26.1,578.8 -6286,7,E07000098,4,71.78,531.67,26.1,578.8 -6649,9,E07000098,1,54.99,222.43,26.1,241.18 -6975,9,E07000098,2,65.24,286.72,26.1,310.84 -7301,9,E07000098,3,71.78,399.29,26.1,435.45 -7627,9,E07000098,4,82.02,664.55,26.1,723.51 -7953,10,E07000098,0,35.87,730.84,18.44,795.66 -130,1,E07000037,1,52.2,100.76,26.1,123.26 -456,1,E07000037,2,62.45,115.76,26.1,130.77 -782,1,E07000037,3,68.97,127.56,26.1,139.34 -1108,1,E07000037,4,76.43,159.7,26.1,168.29 -1434,3,E07000037,1,46.6,91.12,26.1,108.27 -1760,3,E07000037,2,53.13,97.54,26.1,109.33 -2086,3,E07000037,3,58.72,105.05,26.1,120.05 -2412,3,E07000037,4,64.31,123.26,26.1,123.26 -2738,2,E07000037,0,51.26,238.1,18.44,357.17 -3064,4,E07000037,0,49.2,113.15,18.44,122.59 -3390,6,E07000037,0,51.26,213.35,18.44,233.38 -3716,8,E07000037,0,49.2,213.35,18.44,233.38 -4329,5,E07000037,1,52.2,103.98,26.1,113.61 -4429,7,E07000037,1,46.6,103.98,26.1,113.61 -5025,5,E07000037,2,62.45,126.48,26.1,138.27 -5165,7,E07000037,2,53.13,126.48,26.1,138.27 -5668,5,E07000037,3,68.97,155.41,26.1,169.36 -5826,7,E07000037,3,58.72,155.41,26.1,169.36 -6243,5,E07000037,4,76.43,194.01,26.1,212.24 -6487,7,E07000037,4,64.31,194.01,26.1,212.24 -6650,9,E07000037,1,52.2,129.97,26.1,142.02 -6976,9,E07000037,2,62.45,158.09,26.1,172.84 -7302,9,E07000037,3,68.97,194.27,26.1,211.69 -7628,9,E07000037,4,76.43,242.51,26.1,265.29 -7954,10,E07000037,0,51.26,266.69,18.44,291.74 -131,1,E09000017,1,66.17,146.84,26.1,199.38 -457,1,E09000017,2,78.29,158.63,26.1,194.01 -783,1,E09000017,3,84.82,168.29,26.1,228.29 -1109,1,E09000017,4,102.51,188.66,26.1,254.03 -1435,3,E09000017,1,58.72,120.05,26.1,147.91 -1761,3,E09000017,2,64.31,140.42,26.1,176.86 -2087,3,E09000017,3,71.78,160.78,26.1,202.58 -2413,3,E09000017,4,83.89,262.61,26.1,263.68 -2739,2,E09000017,0,69.7,313.55,18.44,497.44 -3065,4,E09000017,0,59.45,367.77,18.44,398.42 -3391,6,E09000017,0,69.7,473.86,18.44,517.47 -3717,8,E09000017,0,59.45,473.86,18.44,517.47 -3966,5,E09000017,1,66.17,183.29,26.1,200.45 -4180,7,E09000017,1,58.72,183.29,26.1,200.45 -4581,5,E09000017,2,78.29,250.82,26.1,273.34 -4681,7,E09000017,2,64.31,250.82,26.1,273.34 -5233,5,E09000017,3,84.82,295.83,26.1,322.64 -5333,7,E09000017,3,71.78,295.83,26.1,322.64 -5885,7,E09000017,4,83.89,430.9,26.1,470.55 -5918,5,E09000017,4,102.51,430.9,26.1,470.55 -6651,9,E09000017,1,66.17,229.13,26.1,250.54 -6977,9,E09000017,2,78.29,313.51,26.1,341.67 -7303,9,E09000017,3,84.82,369.81,26.1,403.3 -7629,9,E09000017,4,102.51,538.61,26.1,588.19 -7955,10,E09000017,0,69.7,592.32,18.44,646.84 -132,1,E07000132,1,52.2,100.76,26.1,123.26 -458,1,E07000132,2,62.45,115.76,26.1,130.77 -784,1,E07000132,3,68.97,127.56,26.1,139.34 -1110,1,E07000132,4,76.43,159.7,26.1,168.29 -1436,3,E07000132,1,46.6,91.12,26.1,108.27 -1762,3,E07000132,2,53.13,97.54,26.1,109.33 -2088,3,E07000132,3,58.72,105.05,26.1,120.05 -2414,3,E07000132,4,64.31,123.26,26.1,123.26 -2740,2,E07000132,0,51.26,238.1,18.44,357.17 -3066,4,E07000132,0,49.2,113.15,18.44,122.59 -3392,6,E07000132,0,51.26,238.1,18.44,260.5 -3718,8,E07000132,0,49.2,238.1,18.44,260.5 -4330,5,E07000132,1,52.2,93.26,26.1,100.76 -4430,7,E07000132,1,46.6,93.26,26.1,100.76 -5026,5,E07000132,2,62.45,121.11,26.1,131.84 -5166,7,E07000132,2,53.13,121.11,26.1,131.84 -5669,5,E07000132,3,68.97,142.56,26.1,155.41 -5827,7,E07000132,3,58.72,142.56,26.1,155.41 -6244,5,E07000132,4,76.43,216.52,26.1,236.89 -6488,7,E07000132,4,64.31,216.52,26.1,236.89 -6652,9,E07000132,1,52.2,116.56,26.1,125.95 -6978,9,E07000132,2,62.45,151.41,26.1,164.8 -7304,9,E07000132,3,68.97,178.2,26.1,194.27 -7630,9,E07000132,4,76.43,270.66,26.1,296.11 -7956,10,E07000132,0,51.26,297.64,18.44,325.63 -133,1,E07000227,1,57.79,124.33,26.1,177.93 -459,1,E07000227,2,71.78,147.91,26.1,188.66 -785,1,E07000227,3,82.02,162.93,26.1,205.81 -1111,1,E07000227,4,90.42,180.08,26.1,224.01 -1437,3,E07000227,1,52.2,116.83,26.1,160.78 -1763,3,E07000227,2,63.38,130.77,26.1,146.84 -2089,3,E07000227,3,68.97,151.13,26.1,187.58 -2415,3,E07000227,4,73.64,186.51,26.1,196.15 -2741,2,E07000227,0,61.49,265.21,18.44,340.65 -3067,4,E07000227,0,48.18,193.32,18.44,202.73 -3393,6,E07000227,0,61.49,473.86,18.44,517.47 -3719,8,E07000227,0,48.18,473.86,18.44,517.47 -4009,5,E07000227,1,57.79,148.99,26.1,161.86 -4076,7,E07000227,1,52.2,148.99,26.1,161.86 -4624,5,E07000227,2,71.78,188.66,26.1,205.81 -4771,7,E07000227,2,63.38,188.66,26.1,205.81 -5276,5,E07000227,3,82.02,262.61,26.1,285.11 -5376,7,E07000227,3,68.97,262.61,26.1,285.11 -5961,5,E07000227,4,90.42,430.9,26.1,470.55 -6065,7,E07000227,4,73.64,430.9,26.1,470.55 -6653,9,E07000227,1,57.79,186.23,26.1,202.34 -6979,9,E07000227,2,71.78,235.82,26.1,257.26 -7305,9,E07000227,3,82.02,328.26,26.1,356.4 -7631,9,E07000227,4,90.42,538.61,26.1,588.19 -7957,10,E07000227,0,61.49,592.32,18.44,646.84 -134,1,E09000018,1,66.17,146.84,26.1,199.38 -460,1,E09000018,2,78.29,158.63,26.1,194.01 -786,1,E09000018,3,84.82,168.29,26.1,228.29 -1112,1,E09000018,4,102.51,188.66,26.1,254.03 -1438,3,E09000018,1,58.72,120.05,26.1,147.91 -1764,3,E09000018,2,64.31,140.42,26.1,176.86 -2090,3,E09000018,3,71.78,160.78,26.1,202.58 -2416,3,E09000018,4,83.89,262.61,26.1,263.68 -2742,2,E09000018,0,69.7,313.55,18.44,497.44 -3068,4,E09000018,0,59.45,367.77,18.44,398.42 -3394,6,E09000018,0,69.7,808.63,18.44,882.9 -3720,8,E09000018,0,59.45,808.63,18.44,882.9 -3967,5,E09000018,1,66.17,217.59,26.1,237.96 -4181,7,E09000018,1,58.72,217.59,26.1,237.96 -4582,5,E09000018,2,78.29,295.83,26.1,322.64 -4682,7,E09000018,2,64.31,295.83,26.1,322.64 -5234,5,E09000018,3,84.82,319.42,26.1,348.36 -5334,7,E09000018,3,71.78,319.42,26.1,348.36 -5886,7,E09000018,4,83.89,735.31,26.1,802.83 -5919,5,E09000018,4,102.51,735.31,26.1,802.83 -6654,9,E09000018,1,66.17,271.98,26.1,297.46 -6980,9,E09000018,2,78.29,369.81,26.1,403.3 -7306,9,E09000018,3,84.82,399.29,26.1,435.45 -7632,9,E09000018,4,102.51,919.14,26.1,1003.53 -7958,10,E09000018,0,69.7,1010.78,18.44,1103.61 -135,1,E07000011,1,54.99,120.05,26.1,150.06 -461,1,E07000011,2,65.24,143.62,26.1,169.36 -787,1,E07000011,3,71.78,157.56,26.1,182.22 -1113,1,E07000011,4,82.02,172.58,26.1,180.08 -1439,3,E07000011,1,50.34,100.76,26.1,132.91 -1765,3,E07000011,2,58.72,118.97,26.1,133.98 -2091,3,E07000011,3,64.31,131.84,26.1,144.7 -2417,3,E07000011,4,71.78,150.06,26.1,160.78 -2743,2,E07000011,0,35.87,223.96,18.44,418.45 -3069,4,E07000011,0,55.36,134.38,18.44,314.73 -3395,6,E07000011,0,35.87,312.38,18.44,340.65 -3721,8,E07000011,0,55.36,312.38,18.44,340.65 -4139,5,E07000011,1,54.99,114.68,26.1,124.33 -4256,7,E07000011,1,50.34,114.68,26.1,124.33 -4720,5,E07000011,2,65.24,144.7,26.1,157.56 -4982,7,E07000011,2,58.72,144.7,26.1,157.56 -5439,5,E07000011,3,71.78,172.58,26.1,187.58 -5625,7,E07000011,3,64.31,172.58,26.1,187.58 -6149,5,E07000011,4,82.02,284.04,26.1,309.78 -6287,7,E07000011,4,71.78,284.04,26.1,309.78 -6655,9,E07000011,1,54.99,143.37,26.1,155.41 -6981,9,E07000011,2,65.24,180.87,26.1,196.95 -7307,9,E07000011,3,71.78,215.73,26.1,234.49 -7633,9,E07000011,4,82.02,355.06,26.1,387.21 -7959,10,E07000011,0,35.87,390.47,18.44,425.82 -136,1,E07000120,1,52.2,94.33,26.1,117.9 -462,1,E07000120,2,59.66,108.27,26.1,136.13 -788,1,E07000120,3,66.17,121.11,26.1,146.84 -1114,1,E07000120,4,72.71,135.06,26.1,160.78 -1440,3,E07000120,1,43.8,86.81,26.1,101.83 -1766,3,E07000120,2,54.06,95.42,26.1,114.68 -2092,3,E07000120,3,58.72,106.12,26.1,125.4 -2418,3,E07000120,4,55.93,120.05,26.1,135.06 -2744,2,E07000120,0,55.36,236.93,18.44,338.29 -3070,4,E07000120,0,32.8,464.43,18.44,592.92 -3396,6,E07000120,0,55.36,189.79,18.44,206.28 -3722,8,E07000120,0,32.8,189.79,18.44,206.28 -4367,5,E07000120,1,52.2,91.12,26.1,98.62 -4479,7,E07000120,1,43.8,91.12,26.1,98.62 -4937,5,E07000120,2,59.66,99.69,26.1,109.33 -5075,7,E07000120,2,54.06,99.69,26.1,109.33 -5580,5,E07000120,3,66.17,126.48,26.1,138.27 -5755,7,E07000120,3,58.72,126.48,26.1,138.27 -6328,5,E07000120,4,72.71,172.58,26.1,187.58 -6379,7,E07000120,4,55.93,172.58,26.1,187.58 -6656,9,E07000120,1,52.2,113.9,26.1,123.26 -6982,9,E07000120,2,59.66,124.6,26.1,136.67 -7308,9,E07000120,3,66.17,158.09,26.1,172.84 -7634,9,E07000120,4,72.71,215.73,26.1,234.49 -7960,10,E07000120,0,55.36,237.24,18.44,257.84 -137,1,E07000202,1,54.99,120.05,26.1,150.06 -463,1,E07000202,2,65.24,143.62,26.1,169.36 -789,1,E07000202,3,71.78,157.56,26.1,182.22 -1115,1,E07000202,4,82.02,172.58,26.1,180.08 -1441,3,E07000202,1,50.34,100.76,26.1,132.91 -1767,3,E07000202,2,58.72,118.97,26.1,133.98 -2093,3,E07000202,3,64.31,131.84,26.1,144.7 -2419,3,E07000202,4,71.78,150.06,26.1,160.78 -2745,2,E07000202,0,35.87,223.96,18.44,418.45 -3071,4,E07000202,0,55.36,134.38,18.44,314.73 -3397,6,E07000202,0,35.87,271.13,18.44,295.87 -3723,8,E07000202,0,55.36,271.13,18.44,295.87 -4140,5,E07000202,1,54.99,103.98,26.1,113.61 -4257,7,E07000202,1,50.34,103.98,26.1,113.61 -4721,5,E07000202,2,65.24,126.48,26.1,138.27 -4983,7,E07000202,2,58.72,126.48,26.1,138.27 -5440,5,E07000202,3,71.78,147.91,26.1,159.7 -5626,7,E07000202,3,64.31,147.91,26.1,159.7 -6150,5,E07000202,4,82.02,247.6,26.1,269.04 -6288,7,E07000202,4,71.78,247.6,26.1,269.04 -6657,9,E07000202,1,54.99,129.97,26.1,142.02 -6983,9,E07000202,2,65.24,158.09,26.1,172.84 -7309,9,E07000202,3,71.78,184.89,26.1,199.62 -7635,9,E07000202,4,82.02,309.5,26.1,336.31 -7961,10,E07000202,0,35.87,338.9,18.44,369.84 -138,1,E06000046,1,57.79,124.33,26.1,177.93 -464,1,E06000046,2,71.78,147.91,26.1,188.66 -790,1,E06000046,3,82.02,162.93,26.1,205.81 -1116,1,E06000046,4,90.42,180.08,26.1,224.01 -1442,3,E06000046,1,52.2,116.83,26.1,160.78 -1768,3,E06000046,2,63.38,130.77,26.1,146.84 -2094,3,E06000046,3,68.97,151.13,26.1,187.58 -2420,3,E06000046,4,73.64,186.51,26.1,196.15 -2746,2,E06000046,0,61.49,265.21,18.44,340.65 -3072,4,E06000046,0,48.18,193.32,18.44,202.73 -3398,6,E06000046,0,61.49,264.04,18.44,287.62 -3724,8,E06000046,0,48.18,264.04,18.44,287.62 -4010,5,E06000046,1,57.79,108.27,26.1,117.9 -4077,7,E06000046,1,52.2,108.27,26.1,117.9 -4625,5,E06000046,2,71.78,138.27,26.1,150.06 -4772,7,E06000046,2,63.38,138.27,26.1,150.06 -5277,5,E06000046,3,82.02,172.58,26.1,187.58 -5377,7,E06000046,3,68.97,172.58,26.1,187.58 -5962,5,E06000046,4,90.42,240.09,26.1,261.54 -6066,7,E06000046,4,73.64,240.09,26.1,261.54 -6658,9,E06000046,1,57.79,135.33,26.1,147.38 -6984,9,E06000046,2,71.78,172.84,26.1,187.57 -7310,9,E06000046,3,82.02,215.73,26.1,234.49 -7636,9,E06000046,4,90.42,300.12,26.1,326.92 -7962,10,E06000046,0,61.49,330.05,18.44,359.53 -139,1,E06000053,1,49.41,108.27,26.1,141.49 -465,1,E06000053,2,55.93,122.19,26.1,145.77 -791,1,E06000053,3,62.45,142.56,26.1,162.93 -1117,1,E06000053,4,71.78,159.7,26.1,196.15 -1443,3,E06000053,1,47.54,90.03,26.1,212.24 -1769,3,E06000053,2,54.99,101.83,26.1,112.54 -2095,3,E06000053,3,62.45,110.39,26.1,127.56 -2421,3,E06000053,4,74.57,131.84,26.1,131.84 -2747,2,E06000053,0,54.33,228.68,18.44,354.8 -3073,4,E06000053,0,54.33,114.33,18.44,140.27 -3399,6,E06000053,0,54.33,213.35,18.44,233.38 -3725,8,E06000053,0,54.33,213.35,18.44,233.38 -3925,7,E06000053,1,47.54,130.77,26.1,143.62 -4209,5,E06000053,1,49.41,130.77,26.1,143.62 -4845,5,E06000053,2,55.93,166.14,26.1,181.15 -5122,7,E06000053,2,54.99,166.14,26.1,181.15 -5476,5,E06000053,3,62.45,194.01,26.1,212.24 -5702,7,E06000053,3,62.45,194.01,26.1,212.24 -6014,5,E06000053,4,71.78,295.83,26.1,322.64 -6414,7,E06000053,4,74.57,295.83,26.1,322.64 -6659,9,E06000053,1,49.41,163.46,26.1,179.53 -6985,9,E06000053,2,55.93,207.68,26.1,226.44 -7311,9,E06000053,3,62.45,242.51,26.1,265.29 -7637,9,E06000053,4,71.78,369.81,26.1,403.3 -7963,10,E06000053,0,54.33,266.69,18.44,291.74 -140,1,E09000019,1,66.17,146.84,26.1,199.38 -466,1,E09000019,2,78.29,158.63,26.1,194.01 -792,1,E09000019,3,84.82,168.29,26.1,228.29 -1118,1,E09000019,4,102.51,188.66,26.1,254.03 -1444,3,E09000019,1,58.72,120.05,26.1,147.91 -1770,3,E09000019,2,64.31,140.42,26.1,176.86 -2096,3,E09000019,3,71.78,160.78,26.1,202.58 -2422,3,E09000019,4,83.89,262.61,26.1,263.68 -2748,2,E09000019,0,69.7,313.55,18.44,497.44 -3074,4,E09000019,0,59.45,367.77,18.44,398.42 -3400,6,E09000019,0,69.7,723.76,18.44,789.76 -3726,8,E09000019,0,59.45,723.76,18.44,789.76 -3968,5,E09000019,1,66.17,335.49,26.1,365.5 -4182,7,E09000019,1,58.72,335.49,26.1,365.5 -4583,5,E09000019,2,78.29,452.33,26.1,493.07 -4683,7,E09000019,2,64.31,452.33,26.1,493.07 -5235,5,E09000019,3,84.82,529.51,26.1,576.67 -5335,7,E09000019,3,71.78,529.51,26.1,576.67 -5887,7,E09000019,4,83.89,658.13,26.1,718.15 -5920,5,E09000019,4,102.51,658.13,26.1,718.15 -6660,9,E09000019,1,66.17,419.36,26.1,456.88 -6986,9,E09000019,2,78.29,565.41,26.1,616.32 -7312,9,E09000019,3,84.82,661.89,26.1,720.83 -7638,9,E09000019,4,102.51,822.66,26.1,897.7 -7964,10,E09000019,0,69.7,904.69,18.44,987.21 -141,1,E09000020,1,66.17,146.84,26.1,199.38 -467,1,E09000020,2,78.29,158.63,26.1,194.01 -793,1,E09000020,3,84.82,168.29,26.1,228.29 -1119,1,E09000020,4,102.51,188.66,26.1,254.03 -1445,3,E09000020,1,58.72,120.05,26.1,147.91 -1771,3,E09000020,2,64.31,140.42,26.1,176.86 -2097,3,E09000020,3,71.78,160.78,26.1,202.58 -2423,3,E09000020,4,83.89,262.61,26.1,263.68 -2749,2,E09000020,0,69.7,313.55,18.44,497.44 -3075,4,E09000020,0,59.45,367.77,18.44,398.42 -3401,6,E09000020,0,69.7,3175.58,18.44,3464.37 -3727,8,E09000020,0,59.45,3175.58,18.44,3464.37 -3969,5,E09000020,1,66.17,486.62,26.1,531.67 -4183,7,E09000020,1,58.72,486.62,26.1,531.67 -4584,5,E09000020,2,78.29,735.31,26.1,802.83 -4684,7,E09000020,2,64.31,735.31,26.1,802.83 -5236,5,E09000020,3,84.82,1568.16,26.1,1709.64 -5336,7,E09000020,3,71.78,1568.16,26.1,1709.64 -5888,7,E09000020,4,83.89,2888.71,26.1,3150.23 -5921,5,E09000020,4,102.51,2888.71,26.1,3150.23 -6661,9,E09000020,1,66.17,608.29,26.1,664.55 -6987,9,E09000020,2,78.29,919.14,26.1,1003.53 -7313,9,E09000020,3,84.82,1960.2,26.1,2137.04 -7639,9,E09000020,4,102.51,3610.88,26.1,3937.78 -7965,10,E09000020,0,69.7,3969.47,18.44,4330.46 -143,1,E07000146,1,54.99,120.05,26.1,150.06 -469,1,E07000146,2,65.24,143.62,26.1,169.36 -795,1,E07000146,3,71.78,157.56,26.1,182.22 -1121,1,E07000146,4,82.02,172.58,26.1,180.08 -1447,3,E07000146,1,50.34,100.76,26.1,132.91 -1773,3,E07000146,2,58.72,118.97,26.1,133.98 -2099,3,E07000146,3,64.31,131.84,26.1,144.7 -2425,3,E07000146,4,71.78,150.06,26.1,160.78 -2751,2,E07000146,0,35.87,223.96,18.44,418.45 -3077,4,E07000146,0,55.36,134.38,18.44,314.73 -3403,6,E07000146,0,35.87,269.94,18.44,294.71 -3729,8,E07000146,0,55.36,269.94,18.44,294.71 -4141,5,E07000146,1,54.99,100.76,26.1,110.39 -4258,7,E07000146,1,50.34,100.76,26.1,110.39 -4722,5,E07000146,2,65.24,126.48,26.1,138.27 -4984,7,E07000146,2,58.72,126.48,26.1,138.27 -5441,5,E07000146,3,71.78,148.99,26.1,161.86 -5627,7,E07000146,3,64.31,148.99,26.1,161.86 -6151,5,E07000146,4,82.02,245.47,26.1,267.97 -6289,7,E07000146,4,71.78,245.47,26.1,267.97 -6663,9,E07000146,1,54.99,125.95,26.1,138.01 -6989,9,E07000146,2,65.24,158.09,26.1,172.84 -7315,9,E07000146,3,71.78,186.23,26.1,202.34 -7641,9,E07000146,4,82.02,306.81,26.1,334.98 -7967,10,E07000146,0,35.87,337.42,18.44,368.37 -144,1,E06000010,1,51.27,92.19,26.1,114.68 -470,1,E06000010,2,58.72,109.33,26.1,141.49 -796,1,E06000010,3,63.38,121.11,26.1,162.93 -1122,1,E06000010,4,73.64,145.77,26.1,180.08 -1448,3,E06000010,1,46.6,82.54,26.1,93.26 -1774,3,E06000010,2,53.13,113.61,26.1,145.77 -2100,3,E06000010,3,56.86,105.05,26.1,114.68 -2426,3,E06000010,4,64.31,122.19,26.1,176.86 -2752,2,E06000010,0,52.28,232.2,18.44,319.44 -3078,4,E06000010,0,51.26,159.13,18.44,188.6 -3404,6,E06000010,0,52.28,189.79,18.44,206.28 -3730,8,E06000010,0,51.26,189.79,18.44,206.28 -4398,5,E06000010,1,51.27,82.54,26.1,88.96 -4552,7,E06000010,1,46.6,82.54,26.1,88.96 -4820,7,E06000010,2,53.13,103.98,26.1,113.61 -4878,5,E06000010,2,58.72,103.98,26.1,113.61 -5509,5,E06000010,3,63.38,126.48,26.1,138.27 -5856,7,E06000010,3,56.86,126.48,26.1,138.27 -6114,5,E06000010,4,73.64,172.58,26.1,187.58 -6212,7,E06000010,4,64.31,172.58,26.1,187.58 -6664,9,E06000010,1,51.27,103.19,26.1,111.21 -6990,9,E06000010,2,53.13,129.97,26.1,142.02 -7316,9,E06000010,3,63.38,158.09,26.1,172.84 -7642,9,E06000010,4,73.64,215.73,26.1,234.49 -7968,10,E06000010,0,52.28,237.24,18.44,257.84 -145,1,E09000021,1,66.17,146.84,26.1,199.38 -471,1,E09000021,2,78.29,158.63,26.1,194.01 -797,1,E09000021,3,84.82,168.29,26.1,228.29 -1123,1,E09000021,4,102.51,188.66,26.1,254.03 -1449,3,E09000021,1,58.72,120.05,26.1,147.91 -1775,3,E09000021,2,64.31,140.42,26.1,176.86 -2101,3,E09000021,3,71.78,160.78,26.1,202.58 -2427,3,E09000021,4,83.89,262.61,26.1,263.68 -2753,2,E09000021,0,69.7,313.55,18.44,497.44 -3079,4,E09000021,0,59.45,367.77,18.44,398.42 -3405,6,E09000021,0,69.7,623.56,18.44,678.97 -3731,8,E09000021,0,59.45,623.56,18.44,678.97 -3970,5,E09000021,1,66.17,211.17,26.1,230.44 -4184,7,E09000021,1,58.72,211.17,26.1,230.44 -4585,5,E09000021,2,78.29,273.34,26.1,297.99 -4685,7,E09000021,2,64.31,273.34,26.1,297.99 -5237,5,E09000021,3,84.82,339.77,26.1,370.87 -5337,7,E09000021,3,71.78,339.77,26.1,370.87 -5889,7,E09000021,4,83.89,567.02,26.1,617.4 -5922,5,E09000021,4,102.51,567.02,26.1,617.4 -6665,9,E09000021,1,66.17,263.95,26.1,288.07 -6991,9,E09000021,2,78.29,341.67,26.1,372.48 -7317,9,E09000021,3,84.82,424.73,26.1,463.59 -7643,9,E09000021,4,102.51,708.78,26.1,771.75 -7969,10,E09000021,0,69.7,779.44,18.44,848.71 -146,1,E08000034,1,51.27,92.19,26.1,114.68 -472,1,E08000034,2,58.72,109.33,26.1,141.49 -798,1,E08000034,3,63.38,121.11,26.1,162.93 -1124,1,E08000034,4,73.64,145.77,26.1,180.08 -1450,3,E08000034,1,46.6,82.54,26.1,93.26 -1776,3,E08000034,2,53.13,113.61,26.1,145.77 -2102,3,E08000034,3,56.86,105.05,26.1,114.68 -2428,3,E08000034,4,64.31,122.19,26.1,176.86 -2754,2,E08000034,0,52.28,232.2,18.44,319.44 -3080,4,E08000034,0,51.26,159.13,18.44,188.6 -3406,6,E08000034,0,52.28,213.35,18.44,233.38 -3732,8,E08000034,0,51.26,213.35,18.44,233.38 -4399,5,E08000034,1,51.27,97.54,26.1,106.12 -4553,7,E08000034,1,46.6,97.54,26.1,106.12 -4821,7,E08000034,2,53.13,114.68,26.1,124.33 -4879,5,E08000034,2,58.72,114.68,26.1,124.33 -5510,5,E08000034,3,63.38,136.13,26.1,148.99 -5857,7,E08000034,3,56.86,136.13,26.1,148.99 -6115,5,E08000034,4,73.64,194.01,26.1,212.24 -6213,7,E08000034,4,64.31,194.01,26.1,212.24 -6666,9,E08000034,1,51.27,121.95,26.1,132.65 -6992,9,E08000034,2,53.13,143.37,26.1,155.41 -7318,9,E08000034,3,63.38,170.16,26.1,186.23 -7644,9,E08000034,4,73.64,242.51,26.1,265.29 -7970,10,E08000034,0,52.28,266.69,18.44,291.74 -147,1,E08000011,1,52.2,94.33,26.1,117.9 -473,1,E08000011,2,59.66,108.27,26.1,136.13 -799,1,E08000011,3,66.17,121.11,26.1,146.84 -1125,1,E08000011,4,72.71,135.06,26.1,160.78 -1451,3,E08000011,1,43.8,86.81,26.1,101.83 -1777,3,E08000011,2,54.06,95.42,26.1,114.68 -2103,3,E08000011,3,58.72,106.12,26.1,125.4 -2429,3,E08000011,4,55.93,120.05,26.1,135.06 -2755,2,E08000011,0,55.36,236.93,18.44,338.29 -3081,4,E08000011,0,32.8,464.43,18.44,592.92 -3407,6,E08000011,0,55.36,226.32,18.44,246.36 -3733,8,E08000011,0,32.8,226.32,18.44,246.36 -4368,5,E08000011,1,52.2,110.39,26.1,120.05 -4480,7,E08000011,1,43.8,110.39,26.1,120.05 -4938,5,E08000011,2,59.66,126.48,26.1,138.27 -5076,7,E08000011,2,54.06,126.48,26.1,138.27 -5581,5,E08000011,3,66.17,143.62,26.1,156.49 -5756,7,E08000011,3,58.72,143.62,26.1,156.49 -6329,5,E08000011,4,72.71,205.81,26.1,224.01 -6380,7,E08000011,4,55.93,205.81,26.1,224.01 -6667,9,E08000011,1,52.2,138.01,26.1,150.06 -6993,9,E08000011,2,59.66,158.09,26.1,172.84 -7319,9,E08000011,3,66.17,179.53,26.1,195.6 -7645,9,E08000011,4,72.71,257.26,26.1,280.03 -7971,10,E08000011,0,55.36,282.91,18.44,307.95 -148,1,E09000022,1,66.17,146.84,26.1,199.38 -474,1,E09000022,2,78.29,158.63,26.1,194.01 -800,1,E09000022,3,84.82,168.29,26.1,228.29 -1126,1,E09000022,4,102.51,188.66,26.1,254.03 -1452,3,E09000022,1,58.72,120.05,26.1,147.91 -1778,3,E09000022,2,64.31,140.42,26.1,176.86 -2104,3,E09000022,3,71.78,160.78,26.1,202.58 -2430,3,E09000022,4,83.89,262.61,26.1,263.68 -2756,2,E09000022,0,69.7,313.55,18.44,497.44 -3082,4,E09000022,0,59.45,367.77,18.44,398.42 -3408,6,E09000022,0,69.7,678.97,18.44,741.43 -3734,8,E09000022,0,59.45,678.97,18.44,741.43 -3971,5,E09000022,1,66.17,276.55,26.1,301.2 -4185,7,E09000022,1,58.72,276.55,26.1,301.2 -4586,5,E09000022,2,78.29,330.14,26.1,360.15 -4686,7,E09000022,2,64.31,330.14,26.1,360.15 -5238,5,E09000022,3,84.82,433.04,26.1,472.7 -5338,7,E09000022,3,71.78,433.04,26.1,472.7 -5890,7,E09000022,4,83.89,619.55,26.1,674.22 -5923,5,E09000022,4,102.51,619.55,26.1,674.22 -6668,9,E09000022,1,66.17,345.69,26.1,376.51 -6994,9,E09000022,2,78.29,412.67,26.1,450.18 -7320,9,E09000022,3,84.82,541.3,26.1,590.86 -7646,9,E09000022,4,102.51,774.45,26.1,842.76 -7972,10,E09000022,0,69.7,848.71,18.44,926.8 -149,1,E07000121,1,52.2,94.33,26.1,117.9 -475,1,E07000121,2,59.66,108.27,26.1,136.13 -801,1,E07000121,3,66.17,121.11,26.1,146.84 -1127,1,E07000121,4,72.71,135.06,26.1,160.78 -1453,3,E07000121,1,43.8,86.81,26.1,101.83 -1779,3,E07000121,2,54.06,95.42,26.1,114.68 -2105,3,E07000121,3,58.72,106.12,26.1,125.4 -2431,3,E07000121,4,55.93,120.05,26.1,135.06 -2757,2,E07000121,0,55.36,236.93,18.44,338.29 -3083,4,E07000121,0,32.8,464.43,18.44,592.92 -3409,6,E07000121,0,55.36,200.38,18.44,219.25 -3735,8,E07000121,0,32.8,200.38,18.44,219.25 -4369,5,E07000121,1,52.2,110.39,26.1,120.05 -4481,7,E07000121,1,43.8,110.39,26.1,120.05 -4939,5,E07000121,2,59.66,131.84,26.1,144.7 -5077,7,E07000121,2,54.06,131.84,26.1,144.7 -5582,5,E07000121,3,66.17,148.99,26.1,161.86 -5757,7,E07000121,3,58.72,148.99,26.1,161.86 -6330,5,E07000121,4,72.71,182.22,26.1,199.38 -6381,7,E07000121,4,55.93,182.22,26.1,199.38 -6669,9,E07000121,1,52.2,138.01,26.1,150.06 -6995,9,E07000121,2,59.66,164.8,26.1,180.87 -7321,9,E07000121,3,66.17,186.23,26.1,202.34 -7647,9,E07000121,4,72.71,227.8,26.1,249.22 -7973,10,E07000121,0,55.36,250.47,18.44,274.05 -150,1,E08000035,1,51.27,92.19,26.1,114.68 -476,1,E08000035,2,58.72,109.33,26.1,141.49 -802,1,E08000035,3,63.38,121.11,26.1,162.93 -1128,1,E08000035,4,73.64,145.77,26.1,180.08 -1454,3,E08000035,1,46.6,82.54,26.1,93.26 -1780,3,E08000035,2,53.13,113.61,26.1,145.77 -2106,3,E08000035,3,56.86,105.05,26.1,114.68 -2432,3,E08000035,4,64.31,122.19,26.1,176.86 -2758,2,E08000035,0,52.28,232.2,18.44,319.44 -3084,4,E08000035,0,51.26,159.13,18.44,188.6 -3410,6,E08000035,0,52.28,455,18.44,496.26 -3736,8,E08000035,0,51.26,455,18.44,496.26 -4400,5,E08000035,1,51.27,126.48,26.1,138.27 -4554,7,E08000035,1,46.6,126.48,26.1,138.27 -4822,7,E08000035,2,53.13,155.41,26.1,169.36 -4880,5,E08000035,2,58.72,155.41,26.1,169.36 -5511,5,E08000035,3,63.38,190.79,26.1,207.96 -5858,7,E08000035,3,56.86,190.79,26.1,207.96 -6116,5,E08000035,4,73.64,413.74,26.1,451.27 -6214,7,E08000035,4,64.31,413.74,26.1,451.27 -6670,9,E08000035,1,51.27,158.09,26.1,172.84 -6996,9,E08000035,2,53.13,194.27,26.1,211.69 -7322,9,E08000035,3,63.38,238.5,26.1,259.93 -7648,9,E08000035,4,73.64,517.19,26.1,564.06 -7974,10,E08000035,0,52.28,568.74,18.44,620.3 -151,1,E06000016,1,52.2,100.76,26.1,123.26 -477,1,E06000016,2,62.45,115.76,26.1,130.77 -803,1,E06000016,3,68.97,127.56,26.1,139.34 -1129,1,E06000016,4,76.43,159.7,26.1,168.29 -1455,3,E06000016,1,46.6,91.12,26.1,108.27 -1781,3,E06000016,2,53.13,97.54,26.1,109.33 -2107,3,E06000016,3,58.72,105.05,26.1,120.05 -2433,3,E06000016,4,64.31,123.26,26.1,123.26 -2759,2,E06000016,0,51.26,238.1,18.44,357.17 -3085,4,E06000016,0,49.2,113.15,18.44,122.59 -3411,6,E06000016,0,51.26,218.08,18.44,238.1 -3737,8,E06000016,0,49.2,218.08,18.44,238.1 -4332,5,E06000016,1,52.2,108.27,26.1,117.9 -4432,7,E06000016,1,46.6,108.27,26.1,117.9 -5028,5,E06000016,2,62.45,126.48,26.1,138.27 -5168,7,E06000016,2,53.13,126.48,26.1,138.27 -5671,5,E06000016,3,68.97,138.27,26.1,150.06 -5829,7,E06000016,3,58.72,138.27,26.1,150.06 -6246,5,E06000016,4,76.43,199.38,26.1,216.52 -6490,7,E06000016,4,64.31,199.38,26.1,216.52 -6671,9,E06000016,1,52.2,135.33,26.1,147.38 -6997,9,E06000016,2,62.45,158.09,26.1,172.84 -7323,9,E06000016,3,68.97,172.84,26.1,187.57 -7649,9,E06000016,4,76.43,249.22,26.1,270.66 -7975,10,E06000016,0,51.26,272.59,18.44,297.64 -152,1,E07000063,1,57.79,124.33,26.1,177.93 -478,1,E07000063,2,71.78,147.91,26.1,188.66 -804,1,E07000063,3,82.02,162.93,26.1,205.81 -1130,1,E07000063,4,90.42,180.08,26.1,224.01 -1456,3,E07000063,1,52.2,116.83,26.1,160.78 -1782,3,E07000063,2,63.38,130.77,26.1,146.84 -2108,3,E07000063,3,68.97,151.13,26.1,187.58 -2434,3,E07000063,4,73.64,186.51,26.1,196.15 -2760,2,E07000063,0,61.49,265.21,18.44,340.65 -3086,4,E07000063,0,48.18,193.32,18.44,202.73 -3412,6,E07000063,0,61.49,374.83,18.44,409.03 -3738,8,E07000063,0,48.18,374.83,18.44,409.03 -4011,5,E07000063,1,57.79,143.62,26.1,156.49 -4078,7,E07000063,1,52.2,143.62,26.1,156.49 -4626,5,E07000063,2,71.78,188.66,26.1,205.81 -4773,7,E07000063,2,63.38,188.66,26.1,205.81 -5278,5,E07000063,3,82.02,228.29,26.1,247.6 -5378,7,E07000063,3,68.97,228.29,26.1,247.6 -5963,5,E07000063,4,90.42,340.85,26.1,371.94 -6067,7,E07000063,4,73.64,340.85,26.1,371.94 -6672,9,E07000063,1,57.79,179.53,26.1,195.6 -6998,9,E07000063,2,71.78,235.82,26.1,257.26 -7324,9,E07000063,3,82.02,285.39,26.1,309.5 -7650,9,E07000063,4,90.42,426.06,26.1,464.91 -7976,10,E07000063,0,61.49,468.55,18.44,511.3 -153,1,E09000023,1,66.17,146.84,26.1,199.38 -479,1,E09000023,2,78.29,158.63,26.1,194.01 -805,1,E09000023,3,84.82,168.29,26.1,228.29 -1131,1,E09000023,4,102.51,188.66,26.1,254.03 -1457,3,E09000023,1,58.72,120.05,26.1,147.91 -1783,3,E09000023,2,64.31,140.42,26.1,176.86 -2109,3,E09000023,3,71.78,160.78,26.1,202.58 -2435,3,E09000023,4,83.89,262.61,26.1,263.68 -2761,2,E09000023,0,69.7,313.55,18.44,497.44 -3087,4,E09000023,0,59.45,367.77,18.44,398.42 -3413,6,E09000023,0,69.7,519.83,18.44,565.81 -3739,8,E09000023,0,59.45,519.83,18.44,565.81 -3972,5,E09000023,1,66.17,194.01,26.1,212.24 -4186,7,E09000023,1,58.72,194.01,26.1,212.24 -4587,5,E09000023,2,78.29,250.82,26.1,273.34 -4687,7,E09000023,2,64.31,250.82,26.1,273.34 -5239,5,E09000023,3,84.82,319.42,26.1,348.36 -5339,7,E09000023,3,71.78,319.42,26.1,348.36 -5891,7,E09000023,4,83.89,472.7,26.1,514.5 -5924,5,E09000023,4,102.51,472.7,26.1,514.5 -6673,9,E09000023,1,66.17,242.51,26.1,265.29 -6999,9,E09000023,2,78.29,313.51,26.1,341.67 -7325,9,E09000023,3,84.82,399.29,26.1,435.45 -7651,9,E09000023,4,102.51,590.86,26.1,643.13 -7977,10,E09000023,0,69.7,649.79,18.44,707.26 -154,1,E07000194,1,53.13,99.69,26.1,125.4 -480,1,E07000194,2,58.72,117.9,26.1,138.27 -806,1,E07000194,3,69.9,133.98,26.1,161.86 -1132,1,E07000194,4,81.09,162.93,26.1,180.08 -1458,3,E07000194,1,46.6,88.96,26.1,98.62 -1784,3,E07000194,2,50.34,95.42,26.1,103.98 -2110,3,E07000194,3,60.59,105.05,26.1,121.11 -2436,3,E07000194,4,68.97,128.63,26.1,128.63 -2762,2,E07000194,0,38.95,242.82,18.44,378.37 -3088,4,E07000194,0,46.12,106.09,18.44,106.09 -3414,6,E07000194,0,38.95,299.41,18.44,326.52 -3740,8,E07000194,0,46.12,299.41,18.44,326.52 -4288,5,E07000194,1,53.13,114.68,26.1,124.33 -4509,7,E07000194,1,46.6,114.68,26.1,124.33 -4898,5,E07000194,2,58.72,136.13,26.1,148.99 -5194,7,E07000194,2,50.34,136.13,26.1,148.99 -5529,5,E07000194,3,69.9,172.58,26.1,187.58 -5785,7,E07000194,3,60.59,172.58,26.1,187.58 -6181,5,E07000194,4,81.09,272.26,26.1,296.91 -6446,7,E07000194,4,68.97,272.26,26.1,296.91 -6674,9,E07000194,1,53.13,143.37,26.1,155.41 -7000,9,E07000194,2,58.72,170.16,26.1,186.23 -7326,9,E07000194,3,69.9,215.73,26.1,234.49 -7652,9,E07000194,4,81.09,340.33,26.1,371.13 -7978,10,E07000194,0,38.95,374.27,18.44,408.14 -155,1,E07000138,1,52.2,100.76,26.1,123.26 -481,1,E07000138,2,62.45,115.76,26.1,130.77 -807,1,E07000138,3,68.97,127.56,26.1,139.34 -1133,1,E07000138,4,76.43,159.7,26.1,168.29 -1459,3,E07000138,1,46.6,91.12,26.1,108.27 -1785,3,E07000138,2,53.13,97.54,26.1,109.33 -2111,3,E07000138,3,58.72,105.05,26.1,120.05 -2437,3,E07000138,4,64.31,123.26,26.1,123.26 -2763,2,E07000138,0,51.26,238.1,18.44,357.17 -3089,4,E07000138,0,49.2,113.15,18.44,122.59 -3415,6,E07000138,0,51.26,194.49,18.44,210.99 -3741,8,E07000138,0,49.2,194.49,18.44,210.99 -4333,5,E07000138,1,52.2,103.98,26.1,113.61 -4433,7,E07000138,1,46.6,103.98,26.1,113.61 -5029,5,E07000138,2,62.45,118.97,26.1,129.7 -5169,7,E07000138,2,53.13,118.97,26.1,129.7 -5672,5,E07000138,3,68.97,136.13,26.1,148.99 -5830,7,E07000138,3,58.72,136.13,26.1,148.99 -6247,5,E07000138,4,76.43,176.86,26.1,191.86 -6491,7,E07000138,4,64.31,176.86,26.1,191.86 -6675,9,E07000138,1,52.2,129.97,26.1,142.02 -7001,9,E07000138,2,62.45,148.72,26.1,162.13 -7327,9,E07000138,3,68.97,170.16,26.1,186.23 -7653,9,E07000138,4,76.43,221.08,26.1,239.84 -7979,10,E07000138,0,51.26,243.12,18.44,263.73 -156,1,E08000012,1,52.2,94.33,26.1,117.9 -482,1,E08000012,2,59.66,108.27,26.1,136.13 -808,1,E08000012,3,66.17,121.11,26.1,146.84 -1134,1,E08000012,4,72.71,135.06,26.1,160.78 -1460,3,E08000012,1,43.8,86.81,26.1,101.83 -1786,3,E08000012,2,54.06,95.42,26.1,114.68 -2112,3,E08000012,3,58.72,106.12,26.1,125.4 -2438,3,E08000012,4,55.93,120.05,26.1,135.06 -2764,2,E08000012,0,55.36,236.93,18.44,338.29 -3090,4,E08000012,0,32.8,464.43,18.44,592.92 -3416,6,E08000012,0,55.36,252.25,18.44,273.47 -3742,8,E08000012,0,32.8,252.25,18.44,273.47 -4370,5,E08000012,1,52.2,114.68,26.1,124.33 -4482,7,E08000012,1,43.8,114.68,26.1,124.33 -4940,5,E08000012,2,59.66,148.99,26.1,161.86 -5078,7,E08000012,2,54.06,148.99,26.1,161.86 -5583,5,E08000012,3,66.17,143.62,26.1,156.49 -5758,7,E08000012,3,58.72,143.62,26.1,156.49 -6331,5,E08000012,4,72.71,229.37,26.1,248.67 -6382,7,E08000012,4,55.93,229.37,26.1,248.67 -6676,9,E08000012,1,52.2,143.37,26.1,155.41 -7002,9,E08000012,2,59.66,186.23,26.1,202.34 -7328,9,E08000012,3,66.17,179.53,26.1,195.6 -7654,9,E08000012,4,72.71,286.72,26.1,310.84 -7980,10,E08000012,0,55.36,315.32,18.44,341.84 -157,1,E06000032,1,54.99,120.05,26.1,150.06 -483,1,E06000032,2,65.24,143.62,26.1,169.36 -809,1,E06000032,3,71.78,157.56,26.1,182.22 -1135,1,E06000032,4,82.02,172.58,26.1,180.08 -1461,3,E06000032,1,50.34,100.76,26.1,132.91 -1787,3,E06000032,2,58.72,118.97,26.1,133.98 -2113,3,E06000032,3,64.31,131.84,26.1,144.7 -2439,3,E06000032,4,71.78,150.06,26.1,160.78 -2765,2,E06000032,0,35.87,223.96,18.44,418.45 -3091,4,E06000032,0,55.36,134.38,18.44,314.73 -3417,6,E06000032,0,35.87,275.83,18.44,300.58 -3743,8,E06000032,0,55.36,275.83,18.44,300.58 -4142,5,E06000032,1,54.99,121.11,26.1,131.84 -4259,7,E06000032,1,50.34,121.11,26.1,131.84 -4723,5,E06000032,2,65.24,148.99,26.1,161.86 -4985,7,E06000032,2,58.72,148.99,26.1,161.86 -5442,5,E06000032,3,71.78,182.22,26.1,199.38 -5628,7,E06000032,3,64.31,182.22,26.1,199.38 -6152,5,E06000032,4,82.02,250.82,26.1,273.34 -6290,7,E06000032,4,71.78,250.82,26.1,273.34 -6677,9,E06000032,1,54.99,151.41,26.1,164.8 -7003,9,E06000032,2,65.24,186.23,26.1,202.34 -7329,9,E06000032,3,71.78,227.8,26.1,249.22 -7655,9,E06000032,4,82.02,313.51,26.1,341.67 -7981,10,E06000032,0,35.87,344.81,18.44,375.73 -158,1,E07000110,1,57.79,124.33,26.1,177.93 -484,1,E07000110,2,71.78,147.91,26.1,188.66 -810,1,E07000110,3,82.02,162.93,26.1,205.81 -1136,1,E07000110,4,90.42,180.08,26.1,224.01 -1462,3,E07000110,1,52.2,116.83,26.1,160.78 -1788,3,E07000110,2,63.38,130.77,26.1,146.84 -2114,3,E07000110,3,68.97,151.13,26.1,187.58 -2440,3,E07000110,4,73.64,186.51,26.1,196.15 -2766,2,E07000110,0,61.49,265.21,18.44,340.65 -3092,4,E07000110,0,48.18,193.32,18.44,202.73 -3418,6,E07000110,0,61.49,312.38,18.44,340.65 -3744,8,E07000110,0,48.18,312.38,18.44,340.65 -4012,5,E07000110,1,57.79,136.13,26.1,148.99 -4079,7,E07000110,1,52.2,136.13,26.1,148.99 -4627,5,E07000110,2,71.78,166.14,26.1,181.15 -4774,7,E07000110,2,63.38,166.14,26.1,181.15 -5279,5,E07000110,3,82.02,194.01,26.1,212.24 -5379,7,E07000110,3,68.97,194.01,26.1,212.24 -5964,5,E07000110,4,90.42,284.04,26.1,309.78 -6068,7,E07000110,4,73.64,284.04,26.1,309.78 -6678,9,E07000110,1,57.79,170.16,26.1,186.23 -7004,9,E07000110,2,71.78,207.68,26.1,226.44 -7330,9,E07000110,3,82.02,242.51,26.1,265.29 -7656,9,E07000110,4,90.42,355.06,26.1,387.21 -7982,10,E07000110,0,61.49,390.47,18.44,425.82 -159,1,E07000074,1,54.99,120.05,26.1,150.06 -485,1,E07000074,2,65.24,143.62,26.1,169.36 -811,1,E07000074,3,71.78,157.56,26.1,182.22 -1137,1,E07000074,4,82.02,172.58,26.1,180.08 -1463,3,E07000074,1,50.34,100.76,26.1,132.91 -1789,3,E07000074,2,58.72,118.97,26.1,133.98 -2115,3,E07000074,3,64.31,131.84,26.1,144.7 -2441,3,E07000074,4,71.78,150.06,26.1,160.78 -2767,2,E07000074,0,35.87,223.96,18.44,418.45 -3093,4,E07000074,0,55.36,134.38,18.44,314.73 -3419,6,E07000074,0,35.87,325.34,18.44,354.8 -3745,8,E07000074,0,55.36,325.34,18.44,354.8 -4143,5,E07000074,1,54.99,126.48,26.1,138.27 -4260,7,E07000074,1,50.34,126.48,26.1,138.27 -4724,5,E07000074,2,65.24,166.14,26.1,181.15 -4986,7,E07000074,2,58.72,166.14,26.1,181.15 -5443,5,E07000074,3,71.78,194.01,26.1,212.24 -5629,7,E07000074,3,64.31,194.01,26.1,212.24 -6153,5,E07000074,4,82.02,295.83,26.1,322.64 -6291,7,E07000074,4,71.78,295.83,26.1,322.64 -6679,9,E07000074,1,54.99,158.09,26.1,172.84 -7005,9,E07000074,2,65.24,207.68,26.1,226.44 -7331,9,E07000074,3,71.78,242.51,26.1,265.29 -7657,9,E07000074,4,82.02,369.81,26.1,403.3 -7983,10,E07000074,0,35.87,406.66,18.44,443.51 -160,1,E07000235,1,53.13,99.69,26.1,125.4 -486,1,E07000235,2,58.72,117.9,26.1,138.27 -812,1,E07000235,3,69.9,133.98,26.1,161.86 -1138,1,E07000235,4,81.09,162.93,26.1,180.08 -1464,3,E07000235,1,46.6,88.96,26.1,98.62 -1790,3,E07000235,2,50.34,95.42,26.1,103.98 -2116,3,E07000235,3,60.59,105.05,26.1,121.11 -2442,3,E07000235,4,68.97,128.63,26.1,128.63 -2768,2,E07000235,0,38.95,242.82,18.44,378.37 -3094,4,E07000235,0,46.12,106.09,18.44,106.09 -3420,6,E07000235,0,38.95,300.58,18.44,327.69 -3746,8,E07000235,0,46.12,300.58,18.44,327.69 -4289,5,E07000235,1,53.13,114.68,26.1,124.33 -4510,7,E07000235,1,46.6,114.68,26.1,124.33 -4899,5,E07000235,2,58.72,136.13,26.1,148.99 -5195,7,E07000235,2,50.34,136.13,26.1,148.99 -5530,5,E07000235,3,69.9,166.14,26.1,181.15 -5786,7,E07000235,3,60.59,166.14,26.1,181.15 -6182,5,E07000235,4,81.09,273.34,26.1,297.99 -6447,7,E07000235,4,68.97,273.34,26.1,297.99 -6680,9,E07000235,1,53.13,143.37,26.1,155.41 -7006,9,E07000235,2,58.72,170.16,26.1,186.23 -7332,9,E07000235,3,69.9,207.68,26.1,226.44 -7658,9,E07000235,4,81.09,341.67,26.1,372.48 -7984,10,E07000235,0,38.95,375.73,18.44,409.61 -61,1,E08000003,1,52.2,94.33,26.1,117.9 -387,1,E08000003,2,59.66,108.27,26.1,136.13 -713,1,E08000003,3,66.17,121.11,26.1,146.84 -1039,1,E08000003,4,72.71,135.06,26.1,160.78 -1365,3,E08000003,1,43.8,86.81,26.1,101.83 -1691,3,E08000003,2,54.06,95.42,26.1,114.68 -2017,3,E08000003,3,58.72,106.12,26.1,125.4 -2343,3,E08000003,4,55.93,120.05,26.1,135.06 -2669,2,E08000003,0,55.36,236.93,18.44,338.29 -2995,4,E08000003,0,32.8,464.43,18.44,592.92 -3321,6,E08000003,0,55.36,300.58,18.44,327.69 -3647,8,E08000003,0,32.8,300.58,18.44,327.69 -4361,5,E08000003,1,52.2,131.84,26.1,144.7 -4473,7,E08000003,1,43.8,131.84,26.1,144.7 -4931,5,E08000003,2,59.66,155.41,26.1,169.36 -5069,7,E08000003,2,54.06,155.41,26.1,169.36 -5574,5,E08000003,3,66.17,175.78,26.1,191.86 -5749,7,E08000003,3,58.72,175.78,26.1,191.86 -6322,5,E08000003,4,72.71,273.34,26.1,297.99 -6373,7,E08000003,4,55.93,273.34,26.1,297.99 -6581,9,E08000003,1,52.2,164.8,26.1,180.87 -6907,9,E08000003,2,59.66,194.27,26.1,211.69 -7233,9,E08000003,3,66.17,219.74,26.1,239.84 -7559,9,E08000003,4,72.71,341.67,26.1,372.48 -7885,10,E08000003,0,55.36,375.73,18.44,409.61 -161,1,E07000174,1,52.2,100.76,26.1,123.26 -487,1,E07000174,2,62.45,115.76,26.1,130.77 -813,1,E07000174,3,68.97,127.56,26.1,139.34 -1139,1,E07000174,4,76.43,159.7,26.1,168.29 -1465,3,E07000174,1,46.6,91.12,26.1,108.27 -1791,3,E07000174,2,53.13,97.54,26.1,109.33 -2117,3,E07000174,3,58.72,105.05,26.1,120.05 -2443,3,E07000174,4,64.31,123.26,26.1,123.26 -2769,2,E07000174,0,51.26,238.1,18.44,357.17 -3095,4,E07000174,0,49.2,113.15,18.44,122.59 -3421,6,E07000174,0,51.26,200.38,18.44,219.25 -3747,8,E07000174,0,49.2,200.38,18.44,219.25 -4334,5,E07000174,1,52.2,88.96,26.1,97.54 -4434,7,E07000174,1,46.6,88.96,26.1,97.54 -5030,5,E07000174,2,62.45,110.39,26.1,120.05 -5170,7,E07000174,2,53.13,110.39,26.1,120.05 -5673,5,E07000174,3,68.97,126.48,26.1,138.27 -5831,7,E07000174,3,58.72,126.48,26.1,138.27 -6248,5,E07000174,4,76.43,182.22,26.1,199.38 -6492,7,E07000174,4,64.31,182.22,26.1,199.38 -6681,9,E07000174,1,52.2,111.21,26.1,121.95 -7007,9,E07000174,2,62.45,138.01,26.1,150.06 -7333,9,E07000174,3,68.97,158.09,26.1,172.84 -7659,9,E07000174,4,76.43,227.8,26.1,249.22 -7985,10,E07000174,0,51.26,250.47,18.44,274.05 -280,1,E06000035,1,57.79,124.33,26.1,177.93 -606,1,E06000035,2,71.78,147.91,26.1,188.66 -932,1,E06000035,3,82.02,162.93,26.1,205.81 -1258,1,E06000035,4,90.42,180.08,26.1,224.01 -1584,3,E06000035,1,52.2,116.83,26.1,160.78 -1910,3,E06000035,2,63.38,130.77,26.1,146.84 -2236,3,E06000035,3,68.97,151.13,26.1,187.58 -2562,3,E06000035,4,73.64,186.51,26.1,196.15 -2888,2,E06000035,0,61.49,265.21,18.44,340.65 -3214,4,E06000035,0,48.18,193.32,18.44,202.73 -3540,6,E06000035,0,61.49,300.58,18.44,327.69 -3866,8,E06000035,0,48.18,300.58,18.44,327.69 -4036,5,E06000035,1,57.79,126.48,26.1,138.27 -4103,7,E06000035,1,52.2,126.48,26.1,138.27 -4651,5,E06000035,2,71.78,148.99,26.1,161.86 -4798,7,E06000035,2,63.38,148.99,26.1,161.86 -5303,5,E06000035,3,82.02,172.58,26.1,187.58 -5403,7,E06000035,3,68.97,172.58,26.1,187.58 -5988,5,E06000035,4,90.42,273.34,26.1,297.99 -6092,7,E06000035,4,73.64,273.34,26.1,297.99 -6800,9,E06000035,1,57.79,158.09,26.1,172.84 -7126,9,E06000035,2,71.78,186.23,26.1,202.34 -7452,9,E06000035,3,82.02,215.73,26.1,234.49 -7778,9,E06000035,4,90.42,341.67,26.1,372.48 -8104,10,E06000035,0,61.49,375.73,18.44,409.61 -162,1,E07000133,1,52.2,100.76,26.1,123.26 -488,1,E07000133,2,62.45,115.76,26.1,130.77 -814,1,E07000133,3,68.97,127.56,26.1,139.34 -1140,1,E07000133,4,76.43,159.7,26.1,168.29 -1466,3,E07000133,1,46.6,91.12,26.1,108.27 -1792,3,E07000133,2,53.13,97.54,26.1,109.33 -2118,3,E07000133,3,58.72,105.05,26.1,120.05 -2444,3,E07000133,4,64.31,123.26,26.1,123.26 -2770,2,E07000133,0,51.26,238.1,18.44,357.17 -3096,4,E07000133,0,49.2,113.15,18.44,122.59 -3422,6,E07000133,0,51.26,312.38,18.44,340.65 -3748,8,E07000133,0,49.2,312.38,18.44,340.65 -4335,5,E07000133,1,52.2,98.62,26.1,108.27 -4435,7,E07000133,1,46.6,98.62,26.1,108.27 -5031,5,E07000133,2,62.45,121.11,26.1,131.84 -5171,7,E07000133,2,53.13,121.11,26.1,131.84 -5674,5,E07000133,3,68.97,138.27,26.1,150.06 -5832,7,E07000133,3,58.72,138.27,26.1,150.06 -6249,5,E07000133,4,76.43,284.04,26.1,309.78 -6493,7,E07000133,4,64.31,284.04,26.1,309.78 -6682,9,E07000133,1,52.2,123.26,26.1,135.33 -7008,9,E07000133,2,62.45,151.41,26.1,164.8 -7334,9,E07000133,3,68.97,172.84,26.1,187.57 -7660,9,E07000133,4,76.43,355.06,26.1,387.21 -7986,10,E07000133,0,51.26,390.47,18.44,425.82 -163,1,E07000187,1,49.41,108.27,26.1,141.49 -489,1,E07000187,2,55.93,122.19,26.1,145.77 -815,1,E07000187,3,62.45,142.56,26.1,162.93 -1141,1,E07000187,4,71.78,159.7,26.1,196.15 -1467,3,E07000187,1,47.54,90.03,26.1,212.24 -1793,3,E07000187,2,54.99,101.83,26.1,112.54 -2119,3,E07000187,3,62.45,110.39,26.1,127.56 -2445,3,E07000187,4,74.57,131.84,26.1,131.84 -2771,2,E07000187,0,54.33,228.68,18.44,354.8 -3097,4,E07000187,0,54.33,114.33,18.44,140.27 -3423,6,E07000187,0,54.33,300.58,18.44,327.69 -3749,8,E07000187,0,54.33,300.58,18.44,327.69 -3926,7,E07000187,1,47.54,108.27,26.1,117.9 -4210,5,E07000187,1,49.41,108.27,26.1,117.9 -4846,5,E07000187,2,55.93,136.13,26.1,148.99 -5123,7,E07000187,2,54.99,136.13,26.1,148.99 -5477,5,E07000187,3,62.45,172.58,26.1,187.58 -5703,7,E07000187,3,62.45,172.58,26.1,187.58 -6015,5,E07000187,4,71.78,273.34,26.1,297.99 -6415,7,E07000187,4,74.57,273.34,26.1,297.99 -6683,9,E07000187,1,49.41,135.33,26.1,147.38 -7009,9,E07000187,2,55.93,170.16,26.1,186.23 -7335,9,E07000187,3,62.45,215.73,26.1,234.49 -7661,9,E07000187,4,71.78,341.67,26.1,372.48 -7987,10,E07000187,0,54.33,375.73,18.44,409.61 -164,1,E09000024,1,66.17,146.84,26.1,199.38 -490,1,E09000024,2,78.29,158.63,26.1,194.01 -816,1,E09000024,3,84.82,168.29,26.1,228.29 -1142,1,E09000024,4,102.51,188.66,26.1,254.03 -1468,3,E09000024,1,58.72,120.05,26.1,147.91 -1794,3,E09000024,2,64.31,140.42,26.1,176.86 -2120,3,E09000024,3,71.78,160.78,26.1,202.58 -2446,3,E09000024,4,83.89,262.61,26.1,263.68 -2772,2,E09000024,0,69.7,313.55,18.44,497.44 -3098,4,E09000024,0,59.45,367.77,18.44,398.42 -3424,6,E09000024,0,69.7,648.32,18.44,706.08 -3750,8,E09000024,0,59.45,648.32,18.44,706.08 -3973,5,E09000024,1,66.17,240.09,26.1,261.54 -4187,7,E09000024,1,58.72,240.09,26.1,261.54 -4588,5,E09000024,2,78.29,307.63,26.1,335.49 -4688,7,E09000024,2,64.31,307.63,26.1,335.49 -5240,5,E09000024,3,84.82,375.16,26.1,409.45 -5340,7,E09000024,3,71.78,375.16,26.1,409.45 -5892,7,E09000024,4,83.89,589.54,26.1,642.06 -5925,5,E09000024,4,102.51,589.54,26.1,642.06 -6684,9,E09000024,1,66.17,300.12,26.1,326.92 -7010,9,E09000024,2,78.29,384.53,26.1,419.36 -7336,9,E09000024,3,84.82,468.95,26.1,511.83 -7662,9,E09000024,4,102.51,736.91,26.1,802.56 -7988,10,E09000024,0,69.7,810.39,18.44,882.59 -165,1,E07000042,1,49.41,108.27,26.1,141.49 -491,1,E07000042,2,55.93,122.19,26.1,145.77 -817,1,E07000042,3,62.45,142.56,26.1,162.93 -1143,1,E07000042,4,71.78,159.7,26.1,196.15 -1469,3,E07000042,1,47.54,90.03,26.1,212.24 -1795,3,E07000042,2,54.99,101.83,26.1,112.54 -2121,3,E07000042,3,62.45,110.39,26.1,127.56 -2447,3,E07000042,4,74.57,131.84,26.1,131.84 -2773,2,E07000042,0,54.33,228.68,18.44,354.8 -3099,4,E07000042,0,54.33,114.33,18.44,140.27 -3425,6,E07000042,0,54.33,275.83,18.44,300.58 -3751,8,E07000042,0,54.33,275.83,18.44,300.58 -3927,7,E07000042,1,47.54,103.98,26.1,113.61 -4211,5,E07000042,1,49.41,103.98,26.1,113.61 -4847,5,E07000042,2,55.93,131.84,26.1,144.7 -5124,7,E07000042,2,54.99,131.84,26.1,144.7 -5478,5,E07000042,3,62.45,166.14,26.1,182.22 -5704,7,E07000042,3,62.45,166.14,26.1,182.22 -6016,5,E07000042,4,71.78,250.82,26.1,273.34 -6416,7,E07000042,4,74.57,250.82,26.1,273.34 -6685,9,E07000042,1,49.41,129.97,26.1,142.02 -7011,9,E07000042,2,55.93,164.8,26.1,180.87 -7337,9,E07000042,3,62.45,207.68,26.1,227.8 -7663,9,E07000042,4,71.78,313.51,26.1,341.67 -7989,10,E07000042,0,54.33,344.81,18.44,375.73 -166,1,E07000203,1,54.99,120.05,26.1,150.06 -492,1,E07000203,2,65.24,143.62,26.1,169.36 -818,1,E07000203,3,71.78,157.56,26.1,182.22 -1144,1,E07000203,4,82.02,172.58,26.1,180.08 -1470,3,E07000203,1,50.34,100.76,26.1,132.91 -1796,3,E07000203,2,58.72,118.97,26.1,133.98 -2122,3,E07000203,3,64.31,131.84,26.1,144.7 -2448,3,E07000203,4,71.78,150.06,26.1,160.78 -2774,2,E07000203,0,35.87,223.96,18.44,418.45 -3100,4,E07000203,0,55.36,134.38,18.44,314.73 -3426,6,E07000203,0,35.87,319.44,18.44,347.72 -3752,8,E07000203,0,55.36,319.44,18.44,347.72 -4144,5,E07000203,1,54.99,101.83,26.1,111.47 -4261,7,E07000203,1,50.34,101.83,26.1,111.47 -4725,5,E07000203,2,65.24,126.48,26.1,138.27 -4987,7,E07000203,2,58.72,126.48,26.1,138.27 -5444,5,E07000203,3,71.78,160.78,26.1,175.78 -5630,7,E07000203,3,64.31,160.78,26.1,175.78 -6154,5,E07000203,4,82.02,290.49,26.1,316.21 -6292,7,E07000203,4,71.78,290.49,26.1,316.21 -6686,9,E07000203,1,54.99,127.29,26.1,139.34 -7012,9,E07000203,2,65.24,158.09,26.1,172.84 -7338,9,E07000203,3,71.78,200.97,26.1,219.74 -7664,9,E07000203,4,82.02,363.1,26.1,395.26 -7990,10,E07000203,0,35.87,399.32,18.44,434.66 -167,1,E07000228,1,57.79,124.33,26.1,177.93 -493,1,E07000228,2,71.78,147.91,26.1,188.66 -819,1,E07000228,3,82.02,162.93,26.1,205.81 -1145,1,E07000228,4,90.42,180.08,26.1,224.01 -1471,3,E07000228,1,52.2,116.83,26.1,160.78 -1797,3,E07000228,2,63.38,130.77,26.1,146.84 -2123,3,E07000228,3,68.97,151.13,26.1,187.58 -2449,3,E07000228,4,73.64,186.51,26.1,196.15 -2775,2,E07000228,0,61.49,265.21,18.44,340.65 -3101,4,E07000228,0,48.18,193.32,18.44,202.73 -3427,6,E07000228,0,61.49,497.44,18.44,543.41 -3753,8,E07000228,0,48.18,497.44,18.44,543.41 -4013,5,E07000228,1,57.79,155.41,26.1,169.36 -4080,7,E07000228,1,52.2,155.41,26.1,169.36 -4628,5,E07000228,2,71.78,194.01,26.1,212.24 -4775,7,E07000228,2,63.38,194.01,26.1,212.24 -5280,5,E07000228,3,82.02,271.19,26.1,295.83 -5380,7,E07000228,3,68.97,271.19,26.1,295.83 -5965,5,E07000228,4,90.42,453.4,26.1,494.14 -6069,7,E07000228,4,73.64,453.4,26.1,494.14 -6687,9,E07000228,1,57.79,194.27,26.1,211.69 -7013,9,E07000228,2,71.78,242.51,26.1,265.29 -7339,9,E07000228,3,82.02,338.98,26.1,369.81 -7665,9,E07000228,4,90.42,566.75,26.1,617.67 -7991,10,E07000228,0,61.49,621.79,18.44,679.26 -168,1,E06000002,1,51.27,88.96,26.1,98.62 -494,1,E06000002,2,57.79,102.91,26.1,121.11 -820,1,E06000002,3,61.52,114.68,26.1,160.78 -1146,1,E06000002,4,70.84,128.63,26.1,140.42 -1472,3,E06000002,1,42.87,100.76,26.1,106.12 -1798,3,E06000002,2,50.34,91.12,26.1,112.54 -2124,3,E06000002,3,54.06,106.12,26.1,125.4 -2450,3,E06000002,4,56.86,116.83,26.1,121.11 -2776,2,E06000002,0,55.36,234.56,18.44,337.12 -3102,4,E06000002,0,47.15,251.08,18.44,285.25 -3428,6,E06000002,0,55.36,213.35,18.44,233.38 -3754,8,E06000002,0,47.15,213.35,18.44,233.38 -4455,7,E06000002,1,42.87,98.62,26.1,108.27 -4536,5,E06000002,1,51.27,98.62,26.1,108.27 -5051,5,E06000002,2,57.79,115.76,26.1,125.4 -5102,7,E06000002,2,50.34,115.76,26.1,125.4 -5556,5,E06000002,3,61.52,133.98,26.1,146.84 -5731,7,E06000002,3,54.06,133.98,26.1,146.84 -6355,5,E06000002,4,70.84,194.01,26.1,212.24 -6513,7,E06000002,4,56.86,194.01,26.1,212.24 -6688,9,E06000002,1,42.87,123.26,26.1,135.33 -7014,9,E06000002,2,57.79,144.7,26.1,156.77 -7340,9,E06000002,3,61.52,167.48,26.1,183.56 -7666,9,E06000002,4,70.84,242.51,26.1,265.29 -7992,10,E06000002,0,55.36,266.69,18.44,291.74 -169,1,E06000042,1,57.79,124.33,26.1,177.93 -495,1,E06000042,2,71.78,147.91,26.1,188.66 -821,1,E06000042,3,82.02,162.93,26.1,205.81 -1147,1,E06000042,4,90.42,180.08,26.1,224.01 -1473,3,E06000042,1,52.2,116.83,26.1,160.78 -1799,3,E06000042,2,63.38,130.77,26.1,146.84 -2125,3,E06000042,3,68.97,151.13,26.1,187.58 -2451,3,E06000042,4,73.64,186.51,26.1,196.15 -2777,2,E06000042,0,61.49,265.21,18.44,340.65 -3103,4,E06000042,0,48.18,193.32,18.44,202.73 -3429,6,E06000042,0,61.49,363.05,18.44,396.05 -3755,8,E06000042,0,48.18,363.05,18.44,396.05 -4014,5,E06000042,1,57.79,136.13,26.1,148.99 -4081,7,E06000042,1,52.2,136.13,26.1,148.99 -4629,5,E06000042,2,71.78,166.14,26.1,181.15 -4776,7,E06000042,2,63.38,166.14,26.1,181.15 -5281,5,E06000042,3,82.02,188.66,26.1,205.81 -5381,7,E06000042,3,68.97,188.66,26.1,205.81 -5966,5,E06000042,4,90.42,330.14,26.1,360.15 -6070,7,E06000042,4,73.64,330.14,26.1,360.15 -6689,9,E06000042,1,57.79,170.16,26.1,186.23 -7015,9,E06000042,2,71.78,207.68,26.1,226.44 -7341,9,E06000042,3,82.02,235.82,26.1,257.26 -7667,9,E06000042,4,90.42,412.67,26.1,450.18 -7993,10,E06000042,0,61.49,453.82,18.44,495.08 -170,1,E07000210,1,57.79,124.33,26.1,177.93 -496,1,E07000210,2,71.78,147.91,26.1,188.66 -822,1,E07000210,3,82.02,162.93,26.1,205.81 -1148,1,E07000210,4,90.42,180.08,26.1,224.01 -1474,3,E07000210,1,52.2,116.83,26.1,160.78 -1800,3,E07000210,2,63.38,130.77,26.1,146.84 -2126,3,E07000210,3,68.97,151.13,26.1,187.58 -2452,3,E07000210,4,73.64,186.51,26.1,196.15 -2778,2,E07000210,0,61.49,265.21,18.44,340.65 -3104,4,E07000210,0,48.18,193.32,18.44,202.73 -3430,6,E07000210,0,61.49,623.56,18.44,678.97 -3756,8,E07000210,0,48.18,623.56,18.44,678.97 -4015,5,E07000210,1,57.79,166.14,26.1,181.15 -4082,7,E07000210,1,52.2,166.14,26.1,181.15 -4630,5,E07000210,2,71.78,240.09,26.1,261.54 -4777,7,E07000210,2,63.38,240.09,26.1,261.54 -5282,5,E07000210,3,82.02,330.14,26.1,360.15 -5382,7,E07000210,3,68.97,330.14,26.1,360.15 -5967,5,E07000210,4,90.42,567.02,26.1,617.4 -6071,7,E07000210,4,73.64,567.02,26.1,617.4 -6690,9,E07000210,1,57.79,207.68,26.1,226.44 -7016,9,E07000210,2,71.78,300.12,26.1,326.92 -7342,9,E07000210,3,82.02,412.67,26.1,450.18 -7668,9,E07000210,4,90.42,708.78,26.1,771.75 -7994,10,E07000210,0,61.49,779.44,18.44,848.71 -171,1,E07000091,1,57.79,124.33,26.1,177.93 -497,1,E07000091,2,71.78,147.91,26.1,188.66 -823,1,E07000091,3,82.02,162.93,26.1,205.81 -1149,1,E07000091,4,90.42,180.08,26.1,224.01 -1475,3,E07000091,1,52.2,116.83,26.1,160.78 -1801,3,E07000091,2,63.38,130.77,26.1,146.84 -2127,3,E07000091,3,68.97,151.13,26.1,187.58 -2453,3,E07000091,4,73.64,186.51,26.1,196.15 -2779,2,E07000091,0,61.49,265.21,18.44,340.65 -3105,4,E07000091,0,48.18,193.32,18.44,202.73 -3431,6,E07000091,0,61.49,374.83,18.44,409.03 -3757,8,E07000091,0,48.18,374.83,18.44,409.03 -4016,5,E07000091,1,57.79,136.13,26.1,148.99 -4083,7,E07000091,1,52.2,136.13,26.1,148.99 -4631,5,E07000091,2,71.78,175.78,26.1,190.79 -4778,7,E07000091,2,63.38,175.78,26.1,190.79 -5283,5,E07000091,3,82.02,216.52,26.1,236.89 -5383,7,E07000091,3,68.97,216.52,26.1,236.89 -5968,5,E07000091,4,90.42,340.85,26.1,371.94 -6072,7,E07000091,4,73.64,340.85,26.1,371.94 -6691,9,E07000091,1,57.79,170.16,26.1,186.23 -7017,9,E07000091,2,71.78,219.74,26.1,238.5 -7343,9,E07000091,3,82.02,270.66,26.1,296.11 -7669,9,E07000091,4,90.42,426.06,26.1,464.91 -7995,10,E07000091,0,61.49,468.55,18.44,511.3 -172,1,E07000175,1,52.2,100.76,26.1,123.26 -498,1,E07000175,2,62.45,115.76,26.1,130.77 -824,1,E07000175,3,68.97,127.56,26.1,139.34 -1150,1,E07000175,4,76.43,159.7,26.1,168.29 -1476,3,E07000175,1,46.6,91.12,26.1,108.27 -1802,3,E07000175,2,53.13,97.54,26.1,109.33 -2128,3,E07000175,3,58.72,105.05,26.1,120.05 -2454,3,E07000175,4,64.31,123.26,26.1,123.26 -2780,2,E07000175,0,51.26,238.1,18.44,357.17 -3106,4,E07000175,0,49.2,113.15,18.44,122.59 -3432,6,E07000175,0,51.26,225.15,18.44,245.18 -3758,8,E07000175,0,49.2,225.15,18.44,245.18 -4336,5,E07000175,1,52.2,93.26,26.1,100.76 -4436,7,E07000175,1,46.6,93.26,26.1,100.76 -5032,5,E07000175,2,62.45,114.68,26.1,124.33 -5172,7,E07000175,2,53.13,114.68,26.1,124.33 -5675,5,E07000175,3,68.97,133.98,26.1,146.84 -5833,7,E07000175,3,58.72,133.98,26.1,146.84 -6250,5,E07000175,4,76.43,204.74,26.1,222.95 -6494,7,E07000175,4,64.31,204.74,26.1,222.95 -6692,9,E07000175,1,52.2,116.56,26.1,125.95 -7018,9,E07000175,2,62.45,143.37,26.1,155.41 -7344,9,E07000175,3,68.97,167.48,26.1,183.56 -7670,9,E07000175,4,76.43,255.92,26.1,278.69 -7996,10,E07000175,0,51.26,281.43,18.44,306.45 -174,1,E08000021,1,51.27,88.96,26.1,98.62 -500,1,E08000021,2,57.79,102.91,26.1,121.11 -826,1,E08000021,3,61.52,114.68,26.1,160.78 -1152,1,E08000021,4,70.84,128.63,26.1,140.42 -1478,3,E08000021,1,42.87,100.76,26.1,106.12 -1804,3,E08000021,2,50.34,91.12,26.1,112.54 -2130,3,E08000021,3,54.06,106.12,26.1,125.4 -2456,3,E08000021,4,56.86,116.83,26.1,121.11 -2782,2,E08000021,0,55.36,234.56,18.44,337.12 -3108,4,E08000021,0,47.15,251.08,18.44,285.25 -3434,6,E08000021,0,55.36,239.29,18.44,261.68 -3760,8,E08000021,0,47.15,239.29,18.44,261.68 -4456,7,E08000021,1,42.87,114.68,26.1,124.33 -4537,5,E08000021,1,51.27,114.68,26.1,124.33 -5052,5,E08000021,2,57.79,136.13,26.1,148.99 -5103,7,E08000021,2,50.34,136.13,26.1,148.99 -5557,5,E08000021,3,61.52,143.62,26.1,156.49 -5732,7,E08000021,3,54.06,143.62,26.1,156.49 -6356,5,E08000021,4,70.84,217.59,26.1,237.96 -6514,7,E08000021,4,56.86,217.59,26.1,237.96 -6694,9,E08000021,1,42.87,143.37,26.1,155.41 -7020,9,E08000021,2,57.79,170.16,26.1,186.23 -7346,9,E08000021,3,61.52,179.53,26.1,195.6 -7672,9,E08000021,4,70.84,271.98,26.1,297.46 -7998,10,E08000021,0,55.36,299.12,18.44,327.11 -173,1,E07000195,1,53.13,99.69,26.1,125.4 -499,1,E07000195,2,58.72,117.9,26.1,138.27 -825,1,E07000195,3,69.9,133.98,26.1,161.86 -1151,1,E07000195,4,81.09,162.93,26.1,180.08 -1477,3,E07000195,1,46.6,88.96,26.1,98.62 -1803,3,E07000195,2,50.34,95.42,26.1,103.98 -2129,3,E07000195,3,60.59,105.05,26.1,121.11 -2455,3,E07000195,4,68.97,128.63,26.1,128.63 -2781,2,E07000195,0,38.95,242.82,18.44,378.37 -3107,4,E07000195,0,46.12,106.09,18.44,106.09 -3433,6,E07000195,0,38.95,220.42,18.44,239.29 -3759,8,E07000195,0,46.12,220.42,18.44,239.29 -4290,5,E07000195,1,53.13,98.62,26.1,108.27 -4511,7,E07000195,1,46.6,98.62,26.1,108.27 -4900,5,E07000195,2,58.72,114.68,26.1,124.33 -5196,7,E07000195,2,50.34,114.68,26.1,124.33 -5531,5,E07000195,3,69.9,136.13,26.1,148.99 -5787,7,E07000195,3,60.59,136.13,26.1,148.99 -6183,5,E07000195,4,81.09,200.45,26.1,217.59 -6448,7,E07000195,4,68.97,200.45,26.1,217.59 -6693,9,E07000195,1,53.13,123.26,26.1,135.33 -7019,9,E07000195,2,58.72,143.37,26.1,155.41 -7345,9,E07000195,3,69.9,170.16,26.1,186.23 -7671,9,E07000195,4,81.09,250.54,26.1,271.98 -7997,10,E07000195,0,38.95,275.54,18.44,299.12 -175,1,E09000025,1,66.17,146.84,26.1,199.38 -501,1,E09000025,2,78.29,158.63,26.1,194.01 -827,1,E09000025,3,84.82,168.29,26.1,228.29 -1153,1,E09000025,4,102.51,188.66,26.1,254.03 -1479,3,E09000025,1,58.72,120.05,26.1,147.91 -1805,3,E09000025,2,64.31,140.42,26.1,176.86 -2131,3,E09000025,3,71.78,160.78,26.1,202.58 -2457,3,E09000025,4,83.89,262.61,26.1,263.68 -2783,2,E09000025,0,69.7,313.55,18.44,497.44 -3109,4,E09000025,0,59.45,367.77,18.44,398.42 -3435,6,E09000025,0,69.7,409.03,18.44,445.55 -3761,8,E09000025,0,59.45,409.03,18.44,445.55 -3974,5,E09000025,1,66.17,210.1,26.1,229.37 -4188,7,E09000025,1,58.72,210.1,26.1,229.37 -4589,5,E09000025,2,78.29,256.17,26.1,279.76 -4689,7,E09000025,2,64.31,256.17,26.1,279.76 -5241,5,E09000025,3,84.82,295.83,26.1,322.64 -5341,7,E09000025,3,71.78,295.83,26.1,322.64 -5893,7,E09000025,4,83.89,371.94,26.1,405.18 -5926,5,E09000025,4,102.51,371.94,26.1,405.18 -6695,9,E09000025,1,66.17,262.61,26.1,286.72 -7021,9,E09000025,2,78.29,320.22,26.1,349.7 -7347,9,E09000025,3,84.82,369.81,26.1,403.3 -7673,9,E09000025,4,102.51,464.91,26.1,506.46 -7999,10,E09000025,0,69.7,511.3,18.44,556.97 -176,1,E07000043,1,49.41,108.27,26.1,141.49 -502,1,E07000043,2,55.93,122.19,26.1,145.77 -828,1,E07000043,3,62.45,142.56,26.1,162.93 -1154,1,E07000043,4,71.78,159.7,26.1,196.15 -1480,3,E07000043,1,47.54,90.03,26.1,212.24 -1806,3,E07000043,2,54.99,101.83,26.1,112.54 -2132,3,E07000043,3,62.45,110.39,26.1,127.56 -2458,3,E07000043,4,74.57,131.84,26.1,131.84 -2784,2,E07000043,0,54.33,228.68,18.44,354.8 -3110,4,E07000043,0,54.33,114.33,18.44,140.27 -3436,6,E07000043,0,54.33,244,18.44,266.39 -3762,8,E07000043,0,54.33,244,18.44,266.39 -3928,7,E07000043,1,47.54,103.98,26.1,113.61 -4212,5,E07000043,1,49.41,103.98,26.1,113.61 -4848,5,E07000043,2,55.93,136.13,26.1,148.99 -5125,7,E07000043,2,54.99,136.13,26.1,148.99 -5479,5,E07000043,3,62.45,160.78,26.1,175.78 -5705,7,E07000043,3,62.45,160.78,26.1,175.78 -6017,5,E07000043,4,71.78,221.88,26.1,242.25 -6417,7,E07000043,4,74.57,221.88,26.1,242.25 -6696,9,E07000043,1,49.41,129.97,26.1,142.02 -7022,9,E07000043,2,55.93,170.16,26.1,186.23 -7348,9,E07000043,3,62.45,200.97,26.1,219.74 -7674,9,E07000043,4,71.78,277.34,26.1,302.81 -8000,10,E07000043,0,54.33,305,18.44,332.99 -178,1,E07000038,1,52.2,100.76,26.1,123.26 -504,1,E07000038,2,62.45,115.76,26.1,130.77 -830,1,E07000038,3,68.97,127.56,26.1,139.34 -1156,1,E07000038,4,76.43,159.7,26.1,168.29 -1482,3,E07000038,1,46.6,91.12,26.1,108.27 -1808,3,E07000038,2,53.13,97.54,26.1,109.33 -2134,3,E07000038,3,58.72,105.05,26.1,120.05 -2460,3,E07000038,4,64.31,123.26,26.1,123.26 -2786,2,E07000038,0,51.26,238.1,18.44,357.17 -3112,4,E07000038,0,49.2,113.15,18.44,122.59 -3438,6,E07000038,0,51.26,225.15,18.44,245.18 -3764,8,E07000038,0,49.2,225.15,18.44,245.18 -4337,5,E07000038,1,52.2,92.19,26.1,99.69 -4437,7,E07000038,1,46.6,92.19,26.1,99.69 -5033,5,E07000038,2,62.45,115.76,26.1,125.4 -5173,7,E07000038,2,53.13,115.76,26.1,125.4 -5676,5,E07000038,3,68.97,148.99,26.1,161.86 -5834,7,E07000038,3,58.72,148.99,26.1,161.86 -6251,5,E07000038,4,76.43,204.74,26.1,222.95 -6495,7,E07000038,4,64.31,204.74,26.1,222.95 -6698,9,E07000038,1,52.2,115.24,26.1,124.6 -7024,9,E07000038,2,62.45,144.7,26.1,156.77 -7350,9,E07000038,3,68.97,186.23,26.1,202.34 -7676,9,E07000038,4,76.43,255.92,26.1,278.69 -8002,10,E07000038,0,51.26,281.43,18.44,306.45 -179,1,E06000012,1,51.27,92.19,26.1,114.68 -505,1,E06000012,2,58.72,109.33,26.1,141.49 -831,1,E06000012,3,63.38,121.11,26.1,162.93 -1157,1,E06000012,4,73.64,145.77,26.1,180.08 -1483,3,E06000012,1,46.6,82.54,26.1,93.26 -1809,3,E06000012,2,53.13,113.61,26.1,145.77 -2135,3,E06000012,3,56.86,105.05,26.1,114.68 -2461,3,E06000012,4,64.31,122.19,26.1,176.86 -2787,2,E06000012,0,52.28,232.2,18.44,319.44 -3113,4,E06000012,0,51.26,159.13,18.44,188.6 -3439,6,E06000012,0,52.28,176.82,18.44,193.32 -3765,8,E06000012,0,51.26,176.82,18.44,193.32 -4401,5,E06000012,1,51.27,85.75,26.1,93.26 -4555,7,E06000012,1,46.6,85.75,26.1,93.26 -4823,7,E06000012,2,53.13,108.27,26.1,117.9 -4881,5,E06000012,2,58.72,108.27,26.1,117.9 -5512,5,E06000012,3,63.38,114.68,26.1,124.33 -5859,7,E06000012,3,56.86,114.68,26.1,124.33 -6117,5,E06000012,4,73.64,160.78,26.1,175.78 -6215,7,E06000012,4,64.31,160.78,26.1,175.78 -6699,9,E06000012,1,51.27,107.2,26.1,116.56 -7025,9,E06000012,2,53.13,135.33,26.1,147.38 -7351,9,E06000012,3,63.38,143.37,26.1,155.41 -7677,9,E06000012,4,73.64,200.97,26.1,219.74 -8003,10,E06000012,0,52.28,221.02,18.44,241.66 -180,1,E07000099,1,54.99,120.05,26.1,150.06 -506,1,E07000099,2,65.24,143.62,26.1,169.36 -832,1,E07000099,3,71.78,157.56,26.1,182.22 -1158,1,E07000099,4,82.02,172.58,26.1,180.08 -1484,3,E07000099,1,50.34,100.76,26.1,132.91 -1810,3,E07000099,2,58.72,118.97,26.1,133.98 -2136,3,E07000099,3,64.31,131.84,26.1,144.7 -2462,3,E07000099,4,71.78,150.06,26.1,160.78 -2788,2,E07000099,0,35.87,223.96,18.44,418.45 -3114,4,E07000099,0,55.36,134.38,18.44,314.73 -3440,6,E07000099,0,35.87,467.95,18.44,510.39 -3766,8,E07000099,0,55.36,467.95,18.44,510.39 -4145,5,E07000099,1,54.99,131.84,26.1,144.7 -4262,7,E07000099,1,50.34,131.84,26.1,144.7 -4726,5,E07000099,2,65.24,171.5,26.1,186.51 -4988,7,E07000099,2,58.72,171.5,26.1,186.51 -5445,5,E07000099,3,71.78,219.73,26.1,240.09 -5631,7,E07000099,3,64.31,219.73,26.1,240.09 -6155,5,E07000099,4,82.02,425.54,26.1,464.12 -6293,7,E07000099,4,71.78,425.54,26.1,464.12 -6700,9,E07000099,1,54.99,164.8,26.1,180.87 -7026,9,E07000099,2,65.24,214.37,26.1,233.14 -7352,9,E07000099,3,71.78,274.67,26.1,300.12 -7678,9,E07000099,4,82.02,531.92,26.1,580.15 -8004,10,E07000099,0,35.87,584.95,18.44,638 -181,1,E07000139,1,52.2,100.76,26.1,123.26 -507,1,E07000139,2,62.45,115.76,26.1,130.77 -833,1,E07000139,3,68.97,127.56,26.1,139.34 -1159,1,E07000139,4,76.43,159.7,26.1,168.29 -1485,3,E07000139,1,46.6,91.12,26.1,108.27 -1811,3,E07000139,2,53.13,97.54,26.1,109.33 -2137,3,E07000139,3,58.72,105.05,26.1,120.05 -2463,3,E07000139,4,64.31,123.26,26.1,123.26 -2789,2,E07000139,0,51.26,238.1,18.44,357.17 -3115,4,E07000139,0,49.2,113.15,18.44,122.59 -3441,6,E07000139,0,51.26,213.35,18.44,233.38 -3767,8,E07000139,0,49.2,213.35,18.44,233.38 -4338,5,E07000139,1,52.2,103.98,26.1,113.61 -4438,7,E07000139,1,46.6,103.98,26.1,113.61 -5034,5,E07000139,2,62.45,114.68,26.1,124.33 -5174,7,E07000139,2,53.13,114.68,26.1,124.33 -5677,5,E07000139,3,68.97,138.27,26.1,150.06 -5835,7,E07000139,3,58.72,138.27,26.1,150.06 -6252,5,E07000139,4,76.43,194.01,26.1,212.24 -6496,7,E07000139,4,64.31,194.01,26.1,212.24 -6701,9,E07000139,1,52.2,129.97,26.1,142.02 -7027,9,E07000139,2,62.45,143.37,26.1,155.41 -7353,9,E07000139,3,68.97,172.84,26.1,187.57 -7679,9,E07000139,4,76.43,242.51,26.1,265.29 -8005,10,E07000139,0,51.26,266.69,18.44,291.74 -182,1,E06000013,1,51.27,92.19,26.1,114.68 -508,1,E06000013,2,58.72,109.33,26.1,141.49 -834,1,E06000013,3,63.38,121.11,26.1,162.93 -1160,1,E06000013,4,73.64,145.77,26.1,180.08 -1486,3,E06000013,1,46.6,82.54,26.1,93.26 -1812,3,E06000013,2,53.13,113.61,26.1,145.77 -2138,3,E06000013,3,56.86,105.05,26.1,114.68 -2464,3,E06000013,4,64.31,122.19,26.1,176.86 -2790,2,E06000013,0,52.28,232.2,18.44,319.44 -3116,4,E06000013,0,51.26,159.13,18.44,188.6 -3442,6,E06000013,0,52.28,200.38,18.44,219.25 -3768,8,E06000013,0,51.26,200.38,18.44,219.25 -4402,5,E06000013,1,51.27,82.54,26.1,88.96 -4556,7,E06000013,1,46.6,82.54,26.1,88.96 -4824,7,E06000013,2,53.13,103.98,26.1,113.61 -4882,5,E06000013,2,58.72,103.98,26.1,113.61 -5513,5,E06000013,3,63.38,115.76,26.1,125.4 -5860,7,E06000013,3,56.86,115.76,26.1,125.4 -6118,5,E06000013,4,73.64,182.22,26.1,199.38 -6216,7,E06000013,4,64.31,182.22,26.1,199.38 -6702,9,E06000013,1,51.27,103.19,26.1,111.21 -7028,9,E06000013,2,53.13,129.97,26.1,142.02 -7354,9,E06000013,3,63.38,144.7,26.1,156.77 -7680,9,E06000013,4,73.64,227.8,26.1,249.22 -8006,10,E06000013,0,52.28,250.47,18.44,274.05 -183,1,E07000147,1,54.99,120.05,26.1,150.06 -509,1,E07000147,2,65.24,143.62,26.1,169.36 -835,1,E07000147,3,71.78,157.56,26.1,182.22 -1161,1,E07000147,4,82.02,172.58,26.1,180.08 -1487,3,E07000147,1,50.34,100.76,26.1,132.91 -1813,3,E07000147,2,58.72,118.97,26.1,133.98 -2139,3,E07000147,3,64.31,131.84,26.1,144.7 -2465,3,E07000147,4,71.78,150.06,26.1,160.78 -2791,2,E07000147,0,35.87,223.96,18.44,418.45 -3117,4,E07000147,0,55.36,134.38,18.44,314.73 -3443,6,E07000147,0,35.87,300.58,18.44,327.69 -3769,8,E07000147,0,55.36,300.58,18.44,327.69 -4146,5,E07000147,1,54.99,100.76,26.1,110.39 -4263,7,E07000147,1,50.34,100.76,26.1,110.39 -4727,5,E07000147,2,65.24,126.48,26.1,138.27 -4989,7,E07000147,2,58.72,126.48,26.1,138.27 -5446,5,E07000147,3,71.78,166.14,26.1,181.15 -5632,7,E07000147,3,64.31,166.14,26.1,181.15 -6156,5,E07000147,4,82.02,273.34,26.1,297.99 -6294,7,E07000147,4,71.78,273.34,26.1,297.99 -6703,9,E07000147,1,54.99,125.95,26.1,138.01 -7029,9,E07000147,2,65.24,158.09,26.1,172.84 -7355,9,E07000147,3,71.78,207.68,26.1,226.44 -7681,9,E07000147,4,82.02,341.67,26.1,372.48 -8007,10,E07000147,0,35.87,375.73,18.44,409.61 -184,1,E06000024,1,49.41,108.27,26.1,141.49 -510,1,E06000024,2,55.93,122.19,26.1,145.77 -836,1,E06000024,3,62.45,142.56,26.1,162.93 -1162,1,E06000024,4,71.78,159.7,26.1,196.15 -1488,3,E06000024,1,47.54,90.03,26.1,212.24 -1814,3,E06000024,2,54.99,101.83,26.1,112.54 -2140,3,E06000024,3,62.45,110.39,26.1,127.56 -2466,3,E06000024,4,74.57,131.84,26.1,131.84 -2792,2,E06000024,0,54.33,228.68,18.44,354.8 -3118,4,E06000024,0,54.33,114.33,18.44,140.27 -3444,6,E06000024,0,54.33,275.83,18.44,300.58 -3770,8,E06000024,0,54.33,275.83,18.44,300.58 -3930,7,E06000024,1,47.54,114.68,26.1,124.33 -4214,5,E06000024,1,49.41,114.68,26.1,124.33 -4850,5,E06000024,2,55.93,138.27,26.1,150.06 -5127,7,E06000024,2,54.99,138.27,26.1,150.06 -5481,5,E06000024,3,62.45,166.14,26.1,181.15 -5707,7,E06000024,3,62.45,166.14,26.1,181.15 -6019,5,E06000024,4,71.78,250.82,26.1,273.34 -6419,7,E06000024,4,74.57,250.82,26.1,273.34 -6704,9,E06000024,1,49.41,143.37,26.1,155.41 -7030,9,E06000024,2,55.93,172.84,26.1,187.57 -7356,9,E06000024,3,62.45,207.68,26.1,226.44 -7682,9,E06000024,4,71.78,313.51,26.1,341.67 -8008,10,E06000024,0,54.33,344.81,18.44,375.73 -185,1,E08000022,1,51.27,88.96,26.1,98.62 -511,1,E08000022,2,57.79,102.91,26.1,121.11 -837,1,E08000022,3,61.52,114.68,26.1,160.78 -1163,1,E08000022,4,70.84,128.63,26.1,140.42 -1489,3,E08000022,1,42.87,100.76,26.1,106.12 -1815,3,E08000022,2,50.34,91.12,26.1,112.54 -2141,3,E08000022,3,54.06,106.12,26.1,125.4 -2467,3,E08000022,4,56.86,116.83,26.1,121.11 -2793,2,E08000022,0,55.36,234.56,18.44,337.12 -3119,4,E08000022,0,47.15,251.08,18.44,285.25 -3445,6,E08000022,0,55.36,252.25,18.44,273.47 -3771,8,E08000022,0,47.15,252.25,18.44,273.47 -4457,7,E08000022,1,42.87,99.69,26.1,109.33 -4538,5,E08000022,1,51.27,99.69,26.1,109.33 -5053,5,E08000022,2,57.79,126.48,26.1,138.27 -5104,7,E08000022,2,50.34,126.48,26.1,138.27 -5558,5,E08000022,3,61.52,148.99,26.1,161.86 -5733,7,E08000022,3,54.06,148.99,26.1,161.86 -6357,5,E08000022,4,70.84,229.37,26.1,248.67 -6515,7,E08000022,4,56.86,229.37,26.1,248.67 -6705,9,E08000022,1,42.87,124.6,26.1,136.67 -7031,9,E08000022,2,57.79,158.09,26.1,172.84 -7357,9,E08000022,3,61.52,186.23,26.1,202.34 -7683,9,E08000022,4,70.84,286.72,26.1,310.84 -8009,10,E08000022,0,55.36,315.32,18.44,341.84 -186,1,E07000218,1,53.13,99.69,26.1,125.4 -512,1,E07000218,2,58.72,117.9,26.1,138.27 -838,1,E07000218,3,69.9,133.98,26.1,161.86 -1164,1,E07000218,4,81.09,162.93,26.1,180.08 -1490,3,E07000218,1,46.6,88.96,26.1,98.62 -1816,3,E07000218,2,50.34,95.42,26.1,103.98 -2142,3,E07000218,3,60.59,105.05,26.1,121.11 -2468,3,E07000218,4,68.97,128.63,26.1,128.63 -2794,2,E07000218,0,38.95,242.82,18.44,378.37 -3120,4,E07000218,0,46.12,106.09,18.44,106.09 -3446,6,E07000218,0,38.95,213.35,18.44,233.38 -3772,8,E07000218,0,46.12,213.35,18.44,233.38 -4291,5,E07000218,1,53.13,103.98,26.1,113.61 -4512,7,E07000218,1,46.6,103.98,26.1,113.61 -4901,5,E07000218,2,58.72,126.48,26.1,138.27 -5197,7,E07000218,2,50.34,126.48,26.1,138.27 -5532,5,E07000218,3,69.9,148.99,26.1,161.86 -5788,7,E07000218,3,60.59,148.99,26.1,161.86 -6184,5,E07000218,4,81.09,194.01,26.1,212.24 -6449,7,E07000218,4,68.97,194.01,26.1,212.24 -6706,9,E07000218,1,53.13,129.97,26.1,142.02 -7032,9,E07000218,2,58.72,158.09,26.1,172.84 -7358,9,E07000218,3,69.9,186.23,26.1,202.34 -7684,9,E07000218,4,81.09,242.51,26.1,265.29 -8010,10,E07000218,0,38.95,266.69,18.44,291.74 -187,1,E07000134,1,52.2,100.76,26.1,123.26 -513,1,E07000134,2,62.45,115.76,26.1,130.77 -839,1,E07000134,3,68.97,127.56,26.1,139.34 -1165,1,E07000134,4,76.43,159.7,26.1,168.29 -1491,3,E07000134,1,46.6,91.12,26.1,108.27 -1817,3,E07000134,2,53.13,97.54,26.1,109.33 -2143,3,E07000134,3,58.72,105.05,26.1,120.05 -2469,3,E07000134,4,64.31,123.26,26.1,123.26 -2795,2,E07000134,0,51.26,238.1,18.44,357.17 -3121,4,E07000134,0,49.2,113.15,18.44,122.59 -3447,6,E07000134,0,51.26,225.15,18.44,245.18 -3773,8,E07000134,0,49.2,225.15,18.44,245.18 -4339,5,E07000134,1,52.2,98.62,26.1,108.27 -4439,7,E07000134,1,46.6,98.62,26.1,108.27 -5035,5,E07000134,2,62.45,121.11,26.1,131.84 -5175,7,E07000134,2,53.13,121.11,26.1,131.84 -5678,5,E07000134,3,68.97,138.27,26.1,150.06 -5836,7,E07000134,3,58.72,138.27,26.1,150.06 -6253,5,E07000134,4,76.43,204.74,26.1,222.95 -6497,7,E07000134,4,64.31,204.74,26.1,222.95 -6707,9,E07000134,1,52.2,123.26,26.1,135.33 -7033,9,E07000134,2,62.45,151.41,26.1,164.8 -7359,9,E07000134,3,68.97,172.84,26.1,187.57 -7685,9,E07000134,4,76.43,255.92,26.1,278.69 -8011,10,E07000134,0,51.26,281.43,18.44,306.45 -189,1,E06000057,1,51.27,88.96,26.1,98.62 -515,1,E06000057,2,57.79,102.91,26.1,121.11 -841,1,E06000057,3,61.52,114.68,26.1,160.78 -1167,1,E06000057,4,70.84,128.63,26.1,140.42 -1493,3,E06000057,1,42.87,100.76,26.1,106.12 -1819,3,E06000057,2,50.34,91.12,26.1,112.54 -2145,3,E06000057,3,54.06,106.12,26.1,125.4 -2471,3,E06000057,4,56.86,116.83,26.1,121.11 -2797,2,E06000057,0,55.36,234.56,18.44,337.12 -3123,4,E06000057,0,47.15,251.08,18.44,285.25 -3449,6,E06000057,0,55.36,225.15,18.44,245.18 -3775,8,E06000057,0,47.15,225.15,18.44,245.18 -4458,7,E06000057,1,42.87,92.19,26.1,99.69 -4539,5,E06000057,1,51.27,92.19,26.1,99.69 -5054,5,E06000057,2,57.79,110.39,26.1,120.05 -5105,7,E06000057,2,50.34,110.39,26.1,120.05 -5559,5,E06000057,3,61.52,126.48,26.1,138.27 -5734,7,E06000057,3,54.06,126.48,26.1,138.27 -6358,5,E06000057,4,70.84,204.74,26.1,222.95 -6516,7,E06000057,4,56.86,204.74,26.1,222.95 -6709,9,E06000057,1,42.87,115.24,26.1,124.6 -7035,9,E06000057,2,57.79,138.01,26.1,150.06 -7361,9,E06000057,3,61.52,158.09,26.1,172.84 -7687,9,E06000057,4,70.84,255.92,26.1,278.69 -8013,10,E06000057,0,55.36,281.43,18.44,306.45 -190,1,E07000148,1,54.99,120.05,26.1,150.06 -516,1,E07000148,2,65.24,143.62,26.1,169.36 -842,1,E07000148,3,71.78,157.56,26.1,182.22 -1168,1,E07000148,4,82.02,172.58,26.1,180.08 -1494,3,E07000148,1,50.34,100.76,26.1,132.91 -1820,3,E07000148,2,58.72,118.97,26.1,133.98 -2146,3,E07000148,3,64.31,131.84,26.1,144.7 -2472,3,E07000148,4,71.78,150.06,26.1,160.78 -2798,2,E07000148,0,35.87,223.96,18.44,418.45 -3124,4,E07000148,0,55.36,134.38,18.44,314.73 -3450,6,E07000148,0,35.87,271.13,18.44,295.87 -3776,8,E07000148,0,55.36,271.13,18.44,295.87 -4147,5,E07000148,1,54.99,114.68,26.1,124.33 -4264,7,E07000148,1,50.34,114.68,26.1,124.33 -4728,5,E07000148,2,65.24,136.13,26.1,148.99 -4990,7,E07000148,2,58.72,136.13,26.1,148.99 -5447,5,E07000148,3,71.78,172.58,26.1,187.58 -5633,7,E07000148,3,64.31,172.58,26.1,187.58 -6157,5,E07000148,4,82.02,246.53,26.1,269.04 -6295,7,E07000148,4,71.78,246.53,26.1,269.04 -6710,9,E07000148,1,54.99,143.37,26.1,155.41 -7036,9,E07000148,2,65.24,170.16,26.1,186.23 -7362,9,E07000148,3,71.78,215.73,26.1,234.49 -7688,9,E07000148,4,82.02,308.16,26.1,336.31 -8014,10,E07000148,0,35.87,338.9,18.44,369.84 -191,1,E06000018,1,52.2,100.76,26.1,123.26 -517,1,E06000018,2,62.45,115.76,26.1,130.77 -843,1,E06000018,3,68.97,127.56,26.1,139.34 -1169,1,E06000018,4,76.43,159.7,26.1,168.29 -1495,3,E06000018,1,46.6,91.12,26.1,108.27 -1821,3,E06000018,2,53.13,97.54,26.1,109.33 -2147,3,E06000018,3,58.72,105.05,26.1,120.05 -2473,3,E06000018,4,64.31,123.26,26.1,123.26 -2799,2,E06000018,0,51.26,238.1,18.44,357.17 -3125,4,E06000018,0,49.2,113.15,18.44,122.59 -3451,6,E06000018,0,51.26,351.26,18.44,383.09 -3777,8,E06000018,0,49.2,351.26,18.44,383.09 -4341,5,E06000018,1,52.2,121.11,26.1,131.84 -4441,7,E06000018,1,46.6,121.11,26.1,131.84 -5037,5,E06000018,2,62.45,148.99,26.1,161.86 -5177,7,E06000018,2,53.13,148.99,26.1,161.86 -5680,5,E06000018,3,68.97,148.99,26.1,161.86 -5838,7,E06000018,3,58.72,148.99,26.1,161.86 -6255,5,E06000018,4,76.43,319.42,26.1,348.36 -6499,7,E06000018,4,64.31,319.42,26.1,348.36 -6711,9,E06000018,1,52.2,151.41,26.1,164.8 -7037,9,E06000018,2,62.45,186.23,26.1,202.34 -7363,9,E06000018,3,68.97,186.23,26.1,202.34 -7689,9,E06000018,4,76.43,399.29,26.1,435.45 -8015,10,E06000018,0,51.26,439.1,18.44,478.86 -192,1,E07000219,1,53.13,99.69,26.1,125.4 -518,1,E07000219,2,58.72,117.9,26.1,138.27 -844,1,E07000219,3,69.9,133.98,26.1,161.86 -1170,1,E07000219,4,81.09,162.93,26.1,180.08 -1496,3,E07000219,1,46.6,88.96,26.1,98.62 -1822,3,E07000219,2,50.34,95.42,26.1,103.98 -2148,3,E07000219,3,60.59,105.05,26.1,121.11 -2474,3,E07000219,4,68.97,128.63,26.1,128.63 -2800,2,E07000219,0,38.95,242.82,18.44,378.37 -3126,4,E07000219,0,46.12,106.09,18.44,106.09 -3452,6,E07000219,0,38.95,220.42,18.44,239.29 -3778,8,E07000219,0,46.12,220.42,18.44,239.29 -4292,5,E07000219,1,53.13,98.62,26.1,108.27 -4513,7,E07000219,1,46.6,98.62,26.1,108.27 -4902,5,E07000219,2,58.72,120.05,26.1,130.77 -5198,7,E07000219,2,50.34,120.05,26.1,130.77 -5533,5,E07000219,3,69.9,143.62,26.1,156.49 -5789,7,E07000219,3,60.59,143.62,26.1,156.49 -6185,5,E07000219,4,81.09,200.45,26.1,217.59 -6450,7,E07000219,4,68.97,200.45,26.1,217.59 -6712,9,E07000219,1,53.13,123.26,26.1,135.33 -7038,9,E07000219,2,58.72,150.06,26.1,163.46 -7364,9,E07000219,3,69.9,179.53,26.1,195.6 -7690,9,E07000219,4,81.09,250.54,26.1,271.98 -8016,10,E07000219,0,38.95,275.54,18.44,299.12 -193,1,E07000135,1,52.2,100.76,26.1,123.26 -519,1,E07000135,2,62.45,115.76,26.1,130.77 -845,1,E07000135,3,68.97,127.56,26.1,139.34 -1171,1,E07000135,4,76.43,159.7,26.1,168.29 -1497,3,E07000135,1,46.6,91.12,26.1,108.27 -1823,3,E07000135,2,53.13,97.54,26.1,109.33 -2149,3,E07000135,3,58.72,105.05,26.1,120.05 -2475,3,E07000135,4,64.31,123.26,26.1,123.26 -2801,2,E07000135,0,51.26,238.1,18.44,357.17 -3127,4,E07000135,0,49.2,113.15,18.44,122.59 -3453,6,E07000135,0,51.26,252.25,18.44,273.47 -3779,8,E07000135,0,49.2,252.25,18.44,273.47 -4342,5,E07000135,1,52.2,103.98,26.1,113.61 -4442,7,E07000135,1,46.6,103.98,26.1,113.61 -5038,5,E07000135,2,62.45,126.48,26.1,138.27 -5178,7,E07000135,2,53.13,126.48,26.1,138.27 -5681,5,E07000135,3,68.97,148.99,26.1,161.86 -5839,7,E07000135,3,58.72,148.99,26.1,161.86 -6256,5,E07000135,4,76.43,229.37,26.1,248.67 -6500,7,E07000135,4,64.31,229.37,26.1,248.67 -6713,9,E07000135,1,52.2,129.97,26.1,142.02 -7039,9,E07000135,2,62.45,158.09,26.1,172.84 -7365,9,E07000135,3,68.97,186.23,26.1,202.34 -7691,9,E07000135,4,76.43,286.72,26.1,310.84 -8017,10,E07000135,0,51.26,315.32,18.44,341.84 -194,1,E08000004,1,52.2,94.33,26.1,117.9 -520,1,E08000004,2,59.66,108.27,26.1,136.13 -846,1,E08000004,3,66.17,121.11,26.1,146.84 -1172,1,E08000004,4,72.71,135.06,26.1,160.78 -1498,3,E08000004,1,43.8,86.81,26.1,101.83 -1824,3,E08000004,2,54.06,95.42,26.1,114.68 -2150,3,E08000004,3,58.72,106.12,26.1,125.4 -2476,3,E08000004,4,55.93,120.05,26.1,135.06 -2802,2,E08000004,0,55.36,236.93,18.44,338.29 -3128,4,E08000004,0,32.8,464.43,18.44,592.92 -3454,6,E08000004,0,55.36,213.35,18.44,233.38 -3780,8,E08000004,0,32.8,213.35,18.44,233.38 -4371,5,E08000004,1,52.2,103.98,26.1,113.61 -4483,7,E08000004,1,43.8,103.98,26.1,113.61 -4941,5,E08000004,2,59.66,114.68,26.1,124.33 -5079,7,E08000004,2,54.06,114.68,26.1,124.33 -5584,5,E08000004,3,66.17,138.27,26.1,150.06 -5759,7,E08000004,3,58.72,138.27,26.1,150.06 -6332,5,E08000004,4,72.71,194.01,26.1,212.24 -6383,7,E08000004,4,55.93,194.01,26.1,212.24 -6714,9,E08000004,1,52.2,129.97,26.1,142.02 -7040,9,E08000004,2,59.66,143.37,26.1,155.41 -7366,9,E08000004,3,66.17,172.84,26.1,187.57 -7692,9,E08000004,4,72.71,242.51,26.1,265.29 -8018,10,E08000004,0,55.36,266.69,18.44,291.74 -195,1,E07000178,1,57.79,124.33,26.1,177.93 -521,1,E07000178,2,71.78,147.91,26.1,188.66 -847,1,E07000178,3,82.02,162.93,26.1,205.81 -1173,1,E07000178,4,90.42,180.08,26.1,224.01 -1499,3,E07000178,1,52.2,116.83,26.1,160.78 -1825,3,E07000178,2,63.38,130.77,26.1,146.84 -2151,3,E07000178,3,68.97,151.13,26.1,187.58 -2477,3,E07000178,4,73.64,186.51,26.1,196.15 -2803,2,E07000178,0,61.49,265.21,18.44,340.65 -3129,4,E07000178,0,48.18,193.32,18.44,202.73 -3455,6,E07000178,0,61.49,485.64,18.44,529.26 -3781,8,E07000178,0,48.18,485.64,18.44,529.26 -4017,5,E07000178,1,57.79,191.86,26.1,210.1 -4084,7,E07000178,1,52.2,191.86,26.1,210.1 -4632,5,E07000178,2,71.78,240.09,26.1,261.54 -4779,7,E07000178,2,63.38,240.09,26.1,261.54 -5284,5,E07000178,3,82.02,295.83,26.1,322.64 -5384,7,E07000178,3,68.97,295.83,26.1,322.64 -5969,5,E07000178,4,90.42,441.6,26.1,481.27 -6073,7,E07000178,4,73.64,441.6,26.1,481.27 -6715,9,E07000178,1,57.79,239.84,26.1,262.61 -7041,9,E07000178,2,71.78,300.12,26.1,326.92 -7367,9,E07000178,3,82.02,369.81,26.1,403.3 -7693,9,E07000178,4,90.42,552,26.1,601.57 -8019,10,E07000178,0,61.49,607.06,18.44,661.58 -196,1,E07000122,1,52.2,94.33,26.1,117.9 -522,1,E07000122,2,59.66,108.27,26.1,136.13 -848,1,E07000122,3,66.17,121.11,26.1,146.84 -1174,1,E07000122,4,72.71,135.06,26.1,160.78 -1500,3,E07000122,1,43.8,86.81,26.1,101.83 -1826,3,E07000122,2,54.06,95.42,26.1,114.68 -2152,3,E07000122,3,58.72,106.12,26.1,125.4 -2478,3,E07000122,4,55.93,120.05,26.1,135.06 -2804,2,E07000122,0,55.36,236.93,18.44,338.29 -3130,4,E07000122,0,32.8,464.43,18.44,592.92 -3456,6,E07000122,0,55.36,200.38,18.44,219.25 -3782,8,E07000122,0,32.8,200.38,18.44,219.25 -4372,5,E07000122,1,52.2,91.12,26.1,98.62 -4484,7,E07000122,1,43.8,91.12,26.1,98.62 -4942,5,E07000122,2,59.66,98.62,26.1,109.33 -5080,7,E07000122,2,54.06,98.62,26.1,109.33 -5585,5,E07000122,3,66.17,126.48,26.1,138.27 -5760,7,E07000122,3,58.72,126.48,26.1,138.27 -6333,5,E07000122,4,72.71,182.22,26.1,199.38 -6384,7,E07000122,4,55.93,182.22,26.1,199.38 -6716,9,E07000122,1,52.2,113.9,26.1,123.26 -7042,9,E07000122,2,59.66,123.26,26.1,136.67 -7368,9,E07000122,3,66.17,158.09,26.1,172.84 -7694,9,E07000122,4,72.71,227.8,26.1,249.22 -8020,10,E07000122,0,55.36,250.47,18.44,274.05 -197,1,E06000031,1,54.99,120.05,26.1,150.06 -523,1,E06000031,2,65.24,143.62,26.1,169.36 -849,1,E06000031,3,71.78,157.56,26.1,182.22 -1175,1,E06000031,4,82.02,172.58,26.1,180.08 -1501,3,E06000031,1,50.34,100.76,26.1,132.91 -1827,3,E06000031,2,58.72,118.97,26.1,133.98 -2153,3,E06000031,3,64.31,131.84,26.1,144.7 -2479,3,E06000031,4,71.78,150.06,26.1,160.78 -2805,2,E06000031,0,35.87,223.96,18.44,418.45 -3131,4,E06000031,0,55.36,134.38,18.44,314.73 -3457,6,E06000031,0,35.87,226.32,18.44,246.36 -3783,8,E06000031,0,55.36,226.32,18.44,246.36 -4148,5,E06000031,1,54.99,103.98,26.1,113.61 -4265,7,E06000031,1,50.34,103.98,26.1,113.61 -4729,5,E06000031,2,65.24,126.48,26.1,138.27 -4991,7,E06000031,2,58.72,126.48,26.1,138.27 -5448,5,E06000031,3,71.78,148.99,26.1,161.86 -5634,7,E06000031,3,64.31,148.99,26.1,161.86 -6158,5,E06000031,4,82.02,205.81,26.1,224.01 -6296,7,E06000031,4,71.78,205.81,26.1,224.01 -6717,9,E06000031,1,54.99,129.97,26.1,142.02 -7043,9,E06000031,2,65.24,158.09,26.1,172.84 -7369,9,E06000031,3,71.78,186.23,26.1,202.34 -7695,9,E06000031,4,82.02,257.26,26.1,280.03 -8021,10,E06000031,0,35.87,282.91,18.44,307.95 -198,1,E06000026,1,49.41,108.27,26.1,141.49 -524,1,E06000026,2,55.93,122.19,26.1,145.77 -850,1,E06000026,3,62.45,142.56,26.1,162.93 -1176,1,E06000026,4,71.78,159.7,26.1,196.15 -1502,3,E06000026,1,47.54,90.03,26.1,212.24 -1828,3,E06000026,2,54.99,101.83,26.1,112.54 -2154,3,E06000026,3,62.45,110.39,26.1,127.56 -2480,3,E06000026,4,74.57,131.84,26.1,131.84 -2806,2,E06000026,0,54.33,228.68,18.44,354.8 -3132,4,E06000026,0,54.33,114.33,18.44,140.27 -3458,6,E06000026,0,54.33,301.76,18.44,328.86 -3784,8,E06000026,0,54.33,301.76,18.44,328.86 -3931,7,E06000026,1,47.54,111.47,26.1,121.11 -4215,5,E06000026,1,49.41,111.47,26.1,121.11 -4851,5,E06000026,2,55.93,138.27,26.1,150.06 -5128,7,E06000026,2,54.99,138.27,26.1,150.06 -5482,5,E06000026,3,62.45,160.78,26.1,175.78 -5708,7,E06000026,3,62.45,160.78,26.1,175.78 -6020,5,E06000026,4,71.78,274.41,26.1,299.06 -6420,7,E06000026,4,74.57,274.41,26.1,299.06 -6718,9,E06000026,1,49.41,139.34,26.1,151.41 -7044,9,E06000026,2,55.93,172.84,26.1,187.57 -7370,9,E06000026,3,62.45,200.97,26.1,219.74 -7696,9,E06000026,4,71.78,343.01,26.1,373.82 -8022,10,E06000026,0,54.33,377.19,18.44,411.08 -200,1,E06000044,1,57.79,124.33,26.1,177.93 -526,1,E06000044,2,71.78,147.91,26.1,188.66 -852,1,E06000044,3,82.02,162.93,26.1,205.81 -1178,1,E06000044,4,90.42,180.08,26.1,224.01 -1504,3,E06000044,1,52.2,116.83,26.1,160.78 -1830,3,E06000044,2,63.38,130.77,26.1,146.84 -2156,3,E06000044,3,68.97,151.13,26.1,187.58 -2482,3,E06000044,4,73.64,186.51,26.1,196.15 -2808,2,E06000044,0,61.49,265.21,18.44,340.65 -3134,4,E06000044,0,48.18,193.32,18.44,202.73 -3460,6,E06000044,0,61.49,351.26,18.44,383.09 -3786,8,E06000044,0,48.18,351.26,18.44,383.09 -4018,5,E06000044,1,57.79,126.48,26.1,138.27 -4085,7,E06000044,1,52.2,126.48,26.1,138.27 -4633,5,E06000044,2,71.78,155.41,26.1,169.36 -4780,7,E06000044,2,63.38,155.41,26.1,169.36 -5285,5,E06000044,3,82.02,194.01,26.1,212.24 -5385,7,E06000044,3,68.97,194.01,26.1,212.24 -5970,5,E06000044,4,90.42,319.42,26.1,348.36 -6074,7,E06000044,4,73.64,319.42,26.1,348.36 -6720,9,E06000044,1,57.79,158.09,26.1,172.84 -7046,9,E06000044,2,71.78,194.27,26.1,211.69 -7372,9,E06000044,3,82.02,242.51,26.1,265.29 -7698,9,E06000044,4,90.42,399.29,26.1,435.45 -8024,10,E06000044,0,61.49,439.1,18.44,478.86 -201,1,E07000123,1,52.2,94.33,26.1,117.9 -527,1,E07000123,2,59.66,108.27,26.1,136.13 -853,1,E07000123,3,66.17,121.11,26.1,146.84 -1179,1,E07000123,4,72.71,135.06,26.1,160.78 -1505,3,E07000123,1,43.8,86.81,26.1,101.83 -1831,3,E07000123,2,54.06,95.42,26.1,114.68 -2157,3,E07000123,3,58.72,106.12,26.1,125.4 -2483,3,E07000123,4,55.93,120.05,26.1,135.06 -2809,2,E07000123,0,55.36,236.93,18.44,338.29 -3135,4,E07000123,0,32.8,464.43,18.44,592.92 -3461,6,E07000123,0,55.36,226.32,18.44,246.36 -3787,8,E07000123,0,32.8,226.32,18.44,246.36 -4373,5,E07000123,1,52.2,103.98,26.1,113.61 -4485,7,E07000123,1,43.8,103.98,26.1,113.61 -4943,5,E07000123,2,59.66,131.84,26.1,144.7 -5081,7,E07000123,2,54.06,131.84,26.1,144.7 -5586,5,E07000123,3,66.17,148.99,26.1,161.86 -5761,7,E07000123,3,58.72,148.99,26.1,161.86 -6334,5,E07000123,4,72.71,205.81,26.1,224.01 -6385,7,E07000123,4,55.93,205.81,26.1,224.01 -6721,9,E07000123,1,52.2,129.97,26.1,142.02 -7047,9,E07000123,2,59.66,164.8,26.1,180.87 -7373,9,E07000123,3,66.17,186.23,26.1,202.34 -7699,9,E07000123,4,72.71,257.26,26.1,280.03 -8025,10,E07000123,0,55.36,282.91,18.44,307.95 -203,1,E06000038,1,57.79,124.33,26.1,177.93 -529,1,E06000038,2,71.78,147.91,26.1,188.66 -855,1,E06000038,3,82.02,162.93,26.1,205.81 -1181,1,E06000038,4,90.42,180.08,26.1,224.01 -1507,3,E06000038,1,52.2,116.83,26.1,160.78 -1833,3,E06000038,2,63.38,130.77,26.1,146.84 -2159,3,E06000038,3,68.97,151.13,26.1,187.58 -2485,3,E06000038,4,73.64,186.51,26.1,196.15 -2811,2,E06000038,0,61.49,265.21,18.44,340.65 -3137,4,E06000038,0,48.18,193.32,18.44,202.73 -3463,6,E06000038,0,61.49,493.9,18.44,538.7 -3789,8,E06000038,0,48.18,493.9,18.44,538.7 -4019,5,E06000038,1,57.79,160.78,26.1,175.78 -4086,7,E06000038,1,52.2,160.78,26.1,175.78 -4634,5,E06000038,2,71.78,204.74,26.1,222.95 -4781,7,E06000038,2,63.38,204.74,26.1,222.95 -5286,5,E06000038,3,82.02,221.88,26.1,242.25 -5386,7,E06000038,3,68.97,221.88,26.1,242.25 -5971,5,E06000038,4,90.42,450.18,26.1,489.85 -6075,7,E06000038,4,73.64,450.18,26.1,489.85 -6723,9,E06000038,1,57.79,200.97,26.1,219.74 -7049,9,E06000038,2,71.78,255.92,26.1,278.69 -7375,9,E06000038,3,82.02,277.34,26.1,302.81 -7701,9,E06000038,4,90.42,562.74,26.1,612.31 -8027,10,E06000038,0,61.49,617.37,18.44,673.36 -204,1,E09000026,1,66.17,146.84,26.1,199.38 -530,1,E09000026,2,78.29,158.63,26.1,194.01 -856,1,E09000026,3,84.82,168.29,26.1,228.29 -1182,1,E09000026,4,102.51,188.66,26.1,254.03 -1508,3,E09000026,1,58.72,120.05,26.1,147.91 -1834,3,E09000026,2,64.31,140.42,26.1,176.86 -2160,3,E09000026,3,71.78,160.78,26.1,202.58 -2486,3,E09000026,4,83.89,262.61,26.1,263.68 -2812,2,E09000026,0,69.7,313.55,18.44,497.44 -3138,4,E09000026,0,59.45,367.77,18.44,398.42 -3464,6,E09000026,0,69.7,412.57,18.44,450.29 -3790,8,E09000026,0,59.45,412.57,18.44,450.29 -3975,5,E09000026,1,66.17,183.29,26.1,200.45 -4189,7,E09000026,1,58.72,183.29,26.1,200.45 -4590,5,E09000026,2,78.29,240.09,26.1,261.54 -4690,7,E09000026,2,64.31,240.09,26.1,261.54 -5242,5,E09000026,3,84.82,295.83,26.1,322.64 -5342,7,E09000026,3,71.78,295.83,26.1,322.64 -5894,7,E09000026,4,83.89,375.16,26.1,409.45 -5927,5,E09000026,4,102.51,375.16,26.1,409.45 -6724,9,E09000026,1,66.17,229.13,26.1,250.54 -7050,9,E09000026,2,78.29,300.12,26.1,326.92 -7376,9,E09000026,3,84.82,369.81,26.1,403.3 -7702,9,E09000026,4,102.51,468.95,26.1,511.83 -8028,10,E09000026,0,69.7,515.71,18.44,562.87 -205,1,E06000003,1,51.27,88.96,26.1,98.62 -531,1,E06000003,2,57.79,102.91,26.1,121.11 -857,1,E06000003,3,61.52,114.68,26.1,160.78 -1183,1,E06000003,4,70.84,128.63,26.1,140.42 -1509,3,E06000003,1,42.87,100.76,26.1,106.12 -1835,3,E06000003,2,50.34,91.12,26.1,112.54 -2161,3,E06000003,3,54.06,106.12,26.1,125.4 -2487,3,E06000003,4,56.86,116.83,26.1,121.11 -2813,2,E06000003,0,55.36,234.56,18.44,337.12 -3139,4,E06000003,0,47.15,251.08,18.44,285.25 -3465,6,E06000003,0,55.36,189.79,18.44,206.28 -3791,8,E06000003,0,47.15,189.79,18.44,206.28 -4459,7,E06000003,1,42.87,98.62,26.1,108.27 -4540,5,E06000003,1,51.27,98.62,26.1,108.27 -5055,5,E06000003,2,57.79,115.76,26.1,125.4 -5106,7,E06000003,2,50.34,115.76,26.1,125.4 -5560,5,E06000003,3,61.52,133.98,26.1,146.84 -5735,7,E06000003,3,54.06,133.98,26.1,146.84 -6359,5,E06000003,4,70.84,172.58,26.1,187.58 -6517,7,E06000003,4,56.86,172.58,26.1,187.58 -6725,9,E06000003,1,42.87,123.26,26.1,135.33 -7051,9,E06000003,2,57.79,144.7,26.1,156.77 -7377,9,E06000003,3,61.52,167.48,26.1,183.56 -7703,9,E06000003,4,70.84,215.73,26.1,234.49 -8029,10,E06000003,0,55.36,237.24,18.44,257.84 -206,1,E07000236,1,53.13,99.69,26.1,125.4 -532,1,E07000236,2,58.72,117.9,26.1,138.27 -858,1,E07000236,3,69.9,133.98,26.1,161.86 -1184,1,E07000236,4,81.09,162.93,26.1,180.08 -1510,3,E07000236,1,46.6,88.96,26.1,98.62 -1836,3,E07000236,2,50.34,95.42,26.1,103.98 -2162,3,E07000236,3,60.59,105.05,26.1,121.11 -2488,3,E07000236,4,68.97,128.63,26.1,128.63 -2814,2,E07000236,0,38.95,242.82,18.44,378.37 -3140,4,E07000236,0,46.12,106.09,18.44,106.09 -3466,6,E07000236,0,38.95,213.35,18.44,233.38 -3792,8,E07000236,0,46.12,213.35,18.44,233.38 -4293,5,E07000236,1,53.13,110.39,26.1,120.05 -4514,7,E07000236,1,46.6,110.39,26.1,120.05 -4903,5,E07000236,2,58.72,131.84,26.1,144.7 -5199,7,E07000236,2,50.34,131.84,26.1,144.7 -5534,5,E07000236,3,69.9,148.99,26.1,161.86 -5790,7,E07000236,3,60.59,148.99,26.1,161.86 -6186,5,E07000236,4,81.09,194.01,26.1,212.24 -6451,7,E07000236,4,68.97,194.01,26.1,212.24 -6726,9,E07000236,1,53.13,138.01,26.1,150.06 -7052,9,E07000236,2,58.72,164.8,26.1,180.87 -7378,9,E07000236,3,69.9,186.23,26.1,202.34 -7704,9,E07000236,4,81.09,242.51,26.1,265.29 -8030,10,E07000236,0,38.95,266.69,18.44,291.74 -207,1,E07000211,1,57.79,124.33,26.1,177.93 -533,1,E07000211,2,71.78,147.91,26.1,188.66 -859,1,E07000211,3,82.02,162.93,26.1,205.81 -1185,1,E07000211,4,90.42,180.08,26.1,224.01 -1511,3,E07000211,1,52.2,116.83,26.1,160.78 -1837,3,E07000211,2,63.38,130.77,26.1,146.84 -2163,3,E07000211,3,68.97,151.13,26.1,187.58 -2489,3,E07000211,4,73.64,186.51,26.1,196.15 -2815,2,E07000211,0,61.49,265.21,18.44,340.65 -3141,4,E07000211,0,48.18,193.32,18.44,202.73 -3467,6,E07000211,0,61.49,486.82,18.44,530.44 -3793,8,E07000211,0,48.18,486.82,18.44,530.44 -4020,5,E07000211,1,57.79,160.78,26.1,175.78 -4087,7,E07000211,1,52.2,160.78,26.1,175.78 -4635,5,E07000211,2,71.78,211.17,26.1,230.44 -4782,7,E07000211,2,63.38,211.17,26.1,230.44 -5287,5,E07000211,3,82.02,272.26,26.1,296.91 -5387,7,E07000211,3,68.97,272.26,26.1,296.91 -5972,5,E07000211,4,90.42,442.67,26.1,482.35 -6076,7,E07000211,4,73.64,442.67,26.1,482.35 -6727,9,E07000211,1,57.79,200.97,26.1,219.74 -7053,9,E07000211,2,71.78,263.95,26.1,288.07 -7379,9,E07000211,3,82.02,340.33,26.1,371.13 -7705,9,E07000211,4,90.42,553.35,26.1,602.94 -8031,10,E07000211,0,61.49,608.53,18.44,663.05 -208,1,E07000124,1,52.2,94.33,26.1,117.9 -534,1,E07000124,2,59.66,108.27,26.1,136.13 -860,1,E07000124,3,66.17,121.11,26.1,146.84 -1186,1,E07000124,4,72.71,135.06,26.1,160.78 -1512,3,E07000124,1,43.8,86.81,26.1,101.83 -1838,3,E07000124,2,54.06,95.42,26.1,114.68 -2164,3,E07000124,3,58.72,106.12,26.1,125.4 -2490,3,E07000124,4,55.93,120.05,26.1,135.06 -2816,2,E07000124,0,55.36,236.93,18.44,338.29 -3142,4,E07000124,0,32.8,464.43,18.44,592.92 -3468,6,E07000124,0,55.36,275.83,18.44,300.58 -3794,8,E07000124,0,32.8,275.83,18.44,300.58 -4374,5,E07000124,1,52.2,103.98,26.1,113.61 -4486,7,E07000124,1,43.8,103.98,26.1,113.61 -4944,5,E07000124,2,59.66,131.84,26.1,144.7 -5082,7,E07000124,2,54.06,131.84,26.1,144.7 -5587,5,E07000124,3,66.17,159.7,26.1,174.72 -5762,7,E07000124,3,58.72,159.7,26.1,174.72 -6335,5,E07000124,4,72.71,250.82,26.1,273.34 -6386,7,E07000124,4,55.93,250.82,26.1,273.34 -6728,9,E07000124,1,52.2,129.97,26.1,142.02 -7054,9,E07000124,2,59.66,164.8,26.1,180.87 -7380,9,E07000124,3,66.17,199.62,26.1,218.38 -7706,9,E07000124,4,72.71,313.51,26.1,341.67 -8032,10,E07000124,0,55.36,344.81,18.44,375.73 -210,1,E09000027,1,66.17,146.84,26.1,199.38 -536,1,E09000027,2,78.29,158.63,26.1,194.01 -862,1,E09000027,3,84.82,168.29,26.1,228.29 -1188,1,E09000027,4,102.51,188.66,26.1,254.03 -1514,3,E09000027,1,58.72,120.05,26.1,147.91 -1840,3,E09000027,2,64.31,140.42,26.1,176.86 -2166,3,E09000027,3,71.78,160.78,26.1,202.58 -2492,3,E09000027,4,83.89,262.61,26.1,263.68 -2818,2,E09000027,0,69.7,313.55,18.44,497.44 -3144,4,E09000027,0,59.45,367.77,18.44,398.42 -3470,6,E09000027,0,69.7,994.86,18.44,1085.64 -3796,8,E09000027,0,59.45,994.86,18.44,1085.64 -3976,5,E09000027,1,66.17,250.82,26.1,273.34 -4190,7,E09000027,1,58.72,250.82,26.1,273.34 -4591,5,E09000027,2,78.29,339.77,26.1,370.87 -4691,7,E09000027,2,64.31,339.77,26.1,370.87 -5243,5,E09000027,3,84.82,476.98,26.1,519.86 -5343,7,E09000027,3,71.78,476.98,26.1,519.86 -5895,7,E09000027,4,83.89,904.65,26.1,987.19 -5928,5,E09000027,4,102.51,904.65,26.1,987.19 -6730,9,E09000027,1,66.17,313.51,26.1,341.67 -7056,9,E09000027,2,78.29,424.73,26.1,463.59 -7382,9,E09000027,3,84.82,596.23,26.1,649.84 -7708,9,E09000027,4,102.51,1130.82,26.1,1234 -8034,10,E09000027,0,69.7,1243.58,18.44,1357.05 -209,1,E07000166,1,51.27,92.19,26.1,114.68 -535,1,E07000166,2,58.72,109.33,26.1,141.49 -861,1,E07000166,3,63.38,121.11,26.1,162.93 -1187,1,E07000166,4,73.64,145.77,26.1,180.08 -1513,3,E07000166,1,46.6,82.54,26.1,93.26 -1839,3,E07000166,2,53.13,113.61,26.1,145.77 -2165,3,E07000166,3,56.86,105.05,26.1,114.68 -2491,3,E07000166,4,64.31,122.19,26.1,176.86 -2817,2,E07000166,0,52.28,232.2,18.44,319.44 -3143,4,E07000166,0,51.26,159.13,18.44,188.6 -3469,6,E07000166,0,52.28,225.15,18.44,245.18 -3795,8,E07000166,0,51.26,225.15,18.44,245.18 -4403,5,E07000166,1,51.27,97.54,26.1,106.12 -4557,7,E07000166,1,46.6,97.54,26.1,106.12 -4825,7,E07000166,2,53.13,126.48,26.1,138.27 -4883,5,E07000166,2,58.72,126.48,26.1,138.27 -5514,5,E07000166,3,63.38,148.99,26.1,161.86 -5861,7,E07000166,3,56.86,148.99,26.1,161.86 -6119,5,E07000166,4,73.64,204.74,26.1,222.95 -6217,7,E07000166,4,64.31,204.74,26.1,222.95 -6729,9,E07000166,1,51.27,121.95,26.1,132.65 -7055,9,E07000166,2,53.13,158.09,26.1,172.84 -7381,9,E07000166,3,63.38,186.23,26.1,202.34 -7707,9,E07000166,4,73.64,255.92,26.1,278.69 -8033,10,E07000166,0,52.28,281.43,18.44,306.45 -211,1,E08000005,1,52.2,94.33,26.1,117.9 -537,1,E08000005,2,59.66,108.27,26.1,136.13 -863,1,E08000005,3,66.17,121.11,26.1,146.84 -1189,1,E08000005,4,72.71,135.06,26.1,160.78 -1515,3,E08000005,1,43.8,86.81,26.1,101.83 -1841,3,E08000005,2,54.06,95.42,26.1,114.68 -2167,3,E08000005,3,58.72,106.12,26.1,125.4 -2493,3,E08000005,4,55.93,120.05,26.1,135.06 -2819,2,E08000005,0,55.36,236.93,18.44,338.29 -3145,4,E08000005,0,32.8,464.43,18.44,592.92 -3471,6,E08000005,0,55.36,213.35,18.44,233.38 -3797,8,E08000005,0,32.8,213.35,18.44,233.38 -4375,5,E08000005,1,52.2,96.49,26.1,105.05 -4487,7,E08000005,1,43.8,96.49,26.1,105.05 -4945,5,E08000005,2,59.66,110.39,26.1,120.05 -5083,7,E08000005,2,54.06,110.39,26.1,120.05 -5588,5,E08000005,3,66.17,131.84,26.1,144.7 -5763,7,E08000005,3,58.72,131.84,26.1,144.7 -6336,5,E08000005,4,72.71,194.01,26.1,212.24 -6387,7,E08000005,4,55.93,194.01,26.1,212.24 -6731,9,E08000005,1,52.2,120.59,26.1,131.29 -7057,9,E08000005,2,59.66,138.01,26.1,150.06 -7383,9,E08000005,3,66.17,164.8,26.1,180.87 -7709,9,E08000005,4,72.71,242.51,26.1,265.29 -8035,10,E08000005,0,55.36,266.69,18.44,291.74 -212,1,E07000075,1,54.99,120.05,26.1,150.06 -538,1,E07000075,2,65.24,143.62,26.1,169.36 -864,1,E07000075,3,71.78,157.56,26.1,182.22 -1190,1,E07000075,4,82.02,172.58,26.1,180.08 -1516,3,E07000075,1,50.34,100.76,26.1,132.91 -1842,3,E07000075,2,58.72,118.97,26.1,133.98 -2168,3,E07000075,3,64.31,131.84,26.1,144.7 -2494,3,E07000075,4,71.78,150.06,26.1,160.78 -2820,2,E07000075,0,35.87,223.96,18.44,418.45 -3146,4,E07000075,0,55.36,134.38,18.44,314.73 -3472,6,E07000075,0,35.87,325.34,18.44,354.8 -3798,8,E07000075,0,55.36,325.34,18.44,354.8 -4149,5,E07000075,1,54.99,136.13,26.1,148.99 -4266,7,E07000075,1,50.34,136.13,26.1,148.99 -4730,5,E07000075,2,65.24,182.22,26.1,199.38 -4992,7,E07000075,2,58.72,182.22,26.1,199.38 -5449,5,E07000075,3,71.78,216.52,26.1,236.89 -5635,7,E07000075,3,64.31,216.52,26.1,236.89 -6159,5,E07000075,4,82.02,295.83,26.1,322.64 -6297,7,E07000075,4,71.78,295.83,26.1,322.64 -6732,9,E07000075,1,54.99,170.16,26.1,186.23 -7058,9,E07000075,2,65.24,227.8,26.1,249.22 -7384,9,E07000075,3,71.78,270.66,26.1,296.11 -7710,9,E07000075,4,82.02,369.81,26.1,403.3 -8036,10,E07000075,0,35.87,406.66,18.44,443.51 -213,1,E07000125,1,52.2,94.33,26.1,117.9 -539,1,E07000125,2,59.66,108.27,26.1,136.13 -865,1,E07000125,3,66.17,121.11,26.1,146.84 -1191,1,E07000125,4,72.71,135.06,26.1,160.78 -1517,3,E07000125,1,43.8,86.81,26.1,101.83 -1843,3,E07000125,2,54.06,95.42,26.1,114.68 -2169,3,E07000125,3,58.72,106.12,26.1,125.4 -2495,3,E07000125,4,55.93,120.05,26.1,135.06 -2821,2,E07000125,0,55.36,236.93,18.44,338.29 -3147,4,E07000125,0,32.8,464.43,18.44,592.92 -3473,6,E07000125,0,55.36,201.56,18.44,220.42 -3799,8,E07000125,0,32.8,201.56,18.44,220.42 -4376,5,E07000125,1,52.2,92.19,26.1,99.69 -4488,7,E07000125,1,43.8,92.19,26.1,99.69 -4946,5,E07000125,2,59.66,110.39,26.1,120.05 -5084,7,E07000125,2,54.06,110.39,26.1,120.05 -5589,5,E07000125,3,66.17,126.48,26.1,138.27 -5764,7,E07000125,3,58.72,126.48,26.1,138.27 -6337,5,E07000125,4,72.71,183.29,26.1,200.45 -6388,7,E07000125,4,55.93,183.29,26.1,200.45 -6733,9,E07000125,1,52.2,115.24,26.1,124.6 -7059,9,E07000125,2,59.66,138.01,26.1,150.06 -7385,9,E07000125,3,66.17,158.09,26.1,172.84 -7711,9,E07000125,4,72.71,229.13,26.1,250.54 -8037,10,E07000125,0,55.36,251.95,18.44,275.54 -214,1,E07000064,1,57.79,124.33,26.1,177.93 -540,1,E07000064,2,71.78,147.91,26.1,188.66 -866,1,E07000064,3,82.02,162.93,26.1,205.81 -1192,1,E07000064,4,90.42,180.08,26.1,224.01 -1518,3,E07000064,1,52.2,116.83,26.1,160.78 -1844,3,E07000064,2,63.38,130.77,26.1,146.84 -2170,3,E07000064,3,68.97,151.13,26.1,187.58 -2496,3,E07000064,4,73.64,186.51,26.1,196.15 -2822,2,E07000064,0,61.49,265.21,18.44,340.65 -3148,4,E07000064,0,48.18,193.32,18.44,202.73 -3474,6,E07000064,0,61.49,312.38,18.44,340.65 -3800,8,E07000064,0,48.18,312.38,18.44,340.65 -4021,5,E07000064,1,57.79,117.9,26.1,128.63 -4088,7,E07000064,1,52.2,117.9,26.1,128.63 -4636,5,E07000064,2,71.78,148.99,26.1,161.86 -4783,7,E07000064,2,63.38,148.99,26.1,161.86 -5288,5,E07000064,3,82.02,200.45,26.1,217.59 -5388,7,E07000064,3,68.97,200.45,26.1,217.59 -5973,5,E07000064,4,90.42,284.04,26.1,309.78 -6077,7,E07000064,4,73.64,284.04,26.1,309.78 -6734,9,E07000064,1,57.79,147.38,26.1,160.78 -7060,9,E07000064,2,71.78,186.23,26.1,202.34 -7386,9,E07000064,3,82.02,250.54,26.1,271.98 -7712,9,E07000064,4,90.42,355.06,26.1,387.21 -8038,10,E07000064,0,61.49,390.47,18.44,425.82 -215,1,E08000018,1,51.27,92.19,26.1,114.68 -541,1,E08000018,2,58.72,109.33,26.1,141.49 -867,1,E08000018,3,63.38,121.11,26.1,162.93 -1193,1,E08000018,4,73.64,145.77,26.1,180.08 -1519,3,E08000018,1,46.6,82.54,26.1,93.26 -1845,3,E08000018,2,53.13,113.61,26.1,145.77 -2171,3,E08000018,3,56.86,105.05,26.1,114.68 -2497,3,E08000018,4,64.31,122.19,26.1,176.86 -2823,2,E08000018,0,52.28,232.2,18.44,319.44 -3149,4,E08000018,0,51.26,159.13,18.44,188.6 -3475,6,E08000018,0,52.28,189.79,18.44,206.28 -3801,8,E08000018,0,51.26,189.79,18.44,206.28 -4404,5,E08000018,1,51.27,87.89,26.1,95.42 -4558,7,E08000018,1,46.6,87.89,26.1,95.42 -4826,7,E08000018,2,53.13,114.68,26.1,124.33 -4884,5,E08000018,2,58.72,114.68,26.1,124.33 -5515,5,E08000018,3,63.38,126.48,26.1,138.27 -5862,7,E08000018,3,56.86,126.48,26.1,138.27 -6120,5,E08000018,4,73.64,172.58,26.1,187.58 -6218,7,E08000018,4,64.31,172.58,26.1,187.58 -6735,9,E08000018,1,51.27,109.88,26.1,119.25 -7061,9,E08000018,2,53.13,143.37,26.1,155.41 -7387,9,E08000018,3,63.38,158.09,26.1,172.84 -7713,9,E08000018,4,73.64,215.73,26.1,234.49 -8039,10,E08000018,0,52.28,237.24,18.44,257.84 -216,1,E07000220,1,53.13,99.69,26.1,125.4 -542,1,E07000220,2,58.72,117.9,26.1,138.27 -868,1,E07000220,3,69.9,133.98,26.1,161.86 -1194,1,E07000220,4,81.09,162.93,26.1,180.08 -1520,3,E07000220,1,46.6,88.96,26.1,98.62 -1846,3,E07000220,2,50.34,95.42,26.1,103.98 -2172,3,E07000220,3,60.59,105.05,26.1,121.11 -2498,3,E07000220,4,68.97,128.63,26.1,128.63 -2824,2,E07000220,0,38.95,242.82,18.44,378.37 -3150,4,E07000220,0,46.12,106.09,18.44,106.09 -3476,6,E07000220,0,38.95,294.71,18.44,321.8 -3802,8,E07000220,0,46.12,294.71,18.44,321.8 -4294,5,E07000220,1,53.13,103.98,26.1,113.61 -4515,7,E07000220,1,46.6,103.98,26.1,113.61 -4904,5,E07000220,2,58.72,126.48,26.1,138.27 -5200,7,E07000220,2,50.34,126.48,26.1,138.27 -5535,5,E07000220,3,69.9,155.41,26.1,169.36 -5791,7,E07000220,3,60.59,155.41,26.1,169.36 -6187,5,E07000220,4,81.09,267.97,26.1,292.61 -6452,7,E07000220,4,68.97,267.97,26.1,292.61 -6736,9,E07000220,1,53.13,129.97,26.1,142.02 -7062,9,E07000220,2,58.72,158.09,26.1,172.84 -7388,9,E07000220,3,69.9,194.27,26.1,211.69 -7714,9,E07000220,4,81.09,334.98,26.1,365.79 -8040,10,E07000220,0,38.95,368.37,18.44,402.27 -217,1,E07000212,1,57.79,124.33,26.1,177.93 -543,1,E07000212,2,71.78,147.91,26.1,188.66 -869,1,E07000212,3,82.02,162.93,26.1,205.81 -1195,1,E07000212,4,90.42,180.08,26.1,224.01 -1521,3,E07000212,1,52.2,116.83,26.1,160.78 -1847,3,E07000212,2,63.38,130.77,26.1,146.84 -2173,3,E07000212,3,68.97,151.13,26.1,187.58 -2499,3,E07000212,4,73.64,186.51,26.1,196.15 -2825,2,E07000212,0,61.49,265.21,18.44,340.65 -3151,4,E07000212,0,48.18,193.32,18.44,202.73 -3477,6,E07000212,0,61.49,598.8,18.44,653.04 -3803,8,E07000212,0,48.18,598.8,18.44,653.04 -4022,5,E07000212,1,57.79,183.29,26.1,200.45 -4089,7,E07000212,1,52.2,183.29,26.1,200.45 -4637,5,E07000212,2,71.78,250.82,26.1,273.34 -4784,7,E07000212,2,63.38,250.82,26.1,273.34 -5289,5,E07000212,3,82.02,307.63,26.1,335.49 -5389,7,E07000212,3,68.97,307.63,26.1,335.49 -5974,5,E07000212,4,90.42,544.51,26.1,593.82 -6078,7,E07000212,4,73.64,544.51,26.1,593.82 -6737,9,E07000212,1,57.79,229.13,26.1,250.54 -7063,9,E07000212,2,71.78,313.51,26.1,341.67 -7389,9,E07000212,3,82.02,384.53,26.1,419.36 -7715,9,E07000212,4,90.42,680.64,26.1,742.29 -8041,10,E07000212,0,61.49,748.51,18.44,816.29 -218,1,E07000176,1,52.2,100.76,26.1,123.26 -544,1,E07000176,2,62.45,115.76,26.1,130.77 -870,1,E07000176,3,68.97,127.56,26.1,139.34 -1196,1,E07000176,4,76.43,159.7,26.1,168.29 -1522,3,E07000176,1,46.6,91.12,26.1,108.27 -1848,3,E07000176,2,53.13,97.54,26.1,109.33 -2174,3,E07000176,3,58.72,105.05,26.1,120.05 -2500,3,E07000176,4,64.31,123.26,26.1,123.26 -2826,2,E07000176,0,51.26,238.1,18.44,357.17 -3152,4,E07000176,0,49.2,113.15,18.44,122.59 -3478,6,E07000176,0,51.26,300.58,18.44,327.69 -3804,8,E07000176,0,49.2,300.58,18.44,327.69 -4343,5,E07000176,1,52.2,110.39,26.1,120.05 -4443,7,E07000176,1,46.6,110.39,26.1,120.05 -5039,5,E07000176,2,62.45,136.13,26.1,148.99 -5179,7,E07000176,2,53.13,136.13,26.1,148.99 -5682,5,E07000176,3,68.97,172.58,26.1,187.58 -5840,7,E07000176,3,58.72,172.58,26.1,187.58 -6257,5,E07000176,4,76.43,273.34,26.1,297.99 -6501,7,E07000176,4,64.31,273.34,26.1,297.99 -6738,9,E07000176,1,52.2,138.01,26.1,150.06 -7064,9,E07000176,2,62.45,170.16,26.1,186.23 -7390,9,E07000176,3,68.97,215.73,26.1,234.49 -7716,9,E07000176,4,76.43,341.67,26.1,372.48 -8042,10,E07000176,0,51.26,375.73,18.44,409.61 -219,1,E07000092,1,57.79,124.33,26.1,177.93 -545,1,E07000092,2,71.78,147.91,26.1,188.66 -871,1,E07000092,3,82.02,162.93,26.1,205.81 -1197,1,E07000092,4,90.42,180.08,26.1,224.01 -1523,3,E07000092,1,52.2,116.83,26.1,160.78 -1849,3,E07000092,2,63.38,130.77,26.1,146.84 -2175,3,E07000092,3,68.97,151.13,26.1,187.58 -2501,3,E07000092,4,73.64,186.51,26.1,196.15 -2827,2,E07000092,0,61.49,265.21,18.44,340.65 -3153,4,E07000092,0,48.18,193.32,18.44,202.73 -3479,6,E07000092,0,61.49,374.83,18.44,409.03 -3805,8,E07000092,0,48.18,374.83,18.44,409.03 -4023,5,E07000092,1,57.79,148.99,26.1,161.86 -4090,7,E07000092,1,52.2,148.99,26.1,161.86 -4638,5,E07000092,2,71.78,183.29,26.1,200.45 -4785,7,E07000092,2,63.38,183.29,26.1,200.45 -5290,5,E07000092,3,82.02,240.09,26.1,261.54 -5390,7,E07000092,3,68.97,240.09,26.1,261.54 -5975,5,E07000092,4,90.42,340.85,26.1,371.94 -6079,7,E07000092,4,73.64,340.85,26.1,371.94 -6739,9,E07000092,1,57.79,186.23,26.1,202.34 -7065,9,E07000092,2,71.78,229.13,26.1,250.54 -7391,9,E07000092,3,82.02,300.12,26.1,326.92 -7717,9,E07000092,4,90.42,426.06,26.1,464.91 -8043,10,E07000092,0,61.49,468.55,18.44,511.3 -220,1,E06000017,1,52.2,100.76,26.1,123.26 -546,1,E06000017,2,62.45,115.76,26.1,130.77 -872,1,E06000017,3,68.97,127.56,26.1,139.34 -1198,1,E06000017,4,76.43,159.7,26.1,168.29 -1524,3,E06000017,1,46.6,91.12,26.1,108.27 -1850,3,E06000017,2,53.13,97.54,26.1,109.33 -2176,3,E06000017,3,58.72,105.05,26.1,120.05 -2502,3,E06000017,4,64.31,123.26,26.1,123.26 -2828,2,E06000017,0,51.26,238.1,18.44,357.17 -3154,4,E06000017,0,49.2,113.15,18.44,122.59 -3480,6,E06000017,0,51.26,319.44,18.44,346.55 -3806,8,E06000017,0,49.2,319.44,18.44,346.55 -4344,5,E06000017,1,52.2,110.39,26.1,120.05 -4444,7,E06000017,1,46.6,110.39,26.1,120.05 -5040,5,E06000017,2,62.45,131.84,26.1,144.7 -5180,7,E06000017,2,53.13,131.84,26.1,144.7 -5683,5,E06000017,3,68.97,166.14,26.1,181.15 -5841,7,E06000017,3,58.72,166.14,26.1,181.15 -6258,5,E06000017,4,76.43,290.49,26.1,315.14 -6502,7,E06000017,4,64.31,290.49,26.1,315.14 -6740,9,E06000017,1,52.2,138.01,26.1,150.06 -7066,9,E06000017,2,62.45,164.8,26.1,180.87 -7392,9,E06000017,3,68.97,207.68,26.1,226.44 -7718,9,E06000017,4,76.43,363.1,26.1,393.91 -8044,10,E06000017,0,51.26,399.32,18.44,433.19 -221,1,E07000167,1,51.27,92.19,26.1,114.68 -547,1,E07000167,2,58.72,109.33,26.1,141.49 -873,1,E07000167,3,63.38,121.11,26.1,162.93 -1199,1,E07000167,4,73.64,145.77,26.1,180.08 -1525,3,E07000167,1,46.6,82.54,26.1,93.26 -1851,3,E07000167,2,53.13,113.61,26.1,145.77 -2177,3,E07000167,3,56.86,105.05,26.1,114.68 -2503,3,E07000167,4,64.31,122.19,26.1,176.86 -2829,2,E07000167,0,52.28,232.2,18.44,319.44 -3155,4,E07000167,0,51.26,159.13,18.44,188.6 -3481,6,E07000167,0,52.28,252.25,18.44,273.47 -3807,8,E07000167,0,51.26,252.25,18.44,273.47 -4405,5,E07000167,1,51.27,100.76,26.1,110.39 -4559,7,E07000167,1,46.6,100.76,26.1,110.39 -4827,7,E07000167,2,53.13,126.48,26.1,138.27 -4885,5,E07000167,2,58.72,126.48,26.1,138.27 -5516,5,E07000167,3,63.38,148.99,26.1,161.86 -5863,7,E07000167,3,56.86,148.99,26.1,161.86 -6121,5,E07000167,4,73.64,229.37,26.1,248.67 -6219,7,E07000167,4,64.31,229.37,26.1,248.67 -6741,9,E07000167,1,51.27,125.95,26.1,138.01 -7067,9,E07000167,2,53.13,158.09,26.1,172.84 -7393,9,E07000167,3,63.38,186.23,26.1,202.34 -7719,9,E07000167,4,73.64,286.72,26.1,310.84 -8045,10,E07000167,0,52.28,315.32,18.44,341.84 -222,1,E08000006,1,52.2,94.33,26.1,117.9 -548,1,E08000006,2,59.66,108.27,26.1,136.13 -874,1,E08000006,3,66.17,121.11,26.1,146.84 -1200,1,E08000006,4,72.71,135.06,26.1,160.78 -1526,3,E08000006,1,43.8,86.81,26.1,101.83 -1852,3,E08000006,2,54.06,95.42,26.1,114.68 -2178,3,E08000006,3,58.72,106.12,26.1,125.4 -2504,3,E08000006,4,55.93,120.05,26.1,135.06 -2830,2,E08000006,0,55.36,236.93,18.44,338.29 -3156,4,E08000006,0,32.8,464.43,18.44,592.92 -3482,6,E08000006,0,55.36,269.94,18.44,294.71 -3808,8,E08000006,0,32.8,269.94,18.44,294.71 -4377,5,E08000006,1,52.2,114.68,26.1,124.33 -4489,7,E08000006,1,43.8,114.68,26.1,124.33 -4947,5,E08000006,2,59.66,131.84,26.1,144.7 -5085,7,E08000006,2,54.06,131.84,26.1,144.7 -5590,5,E08000006,3,66.17,148.99,26.1,161.86 -5765,7,E08000006,3,58.72,148.99,26.1,161.86 -6338,5,E08000006,4,72.71,245.47,26.1,267.97 -6389,7,E08000006,4,55.93,245.47,26.1,267.97 -6742,9,E08000006,1,52.2,143.37,26.1,155.41 -7068,9,E08000006,2,59.66,164.8,26.1,180.87 -7394,9,E08000006,3,66.17,186.23,26.1,202.34 -7720,9,E08000006,4,72.71,306.81,26.1,334.98 -8046,10,E08000006,0,55.36,337.42,18.44,368.37 -223,1,E08000028,1,53.13,99.69,26.1,125.4 -549,1,E08000028,2,58.72,117.9,26.1,138.27 -875,1,E08000028,3,69.9,133.98,26.1,161.86 -1201,1,E08000028,4,81.09,162.93,26.1,180.08 -1527,3,E08000028,1,46.6,88.96,26.1,98.62 -1853,3,E08000028,2,50.34,95.42,26.1,103.98 -2179,3,E08000028,3,60.59,105.05,26.1,121.11 -2505,3,E08000028,4,68.97,128.63,26.1,128.63 -2831,2,E08000028,0,38.95,242.82,18.44,378.37 -3157,4,E08000028,0,46.12,106.09,18.44,106.09 -3483,6,E08000028,0,38.95,201.56,18.44,220.42 -3809,8,E08000028,0,46.12,201.56,18.44,220.42 -4295,5,E08000028,1,53.13,100.76,26.1,110.39 -4516,7,E08000028,1,46.6,100.76,26.1,110.39 -4905,5,E08000028,2,58.72,121.11,26.1,131.84 -5201,7,E08000028,2,50.34,121.11,26.1,131.84 -5536,5,E08000028,3,69.9,136.13,26.1,148.99 -5792,7,E08000028,3,60.59,136.13,26.1,148.99 -6188,5,E08000028,4,81.09,183.29,26.1,200.45 -6453,7,E08000028,4,68.97,183.29,26.1,200.45 -6743,9,E08000028,1,53.13,125.95,26.1,138.01 -7069,9,E08000028,2,58.72,151.41,26.1,164.8 -7395,9,E08000028,3,69.9,170.16,26.1,186.23 -7721,9,E08000028,4,81.09,229.13,26.1,250.54 -8047,10,E08000028,0,38.95,251.95,18.44,275.54 -224,1,E07000168,1,51.27,92.19,26.1,114.68 -550,1,E07000168,2,58.72,109.33,26.1,141.49 -876,1,E07000168,3,63.38,121.11,26.1,162.93 -1202,1,E07000168,4,73.64,145.77,26.1,180.08 -1528,3,E07000168,1,46.6,82.54,26.1,93.26 -1854,3,E07000168,2,53.13,113.61,26.1,145.77 -2180,3,E07000168,3,56.86,105.05,26.1,114.68 -2506,3,E07000168,4,64.31,122.19,26.1,176.86 -2832,2,E07000168,0,52.28,232.2,18.44,319.44 -3158,4,E07000168,0,51.26,159.13,18.44,188.6 -3484,6,E07000168,0,52.28,174.46,18.44,192.14 -3810,8,E07000168,0,51.26,174.46,18.44,192.14 -4406,5,E07000168,1,51.27,91.12,26.1,98.62 -4560,7,E07000168,1,46.6,91.12,26.1,98.62 -4828,7,E07000168,2,53.13,120.05,26.1,130.77 -4886,5,E07000168,2,58.72,120.05,26.1,130.77 -5517,5,E07000168,3,63.38,138.27,26.1,150.06 -5864,7,E07000168,3,56.86,138.27,26.1,150.06 -6122,5,E07000168,4,73.64,159.7,26.1,174.72 -6220,7,E07000168,4,64.31,159.7,26.1,174.72 -6744,9,E07000168,1,51.27,113.9,26.1,123.26 -7070,9,E07000168,2,53.13,150.06,26.1,163.46 -7396,9,E07000168,3,63.38,172.84,26.1,187.57 -7722,9,E07000168,4,73.64,199.62,26.1,218.38 -8048,10,E07000168,0,52.28,218.08,18.44,240.17 -225,1,E07000188,1,49.41,108.27,26.1,141.49 -551,1,E07000188,2,55.93,122.19,26.1,145.77 -877,1,E07000188,3,62.45,142.56,26.1,162.93 -1203,1,E07000188,4,71.78,159.7,26.1,196.15 -1529,3,E07000188,1,47.54,90.03,26.1,212.24 -1855,3,E07000188,2,54.99,101.83,26.1,112.54 -2181,3,E07000188,3,62.45,110.39,26.1,127.56 -2507,3,E07000188,4,74.57,131.84,26.1,131.84 -2833,2,E07000188,0,54.33,228.68,18.44,354.8 -3159,4,E07000188,0,54.33,114.33,18.44,140.27 -3485,6,E07000188,0,54.33,244,18.44,266.39 -3811,8,E07000188,0,54.33,244,18.44,266.39 -3934,7,E07000188,1,47.54,103.98,26.1,113.61 -4218,5,E07000188,1,49.41,103.98,26.1,113.61 -4854,5,E07000188,2,55.93,128.63,26.1,141.49 -5131,7,E07000188,2,54.99,128.63,26.1,141.49 -5485,5,E07000188,3,62.45,159.7,26.1,174.72 -5711,7,E07000188,3,62.45,159.7,26.1,174.72 -6023,5,E07000188,4,71.78,221.88,26.1,242.25 -6423,7,E07000188,4,74.57,221.88,26.1,242.25 -6745,9,E07000188,1,49.41,129.97,26.1,142.02 -7071,9,E07000188,2,55.93,160.78,26.1,176.86 -7397,9,E07000188,3,62.45,199.62,26.1,218.38 -7723,9,E07000188,4,71.78,277.34,26.1,302.81 -8049,10,E07000188,0,54.33,305,18.44,332.99 -226,1,E08000014,1,52.2,94.33,26.1,117.9 -552,1,E08000014,2,59.66,108.27,26.1,136.13 -878,1,E08000014,3,66.17,121.11,26.1,146.84 -1204,1,E08000014,4,72.71,135.06,26.1,160.78 -1530,3,E08000014,1,43.8,86.81,26.1,101.83 -1856,3,E08000014,2,54.06,95.42,26.1,114.68 -2182,3,E08000014,3,58.72,106.12,26.1,125.4 -2508,3,E08000014,4,55.93,120.05,26.1,135.06 -2834,2,E08000014,0,55.36,236.93,18.44,338.29 -3160,4,E08000014,0,32.8,464.43,18.44,592.92 -3486,6,E08000014,0,55.36,244,18.44,266.39 -3812,8,E08000014,0,32.8,244,18.44,266.39 -4378,5,E08000014,1,52.2,103.98,26.1,113.61 -4490,7,E08000014,1,43.8,103.98,26.1,113.61 -4948,5,E08000014,2,59.66,132.91,26.1,145.77 -5086,7,E08000014,2,54.06,132.91,26.1,145.77 -5591,5,E08000014,3,66.17,155.41,26.1,169.36 -5766,7,E08000014,3,58.72,155.41,26.1,169.36 -6339,5,E08000014,4,72.71,221.88,26.1,242.25 -6390,7,E08000014,4,55.93,221.88,26.1,242.25 -6746,9,E08000014,1,52.2,129.97,26.1,142.02 -7072,9,E08000014,2,59.66,166.13,26.1,182.21 -7398,9,E08000014,3,66.17,194.27,26.1,211.69 -7724,9,E08000014,4,72.71,277.34,26.1,302.81 -8050,10,E08000014,0,55.36,305,18.44,332.99 -227,1,E07000169,1,51.27,92.19,26.1,114.68 -553,1,E07000169,2,58.72,109.33,26.1,141.49 -879,1,E07000169,3,63.38,121.11,26.1,162.93 -1205,1,E07000169,4,73.64,145.77,26.1,180.08 -1531,3,E07000169,1,46.6,82.54,26.1,93.26 -1857,3,E07000169,2,53.13,113.61,26.1,145.77 -2183,3,E07000169,3,56.86,105.05,26.1,114.68 -2509,3,E07000169,4,64.31,122.19,26.1,176.86 -2835,2,E07000169,0,52.28,232.2,18.44,319.44 -3161,4,E07000169,0,51.26,159.13,18.44,188.6 -3487,6,E07000169,0,52.28,213.35,18.44,233.38 -3813,8,E07000169,0,51.26,213.35,18.44,233.38 -4407,5,E07000169,1,51.27,102.91,26.1,112.54 -4561,7,E07000169,1,46.6,102.91,26.1,112.54 -4829,7,E07000169,2,53.13,121.11,26.1,131.84 -4887,5,E07000169,2,58.72,121.11,26.1,131.84 -5518,5,E07000169,3,63.38,148.99,26.1,161.86 -5865,7,E07000169,3,56.86,148.99,26.1,161.86 -6123,5,E07000169,4,73.64,194.01,26.1,212.24 -6221,7,E07000169,4,64.31,194.01,26.1,212.24 -6747,9,E07000169,1,51.27,128.63,26.1,140.68 -7073,9,E07000169,2,53.13,151.41,26.1,164.8 -7399,9,E07000169,3,63.38,186.23,26.1,202.34 -7725,9,E07000169,4,73.64,242.51,26.1,265.29 -8051,10,E07000169,0,52.28,266.69,18.44,291.74 -228,1,E07000111,1,57.79,124.33,26.1,177.93 -554,1,E07000111,2,71.78,147.91,26.1,188.66 -880,1,E07000111,3,82.02,162.93,26.1,205.81 -1206,1,E07000111,4,90.42,180.08,26.1,224.01 -1532,3,E07000111,1,52.2,116.83,26.1,160.78 -1858,3,E07000111,2,63.38,130.77,26.1,146.84 -2184,3,E07000111,3,68.97,151.13,26.1,187.58 -2510,3,E07000111,4,73.64,186.51,26.1,196.15 -2836,2,E07000111,0,61.49,265.21,18.44,340.65 -3162,4,E07000111,0,48.18,193.32,18.44,202.73 -3488,6,E07000111,0,61.49,697.84,18.44,761.47 -3814,8,E07000111,0,48.18,697.84,18.44,761.47 -4024,5,E07000111,1,57.79,160.78,26.1,175.78 -4091,7,E07000111,1,52.2,160.78,26.1,175.78 -4639,5,E07000111,2,71.78,216.52,26.1,236.89 -4786,7,E07000111,2,63.38,216.52,26.1,236.89 -5291,5,E07000111,3,82.02,318.35,26.1,346.22 -5391,7,E07000111,3,68.97,318.35,26.1,346.22 -5976,5,E07000111,4,90.42,634.56,26.1,692.43 -6080,7,E07000111,4,73.64,634.56,26.1,692.43 -6748,9,E07000111,1,57.79,200.97,26.1,219.74 -7074,9,E07000111,2,71.78,270.66,26.1,296.11 -7400,9,E07000111,3,82.02,397.93,26.1,432.75 -7726,9,E07000111,4,90.42,793.2,26.1,865.54 -8052,10,E07000111,0,61.49,872.3,18.44,951.83 -229,1,E08000019,1,51.27,92.19,26.1,114.68 -555,1,E08000019,2,58.72,109.33,26.1,141.49 -881,1,E08000019,3,63.38,121.11,26.1,162.93 -1207,1,E08000019,4,73.64,145.77,26.1,180.08 -1533,3,E08000019,1,46.6,82.54,26.1,93.26 -1859,3,E08000019,2,53.13,113.61,26.1,145.77 -2185,3,E08000019,3,56.86,105.05,26.1,114.68 -2511,3,E08000019,4,64.31,122.19,26.1,176.86 -2837,2,E08000019,0,52.28,232.2,18.44,319.44 -3163,4,E08000019,0,51.26,159.13,18.44,188.6 -3489,6,E08000019,0,52.28,232.2,18.44,253.42 -3815,8,E08000019,0,51.26,232.2,18.44,253.42 -4408,5,E08000019,1,51.27,115.76,26.1,125.4 -4562,7,E08000019,1,46.6,115.76,26.1,125.4 -4830,7,E08000019,2,53.13,131.84,26.1,144.7 -4888,5,E08000019,2,58.72,131.84,26.1,144.7 -5519,5,E08000019,3,63.38,138.27,26.1,150.06 -5866,7,E08000019,3,56.86,138.27,26.1,150.06 -6124,5,E08000019,4,73.64,211.17,26.1,230.44 -6222,7,E08000019,4,64.31,211.17,26.1,230.44 -6749,9,E08000019,1,51.27,144.7,26.1,156.77 -7075,9,E08000019,2,53.13,164.8,26.1,180.87 -7401,9,E08000019,3,63.38,172.84,26.1,187.57 -7727,9,E08000019,4,73.64,263.95,26.1,288.07 -8053,10,E08000019,0,52.28,290.27,18.44,316.79 -230,1,E07000112,1,57.79,124.33,26.1,177.93 -556,1,E07000112,2,71.78,147.91,26.1,188.66 -882,1,E07000112,3,82.02,162.93,26.1,205.81 -1208,1,E07000112,4,90.42,180.08,26.1,224.01 -1534,3,E07000112,1,52.2,116.83,26.1,160.78 -1860,3,E07000112,2,63.38,130.77,26.1,146.84 -2186,3,E07000112,3,68.97,151.13,26.1,187.58 -2512,3,E07000112,4,73.64,186.51,26.1,196.15 -2838,2,E07000112,0,61.49,265.21,18.44,340.65 -3164,4,E07000112,0,48.18,193.32,18.44,202.73 -3490,6,E07000112,0,61.49,294.71,18.44,321.8 -3816,8,E07000112,0,48.18,294.71,18.44,321.8 -4025,5,E07000112,1,57.79,103.98,26.1,113.61 -4092,7,E07000112,1,52.2,103.98,26.1,113.61 -4640,5,E07000112,2,71.78,142.56,26.1,155.41 -4787,7,E07000112,2,63.38,142.56,26.1,155.41 -5292,5,E07000112,3,82.02,172.58,26.1,187.58 -5392,7,E07000112,3,68.97,172.58,26.1,187.58 -5977,5,E07000112,4,90.42,267.97,26.1,292.61 -6081,7,E07000112,4,73.64,267.97,26.1,292.61 -6750,9,E07000112,1,57.79,129.97,26.1,142.02 -7076,9,E07000112,2,71.78,178.2,26.1,194.27 -7402,9,E07000112,3,82.02,215.73,26.1,234.49 -7728,9,E07000112,4,90.42,334.98,26.1,365.79 -8054,10,E07000112,0,61.49,368.37,18.44,402.27 -231,1,E06000051,1,53.13,99.69,26.1,125.4 -557,1,E06000051,2,58.72,117.9,26.1,138.27 -883,1,E06000051,3,69.9,133.98,26.1,161.86 -1209,1,E06000051,4,81.09,162.93,26.1,180.08 -1535,3,E06000051,1,46.6,88.96,26.1,98.62 -1861,3,E06000051,2,50.34,95.42,26.1,103.98 -2187,3,E06000051,3,60.59,105.05,26.1,121.11 -2513,3,E06000051,4,68.97,128.63,26.1,128.63 -2839,2,E06000051,0,38.95,242.82,18.44,378.37 -3165,4,E06000051,0,46.12,106.09,18.44,106.09 -3491,6,E06000051,0,38.95,244,18.44,266.39 -3817,8,E06000051,0,46.12,244,18.44,266.39 -4296,5,E06000051,1,53.13,103.98,26.1,113.61 -4517,7,E06000051,1,46.6,103.98,26.1,113.61 -4906,5,E06000051,2,58.72,126.48,26.1,138.27 -5202,7,E06000051,2,50.34,126.48,26.1,138.27 -5537,5,E06000051,3,69.9,148.99,26.1,161.86 -5793,7,E06000051,3,60.59,148.99,26.1,161.86 -6189,5,E06000051,4,81.09,221.88,26.1,242.25 -6454,7,E06000051,4,68.97,221.88,26.1,242.25 -6751,9,E06000051,1,53.13,129.97,26.1,142.02 -7077,9,E06000051,2,58.72,158.09,26.1,172.84 -7403,9,E06000051,3,69.9,186.23,26.1,202.34 -7729,9,E06000051,4,81.09,277.34,26.1,302.81 -8055,10,E06000051,0,38.95,305,18.44,332.99 -232,1,E06000039,1,57.79,124.33,26.1,177.93 -558,1,E06000039,2,71.78,147.91,26.1,188.66 -884,1,E06000039,3,82.02,162.93,26.1,205.81 -1210,1,E06000039,4,90.42,180.08,26.1,224.01 -1536,3,E06000039,1,52.2,116.83,26.1,160.78 -1862,3,E06000039,2,63.38,130.77,26.1,146.84 -2188,3,E06000039,3,68.97,151.13,26.1,187.58 -2514,3,E06000039,4,73.64,186.51,26.1,196.15 -2840,2,E06000039,0,61.49,265.21,18.44,340.65 -3166,4,E06000039,0,48.18,193.32,18.44,202.73 -3492,6,E06000039,0,61.49,374.83,18.44,409.03 -3818,8,E06000039,0,48.18,374.83,18.44,409.03 -4026,5,E06000039,1,57.79,155.41,26.1,169.36 -4093,7,E06000039,1,52.2,155.41,26.1,169.36 -4641,5,E06000039,2,71.78,194.01,26.1,212.24 -4788,7,E06000039,2,63.38,194.01,26.1,212.24 -5293,5,E06000039,3,82.02,240.09,26.1,261.54 -5393,7,E06000039,3,68.97,240.09,26.1,261.54 -5978,5,E06000039,4,90.42,340.85,26.1,371.94 -6082,7,E06000039,4,73.64,340.85,26.1,371.94 -6752,9,E06000039,1,57.79,194.27,26.1,211.69 -7078,9,E06000039,2,71.78,242.51,26.1,265.29 -7404,9,E06000039,3,82.02,300.12,26.1,326.92 -7730,9,E06000039,4,90.42,426.06,26.1,464.91 -8056,10,E06000039,0,61.49,468.55,18.44,511.3 -233,1,E08000029,1,53.13,99.69,26.1,125.4 -559,1,E08000029,2,58.72,117.9,26.1,138.27 -885,1,E08000029,3,69.9,133.98,26.1,161.86 -1211,1,E08000029,4,81.09,162.93,26.1,180.08 -1537,3,E08000029,1,46.6,88.96,26.1,98.62 -1863,3,E08000029,2,50.34,95.42,26.1,103.98 -2189,3,E08000029,3,60.59,105.05,26.1,121.11 -2515,3,E08000029,4,68.97,128.63,26.1,128.63 -2841,2,E08000029,0,38.95,242.82,18.44,378.37 -3167,4,E08000029,0,46.12,106.09,18.44,106.09 -3493,6,E08000029,0,38.95,398.42,18.44,434.96 -3819,8,E08000029,0,46.12,398.42,18.44,434.96 -4297,5,E08000029,1,53.13,126.48,26.1,138.27 -4518,7,E08000029,1,46.6,126.48,26.1,138.27 -4907,5,E08000029,2,58.72,160.78,26.1,175.78 -5203,7,E08000029,2,50.34,160.78,26.1,175.78 -5538,5,E08000029,3,69.9,194.01,26.1,212.24 -5794,7,E08000029,3,60.59,194.01,26.1,212.24 -6190,5,E08000029,4,81.09,362.28,26.1,395.52 -6455,7,E08000029,4,68.97,362.28,26.1,395.52 -6753,9,E08000029,1,53.13,158.09,26.1,172.84 -7079,9,E08000029,2,58.72,200.97,26.1,219.74 -7405,9,E08000029,3,69.9,242.51,26.1,265.29 -7731,9,E08000029,4,81.09,452.87,26.1,494.42 -8057,10,E08000029,0,38.95,498.02,18.44,543.71 -309,1,E07000246,1,49.41,108.27,26.1,141.49 -635,1,E07000246,2,55.93,122.19,26.1,145.77 -961,1,E07000246,3,62.45,142.56,26.1,162.93 -1287,1,E07000246,4,71.78,159.7,26.1,196.15 -1613,3,E07000246,1,47.54,90.03,26.1,212.24 -1939,3,E07000246,2,54.99,101.83,26.1,112.54 -2265,3,E07000246,3,62.45,110.39,26.1,127.56 -2591,3,E07000246,4,74.57,131.84,26.1,131.84 -2917,2,E07000246,0,54.33,228.68,18.44,354.8 -3243,4,E07000246,0,54.33,114.33,18.44,140.27 -3569,6,E07000246,0,54.33,275.83,18.44,300.58 -3895,8,E07000246,0,54.33,275.83,18.44,300.58 -3947,7,E07000246,1,47.54,114.68,26.1,124.33 -4231,5,E07000246,1,49.41,114.68,26.1,124.33 -4867,5,E07000246,2,55.93,138.27,26.1,150.06 -5144,7,E07000246,2,54.99,138.27,26.1,150.06 -5498,5,E07000246,3,62.45,166.14,26.1,181.15 -5724,7,E07000246,3,62.45,166.14,26.1,181.15 -6036,5,E07000246,4,71.78,250.82,26.1,273.34 -6436,7,E07000246,4,74.57,250.82,26.1,273.34 -6829,9,E07000246,1,49.41,143.37,26.1,155.41 -7155,9,E07000246,2,55.93,172.84,26.1,187.57 -7481,9,E07000246,3,62.45,207.68,26.1,226.44 -7807,9,E07000246,4,71.78,313.51,26.1,341.67 -8133,10,E07000246,0,54.33,344.81,18.44,375.73 -235,1,E07000012,1,54.99,120.05,26.1,150.06 -561,1,E07000012,2,65.24,143.62,26.1,169.36 -887,1,E07000012,3,71.78,157.56,26.1,182.22 -1213,1,E07000012,4,82.02,172.58,26.1,180.08 -1539,3,E07000012,1,50.34,100.76,26.1,132.91 -1865,3,E07000012,2,58.72,118.97,26.1,133.98 -2191,3,E07000012,3,64.31,131.84,26.1,144.7 -2517,3,E07000012,4,71.78,150.06,26.1,160.78 -2843,2,E07000012,0,35.87,223.96,18.44,418.45 -3169,4,E07000012,0,55.36,134.38,18.44,314.73 -3495,6,E07000012,0,35.87,351.26,18.44,383.09 -3821,8,E07000012,0,55.36,351.26,18.44,383.09 -4150,5,E07000012,1,54.99,148.99,26.1,161.86 -4267,7,E07000012,1,50.34,148.99,26.1,161.86 -4731,5,E07000012,2,65.24,172.58,26.1,187.58 -4993,7,E07000012,2,58.72,172.58,26.1,187.58 -5450,5,E07000012,3,71.78,204.74,26.1,222.95 -5636,7,E07000012,3,64.31,204.74,26.1,222.95 -6160,5,E07000012,4,82.02,319.42,26.1,348.36 -6298,7,E07000012,4,71.78,319.42,26.1,348.36 -6755,9,E07000012,1,54.99,186.23,26.1,202.34 -7081,9,E07000012,2,65.24,215.73,26.1,234.49 -7407,9,E07000012,3,71.78,255.92,26.1,278.69 -7733,9,E07000012,4,82.02,399.29,26.1,435.45 -8059,10,E07000012,0,35.87,439.1,18.44,478.86 -236,1,E07000039,1,52.2,100.76,26.1,123.26 -562,1,E07000039,2,62.45,115.76,26.1,130.77 -888,1,E07000039,3,68.97,127.56,26.1,139.34 -1214,1,E07000039,4,76.43,159.7,26.1,168.29 -1540,3,E07000039,1,46.6,91.12,26.1,108.27 -1866,3,E07000039,2,53.13,97.54,26.1,109.33 -2192,3,E07000039,3,58.72,105.05,26.1,120.05 -2518,3,E07000039,4,64.31,123.26,26.1,123.26 -2844,2,E07000039,0,51.26,238.1,18.44,357.17 -3170,4,E07000039,0,49.2,113.15,18.44,122.59 -3496,6,E07000039,0,51.26,274.65,18.44,300.58 -3822,8,E07000039,0,49.2,274.65,18.44,300.58 -4345,5,E07000039,1,52.2,103.98,26.1,113.61 -4445,7,E07000039,1,46.6,103.98,26.1,113.61 -5041,5,E07000039,2,62.45,126.48,26.1,138.27 -5181,7,E07000039,2,53.13,126.48,26.1,138.27 -5684,5,E07000039,3,68.97,148.99,26.1,161.86 -5842,7,E07000039,3,58.72,148.99,26.1,161.86 -6259,5,E07000039,4,76.43,249.75,26.1,273.34 -6503,7,E07000039,4,64.31,249.75,26.1,273.34 -6756,9,E07000039,1,52.2,129.97,26.1,142.02 -7082,9,E07000039,2,62.45,158.09,26.1,172.84 -7408,9,E07000039,3,68.97,186.23,26.1,202.34 -7734,9,E07000039,4,76.43,312.18,26.1,341.67 -8060,10,E07000039,0,51.26,343.33,18.44,375.73 -237,1,E06000025,1,49.41,108.27,26.1,141.49 -563,1,E06000025,2,55.93,122.19,26.1,145.77 -889,1,E06000025,3,62.45,142.56,26.1,162.93 -1215,1,E06000025,4,71.78,159.7,26.1,196.15 -1541,3,E06000025,1,47.54,90.03,26.1,212.24 -1867,3,E06000025,2,54.99,101.83,26.1,112.54 -2193,3,E06000025,3,62.45,110.39,26.1,127.56 -2519,3,E06000025,4,74.57,131.84,26.1,131.84 -2845,2,E06000025,0,54.33,228.68,18.44,354.8 -3171,4,E06000025,0,54.33,114.33,18.44,140.27 -3497,6,E06000025,0,54.33,299.41,18.44,326.52 -3823,8,E06000025,0,54.33,299.41,18.44,326.52 -3935,7,E06000025,1,47.54,126.48,26.1,138.27 -4219,5,E06000025,1,49.41,126.48,26.1,138.27 -4855,5,E06000025,2,55.93,152.21,26.1,166.14 -5132,7,E06000025,2,54.99,152.21,26.1,166.14 -5486,5,E06000025,3,62.45,188.66,26.1,205.81 -5712,7,E06000025,3,62.45,188.66,26.1,205.81 -6024,5,E06000025,4,71.78,272.26,26.1,296.91 -6424,7,E06000025,4,74.57,272.26,26.1,296.91 -6757,9,E06000025,1,49.41,158.09,26.1,172.84 -7083,9,E06000025,2,55.93,190.26,26.1,207.68 -7409,9,E06000025,3,62.45,235.82,26.1,257.26 -7735,9,E06000025,4,71.78,340.33,26.1,371.13 -8061,10,E06000025,0,54.33,374.27,18.44,408.14 -238,1,E07000044,1,49.41,108.27,26.1,141.49 -564,1,E07000044,2,55.93,122.19,26.1,145.77 -890,1,E07000044,3,62.45,142.56,26.1,162.93 -1216,1,E07000044,4,71.78,159.7,26.1,196.15 -1542,3,E07000044,1,47.54,90.03,26.1,212.24 -1868,3,E07000044,2,54.99,101.83,26.1,112.54 -2194,3,E07000044,3,62.45,110.39,26.1,127.56 -2520,3,E07000044,4,74.57,131.84,26.1,131.84 -2846,2,E07000044,0,54.33,228.68,18.44,354.8 -3172,4,E07000044,0,54.33,114.33,18.44,140.27 -3498,6,E07000044,0,54.33,275.83,18.44,300.58 -3824,8,E07000044,0,54.33,275.83,18.44,300.58 -3936,7,E07000044,1,47.54,114.68,26.1,125.4 -4220,5,E07000044,1,49.41,114.68,26.1,125.4 -4856,5,E07000044,2,55.93,143.62,26.1,156.49 -5133,7,E07000044,2,54.99,143.62,26.1,156.49 -5487,5,E07000044,3,62.45,182.22,26.1,199.38 -5713,7,E07000044,3,62.45,182.22,26.1,199.38 -6025,5,E07000044,4,71.78,250.82,26.1,273.34 -6425,7,E07000044,4,74.57,250.82,26.1,273.34 -6758,9,E07000044,1,49.41,143.37,26.1,156.77 -7084,9,E07000044,2,55.93,179.53,26.1,195.6 -7410,9,E07000044,3,62.45,227.8,26.1,249.22 -7736,9,E07000044,4,71.78,313.51,26.1,341.67 -8062,10,E07000044,0,54.33,344.81,18.44,375.73 -239,1,E07000140,1,52.2,100.76,26.1,123.26 -565,1,E07000140,2,62.45,115.76,26.1,130.77 -891,1,E07000140,3,68.97,127.56,26.1,139.34 -1217,1,E07000140,4,76.43,159.7,26.1,168.29 -1543,3,E07000140,1,46.6,91.12,26.1,108.27 -1869,3,E07000140,2,53.13,97.54,26.1,109.33 -2195,3,E07000140,3,58.72,105.05,26.1,120.05 -2521,3,E07000140,4,64.31,123.26,26.1,123.26 -2847,2,E07000140,0,51.26,238.1,18.44,357.17 -3173,4,E07000140,0,49.2,113.15,18.44,122.59 -3499,6,E07000140,0,51.26,200.38,18.44,219.25 -3825,8,E07000140,0,49.2,200.38,18.44,219.25 -4346,5,E07000140,1,52.2,100.76,26.1,110.39 -4446,7,E07000140,1,46.6,100.76,26.1,110.39 -5042,5,E07000140,2,62.45,121.11,26.1,131.84 -5182,7,E07000140,2,53.13,121.11,26.1,131.84 -5685,5,E07000140,3,68.97,138.27,26.1,150.06 -5843,7,E07000140,3,58.72,138.27,26.1,150.06 -6260,5,E07000140,4,76.43,182.22,26.1,199.38 -6504,7,E07000140,4,64.31,182.22,26.1,199.38 -6759,9,E07000140,1,52.2,125.95,26.1,138.01 -7085,9,E07000140,2,62.45,151.41,26.1,164.8 -7411,9,E07000140,3,68.97,172.84,26.1,187.57 -7737,9,E07000140,4,76.43,227.8,26.1,249.22 -8063,10,E07000140,0,51.26,250.47,18.44,274.05 -240,1,E07000141,1,52.2,100.76,26.1,123.26 -566,1,E07000141,2,62.45,115.76,26.1,130.77 -892,1,E07000141,3,68.97,127.56,26.1,139.34 -1218,1,E07000141,4,76.43,159.7,26.1,168.29 -1544,3,E07000141,1,46.6,91.12,26.1,108.27 -1870,3,E07000141,2,53.13,97.54,26.1,109.33 -2196,3,E07000141,3,58.72,105.05,26.1,120.05 -2522,3,E07000141,4,64.31,123.26,26.1,123.26 -2848,2,E07000141,0,51.26,238.1,18.44,357.17 -3174,4,E07000141,0,49.2,113.15,18.44,122.59 -3500,6,E07000141,0,51.26,226.32,18.44,246.36 -3826,8,E07000141,0,49.2,226.32,18.44,246.36 -4347,5,E07000141,1,52.2,98.62,26.1,108.27 -4447,7,E07000141,1,46.6,98.62,26.1,108.27 -5043,5,E07000141,2,62.45,126.48,26.1,138.27 -5183,7,E07000141,2,53.13,126.48,26.1,138.27 -5686,5,E07000141,3,68.97,148.99,26.1,161.86 -5844,7,E07000141,3,58.72,148.99,26.1,161.86 -6261,5,E07000141,4,76.43,205.81,26.1,224.01 -6505,7,E07000141,4,64.31,205.81,26.1,224.01 -6760,9,E07000141,1,52.2,123.26,26.1,135.33 -7086,9,E07000141,2,62.45,158.09,26.1,172.84 -7412,9,E07000141,3,68.97,186.23,26.1,202.34 -7738,9,E07000141,4,76.43,257.26,26.1,280.03 -8064,10,E07000141,0,51.26,282.91,18.44,307.95 -241,1,E07000031,1,52.2,94.33,26.1,117.9 -567,1,E07000031,2,59.66,108.27,26.1,136.13 -893,1,E07000031,3,66.17,121.11,26.1,146.84 -1219,1,E07000031,4,72.71,135.06,26.1,160.78 -1545,3,E07000031,1,43.8,86.81,26.1,101.83 -1871,3,E07000031,2,54.06,95.42,26.1,114.68 -2197,3,E07000031,3,58.72,106.12,26.1,125.4 -2523,3,E07000031,4,55.93,120.05,26.1,135.06 -2849,2,E07000031,0,55.36,236.93,18.44,338.29 -3175,4,E07000031,0,32.8,464.43,18.44,592.92 -3501,6,E07000031,0,55.36,238.1,18.44,260.5 -3827,8,E07000031,0,32.8,238.1,18.44,260.5 -4379,5,E07000031,1,52.2,115.76,26.1,125.4 -4491,7,E07000031,1,43.8,115.76,26.1,125.4 -4949,5,E07000031,2,59.66,143.62,26.1,156.49 -5087,7,E07000031,2,54.06,143.62,26.1,156.49 -5592,5,E07000031,3,66.17,172.58,26.1,187.58 -5767,7,E07000031,3,58.72,172.58,26.1,187.58 -6340,5,E07000031,4,72.71,216.52,26.1,236.89 -6391,7,E07000031,4,55.93,216.52,26.1,236.89 -6761,9,E07000031,1,52.2,144.7,26.1,156.77 -7087,9,E07000031,2,59.66,179.53,26.1,195.6 -7413,9,E07000031,3,66.17,215.73,26.1,234.49 -7739,9,E07000031,4,72.71,270.66,26.1,296.11 -8065,10,E07000031,0,55.36,297.64,18.44,325.63 -242,1,E07000149,1,54.99,120.05,26.1,150.06 -568,1,E07000149,2,65.24,143.62,26.1,169.36 -894,1,E07000149,3,71.78,157.56,26.1,182.22 -1220,1,E07000149,4,82.02,172.58,26.1,180.08 -1546,3,E07000149,1,50.34,100.76,26.1,132.91 -1872,3,E07000149,2,58.72,118.97,26.1,133.98 -2198,3,E07000149,3,64.31,131.84,26.1,144.7 -2524,3,E07000149,4,71.78,150.06,26.1,160.78 -2850,2,E07000149,0,35.87,223.96,18.44,418.45 -3176,4,E07000149,0,55.36,134.38,18.44,314.73 -3502,6,E07000149,0,35.87,238.1,18.44,260.5 -3828,8,E07000149,0,55.36,238.1,18.44,260.5 -4151,5,E07000149,1,54.99,103.98,26.1,113.61 -4268,7,E07000149,1,50.34,103.98,26.1,113.61 -4732,5,E07000149,2,65.24,126.48,26.1,138.27 -4994,7,E07000149,2,58.72,126.48,26.1,138.27 -5451,5,E07000149,3,71.78,148.99,26.1,161.86 -5637,7,E07000149,3,64.31,148.99,26.1,161.86 -6161,5,E07000149,4,82.02,216.52,26.1,236.89 -6299,7,E07000149,4,71.78,216.52,26.1,236.89 -6762,9,E07000149,1,54.99,129.97,26.1,142.02 -7088,9,E07000149,2,65.24,158.09,26.1,172.84 -7414,9,E07000149,3,71.78,186.23,26.1,202.34 -7740,9,E07000149,4,82.02,270.66,26.1,296.11 -8066,10,E07000149,0,35.87,297.64,18.44,325.63 -243,1,E06000062,1,52.2,100.76,26.1,123.26 -569,1,E06000062,2,62.45,115.76,26.1,130.77 -895,1,E06000062,3,68.97,127.56,26.1,139.34 -1221,1,E06000062,4,76.43,159.7,26.1,168.29 -1547,3,E06000062,1,46.6,91.12,26.1,108.27 -1873,3,E06000062,2,53.13,97.54,26.1,109.33 -2199,3,E06000062,3,58.72,105.05,26.1,120.05 -2525,3,E06000062,4,64.31,123.26,26.1,123.26 -2851,2,E06000062,0,51.26,238.1,18.44,357.17 -3177,4,E06000062,0,49.2,113.15,18.44,122.59 -3503,6,E06000062,0,51.26,325.34,18.44,354.8 -3829,8,E06000062,0,49.2,325.34,18.44,354.8 -4348,5,E06000062,1,52.2,126.48,26.1,138.27 -4448,7,E06000062,1,46.6,126.48,26.1,138.27 -5044,5,E06000062,2,62.45,155.41,26.1,170.43 -5184,7,E06000062,2,53.13,155.41,26.1,170.43 -5687,5,E06000062,3,68.97,186.51,26.1,203.65 -5845,7,E06000062,3,58.72,186.51,26.1,203.65 -6262,5,E06000062,4,76.43,295.83,26.1,322.64 -6506,7,E06000062,4,64.31,295.83,26.1,322.64 -6763,9,E06000062,1,52.2,158.09,26.1,172.84 -7089,9,E06000062,2,62.45,194.27,26.1,213.04 -7415,9,E06000062,3,68.97,233.14,26.1,254.57 -7741,9,E06000062,4,76.43,369.81,26.1,403.3 -8067,10,E06000062,0,51.26,406.66,18.44,443.51 -244,1,E07000179,1,57.79,124.33,26.1,177.93 -570,1,E07000179,2,71.78,147.91,26.1,188.66 -896,1,E07000179,3,82.02,162.93,26.1,205.81 -1222,1,E07000179,4,90.42,180.08,26.1,224.01 -1548,3,E07000179,1,52.2,116.83,26.1,160.78 -1874,3,E07000179,2,63.38,130.77,26.1,146.84 -2200,3,E07000179,3,68.97,151.13,26.1,187.58 -2526,3,E07000179,4,73.64,186.51,26.1,196.15 -2852,2,E07000179,0,61.49,265.21,18.44,340.65 -3178,4,E07000179,0,48.18,193.32,18.44,202.73 -3504,6,E07000179,0,61.49,499.79,18.44,544.59 -3830,8,E07000179,0,48.18,499.79,18.44,544.59 -4028,5,E07000179,1,57.79,158.63,26.1,172.58 -4095,7,E07000179,1,52.2,158.63,26.1,172.58 -4643,5,E07000179,2,71.78,194.01,26.1,212.24 -4790,7,E07000179,2,63.38,194.01,26.1,212.24 -5295,5,E07000179,3,82.02,284.04,26.1,309.78 -5395,7,E07000179,3,68.97,284.04,26.1,309.78 -5980,5,E07000179,4,90.42,454.47,26.1,495.21 -6084,7,E07000179,4,73.64,454.47,26.1,495.21 -6764,9,E07000179,1,57.79,198.3,26.1,215.73 -7090,9,E07000179,2,71.78,242.51,26.1,265.29 -7416,9,E07000179,3,82.02,355.06,26.1,387.21 -7742,9,E07000179,4,90.42,568.09,26.1,619.01 -8068,10,E07000179,0,61.49,624.74,18.44,680.75 -245,1,E07000126,1,52.2,94.33,26.1,117.9 -571,1,E07000126,2,59.66,108.27,26.1,136.13 -897,1,E07000126,3,66.17,121.11,26.1,146.84 -1223,1,E07000126,4,72.71,135.06,26.1,160.78 -1549,3,E07000126,1,43.8,86.81,26.1,101.83 -1875,3,E07000126,2,54.06,95.42,26.1,114.68 -2201,3,E07000126,3,58.72,106.12,26.1,125.4 -2527,3,E07000126,4,55.93,120.05,26.1,135.06 -2853,2,E07000126,0,55.36,236.93,18.44,338.29 -3179,4,E07000126,0,32.8,464.43,18.44,592.92 -3505,6,E07000126,0,55.36,225.15,18.44,245.18 -3831,8,E07000126,0,32.8,225.15,18.44,245.18 -4380,5,E07000126,1,52.2,102.91,26.1,113.61 -4492,7,E07000126,1,43.8,102.91,26.1,113.61 -4950,5,E07000126,2,59.66,126.48,26.1,138.27 -5088,7,E07000126,2,54.06,126.48,26.1,138.27 -5593,5,E07000126,3,66.17,143.62,26.1,156.49 -5768,7,E07000126,3,58.72,143.62,26.1,156.49 -6341,5,E07000126,4,72.71,204.74,26.1,222.95 -6392,7,E07000126,4,55.93,204.74,26.1,222.95 -6765,9,E07000126,1,52.2,128.63,26.1,142.02 -7091,9,E07000126,2,59.66,158.09,26.1,172.84 -7417,9,E07000126,3,66.17,179.53,26.1,195.6 -7743,9,E07000126,4,72.71,255.92,26.1,278.69 -8069,10,E07000126,0,55.36,281.43,18.44,306.45 -246,1,E07000189,1,49.41,108.27,26.1,141.49 -572,1,E07000189,2,55.93,122.19,26.1,145.77 -898,1,E07000189,3,62.45,142.56,26.1,162.93 -1224,1,E07000189,4,71.78,159.7,26.1,196.15 -1550,3,E07000189,1,47.54,90.03,26.1,212.24 -1876,3,E07000189,2,54.99,101.83,26.1,112.54 -2202,3,E07000189,3,62.45,110.39,26.1,127.56 -2528,3,E07000189,4,74.57,131.84,26.1,131.84 -2854,2,E07000189,0,54.33,228.68,18.44,354.8 -3180,4,E07000189,0,54.33,114.33,18.44,140.27 -3506,6,E07000189,0,54.33,300.58,18.44,327.69 -3832,8,E07000189,0,54.33,300.58,18.44,327.69 -3937,7,E07000189,1,47.54,103.98,26.1,113.61 -4221,5,E07000189,1,49.41,103.98,26.1,113.61 -4857,5,E07000189,2,55.93,136.13,26.1,148.99 -5134,7,E07000189,2,54.99,136.13,26.1,148.99 -5488,5,E07000189,3,62.45,166.14,26.1,181.15 -5714,7,E07000189,3,62.45,166.14,26.1,181.15 -6026,5,E07000189,4,71.78,273.34,26.1,297.99 -6426,7,E07000189,4,74.57,273.34,26.1,297.99 -6766,9,E07000189,1,49.41,129.97,26.1,142.02 -7092,9,E07000189,2,55.93,170.16,26.1,186.23 -7418,9,E07000189,3,62.45,207.68,26.1,226.44 -7744,9,E07000189,4,71.78,341.67,26.1,372.48 -8070,10,E07000189,0,54.33,375.73,18.44,409.61 -247,1,E07000196,1,53.13,99.69,26.1,125.4 -573,1,E07000196,2,58.72,117.9,26.1,138.27 -899,1,E07000196,3,69.9,133.98,26.1,161.86 -1225,1,E07000196,4,81.09,162.93,26.1,180.08 -1551,3,E07000196,1,46.6,88.96,26.1,98.62 -1877,3,E07000196,2,50.34,95.42,26.1,103.98 -2203,3,E07000196,3,60.59,105.05,26.1,121.11 -2529,3,E07000196,4,68.97,128.63,26.1,128.63 -2855,2,E07000196,0,38.95,242.82,18.44,378.37 -3181,4,E07000196,0,46.12,106.09,18.44,106.09 -3507,6,E07000196,0,38.95,252.25,18.44,273.47 -3833,8,E07000196,0,46.12,252.25,18.44,273.47 -4298,5,E07000196,1,53.13,103.98,26.1,113.61 -4519,7,E07000196,1,46.6,103.98,26.1,113.61 -4908,5,E07000196,2,58.72,126.48,26.1,138.27 -5204,7,E07000196,2,50.34,126.48,26.1,138.27 -5539,5,E07000196,3,69.9,148.99,26.1,161.86 -5795,7,E07000196,3,60.59,148.99,26.1,161.86 -6191,5,E07000196,4,81.09,229.37,26.1,248.67 -6456,7,E07000196,4,68.97,229.37,26.1,248.67 -6767,9,E07000196,1,53.13,129.97,26.1,142.02 -7093,9,E07000196,2,58.72,158.09,26.1,172.84 -7419,9,E07000196,3,69.9,186.23,26.1,202.34 -7745,9,E07000196,4,81.09,286.72,26.1,310.84 -8071,10,E07000196,0,38.95,315.32,18.44,341.84 -248,1,E08000023,1,51.27,88.96,26.1,98.62 -574,1,E08000023,2,57.79,102.91,26.1,121.11 -900,1,E08000023,3,61.52,114.68,26.1,160.78 -1226,1,E08000023,4,70.84,128.63,26.1,140.42 -1552,3,E08000023,1,42.87,100.76,26.1,106.12 -1878,3,E08000023,2,50.34,91.12,26.1,112.54 -2204,3,E08000023,3,54.06,106.12,26.1,125.4 -2530,3,E08000023,4,56.86,116.83,26.1,121.11 -2856,2,E08000023,0,55.36,234.56,18.44,337.12 -3182,4,E08000023,0,47.15,251.08,18.44,285.25 -3508,6,E08000023,0,55.36,189.79,18.44,206.28 -3834,8,E08000023,0,47.15,189.79,18.44,206.28 -4460,7,E08000023,1,42.87,93.26,26.1,100.76 -4541,5,E08000023,1,51.27,93.26,26.1,100.76 -5056,5,E08000023,2,57.79,115.76,26.1,125.4 -5107,7,E08000023,2,50.34,115.76,26.1,125.4 -5561,5,E08000023,3,61.52,131.84,26.1,144.7 -5736,7,E08000023,3,54.06,131.84,26.1,144.7 -6360,5,E08000023,4,70.84,172.58,26.1,187.58 -6518,7,E08000023,4,56.86,172.58,26.1,187.58 -6768,9,E08000023,1,42.87,116.56,26.1,125.95 -7094,9,E08000023,2,57.79,144.7,26.1,156.77 -7420,9,E08000023,3,61.52,164.8,26.1,180.87 -7746,9,E08000023,4,70.84,215.73,26.1,234.49 -8072,10,E08000023,0,55.36,237.24,18.44,257.84 -249,1,E06000045,1,57.79,124.33,26.1,177.93 -575,1,E06000045,2,71.78,147.91,26.1,188.66 -901,1,E06000045,3,82.02,162.93,26.1,205.81 -1227,1,E06000045,4,90.42,180.08,26.1,224.01 -1553,3,E06000045,1,52.2,116.83,26.1,160.78 -1879,3,E06000045,2,63.38,130.77,26.1,146.84 -2205,3,E06000045,3,68.97,151.13,26.1,187.58 -2531,3,E06000045,4,73.64,186.51,26.1,196.15 -2857,2,E06000045,0,61.49,265.21,18.44,340.65 -3183,4,E06000045,0,48.18,193.32,18.44,202.73 -3509,6,E06000045,0,61.49,351.26,18.44,383.09 -3835,8,E06000045,0,48.18,351.26,18.44,383.09 -4029,5,E06000045,1,57.79,126.48,26.1,138.27 -4096,7,E06000045,1,52.2,126.48,26.1,138.27 -4644,5,E06000045,2,71.78,172.58,26.1,187.58 -4791,7,E06000045,2,63.38,172.58,26.1,187.58 -5296,5,E06000045,3,82.02,204.74,26.1,222.95 -5396,7,E06000045,3,68.97,204.74,26.1,222.95 -5981,5,E06000045,4,90.42,319.42,26.1,348.36 -6085,7,E06000045,4,73.64,319.42,26.1,348.36 -6769,9,E06000045,1,57.79,158.09,26.1,172.84 -7095,9,E06000045,2,71.78,215.73,26.1,234.49 -7421,9,E06000045,3,82.02,255.92,26.1,278.69 -7747,9,E06000045,4,90.42,399.29,26.1,435.45 -8073,10,E06000045,0,61.49,439.1,18.44,478.86 -250,1,E06000033,1,54.99,120.05,26.1,150.06 -576,1,E06000033,2,65.24,143.62,26.1,169.36 -902,1,E06000033,3,71.78,157.56,26.1,182.22 -1228,1,E06000033,4,82.02,172.58,26.1,180.08 -1554,3,E06000033,1,50.34,100.76,26.1,132.91 -1880,3,E06000033,2,58.72,118.97,26.1,133.98 -2206,3,E06000033,3,64.31,131.84,26.1,144.7 -2532,3,E06000033,4,71.78,150.06,26.1,160.78 -2858,2,E06000033,0,35.87,223.96,18.44,418.45 -3184,4,E06000033,0,55.36,134.38,18.44,314.73 -3510,6,E06000033,0,35.87,300.58,18.44,327.69 -3836,8,E06000033,0,55.36,300.58,18.44,327.69 -4152,5,E06000033,1,54.99,126.48,26.1,138.27 -4269,7,E06000033,1,50.34,126.48,26.1,138.27 -4733,5,E06000033,2,65.24,160.78,26.1,175.78 -4995,7,E06000033,2,58.72,160.78,26.1,175.78 -5452,5,E06000033,3,71.78,204.74,26.1,222.95 -5638,7,E06000033,3,64.31,204.74,26.1,222.95 -6162,5,E06000033,4,82.02,273.34,26.1,297.99 -6300,7,E06000033,4,71.78,273.34,26.1,297.99 -6770,9,E06000033,1,54.99,158.09,26.1,172.84 -7096,9,E06000033,2,65.24,200.97,26.1,219.74 -7422,9,E06000033,3,71.78,255.92,26.1,278.69 -7748,9,E06000033,4,82.02,341.67,26.1,372.48 -8074,10,E06000033,0,35.87,375.73,18.44,409.61 -251,1,E09000028,1,66.17,146.84,26.1,199.38 -577,1,E09000028,2,78.29,158.63,26.1,194.01 -903,1,E09000028,3,84.82,168.29,26.1,228.29 -1229,1,E09000028,4,102.51,188.66,26.1,254.03 -1555,3,E09000028,1,58.72,120.05,26.1,147.91 -1881,3,E09000028,2,64.31,140.42,26.1,176.86 -2207,3,E09000028,3,71.78,160.78,26.1,202.58 -2533,3,E09000028,4,83.89,262.61,26.1,263.68 -2859,2,E09000028,0,69.7,313.55,18.44,497.44 -3185,4,E09000028,0,59.45,367.77,18.44,398.42 -3511,6,E09000028,0,69.7,594.11,18.44,648.32 -3837,8,E09000028,0,59.45,594.11,18.44,648.32 -3977,5,E09000028,1,66.17,295.83,26.1,322.64 -4191,7,E09000028,1,58.72,295.83,26.1,322.64 -4592,5,E09000028,2,78.29,389.09,26.1,424.47 -4692,7,E09000028,2,64.31,389.09,26.1,424.47 -5244,5,E09000028,3,84.82,397.66,26.1,433.04 -5344,7,E09000028,3,71.78,397.66,26.1,433.04 -5896,7,E09000028,4,83.89,541.3,26.1,589.54 -5929,5,E09000028,4,102.51,541.3,26.1,589.54 -6771,9,E09000028,1,66.17,369.81,26.1,403.3 -7097,9,E09000028,2,78.29,486.38,26.1,530.59 -7423,9,E09000028,3,84.82,497.09,26.1,541.3 -7749,9,E09000028,4,102.51,676.64,26.1,736.91 -8075,10,E09000028,0,69.7,742.61,18.44,810.39 -252,1,E07000213,1,57.79,124.33,26.1,177.93 -578,1,E07000213,2,71.78,147.91,26.1,188.66 -904,1,E07000213,3,82.02,162.93,26.1,205.81 -1230,1,E07000213,4,90.42,180.08,26.1,224.01 -1556,3,E07000213,1,52.2,116.83,26.1,160.78 -1882,3,E07000213,2,63.38,130.77,26.1,146.84 -2208,3,E07000213,3,68.97,151.13,26.1,187.58 -2534,3,E07000213,4,73.64,186.51,26.1,196.15 -2860,2,E07000213,0,61.49,265.21,18.44,340.65 -3186,4,E07000213,0,48.18,193.32,18.44,202.73 -3512,6,E07000213,0,61.49,424.35,18.44,462.06 -3838,8,E07000213,0,48.18,424.35,18.44,462.06 -4030,5,E07000213,1,57.79,182.22,26.1,199.38 -4097,7,E07000213,1,52.2,182.22,26.1,199.38 -4645,5,E07000213,2,71.78,216.52,26.1,236.89 -4792,7,E07000213,2,63.38,216.52,26.1,236.89 -5297,5,E07000213,3,82.02,284.04,26.1,309.78 -5397,7,E07000213,3,68.97,284.04,26.1,309.78 -5982,5,E07000213,4,90.42,385.87,26.1,420.18 -6086,7,E07000213,4,73.64,385.87,26.1,420.18 -6772,9,E07000213,1,57.79,227.8,26.1,249.22 -7098,9,E07000213,2,71.78,270.66,26.1,296.11 -7424,9,E07000213,3,82.02,355.06,26.1,387.21 -7750,9,E07000213,4,90.42,482.35,26.1,525.22 -8076,10,E07000213,0,61.49,530.44,18.44,577.59 -253,1,E07000240,1,54.99,120.05,26.1,150.06 -579,1,E07000240,2,65.24,143.62,26.1,169.36 -905,1,E07000240,3,71.78,157.56,26.1,182.22 -1231,1,E07000240,4,82.02,172.58,26.1,180.08 -1557,3,E07000240,1,50.34,100.76,26.1,132.91 -1883,3,E07000240,2,58.72,118.97,26.1,133.98 -2209,3,E07000240,3,64.31,131.84,26.1,144.7 -2535,3,E07000240,4,71.78,150.06,26.1,160.78 -2861,2,E07000240,0,35.87,223.96,18.44,418.45 -3187,4,E07000240,0,55.36,134.38,18.44,314.73 -3513,6,E07000240,0,35.87,648.32,18.44,706.08 -3839,8,E07000240,0,55.36,648.32,18.44,706.08 -4153,5,E07000240,1,54.99,172.58,26.1,187.58 -4270,7,E07000240,1,50.34,172.58,26.1,187.58 -4734,5,E07000240,2,65.24,262.61,26.1,285.11 -4996,7,E07000240,2,58.72,262.61,26.1,285.11 -5453,5,E07000240,3,71.78,319.42,26.1,348.36 -5639,7,E07000240,3,64.31,319.42,26.1,348.36 -6163,5,E07000240,4,82.02,589.54,26.1,642.06 -6301,7,E07000240,4,71.78,589.54,26.1,642.06 -6773,9,E07000240,1,54.99,215.73,26.1,234.49 -7099,9,E07000240,2,65.24,328.26,26.1,356.4 -7425,9,E07000240,3,71.78,399.29,26.1,435.45 -7751,9,E07000240,4,82.02,736.91,26.1,802.56 -8077,10,E07000240,0,35.87,810.39,18.44,882.59 -255,1,E08000013,1,52.2,94.33,26.1,117.9 -581,1,E08000013,2,59.66,108.27,26.1,136.13 -907,1,E08000013,3,66.17,121.11,26.1,146.84 -1233,1,E08000013,4,72.71,135.06,26.1,160.78 -1559,3,E08000013,1,43.8,86.81,26.1,101.83 -1885,3,E08000013,2,54.06,95.42,26.1,114.68 -2211,3,E08000013,3,58.72,106.12,26.1,125.4 -2537,3,E08000013,4,55.93,120.05,26.1,135.06 -2863,2,E08000013,0,55.36,236.93,18.44,338.29 -3189,4,E08000013,0,32.8,464.43,18.44,592.92 -3515,6,E08000013,0,55.36,213.35,18.44,233.38 -3841,8,E08000013,0,32.8,213.35,18.44,233.38 -4381,5,E08000013,1,52.2,98.62,26.1,108.27 -4493,7,E08000013,1,43.8,98.62,26.1,108.27 -4951,5,E08000013,2,59.66,112.54,26.1,122.19 -5089,7,E08000013,2,54.06,112.54,26.1,122.19 -5594,5,E08000013,3,66.17,136.13,26.1,148.99 -5769,7,E08000013,3,58.72,136.13,26.1,148.99 -6342,5,E08000013,4,72.71,194.01,26.1,212.24 -6393,7,E08000013,4,55.93,194.01,26.1,212.24 -6775,9,E08000013,1,52.2,123.26,26.1,135.33 -7101,9,E08000013,2,59.66,140.68,26.1,152.74 -7427,9,E08000013,3,66.17,170.16,26.1,186.23 -7753,9,E08000013,4,72.71,242.51,26.1,265.29 -8079,10,E08000013,0,55.36,266.69,18.44,291.74 -256,1,E07000197,1,53.13,99.69,26.1,125.4 -582,1,E07000197,2,58.72,117.9,26.1,138.27 -908,1,E07000197,3,69.9,133.98,26.1,161.86 -1234,1,E07000197,4,81.09,162.93,26.1,180.08 -1560,3,E07000197,1,46.6,88.96,26.1,98.62 -1886,3,E07000197,2,50.34,95.42,26.1,103.98 -2212,3,E07000197,3,60.59,105.05,26.1,121.11 -2538,3,E07000197,4,68.97,128.63,26.1,128.63 -2864,2,E07000197,0,38.95,242.82,18.44,378.37 -3190,4,E07000197,0,46.12,106.09,18.44,106.09 -3516,6,E07000197,0,38.95,226.32,18.44,246.36 -3842,8,E07000197,0,46.12,226.32,18.44,246.36 -4299,5,E07000197,1,53.13,103.98,26.1,113.61 -4520,7,E07000197,1,46.6,103.98,26.1,113.61 -4909,5,E07000197,2,58.72,126.48,26.1,138.27 -5205,7,E07000197,2,50.34,126.48,26.1,138.27 -5540,5,E07000197,3,69.9,148.99,26.1,161.86 -5796,7,E07000197,3,60.59,148.99,26.1,161.86 -6192,5,E07000197,4,81.09,205.81,26.1,224.01 -6457,7,E07000197,4,68.97,205.81,26.1,224.01 -6776,9,E07000197,1,53.13,129.97,26.1,142.02 -7102,9,E07000197,2,58.72,158.09,26.1,172.84 -7428,9,E07000197,3,69.9,186.23,26.1,202.34 -7754,9,E07000197,4,81.09,257.26,26.1,280.03 -8080,10,E07000197,0,38.95,282.91,18.44,307.95 -257,1,E07000198,1,53.13,99.69,26.1,125.4 -583,1,E07000198,2,58.72,117.9,26.1,138.27 -909,1,E07000198,3,69.9,133.98,26.1,161.86 -1235,1,E07000198,4,81.09,162.93,26.1,180.08 -1561,3,E07000198,1,46.6,88.96,26.1,98.62 -1887,3,E07000198,2,50.34,95.42,26.1,103.98 -2213,3,E07000198,3,60.59,105.05,26.1,121.11 -2539,3,E07000198,4,68.97,128.63,26.1,128.63 -2865,2,E07000198,0,38.95,242.82,18.44,378.37 -3191,4,E07000198,0,46.12,106.09,18.44,106.09 -3517,6,E07000198,0,38.95,203.92,18.44,222.78 -3843,8,E07000198,0,46.12,203.92,18.44,222.78 -4300,5,E07000198,1,53.13,92.19,26.1,99.69 -4521,7,E07000198,1,46.6,92.19,26.1,99.69 -4910,5,E07000198,2,58.72,110.39,26.1,120.05 -5206,7,E07000198,2,50.34,110.39,26.1,120.05 -5541,5,E07000198,3,69.9,136.13,26.1,148.99 -5797,7,E07000198,3,60.59,136.13,26.1,148.99 -6193,5,E07000198,4,81.09,185.44,26.1,202.58 -6458,7,E07000198,4,68.97,185.44,26.1,202.58 -6777,9,E07000198,1,53.13,115.24,26.1,124.6 -7103,9,E07000198,2,58.72,138.01,26.1,150.06 -7429,9,E07000198,3,69.9,170.16,26.1,186.23 -7755,9,E07000198,4,81.09,231.8,26.1,253.23 -8081,10,E07000198,0,38.95,254.89,18.44,278.47 -258,1,E07000243,1,54.99,120.05,26.1,150.06 -584,1,E07000243,2,65.24,143.62,26.1,169.36 -910,1,E07000243,3,71.78,157.56,26.1,182.22 -1236,1,E07000243,4,82.02,172.58,26.1,180.08 -1562,3,E07000243,1,50.34,100.76,26.1,132.91 -1888,3,E07000243,2,58.72,118.97,26.1,133.98 -2214,3,E07000243,3,64.31,131.84,26.1,144.7 -2540,3,E07000243,4,71.78,150.06,26.1,160.78 -2866,2,E07000243,0,35.87,223.96,18.44,418.45 -3192,4,E07000243,0,55.36,134.38,18.44,314.73 -3518,6,E07000243,0,35.87,325.34,18.44,354.8 -3844,8,E07000243,0,55.36,325.34,18.44,354.8 -4155,5,E07000243,1,54.99,132.91,26.1,145.77 -4272,7,E07000243,1,50.34,132.91,26.1,145.77 -4736,5,E07000243,2,65.24,172.58,26.1,187.58 -4998,7,E07000243,2,58.72,172.58,26.1,187.58 -5455,5,E07000243,3,71.78,183.29,26.1,200.45 -5641,7,E07000243,3,64.31,183.29,26.1,200.45 -6165,5,E07000243,4,82.02,295.83,26.1,322.64 -6303,7,E07000243,4,71.78,295.83,26.1,322.64 -6778,9,E07000243,1,54.99,166.13,26.1,182.21 -7104,9,E07000243,2,65.24,215.73,26.1,234.49 -7430,9,E07000243,3,71.78,229.13,26.1,250.54 -7756,9,E07000243,4,82.02,369.81,26.1,403.3 -8082,10,E07000243,0,35.87,406.66,18.44,443.51 -259,1,E08000007,1,52.2,94.33,26.1,117.9 -585,1,E08000007,2,59.66,108.27,26.1,136.13 -911,1,E08000007,3,66.17,121.11,26.1,146.84 -1237,1,E08000007,4,72.71,135.06,26.1,160.78 -1563,3,E08000007,1,43.8,86.81,26.1,101.83 -1889,3,E08000007,2,54.06,95.42,26.1,114.68 -2215,3,E08000007,3,58.72,106.12,26.1,125.4 -2541,3,E08000007,4,55.93,120.05,26.1,135.06 -2867,2,E08000007,0,55.36,236.93,18.44,338.29 -3193,4,E08000007,0,32.8,464.43,18.44,592.92 -3519,6,E08000007,0,55.36,252.25,18.44,273.47 -3845,8,E08000007,0,32.8,252.25,18.44,273.47 -4382,5,E08000007,1,52.2,114.68,26.1,124.33 -4494,7,E08000007,1,43.8,114.68,26.1,124.33 -4952,5,E08000007,2,59.66,136.13,26.1,148.99 -5090,7,E08000007,2,54.06,136.13,26.1,148.99 -5595,5,E08000007,3,66.17,160.78,26.1,175.78 -5770,7,E08000007,3,58.72,160.78,26.1,175.78 -6343,5,E08000007,4,72.71,229.37,26.1,248.67 -6394,7,E08000007,4,55.93,229.37,26.1,248.67 -6779,9,E08000007,1,52.2,143.37,26.1,155.41 -7105,9,E08000007,2,59.66,170.16,26.1,186.23 -7431,9,E08000007,3,66.17,200.97,26.1,219.74 -7757,9,E08000007,4,72.71,286.72,26.1,310.84 -8083,10,E08000007,0,55.36,315.32,18.44,341.84 -260,1,E06000004,1,51.27,88.96,26.1,98.62 -586,1,E06000004,2,57.79,102.91,26.1,121.11 -912,1,E06000004,3,61.52,114.68,26.1,160.78 -1238,1,E06000004,4,70.84,128.63,26.1,140.42 -1564,3,E06000004,1,42.87,100.76,26.1,106.12 -1890,3,E06000004,2,50.34,91.12,26.1,112.54 -2216,3,E06000004,3,54.06,106.12,26.1,125.4 -2542,3,E06000004,4,56.86,116.83,26.1,121.11 -2868,2,E06000004,0,55.36,234.56,18.44,337.12 -3194,4,E06000004,0,47.15,251.08,18.44,285.25 -3520,6,E06000004,0,55.36,213.35,18.44,233.38 -3846,8,E06000004,0,47.15,213.35,18.44,233.38 -4461,7,E06000004,1,42.87,95.42,26.1,103.98 -4542,5,E06000004,1,51.27,95.42,26.1,103.98 -5057,5,E06000004,2,57.79,126.48,26.1,138.27 -5108,7,E06000004,2,50.34,126.48,26.1,138.27 -5562,5,E06000004,3,61.52,138.27,26.1,150.06 -5737,7,E06000004,3,54.06,138.27,26.1,150.06 -6361,5,E06000004,4,70.84,194.01,26.1,212.24 -6519,7,E06000004,4,56.86,194.01,26.1,212.24 -6780,9,E06000004,1,42.87,119.25,26.1,129.97 -7106,9,E06000004,2,57.79,158.09,26.1,172.84 -7432,9,E06000004,3,61.52,172.84,26.1,187.57 -7758,9,E06000004,4,70.84,242.51,26.1,265.29 -8084,10,E06000004,0,55.36,266.69,18.44,291.74 -261,1,E06000021,1,53.13,99.69,26.1,125.4 -587,1,E06000021,2,58.72,117.9,26.1,138.27 -913,1,E06000021,3,69.9,133.98,26.1,161.86 -1239,1,E06000021,4,81.09,162.93,26.1,180.08 -1565,3,E06000021,1,46.6,88.96,26.1,98.62 -1891,3,E06000021,2,50.34,95.42,26.1,103.98 -2217,3,E06000021,3,60.59,105.05,26.1,121.11 -2543,3,E06000021,4,68.97,128.63,26.1,128.63 -2869,2,E06000021,0,38.95,242.82,18.44,378.37 -3195,4,E06000021,0,46.12,106.09,18.44,106.09 -3521,6,E06000021,0,38.95,199.2,18.44,218.08 -3847,8,E06000021,0,46.12,199.2,18.44,218.08 -4301,5,E06000021,1,53.13,92.19,26.1,99.69 -4522,7,E06000021,1,46.6,92.19,26.1,99.69 -4911,5,E06000021,2,58.72,103.98,26.1,113.61 -5207,7,E06000021,2,50.34,103.98,26.1,113.61 -5542,5,E06000021,3,69.9,131.84,26.1,144.7 -5798,7,E06000021,3,60.59,131.84,26.1,144.7 -6194,5,E06000021,4,81.09,182.22,26.1,198.3 -6459,7,E06000021,4,68.97,182.22,26.1,198.3 -6781,9,E06000021,1,53.13,115.24,26.1,124.6 -7107,9,E06000021,2,58.72,129.97,26.1,142.02 -7433,9,E06000021,3,69.9,164.8,26.1,180.87 -7759,9,E06000021,4,81.09,227.8,26.1,247.88 -8085,10,E06000021,0,38.95,249,18.44,272.59 -262,1,E07000221,1,53.13,99.69,26.1,125.4 -588,1,E07000221,2,58.72,117.9,26.1,138.27 -914,1,E07000221,3,69.9,133.98,26.1,161.86 -1240,1,E07000221,4,81.09,162.93,26.1,180.08 -1566,3,E07000221,1,46.6,88.96,26.1,98.62 -1892,3,E07000221,2,50.34,95.42,26.1,103.98 -2218,3,E07000221,3,60.59,105.05,26.1,121.11 -2544,3,E07000221,4,68.97,128.63,26.1,128.63 -2870,2,E07000221,0,38.95,242.82,18.44,378.37 -3196,4,E07000221,0,46.12,106.09,18.44,106.09 -3522,6,E07000221,0,38.95,373.65,18.44,407.85 -3848,8,E07000221,0,46.12,373.65,18.44,407.85 -4302,5,E07000221,1,53.13,128.63,26.1,141.49 -4523,7,E07000221,1,46.6,128.63,26.1,141.49 -4912,5,E07000221,2,58.72,158.63,26.1,174.72 -5208,7,E07000221,2,50.34,158.63,26.1,174.72 -5543,5,E07000221,3,69.9,204.74,26.1,222.95 -5799,7,E07000221,3,60.59,204.74,26.1,222.95 -6195,5,E07000221,4,81.09,339.77,26.1,370.87 -6460,7,E07000221,4,68.97,339.77,26.1,370.87 -6782,9,E07000221,1,53.13,160.78,26.1,176.86 -7108,9,E07000221,2,58.72,198.3,26.1,218.38 -7434,9,E07000221,3,69.9,255.92,26.1,278.69 -7760,9,E07000221,4,81.09,424.73,26.1,463.59 -8086,10,E07000221,0,38.95,467.08,18.44,509.82 -263,1,E07000082,1,49.41,108.27,26.1,141.49 -589,1,E07000082,2,55.93,122.19,26.1,145.77 -915,1,E07000082,3,62.45,142.56,26.1,162.93 -1241,1,E07000082,4,71.78,159.7,26.1,196.15 -1567,3,E07000082,1,47.54,90.03,26.1,212.24 -1893,3,E07000082,2,54.99,101.83,26.1,112.54 -2219,3,E07000082,3,62.45,110.39,26.1,127.56 -2545,3,E07000082,4,74.57,131.84,26.1,131.84 -2871,2,E07000082,0,54.33,228.68,18.44,354.8 -3197,4,E07000082,0,54.33,114.33,18.44,140.27 -3523,6,E07000082,0,54.33,351.26,18.44,383.09 -3849,8,E07000082,0,54.33,351.26,18.44,383.09 -3938,7,E07000082,1,47.54,113.61,26.1,123.26 -4222,5,E07000082,1,49.41,113.61,26.1,123.26 -4858,5,E07000082,2,55.93,148.99,26.1,161.86 -5135,7,E07000082,2,54.99,148.99,26.1,161.86 -5489,5,E07000082,3,62.45,183.29,26.1,200.45 -5715,7,E07000082,3,62.45,183.29,26.1,200.45 -6027,5,E07000082,4,71.78,319.42,26.1,348.36 -6427,7,E07000082,4,74.57,319.42,26.1,348.36 -6783,9,E07000082,1,49.41,142.02,26.1,154.09 -7109,9,E07000082,2,55.93,186.23,26.1,202.34 -7435,9,E07000082,3,62.45,229.13,26.1,250.54 -7761,9,E07000082,4,71.78,399.29,26.1,435.45 -8087,10,E07000082,0,54.33,439.1,18.44,478.86 -265,1,E08000024,1,51.27,88.96,26.1,98.62 -591,1,E08000024,2,57.79,102.91,26.1,121.11 -917,1,E08000024,3,61.52,114.68,26.1,160.78 -1243,1,E08000024,4,70.84,128.63,26.1,140.42 -1569,3,E08000024,1,42.87,100.76,26.1,106.12 -1895,3,E08000024,2,50.34,91.12,26.1,112.54 -2221,3,E08000024,3,54.06,106.12,26.1,125.4 -2547,3,E08000024,4,56.86,116.83,26.1,121.11 -2873,2,E08000024,0,55.36,234.56,18.44,337.12 -3199,4,E08000024,0,47.15,251.08,18.44,285.25 -3525,6,E08000024,0,55.36,200.38,18.44,219.25 -3851,8,E08000024,0,47.15,200.38,18.44,219.25 -4462,7,E08000024,1,42.87,103.98,26.1,113.61 -4543,5,E08000024,1,51.27,103.98,26.1,113.61 -5058,5,E08000024,2,57.79,126.48,26.1,138.27 -5109,7,E08000024,2,50.34,126.48,26.1,138.27 -5563,5,E08000024,3,61.52,136.13,26.1,148.99 -5738,7,E08000024,3,54.06,136.13,26.1,148.99 -6362,5,E08000024,4,70.84,182.22,26.1,199.38 -6520,7,E08000024,4,56.86,182.22,26.1,199.38 -6785,9,E08000024,1,42.87,129.97,26.1,142.02 -7111,9,E08000024,2,57.79,158.09,26.1,172.84 -7437,9,E08000024,3,61.52,170.16,26.1,186.23 -7763,9,E08000024,4,70.84,227.8,26.1,249.22 -8089,10,E08000024,0,55.36,250.47,18.44,274.05 -266,1,E07000214,1,57.79,124.33,26.1,177.93 -592,1,E07000214,2,71.78,147.91,26.1,188.66 -918,1,E07000214,3,82.02,162.93,26.1,205.81 -1244,1,E07000214,4,90.42,180.08,26.1,224.01 -1570,3,E07000214,1,52.2,116.83,26.1,160.78 -1896,3,E07000214,2,63.38,130.77,26.1,146.84 -2222,3,E07000214,3,68.97,151.13,26.1,187.58 -2548,3,E07000214,4,73.64,186.51,26.1,196.15 -2874,2,E07000214,0,61.49,265.21,18.44,340.65 -3200,4,E07000214,0,48.18,193.32,18.44,202.73 -3526,6,E07000214,0,61.49,511.57,18.44,558.75 -3852,8,E07000214,0,48.18,511.57,18.44,558.75 -4031,5,E07000214,1,57.79,160.78,26.1,175.78 -4098,7,E07000214,1,52.2,160.78,26.1,175.78 -4646,5,E07000214,2,71.78,211.17,26.1,230.44 -4793,7,E07000214,2,63.38,211.17,26.1,230.44 -5298,5,E07000214,3,82.02,284.04,26.1,309.78 -5398,7,E07000214,3,68.97,284.04,26.1,309.78 -5983,5,E07000214,4,90.42,465.19,26.1,508.08 -6087,7,E07000214,4,73.64,465.19,26.1,508.08 -6786,9,E07000214,1,57.79,200.97,26.1,219.74 -7112,9,E07000214,2,71.78,263.95,26.1,288.07 -7438,9,E07000214,3,82.02,355.06,26.1,387.21 -7764,9,E07000214,4,90.42,581.5,26.1,635.09 -8090,10,E07000214,0,61.49,639.47,18.44,698.41 -267,1,E09000029,1,66.17,146.84,26.1,199.38 -593,1,E09000029,2,78.29,158.63,26.1,194.01 -919,1,E09000029,3,84.82,168.29,26.1,228.29 -1245,1,E09000029,4,102.51,188.66,26.1,254.03 -1571,3,E09000029,1,58.72,120.05,26.1,147.91 -1897,3,E09000029,2,64.31,140.42,26.1,176.86 -2223,3,E09000029,3,71.78,160.78,26.1,202.58 -2549,3,E09000029,4,83.89,262.61,26.1,263.68 -2875,2,E09000029,0,69.7,313.55,18.44,497.44 -3201,4,E09000029,0,59.45,367.77,18.44,398.42 -3527,6,E09000029,0,69.7,524.54,18.44,571.71 -3853,8,E09000029,0,59.45,524.54,18.44,571.71 -3978,5,E09000029,1,66.17,172.58,26.1,187.58 -4192,7,E09000029,1,58.72,172.58,26.1,187.58 -4593,5,E09000029,2,78.29,216.52,26.1,236.89 -4693,7,E09000029,2,64.31,216.52,26.1,236.89 -5245,5,E09000029,3,84.82,295.83,26.1,322.64 -5345,7,E09000029,3,71.78,295.83,26.1,322.64 -5897,7,E09000029,4,83.89,476.98,26.1,519.86 -5930,5,E09000029,4,102.51,476.98,26.1,519.86 -6787,9,E09000029,1,66.17,215.73,26.1,234.49 -7113,9,E09000029,2,78.29,270.66,26.1,296.11 -7439,9,E09000029,3,84.82,369.81,26.1,403.3 -7765,9,E09000029,4,102.51,596.23,26.1,649.84 -8091,10,E09000029,0,69.7,655.68,18.44,714.62 -268,1,E07000113,1,57.79,124.33,26.1,177.93 -594,1,E07000113,2,71.78,147.91,26.1,188.66 -920,1,E07000113,3,82.02,162.93,26.1,205.81 -1246,1,E07000113,4,90.42,180.08,26.1,224.01 -1572,3,E07000113,1,52.2,116.83,26.1,160.78 -1898,3,E07000113,2,63.38,130.77,26.1,146.84 -2224,3,E07000113,3,68.97,151.13,26.1,187.58 -2550,3,E07000113,4,73.64,186.51,26.1,196.15 -2876,2,E07000113,0,61.49,265.21,18.44,340.65 -3202,4,E07000113,0,48.18,193.32,18.44,202.73 -3528,6,E07000113,0,61.49,251.08,18.44,273.47 -3854,8,E07000113,0,48.18,251.08,18.44,273.47 -4032,5,E07000113,1,57.79,123.26,26.1,133.98 -4099,7,E07000113,1,52.2,123.26,26.1,133.98 -4647,5,E07000113,2,71.78,148.99,26.1,161.86 -4794,7,E07000113,2,63.38,148.99,26.1,161.86 -5299,5,E07000113,3,82.02,172.58,26.1,187.58 -5399,7,E07000113,3,68.97,172.58,26.1,187.58 -5984,5,E07000113,4,90.42,228.29,26.1,248.67 -6088,7,E07000113,4,73.64,228.29,26.1,248.67 -6788,9,E07000113,1,57.79,154.09,26.1,167.48 -7114,9,E07000113,2,71.78,186.23,26.1,202.34 -7440,9,E07000113,3,82.02,215.73,26.1,234.49 -7766,9,E07000113,4,90.42,285.39,26.1,310.84 -8092,10,E07000113,0,61.49,313.84,18.44,341.84 -269,1,E06000030,1,49.41,108.27,26.1,141.49 -595,1,E06000030,2,55.93,122.19,26.1,145.77 -921,1,E06000030,3,62.45,142.56,26.1,162.93 -1247,1,E06000030,4,71.78,159.7,26.1,196.15 -1573,3,E06000030,1,47.54,90.03,26.1,212.24 -1899,3,E06000030,2,54.99,101.83,26.1,112.54 -2225,3,E06000030,3,62.45,110.39,26.1,127.56 -2551,3,E06000030,4,74.57,131.84,26.1,131.84 -2877,2,E06000030,0,54.33,228.68,18.44,354.8 -3203,4,E06000030,0,54.33,114.33,18.44,140.27 -3529,6,E06000030,0,54.33,264.04,18.44,287.62 -3855,8,E06000030,0,54.33,264.04,18.44,287.62 -3939,7,E06000030,1,47.54,114.68,26.1,124.33 -4223,5,E06000030,1,49.41,114.68,26.1,124.33 -4859,5,E06000030,2,55.93,136.13,26.1,148.99 -5136,7,E06000030,2,54.99,136.13,26.1,148.99 -5490,5,E06000030,3,62.45,172.58,26.1,187.58 -5716,7,E06000030,3,62.45,172.58,26.1,187.58 -6028,5,E06000030,4,71.78,240.09,26.1,261.54 -6428,7,E06000030,4,74.57,240.09,26.1,261.54 -6789,9,E06000030,1,49.41,143.37,26.1,155.41 -7115,9,E06000030,2,55.93,170.16,26.1,186.23 -7441,9,E06000030,3,62.45,215.73,26.1,234.49 -7767,9,E06000030,4,71.78,300.12,26.1,326.92 -8093,10,E06000030,0,54.33,330.05,18.44,359.53 -270,1,E08000008,1,52.2,94.33,26.1,117.9 -596,1,E08000008,2,59.66,108.27,26.1,136.13 -922,1,E08000008,3,66.17,121.11,26.1,146.84 -1248,1,E08000008,4,72.71,135.06,26.1,160.78 -1574,3,E08000008,1,43.8,86.81,26.1,101.83 -1900,3,E08000008,2,54.06,95.42,26.1,114.68 -2226,3,E08000008,3,58.72,106.12,26.1,125.4 -2552,3,E08000008,4,55.93,120.05,26.1,135.06 -2878,2,E08000008,0,55.36,236.93,18.44,338.29 -3204,4,E08000008,0,32.8,464.43,18.44,592.92 -3530,6,E08000008,0,55.36,201.56,18.44,220.42 -3856,8,E08000008,0,32.8,201.56,18.44,220.42 -4383,5,E08000008,1,52.2,103.98,26.1,113.61 -4495,7,E08000008,1,43.8,103.98,26.1,113.61 -4953,5,E08000008,2,59.66,114.68,26.1,124.33 -5091,7,E08000008,2,54.06,114.68,26.1,124.33 -5596,5,E08000008,3,66.17,138.27,26.1,150.06 -5771,7,E08000008,3,58.72,138.27,26.1,150.06 -6344,5,E08000008,4,72.71,183.29,26.1,200.45 -6395,7,E08000008,4,55.93,183.29,26.1,200.45 -6790,9,E08000008,1,52.2,129.97,26.1,142.02 -7116,9,E08000008,2,59.66,143.37,26.1,155.41 -7442,9,E08000008,3,66.17,172.84,26.1,187.57 -7768,9,E08000008,4,72.71,229.13,26.1,250.54 -8094,10,E08000008,0,55.36,251.95,18.44,275.54 -271,1,E07000199,1,53.13,99.69,26.1,125.4 -597,1,E07000199,2,58.72,117.9,26.1,138.27 -923,1,E07000199,3,69.9,133.98,26.1,161.86 -1249,1,E07000199,4,81.09,162.93,26.1,180.08 -1575,3,E07000199,1,46.6,88.96,26.1,98.62 -1901,3,E07000199,2,50.34,95.42,26.1,103.98 -2227,3,E07000199,3,60.59,105.05,26.1,121.11 -2553,3,E07000199,4,68.97,128.63,26.1,128.63 -2879,2,E07000199,0,38.95,242.82,18.44,378.37 -3205,4,E07000199,0,46.12,106.09,18.44,106.09 -3531,6,E07000199,0,38.95,225.15,18.44,245.18 -3857,8,E07000199,0,46.12,225.15,18.44,245.18 -4303,5,E07000199,1,53.13,103.98,26.1,113.61 -4524,7,E07000199,1,46.6,103.98,26.1,113.61 -4913,5,E07000199,2,58.72,126.48,26.1,138.27 -5209,7,E07000199,2,50.34,126.48,26.1,138.27 -5544,5,E07000199,3,69.9,148.99,26.1,161.86 -5800,7,E07000199,3,60.59,148.99,26.1,161.86 -6196,5,E07000199,4,81.09,204.74,26.1,222.95 -6461,7,E07000199,4,68.97,204.74,26.1,222.95 -6791,9,E07000199,1,53.13,129.97,26.1,142.02 -7117,9,E07000199,2,58.72,158.09,26.1,172.84 -7443,9,E07000199,3,69.9,186.23,26.1,202.34 -7769,9,E07000199,4,81.09,255.92,26.1,278.69 -8095,10,E07000199,0,38.95,281.43,18.44,306.45 -272,1,E07000215,1,57.79,124.33,26.1,177.93 -598,1,E07000215,2,71.78,147.91,26.1,188.66 -924,1,E07000215,3,82.02,162.93,26.1,205.81 -1250,1,E07000215,4,90.42,180.08,26.1,224.01 -1576,3,E07000215,1,52.2,116.83,26.1,160.78 -1902,3,E07000215,2,63.38,130.77,26.1,146.84 -2228,3,E07000215,3,68.97,151.13,26.1,187.58 -2554,3,E07000215,4,73.64,186.51,26.1,196.15 -2880,2,E07000215,0,61.49,265.21,18.44,340.65 -3206,4,E07000215,0,48.18,193.32,18.44,202.73 -3532,6,E07000215,0,61.49,735.54,18.44,801.56 -3858,8,E07000215,0,48.18,735.54,18.44,801.56 -4033,5,E07000215,1,57.79,166.14,26.1,181.15 -4100,7,E07000215,1,52.2,166.14,26.1,181.15 -4648,5,E07000215,2,71.78,211.17,26.1,230.44 -4795,7,E07000215,2,63.38,211.17,26.1,230.44 -5300,5,E07000215,3,82.02,307.63,26.1,335.49 -5400,7,E07000215,3,68.97,307.63,26.1,335.49 -5985,5,E07000215,4,90.42,668.85,26.1,728.88 -6089,7,E07000215,4,73.64,668.85,26.1,728.88 -6792,9,E07000215,1,57.79,207.68,26.1,226.44 -7118,9,E07000215,2,71.78,263.95,26.1,288.07 -7444,9,E07000215,3,82.02,384.53,26.1,419.36 -7770,9,E07000215,4,90.42,836.07,26.1,911.09 -8096,10,E07000215,0,61.49,919.43,18.44,1001.95 -274,1,E07000045,1,49.41,108.27,26.1,141.49 -600,1,E07000045,2,55.93,122.19,26.1,145.77 -926,1,E07000045,3,62.45,142.56,26.1,162.93 -1252,1,E07000045,4,71.78,159.7,26.1,196.15 -1578,3,E07000045,1,47.54,90.03,26.1,212.24 -1904,3,E07000045,2,54.99,101.83,26.1,112.54 -2230,3,E07000045,3,62.45,110.39,26.1,127.56 -2556,3,E07000045,4,74.57,131.84,26.1,131.84 -2882,2,E07000045,0,54.33,228.68,18.44,354.8 -3208,4,E07000045,0,54.33,114.33,18.44,140.27 -3534,6,E07000045,0,54.33,275.83,18.44,300.58 -3860,8,E07000045,0,54.33,275.83,18.44,300.58 -3941,7,E07000045,1,47.54,114.68,26.1,124.33 -4225,5,E07000045,1,49.41,114.68,26.1,124.33 -4861,5,E07000045,2,55.93,148.99,26.1,161.86 -5138,7,E07000045,2,54.99,148.99,26.1,161.86 -5492,5,E07000045,3,62.45,177.93,26.1,192.94 -5718,7,E07000045,3,62.45,177.93,26.1,192.94 -6030,5,E07000045,4,71.78,250.82,26.1,273.34 -6430,7,E07000045,4,74.57,250.82,26.1,273.34 -6794,9,E07000045,1,49.41,143.37,26.1,155.41 -7120,9,E07000045,2,55.93,186.23,26.1,202.34 -7446,9,E07000045,3,62.45,222.43,26.1,241.18 -7772,9,E07000045,4,71.78,313.51,26.1,341.67 -8098,10,E07000045,0,54.33,344.81,18.44,375.73 -275,1,E06000020,1,53.13,99.69,26.1,125.4 -601,1,E06000020,2,58.72,117.9,26.1,138.27 -927,1,E06000020,3,69.9,133.98,26.1,161.86 -1253,1,E06000020,4,81.09,162.93,26.1,180.08 -1579,3,E06000020,1,46.6,88.96,26.1,98.62 -1905,3,E06000020,2,50.34,95.42,26.1,103.98 -2231,3,E06000020,3,60.59,105.05,26.1,121.11 -2557,3,E06000020,4,68.97,128.63,26.1,128.63 -2883,2,E06000020,0,38.95,242.82,18.44,378.37 -3209,4,E06000020,0,46.12,106.09,18.44,106.09 -3535,6,E06000020,0,38.95,226.32,18.44,246.36 -3861,8,E06000020,0,46.12,226.32,18.44,246.36 -4304,5,E06000020,1,53.13,103.98,26.1,113.61 -4525,7,E06000020,1,46.6,103.98,26.1,113.61 -4914,5,E06000020,2,58.72,126.48,26.1,138.27 -5210,7,E06000020,2,50.34,126.48,26.1,138.27 -5545,5,E06000020,3,69.9,143.62,26.1,156.49 -5801,7,E06000020,3,60.59,143.62,26.1,156.49 -6197,5,E06000020,4,81.09,205.81,26.1,224.01 -6462,7,E06000020,4,68.97,205.81,26.1,224.01 -6795,9,E06000020,1,53.13,129.97,26.1,142.02 -7121,9,E06000020,2,58.72,158.09,26.1,172.84 -7447,9,E06000020,3,69.9,179.53,26.1,195.6 -7773,9,E06000020,4,81.09,257.26,26.1,280.03 -8099,10,E06000020,0,38.95,282.91,18.44,307.95 -276,1,E07000076,1,54.99,120.05,26.1,150.06 -602,1,E07000076,2,65.24,143.62,26.1,169.36 -928,1,E07000076,3,71.78,157.56,26.1,182.22 -1254,1,E07000076,4,82.02,172.58,26.1,180.08 -1580,3,E07000076,1,50.34,100.76,26.1,132.91 -1906,3,E07000076,2,58.72,118.97,26.1,133.98 -2232,3,E07000076,3,64.31,131.84,26.1,144.7 -2558,3,E07000076,4,71.78,150.06,26.1,160.78 -2884,2,E07000076,0,35.87,223.96,18.44,418.45 -3210,4,E07000076,0,55.36,134.38,18.44,314.73 -3536,6,E07000076,0,35.87,248.71,18.44,272.3 -3862,8,E07000076,0,55.36,248.71,18.44,272.3 -4157,5,E07000076,1,54.99,112.54,26.1,122.19 -4274,7,E07000076,1,50.34,112.54,26.1,122.19 -4738,5,E07000076,2,65.24,145.77,26.1,157.56 -5000,7,E07000076,2,58.72,145.77,26.1,157.56 -5457,5,E07000076,3,71.78,172.58,26.1,187.58 -5643,7,E07000076,3,64.31,172.58,26.1,187.58 -6167,5,E07000076,4,82.02,228.29,26.1,247.6 -6305,7,E07000076,4,71.78,228.29,26.1,247.6 -6796,9,E07000076,1,54.99,140.68,26.1,152.74 -7122,9,E07000076,2,65.24,182.21,26.1,196.95 -7448,9,E07000076,3,71.78,215.73,26.1,234.49 -7774,9,E07000076,4,82.02,285.39,26.1,309.5 -8100,10,E07000076,0,35.87,310.9,18.44,340.38 -277,1,E07000093,1,57.79,124.33,26.1,177.93 -603,1,E07000093,2,71.78,147.91,26.1,188.66 -929,1,E07000093,3,82.02,162.93,26.1,205.81 -1255,1,E07000093,4,90.42,180.08,26.1,224.01 -1581,3,E07000093,1,52.2,116.83,26.1,160.78 -1907,3,E07000093,2,63.38,130.77,26.1,146.84 -2233,3,E07000093,3,68.97,151.13,26.1,187.58 -2559,3,E07000093,4,73.64,186.51,26.1,196.15 -2885,2,E07000093,0,61.49,265.21,18.44,340.65 -3211,4,E07000093,0,48.18,193.32,18.44,202.73 -3537,6,E07000093,0,61.49,424.35,18.44,463.25 -3863,8,E07000093,0,48.18,424.35,18.44,463.25 -4034,5,E07000093,1,57.79,138.27,26.1,150.06 -4101,7,E07000093,1,52.2,138.27,26.1,150.06 -4649,5,E07000093,2,71.78,182.22,26.1,199.38 -4796,7,E07000093,2,63.38,182.22,26.1,199.38 -5301,5,E07000093,3,82.02,216.52,26.1,236.89 -5401,7,E07000093,3,68.97,216.52,26.1,236.89 -5986,5,E07000093,4,90.42,385.87,26.1,421.25 -6090,7,E07000093,4,73.64,385.87,26.1,421.25 -6797,9,E07000093,1,57.79,172.84,26.1,187.57 -7123,9,E07000093,2,71.78,227.8,26.1,249.22 -7449,9,E07000093,3,82.02,270.66,26.1,296.11 -7775,9,E07000093,4,90.42,482.35,26.1,526.56 -8101,10,E07000093,0,61.49,530.44,18.44,579.06 -278,1,E07000083,1,49.41,108.27,26.1,141.49 -604,1,E07000083,2,55.93,122.19,26.1,145.77 -930,1,E07000083,3,62.45,142.56,26.1,162.93 -1256,1,E07000083,4,71.78,159.7,26.1,196.15 -1582,3,E07000083,1,47.54,90.03,26.1,212.24 -1908,3,E07000083,2,54.99,101.83,26.1,112.54 -2234,3,E07000083,3,62.45,110.39,26.1,127.56 -2560,3,E07000083,4,74.57,131.84,26.1,131.84 -2886,2,E07000083,0,54.33,228.68,18.44,354.8 -3212,4,E07000083,0,54.33,114.33,18.44,140.27 -3538,6,E07000083,0,54.33,351.26,18.44,383.09 -3864,8,E07000083,0,54.33,351.26,18.44,383.09 -3942,7,E07000083,1,47.54,114.68,26.1,124.33 -4226,5,E07000083,1,49.41,114.68,26.1,124.33 -4862,5,E07000083,2,55.93,148.99,26.1,161.86 -5139,7,E07000083,2,54.99,148.99,26.1,161.86 -5493,5,E07000083,3,62.45,177.93,26.1,192.94 -5719,7,E07000083,3,62.45,177.93,26.1,192.94 -6031,5,E07000083,4,71.78,319.42,26.1,348.36 -6431,7,E07000083,4,74.57,319.42,26.1,348.36 -6798,9,E07000083,1,49.41,143.37,26.1,155.41 -7124,9,E07000083,2,55.93,186.23,26.1,202.34 -7450,9,E07000083,3,62.45,222.43,26.1,241.18 -7776,9,E07000083,4,71.78,399.29,26.1,435.45 -8102,10,E07000083,0,54.33,439.1,18.44,478.86 -279,1,E07000114,1,57.79,124.33,26.1,177.93 -605,1,E07000114,2,71.78,147.91,26.1,188.66 -931,1,E07000114,3,82.02,162.93,26.1,205.81 -1257,1,E07000114,4,90.42,180.08,26.1,224.01 -1583,3,E07000114,1,52.2,116.83,26.1,160.78 -1909,3,E07000114,2,63.38,130.77,26.1,146.84 -2235,3,E07000114,3,68.97,151.13,26.1,187.58 -2561,3,E07000114,4,73.64,186.51,26.1,196.15 -2887,2,E07000114,0,61.49,265.21,18.44,340.65 -3213,4,E07000114,0,48.18,193.32,18.44,202.73 -3539,6,E07000114,0,61.49,248.71,18.44,272.3 -3865,8,E07000114,0,48.18,248.71,18.44,272.3 -4035,5,E07000114,1,57.79,98.62,26.1,108.27 -4102,7,E07000114,1,52.2,98.62,26.1,108.27 -4650,5,E07000114,2,71.78,132.91,26.1,145.77 -4797,7,E07000114,2,63.38,132.91,26.1,145.77 -5302,5,E07000114,3,82.02,166.14,26.1,181.15 -5402,7,E07000114,3,68.97,166.14,26.1,181.15 -5987,5,E07000114,4,90.42,228.29,26.1,247.6 -6091,7,E07000114,4,73.64,228.29,26.1,247.6 -6799,9,E07000114,1,57.79,123.26,26.1,135.33 -7125,9,E07000114,2,71.78,166.13,26.1,182.21 -7451,9,E07000114,3,82.02,207.68,26.1,226.44 -7777,9,E07000114,4,90.42,285.39,26.1,309.5 -8103,10,E07000114,0,61.49,310.9,18.44,340.38 -281,1,E07000102,1,54.99,120.05,26.1,150.06 -607,1,E07000102,2,65.24,143.62,26.1,169.36 -933,1,E07000102,3,71.78,157.56,26.1,182.22 -1259,1,E07000102,4,82.02,172.58,26.1,180.08 -1585,3,E07000102,1,50.34,100.76,26.1,132.91 -1911,3,E07000102,2,58.72,118.97,26.1,133.98 -2237,3,E07000102,3,64.31,131.84,26.1,144.7 -2563,3,E07000102,4,71.78,150.06,26.1,160.78 -2889,2,E07000102,0,35.87,223.96,18.44,418.45 -3215,4,E07000102,0,55.36,134.38,18.44,314.73 -3541,6,E07000102,0,35.87,623.56,18.44,678.97 -3867,8,E07000102,0,55.36,623.56,18.44,678.97 -4158,5,E07000102,1,54.99,172.58,26.1,187.58 -4275,7,E07000102,1,50.34,172.58,26.1,187.58 -4739,5,E07000102,2,65.24,262.61,26.1,285.11 -5001,7,E07000102,2,58.72,262.61,26.1,285.11 -5458,5,E07000102,3,71.78,386.95,26.1,421.25 -5644,7,E07000102,3,64.31,386.95,26.1,421.25 -6168,5,E07000102,4,82.02,567.02,26.1,617.4 -6306,7,E07000102,4,71.78,567.02,26.1,617.4 -6801,9,E07000102,1,54.99,215.73,26.1,234.49 -7127,9,E07000102,2,65.24,328.26,26.1,356.4 -7453,9,E07000102,3,71.78,483.69,26.1,526.56 -7779,9,E07000102,4,82.02,708.78,26.1,771.75 -8105,10,E07000102,0,35.87,779.44,18.44,848.71 -282,1,E06000034,1,54.99,120.05,26.1,150.06 -608,1,E06000034,2,65.24,143.62,26.1,169.36 -934,1,E06000034,3,71.78,157.56,26.1,182.22 -1260,1,E06000034,4,82.02,172.58,26.1,180.08 -1586,3,E06000034,1,50.34,100.76,26.1,132.91 -1912,3,E06000034,2,58.72,118.97,26.1,133.98 -2238,3,E06000034,3,64.31,131.84,26.1,144.7 -2564,3,E06000034,4,71.78,150.06,26.1,160.78 -2890,2,E06000034,0,35.87,223.96,18.44,418.45 -3216,4,E06000034,0,55.36,134.38,18.44,314.73 -3542,6,E06000034,0,35.87,325.34,18.44,354.8 -3868,8,E06000034,0,55.36,325.34,18.44,354.8 -4159,5,E06000034,1,54.99,136.13,26.1,148.99 -4276,7,E06000034,1,50.34,136.13,26.1,148.99 -4740,5,E06000034,2,65.24,172.58,26.1,187.58 -5002,7,E06000034,2,58.72,172.58,26.1,187.58 -5459,5,E06000034,3,71.78,205.81,26.1,224.01 -5645,7,E06000034,3,64.31,205.81,26.1,224.01 -6169,5,E06000034,4,82.02,295.83,26.1,322.64 -6307,7,E06000034,4,71.78,295.83,26.1,322.64 -6802,9,E06000034,1,54.99,170.16,26.1,186.23 -7128,9,E06000034,2,65.24,215.73,26.1,234.49 -7454,9,E06000034,3,71.78,257.26,26.1,280.03 -7780,9,E06000034,4,82.02,369.81,26.1,403.3 -8106,10,E06000034,0,35.87,406.66,18.44,443.51 -283,1,E07000115,1,57.79,124.33,26.1,177.93 -609,1,E07000115,2,71.78,147.91,26.1,188.66 -935,1,E07000115,3,82.02,162.93,26.1,205.81 -1261,1,E07000115,4,90.42,180.08,26.1,224.01 -1587,3,E07000115,1,52.2,116.83,26.1,160.78 -1913,3,E07000115,2,63.38,130.77,26.1,146.84 -2239,3,E07000115,3,68.97,151.13,26.1,187.58 -2565,3,E07000115,4,73.64,186.51,26.1,196.15 -2891,2,E07000115,0,61.49,265.21,18.44,340.65 -3217,4,E07000115,0,48.18,193.32,18.44,202.73 -3543,6,E07000115,0,61.49,486.82,18.44,530.44 -3869,8,E07000115,0,48.18,486.82,18.44,530.44 -4037,5,E07000115,1,57.79,138.27,26.1,150.06 -4104,7,E07000115,1,52.2,138.27,26.1,150.06 -4652,5,E07000115,2,71.78,182.22,26.1,199.38 -4799,7,E07000115,2,63.38,182.22,26.1,199.38 -5304,5,E07000115,3,82.02,209.03,26.1,228.29 -5404,7,E07000115,3,68.97,209.03,26.1,228.29 -5989,5,E07000115,4,90.42,442.67,26.1,482.35 -6093,7,E07000115,4,73.64,442.67,26.1,482.35 -6803,9,E07000115,1,57.79,172.84,26.1,187.57 -7129,9,E07000115,2,71.78,227.8,26.1,249.22 -7455,9,E07000115,3,82.02,261.26,26.1,285.39 -7781,9,E07000115,4,90.42,553.35,26.1,602.94 -8107,10,E07000115,0,61.49,608.53,18.44,663.05 -284,1,E06000027,1,49.41,108.27,26.1,141.49 -610,1,E06000027,2,55.93,122.19,26.1,145.77 -936,1,E06000027,3,62.45,142.56,26.1,162.93 -1262,1,E06000027,4,71.78,159.7,26.1,196.15 -1588,3,E06000027,1,47.54,90.03,26.1,212.24 -1914,3,E06000027,2,54.99,101.83,26.1,112.54 -2240,3,E06000027,3,62.45,110.39,26.1,127.56 -2566,3,E06000027,4,74.57,131.84,26.1,131.84 -2892,2,E06000027,0,54.33,228.68,18.44,354.8 -3218,4,E06000027,0,54.33,114.33,18.44,140.27 -3544,6,E06000027,0,54.33,241.64,18.44,264.04 -3870,8,E06000027,0,54.33,241.64,18.44,264.04 -3943,7,E06000027,1,47.54,110.39,26.1,120.05 -4227,5,E06000027,1,49.41,110.39,26.1,120.05 -4863,5,E06000027,2,55.93,141.49,26.1,154.35 -5140,7,E06000027,2,54.99,141.49,26.1,154.35 -5494,5,E06000027,3,62.45,166.14,26.1,181.15 -5720,7,E06000027,3,62.45,166.14,26.1,181.15 -6032,5,E06000027,4,71.78,219.73,26.1,240.09 -6432,7,E06000027,4,74.57,219.73,26.1,240.09 -6804,9,E06000027,1,49.41,138.01,26.1,150.06 -7130,9,E06000027,2,55.93,176.86,26.1,192.93 -7456,9,E06000027,3,62.45,207.68,26.1,226.44 -7782,9,E06000027,4,71.78,274.67,26.1,300.12 -8108,10,E06000027,0,54.33,302.04,18.44,330.05 -285,1,E07000046,1,49.41,108.27,26.1,141.49 -611,1,E07000046,2,55.93,122.19,26.1,145.77 -937,1,E07000046,3,62.45,142.56,26.1,162.93 -1263,1,E07000046,4,71.78,159.7,26.1,196.15 -1589,3,E07000046,1,47.54,90.03,26.1,212.24 -1915,3,E07000046,2,54.99,101.83,26.1,112.54 -2241,3,E07000046,3,62.45,110.39,26.1,127.56 -2567,3,E07000046,4,74.57,131.84,26.1,131.84 -2893,2,E07000046,0,54.33,228.68,18.44,354.8 -3219,4,E07000046,0,54.33,114.33,18.44,140.27 -3545,6,E07000046,0,54.33,213.35,18.44,233.38 -3871,8,E07000046,0,54.33,213.35,18.44,233.38 -3944,7,E07000046,1,47.54,98.62,26.1,108.27 -4228,5,E07000046,1,49.41,98.62,26.1,108.27 -4864,5,E07000046,2,55.93,124.33,26.1,135.06 -5141,7,E07000046,2,54.99,124.33,26.1,135.06 -5495,5,E07000046,3,62.45,148.99,26.1,161.86 -5721,7,E07000046,3,62.45,148.99,26.1,161.86 -6033,5,E07000046,4,71.78,194.01,26.1,212.24 -6433,7,E07000046,4,74.57,194.01,26.1,212.24 -6805,9,E07000046,1,49.41,123.26,26.1,135.33 -7131,9,E07000046,2,55.93,155.41,26.1,168.82 -7457,9,E07000046,3,62.45,186.23,26.1,202.34 -7783,9,E07000046,4,71.78,242.51,26.1,265.29 -8109,10,E07000046,0,54.33,266.69,18.44,291.74 -286,1,E09000030,1,66.17,146.84,26.1,199.38 -612,1,E09000030,2,78.29,158.63,26.1,194.01 -938,1,E09000030,3,84.82,168.29,26.1,228.29 -1264,1,E09000030,4,102.51,188.66,26.1,254.03 -1590,3,E09000030,1,58.72,120.05,26.1,147.91 -1916,3,E09000030,2,64.31,140.42,26.1,176.86 -2242,3,E09000030,3,71.78,160.78,26.1,202.58 -2568,3,E09000030,4,83.89,262.61,26.1,263.68 -2894,2,E09000030,0,69.7,313.55,18.44,497.44 -3220,4,E09000030,0,59.45,367.77,18.44,398.42 -3546,6,E09000030,0,69.7,594.11,18.44,648.32 -3872,8,E09000030,0,59.45,594.11,18.44,648.32 -3979,5,E09000030,1,66.17,320.49,26.1,349.42 -4193,7,E09000030,1,58.72,320.49,26.1,349.42 -4594,5,E09000030,2,78.29,393.38,26.1,428.76 -4694,7,E09000030,2,64.31,393.38,26.1,428.76 -5246,5,E09000030,3,84.82,476.98,26.1,519.86 -5346,7,E09000030,3,71.78,476.98,26.1,519.86 -5898,7,E09000030,4,83.89,541.3,26.1,589.54 -5931,5,E09000030,4,102.51,541.3,26.1,589.54 -6806,9,E09000030,1,66.17,400.6,26.1,436.8 -7132,9,E09000030,2,78.29,491.71,26.1,535.95 -7458,9,E09000030,3,84.82,596.23,26.1,649.84 -7784,9,E09000030,4,102.51,676.64,26.1,736.91 -8110,10,E09000030,0,69.7,742.61,18.44,810.39 -287,1,E08000009,1,52.2,94.33,26.1,117.9 -613,1,E08000009,2,59.66,108.27,26.1,136.13 -939,1,E08000009,3,66.17,121.11,26.1,146.84 -1265,1,E08000009,4,72.71,135.06,26.1,160.78 -1591,3,E08000009,1,43.8,86.81,26.1,101.83 -1917,3,E08000009,2,54.06,95.42,26.1,114.68 -2243,3,E08000009,3,58.72,106.12,26.1,125.4 -2569,3,E08000009,4,55.93,120.05,26.1,135.06 -2895,2,E08000009,0,55.36,236.93,18.44,338.29 -3221,4,E08000009,0,32.8,464.43,18.44,592.92 -3547,6,E08000009,0,55.36,398.42,18.44,434.96 -3873,8,E08000009,0,32.8,398.42,18.44,434.96 -4384,5,E08000009,1,52.2,125.4,26.1,136.13 -4496,7,E08000009,1,43.8,125.4,26.1,136.13 -4954,5,E08000009,2,59.66,158.63,26.1,174.72 -5092,7,E08000009,2,54.06,158.63,26.1,174.72 -5597,5,E08000009,3,66.17,194.01,26.1,212.24 -5772,7,E08000009,3,58.72,194.01,26.1,212.24 -6345,5,E08000009,4,72.71,362.28,26.1,395.52 -6396,7,E08000009,4,55.93,362.28,26.1,395.52 -6807,9,E08000009,1,52.2,156.77,26.1,170.16 -7133,9,E08000009,2,59.66,198.3,26.1,218.38 -7459,9,E08000009,3,66.17,242.51,26.1,265.29 -7785,9,E08000009,4,72.71,452.87,26.1,494.42 -8111,10,E08000009,0,55.36,498.02,18.44,543.71 -288,1,E07000116,1,57.79,124.33,26.1,177.93 -614,1,E07000116,2,71.78,147.91,26.1,188.66 -940,1,E07000116,3,82.02,162.93,26.1,205.81 -1266,1,E07000116,4,90.42,180.08,26.1,224.01 -1592,3,E07000116,1,52.2,116.83,26.1,160.78 -1918,3,E07000116,2,63.38,130.77,26.1,146.84 -2244,3,E07000116,3,68.97,151.13,26.1,187.58 -2570,3,E07000116,4,73.64,186.51,26.1,196.15 -2896,2,E07000116,0,61.49,265.21,18.44,340.65 -3222,4,E07000116,0,48.18,193.32,18.44,202.73 -3548,6,E07000116,0,61.49,587.03,18.44,638.89 -3874,8,E07000116,0,48.18,587.03,18.44,638.89 -4038,5,E07000116,1,57.79,153.28,26.1,168.29 -4105,7,E07000116,1,52.2,153.28,26.1,168.29 -4653,5,E07000116,2,71.78,204.74,26.1,222.95 -4800,7,E07000116,2,63.38,204.74,26.1,222.95 -5305,5,E07000116,3,82.02,284.04,26.1,309.78 -5405,7,E07000116,3,68.97,284.04,26.1,309.78 -5990,5,E07000116,4,90.42,533.8,26.1,580.94 -6094,7,E07000116,4,73.64,533.8,26.1,580.94 -6808,9,E07000116,1,57.79,191.6,26.1,210.37 -7134,9,E07000116,2,71.78,255.92,26.1,278.69 -7460,9,E07000116,3,82.02,355.06,26.1,387.21 -7786,9,E07000116,4,90.42,667.24,26.1,726.18 -8112,10,E07000116,0,61.49,733.79,18.44,798.6 -289,1,E07000077,1,54.99,120.05,26.1,150.06 -615,1,E07000077,2,65.24,143.62,26.1,169.36 -941,1,E07000077,3,71.78,157.56,26.1,182.22 -1267,1,E07000077,4,82.02,172.58,26.1,180.08 -1593,3,E07000077,1,50.34,100.76,26.1,132.91 -1919,3,E07000077,2,58.72,118.97,26.1,133.98 -2245,3,E07000077,3,64.31,131.84,26.1,144.7 -2571,3,E07000077,4,71.78,150.06,26.1,160.78 -2897,2,E07000077,0,35.87,223.96,18.44,418.45 -3223,4,E07000077,0,55.36,134.38,18.44,314.73 -3549,6,E07000077,0,35.87,437.32,18.44,476.22 -3875,8,E07000077,0,55.36,437.32,18.44,476.22 -4160,5,E07000077,1,54.99,136.13,26.1,148.99 -4277,7,E07000077,1,50.34,136.13,26.1,148.99 -4741,5,E07000077,2,65.24,177.93,26.1,192.94 -5003,7,E07000077,2,58.72,177.93,26.1,192.94 -5460,5,E07000077,3,71.78,221.88,26.1,242.25 -5646,7,E07000077,3,64.31,221.88,26.1,242.25 -6170,5,E07000077,4,82.02,397.66,26.1,433.04 -6308,7,E07000077,4,71.78,397.66,26.1,433.04 -6809,9,E07000077,1,54.99,170.16,26.1,186.23 -7135,9,E07000077,2,65.24,222.43,26.1,241.18 -7461,9,E07000077,3,71.78,277.34,26.1,302.81 -7787,9,E07000077,4,82.02,497.09,26.1,541.3 -8113,10,E07000077,0,35.87,546.66,18.44,595.28 -290,1,E07000180,1,57.79,124.33,26.1,177.93 -616,1,E07000180,2,71.78,147.91,26.1,188.66 -942,1,E07000180,3,82.02,162.93,26.1,205.81 -1268,1,E07000180,4,90.42,180.08,26.1,224.01 -1594,3,E07000180,1,52.2,116.83,26.1,160.78 -1920,3,E07000180,2,63.38,130.77,26.1,146.84 -2246,3,E07000180,3,68.97,151.13,26.1,187.58 -2572,3,E07000180,4,73.64,186.51,26.1,196.15 -2898,2,E07000180,0,61.49,265.21,18.44,340.65 -3224,4,E07000180,0,48.18,193.32,18.44,202.73 -3550,6,E07000180,0,61.49,437.32,18.44,476.22 -3876,8,E07000180,0,48.18,437.32,18.44,476.22 -4039,5,E07000180,1,57.79,160.78,26.1,175.78 -4106,7,E07000180,1,52.2,160.78,26.1,175.78 -4654,5,E07000180,2,71.78,194.01,26.1,212.24 -4801,7,E07000180,2,63.38,194.01,26.1,212.24 -5306,5,E07000180,3,82.02,240.09,26.1,261.54 -5406,7,E07000180,3,68.97,240.09,26.1,261.54 -5991,5,E07000180,4,90.42,397.66,26.1,433.04 -6095,7,E07000180,4,73.64,397.66,26.1,433.04 -6810,9,E07000180,1,57.79,200.97,26.1,219.74 -7136,9,E07000180,2,71.78,242.51,26.1,265.29 -7462,9,E07000180,3,82.02,300.12,26.1,326.92 -7788,9,E07000180,4,90.42,497.09,26.1,541.3 -8114,10,E07000180,0,61.49,546.66,18.44,595.28 -291,1,E08000036,1,51.27,92.19,26.1,114.68 -617,1,E08000036,2,58.72,109.33,26.1,141.49 -943,1,E08000036,3,63.38,121.11,26.1,162.93 -1269,1,E08000036,4,73.64,145.77,26.1,180.08 -1595,3,E08000036,1,46.6,82.54,26.1,93.26 -1921,3,E08000036,2,53.13,113.61,26.1,145.77 -2247,3,E08000036,3,56.86,105.05,26.1,114.68 -2573,3,E08000036,4,64.31,122.19,26.1,176.86 -2899,2,E08000036,0,52.28,232.2,18.44,319.44 -3225,4,E08000036,0,51.26,159.13,18.44,188.6 -3551,6,E08000036,0,52.28,213.35,18.44,233.38 -3877,8,E08000036,0,51.26,213.35,18.44,233.38 -4409,5,E08000036,1,51.27,110.39,26.1,120.05 -4563,7,E08000036,1,46.6,110.39,26.1,120.05 -4831,7,E08000036,2,53.13,126.48,26.1,138.27 -4889,5,E08000036,2,58.72,126.48,26.1,138.27 -5520,5,E08000036,3,63.38,138.27,26.1,150.06 -5867,7,E08000036,3,56.86,138.27,26.1,150.06 -6125,5,E08000036,4,73.64,194.01,26.1,212.24 -6223,7,E08000036,4,64.31,194.01,26.1,212.24 -6811,9,E08000036,1,51.27,138.01,26.1,150.06 -7137,9,E08000036,2,53.13,158.09,26.1,172.84 -7463,9,E08000036,3,63.38,172.84,26.1,187.57 -7789,9,E08000036,4,73.64,242.51,26.1,265.29 -8115,10,E08000036,0,52.28,266.69,18.44,291.74 -292,1,E08000030,1,53.13,99.69,26.1,125.4 -618,1,E08000030,2,58.72,117.9,26.1,138.27 -944,1,E08000030,3,69.9,133.98,26.1,161.86 -1270,1,E08000030,4,81.09,162.93,26.1,180.08 -1596,3,E08000030,1,46.6,88.96,26.1,98.62 -1922,3,E08000030,2,50.34,95.42,26.1,103.98 -2248,3,E08000030,3,60.59,105.05,26.1,121.11 -2574,3,E08000030,4,68.97,128.63,26.1,128.63 -2900,2,E08000030,0,38.95,242.82,18.44,378.37 -3226,4,E08000030,0,46.12,106.09,18.44,106.09 -3552,6,E08000030,0,38.95,213.35,18.44,233.38 -3878,8,E08000030,0,46.12,213.35,18.44,233.38 -4305,5,E08000030,1,53.13,98.62,26.1,108.27 -4526,7,E08000030,1,46.6,98.62,26.1,108.27 -4915,5,E08000030,2,58.72,121.11,26.1,131.84 -5211,7,E08000030,2,50.34,121.11,26.1,131.84 -5546,5,E08000030,3,69.9,131.84,26.1,144.7 -5802,7,E08000030,3,60.59,131.84,26.1,144.7 -6198,5,E08000030,4,81.09,194.01,26.1,212.24 -6463,7,E08000030,4,68.97,194.01,26.1,212.24 -6812,9,E08000030,1,53.13,123.26,26.1,135.33 -7138,9,E08000030,2,58.72,151.41,26.1,164.8 -7464,9,E08000030,3,69.9,164.8,26.1,180.87 -7790,9,E08000030,4,81.09,242.51,26.1,265.29 -8116,10,E08000030,0,38.95,266.69,18.44,291.74 -293,1,E09000031,1,66.17,146.84,26.1,199.38 -619,1,E09000031,2,78.29,158.63,26.1,194.01 -945,1,E09000031,3,84.82,168.29,26.1,228.29 -1271,1,E09000031,4,102.51,188.66,26.1,254.03 -1597,3,E09000031,1,58.72,120.05,26.1,147.91 -1923,3,E09000031,2,64.31,140.42,26.1,176.86 -2249,3,E09000031,3,71.78,160.78,26.1,202.58 -2575,3,E09000031,4,83.89,262.61,26.1,263.68 -2901,2,E09000031,0,69.7,313.55,18.44,497.44 -3227,4,E09000031,0,59.45,367.77,18.44,398.42 -3553,6,E09000031,0,69.7,394.88,18.44,431.42 -3879,8,E09000031,0,59.45,394.88,18.44,431.42 -3980,5,E09000031,1,66.17,188.66,26.1,205.81 -4194,7,E09000031,1,58.72,188.66,26.1,205.81 -4595,5,E09000031,2,78.29,240.09,26.1,261.54 -4695,7,E09000031,2,64.31,240.09,26.1,261.54 -5247,5,E09000031,3,84.82,295.83,26.1,322.64 -5347,7,E09000031,3,71.78,295.83,26.1,322.64 -5899,7,E09000031,4,83.89,360.15,26.1,392.31 -5932,5,E09000031,4,102.51,360.15,26.1,392.31 -6813,9,E09000031,1,66.17,235.82,26.1,257.26 -7139,9,E09000031,2,78.29,300.12,26.1,326.92 -7465,9,E09000031,3,84.82,369.81,26.1,403.3 -7791,9,E09000031,4,102.51,450.18,26.1,490.4 -8117,10,E09000031,0,69.7,493.61,18.44,539.28 -294,1,E09000032,1,66.17,146.84,26.1,199.38 -620,1,E09000032,2,78.29,158.63,26.1,194.01 -946,1,E09000032,3,84.82,168.29,26.1,228.29 -1272,1,E09000032,4,102.51,188.66,26.1,254.03 -1598,3,E09000032,1,58.72,120.05,26.1,147.91 -1924,3,E09000032,2,64.31,140.42,26.1,176.86 -2250,3,E09000032,3,71.78,160.78,26.1,202.58 -2576,3,E09000032,4,83.89,262.61,26.1,263.68 -2902,2,E09000032,0,69.7,313.55,18.44,497.44 -3228,4,E09000032,0,59.45,367.77,18.44,398.42 -3554,6,E09000032,0,69.7,744.99,18.44,813.35 -3880,8,E09000032,0,59.45,744.99,18.44,813.35 -3981,5,E09000032,1,66.17,295.83,26.1,322.64 -4195,7,E09000032,1,58.72,295.83,26.1,322.64 -4596,5,E09000032,2,78.29,368.73,26.1,401.95 -4696,7,E09000032,2,64.31,368.73,26.1,401.95 -5248,5,E09000032,3,84.82,457.7,26.1,499.48 -5348,7,E09000032,3,71.78,457.7,26.1,499.48 -5900,7,E09000032,4,83.89,677.43,26.1,739.59 -5933,5,E09000032,4,102.51,677.43,26.1,739.59 -6814,9,E09000032,1,66.17,369.81,26.1,403.3 -7140,9,E09000032,2,78.29,460.91,26.1,502.45 -7466,9,E09000032,3,84.82,572.11,26.1,624.36 -7792,9,E09000032,4,102.51,846.77,26.1,924.49 -8118,10,E09000032,0,69.7,931.22,18.44,1016.69 -295,1,E06000007,1,52.2,94.33,26.1,117.9 -621,1,E06000007,2,59.66,108.27,26.1,136.13 -947,1,E06000007,3,66.17,121.11,26.1,146.84 -1273,1,E06000007,4,72.71,135.06,26.1,160.78 -1599,3,E06000007,1,43.8,86.81,26.1,101.83 -1925,3,E06000007,2,54.06,95.42,26.1,114.68 -2251,3,E06000007,3,58.72,106.12,26.1,125.4 -2577,3,E06000007,4,55.93,120.05,26.1,135.06 -2903,2,E06000007,0,55.36,236.93,18.44,338.29 -3229,4,E06000007,0,32.8,464.43,18.44,592.92 -3555,6,E06000007,0,55.36,238.1,18.44,260.5 -3881,8,E06000007,0,32.8,238.1,18.44,260.5 -4385,5,E06000007,1,52.2,103.98,26.1,113.61 -4497,7,E06000007,1,43.8,103.98,26.1,113.61 -4955,5,E06000007,2,59.66,126.48,26.1,138.27 -5093,7,E06000007,2,54.06,126.48,26.1,138.27 -5598,5,E06000007,3,66.17,155.41,26.1,169.36 -5773,7,E06000007,3,58.72,155.41,26.1,169.36 -6346,5,E06000007,4,72.71,216.52,26.1,236.89 -6397,7,E06000007,4,55.93,216.52,26.1,236.89 -6815,9,E06000007,1,52.2,129.97,26.1,142.02 -7141,9,E06000007,2,59.66,158.09,26.1,172.84 -7467,9,E06000007,3,66.17,194.27,26.1,211.69 -7793,9,E06000007,4,72.71,270.66,26.1,296.11 -8119,10,E06000007,0,55.36,297.64,18.44,325.63 -296,1,E07000222,1,53.13,99.69,26.1,125.4 -622,1,E07000222,2,58.72,117.9,26.1,138.27 -948,1,E07000222,3,69.9,133.98,26.1,161.86 -1274,1,E07000222,4,81.09,162.93,26.1,180.08 -1600,3,E07000222,1,46.6,88.96,26.1,98.62 -1926,3,E07000222,2,50.34,95.42,26.1,103.98 -2252,3,E07000222,3,60.59,105.05,26.1,121.11 -2578,3,E07000222,4,68.97,128.63,26.1,128.63 -2904,2,E07000222,0,38.95,242.82,18.44,378.37 -3230,4,E07000222,0,46.12,106.09,18.44,106.09 -3556,6,E07000222,0,38.95,374.83,18.44,409.03 -3882,8,E07000222,0,46.12,374.83,18.44,409.03 -4306,5,E07000222,1,53.13,131.84,26.1,144.7 -4527,7,E07000222,1,46.6,131.84,26.1,144.7 -4916,5,E07000222,2,58.72,166.14,26.1,181.15 -5212,7,E07000222,2,50.34,166.14,26.1,181.15 -5547,5,E07000222,3,69.9,194.01,26.1,212.24 -5803,7,E07000222,3,60.59,194.01,26.1,212.24 -6199,5,E07000222,4,81.09,340.85,26.1,371.94 -6464,7,E07000222,4,68.97,340.85,26.1,371.94 -6816,9,E07000222,1,53.13,164.8,26.1,180.87 -7142,9,E07000222,2,58.72,207.68,26.1,226.44 -7468,9,E07000222,3,69.9,242.51,26.1,265.29 -7794,9,E07000222,4,81.09,426.06,26.1,464.91 -8120,10,E07000222,0,38.95,468.55,18.44,511.3 -297,1,E07000103,1,54.99,120.05,26.1,150.06 -623,1,E07000103,2,65.24,143.62,26.1,169.36 -949,1,E07000103,3,71.78,157.56,26.1,182.22 -1275,1,E07000103,4,82.02,172.58,26.1,180.08 -1601,3,E07000103,1,50.34,100.76,26.1,132.91 -1927,3,E07000103,2,58.72,118.97,26.1,133.98 -2253,3,E07000103,3,64.31,131.84,26.1,144.7 -2579,3,E07000103,4,71.78,150.06,26.1,160.78 -2905,2,E07000103,0,35.87,223.96,18.44,418.45 -3231,4,E07000103,0,55.36,134.38,18.44,314.73 -3557,6,E07000103,0,35.87,623.56,18.44,678.97 -3883,8,E07000103,0,55.36,623.56,18.44,678.97 -4161,5,E07000103,1,54.99,172.58,26.1,187.58 -4278,7,E07000103,1,50.34,172.58,26.1,187.58 -4742,5,E07000103,2,65.24,229.37,26.1,248.67 -5004,7,E07000103,2,58.72,229.37,26.1,248.67 -5461,5,E07000103,3,71.78,284.04,26.1,309.78 -5647,7,E07000103,3,64.31,284.04,26.1,309.78 -6171,5,E07000103,4,82.02,567.02,26.1,617.4 -6309,7,E07000103,4,71.78,567.02,26.1,617.4 -6817,9,E07000103,1,54.99,215.73,26.1,234.49 -7143,9,E07000103,2,65.24,286.72,26.1,310.84 -7469,9,E07000103,3,71.78,355.06,26.1,387.21 -7795,9,E07000103,4,82.02,708.78,26.1,771.75 -8121,10,E07000103,0,35.87,779.44,18.44,848.71 -299,1,E07000216,1,57.79,124.33,26.1,177.93 -625,1,E07000216,2,71.78,147.91,26.1,188.66 -951,1,E07000216,3,82.02,162.93,26.1,205.81 -1277,1,E07000216,4,90.42,180.08,26.1,224.01 -1603,3,E07000216,1,52.2,116.83,26.1,160.78 -1929,3,E07000216,2,63.38,130.77,26.1,146.84 -2255,3,E07000216,3,68.97,151.13,26.1,187.58 -2581,3,E07000216,4,73.64,186.51,26.1,196.15 -2907,2,E07000216,0,61.49,265.21,18.44,340.65 -3233,4,E07000216,0,48.18,193.32,18.44,202.73 -3559,6,E07000216,0,61.49,623.56,18.44,678.97 -3885,8,E07000216,0,48.18,623.56,18.44,678.97 -4040,5,E07000216,1,57.79,175.78,26.1,190.79 -4107,7,E07000216,1,52.2,175.78,26.1,190.79 -4655,5,E07000216,2,71.78,226.16,26.1,247.6 -4802,7,E07000216,2,63.38,226.16,26.1,247.6 -5307,5,E07000216,3,82.02,307.63,26.1,335.49 -5407,7,E07000216,3,68.97,307.63,26.1,335.49 -5992,5,E07000216,4,90.42,567.02,26.1,617.4 -6096,7,E07000216,4,73.64,567.02,26.1,617.4 -6819,9,E07000216,1,57.79,219.74,26.1,238.5 -7145,9,E07000216,2,71.78,282.71,26.1,309.5 -7471,9,E07000216,3,82.02,384.53,26.1,419.36 -7797,9,E07000216,4,90.42,708.78,26.1,771.75 -8123,10,E07000216,0,61.49,779.44,18.44,848.71 -300,1,E07000065,1,57.79,124.33,26.1,177.93 -626,1,E07000065,2,71.78,147.91,26.1,188.66 -952,1,E07000065,3,82.02,162.93,26.1,205.81 -1278,1,E07000065,4,90.42,180.08,26.1,224.01 -1604,3,E07000065,1,52.2,116.83,26.1,160.78 -1930,3,E07000065,2,63.38,130.77,26.1,146.84 -2256,3,E07000065,3,68.97,151.13,26.1,187.58 -2582,3,E07000065,4,73.64,186.51,26.1,196.15 -2908,2,E07000065,0,61.49,265.21,18.44,340.65 -3234,4,E07000065,0,48.18,193.32,18.44,202.73 -3560,6,E07000065,0,61.49,419.63,18.44,457.34 -3886,8,E07000065,0,48.18,419.63,18.44,457.34 -4041,5,E07000065,1,57.79,136.13,26.1,148.99 -4108,7,E07000065,1,52.2,136.13,26.1,148.99 -4656,5,E07000065,2,71.78,177.93,26.1,192.94 -4803,7,E07000065,2,63.38,177.93,26.1,192.94 -5308,5,E07000065,3,82.02,211.17,26.1,230.44 -5408,7,E07000065,3,68.97,211.17,26.1,230.44 -5993,5,E07000065,4,90.42,381.6,26.1,415.9 -6097,7,E07000065,4,73.64,381.6,26.1,415.9 -6820,9,E07000065,1,57.79,170.16,26.1,186.23 -7146,9,E07000065,2,71.78,222.43,26.1,241.18 -7472,9,E07000065,3,82.02,263.95,26.1,288.07 -7798,9,E07000065,4,90.42,476.99,26.1,519.86 -8124,10,E07000065,0,61.49,524.54,18.44,571.71 -302,1,E07000241,1,54.99,120.05,26.1,150.06 -628,1,E07000241,2,65.24,143.62,26.1,169.36 -954,1,E07000241,3,71.78,157.56,26.1,182.22 -1280,1,E07000241,4,82.02,172.58,26.1,180.08 -1606,3,E07000241,1,50.34,100.76,26.1,132.91 -1932,3,E07000241,2,58.72,118.97,26.1,133.98 -2258,3,E07000241,3,64.31,131.84,26.1,144.7 -2584,3,E07000241,4,71.78,150.06,26.1,160.78 -2910,2,E07000241,0,35.87,223.96,18.44,418.45 -3236,4,E07000241,0,55.36,134.38,18.44,314.73 -3562,6,E07000241,0,35.87,449.11,18.44,489.16 -3888,8,E07000241,0,55.36,449.11,18.44,489.16 -4163,5,E07000241,1,54.99,155.41,26.1,170.43 -4280,7,E07000241,1,50.34,155.41,26.1,170.43 -4744,5,E07000241,2,65.24,194.01,26.1,212.24 -5006,7,E07000241,2,58.72,194.01,26.1,212.24 -5463,5,E07000241,3,71.78,273.34,26.1,297.99 -5649,7,E07000241,3,64.31,273.34,26.1,297.99 -6173,5,E07000241,4,82.02,408.38,26.1,444.82 -6311,7,E07000241,4,71.78,408.38,26.1,444.82 -6822,9,E07000241,1,54.99,194.27,26.1,213.04 -7148,9,E07000241,2,65.24,242.51,26.1,265.29 -7474,9,E07000241,3,71.78,341.67,26.1,372.48 -7800,9,E07000241,4,82.02,510.49,26.1,556.05 -8126,10,E07000241,0,35.87,561.4,18.44,611.47 -303,1,E06000037,1,57.79,124.33,26.1,177.93 -629,1,E06000037,2,71.78,147.91,26.1,188.66 -955,1,E06000037,3,82.02,162.93,26.1,205.81 -1281,1,E06000037,4,90.42,180.08,26.1,224.01 -1607,3,E06000037,1,52.2,116.83,26.1,160.78 -1933,3,E06000037,2,63.38,130.77,26.1,146.84 -2259,3,E06000037,3,68.97,151.13,26.1,187.58 -2585,3,E06000037,4,73.64,186.51,26.1,196.15 -2911,2,E06000037,0,61.49,265.21,18.44,340.65 -3237,4,E06000037,0,48.18,193.32,18.44,202.73 -3563,6,E06000037,0,61.49,437.32,18.44,476.22 -3889,8,E06000037,0,48.18,437.32,18.44,476.22 -4042,5,E06000037,1,57.79,143.62,26.1,156.49 -4109,7,E06000037,1,52.2,143.62,26.1,156.49 -4657,5,E06000037,2,71.78,182.22,26.1,199.38 -4804,7,E06000037,2,63.38,182.22,26.1,199.38 -5309,5,E06000037,3,82.02,216.52,26.1,236.89 -5409,7,E06000037,3,68.97,216.52,26.1,236.89 -5994,5,E06000037,4,90.42,397.66,26.1,433.04 -6098,7,E06000037,4,73.64,397.66,26.1,433.04 -6823,9,E06000037,1,57.79,179.53,26.1,195.6 -7149,9,E06000037,2,71.78,227.8,26.1,249.22 -7475,9,E06000037,3,82.02,270.66,26.1,296.11 -7801,9,E06000037,4,90.42,497.09,26.1,541.3 -8127,10,E06000037,0,61.49,546.66,18.44,595.28 -304,1,E07000047,1,49.41,108.27,26.1,141.49 -630,1,E07000047,2,55.93,122.19,26.1,145.77 -956,1,E07000047,3,62.45,142.56,26.1,162.93 -1282,1,E07000047,4,71.78,159.7,26.1,196.15 -1608,3,E07000047,1,47.54,90.03,26.1,212.24 -1934,3,E07000047,2,54.99,101.83,26.1,112.54 -2260,3,E07000047,3,62.45,110.39,26.1,127.56 -2586,3,E07000047,4,74.57,131.84,26.1,131.84 -2912,2,E07000047,0,54.33,228.68,18.44,354.8 -3238,4,E07000047,0,54.33,114.33,18.44,140.27 -3564,6,E07000047,0,54.33,244,18.44,266.39 -3890,8,E07000047,0,54.33,244,18.44,266.39 -3945,7,E07000047,1,47.54,103.98,26.1,113.61 -4229,5,E07000047,1,49.41,103.98,26.1,113.61 -4865,5,E07000047,2,55.93,128.63,26.1,141.49 -5142,7,E07000047,2,54.99,128.63,26.1,141.49 -5496,5,E07000047,3,62.45,159.7,26.1,174.72 -5722,7,E07000047,3,62.45,159.7,26.1,174.72 -6034,5,E07000047,4,71.78,221.88,26.1,242.25 -6434,7,E07000047,4,74.57,221.88,26.1,242.25 -6824,9,E07000047,1,49.41,129.97,26.1,142.02 -7150,9,E07000047,2,55.93,160.78,26.1,176.86 -7476,9,E07000047,3,62.45,199.62,26.1,218.38 -7802,9,E07000047,4,71.78,277.34,26.1,302.81 -8128,10,E07000047,0,54.33,305,18.44,332.99 -306,1,E07000127,1,52.2,94.33,26.1,117.9 -632,1,E07000127,2,59.66,108.27,26.1,136.13 -958,1,E07000127,3,66.17,121.11,26.1,146.84 -1284,1,E07000127,4,72.71,135.06,26.1,160.78 -1610,3,E07000127,1,43.8,86.81,26.1,101.83 -1936,3,E07000127,2,54.06,95.42,26.1,114.68 -2262,3,E07000127,3,58.72,106.12,26.1,125.4 -2588,3,E07000127,4,55.93,120.05,26.1,135.06 -2914,2,E07000127,0,55.36,236.93,18.44,338.29 -3240,4,E07000127,0,32.8,464.43,18.44,592.92 -3566,6,E07000127,0,55.36,238.1,18.44,260.5 -3892,8,E07000127,0,32.8,238.1,18.44,260.5 -4386,5,E07000127,1,52.2,103.98,26.1,113.61 -4498,7,E07000127,1,43.8,103.98,26.1,113.61 -4956,5,E07000127,2,59.66,136.13,26.1,148.99 -5094,7,E07000127,2,54.06,136.13,26.1,148.99 -5599,5,E07000127,3,66.17,148.99,26.1,161.86 -5774,7,E07000127,3,58.72,148.99,26.1,161.86 -6347,5,E07000127,4,72.71,216.52,26.1,236.89 -6398,7,E07000127,4,55.93,216.52,26.1,236.89 -6826,9,E07000127,1,52.2,129.97,26.1,142.02 -7152,9,E07000127,2,59.66,170.16,26.1,186.23 -7478,9,E07000127,3,66.17,186.23,26.1,202.34 -7804,9,E07000127,4,72.71,270.66,26.1,296.11 -8130,10,E07000127,0,55.36,297.64,18.44,325.63 -307,1,E07000142,1,52.2,100.76,26.1,123.26 -633,1,E07000142,2,62.45,115.76,26.1,130.77 -959,1,E07000142,3,68.97,127.56,26.1,139.34 -1285,1,E07000142,4,76.43,159.7,26.1,168.29 -1611,3,E07000142,1,46.6,91.12,26.1,108.27 -1937,3,E07000142,2,53.13,97.54,26.1,109.33 -2263,3,E07000142,3,58.72,105.05,26.1,120.05 -2589,3,E07000142,4,64.31,123.26,26.1,123.26 -2915,2,E07000142,0,51.26,238.1,18.44,357.17 -3241,4,E07000142,0,49.2,113.15,18.44,122.59 -3567,6,E07000142,0,51.26,213.35,18.44,233.38 -3893,8,E07000142,0,49.2,213.35,18.44,233.38 -4350,5,E07000142,1,52.2,85.75,26.1,93.26 -4450,7,E07000142,1,46.6,85.75,26.1,93.26 -5046,5,E07000142,2,62.45,110.39,26.1,120.05 -5186,7,E07000142,2,53.13,110.39,26.1,120.05 -5689,5,E07000142,3,68.97,130.77,26.1,143.62 -5847,7,E07000142,3,58.72,130.77,26.1,143.62 -6264,5,E07000142,4,76.43,194.01,26.1,212.24 -6508,7,E07000142,4,64.31,194.01,26.1,212.24 -6827,9,E07000142,1,52.2,107.2,26.1,116.56 -7153,9,E07000142,2,62.45,138.01,26.1,150.06 -7479,9,E07000142,3,68.97,163.46,26.1,179.53 -7805,9,E07000142,4,76.43,242.51,26.1,265.29 -8131,10,E07000142,0,51.26,266.69,18.44,291.74 -308,1,E07000181,1,57.79,124.33,26.1,177.93 -634,1,E07000181,2,71.78,147.91,26.1,188.66 -960,1,E07000181,3,82.02,162.93,26.1,205.81 -1286,1,E07000181,4,90.42,180.08,26.1,224.01 -1612,3,E07000181,1,52.2,116.83,26.1,160.78 -1938,3,E07000181,2,63.38,130.77,26.1,146.84 -2264,3,E07000181,3,68.97,151.13,26.1,187.58 -2590,3,E07000181,4,73.64,186.51,26.1,196.15 -2916,2,E07000181,0,61.49,265.21,18.44,340.65 -3242,4,E07000181,0,48.18,193.32,18.44,202.73 -3568,6,E07000181,0,61.49,443.21,18.44,484.46 -3894,8,E07000181,0,48.18,443.21,18.44,484.46 -4043,5,E07000181,1,57.79,148.99,26.1,161.86 -4110,7,E07000181,1,52.2,148.99,26.1,161.86 -4658,5,E07000181,2,71.78,183.29,26.1,200.45 -4805,7,E07000181,2,63.38,183.29,26.1,200.45 -5310,5,E07000181,3,82.02,228.29,26.1,247.6 -5410,7,E07000181,3,68.97,228.29,26.1,247.6 -5995,5,E07000181,4,90.42,403.03,26.1,440.54 -6099,7,E07000181,4,73.64,403.03,26.1,440.54 -6828,9,E07000181,1,57.79,186.23,26.1,202.34 -7154,9,E07000181,2,71.78,229.13,26.1,250.54 -7480,9,E07000181,3,82.02,285.39,26.1,309.5 -7806,9,E07000181,4,90.42,503.79,26.1,550.68 -8132,10,E07000181,0,61.49,554.02,18.44,605.58 -254,1,E07000245,1,54.99,120.05,26.1,150.06 -580,1,E07000245,2,65.24,143.62,26.1,169.36 -906,1,E07000245,3,71.78,157.56,26.1,182.22 -1232,1,E07000245,4,82.02,172.58,26.1,180.08 -1558,3,E07000245,1,50.34,100.76,26.1,132.91 -1884,3,E07000245,2,58.72,118.97,26.1,133.98 -2210,3,E07000245,3,64.31,131.84,26.1,144.7 -2536,3,E07000245,4,71.78,150.06,26.1,160.78 -2862,2,E07000245,0,35.87,223.96,18.44,418.45 -3188,4,E07000245,0,55.36,134.38,18.44,314.73 -3514,6,E07000245,0,35.87,368.95,18.44,401.95 -3840,8,E07000245,0,55.36,368.95,18.44,401.95 -4154,5,E07000245,1,54.99,126.48,26.1,138.27 -4271,7,E07000245,1,50.34,126.48,26.1,138.27 -4735,5,E07000245,2,65.24,148.99,26.1,161.86 -4997,7,E07000245,2,58.72,148.99,26.1,161.86 -5454,5,E07000245,3,71.78,183.29,26.1,200.45 -5640,7,E07000245,3,64.31,183.29,26.1,200.45 -6164,5,E07000245,4,82.02,335.49,26.1,365.5 -6302,7,E07000245,4,71.78,335.49,26.1,365.5 -6774,9,E07000245,1,54.99,158.09,26.1,172.84 -7100,9,E07000245,2,65.24,186.23,26.1,202.34 -7426,9,E07000245,3,71.78,229.13,26.1,250.54 -7752,9,E07000245,4,82.02,419.36,26.1,456.88 -8078,10,E07000245,0,35.87,461.19,18.44,502.44 -310,1,E09000033,1,66.17,146.84,26.1,199.38 -636,1,E09000033,2,78.29,158.63,26.1,194.01 -962,1,E09000033,3,84.82,168.29,26.1,228.29 -1288,1,E09000033,4,102.51,188.66,26.1,254.03 -1614,3,E09000033,1,58.72,120.05,26.1,147.91 -1940,3,E09000033,2,64.31,140.42,26.1,176.86 -2266,3,E09000033,3,71.78,160.78,26.1,202.58 -2592,3,E09000033,4,83.89,262.61,26.1,263.68 -2918,2,E09000033,0,69.7,313.55,18.44,497.44 -3244,4,E09000033,0,59.45,367.77,18.44,398.42 -3570,6,E09000033,0,69.7,2503.67,18.44,2731.17 -3896,8,E09000033,0,59.45,2503.67,18.44,2731.17 -3982,5,E09000033,1,66.17,442.67,26.1,482.35 -4196,7,E09000033,1,58.72,442.67,26.1,482.35 -4597,5,E09000033,2,78.29,637.77,26.1,696.71 -4697,7,E09000033,2,64.31,637.77,26.1,696.71 -5249,5,E09000033,3,84.82,932.53,26.1,1017.2 -5349,7,E09000033,3,71.78,932.53,26.1,1017.2 -5901,7,E09000033,4,83.89,2276.66,26.1,2483.53 -5934,5,E09000033,4,102.51,2276.66,26.1,2483.53 -6830,9,E09000033,1,66.17,553.35,26.1,602.94 -7156,9,E09000033,2,78.29,797.22,26.1,870.9 -7482,9,E09000033,3,84.82,1165.67,26.1,1271.52 -7808,9,E09000033,4,102.51,2845.82,26.1,3104.42 -8134,10,E09000033,0,69.7,3129.61,18.44,3413.97 -312,1,E08000010,1,52.2,94.33,26.1,117.9 -638,1,E08000010,2,59.66,108.27,26.1,136.13 -964,1,E08000010,3,66.17,121.11,26.1,146.84 -1290,1,E08000010,4,72.71,135.06,26.1,160.78 -1616,3,E08000010,1,43.8,86.81,26.1,101.83 -1942,3,E08000010,2,54.06,95.42,26.1,114.68 -2268,3,E08000010,3,58.72,106.12,26.1,125.4 -2594,3,E08000010,4,55.93,120.05,26.1,135.06 -2920,2,E08000010,0,55.36,236.93,18.44,338.29 -3246,4,E08000010,0,32.8,464.43,18.44,592.92 -3572,6,E08000010,0,55.36,201.56,18.44,220.42 -3898,8,E08000010,0,32.8,201.56,18.44,220.42 -4387,5,E08000010,1,52.2,93.26,26.1,100.76 -4499,7,E08000010,1,43.8,93.26,26.1,100.76 -4957,5,E08000010,2,59.66,110.39,26.1,120.05 -5095,7,E08000010,2,54.06,110.39,26.1,120.05 -5600,5,E08000010,3,66.17,131.84,26.1,144.7 -5775,7,E08000010,3,58.72,131.84,26.1,144.7 -6348,5,E08000010,4,72.71,183.29,26.1,200.45 -6399,7,E08000010,4,55.93,183.29,26.1,200.45 -6832,9,E08000010,1,52.2,116.56,26.1,125.95 -7158,9,E08000010,2,59.66,138.01,26.1,150.06 -7484,9,E08000010,3,66.17,164.8,26.1,180.87 -7810,9,E08000010,4,72.71,229.13,26.1,250.54 -8136,10,E08000010,0,55.36,251.95,18.44,275.54 -313,1,E06000054,1,49.41,108.27,26.1,141.49 -639,1,E06000054,2,55.93,122.19,26.1,145.77 -965,1,E06000054,3,62.45,142.56,26.1,162.93 -1291,1,E06000054,4,71.78,159.7,26.1,196.15 -1617,3,E06000054,1,47.54,90.03,26.1,212.24 -1943,3,E06000054,2,54.99,101.83,26.1,112.54 -2269,3,E06000054,3,62.45,110.39,26.1,127.56 -2595,3,E06000054,4,74.57,131.84,26.1,131.84 -2921,2,E06000054,0,54.33,228.68,18.44,354.8 -3247,4,E06000054,0,54.33,114.33,18.44,140.27 -3573,6,E06000054,0,54.33,325.34,18.44,354.8 -3899,8,E06000054,0,54.33,325.34,18.44,354.8 -3949,7,E06000054,1,47.54,126.48,26.1,138.27 -4233,5,E06000054,1,49.41,126.48,26.1,138.27 -4869,5,E06000054,2,55.93,156.49,26.1,171.5 -5146,7,E06000054,2,54.99,156.49,26.1,171.5 -5500,5,E06000054,3,62.45,194.01,26.1,212.24 -5726,7,E06000054,3,62.45,194.01,26.1,212.24 -6038,5,E06000054,4,71.78,295.83,26.1,322.64 -6438,7,E06000054,4,74.57,295.83,26.1,322.64 -6833,9,E06000054,1,49.41,158.09,26.1,172.84 -7159,9,E06000054,2,55.93,195.6,26.1,214.37 -7485,9,E06000054,3,62.45,242.51,26.1,265.29 -7811,9,E06000054,4,71.78,369.81,26.1,403.3 -8137,10,E06000054,0,54.33,406.66,18.44,443.51 -314,1,E07000094,1,57.79,124.33,26.1,177.93 -640,1,E07000094,2,71.78,147.91,26.1,188.66 -966,1,E07000094,3,82.02,162.93,26.1,205.81 -1292,1,E07000094,4,90.42,180.08,26.1,224.01 -1618,3,E07000094,1,52.2,116.83,26.1,160.78 -1944,3,E07000094,2,63.38,130.77,26.1,146.84 -2270,3,E07000094,3,68.97,151.13,26.1,187.58 -2596,3,E07000094,4,73.64,186.51,26.1,196.15 -2922,2,E07000094,0,61.49,265.21,18.44,340.65 -3248,4,E07000094,0,48.18,193.32,18.44,202.73 -3574,6,E07000094,0,61.49,467.95,18.44,510.39 -3900,8,E07000094,0,48.18,467.95,18.44,510.39 -4044,5,E07000094,1,57.79,172.58,26.1,187.58 -4111,7,E07000094,1,52.2,172.58,26.1,187.58 -4659,5,E07000094,2,71.78,216.52,26.1,236.89 -4806,7,E07000094,2,63.38,216.52,26.1,236.89 -5311,5,E07000094,3,82.02,284.04,26.1,309.78 -5411,7,E07000094,3,68.97,284.04,26.1,309.78 -5996,5,E07000094,4,90.42,425.54,26.1,464.12 -6100,7,E07000094,4,73.64,425.54,26.1,464.12 -6834,9,E07000094,1,57.79,215.73,26.1,234.49 -7160,9,E07000094,2,71.78,270.66,26.1,296.11 -7486,9,E07000094,3,82.02,355.06,26.1,387.21 -7812,9,E07000094,4,90.42,531.92,26.1,580.15 -8138,10,E07000094,0,61.49,584.95,18.44,638 -315,1,E06000040,1,57.79,124.33,26.1,177.93 -641,1,E06000040,2,71.78,147.91,26.1,188.66 -967,1,E06000040,3,82.02,162.93,26.1,205.81 -1293,1,E06000040,4,90.42,180.08,26.1,224.01 -1619,3,E06000040,1,52.2,116.83,26.1,160.78 -1945,3,E06000040,2,63.38,130.77,26.1,146.84 -2271,3,E06000040,3,68.97,151.13,26.1,187.58 -2597,3,E06000040,4,73.64,186.51,26.1,196.15 -2923,2,E06000040,0,61.49,265.21,18.44,340.65 -3249,4,E06000040,0,48.18,193.32,18.44,202.73 -3575,6,E06000040,0,61.49,847.54,18.44,924.15 -3901,8,E06000040,0,48.18,847.54,18.44,924.15 -4045,5,E06000040,1,57.79,200.45,26.1,217.59 -4112,7,E06000040,1,52.2,200.45,26.1,217.59 -4660,5,E06000040,2,71.78,284.04,26.1,309.78 -4807,7,E06000040,2,63.38,284.04,26.1,309.78 -5312,5,E06000040,3,82.02,346.22,26.1,378.38 -5412,7,E06000040,3,68.97,346.22,26.1,378.38 -5997,5,E06000040,4,90.42,770.67,26.1,840.36 -6101,7,E06000040,4,73.64,770.67,26.1,840.36 -6835,9,E06000040,1,57.79,250.54,26.1,271.98 -7161,9,E06000040,2,71.78,355.06,26.1,387.21 -7487,9,E06000040,3,82.02,432.75,26.1,472.98 -7813,9,E06000040,4,90.42,963.35,26.1,1050.45 -8139,10,E06000040,0,61.49,1059.42,18.44,1155.18 -316,1,E08000015,1,52.2,94.33,26.1,117.9 -642,1,E08000015,2,59.66,108.27,26.1,136.13 -968,1,E08000015,3,66.17,121.11,26.1,146.84 -1294,1,E08000015,4,72.71,135.06,26.1,160.78 -1620,3,E08000015,1,43.8,86.81,26.1,101.83 -1946,3,E08000015,2,54.06,95.42,26.1,114.68 -2272,3,E08000015,3,58.72,106.12,26.1,125.4 -2598,3,E08000015,4,55.93,120.05,26.1,135.06 -2924,2,E08000015,0,55.36,236.93,18.44,338.29 -3250,4,E08000015,0,32.8,464.43,18.44,592.92 -3576,6,E08000015,0,55.36,213.35,18.44,233.38 -3902,8,E08000015,0,32.8,213.35,18.44,233.38 -4388,5,E08000015,1,52.2,103.98,26.1,113.61 -4500,7,E08000015,1,43.8,103.98,26.1,113.61 -4958,5,E08000015,2,59.66,126.48,26.1,138.27 -5096,7,E08000015,2,54.06,126.48,26.1,138.27 -5601,5,E08000015,3,66.17,148.99,26.1,161.86 -5776,7,E08000015,3,58.72,148.99,26.1,161.86 -6349,5,E08000015,4,72.71,194.01,26.1,212.24 -6400,7,E08000015,4,55.93,194.01,26.1,212.24 -6836,9,E08000015,1,52.2,129.97,26.1,142.02 -7162,9,E08000015,2,59.66,158.09,26.1,172.84 -7488,9,E08000015,3,66.17,186.23,26.1,202.34 -7814,9,E08000015,4,72.71,242.51,26.1,265.29 -8140,10,E08000015,0,55.36,266.69,18.44,291.74 -317,1,E07000217,1,57.79,124.33,26.1,177.93 -643,1,E07000217,2,71.78,147.91,26.1,188.66 -969,1,E07000217,3,82.02,162.93,26.1,205.81 -1295,1,E07000217,4,90.42,180.08,26.1,224.01 -1621,3,E07000217,1,52.2,116.83,26.1,160.78 -1947,3,E07000217,2,63.38,130.77,26.1,146.84 -2273,3,E07000217,3,68.97,151.13,26.1,187.58 -2599,3,E07000217,4,73.64,186.51,26.1,196.15 -2925,2,E07000217,0,61.49,265.21,18.44,340.65 -3251,4,E07000217,0,48.18,193.32,18.44,202.73 -3577,6,E07000217,0,61.49,748.51,18.44,815.71 -3903,8,E07000217,0,48.18,748.51,18.44,815.71 -4046,5,E07000217,1,57.79,177.93,26.1,192.94 -4113,7,E07000217,1,52.2,177.93,26.1,192.94 -4661,5,E07000217,2,71.78,250.82,26.1,273.34 -4808,7,E07000217,2,63.38,250.82,26.1,273.34 -5313,5,E07000217,3,82.02,302.28,26.1,329.06 -5413,7,E07000217,3,68.97,302.28,26.1,329.06 -5998,5,E07000217,4,90.42,680.64,26.1,741.74 -6102,7,E07000217,4,73.64,680.64,26.1,741.74 -6837,9,E07000217,1,57.79,222.43,26.1,241.18 -7163,9,E07000217,2,71.78,313.51,26.1,341.67 -7489,9,E07000217,3,82.02,377.83,26.1,411.33 -7815,9,E07000217,4,90.42,850.81,26.1,927.17 -8141,10,E07000217,0,61.49,935.63,18.44,1019.62 -318,1,E06000041,1,57.79,124.33,26.1,177.93 -644,1,E06000041,2,71.78,147.91,26.1,188.66 -970,1,E06000041,3,82.02,162.93,26.1,205.81 -1296,1,E06000041,4,90.42,180.08,26.1,224.01 -1622,3,E06000041,1,52.2,116.83,26.1,160.78 -1948,3,E06000041,2,63.38,130.77,26.1,146.84 -2274,3,E06000041,3,68.97,151.13,26.1,187.58 -2600,3,E06000041,4,73.64,186.51,26.1,196.15 -2926,2,E06000041,0,61.49,265.21,18.44,340.65 -3252,4,E06000041,0,48.18,193.32,18.44,202.73 -3578,6,E06000041,0,61.49,473.86,18.44,517.47 -3904,8,E06000041,0,48.18,473.86,18.44,517.47 -4047,5,E06000041,1,57.79,166.14,26.1,181.15 -4114,7,E06000041,1,52.2,166.14,26.1,181.15 -4662,5,E06000041,2,71.78,207.96,26.1,226.16 -4809,7,E06000041,2,63.38,207.96,26.1,226.16 -5314,5,E06000041,3,82.02,272.26,26.1,296.91 -5414,7,E06000041,3,68.97,272.26,26.1,296.91 -5999,5,E06000041,4,90.42,430.9,26.1,470.55 -6103,7,E06000041,4,73.64,430.9,26.1,470.55 -6838,9,E06000041,1,57.79,207.68,26.1,226.44 -7164,9,E06000041,2,71.78,259.93,26.1,282.71 -7490,9,E06000041,3,82.02,340.33,26.1,371.13 -7816,9,E06000041,4,90.42,538.61,26.1,588.19 -8142,10,E06000041,0,61.49,592.32,18.44,646.84 -319,1,E08000031,1,53.13,99.69,26.1,125.4 -645,1,E08000031,2,58.72,117.9,26.1,138.27 -971,1,E08000031,3,69.9,133.98,26.1,161.86 -1297,1,E08000031,4,81.09,162.93,26.1,180.08 -1623,3,E08000031,1,46.6,88.96,26.1,98.62 -1949,3,E08000031,2,50.34,95.42,26.1,103.98 -2275,3,E08000031,3,60.59,105.05,26.1,121.11 -2601,3,E08000031,4,68.97,128.63,26.1,128.63 -2927,2,E08000031,0,38.95,242.82,18.44,378.37 -3253,4,E08000031,0,46.12,106.09,18.44,106.09 -3579,6,E08000031,0,38.95,189.79,18.44,206.28 -3905,8,E08000031,0,46.12,189.79,18.44,206.28 -4307,5,E08000031,1,53.13,98.62,26.1,108.27 -4528,7,E08000031,1,46.6,98.62,26.1,108.27 -4917,5,E08000031,2,58.72,121.11,26.1,131.84 -5213,7,E08000031,2,50.34,121.11,26.1,131.84 -5548,5,E08000031,3,69.9,136.13,26.1,148.99 -5804,7,E08000031,3,60.59,136.13,26.1,148.99 -6200,5,E08000031,4,81.09,172.58,26.1,187.58 -6465,7,E08000031,4,68.97,172.58,26.1,187.58 -6839,9,E08000031,1,53.13,123.26,26.1,135.33 -7165,9,E08000031,2,58.72,151.41,26.1,164.8 -7491,9,E08000031,3,69.9,170.16,26.1,186.23 -7817,9,E08000031,4,81.09,215.73,26.1,234.49 -8143,10,E08000031,0,38.95,237.24,18.44,257.84 -320,1,E07000237,1,53.13,99.69,26.1,125.4 -646,1,E07000237,2,58.72,117.9,26.1,138.27 -972,1,E07000237,3,69.9,133.98,26.1,161.86 -1298,1,E07000237,4,81.09,162.93,26.1,180.08 -1624,3,E07000237,1,46.6,88.96,26.1,98.62 -1950,3,E07000237,2,50.34,95.42,26.1,103.98 -2276,3,E07000237,3,60.59,105.05,26.1,121.11 -2602,3,E07000237,4,68.97,128.63,26.1,128.63 -2928,2,E07000237,0,38.95,242.82,18.44,378.37 -3254,4,E07000237,0,46.12,106.09,18.44,106.09 -3580,6,E07000237,0,38.95,238.1,18.44,260.5 -3906,8,E07000237,0,46.12,238.1,18.44,260.5 -4308,5,E07000237,1,53.13,115.76,26.1,125.4 -4529,7,E07000237,1,46.6,115.76,26.1,125.4 -4918,5,E07000237,2,58.72,143.62,26.1,156.49 -5214,7,E07000237,2,50.34,143.62,26.1,156.49 -5549,5,E07000237,3,69.9,166.14,26.1,181.15 -5805,7,E07000237,3,60.59,166.14,26.1,181.15 -6201,5,E07000237,4,81.09,216.52,26.1,236.89 -6466,7,E07000237,4,68.97,216.52,26.1,236.89 -6840,9,E07000237,1,53.13,144.7,26.1,156.77 -7166,9,E07000237,2,58.72,179.53,26.1,195.6 -7492,9,E07000237,3,69.9,207.68,26.1,226.44 -7818,9,E07000237,4,81.09,270.66,26.1,296.11 -8144,10,E07000237,0,38.95,297.64,18.44,325.63 -321,1,E07000229,1,57.79,124.33,26.1,177.93 -647,1,E07000229,2,71.78,147.91,26.1,188.66 -973,1,E07000229,3,82.02,162.93,26.1,205.81 -1299,1,E07000229,4,90.42,180.08,26.1,224.01 -1625,3,E07000229,1,52.2,116.83,26.1,160.78 -1951,3,E07000229,2,63.38,130.77,26.1,146.84 -2277,3,E07000229,3,68.97,151.13,26.1,187.58 -2603,3,E07000229,4,73.64,186.51,26.1,196.15 -2929,2,E07000229,0,61.49,265.21,18.44,340.65 -3255,4,E07000229,0,48.18,193.32,18.44,202.73 -3581,6,E07000229,0,61.49,322.99,18.44,352.44 -3907,8,E07000229,0,48.18,322.99,18.44,352.44 -4048,5,E07000229,1,57.79,131.84,26.1,144.7 -4115,7,E07000229,1,52.2,131.84,26.1,144.7 -4663,5,E07000229,2,71.78,172.58,26.1,187.58 -4810,7,E07000229,2,63.38,172.58,26.1,187.58 -5315,5,E07000229,3,82.02,216.52,26.1,236.89 -5415,7,E07000229,3,68.97,216.52,26.1,236.89 -6000,5,E07000229,4,90.42,294.76,26.1,320.49 -6104,7,E07000229,4,73.64,294.76,26.1,320.49 -6841,9,E07000229,1,57.79,164.8,26.1,180.87 -7167,9,E07000229,2,71.78,215.73,26.1,234.49 -7493,9,E07000229,3,82.02,270.66,26.1,296.11 -7819,9,E07000229,4,90.42,368.46,26.1,400.6 -8145,10,E07000229,0,61.49,403.75,18.44,440.57 -322,1,E07000238,1,53.13,99.69,26.1,125.4 -648,1,E07000238,2,58.72,117.9,26.1,138.27 -974,1,E07000238,3,69.9,133.98,26.1,161.86 -1300,1,E07000238,4,81.09,162.93,26.1,180.08 -1626,3,E07000238,1,46.6,88.96,26.1,98.62 -1952,3,E07000238,2,50.34,95.42,26.1,103.98 -2278,3,E07000238,3,60.59,105.05,26.1,121.11 -2604,3,E07000238,4,68.97,128.63,26.1,128.63 -2930,2,E07000238,0,38.95,242.82,18.44,378.37 -3256,4,E07000238,0,46.12,106.09,18.44,106.09 -3582,6,E07000238,0,38.95,275.83,18.44,300.58 -3908,8,E07000238,0,46.12,275.83,18.44,300.58 -4309,5,E07000238,1,53.13,114.68,26.1,124.33 -4530,7,E07000238,1,46.6,114.68,26.1,124.33 -4919,5,E07000238,2,58.72,139.34,26.1,152.21 -5215,7,E07000238,2,50.34,139.34,26.1,152.21 -5550,5,E07000238,3,69.9,172.58,26.1,187.58 -5806,7,E07000238,3,60.59,172.58,26.1,187.58 -6202,5,E07000238,4,81.09,250.82,26.1,273.34 -6467,7,E07000238,4,68.97,250.82,26.1,273.34 -6842,9,E07000238,1,53.13,143.37,26.1,155.41 -7168,9,E07000238,2,58.72,174.17,26.1,190.26 -7494,9,E07000238,3,69.9,215.73,26.1,234.49 -7820,9,E07000238,4,81.09,313.51,26.1,341.67 -8146,10,E07000238,0,38.95,344.81,18.44,375.73 -324,1,E07000128,1,52.2,94.33,26.1,117.9 -650,1,E07000128,2,59.66,108.27,26.1,136.13 -976,1,E07000128,3,66.17,121.11,26.1,146.84 -1302,1,E07000128,4,72.71,135.06,26.1,160.78 -1628,3,E07000128,1,43.8,86.81,26.1,101.83 -1954,3,E07000128,2,54.06,95.42,26.1,114.68 -2280,3,E07000128,3,58.72,106.12,26.1,125.4 -2606,3,E07000128,4,55.93,120.05,26.1,135.06 -2932,2,E07000128,0,55.36,236.93,18.44,338.29 -3258,4,E07000128,0,32.8,464.43,18.44,592.92 -3584,6,E07000128,0,55.36,213.35,18.44,233.38 -3910,8,E07000128,0,32.8,213.35,18.44,233.38 -4389,5,E07000128,1,52.2,103.98,26.1,114.68 -4501,7,E07000128,1,43.8,103.98,26.1,114.68 -4959,5,E07000128,2,59.66,133.98,26.1,146.84 -5097,7,E07000128,2,54.06,133.98,26.1,146.84 -5602,5,E07000128,3,66.17,148.99,26.1,161.86 -5777,7,E07000128,3,58.72,148.99,26.1,161.86 -6350,5,E07000128,4,72.71,194.01,26.1,212.24 -6401,7,E07000128,4,55.93,194.01,26.1,212.24 -6844,9,E07000128,1,52.2,129.97,26.1,143.37 -7170,9,E07000128,2,59.66,167.48,26.1,183.56 -7496,9,E07000128,3,66.17,186.23,26.1,202.34 -7822,9,E07000128,4,72.71,242.51,26.1,265.29 -8148,10,E07000128,0,55.36,266.69,18.44,291.74 -325,1,E07000239,1,53.13,99.69,26.1,125.4 -651,1,E07000239,2,58.72,117.9,26.1,138.27 -977,1,E07000239,3,69.9,133.98,26.1,161.86 -1303,1,E07000239,4,81.09,162.93,26.1,180.08 -1629,3,E07000239,1,46.6,88.96,26.1,98.62 -1955,3,E07000239,2,50.34,95.42,26.1,103.98 -2281,3,E07000239,3,60.59,105.05,26.1,121.11 -2607,3,E07000239,4,68.97,128.63,26.1,128.63 -2933,2,E07000239,0,38.95,242.82,18.44,378.37 -3259,4,E07000239,0,46.12,106.09,18.44,106.09 -3585,6,E07000239,0,38.95,213.35,18.44,233.38 -3911,8,E07000239,0,46.12,213.35,18.44,233.38 -4310,5,E07000239,1,53.13,98.62,26.1,108.27 -4531,7,E07000239,1,46.6,98.62,26.1,108.27 -4920,5,E07000239,2,58.72,126.48,26.1,138.27 -5216,7,E07000239,2,50.34,126.48,26.1,138.27 -5551,5,E07000239,3,69.9,143.62,26.1,156.49 -5807,7,E07000239,3,60.59,143.62,26.1,156.49 -6203,5,E07000239,4,81.09,194.01,26.1,212.24 -6468,7,E07000239,4,68.97,194.01,26.1,212.24 -6845,9,E07000239,1,53.13,123.26,26.1,135.33 -7171,9,E07000239,2,58.72,158.09,26.1,172.84 -7497,9,E07000239,3,69.9,179.53,26.1,195.6 -7823,9,E07000239,4,81.09,242.51,26.1,265.29 -8149,10,E07000239,0,38.95,266.69,18.44,291.74 -326,1,E06000014,1,51.27,92.19,26.1,114.68 -652,1,E06000014,2,58.72,109.33,26.1,141.49 -978,1,E06000014,3,63.38,121.11,26.1,162.93 -1304,1,E06000014,4,73.64,145.77,26.1,180.08 -1630,3,E06000014,1,46.6,82.54,26.1,93.26 -1956,3,E06000014,2,53.13,113.61,26.1,145.77 -2282,3,E06000014,3,56.86,105.05,26.1,114.68 -2608,3,E06000014,4,64.31,122.19,26.1,176.86 -2934,2,E06000014,0,52.28,232.2,18.44,319.44 -3260,4,E06000014,0,51.26,159.13,18.44,188.6 -3586,6,E06000014,0,52.28,390.17,18.44,425.53 -3912,8,E06000014,0,51.26,390.17,18.44,425.53 -4410,5,E06000014,1,51.27,136.13,26.1,148.99 -4564,7,E06000014,1,46.6,136.13,26.1,148.99 -4832,7,E06000014,2,53.13,158.63,26.1,174.72 -4890,5,E06000014,2,58.72,158.63,26.1,174.72 -5521,5,E06000014,3,63.38,204.74,26.1,222.95 -5868,7,E06000014,3,56.86,204.74,26.1,222.95 -6126,5,E06000014,4,73.64,354.8,26.1,386.95 -6224,7,E06000014,4,64.31,354.8,26.1,386.95 -6846,9,E06000014,1,51.27,170.16,26.1,186.23 -7172,9,E06000014,2,53.13,198.3,26.1,218.38 -7498,9,E06000014,3,63.38,255.92,26.1,278.69 -7824,9,E06000014,4,73.64,443.49,26.1,483.69 -8150,10,E06000014,0,52.28,487.72,18.44,531.91 +1,1,E07000223,1,57.79,124.33,26.1,622.76 +327,1,E07000223,2,71.78,147.91,26.1,660.31 +653,1,E07000223,3,82.02,162.93,26.1,720.34 +979,1,E07000223,4,90.42,180.08,26.1,784.04 +1305,3,E07000223,1,52.2,116.83,26.1,562.73 +1631,3,E07000223,2,63.38,130.77,26.1,513.94 +1957,3,E07000223,3,68.97,151.13,26.1,656.53 +2283,3,E07000223,4,73.64,186.51,26.1,686.53 +2609,2,E07000223,0,61.49,265.21,18.44,1192.28 +2935,4,E07000223,0,48.18,193.32,18.44,709.56 +3261,6,E07000223,0,61.49,486.82,18.44,1856.54 +3587,8,E07000223,0,48.18,486.82,18.44,1856.54 +3983,5,E07000223,1,57.79,131.84,26.1,506.45 +4050,7,E07000223,1,52.2,131.84,26.1,506.45 +4598,5,E07000223,2,71.78,183.29,26.1,701.58 +4745,7,E07000223,2,63.38,183.29,26.1,701.58 +5250,5,E07000223,3,82.02,228.29,26.1,870.35 +5350,7,E07000223,3,68.97,228.29,26.1,870.35 +5935,5,E07000223,4,90.42,430.9,26.1,1646.93 +6039,7,E07000223,4,73.64,430.9,26.1,1646.93 +6521,9,E07000223,1,57.79,164.8,26.1,633.05 +6847,9,E07000223,2,71.78,229.13,26.1,876.89 +7173,9,E07000223,3,82.02,285.39,26.1,1087.94 +7499,9,E07000223,4,90.42,538.61,26.1,2058.67 +7825,10,E07000223,0,61.49,608.53,18.44,2320.68 +2,1,E07000026,1,52.2,94.33,26.1,412.65 +328,1,E07000026,2,59.66,108.27,26.1,476.46 +654,1,E07000026,3,66.17,121.11,26.1,513.94 +980,1,E07000026,4,72.71,135.06,26.1,562.73 +1306,3,E07000026,1,43.8,86.81,26.1,356.41 +1632,3,E07000026,2,54.06,95.42,26.1,401.38 +1958,3,E07000026,3,58.72,106.12,26.1,438.9 +2284,3,E07000026,4,55.93,120.05,26.1,472.71 +2610,2,E07000026,0,55.36,236.93,18.44,1184.02 +2936,4,E07000026,0,32.8,464.43,18.44,2075.22 +3262,6,E07000026,0,55.36,207.45,18.44,792.12 +3588,8,E07000026,0,32.8,207.45,18.44,792.12 +4351,5,E07000026,1,52.2,87.89,26.1,333.97 +4463,7,E07000026,1,43.8,87.89,26.1,333.97 +4921,5,E07000026,2,59.66,110.39,26.1,420.18 +5059,7,E07000026,2,54.06,110.39,26.1,420.18 +5564,5,E07000026,3,66.17,136.13,26.1,521.47 +5739,7,E07000026,3,58.72,136.13,26.1,521.47 +6312,5,E07000026,4,72.71,188.66,26.1,720.34 +6363,7,E07000026,4,55.93,188.66,26.1,720.34 +6522,9,E07000026,1,52.2,109.88,26.1,417.38 +6848,9,E07000026,2,59.66,138.01,26.1,525.21 +7174,9,E07000026,3,66.17,170.16,26.1,651.81 +7500,9,E07000026,4,72.71,235.82,26.1,900.41 +7826,10,E07000026,0,55.36,259.31,18.44,990.19 +3,1,E07000032,1,52.2,100.76,26.1,431.41 +329,1,E07000032,2,62.45,115.76,26.1,457.7 +655,1,E07000032,3,68.97,127.56,26.1,487.69 +981,1,E07000032,4,76.43,159.7,26.1,589.02 +1307,3,E07000032,1,46.6,91.12,26.1,378.95 +1633,3,E07000032,2,53.13,97.54,26.1,382.66 +1959,3,E07000032,3,58.72,105.05,26.1,420.18 +2285,3,E07000032,4,64.31,123.26,26.1,431.41 +2611,2,E07000032,0,51.26,238.1,18.44,1250.1 +2937,4,E07000032,0,49.2,113.15,18.44,429.07 +3263,6,E07000032,0,51.26,207.45,18.44,792.12 +3589,8,E07000032,0,49.2,207.45,18.44,792.12 +4311,5,E07000032,1,52.2,97.54,26.1,371.42 +4411,7,E07000032,1,46.6,97.54,26.1,371.42 +5007,5,E07000032,2,62.45,114.68,26.1,435.16 +5147,7,E07000032,2,53.13,114.68,26.1,435.16 +5650,5,E07000032,3,68.97,136.13,26.1,521.47 +5808,7,E07000032,3,58.72,136.13,26.1,521.47 +6225,5,E07000032,4,76.43,188.66,26.1,720.34 +6469,7,E07000032,4,64.31,188.66,26.1,720.34 +6523,9,E07000032,1,52.2,121.95,26.1,464.28 +6849,9,E07000032,2,62.45,143.37,26.1,543.94 +7175,9,E07000032,3,68.97,170.16,26.1,651.81 +7501,9,E07000032,4,76.43,235.82,26.1,900.41 +7827,10,E07000032,0,51.26,259.31,18.44,990.19 +4,1,E07000224,1,57.79,124.33,26.1,622.76 +330,1,E07000224,2,71.78,147.91,26.1,660.31 +656,1,E07000224,3,82.02,162.93,26.1,720.34 +982,1,E07000224,4,90.42,180.08,26.1,784.04 +1308,3,E07000224,1,52.2,116.83,26.1,562.73 +1634,3,E07000224,2,63.38,130.77,26.1,513.94 +1960,3,E07000224,3,68.97,151.13,26.1,656.53 +2286,3,E07000224,4,73.64,186.51,26.1,686.53 +2612,2,E07000224,0,61.49,265.21,18.44,1192.28 +2938,4,E07000224,0,48.18,193.32,18.44,709.56 +3264,6,E07000224,0,61.49,374.83,18.44,1431.61 +3590,8,E07000224,0,48.18,374.83,18.44,1431.61 +3984,5,E07000224,1,57.79,126.48,26.1,483.95 +4051,7,E07000224,1,52.2,126.48,26.1,483.95 +4599,5,E07000224,2,71.78,172.58,26.1,656.53 +4746,7,E07000224,2,63.38,172.58,26.1,656.53 +5251,5,E07000224,3,82.02,211.17,26.1,806.54 +5351,7,E07000224,3,68.97,211.17,26.1,806.54 +5936,5,E07000224,4,90.42,340.85,26.1,1301.79 +6040,7,E07000224,4,73.64,340.85,26.1,1301.79 +6524,9,E07000224,1,57.79,158.09,26.1,604.94 +6850,9,E07000224,2,71.78,215.73,26.1,820.72 +7176,9,E07000224,3,82.02,263.95,26.1,1008.25 +7502,9,E07000224,4,90.42,426.06,26.1,1627.19 +7828,10,E07000224,0,61.49,468.55,18.44,1789.55 +5,1,E07000170,1,52.2,100.76,26.1,431.41 +331,1,E07000170,2,62.45,115.76,26.1,457.7 +657,1,E07000170,3,68.97,127.56,26.1,487.69 +983,1,E07000170,4,76.43,159.7,26.1,589.02 +1309,3,E07000170,1,46.6,91.12,26.1,378.95 +1635,3,E07000170,2,53.13,97.54,26.1,382.66 +1961,3,E07000170,3,58.72,105.05,26.1,420.18 +2287,3,E07000170,4,64.31,123.26,26.1,431.41 +2613,2,E07000170,0,51.26,238.1,18.44,1250.1 +2939,4,E07000170,0,49.2,113.15,18.44,429.07 +3265,6,E07000170,0,51.26,198.03,18.44,750.82 +3591,8,E07000170,0,49.2,198.03,18.44,750.82 +4312,5,E07000170,1,52.2,87.89,26.1,333.97 +4412,7,E07000170,1,46.6,87.89,26.1,333.97 +5008,5,E07000170,2,62.45,110.39,26.1,420.18 +5148,7,E07000170,2,53.13,110.39,26.1,420.18 +5651,5,E07000170,3,68.97,126.48,26.1,483.95 +5809,7,E07000170,3,58.72,126.48,26.1,483.95 +6226,5,E07000170,4,76.43,180.08,26.1,682.78 +6470,7,E07000170,4,64.31,180.08,26.1,682.78 +6525,9,E07000170,1,52.2,109.88,26.1,417.38 +6851,9,E07000170,2,62.45,138.01,26.1,525.21 +7177,9,E07000170,3,68.97,158.09,26.1,604.94 +7503,9,E07000170,4,76.43,225.1,26.1,853.48 +7829,10,E07000170,0,51.26,247.53,18.44,938.56 +6,1,E07000105,1,57.79,124.33,26.1,622.76 +332,1,E07000105,2,71.78,147.91,26.1,660.31 +658,1,E07000105,3,82.02,162.93,26.1,720.34 +984,1,E07000105,4,90.42,180.08,26.1,784.04 +1310,3,E07000105,1,52.2,116.83,26.1,562.73 +1636,3,E07000105,2,63.38,130.77,26.1,513.94 +1962,3,E07000105,3,68.97,151.13,26.1,656.53 +2288,3,E07000105,4,73.64,186.51,26.1,686.53 +2614,2,E07000105,0,61.49,265.21,18.44,1192.28 +2940,4,E07000105,0,48.18,193.32,18.44,709.56 +3266,6,E07000105,0,61.49,306.46,18.44,1171.7 +3592,8,E07000105,0,48.18,306.46,18.44,1171.7 +3985,5,E07000105,1,57.79,126.48,26.1,483.95 +4052,7,E07000105,1,52.2,126.48,26.1,483.95 +4600,5,E07000105,2,71.78,155.41,26.1,592.76 +4747,7,E07000105,2,63.38,155.41,26.1,592.76 +5252,5,E07000105,3,82.02,188.66,26.1,720.34 +5352,7,E07000105,3,68.97,188.66,26.1,720.34 +5937,5,E07000105,4,90.42,278.69,26.1,1065.44 +6041,7,E07000105,4,73.64,278.69,26.1,1065.44 +6526,9,E07000105,1,57.79,158.09,26.1,604.94 +6852,9,E07000105,2,71.78,194.27,26.1,740.92 +7178,9,E07000105,3,82.02,235.82,26.1,900.41 +7504,9,E07000105,4,90.42,348.37,26.1,1331.86 +7830,10,E07000105,0,61.49,383.1,18.44,1464.58 +8,1,E07000200,1,54.99,120.05,26.1,525.21 +334,1,E07000200,2,65.24,143.62,26.1,592.76 +660,1,E07000200,3,71.78,157.56,26.1,637.77 +986,1,E07000200,4,82.02,172.58,26.1,630.28 +1312,3,E07000200,1,50.34,100.76,26.1,465.19 +1638,3,E07000200,2,58.72,118.97,26.1,468.93 +1964,3,E07000200,3,64.31,131.84,26.1,506.45 +2290,3,E07000200,4,71.78,150.06,26.1,562.73 +2616,2,E07000200,0,35.87,223.96,18.44,1464.58 +2942,4,E07000200,0,55.36,134.38,18.44,1101.56 +3268,6,E07000200,0,35.87,351.26,18.44,1340.82 +3594,8,E07000200,0,55.36,351.26,18.44,1340.82 +4117,5,E07000200,1,54.99,115.76,26.1,438.9 +4234,7,E07000200,1,50.34,115.76,26.1,438.9 +4698,5,E07000200,2,65.24,143.62,26.1,547.72 +4960,7,E07000200,2,58.72,143.62,26.1,547.72 +5417,5,E07000200,3,71.78,172.58,26.1,656.53 +5603,7,E07000200,3,64.31,172.58,26.1,656.53 +6127,5,E07000200,4,82.02,319.42,26.1,1219.26 +6265,7,E07000200,4,71.78,319.42,26.1,1219.26 +6528,9,E07000200,1,54.99,144.7,26.1,548.7 +6854,9,E07000200,2,65.24,179.53,26.1,684.6 +7180,9,E07000200,3,71.78,215.73,26.1,820.72 +7506,9,E07000200,4,82.02,399.29,26.1,1524.08 +7832,10,E07000200,0,35.87,439.1,18.44,1676.01 +9,1,E09000002,1,66.17,146.84,26.1,697.83 +335,1,E09000002,2,78.29,158.63,26.1,679.04 +661,1,E09000002,3,84.82,168.29,26.1,799.02 +987,1,E09000002,4,102.51,188.66,26.1,889.11 +1313,3,E09000002,1,58.72,120.05,26.1,517.69 +1639,3,E09000002,2,64.31,140.42,26.1,619.01 +1965,3,E09000002,3,71.78,160.78,26.1,709.03 +2291,3,E09000002,4,83.89,262.61,26.1,922.88 +2617,2,E09000002,0,69.7,313.55,18.44,1741.04 +2943,4,E09000002,0,59.45,367.77,18.44,1394.47 +3269,6,E09000002,0,69.7,338.29,18.44,1291.33 +3595,8,E09000002,0,59.45,338.29,18.44,1291.33 +3950,5,E09000002,1,66.17,161.86,26.1,619.01 +4164,7,E09000002,1,58.72,161.86,26.1,619.01 +4565,5,E09000002,2,78.29,205.81,26.1,780.33 +4665,7,E09000002,2,64.31,205.81,26.1,780.33 +5217,5,E09000002,3,84.82,250.82,26.1,956.69 +5317,7,E09000002,3,71.78,250.82,26.1,956.69 +5869,7,E09000002,4,83.89,307.63,26.1,1174.22 +5902,5,E09000002,4,102.51,307.63,26.1,1174.22 +6529,9,E09000002,1,66.17,202.34,26.1,773.78 +6855,9,E09000002,2,78.29,257.26,26.1,975.42 +7181,9,E09000002,3,84.82,313.51,26.1,1195.85 +7507,9,E09000002,4,102.51,384.53,26.1,1467.76 +7833,10,E09000002,0,69.7,422.87,18.44,1614.17 +10,1,E09000003,1,66.17,146.84,26.1,697.83 +336,1,E09000003,2,78.29,158.63,26.1,679.04 +662,1,E09000003,3,84.82,168.29,26.1,799.02 +988,1,E09000003,4,102.51,188.66,26.1,889.11 +1314,3,E09000003,1,58.72,120.05,26.1,517.69 +1640,3,E09000003,2,64.31,140.42,26.1,619.01 +1966,3,E09000003,3,71.78,160.78,26.1,709.03 +2292,3,E09000003,4,83.89,262.61,26.1,922.88 +2618,2,E09000003,0,69.7,313.55,18.44,1741.04 +2944,4,E09000003,0,59.45,367.77,18.44,1394.47 +3270,6,E09000003,0,69.7,838.12,18.44,3205.65 +3596,8,E09000003,0,59.45,838.12,18.44,3205.65 +3951,5,E09000003,1,66.17,237.96,26.1,907.87 +4165,7,E09000003,1,58.72,237.96,26.1,907.87 +4566,5,E09000003,2,78.29,305.47,26.1,1166.69 +4666,7,E09000003,2,64.31,305.47,26.1,1166.69 +5218,5,E09000003,3,84.82,419.11,26.1,1598.17 +5318,7,E09000003,3,71.78,419.11,26.1,1598.17 +5870,7,E09000003,4,83.89,763.17,26.1,2914.98 +5903,5,E09000003,4,102.51,763.17,26.1,2914.98 +6530,9,E09000003,1,66.17,297.46,26.1,1134.81 +6856,9,E09000003,2,78.29,381.85,26.1,1458.45 +7182,9,E09000003,3,84.82,523.89,26.1,1997.66 +7508,9,E09000003,4,102.51,953.97,26.1,3643.75 +7834,10,E09000003,0,69.7,1047.62,18.44,4007.01 +11,1,E08000016,1,51.27,92.19,26.1,401.38 +337,1,E08000016,2,58.72,109.33,26.1,495.22 +663,1,E08000016,3,63.38,121.11,26.1,570.26 +989,1,E08000016,4,73.64,145.77,26.1,630.28 +1315,3,E08000016,1,46.6,82.54,26.1,326.41 +1641,3,E08000016,2,53.13,113.61,26.1,510.2 +1967,3,E08000016,3,56.86,105.05,26.1,401.38 +2293,3,E08000016,4,64.31,122.19,26.1,619.01 +2619,2,E08000016,0,52.28,232.2,18.44,1118.04 +2945,4,E08000016,0,51.26,159.13,18.44,660.1 +3271,6,E08000016,0,52.28,189.79,18.44,721.98 +3597,8,E08000016,0,51.26,189.79,18.44,721.98 +4390,5,E08000016,1,51.27,85.75,26.1,326.41 +4544,7,E08000016,1,46.6,85.75,26.1,326.41 +4812,7,E08000016,2,53.13,98.62,26.1,378.95 +4870,5,E08000016,2,58.72,98.62,26.1,378.95 +5501,5,E08000016,3,63.38,115.76,26.1,438.9 +5848,7,E08000016,3,56.86,115.76,26.1,438.9 +6106,5,E08000016,4,73.64,172.58,26.1,656.53 +6204,7,E08000016,4,64.31,172.58,26.1,656.53 +6531,9,E08000016,1,51.27,107.2,26.1,407.96 +6857,9,E08000016,2,53.13,123.26,26.1,473.66 +7183,9,E08000016,3,63.38,144.7,26.1,548.7 +7509,9,E08000016,4,73.64,215.73,26.1,820.72 +7835,10,E08000016,0,52.28,237.24,18.44,902.44 +12,1,E07000027,1,52.2,94.33,26.1,412.65 +338,1,E07000027,2,59.66,108.27,26.1,476.46 +664,1,E07000027,3,66.17,121.11,26.1,513.94 +990,1,E07000027,4,72.71,135.06,26.1,562.73 +1316,3,E07000027,1,43.8,86.81,26.1,356.41 +1642,3,E07000027,2,54.06,95.42,26.1,401.38 +1968,3,E07000027,3,58.72,106.12,26.1,438.9 +2294,3,E07000027,4,55.93,120.05,26.1,472.71 +2620,2,E07000027,0,55.36,236.93,18.44,1184.02 +2946,4,E07000027,0,32.8,464.43,18.44,2075.22 +3272,6,E07000027,0,55.36,189.79,18.44,721.98 +3598,8,E07000027,0,32.8,189.79,18.44,721.98 +4352,5,E07000027,1,52.2,87.89,26.1,333.97 +4464,7,E07000027,1,43.8,87.89,26.1,333.97 +4922,5,E07000027,2,59.66,103.98,26.1,397.64 +5060,7,E07000027,2,54.06,103.98,26.1,397.64 +5565,5,E07000027,3,66.17,136.13,26.1,521.47 +5740,7,E07000027,3,58.72,136.13,26.1,521.47 +6313,5,E07000027,4,72.71,172.58,26.1,656.53 +6364,7,E07000027,4,55.93,172.58,26.1,656.53 +6532,9,E07000027,1,52.2,109.88,26.1,417.38 +6858,9,E07000027,2,59.66,129.97,26.1,497.07 +7184,9,E07000027,3,66.17,170.16,26.1,651.81 +7510,9,E07000027,4,72.71,215.73,26.1,820.72 +7836,10,E07000027,0,55.36,237.24,18.44,902.44 +13,1,E07000066,1,54.99,120.05,26.1,525.21 +339,1,E07000066,2,65.24,143.62,26.1,592.76 +665,1,E07000066,3,71.78,157.56,26.1,637.77 +991,1,E07000066,4,82.02,172.58,26.1,630.28 +1317,3,E07000066,1,50.34,100.76,26.1,465.19 +1643,3,E07000066,2,58.72,118.97,26.1,468.93 +1969,3,E07000066,3,64.31,131.84,26.1,506.45 +2295,3,E07000066,4,71.78,150.06,26.1,562.73 +2621,2,E07000066,0,35.87,223.96,18.44,1464.58 +2947,4,E07000066,0,55.36,134.38,18.44,1101.56 +3273,6,E07000066,0,35.87,399.59,18.44,1526.49 +3599,8,E07000066,0,55.36,399.59,18.44,1526.49 +4118,5,E07000066,1,54.99,143.62,26.1,547.72 +4235,7,E07000066,1,50.34,143.62,26.1,547.72 +4699,5,E07000066,2,65.24,182.22,26.1,697.83 +4961,7,E07000066,2,58.72,182.22,26.1,697.83 +5418,5,E07000066,3,71.78,221.88,26.1,847.88 +5604,7,E07000066,3,64.31,221.88,26.1,847.88 +6128,5,E07000066,4,82.02,363.36,26.1,1388.07 +6266,7,E07000066,4,71.78,363.36,26.1,1388.07 +6533,9,E07000066,1,54.99,179.53,26.1,684.6 +6859,9,E07000066,2,65.24,227.8,26.1,872.27 +7185,9,E07000066,3,71.78,277.34,26.1,1059.84 +7511,9,E07000066,4,82.02,454.21,26.1,1735.13 +7837,10,E07000066,0,35.87,499.52,18.44,1908.13 +14,1,E07000084,1,57.79,124.33,26.1,622.76 +340,1,E07000084,2,71.78,147.91,26.1,660.31 +666,1,E07000084,3,82.02,162.93,26.1,720.34 +992,1,E07000084,4,90.42,180.08,26.1,784.04 +1318,3,E07000084,1,52.2,116.83,26.1,562.73 +1644,3,E07000084,2,63.38,130.77,26.1,513.94 +1970,3,E07000084,3,68.97,151.13,26.1,656.53 +2296,3,E07000084,4,73.64,186.51,26.1,686.53 +2622,2,E07000084,0,61.49,265.21,18.44,1192.28 +2948,4,E07000084,0,48.18,193.32,18.44,709.56 +3274,6,E07000084,0,61.49,374.83,18.44,1431.61 +3600,8,E07000084,0,48.18,374.83,18.44,1431.61 +3987,5,E07000084,1,57.79,148.99,26.1,566.51 +4054,7,E07000084,1,52.2,148.99,26.1,566.51 +4602,5,E07000084,2,71.78,183.29,26.1,701.58 +4749,7,E07000084,2,63.38,183.29,26.1,701.58 +5254,5,E07000084,3,82.02,211.17,26.1,806.54 +5354,7,E07000084,3,68.97,211.17,26.1,806.54 +5939,5,E07000084,4,90.42,340.85,26.1,1301.79 +6043,7,E07000084,4,73.64,340.85,26.1,1301.79 +6534,9,E07000084,1,57.79,186.23,26.1,708.19 +6860,9,E07000084,2,71.78,229.13,26.1,876.89 +7186,9,E07000084,3,82.02,263.95,26.1,1008.25 +7512,9,E07000084,4,90.42,426.06,26.1,1627.19 +7838,10,E07000084,0,61.49,468.55,18.44,1789.55 +15,1,E07000171,1,52.2,100.76,26.1,431.41 +341,1,E07000171,2,62.45,115.76,26.1,457.7 +667,1,E07000171,3,68.97,127.56,26.1,487.69 +993,1,E07000171,4,76.43,159.7,26.1,589.02 +1319,3,E07000171,1,46.6,91.12,26.1,378.95 +1645,3,E07000171,2,53.13,97.54,26.1,382.66 +1971,3,E07000171,3,58.72,105.05,26.1,420.18 +2297,3,E07000171,4,64.31,123.26,26.1,431.41 +2623,2,E07000171,0,51.26,238.1,18.44,1250.1 +2949,4,E07000171,0,49.2,113.15,18.44,429.07 +3275,6,E07000171,0,51.26,200.38,18.44,767.38 +3601,8,E07000171,0,49.2,200.38,18.44,767.38 +4313,5,E07000171,1,52.2,85.75,26.1,326.41 +4413,7,E07000171,1,46.6,85.75,26.1,326.41 +5009,5,E07000171,2,62.45,106.12,26.1,405.16 +5149,7,E07000171,2,53.13,106.12,26.1,405.16 +5652,5,E07000171,3,68.97,126.48,26.1,483.95 +5810,7,E07000171,3,58.72,126.48,26.1,483.95 +6227,5,E07000171,4,76.43,182.22,26.1,697.83 +6471,7,E07000171,4,64.31,182.22,26.1,697.83 +6535,9,E07000171,1,52.2,107.2,26.1,407.96 +6861,9,E07000171,2,62.45,132.65,26.1,506.45 +7187,9,E07000171,3,68.97,158.09,26.1,604.94 +7513,9,E07000171,4,76.43,227.8,26.1,872.27 +7839,10,E07000171,0,51.26,250.47,18.44,959.18 +16,1,E06000022,1,49.41,108.27,26.1,495.22 +342,1,E06000022,2,55.93,122.19,26.1,510.2 +668,1,E06000022,3,62.45,142.56,26.1,570.26 +994,1,E06000022,4,71.78,159.7,26.1,686.53 +1320,3,E06000022,1,47.54,90.03,26.1,742.84 +1646,3,E06000022,2,54.99,101.83,26.1,393.89 +1972,3,E06000022,3,62.45,110.39,26.1,446.46 +2298,3,E06000022,4,74.57,131.84,26.1,461.44 +2624,2,E06000022,0,54.33,228.68,18.44,1241.8 +2950,4,E06000022,0,54.33,114.33,18.44,490.95 +3276,6,E06000022,0,54.33,431.42,18.44,1646.12 +3602,8,E06000022,0,54.33,431.42,18.44,1646.12 +3913,7,E06000022,1,47.54,155.41,26.1,592.76 +4197,5,E06000022,1,49.41,155.41,26.1,592.76 +4833,5,E06000022,2,55.93,194.01,26.1,742.84 +5110,7,E06000022,2,54.99,194.01,26.1,742.84 +5464,5,E06000022,3,62.45,234.74,26.1,892.85 +5690,7,E06000022,3,62.45,234.74,26.1,892.85 +6002,5,E06000022,4,71.78,392.31,26.1,1496.92 +6402,7,E06000022,4,74.57,392.31,26.1,1496.92 +6536,9,E06000022,1,49.41,194.27,26.1,740.92 +6862,9,E06000022,2,55.93,242.51,26.1,928.52 +7188,9,E06000022,3,62.45,293.43,26.1,1116.08 +7514,9,E06000022,4,71.78,490.4,26.1,1871.14 +7840,10,E06000022,0,54.33,539.28,18.44,2057.65 +17,1,E06000055,1,54.99,120.05,26.1,525.21 +343,1,E06000055,2,65.24,143.62,26.1,592.76 +669,1,E06000055,3,71.78,157.56,26.1,637.77 +995,1,E06000055,4,82.02,172.58,26.1,630.28 +1321,3,E06000055,1,50.34,100.76,26.1,465.19 +1647,3,E06000055,2,58.72,118.97,26.1,468.93 +1973,3,E06000055,3,64.31,131.84,26.1,506.45 +2299,3,E06000055,4,71.78,150.06,26.1,562.73 +2625,2,E06000055,0,35.87,223.96,18.44,1464.58 +2951,4,E06000055,0,55.36,134.38,18.44,1101.56 +3277,6,E06000055,0,35.87,312.38,18.44,1192.28 +3603,8,E06000055,0,55.36,312.38,18.44,1192.28 +4119,5,E06000055,1,54.99,114.68,26.1,435.16 +4236,7,E06000055,1,50.34,114.68,26.1,435.16 +4700,5,E06000055,2,65.24,143.62,26.1,547.72 +4962,7,E06000055,2,58.72,143.62,26.1,547.72 +5419,5,E06000055,3,71.78,172.58,26.1,656.53 +5605,7,E06000055,3,64.31,172.58,26.1,656.53 +6129,5,E06000055,4,82.02,284.04,26.1,1084.23 +6267,7,E06000055,4,71.78,284.04,26.1,1084.23 +6537,9,E06000055,1,54.99,143.37,26.1,543.94 +6863,9,E06000055,2,65.24,179.53,26.1,684.6 +7189,9,E06000055,3,71.78,215.73,26.1,820.72 +7515,9,E06000055,4,82.02,355.06,26.1,1355.24 +7841,10,E06000055,0,35.87,390.47,18.44,1490.37 +18,1,E09000004,1,66.17,146.84,26.1,697.83 +344,1,E09000004,2,78.29,158.63,26.1,679.04 +670,1,E09000004,3,84.82,168.29,26.1,799.02 +996,1,E09000004,4,102.51,188.66,26.1,889.11 +1322,3,E09000004,1,58.72,120.05,26.1,517.69 +1648,3,E09000004,2,64.31,140.42,26.1,619.01 +1974,3,E09000004,3,71.78,160.78,26.1,709.03 +2300,3,E09000004,4,83.89,262.61,26.1,922.88 +2626,2,E09000004,0,69.7,313.55,18.44,1741.04 +2952,4,E09000004,0,59.45,367.77,18.44,1394.47 +3278,6,E09000004,0,69.7,374.83,18.44,1431.61 +3604,8,E09000004,0,59.45,374.83,18.44,1431.61 +3952,5,E09000004,1,66.17,158.63,26.1,611.52 +4166,7,E09000004,1,58.72,158.63,26.1,611.52 +4567,5,E09000004,2,78.29,194.01,26.1,742.84 +4667,7,E09000004,2,64.31,194.01,26.1,742.84 +5219,5,E09000004,3,84.82,250.82,26.1,956.69 +5319,7,E09000004,3,71.78,250.82,26.1,956.69 +5871,7,E09000004,4,83.89,340.85,26.1,1301.79 +5904,5,E09000004,4,102.51,340.85,26.1,1301.79 +6538,9,E09000004,1,66.17,198.3,26.1,764.33 +6864,9,E09000004,2,78.29,242.51,26.1,928.52 +7190,9,E09000004,3,84.82,313.51,26.1,1195.85 +7516,9,E09000004,4,102.51,426.06,26.1,1627.19 +7842,10,E09000004,0,69.7,468.55,18.44,1789.55 +19,1,E08000025,1,53.13,99.69,26.1,438.9 +345,1,E08000025,2,58.72,117.9,26.1,483.95 +671,1,E08000025,3,69.9,133.98,26.1,566.51 +997,1,E08000025,4,81.09,162.93,26.1,630.28 +1323,3,E08000025,1,46.6,88.96,26.1,345.17 +1649,3,E08000025,2,50.34,95.42,26.1,363.93 +1975,3,E08000025,3,60.59,105.05,26.1,423.89 +2301,3,E08000025,4,68.97,128.63,26.1,450.21 +2627,2,E08000025,0,38.95,242.82,18.44,1324.3 +2953,4,E08000025,0,46.12,106.09,18.44,371.32 +3279,6,E08000025,0,38.95,248.71,18.44,953.05 +3605,8,E08000025,0,46.12,248.71,18.44,953.05 +4281,5,E08000025,1,53.13,115.76,26.1,438.9 +4502,7,E08000025,1,46.6,115.76,26.1,438.9 +4891,5,E08000025,2,58.72,141.49,26.1,536.48 +5187,7,E08000025,2,50.34,141.49,26.1,536.48 +5522,5,E08000025,3,69.9,148.99,26.1,566.51 +5778,7,E08000025,3,60.59,148.99,26.1,566.51 +6174,5,E08000025,4,81.09,228.29,26.1,866.6 +6439,7,E08000025,4,68.97,228.29,26.1,866.6 +6539,9,E08000025,1,53.13,144.7,26.1,548.7 +6865,9,E08000025,2,58.72,176.86,26.1,670.6 +7191,9,E08000025,3,69.9,186.23,26.1,708.19 +7517,9,E08000025,4,81.09,285.39,26.1,1083.25 +7843,10,E08000025,0,38.95,310.9,18.44,1191.33 +20,1,E07000129,1,52.2,100.76,26.1,431.41 +346,1,E07000129,2,62.45,115.76,26.1,457.7 +672,1,E07000129,3,68.97,127.56,26.1,487.69 +998,1,E07000129,4,76.43,159.7,26.1,589.02 +1324,3,E07000129,1,46.6,91.12,26.1,378.95 +1650,3,E07000129,2,53.13,97.54,26.1,382.66 +1976,3,E07000129,3,58.72,105.05,26.1,420.18 +2302,3,E07000129,4,64.31,123.26,26.1,431.41 +2628,2,E07000129,0,51.26,238.1,18.44,1250.1 +2954,4,E07000129,0,49.2,113.15,18.44,429.07 +3280,6,E07000129,0,51.26,225.15,18.44,858.13 +3606,8,E07000129,0,49.2,225.15,18.44,858.13 +4314,5,E07000129,1,52.2,110.39,26.1,420.18 +4414,7,E07000129,1,46.6,110.39,26.1,420.18 +5010,5,E07000129,2,62.45,126.48,26.1,483.95 +5150,7,E07000129,2,53.13,126.48,26.1,483.95 +5653,5,E07000129,3,68.97,151.13,26.1,574.04 +5811,7,E07000129,3,58.72,151.13,26.1,574.04 +6228,5,E07000129,4,76.43,204.74,26.1,780.33 +6472,7,E07000129,4,64.31,204.74,26.1,780.33 +6540,9,E07000129,1,52.2,138.01,26.1,525.21 +6866,9,E07000129,2,62.45,158.09,26.1,604.94 +7192,9,E07000129,3,68.97,188.91,26.1,717.5 +7518,9,E07000129,4,76.43,255.92,26.1,975.42 +7844,10,E07000129,0,51.26,281.43,18.44,1072.58 +21,1,E06000008,1,52.2,94.33,26.1,412.65 +347,1,E06000008,2,59.66,108.27,26.1,476.46 +673,1,E06000008,3,66.17,121.11,26.1,513.94 +999,1,E06000008,4,72.71,135.06,26.1,562.73 +1325,3,E06000008,1,43.8,86.81,26.1,356.41 +1651,3,E06000008,2,54.06,95.42,26.1,401.38 +1977,3,E06000008,3,58.72,106.12,26.1,438.9 +2303,3,E06000008,4,55.93,120.05,26.1,472.71 +2629,2,E06000008,0,55.36,236.93,18.44,1184.02 +2955,4,E06000008,0,32.8,464.43,18.44,2075.22 +3281,6,E06000008,0,55.36,189.79,18.44,721.98 +3607,8,E06000008,0,32.8,189.79,18.44,721.98 +4353,5,E06000008,1,52.2,103.98,26.1,397.64 +4465,7,E06000008,1,43.8,103.98,26.1,397.64 +4923,5,E06000008,2,59.66,110.39,26.1,420.18 +5061,7,E06000008,2,54.06,110.39,26.1,420.18 +5566,5,E06000008,3,66.17,131.84,26.1,506.45 +5741,7,E06000008,3,58.72,131.84,26.1,506.45 +6314,5,E06000008,4,72.71,172.58,26.1,656.53 +6365,7,E06000008,4,55.93,172.58,26.1,656.53 +6541,9,E06000008,1,52.2,129.97,26.1,497.07 +6867,9,E06000008,2,59.66,138.01,26.1,525.21 +7193,9,E06000008,3,66.17,164.8,26.1,633.05 +7519,9,E06000008,4,72.71,215.73,26.1,820.72 +7845,10,E06000008,0,55.36,237.24,18.44,902.44 +22,1,E06000009,1,52.2,94.33,26.1,412.65 +348,1,E06000009,2,59.66,108.27,26.1,476.46 +674,1,E06000009,3,66.17,121.11,26.1,513.94 +1000,1,E06000009,4,72.71,135.06,26.1,562.73 +1326,3,E06000009,1,43.8,86.81,26.1,356.41 +1652,3,E06000009,2,54.06,95.42,26.1,401.38 +1978,3,E06000009,3,58.72,106.12,26.1,438.9 +2304,3,E06000009,4,55.93,120.05,26.1,472.71 +2630,2,E06000009,0,55.36,236.93,18.44,1184.02 +2956,4,E06000009,0,32.8,464.43,18.44,2075.22 +3282,6,E06000009,0,55.36,201.56,18.44,771.47 +3608,8,E06000009,0,32.8,201.56,18.44,771.47 +4354,5,E06000009,1,52.2,99.69,26.1,386.37 +4466,7,E06000009,1,43.8,99.69,26.1,386.37 +4924,5,E06000009,2,59.66,126.48,26.1,483.95 +5062,7,E06000009,2,54.06,126.48,26.1,483.95 +5567,5,E06000009,3,66.17,144.7,26.1,551.46 +5742,7,E06000009,3,58.72,144.7,26.1,551.46 +6315,5,E06000009,4,72.71,183.29,26.1,701.58 +6366,7,E06000009,4,55.93,183.29,26.1,701.58 +6542,9,E06000009,1,52.2,124.6,26.1,483.04 +6868,9,E06000009,2,59.66,158.09,26.1,604.94 +7194,9,E06000009,3,66.17,180.87,26.1,689.33 +7520,9,E06000009,4,72.71,229.13,26.1,876.89 +7846,10,E06000009,0,55.36,251.95,18.44,964.39 +23,1,E07000033,1,52.2,100.76,26.1,431.41 +349,1,E07000033,2,62.45,115.76,26.1,457.7 +675,1,E07000033,3,68.97,127.56,26.1,487.69 +1001,1,E07000033,4,76.43,159.7,26.1,589.02 +1327,3,E07000033,1,46.6,91.12,26.1,378.95 +1653,3,E07000033,2,53.13,97.54,26.1,382.66 +1979,3,E07000033,3,58.72,105.05,26.1,420.18 +2305,3,E07000033,4,64.31,123.26,26.1,431.41 +2631,2,E07000033,0,51.26,238.1,18.44,1250.1 +2957,4,E07000033,0,49.2,113.15,18.44,429.07 +3283,6,E07000033,0,51.26,189.79,18.44,721.98 +3609,8,E07000033,0,49.2,189.79,18.44,721.98 +4315,5,E07000033,1,52.2,91.12,26.1,345.17 +4415,7,E07000033,1,46.6,91.12,26.1,345.17 +5011,5,E07000033,2,62.45,103.98,26.1,397.64 +5151,7,E07000033,2,53.13,103.98,26.1,397.64 +5654,5,E07000033,3,68.97,121.11,26.1,461.44 +5812,7,E07000033,3,58.72,121.11,26.1,461.44 +6229,5,E07000033,4,76.43,172.58,26.1,656.53 +6473,7,E07000033,4,64.31,172.58,26.1,656.53 +6543,9,E07000033,1,52.2,113.9,26.1,431.41 +6869,9,E07000033,2,62.45,129.97,26.1,497.07 +7195,9,E07000033,3,68.97,151.41,26.1,576.8 +7521,9,E07000033,4,76.43,215.73,26.1,820.72 +7847,10,E07000033,0,51.26,237.24,18.44,902.44 +24,1,E08000001,1,52.2,94.33,26.1,412.65 +350,1,E08000001,2,59.66,108.27,26.1,476.46 +676,1,E08000001,3,66.17,121.11,26.1,513.94 +1002,1,E08000001,4,72.71,135.06,26.1,562.73 +1328,3,E08000001,1,43.8,86.81,26.1,356.41 +1654,3,E08000001,2,54.06,95.42,26.1,401.38 +1980,3,E08000001,3,58.72,106.12,26.1,438.9 +2306,3,E08000001,4,55.93,120.05,26.1,472.71 +2632,2,E08000001,0,55.36,236.93,18.44,1184.02 +2958,4,E08000001,0,32.8,464.43,18.44,2075.22 +3284,6,E08000001,0,55.36,213.35,18.44,816.83 +3610,8,E08000001,0,32.8,213.35,18.44,816.83 +4355,5,E08000001,1,52.2,93.26,26.1,352.66 +4467,7,E08000001,1,43.8,93.26,26.1,352.66 +4925,5,E08000001,2,59.66,111.47,26.1,423.89 +5063,7,E08000001,2,54.06,111.47,26.1,423.89 +5568,5,E08000001,3,66.17,136.13,26.1,521.47 +5743,7,E08000001,3,58.72,136.13,26.1,521.47 +6316,5,E08000001,4,72.71,194.01,26.1,742.84 +6367,7,E08000001,4,55.93,194.01,26.1,742.84 +6544,9,E08000001,1,52.2,116.56,26.1,440.83 +6870,9,E08000001,2,59.66,139.34,26.1,529.94 +7196,9,E08000001,3,66.17,170.16,26.1,651.81 +7522,9,E08000001,4,72.71,242.51,26.1,928.52 +7848,10,E08000001,0,55.36,266.69,18.44,1021.09 +25,1,E07000136,1,52.2,100.76,26.1,431.41 +351,1,E07000136,2,62.45,115.76,26.1,457.7 +677,1,E07000136,3,68.97,127.56,26.1,487.69 +1003,1,E07000136,4,76.43,159.7,26.1,589.02 +1329,3,E07000136,1,46.6,91.12,26.1,378.95 +1655,3,E07000136,2,53.13,97.54,26.1,382.66 +1981,3,E07000136,3,58.72,105.05,26.1,420.18 +2307,3,E07000136,4,64.31,123.26,26.1,431.41 +2633,2,E07000136,0,51.26,238.1,18.44,1250.1 +2959,4,E07000136,0,49.2,113.15,18.44,429.07 +3285,6,E07000136,0,51.26,196.86,18.44,746.73 +3611,8,E07000136,0,49.2,196.86,18.44,746.73 +4316,5,E07000136,1,52.2,98.62,26.1,378.95 +4416,7,E07000136,1,46.6,98.62,26.1,378.95 +5012,5,E07000136,2,62.45,121.11,26.1,461.44 +5152,7,E07000136,2,53.13,121.11,26.1,461.44 +5655,5,E07000136,3,68.97,136.13,26.1,521.47 +5813,7,E07000136,3,58.72,136.13,26.1,521.47 +6230,5,E07000136,4,76.43,179,26.1,679.04 +6474,7,E07000136,4,64.31,179,26.1,679.04 +6545,9,E07000136,1,52.2,123.26,26.1,473.66 +6871,9,E07000136,2,62.45,151.41,26.1,576.8 +7197,9,E07000136,3,68.97,170.16,26.1,651.81 +7523,9,E07000136,4,76.43,223.75,26.1,848.79 +7849,10,E07000136,0,51.26,246.05,18.44,933.42 +59,1,E06000058,1,49.41,108.27,26.1,495.22 +385,1,E06000058,2,55.93,122.19,26.1,510.2 +711,1,E06000058,3,62.45,142.56,26.1,570.26 +1037,1,E06000058,4,71.78,159.7,26.1,686.53 +1363,3,E06000058,1,47.54,90.03,26.1,742.84 +1689,3,E06000058,2,54.99,101.83,26.1,393.89 +2015,3,E06000058,3,62.45,110.39,26.1,446.46 +2341,3,E06000058,4,74.57,131.84,26.1,461.44 +2667,2,E06000058,0,54.33,228.68,18.44,1241.8 +2993,4,E06000058,0,54.33,114.33,18.44,490.95 +3319,6,E06000058,0,54.33,399.59,18.44,1526.49 +3645,8,E06000058,0,54.33,399.59,18.44,1526.49 +3917,7,E06000058,1,47.54,138.27,26.1,525.21 +4201,5,E06000058,1,49.41,138.27,26.1,525.21 +4837,5,E06000058,2,55.93,172.58,26.1,656.53 +5114,7,E06000058,2,54.99,172.58,26.1,656.53 +5468,5,E06000058,3,62.45,228.29,26.1,866.6 +5694,7,E06000058,3,62.45,228.29,26.1,866.6 +6006,5,E06000058,4,71.78,363.36,26.1,1388.07 +6406,7,E06000058,4,74.57,363.36,26.1,1388.07 +6579,9,E06000058,1,49.41,172.84,26.1,656.5 +6905,9,E06000058,2,55.93,215.73,26.1,820.72 +7231,9,E06000058,3,62.45,285.39,26.1,1083.25 +7557,9,E06000058,4,71.78,454.21,26.1,1735.13 +7883,10,E06000058,0,54.33,499.52,18.44,1908.13 +27,1,E06000036,1,57.79,124.33,26.1,622.76 +353,1,E06000036,2,71.78,147.91,26.1,660.31 +679,1,E06000036,3,82.02,162.93,26.1,720.34 +1005,1,E06000036,4,90.42,180.08,26.1,784.04 +1331,3,E06000036,1,52.2,116.83,26.1,562.73 +1657,3,E06000036,2,63.38,130.77,26.1,513.94 +1983,3,E06000036,3,68.97,151.13,26.1,656.53 +2309,3,E06000036,4,73.64,186.51,26.1,686.53 +2635,2,E06000036,0,61.49,265.21,18.44,1192.28 +2961,4,E06000036,0,48.18,193.32,18.44,709.56 +3287,6,E06000036,0,61.49,549.31,18.44,2095.8 +3613,8,E06000036,0,48.18,549.31,18.44,2095.8 +3988,5,E06000036,1,57.79,158.63,26.1,611.52 +4055,7,E06000036,1,52.2,158.63,26.1,611.52 +4603,5,E06000036,2,71.78,200.45,26.1,761.57 +4750,7,E06000036,2,63.38,200.45,26.1,761.57 +5255,5,E06000036,3,82.02,272.26,26.1,1039.19 +5355,7,E06000036,3,68.97,272.26,26.1,1039.19 +5940,5,E06000036,4,90.42,499.48,26.1,1905.79 +6044,7,E06000036,4,73.64,499.48,26.1,1905.79 +6547,9,E06000036,1,57.79,198.3,26.1,764.33 +6873,9,E06000036,2,71.78,250.54,26.1,951.93 +7199,9,E06000036,3,82.02,340.33,26.1,1298.96 +7525,9,E06000036,4,90.42,624.36,26.1,2382.24 +7851,10,E06000036,0,61.49,686.61,18.44,2619.79 +28,1,E08000032,1,51.27,92.19,26.1,401.38 +354,1,E08000032,2,58.72,109.33,26.1,495.22 +680,1,E08000032,3,63.38,121.11,26.1,570.26 +1006,1,E08000032,4,73.64,145.77,26.1,630.28 +1332,3,E08000032,1,46.6,82.54,26.1,326.41 +1658,3,E08000032,2,53.13,113.61,26.1,510.2 +1984,3,E08000032,3,56.86,105.05,26.1,401.38 +2310,3,E08000032,4,64.31,122.19,26.1,619.01 +2636,2,E08000032,0,52.28,232.2,18.44,1118.04 +2962,4,E08000032,0,51.26,159.13,18.44,660.1 +3288,6,E08000032,0,52.28,207.45,18.44,792.12 +3614,8,E08000032,0,51.26,207.45,18.44,792.12 +4391,5,E08000032,1,51.27,98.62,26.1,378.95 +4545,7,E08000032,1,46.6,98.62,26.1,378.95 +4813,7,E08000032,2,53.13,115.76,26.1,438.9 +4871,5,E08000032,2,58.72,115.76,26.1,438.9 +5502,5,E08000032,3,63.38,136.13,26.1,521.47 +5849,7,E08000032,3,56.86,136.13,26.1,521.47 +6107,5,E08000032,4,73.64,188.66,26.1,720.34 +6205,7,E08000032,4,64.31,188.66,26.1,720.34 +6548,9,E08000032,1,51.27,123.26,26.1,473.66 +6874,9,E08000032,2,53.13,144.7,26.1,548.7 +7200,9,E08000032,3,63.38,170.16,26.1,651.81 +7526,9,E08000032,4,73.64,235.82,26.1,900.41 +7852,10,E08000032,0,52.28,259.31,18.44,990.19 +29,1,E07000067,1,54.99,120.05,26.1,525.21 +355,1,E07000067,2,65.24,143.62,26.1,592.76 +681,1,E07000067,3,71.78,157.56,26.1,637.77 +1007,1,E07000067,4,82.02,172.58,26.1,630.28 +1333,3,E07000067,1,50.34,100.76,26.1,465.19 +1659,3,E07000067,2,58.72,118.97,26.1,468.93 +1985,3,E07000067,3,64.31,131.84,26.1,506.45 +2311,3,E07000067,4,71.78,150.06,26.1,562.73 +2637,2,E07000067,0,35.87,223.96,18.44,1464.58 +2963,4,E07000067,0,55.36,134.38,18.44,1101.56 +3289,6,E07000067,0,35.87,312.38,18.44,1192.28 +3615,8,E07000067,0,55.36,312.38,18.44,1192.28 +4120,5,E07000067,1,54.99,121.11,26.1,461.44 +4237,7,E07000067,1,50.34,121.11,26.1,461.44 +4701,5,E07000067,2,65.24,148.99,26.1,566.51 +4963,7,E07000067,2,58.72,148.99,26.1,566.51 +5420,5,E07000067,3,71.78,183.29,26.1,701.58 +5606,7,E07000067,3,64.31,183.29,26.1,701.58 +6130,5,E07000067,4,82.02,284.04,26.1,1084.23 +6268,7,E07000067,4,71.78,284.04,26.1,1084.23 +6549,9,E07000067,1,54.99,151.41,26.1,576.8 +6875,9,E07000067,2,65.24,186.23,26.1,708.19 +7201,9,E07000067,3,71.78,229.13,26.1,876.89 +7527,9,E07000067,4,82.02,355.06,26.1,1355.24 +7853,10,E07000067,0,35.87,390.47,18.44,1490.37 +30,1,E07000143,1,54.99,120.05,26.1,525.21 +356,1,E07000143,2,65.24,143.62,26.1,592.76 +682,1,E07000143,3,71.78,157.56,26.1,637.77 +1008,1,E07000143,4,82.02,172.58,26.1,630.28 +1334,3,E07000143,1,50.34,100.76,26.1,465.19 +1660,3,E07000143,2,58.72,118.97,26.1,468.93 +1986,3,E07000143,3,64.31,131.84,26.1,506.45 +2312,3,E07000143,4,71.78,150.06,26.1,562.73 +2638,2,E07000143,0,35.87,223.96,18.44,1464.58 +2964,4,E07000143,0,55.36,134.38,18.44,1101.56 +3290,6,E07000143,0,35.87,264.04,18.44,1006.67 +3616,8,E07000143,0,55.36,264.04,18.44,1006.67 +4121,5,E07000143,1,54.99,101.83,26.1,390.15 +4238,7,E07000143,1,50.34,101.83,26.1,390.15 +4702,5,E07000143,2,65.24,126.48,26.1,483.95 +4964,7,E07000143,2,58.72,126.48,26.1,483.95 +5421,5,E07000143,3,71.78,148.99,26.1,566.51 +5607,7,E07000143,3,64.31,148.99,26.1,566.51 +6131,5,E07000143,4,82.02,240.09,26.1,915.39 +6269,7,E07000143,4,71.78,240.09,26.1,915.39 +6550,9,E07000143,1,54.99,127.29,26.1,487.69 +6876,9,E07000143,2,65.24,158.09,26.1,604.94 +7202,9,E07000143,3,71.78,186.23,26.1,708.19 +7528,9,E07000143,4,82.02,300.12,26.1,1144.22 +7854,10,E07000143,0,35.87,330.05,18.44,1258.36 +31,1,E09000005,1,66.17,146.84,26.1,679.04 +357,1,E09000005,2,78.29,158.63,26.1,697.83 +683,1,E09000005,3,84.82,168.29,26.1,799.02 +1009,1,E09000005,4,102.51,188.66,26.1,889.11 +1335,3,E09000005,1,58.72,120.05,26.1,517.69 +1661,3,E09000005,2,64.31,140.42,26.1,619.01 +1987,3,E09000005,3,71.78,160.78,26.1,709.03 +2313,3,E09000005,4,83.89,262.61,26.1,922.88 +2639,2,E09000005,0,69.7,313.55,18.44,1741.04 +2965,4,E09000005,0,59.45,367.77,18.44,1394.47 +3291,6,E09000005,0,69.7,627.09,18.44,2392.88 +3617,8,E09000005,0,59.45,627.09,18.44,2392.88 +3953,5,E09000005,1,66.17,276.55,26.1,1054.2 +4167,7,E09000005,1,58.72,276.55,26.1,1054.2 +4568,5,E09000005,2,78.29,359.08,26.1,1373.09 +4668,7,E09000005,2,64.31,359.08,26.1,1373.09 +5220,5,E09000005,3,84.82,468.41,26.1,1782.03 +5320,7,E09000005,3,71.78,468.41,26.1,1782.03 +5872,7,E09000005,4,83.89,570.24,26.1,2175.95 +5905,5,E09000005,4,102.51,570.24,26.1,2175.95 +6551,9,E09000005,1,66.17,345.69,26.1,1317.79 +6877,9,E09000005,2,78.29,448.85,26.1,1716.4 +7203,9,E09000005,3,84.82,585.52,26.1,2227.54 +7529,9,E09000005,4,102.51,712.79,26.1,2719.92 +7855,10,E09000005,0,69.7,783.87,18.44,2991.07 +32,1,E07000068,1,54.99,120.05,26.1,525.21 +358,1,E07000068,2,65.24,143.62,26.1,592.76 +684,1,E07000068,3,71.78,157.56,26.1,637.77 +1010,1,E07000068,4,82.02,172.58,26.1,630.28 +1336,3,E07000068,1,50.34,100.76,26.1,465.19 +1662,3,E07000068,2,58.72,118.97,26.1,468.93 +1988,3,E07000068,3,64.31,131.84,26.1,506.45 +2314,3,E07000068,4,71.78,150.06,26.1,562.73 +2640,2,E07000068,0,35.87,223.96,18.44,1464.58 +2966,4,E07000068,0,55.36,134.38,18.44,1101.56 +3292,6,E07000068,0,35.87,598.8,18.44,2285.64 +3618,8,E07000068,0,55.36,598.8,18.44,2285.64 +4122,5,E07000068,1,54.99,182.22,26.1,697.83 +4239,7,E07000068,1,50.34,182.22,26.1,697.83 +4703,5,E07000068,2,65.24,226.16,26.1,866.6 +4965,7,E07000068,2,58.72,226.16,26.1,866.6 +5422,5,E07000068,3,71.78,319.42,26.1,1219.26 +5608,7,E07000068,3,64.31,319.42,26.1,1219.26 +6132,5,E07000068,4,82.02,544.51,26.1,2078.37 +6270,7,E07000068,4,71.78,544.51,26.1,2078.37 +6552,9,E07000068,1,54.99,227.8,26.1,872.27 +6878,9,E07000068,2,65.24,282.71,26.1,1083.25 +7204,9,E07000068,3,71.78,399.29,26.1,1524.08 +7530,9,E07000068,4,82.02,680.64,26.1,2598.02 +7856,10,E07000068,0,35.87,748.51,18.44,2857.02 +33,1,E06000043,1,57.79,124.33,26.1,622.76 +359,1,E06000043,2,71.78,147.91,26.1,660.31 +685,1,E06000043,3,82.02,162.93,26.1,720.34 +1011,1,E06000043,4,90.42,180.08,26.1,784.04 +1337,3,E06000043,1,52.2,116.83,26.1,562.73 +1663,3,E06000043,2,63.38,130.77,26.1,513.94 +1989,3,E06000043,3,68.97,151.13,26.1,656.53 +2315,3,E06000043,4,73.64,186.51,26.1,686.53 +2641,2,E06000043,0,61.49,265.21,18.44,1192.28 +2967,4,E06000043,0,48.18,193.32,18.44,709.56 +3293,6,E06000043,0,61.49,499.79,18.44,1906.07 +3619,8,E06000043,0,48.18,499.79,18.44,1906.07 +3989,5,E06000043,1,57.79,177.93,26.1,675.29 +4056,7,E06000043,1,52.2,177.93,26.1,675.29 +4604,5,E06000043,2,71.78,250.82,26.1,956.69 +4751,7,E06000043,2,63.38,250.82,26.1,956.69 +5256,5,E06000043,3,82.02,307.63,26.1,1174.22 +5356,7,E06000043,3,68.97,307.63,26.1,1174.22 +5941,5,E06000043,4,90.42,454.47,26.1,1733.24 +6045,7,E06000043,4,73.64,454.47,26.1,1733.24 +6553,9,E06000043,1,57.79,222.43,26.1,844.13 +6879,9,E06000043,2,71.78,313.51,26.1,1195.85 +7205,9,E06000043,3,82.02,384.53,26.1,1467.76 +7531,9,E06000043,4,90.42,568.09,26.1,2166.54 +7857,10,E06000043,0,61.49,624.74,18.44,2382.63 +34,1,E06000023,1,49.41,108.27,26.1,495.22 +360,1,E06000023,2,55.93,122.19,26.1,510.2 +686,1,E06000023,3,62.45,142.56,26.1,570.26 +1012,1,E06000023,4,71.78,159.7,26.1,686.53 +1338,3,E06000023,1,47.54,90.03,26.1,742.84 +1664,3,E06000023,2,54.99,101.83,26.1,393.89 +1990,3,E06000023,3,62.45,110.39,26.1,446.46 +2316,3,E06000023,4,74.57,131.84,26.1,461.44 +2642,2,E06000023,0,54.33,228.68,18.44,1241.8 +2968,4,E06000023,0,54.33,114.33,18.44,490.95 +3294,6,E06000023,0,54.33,462.06,18.44,1761.59 +3620,8,E06000023,0,54.33,462.06,18.44,1761.59 +3915,7,E06000023,1,47.54,148.99,26.1,566.51 +4199,5,E06000023,1,49.41,148.99,26.1,566.51 +4835,5,E06000023,2,55.93,183.29,26.1,701.58 +5112,7,E06000023,2,54.99,183.29,26.1,701.58 +5466,5,E06000023,3,62.45,228.29,26.1,866.6 +5692,7,E06000023,3,62.45,228.29,26.1,866.6 +6004,5,E06000023,4,71.78,420.18,26.1,1601.95 +6404,7,E06000023,4,74.57,420.18,26.1,1601.95 +6554,9,E06000023,1,49.41,186.23,26.1,708.19 +6880,9,E06000023,2,55.93,229.13,26.1,876.89 +7206,9,E06000023,3,62.45,285.39,26.1,1083.25 +7532,9,E06000023,4,71.78,525.22,26.1,2002.39 +7858,10,E06000023,0,54.33,577.59,18.44,2202.03 +35,1,E07000144,1,54.99,120.05,26.1,525.21 +361,1,E07000144,2,65.24,143.62,26.1,592.76 +687,1,E07000144,3,71.78,157.56,26.1,637.77 +1013,1,E07000144,4,82.02,172.58,26.1,630.28 +1339,3,E07000144,1,50.34,100.76,26.1,465.19 +1665,3,E07000144,2,58.72,118.97,26.1,468.93 +1991,3,E07000144,3,64.31,131.84,26.1,506.45 +2317,3,E07000144,4,71.78,150.06,26.1,562.73 +2643,2,E07000144,0,35.87,223.96,18.44,1464.58 +2969,4,E07000144,0,55.36,134.38,18.44,1101.56 +3295,6,E07000144,0,35.87,238.1,18.44,911.75 +3621,8,E07000144,0,55.36,238.1,18.44,911.75 +4123,5,E07000144,1,54.99,109.33,26.1,416.4 +4240,7,E07000144,1,50.34,109.33,26.1,416.4 +4704,5,E07000144,2,65.24,131.84,26.1,506.45 +4966,7,E07000144,2,58.72,131.84,26.1,506.45 +5423,5,E07000144,3,71.78,159.7,26.1,611.52 +5609,7,E07000144,3,64.31,159.7,26.1,611.52 +6133,5,E07000144,4,82.02,216.52,26.1,829.12 +6271,7,E07000144,4,71.78,216.52,26.1,829.12 +6555,9,E07000144,1,54.99,136.67,26.1,520.52 +6881,9,E07000144,2,65.24,164.8,26.1,633.05 +7207,9,E07000144,3,71.78,199.62,26.1,764.33 +7533,9,E07000144,4,82.02,270.66,26.1,1036.39 +7859,10,E07000144,0,35.87,297.64,18.44,1139.71 +36,1,E09000006,1,66.17,146.84,26.1,697.83 +362,1,E09000006,2,78.29,158.63,26.1,679.04 +688,1,E09000006,3,84.82,168.29,26.1,799.02 +1014,1,E09000006,4,102.51,188.66,26.1,889.11 +1340,3,E09000006,1,58.72,120.05,26.1,517.69 +1666,3,E09000006,2,64.31,140.42,26.1,619.01 +1992,3,E09000006,3,71.78,160.78,26.1,709.03 +2318,3,E09000006,4,83.89,262.61,26.1,922.88 +2644,2,E09000006,0,69.7,313.55,18.44,1741.04 +2970,4,E09000006,0,59.45,367.77,18.44,1394.47 +3296,6,E09000006,0,69.7,499.79,18.44,1906.07 +3622,8,E09000006,0,59.45,499.79,18.44,1906.07 +3954,5,E09000006,1,66.17,183.29,26.1,701.58 +4168,7,E09000006,1,58.72,183.29,26.1,701.58 +4569,5,E09000006,2,78.29,240.09,26.1,915.39 +4669,7,E09000006,2,64.31,240.09,26.1,915.39 +5221,5,E09000006,3,84.82,295.83,26.1,1129.24 +5321,7,E09000006,3,71.78,295.83,26.1,1129.24 +5873,7,E09000006,4,83.89,454.47,26.1,1733.24 +5906,5,E09000006,4,102.51,454.47,26.1,1733.24 +6556,9,E09000006,1,66.17,229.13,26.1,876.89 +6882,9,E09000006,2,78.29,300.12,26.1,1144.22 +7208,9,E09000006,3,84.82,369.81,26.1,1411.55 +7534,9,E09000006,4,102.51,568.09,26.1,2166.54 +7860,10,E09000006,0,69.7,624.74,18.44,2382.63 +37,1,E07000234,1,53.13,99.69,26.1,438.9 +363,1,E07000234,2,58.72,117.9,26.1,483.95 +689,1,E07000234,3,69.9,133.98,26.1,566.51 +1015,1,E07000234,4,81.09,162.93,26.1,630.28 +1341,3,E07000234,1,46.6,88.96,26.1,345.17 +1667,3,E07000234,2,50.34,95.42,26.1,363.93 +1993,3,E07000234,3,60.59,105.05,26.1,423.89 +2319,3,E07000234,4,68.97,128.63,26.1,450.21 +2645,2,E07000234,0,38.95,242.82,18.44,1324.3 +2971,4,E07000234,0,46.12,106.09,18.44,371.32 +3297,6,E07000234,0,38.95,312.38,18.44,1192.28 +3623,8,E07000234,0,46.12,312.38,18.44,1192.28 +4282,5,E07000234,1,53.13,117.9,26.1,450.21 +4503,7,E07000234,1,46.6,117.9,26.1,450.21 +4892,5,E07000234,2,58.72,136.13,26.1,521.47 +5188,7,E07000234,2,50.34,136.13,26.1,521.47 +5523,5,E07000234,3,69.9,177.93,26.1,675.29 +5779,7,E07000234,3,60.59,177.93,26.1,675.29 +6175,5,E07000234,4,81.09,284.04,26.1,1084.23 +6440,7,E07000234,4,68.97,284.04,26.1,1084.23 +6557,9,E07000234,1,53.13,147.38,26.1,562.73 +6883,9,E07000234,2,58.72,170.16,26.1,651.81 +7209,9,E07000234,3,69.9,222.43,26.1,844.13 +7535,9,E07000234,4,81.09,355.06,26.1,1355.24 +7861,10,E07000234,0,38.95,390.47,18.44,1490.37 +38,1,E07000095,1,54.99,120.05,26.1,525.21 +364,1,E07000095,2,65.24,143.62,26.1,592.76 +690,1,E07000095,3,71.78,157.56,26.1,637.77 +1016,1,E07000095,4,82.02,172.58,26.1,630.28 +1342,3,E07000095,1,50.34,100.76,26.1,465.19 +1668,3,E07000095,2,58.72,118.97,26.1,468.93 +1994,3,E07000095,3,64.31,131.84,26.1,506.45 +2320,3,E07000095,4,71.78,150.06,26.1,562.73 +2646,2,E07000095,0,35.87,223.96,18.44,1464.58 +2972,4,E07000095,0,55.36,134.38,18.44,1101.56 +3298,6,E07000095,0,35.87,459.7,18.44,1753.36 +3624,8,E07000095,0,55.36,459.7,18.44,1753.36 +4124,5,E07000095,1,54.99,155.41,26.1,592.76 +4241,7,E07000095,1,50.34,155.41,26.1,592.76 +4705,5,E07000095,2,65.24,194.01,26.1,742.84 +4967,7,E07000095,2,58.72,194.01,26.1,742.84 +5424,5,E07000095,3,71.78,262.61,26.1,997.89 +5610,7,E07000095,3,64.31,262.61,26.1,997.89 +6134,5,E07000095,4,82.02,419.11,26.1,1594.43 +6272,7,E07000095,4,71.78,419.11,26.1,1594.43 +6558,9,E07000095,1,54.99,194.27,26.1,740.92 +6884,9,E07000095,2,65.24,242.51,26.1,928.52 +7210,9,E07000095,3,71.78,328.26,26.1,1247.4 +7536,9,E07000095,4,82.02,523.89,26.1,1993.01 +7862,10,E07000095,0,35.87,574.64,18.44,2191.74 +39,1,E07000172,1,52.2,100.76,26.1,431.41 +365,1,E07000172,2,62.45,115.76,26.1,457.7 +691,1,E07000172,3,68.97,127.56,26.1,487.69 +1017,1,E07000172,4,76.43,159.7,26.1,589.02 +1343,3,E07000172,1,46.6,91.12,26.1,378.95 +1669,3,E07000172,2,53.13,97.54,26.1,382.66 +1995,3,E07000172,3,58.72,105.05,26.1,420.18 +2321,3,E07000172,4,64.31,123.26,26.1,431.41 +2647,2,E07000172,0,51.26,238.1,18.44,1250.1 +2973,4,E07000172,0,49.2,113.15,18.44,429.07 +3299,6,E07000172,0,51.26,218.08,18.44,829.26 +3625,8,E07000172,0,49.2,218.08,18.44,829.26 +4317,5,E07000172,1,52.2,103.98,26.1,397.64 +4417,7,E07000172,1,46.6,103.98,26.1,397.64 +5013,5,E07000172,2,62.45,126.48,26.1,483.95 +5153,7,E07000172,2,53.13,126.48,26.1,483.95 +5656,5,E07000172,3,68.97,138.27,26.1,525.21 +5814,7,E07000172,3,58.72,138.27,26.1,525.21 +6231,5,E07000172,4,76.43,198.3,26.1,754.04 +6475,7,E07000172,4,64.31,198.3,26.1,754.04 +6559,9,E07000172,1,52.2,129.97,26.1,497.07 +6885,9,E07000172,2,62.45,158.09,26.1,604.94 +7211,9,E07000172,3,68.97,172.84,26.1,656.5 +7537,9,E07000172,4,76.43,247.88,26.1,942.59 +7863,10,E07000172,0,51.26,272.59,18.44,1036.63 +323,1,E06000060,1,58.96,110.31,26.63,552.55 +649,1,E06000060,2,73.23,131.23,26.63,585.83 +975,1,E06000060,3,83.69,144.56,26.63,639.1 +1301,1,E06000060,4,92.25,159.77,26.63,695.63 +1627,3,E06000060,1,53.26,103.65,26.63,499.24 +1953,3,E06000060,2,64.67,116.02,26.63,455.98 +2279,3,E06000060,3,70.37,134.09,26.63,582.47 +2605,3,E06000060,4,75.13,165.47,26.63,609.11 +2931,2,E06000060,0,60.4,226.52,18.12,1018.36 +3257,4,E06000060,0,47.32,165.12,18.12,606.06 +3583,6,E06000060,0,60.4,744.03,18.12,2843.72 +3909,8,E06000060,0,47.32,744.03,18.12,2843.72 +4049,5,E06000060,1,58.96,172.13,26.63,659.05 +4116,7,E06000060,1,53.26,172.13,26.63,659.05 +4664,5,E06000060,2,73.23,232.99,26.63,885.36 +4811,7,E06000060,2,64.67,232.99,26.63,885.36 +5316,5,E06000060,3,83.69,332.85,26.63,1271.48 +5416,7,E06000060,3,70.37,332.85,26.63,1271.48 +6001,5,E06000060,4,92.25,702.78,26.63,2686.08 +6105,7,E06000060,4,75.13,702.78,26.63,2686.08 +6843,9,E06000060,1,58.96,215.16,26.63,823.8 +7169,9,E06000060,2,73.23,291.24,26.63,1106.74 +7495,9,E06000060,3,83.69,416.06,26.63,1589.35 +7821,9,E06000060,4,92.25,878.48,26.63,3357.59 +8147,10,E06000060,0,60.4,930.03,18.12,3554.64 +40,1,E07000117,1,52.2,94.33,26.1,412.65 +366,1,E07000117,2,59.66,108.27,26.1,476.46 +692,1,E07000117,3,66.17,121.11,26.1,513.94 +1018,1,E07000117,4,72.71,135.06,26.1,562.73 +1344,3,E07000117,1,43.8,86.81,26.1,356.41 +1670,3,E07000117,2,54.06,95.42,26.1,401.38 +1996,3,E07000117,3,58.72,106.12,26.1,438.9 +2322,3,E07000117,4,55.93,120.05,26.1,472.71 +2648,2,E07000117,0,55.36,236.93,18.44,1184.02 +2974,4,E07000117,0,32.8,464.43,18.44,2075.22 +3300,6,E07000117,0,55.36,205.1,18.44,788.03 +3626,8,E07000117,0,32.8,205.1,18.44,788.03 +4356,5,E07000117,1,52.2,82.54,26.1,311.36 +4468,7,E07000117,1,43.8,82.54,26.1,311.36 +4926,5,E07000117,2,59.66,98.62,26.1,378.95 +5064,7,E07000117,2,54.06,98.62,26.1,378.95 +5569,5,E07000117,3,66.17,130.77,26.1,498.96 +5744,7,E07000117,3,58.72,130.77,26.1,498.96 +6317,5,E07000117,4,72.71,187.58,26.1,716.59 +6368,7,E07000117,4,55.93,187.58,26.1,716.59 +6560,9,E07000117,1,52.2,103.19,26.1,389.24 +6886,9,E07000117,2,59.66,123.26,26.1,473.66 +7212,9,E07000117,3,66.17,163.46,26.1,623.7 +7538,9,E07000117,4,72.71,234.49,26.1,895.72 +7864,10,E07000117,0,55.36,256.39,18.44,985.01 +41,1,E08000002,1,52.2,94.33,26.1,412.65 +367,1,E08000002,2,59.66,108.27,26.1,476.46 +693,1,E08000002,3,66.17,121.11,26.1,513.94 +1019,1,E08000002,4,72.71,135.06,26.1,562.73 +1345,3,E08000002,1,43.8,86.81,26.1,356.41 +1671,3,E08000002,2,54.06,95.42,26.1,401.38 +1997,3,E08000002,3,58.72,106.12,26.1,438.9 +2323,3,E08000002,4,55.93,120.05,26.1,472.71 +2649,2,E08000002,0,55.36,236.93,18.44,1184.02 +2975,4,E08000002,0,32.8,464.43,18.44,2075.22 +3301,6,E08000002,0,55.36,226.32,18.44,862.26 +3627,8,E08000002,0,32.8,226.32,18.44,862.26 +4357,5,E08000002,1,52.2,98.62,26.1,378.95 +4469,7,E08000002,1,43.8,98.62,26.1,378.95 +4927,5,E08000002,2,59.66,126.48,26.1,483.95 +5065,7,E08000002,2,54.06,126.48,26.1,483.95 +5570,5,E08000002,3,66.17,148.99,26.1,566.51 +5745,7,E08000002,3,58.72,148.99,26.1,566.51 +6318,5,E08000002,4,72.71,205.81,26.1,784.04 +6369,7,E08000002,4,55.93,205.81,26.1,784.04 +6561,9,E08000002,1,52.2,123.26,26.1,473.66 +6887,9,E08000002,2,59.66,158.09,26.1,604.94 +7213,9,E08000002,3,66.17,186.23,26.1,708.19 +7539,9,E08000002,4,72.71,257.26,26.1,980.11 +7865,10,E08000002,0,55.36,282.91,18.44,1077.83 +42,1,E08000033,1,51.27,92.19,26.1,401.38 +368,1,E08000033,2,58.72,109.33,26.1,495.22 +694,1,E08000033,3,63.38,121.11,26.1,570.26 +1020,1,E08000033,4,73.64,145.77,26.1,630.28 +1346,3,E08000033,1,46.6,82.54,26.1,326.41 +1672,3,E08000033,2,53.13,113.61,26.1,510.2 +1998,3,E08000033,3,56.86,105.05,26.1,401.38 +2324,3,E08000033,4,64.31,122.19,26.1,619.01 +2650,2,E08000033,0,52.28,232.2,18.44,1118.04 +2976,4,E08000033,0,51.26,159.13,18.44,660.1 +3302,6,E08000033,0,52.28,225.15,18.44,858.13 +3628,8,E08000033,0,51.26,225.15,18.44,858.13 +4392,5,E08000033,1,51.27,98.62,26.1,378.95 +4546,7,E08000033,1,46.6,98.62,26.1,378.95 +4814,7,E08000033,2,53.13,114.68,26.1,435.16 +4872,5,E08000033,2,58.72,114.68,26.1,435.16 +5503,5,E08000033,3,63.38,138.27,26.1,525.21 +5850,7,E08000033,3,56.86,138.27,26.1,525.21 +6108,5,E08000033,4,73.64,204.74,26.1,780.33 +6206,7,E08000033,4,64.31,204.74,26.1,780.33 +6562,9,E08000033,1,51.27,123.26,26.1,473.66 +6888,9,E08000033,2,53.13,143.37,26.1,543.94 +7214,9,E08000033,3,63.38,172.84,26.1,656.5 +7540,9,E08000033,4,73.64,255.92,26.1,975.42 +7866,10,E08000033,0,52.28,281.43,18.44,1072.58 +43,1,E07000008,1,54.99,120.05,26.1,525.21 +369,1,E07000008,2,65.24,143.62,26.1,592.76 +695,1,E07000008,3,71.78,157.56,26.1,637.77 +1021,1,E07000008,4,82.02,172.58,26.1,630.28 +1347,3,E07000008,1,50.34,100.76,26.1,465.19 +1673,3,E07000008,2,58.72,118.97,26.1,468.93 +1999,3,E07000008,3,64.31,131.84,26.1,506.45 +2325,3,E07000008,4,71.78,150.06,26.1,562.73 +2651,2,E07000008,0,35.87,223.96,18.44,1464.58 +2977,4,E07000008,0,55.36,134.38,18.44,1101.56 +3303,6,E07000008,0,35.87,412.57,18.44,1576.02 +3629,8,E07000008,0,55.36,412.57,18.44,1576.02 +4125,5,E07000008,1,54.99,189.72,26.1,724.08 +4242,7,E07000008,1,50.34,189.72,26.1,724.08 +4706,5,E07000008,2,65.24,226.16,26.1,866.6 +4968,7,E07000008,2,58.72,226.16,26.1,866.6 +5425,5,E07000008,3,71.78,262.61,26.1,997.89 +5611,7,E07000008,3,64.31,262.61,26.1,997.89 +6135,5,E07000008,4,82.02,375.16,26.1,1433.08 +6273,7,E07000008,4,71.78,375.16,26.1,1433.08 +6563,9,E07000008,1,54.99,237.14,26.1,905.07 +6889,9,E07000008,2,65.24,282.71,26.1,1083.25 +7215,9,E07000008,3,71.78,328.26,26.1,1247.4 +7541,9,E07000008,4,82.02,468.95,26.1,1791.41 +7867,10,E07000008,0,35.87,515.71,18.44,1970.05 +44,1,E09000007,1,66.17,146.84,26.1,697.83 +370,1,E09000007,2,78.29,158.63,26.1,679.04 +696,1,E09000007,3,84.82,168.29,26.1,799.02 +1022,1,E09000007,4,102.51,188.66,26.1,889.11 +1348,3,E09000007,1,58.72,120.05,26.1,517.69 +1674,3,E09000007,2,64.31,140.42,26.1,619.01 +2000,3,E09000007,3,71.78,160.78,26.1,709.03 +2326,3,E09000007,4,83.89,262.61,26.1,922.88 +2652,2,E09000007,0,69.7,313.55,18.44,1741.04 +2978,4,E09000007,0,59.45,367.77,18.44,1394.47 +3304,6,E09000007,0,69.7,1347.32,18.44,5144.65 +3630,8,E09000007,0,59.45,1347.32,18.44,5144.65 +3955,5,E09000007,1,66.17,368.73,26.1,1406.83 +4169,7,E09000007,1,58.72,368.73,26.1,1406.83 +4570,5,E09000007,2,78.29,501.63,26.1,1913.28 +4670,7,E09000007,2,64.31,501.63,26.1,1913.28 +5222,5,E09000007,3,84.82,735.31,26.1,2809.91 +5322,7,E09000007,3,71.78,735.31,26.1,2809.91 +5874,7,E09000007,4,83.89,1226.22,26.1,4678.17 +5907,5,E09000007,4,102.51,1226.22,26.1,4678.17 +6564,9,E09000007,1,66.17,460.91,26.1,1758.58 +6890,9,E09000007,2,78.29,627.05,26.1,2391.62 +7216,9,E09000007,3,84.82,919.14,26.1,3512.36 +7542,9,E09000007,4,102.51,1532.77,26.1,5847.73 +7868,10,E09000007,0,69.7,1684.16,18.44,6430.83 +45,1,E07000192,1,53.13,99.69,26.1,438.9 +371,1,E07000192,2,58.72,117.9,26.1,483.95 +697,1,E07000192,3,69.9,133.98,26.1,566.51 +1023,1,E07000192,4,81.09,162.93,26.1,630.28 +1349,3,E07000192,1,46.6,88.96,26.1,345.17 +1675,3,E07000192,2,50.34,95.42,26.1,363.93 +2001,3,E07000192,3,60.59,105.05,26.1,423.89 +2327,3,E07000192,4,68.97,128.63,26.1,450.21 +2653,2,E07000192,0,38.95,242.82,18.44,1324.3 +2979,4,E07000192,0,46.12,106.09,18.44,371.32 +3305,6,E07000192,0,38.95,218.08,18.44,829.26 +3631,8,E07000192,0,46.12,218.08,18.44,829.26 +4283,5,E07000192,1,53.13,92.19,26.1,352.66 +4504,7,E07000192,1,46.6,92.19,26.1,352.66 +4893,5,E07000192,2,58.72,115.76,26.1,438.9 +5189,7,E07000192,2,50.34,115.76,26.1,438.9 +5524,5,E07000192,3,69.9,136.13,26.1,521.47 +5780,7,E07000192,3,60.59,136.13,26.1,521.47 +6176,5,E07000192,4,81.09,198.3,26.1,754.04 +6441,7,E07000192,4,68.97,198.3,26.1,754.04 +6565,9,E07000192,1,53.13,115.24,26.1,440.83 +6891,9,E07000192,2,58.72,144.7,26.1,548.7 +7217,9,E07000192,3,69.9,170.16,26.1,651.81 +7543,9,E07000192,4,81.09,247.88,26.1,942.59 +7869,10,E07000192,0,38.95,272.59,18.44,1036.63 +46,1,E07000106,1,57.79,124.33,26.1,622.76 +372,1,E07000106,2,71.78,147.91,26.1,660.31 +698,1,E07000106,3,82.02,162.93,26.1,720.34 +1024,1,E07000106,4,90.42,180.08,26.1,784.04 +1350,3,E07000106,1,52.2,116.83,26.1,562.73 +1676,3,E07000106,2,63.38,130.77,26.1,513.94 +2002,3,E07000106,3,68.97,151.13,26.1,656.53 +2328,3,E07000106,4,73.64,186.51,26.1,686.53 +2654,2,E07000106,0,61.49,265.21,18.44,1192.28 +2980,4,E07000106,0,48.18,193.32,18.44,709.56 +3306,6,E07000106,0,61.49,393.7,18.44,1501.75 +3632,8,E07000106,0,48.18,393.7,18.44,1501.75 +3990,5,E07000106,1,57.79,158.63,26.1,611.52 +4057,7,E07000106,1,52.2,158.63,26.1,611.52 +4605,5,E07000106,2,71.78,182.22,26.1,697.83 +4752,7,E07000106,2,63.38,182.22,26.1,697.83 +5257,5,E07000106,3,82.02,230.44,26.1,874.13 +5357,7,E07000106,3,68.97,230.44,26.1,874.13 +5942,5,E07000106,4,90.42,358,26.1,1365.56 +6046,7,E07000106,4,73.64,358,26.1,1365.56 +6566,9,E07000106,1,57.79,198.3,26.1,764.33 +6892,9,E07000106,2,71.78,227.8,26.1,872.27 +7218,9,E07000106,3,82.02,288.07,26.1,1092.63 +7544,9,E07000106,4,90.42,447.51,26.1,1706.99 +7870,10,E07000106,0,61.49,492.14,18.44,1877.19 +47,1,E07000028,1,52.2,94.33,26.1,412.65 +373,1,E07000028,2,59.66,108.27,26.1,476.46 +699,1,E07000028,3,66.17,121.11,26.1,513.94 +1025,1,E07000028,4,72.71,135.06,26.1,562.73 +1351,3,E07000028,1,43.8,86.81,26.1,356.41 +1677,3,E07000028,2,54.06,95.42,26.1,401.38 +2003,3,E07000028,3,58.72,106.12,26.1,438.9 +2329,3,E07000028,4,55.93,120.05,26.1,472.71 +2655,2,E07000028,0,55.36,236.93,18.44,1184.02 +2981,4,E07000028,0,32.8,464.43,18.44,2075.22 +3307,6,E07000028,0,55.36,189.79,18.44,721.98 +3633,8,E07000028,0,32.8,189.79,18.44,721.98 +4358,5,E07000028,1,52.2,93.26,26.1,352.66 +4470,7,E07000028,1,43.8,93.26,26.1,352.66 +4928,5,E07000028,2,59.66,110.39,26.1,420.18 +5066,7,E07000028,2,54.06,110.39,26.1,420.18 +5571,5,E07000028,3,66.17,131.84,26.1,506.45 +5746,7,E07000028,3,58.72,131.84,26.1,506.45 +6319,5,E07000028,4,72.71,172.58,26.1,656.53 +6370,7,E07000028,4,55.93,172.58,26.1,656.53 +6567,9,E07000028,1,52.2,116.56,26.1,440.83 +6893,9,E07000028,2,59.66,138.01,26.1,525.21 +7219,9,E07000028,3,66.17,164.8,26.1,633.05 +7545,9,E07000028,4,72.71,215.73,26.1,820.72 +7871,10,E07000028,0,55.36,237.24,18.44,902.44 +48,1,E07000069,1,54.99,120.05,26.1,525.21 +374,1,E07000069,2,65.24,143.62,26.1,592.76 +700,1,E07000069,3,71.78,157.56,26.1,637.77 +1026,1,E07000069,4,82.02,172.58,26.1,630.28 +1352,3,E07000069,1,50.34,100.76,26.1,465.19 +1678,3,E07000069,2,58.72,118.97,26.1,468.93 +2004,3,E07000069,3,64.31,131.84,26.1,506.45 +2330,3,E07000069,4,71.78,150.06,26.1,562.73 +2656,2,E07000069,0,35.87,223.96,18.44,1464.58 +2982,4,E07000069,0,55.36,134.38,18.44,1101.56 +3308,6,E07000069,0,35.87,312.38,18.44,1192.28 +3634,8,E07000069,0,55.36,312.38,18.44,1192.28 +4126,5,E07000069,1,54.99,143.62,26.1,547.72 +4243,7,E07000069,1,50.34,143.62,26.1,547.72 +4707,5,E07000069,2,65.24,177.93,26.1,675.29 +4969,7,E07000069,2,58.72,177.93,26.1,675.29 +5426,5,E07000069,3,71.78,205.81,26.1,784.04 +5612,7,E07000069,3,64.31,205.81,26.1,784.04 +6136,5,E07000069,4,82.02,284.04,26.1,1084.23 +6274,7,E07000069,4,71.78,284.04,26.1,1084.23 +6568,9,E07000069,1,54.99,179.53,26.1,684.6 +6894,9,E07000069,2,65.24,222.43,26.1,844.13 +7220,9,E07000069,3,71.78,257.26,26.1,980.11 +7546,9,E07000069,4,82.02,355.06,26.1,1355.24 +7872,10,E07000069,0,35.87,390.47,18.44,1490.37 +49,1,E06000056,1,54.99,120.05,26.1,525.21 +375,1,E06000056,2,65.24,143.62,26.1,592.76 +701,1,E06000056,3,71.78,157.56,26.1,637.77 +1027,1,E06000056,4,82.02,172.58,26.1,630.28 +1353,3,E06000056,1,50.34,100.76,26.1,465.19 +1679,3,E06000056,2,58.72,118.97,26.1,468.93 +2005,3,E06000056,3,64.31,131.84,26.1,506.45 +2331,3,E06000056,4,71.78,150.06,26.1,562.73 +2657,2,E06000056,0,35.87,223.96,18.44,1464.58 +2983,4,E06000056,0,55.36,134.38,18.44,1101.56 +3309,6,E06000056,0,35.87,300.58,18.44,1146.92 +3635,8,E06000056,0,55.36,300.58,18.44,1146.92 +4127,5,E06000056,1,54.99,121.11,26.1,461.44 +4244,7,E06000056,1,50.34,121.11,26.1,461.44 +4708,5,E06000056,2,65.24,148.99,26.1,566.51 +4970,7,E06000056,2,58.72,148.99,26.1,566.51 +5427,5,E06000056,3,71.78,194.01,26.1,742.84 +5613,7,E06000056,3,64.31,194.01,26.1,742.84 +6137,5,E06000056,4,82.02,273.34,26.1,1042.97 +6275,7,E06000056,4,71.78,273.34,26.1,1042.97 +6569,9,E06000056,1,54.99,151.41,26.1,576.8 +6895,9,E06000056,2,65.24,186.23,26.1,708.19 +7221,9,E06000056,3,71.78,242.51,26.1,928.52 +7547,9,E06000056,4,82.02,341.67,26.1,1303.68 +7873,10,E06000056,0,35.87,375.73,18.44,1433.64 +50,1,E07000130,1,52.2,100.76,26.1,431.41 +376,1,E07000130,2,62.45,115.76,26.1,457.7 +702,1,E07000130,3,68.97,127.56,26.1,487.69 +1028,1,E07000130,4,76.43,159.7,26.1,589.02 +1354,3,E07000130,1,46.6,91.12,26.1,378.95 +1680,3,E07000130,2,53.13,97.54,26.1,382.66 +2006,3,E07000130,3,58.72,105.05,26.1,420.18 +2332,3,E07000130,4,64.31,123.26,26.1,431.41 +2658,2,E07000130,0,51.26,238.1,18.44,1250.1 +2984,4,E07000130,0,49.2,113.15,18.44,429.07 +3310,6,E07000130,0,51.26,248.71,18.44,953.05 +3636,8,E07000130,0,49.2,248.71,18.44,953.05 +4318,5,E07000130,1,52.2,103.98,26.1,397.64 +4418,7,E07000130,1,46.6,103.98,26.1,397.64 +5014,5,E07000130,2,62.45,126.48,26.1,483.95 +5154,7,E07000130,2,53.13,126.48,26.1,483.95 +5657,5,E07000130,3,68.97,148.99,26.1,566.51 +5815,7,E07000130,3,58.72,148.99,26.1,566.51 +6232,5,E07000130,4,76.43,228.29,26.1,866.6 +6476,7,E07000130,4,64.31,228.29,26.1,866.6 +6570,9,E07000130,1,52.2,129.97,26.1,497.07 +6896,9,E07000130,2,62.45,158.09,26.1,604.94 +7222,9,E07000130,3,68.97,186.23,26.1,708.19 +7548,9,E07000130,4,76.43,285.39,26.1,1083.25 +7874,10,E07000130,0,51.26,310.9,18.44,1191.33 +51,1,E07000070,1,54.99,120.05,26.1,525.21 +377,1,E07000070,2,65.24,143.62,26.1,592.76 +703,1,E07000070,3,71.78,157.56,26.1,637.77 +1029,1,E07000070,4,82.02,172.58,26.1,630.28 +1355,3,E07000070,1,50.34,100.76,26.1,465.19 +1681,3,E07000070,2,58.72,118.97,26.1,468.93 +2007,3,E07000070,3,64.31,131.84,26.1,506.45 +2333,3,E07000070,4,71.78,150.06,26.1,562.73 +2659,2,E07000070,0,35.87,223.96,18.44,1464.58 +2985,4,E07000070,0,55.36,134.38,18.44,1101.56 +3311,6,E07000070,0,35.87,412.57,18.44,1576.02 +3637,8,E07000070,0,55.36,412.57,18.44,1576.02 +4128,5,E07000070,1,54.99,143.62,26.1,547.72 +4245,7,E07000070,1,50.34,143.62,26.1,547.72 +4709,5,E07000070,2,65.24,182.22,26.1,697.83 +4971,7,E07000070,2,58.72,182.22,26.1,697.83 +5428,5,E07000070,3,71.78,216.52,26.1,829.12 +5614,7,E07000070,3,64.31,216.52,26.1,829.12 +6138,5,E07000070,4,82.02,375.16,26.1,1433.08 +6276,7,E07000070,4,71.78,375.16,26.1,1433.08 +6571,9,E07000070,1,54.99,179.53,26.1,684.6 +6897,9,E07000070,2,65.24,227.8,26.1,872.27 +7223,9,E07000070,3,71.78,270.66,26.1,1036.39 +7549,9,E07000070,4,82.02,468.95,26.1,1791.41 +7875,10,E07000070,0,35.87,515.71,18.44,1970.05 +52,1,E07000078,1,49.41,108.27,26.1,495.22 +378,1,E07000078,2,55.93,122.19,26.1,510.2 +704,1,E07000078,3,62.45,142.56,26.1,570.26 +1030,1,E07000078,4,71.78,159.7,26.1,686.53 +1356,3,E07000078,1,47.54,90.03,26.1,742.84 +1682,3,E07000078,2,54.99,101.83,26.1,393.89 +2008,3,E07000078,3,62.45,110.39,26.1,446.46 +2334,3,E07000078,4,74.57,131.84,26.1,461.44 +2660,2,E07000078,0,54.33,228.68,18.44,1241.8 +2986,4,E07000078,0,54.33,114.33,18.44,490.95 +3312,6,E07000078,0,54.33,523.37,18.44,1996.89 +3638,8,E07000078,0,54.33,523.37,18.44,1996.89 +3916,7,E07000078,1,47.54,129.7,26.1,498.96 +4200,5,E07000078,1,49.41,129.7,26.1,498.96 +4836,5,E07000078,2,55.93,172.58,26.1,656.53 +5113,7,E07000078,2,54.99,172.58,26.1,656.53 +5467,5,E07000078,3,62.45,216.52,26.1,829.12 +5693,7,E07000078,3,62.45,216.52,26.1,829.12 +6005,5,E07000078,4,71.78,475.91,26.1,1815.77 +6405,7,E07000078,4,74.57,475.91,26.1,1815.77 +6572,9,E07000078,1,49.41,162.13,26.1,623.7 +6898,9,E07000078,2,55.93,215.73,26.1,820.72 +7224,9,E07000078,3,62.45,270.66,26.1,1036.39 +7550,9,E07000078,4,71.78,594.88,26.1,2269.68 +7876,10,E07000078,0,54.33,654.22,18.44,2496.03 +53,1,E07000177,1,57.79,124.33,26.1,622.76 +379,1,E07000177,2,71.78,147.91,26.1,660.31 +705,1,E07000177,3,82.02,162.93,26.1,720.34 +1031,1,E07000177,4,90.42,180.08,26.1,784.04 +1357,3,E07000177,1,52.2,116.83,26.1,562.73 +1683,3,E07000177,2,63.38,130.77,26.1,513.94 +2009,3,E07000177,3,68.97,151.13,26.1,656.53 +2335,3,E07000177,4,73.64,186.51,26.1,686.53 +2661,2,E07000177,0,61.49,265.21,18.44,1192.28 +2987,4,E07000177,0,48.18,193.32,18.44,709.56 +3313,6,E07000177,0,61.49,374.83,18.44,1431.61 +3639,8,E07000177,0,48.18,374.83,18.44,1431.61 +3991,5,E07000177,1,57.79,136.13,26.1,521.47 +4058,7,E07000177,1,52.2,136.13,26.1,521.47 +4606,5,E07000177,2,71.78,172.58,26.1,656.53 +4753,7,E07000177,2,63.38,172.58,26.1,656.53 +5258,5,E07000177,3,82.02,211.17,26.1,806.54 +5358,7,E07000177,3,68.97,211.17,26.1,806.54 +5943,5,E07000177,4,90.42,340.85,26.1,1301.79 +6047,7,E07000177,4,73.64,340.85,26.1,1301.79 +6573,9,E07000177,1,57.79,170.16,26.1,651.81 +6899,9,E07000177,2,71.78,215.73,26.1,820.72 +7225,9,E07000177,3,82.02,263.95,26.1,1008.25 +7551,9,E07000177,4,90.42,426.06,26.1,1627.19 +7877,10,E07000177,0,61.49,468.55,18.44,1789.55 +83,1,E06000049,1,52.2,94.33,26.1,412.65 +409,1,E06000049,2,59.66,108.27,26.1,476.46 +735,1,E06000049,3,66.17,121.11,26.1,513.94 +1061,1,E06000049,4,72.71,135.06,26.1,562.73 +1387,3,E06000049,1,43.8,86.81,26.1,356.41 +1713,3,E06000049,2,54.06,95.42,26.1,401.38 +2039,3,E06000049,3,58.72,106.12,26.1,438.9 +2365,3,E06000049,4,55.93,120.05,26.1,472.71 +2691,2,E06000049,0,55.36,236.93,18.44,1184.02 +3017,4,E06000049,0,32.8,464.43,18.44,2075.22 +3343,6,E06000049,0,55.36,373.65,18.44,1427.48 +3669,8,E06000049,0,32.8,373.65,18.44,1427.48 +4363,5,E06000049,1,52.2,114.68,26.1,435.16 +4475,7,E06000049,1,43.8,114.68,26.1,435.16 +4933,5,E06000049,2,59.66,148.99,26.1,566.51 +5071,7,E06000049,2,54.06,148.99,26.1,566.51 +5576,5,E06000049,3,66.17,194.01,26.1,742.84 +5751,7,E06000049,3,58.72,194.01,26.1,742.84 +6324,5,E06000049,4,72.71,339.77,26.1,1298.05 +6375,7,E06000049,4,55.93,339.77,26.1,1298.05 +6603,9,E06000049,1,52.2,143.37,26.1,543.94 +6929,9,E06000049,2,59.66,186.23,26.1,708.19 +7255,9,E06000049,3,66.17,242.51,26.1,928.52 +7581,9,E06000049,4,72.71,424.73,26.1,1622.57 +7907,10,E06000049,0,55.36,467.08,18.44,1784.37 +54,1,E06000050,1,52.2,94.33,26.1,412.65 +380,1,E06000050,2,59.66,108.27,26.1,476.46 +706,1,E06000050,3,66.17,121.11,26.1,513.94 +1032,1,E06000050,4,72.71,135.06,26.1,562.73 +1358,3,E06000050,1,43.8,86.81,26.1,356.41 +1684,3,E06000050,2,54.06,95.42,26.1,401.38 +2010,3,E06000050,3,58.72,106.12,26.1,438.9 +2336,3,E06000050,4,55.93,120.05,26.1,472.71 +2662,2,E06000050,0,55.36,236.93,18.44,1184.02 +2988,4,E06000050,0,32.8,464.43,18.44,2075.22 +3314,6,E06000050,0,55.36,288.79,18.44,1097.43 +3640,8,E06000050,0,32.8,288.79,18.44,1097.43 +4359,5,E06000050,1,52.2,121.11,26.1,461.44 +4471,7,E06000050,1,43.8,121.11,26.1,461.44 +4929,5,E06000050,2,59.66,143.62,26.1,547.72 +5067,7,E06000050,2,54.06,143.62,26.1,547.72 +5572,5,E06000050,3,66.17,166.14,26.1,634.03 +5747,7,E06000050,3,58.72,166.14,26.1,634.03 +6320,5,E06000050,4,72.71,262.61,26.1,997.89 +6371,7,E06000050,4,55.93,262.61,26.1,997.89 +6574,9,E06000050,1,52.2,151.41,26.1,576.8 +6900,9,E06000050,2,59.66,179.53,26.1,684.6 +7226,9,E06000050,3,66.17,207.68,26.1,792.54 +7552,9,E06000050,4,72.71,328.26,26.1,1247.4 +7878,10,E06000050,0,55.36,360.99,18.44,1371.83 +55,1,E07000034,1,52.2,100.76,26.1,431.41 +381,1,E07000034,2,62.45,115.76,26.1,457.7 +707,1,E07000034,3,68.97,127.56,26.1,487.69 +1033,1,E07000034,4,76.43,159.7,26.1,589.02 +1359,3,E07000034,1,46.6,91.12,26.1,378.95 +1685,3,E07000034,2,53.13,97.54,26.1,382.66 +2011,3,E07000034,3,58.72,105.05,26.1,420.18 +2337,3,E07000034,4,64.31,123.26,26.1,431.41 +2663,2,E07000034,0,51.26,238.1,18.44,1250.1 +2989,4,E07000034,0,49.2,113.15,18.44,429.07 +3315,6,E07000034,0,51.26,207.45,18.44,792.12 +3641,8,E07000034,0,49.2,207.45,18.44,792.12 +4319,5,E07000034,1,52.2,98.62,26.1,378.95 +4419,7,E07000034,1,46.6,98.62,26.1,378.95 +5015,5,E07000034,2,62.45,114.68,26.1,435.16 +5155,7,E07000034,2,53.13,114.68,26.1,435.16 +5658,5,E07000034,3,68.97,136.13,26.1,521.47 +5816,7,E07000034,3,58.72,136.13,26.1,521.47 +6233,5,E07000034,4,76.43,188.66,26.1,720.34 +6477,7,E07000034,4,64.31,188.66,26.1,720.34 +6575,9,E07000034,1,52.2,123.26,26.1,473.66 +6901,9,E07000034,2,62.45,143.37,26.1,543.94 +7227,9,E07000034,3,68.97,170.16,26.1,651.81 +7553,9,E07000034,4,76.43,235.82,26.1,900.41 +7879,10,E07000034,0,51.26,259.31,18.44,990.19 +56,1,E07000225,1,57.79,124.33,26.1,622.76 +382,1,E07000225,2,71.78,147.91,26.1,660.31 +708,1,E07000225,3,82.02,162.93,26.1,720.34 +1034,1,E07000225,4,90.42,180.08,26.1,784.04 +1360,3,E07000225,1,52.2,116.83,26.1,562.73 +1686,3,E07000225,2,63.38,130.77,26.1,513.94 +2012,3,E07000225,3,68.97,151.13,26.1,656.53 +2338,3,E07000225,4,73.64,186.51,26.1,686.53 +2664,2,E07000225,0,61.49,265.21,18.44,1192.28 +2990,4,E07000225,0,48.18,193.32,18.44,709.56 +3316,6,E07000225,0,61.49,473.86,18.44,1811.15 +3642,8,E07000225,0,48.18,473.86,18.44,1811.15 +3992,5,E07000225,1,57.79,148.99,26.1,566.51 +4059,7,E07000225,1,52.2,148.99,26.1,566.51 +4607,5,E07000225,2,71.78,194.01,26.1,742.84 +4754,7,E07000225,2,63.38,194.01,26.1,742.84 +5259,5,E07000225,3,82.02,250.82,26.1,956.69 +5359,7,E07000225,3,68.97,250.82,26.1,956.69 +5944,5,E07000225,4,90.42,430.9,26.1,1646.93 +6048,7,E07000225,4,73.64,430.9,26.1,1646.93 +6576,9,E07000225,1,57.79,186.23,26.1,708.19 +6902,9,E07000225,2,71.78,242.51,26.1,928.52 +7228,9,E07000225,3,82.02,313.51,26.1,1195.85 +7554,9,E07000225,4,90.42,538.61,26.1,2058.67 +7880,10,E07000225,0,61.49,592.32,18.44,2263.94 +58,1,E07000118,1,52.2,94.33,26.1,412.65 +384,1,E07000118,2,59.66,108.27,26.1,476.46 +710,1,E07000118,3,66.17,121.11,26.1,513.94 +1036,1,E07000118,4,72.71,135.06,26.1,562.73 +1362,3,E07000118,1,43.8,86.81,26.1,356.41 +1688,3,E07000118,2,54.06,95.42,26.1,401.38 +2014,3,E07000118,3,58.72,106.12,26.1,438.9 +2340,3,E07000118,4,55.93,120.05,26.1,472.71 +2666,2,E07000118,0,55.36,236.93,18.44,1184.02 +2992,4,E07000118,0,32.8,464.43,18.44,2075.22 +3318,6,E07000118,0,55.36,225.15,18.44,858.13 +3644,8,E07000118,0,32.8,225.15,18.44,858.13 +4360,5,E07000118,1,52.2,97.54,26.1,371.42 +4472,7,E07000118,1,43.8,97.54,26.1,371.42 +4930,5,E07000118,2,59.66,126.48,26.1,483.95 +5068,7,E07000118,2,54.06,126.48,26.1,483.95 +5573,5,E07000118,3,66.17,148.99,26.1,566.51 +5748,7,E07000118,3,58.72,148.99,26.1,566.51 +6321,5,E07000118,4,72.71,204.74,26.1,780.33 +6372,7,E07000118,4,55.93,204.74,26.1,780.33 +6578,9,E07000118,1,52.2,121.95,26.1,464.28 +6904,9,E07000118,2,59.66,158.09,26.1,604.94 +7230,9,E07000118,3,66.17,186.23,26.1,708.19 +7556,9,E07000118,4,72.71,255.92,26.1,975.42 +7882,10,E07000118,0,55.36,281.43,18.44,1072.58 +60,1,E09000001,1,66.17,146.84,26.1,697.83 +386,1,E09000001,2,78.29,158.63,26.1,679.04 +712,1,E09000001,3,84.82,168.29,26.1,799.02 +1038,1,E09000001,4,102.51,188.66,26.1,889.11 +1364,3,E09000001,1,58.72,120.05,26.1,517.69 +1690,3,E09000001,2,64.31,140.42,26.1,619.01 +2016,3,E09000001,3,71.78,160.78,26.1,709.03 +2342,3,E09000001,4,83.89,262.61,26.1,922.88 +2668,2,E09000001,0,69.7,313.55,18.44,1741.04 +2994,4,E09000001,0,59.45,367.77,18.44,1394.47 +3320,6,E09000001,0,69.7,3175.58,18.44,12125.3 +3646,8,E09000001,0,59.45,3175.58,18.44,12125.3 +3956,5,E09000001,1,66.17,389.09,26.1,1485.65 +4170,7,E09000001,1,58.72,389.09,26.1,1485.65 +4571,5,E09000001,2,78.29,496.29,26.1,1894.55 +4671,7,E09000001,2,64.31,496.29,26.1,1894.55 +5223,5,E09000001,3,84.82,932.53,26.1,3560.2 +5323,7,E09000001,3,71.78,932.53,26.1,3560.2 +5875,7,E09000001,4,83.89,2276.66,26.1,8692.36 +5908,5,E09000001,4,102.51,2276.66,26.1,8692.36 +6580,9,E09000001,1,66.17,486.38,26.1,1857.07 +6906,9,E09000001,2,78.29,620.35,26.1,2368.24 +7232,9,E09000001,3,84.82,1165.67,26.1,4450.32 +7558,9,E09000001,4,102.51,2845.82,26.1,10865.47 +7884,10,E09000001,0,69.7,3969.47,18.44,15156.61 +62,1,E07000071,1,54.99,120.05,26.1,525.21 +388,1,E07000071,2,65.24,143.62,26.1,592.76 +714,1,E07000071,3,71.78,157.56,26.1,637.77 +1040,1,E07000071,4,82.02,172.58,26.1,630.28 +1366,3,E07000071,1,50.34,100.76,26.1,465.19 +1692,3,E07000071,2,58.72,118.97,26.1,468.93 +2018,3,E07000071,3,64.31,131.84,26.1,506.45 +2344,3,E07000071,4,71.78,150.06,26.1,562.73 +2670,2,E07000071,0,35.87,223.96,18.44,1464.58 +2996,4,E07000071,0,55.36,134.38,18.44,1101.56 +3322,6,E07000071,0,35.87,312.38,18.44,1192.28 +3648,8,E07000071,0,55.36,312.38,18.44,1192.28 +4129,5,E07000071,1,54.99,124.33,26.1,472.71 +4246,7,E07000071,1,50.34,124.33,26.1,472.71 +4710,5,E07000071,2,65.24,148.99,26.1,566.51 +4972,7,E07000071,2,58.72,148.99,26.1,566.51 +5429,5,E07000071,3,71.78,192.94,26.1,739.1 +5615,7,E07000071,3,64.31,192.94,26.1,739.1 +6139,5,E07000071,4,82.02,284.04,26.1,1084.23 +6277,7,E07000071,4,71.78,284.04,26.1,1084.23 +6582,9,E07000071,1,54.99,155.41,26.1,590.87 +6908,9,E07000071,2,65.24,186.23,26.1,708.19 +7234,9,E07000071,3,71.78,241.18,26.1,923.83 +7560,9,E07000071,4,82.02,355.06,26.1,1355.24 +7886,10,E07000071,0,35.87,390.47,18.44,1490.37 +63,1,E07000029,1,52.2,94.33,26.1,412.65 +389,1,E07000029,2,59.66,108.27,26.1,476.46 +715,1,E07000029,3,66.17,121.11,26.1,513.94 +1041,1,E07000029,4,72.71,135.06,26.1,562.73 +1367,3,E07000029,1,43.8,86.81,26.1,356.41 +1693,3,E07000029,2,54.06,95.42,26.1,401.38 +2019,3,E07000029,3,58.72,106.12,26.1,438.9 +2345,3,E07000029,4,55.93,120.05,26.1,472.71 +2671,2,E07000029,0,55.36,236.93,18.44,1184.02 +2997,4,E07000029,0,32.8,464.43,18.44,2075.22 +3323,6,E07000029,0,55.36,225.15,18.44,858.13 +3649,8,E07000029,0,32.8,225.15,18.44,858.13 +4362,5,E07000029,1,52.2,95.42,26.1,360.19 +4474,7,E07000029,1,43.8,95.42,26.1,360.19 +4932,5,E07000029,2,59.66,115.76,26.1,438.9 +5070,7,E07000029,2,54.06,115.76,26.1,438.9 +5575,5,E07000029,3,66.17,131.84,26.1,506.45 +5750,7,E07000029,3,58.72,131.84,26.1,506.45 +6323,5,E07000029,4,72.71,204.74,26.1,780.33 +6374,7,E07000029,4,55.93,204.74,26.1,780.33 +6583,9,E07000029,1,52.2,119.25,26.1,450.21 +6909,9,E07000029,2,59.66,144.7,26.1,548.7 +7235,9,E07000029,3,66.17,164.8,26.1,633.05 +7561,9,E07000029,4,72.71,255.92,26.1,975.42 +7887,10,E07000029,0,55.36,281.43,18.44,1072.58 +4320,5,E06000061,1,52.2,98.62,26.1,378.95 +65,1,E06000052,1,49.41,108.27,26.1,495.22 +391,1,E06000052,2,55.93,122.19,26.1,510.2 +717,1,E06000052,3,62.45,142.56,26.1,570.26 +1043,1,E06000052,4,71.78,159.7,26.1,686.53 +1369,3,E06000052,1,47.54,90.03,26.1,742.84 +1695,3,E06000052,2,54.99,101.83,26.1,393.89 +2021,3,E06000052,3,62.45,110.39,26.1,446.46 +2347,3,E06000052,4,74.57,131.84,26.1,461.44 +2673,2,E06000052,0,54.33,228.68,18.44,1241.8 +2999,4,E06000052,0,54.33,114.33,18.44,490.95 +3325,6,E06000052,0,54.33,244,18.44,932.37 +3651,8,E06000052,0,54.33,244,18.44,932.37 +3918,7,E06000052,1,47.54,115.76,26.1,438.9 +4202,5,E06000052,1,49.41,115.76,26.1,438.9 +4838,5,E06000052,2,55.93,143.62,26.1,547.72 +5115,7,E06000052,2,54.99,143.62,26.1,547.72 +5469,5,E06000052,3,62.45,168.29,26.1,637.77 +5695,7,E06000052,3,62.45,168.29,26.1,637.77 +6007,5,E06000052,4,71.78,221.88,26.1,847.88 +6407,7,E06000052,4,74.57,221.88,26.1,847.88 +6585,9,E06000052,1,49.41,144.7,26.1,548.7 +6911,9,E06000052,2,55.93,179.53,26.1,684.6 +7237,9,E06000052,3,62.45,210.37,26.1,797.3 +7563,9,E06000052,4,71.78,277.34,26.1,1059.84 +7889,10,E06000052,0,54.33,305,18.44,1165.47 +66,1,E07000079,1,49.41,108.27,26.1,495.22 +392,1,E07000079,2,55.93,122.19,26.1,510.2 +718,1,E07000079,3,62.45,142.56,26.1,570.26 +1044,1,E07000079,4,71.78,159.7,26.1,686.53 +1370,3,E07000079,1,47.54,90.03,26.1,742.84 +1696,3,E07000079,2,54.99,101.83,26.1,393.89 +2022,3,E07000079,3,62.45,110.39,26.1,446.46 +2348,3,E07000079,4,74.57,131.84,26.1,461.44 +2674,2,E07000079,0,54.33,228.68,18.44,1241.8 +3000,4,E07000079,0,54.33,114.33,18.44,490.95 +3326,6,E07000079,0,54.33,497.44,18.44,1893.71 +3652,8,E07000079,0,54.33,497.44,18.44,1893.71 +3919,7,E07000079,1,47.54,126.48,26.1,483.95 +4203,5,E07000079,1,49.41,126.48,26.1,483.95 +4839,5,E07000079,2,55.93,166.14,26.1,634.03 +5116,7,E07000079,2,54.99,166.14,26.1,634.03 +5470,5,E07000079,3,62.45,205.81,26.1,784.04 +5696,7,E07000079,3,62.45,205.81,26.1,784.04 +6008,5,E07000079,4,71.78,452.33,26.1,1722 +6408,7,E07000079,4,74.57,452.33,26.1,1722 +6586,9,E07000079,1,49.41,158.09,26.1,604.94 +6912,9,E07000079,2,55.93,207.68,26.1,792.54 +7238,9,E07000079,3,62.45,257.26,26.1,980.11 +7564,9,E07000079,4,71.78,565.41,26.1,2152.54 +7890,10,E07000079,0,54.33,621.79,18.44,2367.12 +80,1,E06000047,1,51.27,88.96,26.1,345.17 +406,1,E06000047,2,57.79,102.91,26.1,423.89 +732,1,E06000047,3,61.52,114.68,26.1,562.73 +1058,1,E06000047,4,70.84,128.63,26.1,491.47 +1384,3,E06000047,1,42.87,100.76,26.1,371.42 +1710,3,E06000047,2,50.34,91.12,26.1,393.89 +2036,3,E06000047,3,54.06,106.12,26.1,438.9 +2362,3,E06000047,4,56.86,116.83,26.1,423.89 +2688,2,E06000047,0,55.36,234.56,18.44,1179.92 +3014,4,E06000047,0,47.15,251.08,18.44,998.38 +3340,6,E06000047,0,55.36,200.38,18.44,767.38 +3666,8,E06000047,0,47.15,200.38,18.44,767.38 +4452,7,E06000047,1,42.87,126.48,26.1,483.95 +4533,5,E06000047,1,51.27,126.48,26.1,483.95 +5048,5,E06000047,2,57.79,103.98,26.1,397.64 +5099,7,E06000047,2,50.34,103.98,26.1,397.64 +5553,5,E06000047,3,61.52,124.33,26.1,472.71 +5728,7,E06000047,3,54.06,124.33,26.1,472.71 +6352,5,E06000047,4,70.84,182.22,26.1,697.83 +6510,7,E06000047,4,56.86,182.22,26.1,697.83 +6600,9,E06000047,1,42.87,158.09,26.1,604.94 +6926,9,E06000047,2,57.79,129.97,26.1,497.07 +7252,9,E06000047,3,61.52,155.41,26.1,590.87 +7578,9,E06000047,4,70.84,227.8,26.1,872.27 +7904,10,E06000047,0,55.36,250.47,18.44,959.18 +67,1,E08000026,1,53.13,99.69,26.1,438.9 +393,1,E08000026,2,58.72,117.9,26.1,483.95 +719,1,E08000026,3,69.9,133.98,26.1,566.51 +1045,1,E08000026,4,81.09,162.93,26.1,630.28 +1371,3,E08000026,1,46.6,88.96,26.1,345.17 +1697,3,E08000026,2,50.34,95.42,26.1,363.93 +2023,3,E08000026,3,60.59,105.05,26.1,423.89 +2349,3,E08000026,4,68.97,128.63,26.1,450.21 +2675,2,E08000026,0,38.95,242.82,18.44,1324.3 +3001,4,E08000026,0,46.12,106.09,18.44,371.32 +3327,6,E08000026,0,38.95,261.68,18.44,998.38 +3653,8,E08000026,0,46.12,261.68,18.44,998.38 +4284,5,E08000026,1,53.13,114.68,26.1,435.16 +4505,7,E08000026,1,46.6,114.68,26.1,435.16 +4894,5,E08000026,2,58.72,131.84,26.1,506.45 +5190,7,E08000026,2,50.34,131.84,26.1,506.45 +5525,5,E08000026,3,69.9,148.99,26.1,566.51 +5781,7,E08000026,3,60.59,148.99,26.1,566.51 +6177,5,E08000026,4,81.09,237.96,26.1,907.87 +6442,7,E08000026,4,68.97,237.96,26.1,907.87 +6587,9,E08000026,1,53.13,143.37,26.1,543.94 +6913,9,E08000026,2,58.72,164.8,26.1,633.05 +7239,9,E08000026,3,69.9,186.23,26.1,708.19 +7565,9,E08000026,4,81.09,297.46,26.1,1134.81 +7891,10,E08000026,0,38.95,327.11,18.44,1248.07 +68,1,E07000163,1,51.27,92.19,26.1,401.38 +394,1,E07000163,2,58.72,109.33,26.1,495.22 +720,1,E07000163,3,63.38,121.11,26.1,570.26 +1046,1,E07000163,4,73.64,145.77,26.1,630.28 +1372,3,E07000163,1,46.6,82.54,26.1,326.41 +1698,3,E07000163,2,53.13,113.61,26.1,510.2 +2024,3,E07000163,3,56.86,105.05,26.1,401.38 +2350,3,E07000163,4,64.31,122.19,26.1,619.01 +2676,2,E07000163,0,52.28,232.2,18.44,1118.04 +3002,4,E07000163,0,51.26,159.13,18.44,660.1 +3328,6,E07000163,0,52.28,213.35,18.44,816.83 +3654,8,E07000163,0,51.26,213.35,18.44,816.83 +4393,5,E07000163,1,51.27,100.76,26.1,386.37 +4547,7,E07000163,1,46.6,100.76,26.1,386.37 +4815,7,E07000163,2,53.13,130.77,26.1,502.67 +4873,5,E07000163,2,58.72,130.77,26.1,502.67 +5504,5,E07000163,3,63.38,148.99,26.1,566.51 +5851,7,E07000163,3,56.86,148.99,26.1,566.51 +6109,5,E07000163,4,73.64,194.01,26.1,742.84 +6207,7,E07000163,4,64.31,194.01,26.1,742.84 +6588,9,E07000163,1,51.27,125.95,26.1,483.04 +6914,9,E07000163,2,53.13,163.46,26.1,628.36 +7240,9,E07000163,3,63.38,186.23,26.1,708.19 +7566,9,E07000163,4,73.64,242.51,26.1,928.52 +7892,10,E07000163,0,52.28,266.69,18.44,1021.09 +69,1,E07000226,1,57.79,124.33,26.1,622.76 +395,1,E07000226,2,71.78,147.91,26.1,660.31 +721,1,E07000226,3,82.02,162.93,26.1,720.34 +1047,1,E07000226,4,90.42,180.08,26.1,784.04 +1373,3,E07000226,1,52.2,116.83,26.1,562.73 +1699,3,E07000226,2,63.38,130.77,26.1,513.94 +2025,3,E07000226,3,68.97,151.13,26.1,656.53 +2351,3,E07000226,4,73.64,186.51,26.1,686.53 +2677,2,E07000226,0,61.49,265.21,18.44,1192.28 +3003,4,E07000226,0,48.18,193.32,18.44,709.56 +3329,6,E07000226,0,61.49,350.07,18.44,1332.59 +3655,8,E07000226,0,48.18,350.07,18.44,1332.59 +3994,5,E07000226,1,57.79,155.41,26.1,592.76 +4061,7,E07000226,1,52.2,155.41,26.1,592.76 +4609,5,E07000226,2,71.78,194.01,26.1,742.84 +4756,7,E07000226,2,63.38,194.01,26.1,742.84 +5261,5,E07000226,3,82.02,229.37,26.1,870.35 +5361,7,E07000226,3,68.97,229.37,26.1,870.35 +5946,5,E07000226,4,90.42,318.35,26.1,1211.77 +6050,7,E07000226,4,73.64,318.35,26.1,1211.77 +6589,9,E07000226,1,57.79,194.27,26.1,740.92 +6915,9,E07000226,2,71.78,242.51,26.1,928.52 +7241,9,E07000226,3,82.02,286.72,26.1,1087.94 +7567,9,E07000226,4,90.42,397.93,26.1,1514.63 +7893,10,E07000226,0,61.49,437.59,18.44,1665.79 +70,1,E09000008,1,66.17,146.84,26.1,697.83 +396,1,E09000008,2,78.29,158.63,26.1,679.04 +722,1,E09000008,3,84.82,168.29,26.1,799.02 +1048,1,E09000008,4,102.51,188.66,26.1,889.11 +1374,3,E09000008,1,58.72,120.05,26.1,517.69 +1700,3,E09000008,2,64.31,140.42,26.1,619.01 +2026,3,E09000008,3,71.78,160.78,26.1,709.03 +2352,3,E09000008,4,83.89,262.61,26.1,922.88 +2678,2,E09000008,0,69.7,313.55,18.44,1741.04 +3004,4,E09000008,0,59.45,367.77,18.44,1394.47 +3330,6,E09000008,0,69.7,432.61,18.44,1650.25 +3656,8,E09000008,0,59.45,432.61,18.44,1650.25 +3957,5,E09000008,1,66.17,177.93,26.1,675.29 +4171,7,E09000008,1,58.72,177.93,26.1,675.29 +4572,5,E09000008,2,78.29,216.52,26.1,829.12 +4672,7,E09000008,2,64.31,216.52,26.1,829.12 +5224,5,E09000008,3,84.82,273.34,26.1,1042.97 +5324,7,E09000008,3,71.78,273.34,26.1,1042.97 +5876,7,E09000008,4,83.89,394.47,26.1,1500.66 +5909,5,E09000008,4,102.51,394.47,26.1,1500.66 +6590,9,E09000008,1,66.17,222.43,26.1,844.13 +6916,9,E09000008,2,78.29,270.66,26.1,1036.39 +7242,9,E09000008,3,84.82,341.67,26.1,1303.68 +7568,9,E09000008,4,102.51,493.07,26.1,1875.83 +7894,10,E09000008,0,69.7,540.75,18.44,2062.83 +71,1,E07000096,1,54.99,120.05,26.1,525.21 +397,1,E07000096,2,65.24,143.62,26.1,592.76 +723,1,E07000096,3,71.78,157.56,26.1,637.77 +1049,1,E07000096,4,82.02,172.58,26.1,630.28 +1375,3,E07000096,1,50.34,100.76,26.1,465.19 +1701,3,E07000096,2,58.72,118.97,26.1,468.93 +2027,3,E07000096,3,64.31,131.84,26.1,506.45 +2353,3,E07000096,4,71.78,150.06,26.1,562.73 +2679,2,E07000096,0,35.87,223.96,18.44,1464.58 +3005,4,E07000096,0,55.36,134.38,18.44,1101.56 +3331,6,E07000096,0,35.87,498.61,18.44,1901.94 +3657,8,E07000096,0,55.36,498.61,18.44,1901.94 +4130,5,E07000096,1,54.99,148.99,26.1,566.51 +4247,7,E07000096,1,50.34,148.99,26.1,566.51 +4711,5,E07000096,2,65.24,194.01,26.1,742.84 +4973,7,E07000096,2,58.72,194.01,26.1,742.84 +5430,5,E07000096,3,71.78,273.34,26.1,1042.97 +5616,7,E07000096,3,64.31,273.34,26.1,1042.97 +6140,5,E07000096,4,82.02,453.4,26.1,1729.49 +6278,7,E07000096,4,71.78,453.4,26.1,1729.49 +6591,9,E07000096,1,54.99,186.23,26.1,708.19 +6917,9,E07000096,2,65.24,242.51,26.1,928.52 +7243,9,E07000096,3,71.78,341.67,26.1,1303.68 +7569,9,E07000096,4,82.02,566.75,26.1,2161.85 +7895,10,E07000096,0,35.87,623.27,18.44,2377.41 +72,1,E06000005,1,51.27,88.96,26.1,345.17 +398,1,E06000005,2,57.79,102.91,26.1,423.89 +724,1,E06000005,3,61.52,114.68,26.1,562.73 +1050,1,E06000005,4,70.84,128.63,26.1,491.47 +1376,3,E06000005,1,42.87,100.76,26.1,371.42 +1702,3,E06000005,2,50.34,91.12,26.1,393.89 +2028,3,E06000005,3,54.06,106.12,26.1,438.9 +2354,3,E06000005,4,56.86,116.83,26.1,423.89 +2680,2,E06000005,0,55.36,234.56,18.44,1179.92 +3006,4,E06000005,0,47.15,251.08,18.44,998.38 +3332,6,E06000005,0,55.36,207.45,18.44,792.12 +3658,8,E06000005,0,47.15,207.45,18.44,792.12 +4451,7,E06000005,1,42.87,91.12,26.1,345.17 +4532,5,E06000005,1,51.27,91.12,26.1,345.17 +5047,5,E06000005,2,57.79,110.39,26.1,420.18 +5098,7,E06000005,2,50.34,110.39,26.1,420.18 +5552,5,E06000005,3,61.52,131.84,26.1,506.45 +5727,7,E06000005,3,54.06,131.84,26.1,506.45 +6351,5,E06000005,4,70.84,188.66,26.1,720.34 +6509,7,E06000005,4,56.86,188.66,26.1,720.34 +6592,9,E06000005,1,42.87,113.9,26.1,431.41 +6918,9,E06000005,2,57.79,138.01,26.1,525.21 +7244,9,E06000005,3,61.52,164.8,26.1,633.05 +7570,9,E06000005,4,70.84,235.82,26.1,900.41 +7896,10,E06000005,0,55.36,259.31,18.44,990.19 +73,1,E07000107,1,57.79,124.33,26.1,622.76 +399,1,E07000107,2,71.78,147.91,26.1,660.31 +725,1,E07000107,3,82.02,162.93,26.1,720.34 +1051,1,E07000107,4,90.42,180.08,26.1,784.04 +1377,3,E07000107,1,52.2,116.83,26.1,562.73 +1703,3,E07000107,2,63.38,130.77,26.1,513.94 +2029,3,E07000107,3,68.97,151.13,26.1,656.53 +2355,3,E07000107,4,73.64,186.51,26.1,686.53 +2681,2,E07000107,0,61.49,265.21,18.44,1192.28 +3007,4,E07000107,0,48.18,193.32,18.44,709.56 +3333,6,E07000107,0,61.49,363.05,18.44,1386.18 +3659,8,E07000107,0,48.18,363.05,18.44,1386.18 +3995,5,E07000107,1,57.79,138.27,26.1,525.21 +4062,7,E07000107,1,52.2,138.27,26.1,525.21 +4610,5,E07000107,2,71.78,182.22,26.1,697.83 +4757,7,E07000107,2,63.38,182.22,26.1,697.83 +5262,5,E07000107,3,82.02,211.17,26.1,806.54 +5362,7,E07000107,3,68.97,211.17,26.1,806.54 +5947,5,E07000107,4,90.42,330.14,26.1,1260.53 +6051,7,E07000107,4,73.64,330.14,26.1,1260.53 +6593,9,E07000107,1,57.79,172.84,26.1,656.5 +6919,9,E07000107,2,71.78,227.8,26.1,872.27 +7245,9,E07000107,3,82.02,263.95,26.1,1008.25 +7571,9,E07000107,4,90.42,412.67,26.1,1575.63 +7897,10,E07000107,0,61.49,453.82,18.44,1732.78 +75,1,E06000015,1,52.2,100.76,26.1,431.41 +401,1,E06000015,2,62.45,115.76,26.1,457.7 +727,1,E06000015,3,68.97,127.56,26.1,487.69 +1053,1,E06000015,4,76.43,159.7,26.1,589.02 +1379,3,E06000015,1,46.6,91.12,26.1,378.95 +1705,3,E06000015,2,53.13,97.54,26.1,382.66 +2031,3,E06000015,3,58.72,105.05,26.1,420.18 +2357,3,E06000015,4,64.31,123.26,26.1,431.41 +2683,2,E06000015,0,51.26,238.1,18.44,1250.1 +3009,4,E06000015,0,49.2,113.15,18.44,429.07 +3335,6,E06000015,0,51.26,248.71,18.44,953.05 +3661,8,E06000015,0,49.2,248.71,18.44,953.05 +4322,5,E06000015,1,52.2,98.62,26.1,378.95 +4422,7,E06000015,1,46.6,98.62,26.1,378.95 +5018,5,E06000015,2,62.45,121.11,26.1,461.44 +5158,7,E06000015,2,53.13,121.11,26.1,461.44 +5661,5,E06000015,3,68.97,143.62,26.1,547.72 +5819,7,E06000015,3,58.72,143.62,26.1,547.72 +6236,5,E06000015,4,76.43,228.29,26.1,866.6 +6480,7,E06000015,4,64.31,228.29,26.1,866.6 +6595,9,E06000015,1,52.2,123.26,26.1,473.66 +6921,9,E06000015,2,62.45,151.41,26.1,576.8 +7247,9,E06000015,3,68.97,179.53,26.1,684.6 +7573,9,E06000015,4,76.43,285.39,26.1,1083.25 +7899,10,E06000015,0,51.26,310.9,18.44,1191.33 +76,1,E07000035,1,52.2,100.76,26.1,431.41 +402,1,E07000035,2,62.45,115.76,26.1,457.7 +728,1,E07000035,3,68.97,127.56,26.1,487.69 +1054,1,E07000035,4,76.43,159.7,26.1,589.02 +1380,3,E07000035,1,46.6,91.12,26.1,378.95 +1706,3,E07000035,2,53.13,97.54,26.1,382.66 +2032,3,E07000035,3,58.72,105.05,26.1,420.18 +2358,3,E07000035,4,64.31,123.26,26.1,431.41 +2684,2,E07000035,0,51.26,238.1,18.44,1250.1 +3010,4,E07000035,0,49.2,113.15,18.44,429.07 +3336,6,E07000035,0,51.26,272.3,18.44,1039.68 +3662,8,E07000035,0,49.2,272.3,18.44,1039.68 +4323,5,E07000035,1,52.2,110.39,26.1,420.18 +4423,7,E07000035,1,46.6,110.39,26.1,420.18 +5019,5,E07000035,2,62.45,136.13,26.1,521.47 +5159,7,E07000035,2,53.13,136.13,26.1,521.47 +5662,5,E07000035,3,68.97,159.7,26.1,611.52 +5820,7,E07000035,3,58.72,159.7,26.1,611.52 +6237,5,E07000035,4,76.43,247.6,26.1,945.39 +6481,7,E07000035,4,64.31,247.6,26.1,945.39 +6596,9,E07000035,1,52.2,138.01,26.1,525.21 +6922,9,E07000035,2,62.45,170.16,26.1,651.81 +7248,9,E07000035,3,68.97,199.62,26.1,764.33 +7574,9,E07000035,4,76.43,309.5,26.1,1181.74 +7900,10,E07000035,0,51.26,340.38,18.44,1299.55 +77,1,E08000017,1,51.27,92.19,26.1,401.38 +403,1,E08000017,2,58.72,109.33,26.1,495.22 +729,1,E08000017,3,63.38,121.11,26.1,570.26 +1055,1,E08000017,4,73.64,145.77,26.1,630.28 +1381,3,E08000017,1,46.6,82.54,26.1,326.41 +1707,3,E08000017,2,53.13,113.61,26.1,510.2 +2033,3,E08000017,3,56.86,105.05,26.1,401.38 +2359,3,E08000017,4,64.31,122.19,26.1,619.01 +2685,2,E08000017,0,52.28,232.2,18.44,1118.04 +3011,4,E08000017,0,51.26,159.13,18.44,660.1 +3337,6,E08000017,0,52.28,189.79,18.44,721.98 +3663,8,E08000017,0,51.26,189.79,18.44,721.98 +4394,5,E08000017,1,51.27,92.19,26.1,348.92 +4548,7,E08000017,1,46.6,92.19,26.1,348.92 +4816,7,E08000017,2,53.13,110.39,26.1,420.18 +4874,5,E08000017,2,58.72,110.39,26.1,420.18 +5505,5,E08000017,3,63.38,126.48,26.1,483.95 +5852,7,E08000017,3,56.86,126.48,26.1,483.95 +6110,5,E08000017,4,73.64,172.58,26.1,656.53 +6208,7,E08000017,4,64.31,172.58,26.1,656.53 +6597,9,E08000017,1,51.27,115.24,26.1,436.1 +6923,9,E08000017,2,53.13,138.01,26.1,525.21 +7249,9,E08000017,3,63.38,158.09,26.1,604.94 +7575,9,E08000017,4,73.64,215.73,26.1,820.72 +7901,10,E08000017,0,52.28,237.24,18.44,902.44 +85,1,E06000059,1,49.41,108.27,26.1,495.22 +411,1,E06000059,2,55.93,122.19,26.1,510.2 +737,1,E06000059,3,62.45,142.56,26.1,570.26 +1063,1,E06000059,4,71.78,159.7,26.1,686.53 +1389,3,E06000059,1,47.54,90.03,26.1,742.84 +1715,3,E06000059,2,54.99,101.83,26.1,393.89 +2041,3,E06000059,3,62.45,110.39,26.1,446.46 +2367,3,E06000059,4,74.57,131.84,26.1,461.44 +2693,2,E06000059,0,54.33,228.68,18.44,1241.8 +3019,4,E06000059,0,54.33,114.33,18.44,490.95 +3345,6,E06000059,0,54.33,398.42,18.44,1522.36 +3671,8,E06000059,0,54.33,398.42,18.44,1522.36 +3921,7,E06000059,1,47.54,136.13,26.1,521.47 +4205,5,E06000059,1,49.41,136.13,26.1,521.47 +4841,5,E06000059,2,55.93,172.58,26.1,656.53 +5118,7,E06000059,2,54.99,172.58,26.1,656.53 +5472,5,E06000059,3,62.45,211.17,26.1,806.54 +5698,7,E06000059,3,62.45,211.17,26.1,806.54 +6010,5,E06000059,4,71.78,362.28,26.1,1384.32 +6410,7,E06000059,4,74.57,362.28,26.1,1384.32 +6605,9,E06000059,1,49.41,170.16,26.1,651.81 +6931,9,E06000059,2,55.93,215.73,26.1,820.72 +7257,9,E06000059,3,62.45,263.95,26.1,1008.25 +7583,9,E06000059,4,71.78,452.87,26.1,1730.47 +7909,10,E06000059,0,54.33,498.02,18.44,1902.99 +78,1,E07000108,1,57.79,124.33,26.1,622.76 +404,1,E07000108,2,71.78,147.91,26.1,660.31 +730,1,E07000108,3,82.02,162.93,26.1,720.34 +1056,1,E07000108,4,90.42,180.08,26.1,784.04 +1382,3,E07000108,1,52.2,116.83,26.1,562.73 +1708,3,E07000108,2,63.38,130.77,26.1,513.94 +2034,3,E07000108,3,68.97,151.13,26.1,656.53 +2360,3,E07000108,4,73.64,186.51,26.1,686.53 +2686,2,E07000108,0,61.49,265.21,18.44,1192.28 +3012,4,E07000108,0,48.18,193.32,18.44,709.56 +3338,6,E07000108,0,61.49,264.04,18.44,1006.67 +3664,8,E07000108,0,48.18,264.04,18.44,1006.67 +3996,5,E07000108,1,57.79,106.12,26.1,405.16 +4063,7,E07000108,1,52.2,106.12,26.1,405.16 +4611,5,E07000108,2,71.78,143.62,26.1,547.72 +4758,7,E07000108,2,63.38,143.62,26.1,547.72 +5263,5,E07000108,3,82.02,172.58,26.1,656.53 +5363,7,E07000108,3,68.97,172.58,26.1,656.53 +5948,5,E07000108,4,90.42,240.09,26.1,915.39 +6052,7,E07000108,4,73.64,240.09,26.1,915.39 +6598,9,E07000108,1,57.79,132.65,26.1,506.45 +6924,9,E07000108,2,71.78,179.53,26.1,684.6 +7250,9,E07000108,3,82.02,215.73,26.1,820.72 +7576,9,E07000108,4,90.42,300.12,26.1,1144.22 +7902,10,E07000108,0,61.49,330.05,18.44,1258.36 +79,1,E08000027,1,53.13,99.69,26.1,438.9 +405,1,E08000027,2,58.72,117.9,26.1,483.95 +731,1,E08000027,3,69.9,133.98,26.1,566.51 +1057,1,E08000027,4,81.09,162.93,26.1,630.28 +1383,3,E08000027,1,46.6,88.96,26.1,345.17 +1709,3,E08000027,2,50.34,95.42,26.1,363.93 +2035,3,E08000027,3,60.59,105.05,26.1,423.89 +2361,3,E08000027,4,68.97,128.63,26.1,450.21 +2687,2,E08000027,0,38.95,242.82,18.44,1324.3 +3013,4,E08000027,0,46.12,106.09,18.44,371.32 +3339,6,E08000027,0,38.95,213.35,18.44,816.83 +3665,8,E08000027,0,46.12,213.35,18.44,816.83 +4285,5,E08000027,1,53.13,98.62,26.1,378.95 +4506,7,E08000027,1,46.6,98.62,26.1,378.95 +4895,5,E08000027,2,58.72,121.11,26.1,461.44 +5191,7,E08000027,2,50.34,121.11,26.1,461.44 +5526,5,E08000027,3,69.9,143.62,26.1,547.72 +5782,7,E08000027,3,60.59,143.62,26.1,547.72 +6178,5,E08000027,4,81.09,194.01,26.1,742.84 +6443,7,E08000027,4,68.97,194.01,26.1,742.84 +6599,9,E08000027,1,53.13,123.26,26.1,473.66 +6925,9,E08000027,2,58.72,151.41,26.1,576.8 +7251,9,E08000027,3,69.9,179.53,26.1,684.6 +7577,9,E08000027,4,81.09,242.51,26.1,928.52 +7903,10,E08000027,0,38.95,266.69,18.44,1021.09 +81,1,E09000009,1,66.17,146.84,26.1,697.83 +407,1,E09000009,2,78.29,158.63,26.1,679.04 +733,1,E09000009,3,84.82,168.29,26.1,799.02 +1059,1,E09000009,4,102.51,188.66,26.1,889.11 +1385,3,E09000009,1,58.72,120.05,26.1,517.69 +1711,3,E09000009,2,64.31,140.42,26.1,619.01 +2037,3,E09000009,3,71.78,160.78,26.1,709.03 +2363,3,E09000009,4,83.89,262.61,26.1,922.88 +2689,2,E09000009,0,69.7,313.55,18.44,1741.04 +3015,4,E09000009,0,59.45,367.77,18.44,1394.47 +3341,6,E09000009,0,69.7,674.26,18.44,2574.39 +3667,8,E09000009,0,59.45,674.26,18.44,2574.39 +3958,5,E09000009,1,66.17,240.09,26.1,919.14 +4172,7,E09000009,1,58.72,240.09,26.1,919.14 +4573,5,E09000009,2,78.29,319.42,26.1,1219.26 +4673,7,E09000009,2,64.31,319.42,26.1,1219.26 +5225,5,E09000009,3,84.82,363.36,26.1,1388.07 +5325,7,E09000009,3,71.78,363.36,26.1,1388.07 +5877,7,E09000009,4,83.89,614.19,26.1,2340.98 +5910,5,E09000009,4,102.51,614.19,26.1,2340.98 +6601,9,E09000009,1,66.17,300.12,26.1,1148.91 +6927,9,E09000009,2,78.29,399.29,26.1,1524.08 +7253,9,E09000009,3,84.82,454.21,26.1,1735.13 +7579,9,E09000009,4,102.51,767.74,26.1,2926.25 +7905,10,E09000009,0,69.7,842.81,18.44,3218.01 +82,1,E07000009,1,54.99,120.05,26.1,525.21 +408,1,E07000009,2,65.24,143.62,26.1,592.76 +734,1,E07000009,3,71.78,157.56,26.1,637.77 +1060,1,E07000009,4,82.02,172.58,26.1,630.28 +1386,3,E07000009,1,50.34,100.76,26.1,465.19 +1712,3,E07000009,2,58.72,118.97,26.1,468.93 +2038,3,E07000009,3,64.31,131.84,26.1,506.45 +2364,3,E07000009,4,71.78,150.06,26.1,562.73 +2690,2,E07000009,0,35.87,223.96,18.44,1464.58 +3016,4,E07000009,0,55.36,134.38,18.44,1101.56 +3342,6,E07000009,0,35.87,338.29,18.44,1291.33 +3668,8,E07000009,0,55.36,338.29,18.44,1291.33 +4131,5,E07000009,1,54.99,115.76,26.1,438.9 +4248,7,E07000009,1,50.34,115.76,26.1,438.9 +4712,5,E07000009,2,65.24,143.62,26.1,547.72 +4974,7,E07000009,2,58.72,143.62,26.1,547.72 +5431,5,E07000009,3,71.78,183.29,26.1,701.58 +5617,7,E07000009,3,64.31,183.29,26.1,701.58 +6141,5,E07000009,4,82.02,307.63,26.1,1174.22 +6279,7,E07000009,4,71.78,307.63,26.1,1174.22 +6602,9,E07000009,1,54.99,144.7,26.1,548.7 +6928,9,E07000009,2,65.24,179.53,26.1,684.6 +7254,9,E07000009,3,71.78,229.13,26.1,876.89 +7580,9,E07000009,4,82.02,384.53,26.1,1467.76 +7906,10,E07000009,0,35.87,422.87,18.44,1614.17 +84,1,E07000040,1,49.41,108.27,26.1,495.22 +410,1,E07000040,2,55.93,122.19,26.1,510.2 +736,1,E07000040,3,62.45,142.56,26.1,570.26 +1062,1,E07000040,4,71.78,159.7,26.1,686.53 +1388,3,E07000040,1,47.54,90.03,26.1,742.84 +1714,3,E07000040,2,54.99,101.83,26.1,393.89 +2040,3,E07000040,3,62.45,110.39,26.1,446.46 +2366,3,E07000040,4,74.57,131.84,26.1,461.44 +2692,2,E07000040,0,54.33,228.68,18.44,1241.8 +3018,4,E07000040,0,54.33,114.33,18.44,490.95 +3344,6,E07000040,0,54.33,312.38,18.44,1192.28 +3670,8,E07000040,0,54.33,312.38,18.44,1192.28 +3920,7,E07000040,1,47.54,115.76,26.1,438.9 +4204,5,E07000040,1,49.41,115.76,26.1,438.9 +4840,5,E07000040,2,55.93,148.99,26.1,566.51 +5117,7,E07000040,2,54.99,148.99,26.1,566.51 +5471,5,E07000040,3,62.45,183.29,26.1,701.58 +5697,7,E07000040,3,62.45,183.29,26.1,701.58 +6009,5,E07000040,4,71.78,284.04,26.1,1084.23 +6409,7,E07000040,4,74.57,284.04,26.1,1084.23 +6604,9,E07000040,1,49.41,144.7,26.1,548.7 +6930,9,E07000040,2,55.93,186.23,26.1,708.19 +7256,9,E07000040,3,62.45,229.13,26.1,876.89 +7582,9,E07000040,4,71.78,355.06,26.1,1355.24 +7908,10,E07000040,0,54.33,390.47,18.44,1490.37 +86,1,E07000085,1,57.79,124.33,26.1,622.76 +412,1,E07000085,2,71.78,147.91,26.1,660.31 +738,1,E07000085,3,82.02,162.93,26.1,720.34 +1064,1,E07000085,4,90.42,180.08,26.1,784.04 +1390,3,E07000085,1,52.2,116.83,26.1,562.73 +1716,3,E07000085,2,63.38,130.77,26.1,513.94 +2042,3,E07000085,3,68.97,151.13,26.1,656.53 +2368,3,E07000085,4,73.64,186.51,26.1,686.53 +2694,2,E07000085,0,61.49,265.21,18.44,1192.28 +3020,4,E07000085,0,48.18,193.32,18.44,709.56 +3346,6,E07000085,0,61.49,449.11,18.44,1712.06 +3672,8,E07000085,0,48.18,449.11,18.44,1712.06 +3997,5,E07000085,1,57.79,138.27,26.1,525.21 +4064,7,E07000085,1,52.2,138.27,26.1,525.21 +4612,5,E07000085,2,71.78,182.22,26.1,697.83 +4759,7,E07000085,2,63.38,182.22,26.1,697.83 +5264,5,E07000085,3,82.02,228.29,26.1,866.6 +5364,7,E07000085,3,68.97,228.29,26.1,866.6 +5949,5,E07000085,4,90.42,408.38,26.1,1556.87 +6053,7,E07000085,4,73.64,408.38,26.1,1556.87 +6606,9,E07000085,1,57.79,172.84,26.1,656.5 +6932,9,E07000085,2,71.78,227.8,26.1,872.27 +7258,9,E07000085,3,82.02,285.39,26.1,1083.25 +7584,9,E07000085,4,90.42,510.49,26.1,1946.18 +7910,10,E07000085,0,61.49,561.4,18.44,2140.15 +87,1,E07000242,1,54.99,120.05,26.1,525.21 +413,1,E07000242,2,65.24,143.62,26.1,592.76 +739,1,E07000242,3,71.78,157.56,26.1,637.77 +1065,1,E07000242,4,82.02,172.58,26.1,630.28 +1391,3,E07000242,1,50.34,100.76,26.1,465.19 +1717,3,E07000242,2,58.72,118.97,26.1,468.93 +2043,3,E07000242,3,64.31,131.84,26.1,506.45 +2369,3,E07000242,4,71.78,150.06,26.1,562.73 +2695,2,E07000242,0,35.87,223.96,18.44,1464.58 +3021,4,E07000242,0,55.36,134.38,18.44,1101.56 +3347,6,E07000242,0,35.87,437.32,18.44,1666.77 +3673,8,E07000242,0,55.36,437.32,18.44,1666.77 +4132,5,E07000242,1,54.99,155.41,26.1,592.76 +4249,7,E07000242,1,50.34,155.41,26.1,592.76 +4713,5,E07000242,2,65.24,194.01,26.1,742.84 +4975,7,E07000242,2,58.72,194.01,26.1,742.84 +5432,5,E07000242,3,71.78,272.26,26.1,1039.19 +5618,7,E07000242,3,64.31,272.26,26.1,1039.19 +6142,5,E07000242,4,82.02,397.66,26.1,1515.64 +6280,7,E07000242,4,71.78,397.66,26.1,1515.64 +6607,9,E07000242,1,54.99,194.27,26.1,740.92 +6933,9,E07000242,2,65.24,242.51,26.1,928.52 +7259,9,E07000242,3,71.78,340.33,26.1,1298.96 +7585,9,E07000242,4,82.02,497.09,26.1,1894.55 +7911,10,E07000242,0,35.87,546.66,18.44,2083.48 +88,1,E07000137,1,52.2,100.76,26.1,431.41 +414,1,E07000137,2,62.45,115.76,26.1,457.7 +740,1,E07000137,3,68.97,127.56,26.1,487.69 +1066,1,E07000137,4,76.43,159.7,26.1,589.02 +1392,3,E07000137,1,46.6,91.12,26.1,378.95 +1718,3,E07000137,2,53.13,97.54,26.1,382.66 +2044,3,E07000137,3,58.72,105.05,26.1,420.18 +2370,3,E07000137,4,64.31,123.26,26.1,431.41 +2696,2,E07000137,0,51.26,238.1,18.44,1250.1 +3022,4,E07000137,0,49.2,113.15,18.44,429.07 +3348,6,E07000137,0,51.26,176.82,18.44,676.62 +3674,8,E07000137,0,49.2,176.82,18.44,676.62 +4324,5,E07000137,1,52.2,87.89,26.1,333.97 +4424,7,E07000137,1,46.6,87.89,26.1,333.97 +5020,5,E07000137,2,62.45,110.39,26.1,420.18 +5160,7,E07000137,2,53.13,110.39,26.1,420.18 +5663,5,E07000137,3,68.97,126.48,26.1,487.69 +5821,7,E07000137,3,58.72,126.48,26.1,487.69 +6238,5,E07000137,4,76.43,160.78,26.1,615.23 +6482,7,E07000137,4,64.31,160.78,26.1,615.23 +6608,9,E07000137,1,52.2,109.88,26.1,417.38 +6934,9,E07000137,2,62.45,138.01,26.1,525.21 +7260,9,E07000137,3,68.97,158.09,26.1,609.6 +7586,9,E07000137,4,76.43,200.97,26.1,769.09 +7912,10,E07000137,0,51.26,221.02,18.44,845.81 +89,1,E06000061,1,52.2,100.76,26.1,431.41 +415,1,E06000061,2,62.45,115.76,26.1,457.7 +741,1,E06000061,3,68.97,127.56,26.1,487.69 +1067,1,E06000061,4,76.43,159.7,26.1,589.02 +1393,3,E06000061,1,46.6,91.12,26.1,378.95 +1719,3,E06000061,2,53.13,97.54,26.1,382.66 +2045,3,E06000061,3,58.72,105.05,26.1,420.18 +2371,3,E06000061,4,64.31,123.26,26.1,431.41 +2697,2,E06000061,0,51.26,238.1,18.44,1250.1 +3023,4,E06000061,0,49.2,113.15,18.44,429.07 +3349,6,E06000061,0,51.26,275.83,18.44,1052.03 +3675,8,E06000061,0,49.2,275.83,18.44,1052.03 +4425,7,E06000061,1,46.6,98.62,26.1,378.95 +5021,5,E06000061,2,62.45,126.48,26.1,483.95 +5161,7,E06000061,2,53.13,126.48,26.1,483.95 +5664,5,E06000061,3,68.97,148.99,26.1,566.51 +5822,7,E06000061,3,58.72,148.99,26.1,566.51 +6239,5,E06000061,4,76.43,250.82,26.1,956.69 +6483,7,E06000061,4,64.31,250.82,26.1,956.69 +6609,9,E06000061,1,52.2,123.26,26.1,473.66 +6935,9,E06000061,2,62.45,158.09,26.1,604.94 +7261,9,E06000061,3,68.97,186.23,26.1,708.19 +7587,9,E06000061,4,76.43,313.51,26.1,1195.85 +7913,10,E06000061,0,51.26,344.81,18.44,1315.06 +90,1,E06000011,1,51.27,92.19,26.1,401.38 +416,1,E06000011,2,58.72,109.33,26.1,495.22 +742,1,E06000011,3,63.38,121.11,26.1,570.26 +1068,1,E06000011,4,73.64,145.77,26.1,630.28 +1394,3,E06000011,1,46.6,82.54,26.1,326.41 +1720,3,E06000011,2,53.13,113.61,26.1,510.2 +2046,3,E06000011,3,56.86,105.05,26.1,401.38 +2372,3,E06000011,4,64.31,122.19,26.1,619.01 +2698,2,E06000011,0,52.28,232.2,18.44,1118.04 +3024,4,E06000011,0,51.26,159.13,18.44,660.1 +3350,6,E06000011,0,52.28,207.45,18.44,792.12 +3676,8,E06000011,0,51.26,207.45,18.44,792.12 +4395,5,E06000011,1,51.27,90.03,26.1,341.39 +4549,7,E06000011,1,46.6,90.03,26.1,341.39 +4817,7,E06000011,2,53.13,113.61,26.1,431.41 +4875,5,E06000011,2,58.72,113.61,26.1,431.41 +5506,5,E06000011,3,63.38,136.13,26.1,521.47 +5853,7,E06000011,3,56.86,136.13,26.1,521.47 +6111,5,E06000011,4,73.64,188.66,26.1,720.34 +6209,7,E06000011,4,64.31,188.66,26.1,720.34 +6610,9,E06000011,1,51.27,112.54,26.1,426.83 +6936,9,E06000011,2,53.13,142.02,26.1,539.32 +7262,9,E06000011,3,63.38,170.16,26.1,651.81 +7588,9,E06000011,4,73.64,235.82,26.1,900.41 +7914,10,E06000011,0,52.28,259.31,18.44,990.19 +91,1,E07000193,1,53.13,99.69,26.1,438.9 +417,1,E07000193,2,58.72,117.9,26.1,483.95 +743,1,E07000193,3,69.9,133.98,26.1,566.51 +1069,1,E07000193,4,81.09,162.93,26.1,630.28 +1395,3,E07000193,1,46.6,88.96,26.1,345.17 +1721,3,E07000193,2,50.34,95.42,26.1,363.93 +2047,3,E07000193,3,60.59,105.05,26.1,423.89 +2373,3,E07000193,4,68.97,128.63,26.1,450.21 +2699,2,E07000193,0,38.95,242.82,18.44,1324.3 +3025,4,E07000193,0,46.12,106.09,18.44,371.32 +3351,6,E07000193,0,38.95,226.32,18.44,862.26 +3677,8,E07000193,0,46.12,226.32,18.44,862.26 +4286,5,E07000193,1,53.13,92.19,26.1,352.66 +4507,7,E07000193,1,46.6,92.19,26.1,352.66 +4896,5,E07000193,2,58.72,115.76,26.1,438.9 +5192,7,E07000193,2,50.34,115.76,26.1,438.9 +5527,5,E07000193,3,69.9,148.99,26.1,566.51 +5783,7,E07000193,3,60.59,148.99,26.1,566.51 +6179,5,E07000193,4,81.09,205.81,26.1,784.04 +6444,7,E07000193,4,68.97,205.81,26.1,784.04 +6611,9,E07000193,1,53.13,115.24,26.1,440.83 +6937,9,E07000193,2,58.72,144.7,26.1,548.7 +7263,9,E07000193,3,69.9,186.23,26.1,708.19 +7589,9,E07000193,4,81.09,257.26,26.1,980.11 +7915,10,E07000193,0,38.95,282.91,18.44,1077.83 +264,1,E07000244,1,54.99,120.05,26.1,525.21 +590,1,E07000244,2,65.24,143.62,26.1,592.76 +916,1,E07000244,3,71.78,157.56,26.1,637.77 +1242,1,E07000244,4,82.02,172.58,26.1,630.28 +1568,3,E07000244,1,50.34,100.76,26.1,465.19 +1894,3,E07000244,2,58.72,118.97,26.1,468.93 +2220,3,E07000244,3,64.31,131.84,26.1,506.45 +2546,3,E07000244,4,71.78,150.06,26.1,562.73 +2872,2,E07000244,0,35.87,223.96,18.44,1464.58 +3198,4,E07000244,0,55.36,134.38,18.44,1101.56 +3524,6,E07000244,0,35.87,252.25,18.44,957.15 +3850,8,E07000244,0,55.36,252.25,18.44,957.15 +4156,5,E07000244,1,54.99,106.12,26.1,405.16 +4273,7,E07000244,1,50.34,106.12,26.1,405.16 +4737,5,E07000244,2,65.24,126.48,26.1,483.95 +4999,7,E07000244,2,58.72,126.48,26.1,483.95 +5456,5,E07000244,3,71.78,155.41,26.1,592.76 +5642,7,E07000244,3,64.31,155.41,26.1,592.76 +6166,5,E07000244,4,82.02,229.37,26.1,870.35 +6304,7,E07000244,4,71.78,229.37,26.1,870.35 +6784,9,E07000244,1,54.99,132.65,26.1,506.45 +7110,9,E07000244,2,65.24,158.09,26.1,604.94 +7436,9,E07000244,3,71.78,194.27,26.1,740.92 +7762,9,E07000244,4,82.02,286.72,26.1,1087.94 +8088,10,E07000244,0,35.87,315.32,18.44,1196.44 +92,1,E07000061,1,57.79,124.33,26.1,622.76 +418,1,E07000061,2,71.78,147.91,26.1,660.31 +744,1,E07000061,3,82.02,162.93,26.1,720.34 +1070,1,E07000061,4,90.42,180.08,26.1,784.04 +1396,3,E07000061,1,52.2,116.83,26.1,562.73 +1722,3,E07000061,2,63.38,130.77,26.1,513.94 +2048,3,E07000061,3,68.97,151.13,26.1,656.53 +2374,3,E07000061,4,73.64,186.51,26.1,686.53 +2700,2,E07000061,0,61.49,265.21,18.44,1192.28 +3026,4,E07000061,0,48.18,193.32,18.44,709.56 +3352,6,E07000061,0,61.49,524.54,18.44,2000.99 +3678,8,E07000061,0,48.18,524.54,18.44,2000.99 +3998,5,E07000061,1,57.79,131.84,26.1,506.45 +4065,7,E07000061,1,52.2,131.84,26.1,506.45 +4613,5,E07000061,2,71.78,172.58,26.1,656.53 +4760,7,E07000061,2,63.38,172.58,26.1,656.53 +5265,5,E07000061,3,82.02,211.17,26.1,806.54 +5365,7,E07000061,3,68.97,211.17,26.1,806.54 +5950,5,E07000061,4,90.42,476.98,26.1,1819.51 +6054,7,E07000061,4,73.64,476.98,26.1,1819.51 +6612,9,E07000061,1,57.79,164.8,26.1,633.05 +6938,9,E07000061,2,71.78,215.73,26.1,820.72 +7264,9,E07000061,3,82.02,263.95,26.1,1008.25 +7590,9,E07000061,4,90.42,596.23,26.1,2274.44 +7916,10,E07000061,0,61.49,655.68,18.44,2501.17 +93,1,E07000086,1,57.79,124.33,26.1,622.76 +419,1,E07000086,2,71.78,147.91,26.1,660.31 +745,1,E07000086,3,82.02,162.93,26.1,720.34 +1071,1,E07000086,4,90.42,180.08,26.1,784.04 +1397,3,E07000086,1,52.2,116.83,26.1,562.73 +1723,3,E07000086,2,63.38,130.77,26.1,513.94 +2049,3,E07000086,3,68.97,151.13,26.1,656.53 +2375,3,E07000086,4,73.64,186.51,26.1,686.53 +2701,2,E07000086,0,61.49,265.21,18.44,1192.28 +3027,4,E07000086,0,48.18,193.32,18.44,709.56 +3353,6,E07000086,0,61.49,339.47,18.44,1299.52 +3679,8,E07000086,0,48.18,339.47,18.44,1299.52 +3999,5,E07000086,1,57.79,136.13,26.1,521.47 +4066,7,E07000086,1,52.2,136.13,26.1,521.47 +4614,5,E07000086,2,71.78,166.14,26.1,634.03 +4761,7,E07000086,2,63.38,166.14,26.1,634.03 +5266,5,E07000086,3,82.02,204.74,26.1,780.33 +5366,7,E07000086,3,68.97,204.74,26.1,780.33 +5951,5,E07000086,4,90.42,309.78,26.1,1181.71 +6055,7,E07000086,4,73.64,309.78,26.1,1181.71 +6613,9,E07000086,1,57.79,170.16,26.1,651.81 +6939,9,E07000086,2,71.78,207.68,26.1,792.54 +7265,9,E07000086,3,82.02,255.92,26.1,975.42 +7591,9,E07000086,4,90.42,387.21,26.1,1477.18 +7917,10,E07000086,0,61.49,424.32,18.44,1624.42 +94,1,E07000030,1,52.2,94.33,26.1,412.65 +420,1,E07000030,2,59.66,108.27,26.1,476.46 +746,1,E07000030,3,66.17,121.11,26.1,513.94 +1072,1,E07000030,4,72.71,135.06,26.1,562.73 +1398,3,E07000030,1,43.8,86.81,26.1,356.41 +1724,3,E07000030,2,54.06,95.42,26.1,401.38 +2050,3,E07000030,3,58.72,106.12,26.1,438.9 +2376,3,E07000030,4,55.93,120.05,26.1,472.71 +2702,2,E07000030,0,55.36,236.93,18.44,1184.02 +3028,4,E07000030,0,32.8,464.43,18.44,2075.22 +3354,6,E07000030,0,55.36,226.32,18.44,862.26 +3680,8,E07000030,0,32.8,226.32,18.44,862.26 +4364,5,E07000030,1,52.2,101.83,26.1,390.15 +4476,7,E07000030,1,43.8,101.83,26.1,390.15 +4934,5,E07000030,2,59.66,121.11,26.1,461.44 +5072,7,E07000030,2,54.06,121.11,26.1,461.44 +5577,5,E07000030,3,66.17,147.91,26.1,558.95 +5752,7,E07000030,3,58.72,147.91,26.1,558.95 +6325,5,E07000030,4,72.71,205.81,26.1,784.04 +6376,7,E07000030,4,55.93,205.81,26.1,784.04 +6614,9,E07000030,1,52.2,127.29,26.1,487.69 +6940,9,E07000030,2,59.66,151.41,26.1,576.8 +7266,9,E07000030,3,66.17,184.89,26.1,698.67 +7592,9,E07000030,4,72.71,257.26,26.1,980.11 +7918,10,E07000030,0,55.36,282.91,18.44,1077.83 +95,1,E07000207,1,57.79,124.33,26.1,622.76 +421,1,E07000207,2,71.78,147.91,26.1,660.31 +747,1,E07000207,3,82.02,162.93,26.1,720.34 +1073,1,E07000207,4,90.42,180.08,26.1,784.04 +1399,3,E07000207,1,52.2,116.83,26.1,562.73 +1725,3,E07000207,2,63.38,130.77,26.1,513.94 +2051,3,E07000207,3,68.97,151.13,26.1,656.53 +2377,3,E07000207,4,73.64,186.51,26.1,686.53 +2703,2,E07000207,0,61.49,265.21,18.44,1192.28 +3029,4,E07000207,0,48.18,193.32,18.44,709.56 +3355,6,E07000207,0,61.49,834.56,18.44,3185 +3681,8,E07000207,0,48.18,834.56,18.44,3185 +4000,5,E07000207,1,57.79,188.66,26.1,720.34 +4067,7,E07000207,1,52.2,188.66,26.1,720.34 +4615,5,E07000207,2,71.78,273.34,26.1,1042.97 +4762,7,E07000207,2,63.38,273.34,26.1,1042.97 +5267,5,E07000207,3,82.02,330.14,26.1,1260.53 +5367,7,E07000207,3,68.97,330.14,26.1,1260.53 +5952,5,E07000207,4,90.42,758.89,26.1,2896.18 +6056,7,E07000207,4,73.64,758.89,26.1,2896.18 +6615,9,E07000207,1,57.79,235.82,26.1,900.41 +6941,9,E07000207,2,71.78,341.67,26.1,1303.68 +7267,9,E07000207,3,82.02,412.67,26.1,1575.63 +7593,9,E07000207,4,90.42,948.61,26.1,3620.3 +7919,10,E07000207,0,61.49,1043.21,18.44,3981.32 +96,1,E09000010,1,66.17,146.84,26.1,697.83 +422,1,E09000010,2,78.29,158.63,26.1,679.04 +748,1,E09000010,3,84.82,168.29,26.1,799.02 +1074,1,E09000010,4,102.51,188.66,26.1,889.11 +1400,3,E09000010,1,58.72,120.05,26.1,517.69 +1726,3,E09000010,2,64.31,140.42,26.1,619.01 +2052,3,E09000010,3,71.78,160.78,26.1,709.03 +2378,3,E09000010,4,83.89,262.61,26.1,922.88 +2704,2,E09000010,0,69.7,313.55,18.44,1741.04 +3030,4,E09000010,0,59.45,367.77,18.44,1394.47 +3356,6,E09000010,0,69.7,473.86,18.44,1811.15 +3682,8,E09000010,0,59.45,473.86,18.44,1811.15 +3959,5,E09000010,1,66.17,188.66,26.1,720.34 +4173,7,E09000010,1,58.72,188.66,26.1,720.34 +4574,5,E09000010,2,78.29,262.61,26.1,997.89 +4674,7,E09000010,2,64.31,262.61,26.1,997.89 +5226,5,E09000010,3,84.82,307.63,26.1,1174.22 +5326,7,E09000010,3,71.78,307.63,26.1,1174.22 +5878,7,E09000010,4,83.89,430.9,26.1,1646.93 +5911,5,E09000010,4,102.51,430.9,26.1,1646.93 +6616,9,E09000010,1,66.17,235.82,26.1,900.41 +6942,9,E09000010,2,78.29,328.26,26.1,1247.4 +7268,9,E09000010,3,84.82,384.53,26.1,1467.76 +7594,9,E09000010,4,102.51,538.61,26.1,2058.67 +7920,10,E09000010,0,69.7,592.32,18.44,2263.94 +97,1,E07000072,1,54.99,120.05,26.1,525.21 +423,1,E07000072,2,65.24,143.62,26.1,592.76 +749,1,E07000072,3,71.78,157.56,26.1,637.77 +1075,1,E07000072,4,82.02,172.58,26.1,630.28 +1401,3,E07000072,1,50.34,100.76,26.1,465.19 +1727,3,E07000072,2,58.72,118.97,26.1,468.93 +2053,3,E07000072,3,64.31,131.84,26.1,506.45 +2379,3,E07000072,4,71.78,150.06,26.1,562.73 +2705,2,E07000072,0,35.87,223.96,18.44,1464.58 +3031,4,E07000072,0,55.36,134.38,18.44,1101.56 +3357,6,E07000072,0,35.87,549.31,18.44,2095.8 +3683,8,E07000072,0,55.36,549.31,18.44,2095.8 +4133,5,E07000072,1,54.99,172.58,26.1,656.53 +4250,7,E07000072,1,50.34,172.58,26.1,656.53 +4714,5,E07000072,2,65.24,229.37,26.1,870.35 +4976,7,E07000072,2,58.72,229.37,26.1,870.35 +5433,5,E07000072,3,71.78,295.83,26.1,1129.24 +5619,7,E07000072,3,64.31,295.83,26.1,1129.24 +6143,5,E07000072,4,82.02,499.48,26.1,1905.79 +6281,7,E07000072,4,71.78,499.48,26.1,1905.79 +6617,9,E07000072,1,54.99,215.73,26.1,820.72 +6943,9,E07000072,2,65.24,286.72,26.1,1087.94 +7269,9,E07000072,3,71.78,369.81,26.1,1411.55 +7595,9,E07000072,4,82.02,624.36,26.1,2382.24 +7921,10,E07000072,0,35.87,686.61,18.44,2619.79 +98,1,E07000208,1,57.79,124.33,26.1,622.76 +424,1,E07000208,2,71.78,147.91,26.1,660.31 +750,1,E07000208,3,82.02,162.93,26.1,720.34 +1076,1,E07000208,4,90.42,180.08,26.1,784.04 +1402,3,E07000208,1,52.2,116.83,26.1,562.73 +1728,3,E07000208,2,63.38,130.77,26.1,513.94 +2054,3,E07000208,3,68.97,151.13,26.1,656.53 +2380,3,E07000208,4,73.64,186.51,26.1,686.53 +2706,2,E07000208,0,61.49,265.21,18.44,1192.28 +3032,4,E07000208,0,48.18,193.32,18.44,709.56 +3358,6,E07000208,0,61.49,581.15,18.44,2215.5 +3684,8,E07000208,0,48.18,581.15,18.44,2215.5 +4001,5,E07000208,1,57.79,188.66,26.1,720.34 +4068,7,E07000208,1,52.2,188.66,26.1,720.34 +4616,5,E07000208,2,71.78,250.82,26.1,956.69 +4763,7,E07000208,2,63.38,250.82,26.1,956.69 +5268,5,E07000208,3,82.02,340.85,26.1,1301.79 +5368,7,E07000208,3,68.97,340.85,26.1,1301.79 +5953,5,E07000208,4,90.42,528.44,26.1,2014.6 +6057,7,E07000208,4,73.64,528.44,26.1,2014.6 +6618,9,E07000208,1,57.79,235.82,26.1,900.41 +6944,9,E07000208,2,71.78,313.51,26.1,1195.85 +7270,9,E07000208,3,82.02,426.06,26.1,1627.19 +7596,9,E07000208,4,90.42,660.55,26.1,2518.22 +7922,10,E07000208,0,61.49,726.41,18.44,2769.27 +99,1,E07000036,1,52.2,100.76,26.1,431.41 +425,1,E07000036,2,62.45,115.76,26.1,457.7 +751,1,E07000036,3,68.97,127.56,26.1,487.69 +1077,1,E07000036,4,76.43,159.7,26.1,589.02 +1403,3,E07000036,1,46.6,91.12,26.1,378.95 +1729,3,E07000036,2,53.13,97.54,26.1,382.66 +2055,3,E07000036,3,58.72,105.05,26.1,420.18 +2381,3,E07000036,4,64.31,123.26,26.1,431.41 +2707,2,E07000036,0,51.26,238.1,18.44,1250.1 +3033,4,E07000036,0,49.2,113.15,18.44,429.07 +3359,6,E07000036,0,51.26,226.32,18.44,862.26 +3685,8,E07000036,0,49.2,226.32,18.44,862.26 +4326,5,E07000036,1,52.2,92.19,26.1,348.92 +4426,7,E07000036,1,46.6,92.19,26.1,348.92 +5022,5,E07000036,2,62.45,114.68,26.1,435.16 +5162,7,E07000036,2,53.13,114.68,26.1,435.16 +5665,5,E07000036,3,68.97,131.84,26.1,506.45 +5823,7,E07000036,3,58.72,131.84,26.1,506.45 +6240,5,E07000036,4,76.43,205.81,26.1,784.04 +6484,7,E07000036,4,64.31,205.81,26.1,784.04 +6619,9,E07000036,1,52.2,115.24,26.1,436.1 +6945,9,E07000036,2,62.45,143.37,26.1,543.94 +7271,9,E07000036,3,68.97,164.8,26.1,633.05 +7597,9,E07000036,4,76.43,257.26,26.1,980.11 +7923,10,E07000036,0,51.26,282.91,18.44,1077.83 +100,1,E07000041,1,49.41,108.27,26.1,495.22 +426,1,E07000041,2,55.93,122.19,26.1,510.2 +752,1,E07000041,3,62.45,142.56,26.1,570.26 +1078,1,E07000041,4,71.78,159.7,26.1,686.53 +1404,3,E07000041,1,47.54,90.03,26.1,742.84 +1730,3,E07000041,2,54.99,101.83,26.1,393.89 +2056,3,E07000041,3,62.45,110.39,26.1,446.46 +2382,3,E07000041,4,74.57,131.84,26.1,461.44 +2708,2,E07000041,0,54.33,228.68,18.44,1241.8 +3034,4,E07000041,0,54.33,114.33,18.44,490.95 +3360,6,E07000041,0,54.33,535.15,18.44,2046.35 +3686,8,E07000041,0,54.33,535.15,18.44,2046.35 +3922,7,E07000041,1,47.54,136.13,26.1,521.47 +4206,5,E07000041,1,49.41,136.13,26.1,521.47 +4842,5,E07000041,2,55.93,166.14,26.1,634.03 +5119,7,E07000041,2,54.99,166.14,26.1,634.03 +5473,5,E07000041,3,62.45,205.81,26.1,780.33 +5699,7,E07000041,3,62.45,205.81,26.1,780.33 +6011,5,E07000041,4,71.78,486.62,26.1,1860.85 +6411,7,E07000041,4,74.57,486.62,26.1,1860.85 +6620,9,E07000041,1,49.41,170.16,26.1,651.81 +6946,9,E07000041,2,55.93,207.68,26.1,792.54 +7272,9,E07000041,3,62.45,257.26,26.1,975.42 +7598,9,E07000041,4,71.78,608.29,26.1,2325.93 +7924,10,E07000041,0,54.33,668.96,18.44,2557.94 +101,1,E07000087,1,57.79,124.33,26.1,622.76 +427,1,E07000087,2,71.78,147.91,26.1,660.31 +753,1,E07000087,3,82.02,162.93,26.1,720.34 +1079,1,E07000087,4,90.42,180.08,26.1,784.04 +1405,3,E07000087,1,52.2,116.83,26.1,562.73 +1731,3,E07000087,2,63.38,130.77,26.1,513.94 +2057,3,E07000087,3,68.97,151.13,26.1,656.53 +2383,3,E07000087,4,73.64,186.51,26.1,686.53 +2709,2,E07000087,0,61.49,265.21,18.44,1192.28 +3035,4,E07000087,0,48.18,193.32,18.44,709.56 +3361,6,E07000087,0,61.49,350.07,18.44,1332.59 +3687,8,E07000087,0,48.18,350.07,18.44,1332.59 +4002,5,E07000087,1,57.79,136.13,26.1,521.47 +4069,7,E07000087,1,52.2,136.13,26.1,521.47 +4617,5,E07000087,2,71.78,166.14,26.1,634.03 +4764,7,E07000087,2,63.38,166.14,26.1,634.03 +5269,5,E07000087,3,82.02,204.74,26.1,780.33 +5369,7,E07000087,3,68.97,204.74,26.1,780.33 +5954,5,E07000087,4,90.42,318.35,26.1,1211.77 +6058,7,E07000087,4,73.64,318.35,26.1,1211.77 +6621,9,E07000087,1,57.79,170.16,26.1,651.81 +6947,9,E07000087,2,71.78,207.68,26.1,792.54 +7273,9,E07000087,3,82.02,255.92,26.1,975.42 +7599,9,E07000087,4,90.42,397.93,26.1,1514.63 +7925,10,E07000087,0,61.49,437.59,18.44,1665.79 +102,1,E07000010,1,54.99,120.05,26.1,525.21 +428,1,E07000010,2,65.24,143.62,26.1,592.76 +754,1,E07000010,3,71.78,157.56,26.1,637.77 +1080,1,E07000010,4,82.02,172.58,26.1,630.28 +1406,3,E07000010,1,50.34,100.76,26.1,465.19 +1732,3,E07000010,2,58.72,118.97,26.1,468.93 +2058,3,E07000010,3,64.31,131.84,26.1,506.45 +2384,3,E07000010,4,71.78,150.06,26.1,562.73 +2710,2,E07000010,0,35.87,223.96,18.44,1464.58 +3036,4,E07000010,0,55.36,134.38,18.44,1101.56 +3362,6,E07000010,0,35.87,213.35,18.44,816.83 +3688,8,E07000010,0,55.36,213.35,18.44,816.83 +4134,5,E07000010,1,54.99,96.49,26.1,367.68 +4251,7,E07000010,1,50.34,96.49,26.1,367.68 +4715,5,E07000010,2,65.24,126.48,26.1,483.95 +4977,7,E07000010,2,58.72,126.48,26.1,483.95 +5434,5,E07000010,3,71.78,148.99,26.1,566.51 +5620,7,E07000010,3,64.31,148.99,26.1,566.51 +6144,5,E07000010,4,82.02,194.01,26.1,742.84 +6282,7,E07000010,4,71.78,194.01,26.1,742.84 +6622,9,E07000010,1,54.99,120.59,26.1,459.52 +6948,9,E07000010,2,65.24,158.09,26.1,604.94 +7274,9,E07000010,3,71.78,186.23,26.1,708.19 +7600,9,E07000010,4,82.02,242.51,26.1,928.52 +7926,10,E07000010,0,35.87,266.69,18.44,1021.09 +104,1,E07000080,1,49.41,108.27,26.1,495.22 +430,1,E07000080,2,55.93,122.19,26.1,510.2 +756,1,E07000080,3,62.45,142.56,26.1,570.26 +1082,1,E07000080,4,71.78,159.7,26.1,686.53 +1408,3,E07000080,1,47.54,90.03,26.1,742.84 +1734,3,E07000080,2,54.99,101.83,26.1,393.89 +2060,3,E07000080,3,62.45,110.39,26.1,446.46 +2386,3,E07000080,4,74.57,131.84,26.1,461.44 +2712,2,E07000080,0,54.33,228.68,18.44,1241.8 +3038,4,E07000080,0,54.33,114.33,18.44,490.95 +3364,6,E07000080,0,54.33,226.32,18.44,862.26 +3690,8,E07000080,0,54.33,226.32,18.44,862.26 +3923,7,E07000080,1,47.54,98.62,26.1,378.95 +4207,5,E07000080,1,49.41,98.62,26.1,378.95 +4843,5,E07000080,2,55.93,127.56,26.1,487.69 +5120,7,E07000080,2,54.99,127.56,26.1,487.69 +5474,5,E07000080,3,62.45,148.99,26.1,566.51 +5700,7,E07000080,3,62.45,148.99,26.1,566.51 +6012,5,E07000080,4,71.78,205.81,26.1,784.04 +6412,7,E07000080,4,74.57,205.81,26.1,784.04 +6624,9,E07000080,1,49.41,123.26,26.1,473.66 +6950,9,E07000080,2,55.93,159.44,26.1,609.6 +7276,9,E07000080,3,62.45,186.23,26.1,708.19 +7602,9,E07000080,4,71.78,257.26,26.1,980.11 +7928,10,E07000080,0,54.33,282.91,18.44,1077.83 +105,1,E07000119,1,52.2,94.33,26.1,412.65 +431,1,E07000119,2,59.66,108.27,26.1,476.46 +757,1,E07000119,3,66.17,121.11,26.1,513.94 +1083,1,E07000119,4,72.71,135.06,26.1,562.73 +1409,3,E07000119,1,43.8,86.81,26.1,356.41 +1735,3,E07000119,2,54.06,95.42,26.1,401.38 +2061,3,E07000119,3,58.72,106.12,26.1,438.9 +2387,3,E07000119,4,55.93,120.05,26.1,472.71 +2713,2,E07000119,0,55.36,236.93,18.44,1184.02 +3039,4,E07000119,0,32.8,464.43,18.44,2075.22 +3365,6,E07000119,0,55.36,275.83,18.44,1052.03 +3691,8,E07000119,0,32.8,275.83,18.44,1052.03 +4365,5,E07000119,1,52.2,103.98,26.1,397.64 +4477,7,E07000119,1,43.8,103.98,26.1,397.64 +4935,5,E07000119,2,59.66,138.27,26.1,525.21 +5073,7,E07000119,2,54.06,138.27,26.1,525.21 +5578,5,E07000119,3,66.17,172.58,26.1,656.53 +5753,7,E07000119,3,58.72,172.58,26.1,656.53 +6326,5,E07000119,4,72.71,250.82,26.1,956.69 +6377,7,E07000119,4,55.93,250.82,26.1,956.69 +6625,9,E07000119,1,52.2,129.97,26.1,497.07 +6951,9,E07000119,2,59.66,172.84,26.1,656.5 +7277,9,E07000119,3,66.17,215.73,26.1,820.72 +7603,9,E07000119,4,72.71,313.51,26.1,1195.85 +7929,10,E07000119,0,55.36,344.81,18.44,1315.06 +106,1,E08000037,1,51.27,88.96,26.1,345.17 +432,1,E08000037,2,57.79,102.91,26.1,423.89 +758,1,E08000037,3,61.52,114.68,26.1,562.73 +1084,1,E08000037,4,70.84,128.63,26.1,491.47 +1410,3,E08000037,1,42.87,100.76,26.1,371.42 +1736,3,E08000037,2,50.34,91.12,26.1,393.89 +2062,3,E08000037,3,54.06,106.12,26.1,438.9 +2388,3,E08000037,4,56.86,116.83,26.1,423.89 +2714,2,E08000037,0,55.36,234.56,18.44,1179.92 +3040,4,E08000037,0,47.15,251.08,18.44,998.38 +3366,6,E08000037,0,55.36,213.35,18.44,816.83 +3692,8,E08000037,0,47.15,213.35,18.44,816.83 +4453,7,E08000037,1,42.87,114.68,26.1,435.16 +4534,5,E08000037,1,51.27,114.68,26.1,435.16 +5049,5,E08000037,2,57.79,121.11,26.1,461.44 +5100,7,E08000037,2,50.34,121.11,26.1,461.44 +5554,5,E08000037,3,61.52,143.62,26.1,547.72 +5729,7,E08000037,3,54.06,143.62,26.1,547.72 +6353,5,E08000037,4,70.84,194.01,26.1,742.84 +6511,7,E08000037,4,56.86,194.01,26.1,742.84 +6626,9,E08000037,1,42.87,143.37,26.1,543.94 +6952,9,E08000037,2,57.79,151.41,26.1,576.8 +7278,9,E08000037,3,61.52,179.53,26.1,684.6 +7604,9,E08000037,4,70.84,242.51,26.1,928.52 +7930,10,E08000037,0,55.36,266.69,18.44,1021.09 +107,1,E07000173,1,52.2,100.76,26.1,431.41 +433,1,E07000173,2,62.45,115.76,26.1,457.7 +759,1,E07000173,3,68.97,127.56,26.1,487.69 +1085,1,E07000173,4,76.43,159.7,26.1,589.02 +1411,3,E07000173,1,46.6,91.12,26.1,378.95 +1737,3,E07000173,2,53.13,97.54,26.1,382.66 +2063,3,E07000173,3,58.72,105.05,26.1,420.18 +2389,3,E07000173,4,64.31,123.26,26.1,431.41 +2715,2,E07000173,0,51.26,238.1,18.44,1250.1 +3041,4,E07000173,0,49.2,113.15,18.44,429.07 +3367,6,E07000173,0,51.26,225.15,18.44,858.13 +3693,8,E07000173,0,49.2,225.15,18.44,858.13 +4327,5,E07000173,1,52.2,103.98,26.1,397.64 +4427,7,E07000173,1,46.6,103.98,26.1,397.64 +5023,5,E07000173,2,62.45,121.11,26.1,461.44 +5163,7,E07000173,2,53.13,121.11,26.1,461.44 +5666,5,E07000173,3,68.97,147.91,26.1,558.95 +5824,7,E07000173,3,58.72,147.91,26.1,558.95 +6241,5,E07000173,4,76.43,204.74,26.1,780.33 +6485,7,E07000173,4,64.31,204.74,26.1,780.33 +6627,9,E07000173,1,52.2,129.97,26.1,497.07 +6953,9,E07000173,2,62.45,151.41,26.1,576.8 +7279,9,E07000173,3,68.97,184.89,26.1,698.67 +7605,9,E07000173,4,76.43,255.92,26.1,975.42 +7931,10,E07000173,0,51.26,281.43,18.44,1072.58 +108,1,E07000081,1,49.41,108.27,26.1,495.22 +434,1,E07000081,2,55.93,122.19,26.1,510.2 +760,1,E07000081,3,62.45,142.56,26.1,570.26 +1086,1,E07000081,4,71.78,159.7,26.1,686.53 +1412,3,E07000081,1,47.54,90.03,26.1,742.84 +1738,3,E07000081,2,54.99,101.83,26.1,393.89 +2064,3,E07000081,3,62.45,110.39,26.1,446.46 +2390,3,E07000081,4,74.57,131.84,26.1,461.44 +2716,2,E07000081,0,54.33,228.68,18.44,1241.8 +3042,4,E07000081,0,54.33,114.33,18.44,490.95 +3368,6,E07000081,0,54.33,275.83,18.44,1052.03 +3694,8,E07000081,0,54.33,275.83,18.44,1052.03 +3924,7,E07000081,1,47.54,110.39,26.1,420.18 +4208,5,E07000081,1,49.41,110.39,26.1,420.18 +4844,5,E07000081,2,55.93,131.84,26.1,506.45 +5121,7,E07000081,2,54.99,131.84,26.1,506.45 +5475,5,E07000081,3,62.45,166.14,26.1,634.03 +5701,7,E07000081,3,62.45,166.14,26.1,634.03 +6013,5,E07000081,4,71.78,250.82,26.1,956.69 +6413,7,E07000081,4,74.57,250.82,26.1,956.69 +6628,9,E07000081,1,49.41,138.01,26.1,525.21 +6954,9,E07000081,2,55.93,164.8,26.1,633.05 +7280,9,E07000081,3,62.45,207.68,26.1,792.54 +7606,9,E07000081,4,71.78,313.51,26.1,1195.85 +7932,10,E07000081,0,54.33,344.81,18.44,1315.06 +109,1,E07000088,1,57.79,124.33,26.1,622.76 +435,1,E07000088,2,71.78,147.91,26.1,660.31 +761,1,E07000088,3,82.02,162.93,26.1,720.34 +1087,1,E07000088,4,90.42,180.08,26.1,784.04 +1413,3,E07000088,1,52.2,116.83,26.1,562.73 +1739,3,E07000088,2,63.38,130.77,26.1,513.94 +2065,3,E07000088,3,68.97,151.13,26.1,656.53 +2391,3,E07000088,4,73.64,186.51,26.1,686.53 +2717,2,E07000088,0,61.49,265.21,18.44,1192.28 +3043,4,E07000088,0,48.18,193.32,18.44,709.56 +3369,6,E07000088,0,61.49,312.38,18.44,1192.28 +3695,8,E07000088,0,48.18,312.38,18.44,1192.28 +4003,5,E07000088,1,57.79,126.48,26.1,483.95 +4070,7,E07000088,1,52.2,126.48,26.1,483.95 +4618,5,E07000088,2,71.78,148.99,26.1,566.51 +4765,7,E07000088,2,63.38,148.99,26.1,566.51 +5270,5,E07000088,3,82.02,177.93,26.1,675.29 +5370,7,E07000088,3,68.97,177.93,26.1,675.29 +5955,5,E07000088,4,90.42,284.04,26.1,1084.23 +6059,7,E07000088,4,73.64,284.04,26.1,1084.23 +6629,9,E07000088,1,57.79,158.09,26.1,604.94 +6955,9,E07000088,2,71.78,186.23,26.1,708.19 +7281,9,E07000088,3,82.02,222.43,26.1,844.13 +7607,9,E07000088,4,90.42,355.06,26.1,1355.24 +7933,10,E07000088,0,61.49,390.47,18.44,1490.37 +110,1,E07000109,1,57.79,124.33,26.1,622.76 +436,1,E07000109,2,71.78,147.91,26.1,660.31 +762,1,E07000109,3,82.02,162.93,26.1,720.34 +1088,1,E07000109,4,90.42,180.08,26.1,784.04 +1414,3,E07000109,1,52.2,116.83,26.1,562.73 +1740,3,E07000109,2,63.38,130.77,26.1,513.94 +2066,3,E07000109,3,68.97,151.13,26.1,656.53 +2392,3,E07000109,4,73.64,186.51,26.1,686.53 +2718,2,E07000109,0,61.49,265.21,18.44,1192.28 +3044,4,E07000109,0,48.18,193.32,18.44,709.56 +3370,6,E07000109,0,61.49,300.58,18.44,1146.92 +3696,8,E07000109,0,48.18,300.58,18.44,1146.92 +4004,5,E07000109,1,57.79,126.48,26.1,483.95 +4071,7,E07000109,1,52.2,126.48,26.1,483.95 +4619,5,E07000109,2,71.78,160.78,26.1,615.23 +4766,7,E07000109,2,63.38,160.78,26.1,615.23 +5271,5,E07000109,3,82.02,188.66,26.1,720.34 +5371,7,E07000109,3,68.97,188.66,26.1,720.34 +5956,5,E07000109,4,90.42,273.34,26.1,1042.97 +6060,7,E07000109,4,73.64,273.34,26.1,1042.97 +6630,9,E07000109,1,57.79,158.09,26.1,604.94 +6956,9,E07000109,2,71.78,200.97,26.1,769.09 +7282,9,E07000109,3,82.02,235.82,26.1,900.41 +7608,9,E07000109,4,90.42,341.67,26.1,1303.68 +7934,10,E07000109,0,61.49,375.73,18.44,1433.64 +111,1,E07000145,1,54.99,120.05,26.1,525.21 +437,1,E07000145,2,65.24,143.62,26.1,592.76 +763,1,E07000145,3,71.78,157.56,26.1,637.77 +1089,1,E07000145,4,82.02,172.58,26.1,630.28 +1415,3,E07000145,1,50.34,100.76,26.1,465.19 +1741,3,E07000145,2,58.72,118.97,26.1,468.93 +2067,3,E07000145,3,64.31,131.84,26.1,506.45 +2393,3,E07000145,4,71.78,150.06,26.1,562.73 +2719,2,E07000145,0,35.87,223.96,18.44,1464.58 +3045,4,E07000145,0,55.36,134.38,18.44,1101.56 +3371,6,E07000145,0,35.87,190.96,18.44,726.08 +3697,8,E07000145,0,55.36,190.96,18.44,726.08 +4136,5,E07000145,1,54.99,99.69,26.1,382.66 +4253,7,E07000145,1,50.34,99.69,26.1,382.66 +4717,5,E07000145,2,65.24,121.11,26.1,461.44 +4979,7,E07000145,2,58.72,121.11,26.1,461.44 +5436,5,E07000145,3,71.78,131.84,26.1,502.67 +5622,7,E07000145,3,64.31,131.84,26.1,502.67 +6146,5,E07000145,4,82.02,173.65,26.1,660.31 +6284,7,E07000145,4,71.78,173.65,26.1,660.31 +6631,9,E07000145,1,54.99,124.6,26.1,478.35 +6957,9,E07000145,2,65.24,151.41,26.1,576.8 +7283,9,E07000145,3,71.78,164.8,26.1,628.36 +7609,9,E07000145,4,82.02,217.08,26.1,825.37 +7935,10,E07000145,0,35.87,238.71,18.44,907.59 +112,1,E09000011,1,66.17,146.84,26.1,697.83 +438,1,E09000011,2,78.29,158.63,26.1,679.04 +764,1,E09000011,3,84.82,168.29,26.1,799.02 +1090,1,E09000011,4,102.51,188.66,26.1,889.11 +1416,3,E09000011,1,58.72,120.05,26.1,517.69 +1742,3,E09000011,2,64.31,140.42,26.1,619.01 +2068,3,E09000011,3,71.78,160.78,26.1,709.03 +2394,3,E09000011,4,83.89,262.61,26.1,922.88 +2720,2,E09000011,0,69.7,313.55,18.44,1741.04 +3046,4,E09000011,0,59.45,367.77,18.44,1394.47 +3372,6,E09000011,0,69.7,425.53,18.44,1621.38 +3698,8,E09000011,0,59.45,425.53,18.44,1621.38 +3960,5,E09000011,1,66.17,200.45,26.1,761.57 +4174,7,E09000011,1,58.72,200.45,26.1,761.57 +4575,5,E09000011,2,78.29,284.04,26.1,1084.23 +4675,7,E09000011,2,64.31,284.04,26.1,1084.23 +5227,5,E09000011,3,84.82,295.83,26.1,1129.24 +5327,7,E09000011,3,71.78,295.83,26.1,1129.24 +5879,7,E09000011,4,83.89,386.95,26.1,1474.38 +5912,5,E09000011,4,102.51,386.95,26.1,1474.38 +6632,9,E09000011,1,66.17,250.54,26.1,951.93 +6958,9,E09000011,2,78.29,355.06,26.1,1355.24 +7284,9,E09000011,3,84.82,369.81,26.1,1411.55 +7610,9,E09000011,4,102.51,483.69,26.1,1842.96 +7936,10,E09000011,0,69.7,531.91,18.44,2026.71 +113,1,E07000209,1,57.79,124.33,26.1,622.76 +439,1,E07000209,2,71.78,147.91,26.1,660.31 +765,1,E07000209,3,82.02,162.93,26.1,720.34 +1091,1,E07000209,4,90.42,180.08,26.1,784.04 +1417,3,E07000209,1,52.2,116.83,26.1,562.73 +1743,3,E07000209,2,63.38,130.77,26.1,513.94 +2069,3,E07000209,3,68.97,151.13,26.1,656.53 +2395,3,E07000209,4,73.64,186.51,26.1,686.53 +2721,2,E07000209,0,61.49,265.21,18.44,1192.28 +3047,4,E07000209,0,48.18,193.32,18.44,709.56 +3373,6,E07000209,0,61.49,623.56,18.44,2376.4 +3699,8,E07000209,0,48.18,623.56,18.44,2376.4 +4005,5,E07000209,1,57.79,194.01,26.1,742.84 +4072,7,E07000209,1,52.2,194.01,26.1,742.84 +4620,5,E07000209,2,71.78,272.26,26.1,1039.19 +4767,7,E07000209,2,63.38,272.26,26.1,1039.19 +5272,5,E07000209,3,82.02,330.14,26.1,1260.53 +5372,7,E07000209,3,68.97,330.14,26.1,1260.53 +5957,5,E07000209,4,90.42,567.02,26.1,2160.9 +6061,7,E07000209,4,73.64,567.02,26.1,2160.9 +6633,9,E07000209,1,57.79,242.51,26.1,928.52 +6959,9,E07000209,2,71.78,340.33,26.1,1298.96 +7285,9,E07000209,3,82.02,412.67,26.1,1575.63 +7611,9,E07000209,4,90.42,708.78,26.1,2701.13 +7937,10,E07000209,0,61.49,779.44,18.44,2970.49 +114,1,E09000012,1,66.17,146.84,26.1,697.83 +440,1,E09000012,2,78.29,158.63,26.1,679.04 +766,1,E09000012,3,84.82,168.29,26.1,799.02 +1092,1,E09000012,4,102.51,188.66,26.1,889.11 +1418,3,E09000012,1,58.72,120.05,26.1,517.69 +1744,3,E09000012,2,64.31,140.42,26.1,619.01 +2070,3,E09000012,3,71.78,160.78,26.1,709.03 +2396,3,E09000012,4,83.89,262.61,26.1,922.88 +2722,2,E09000012,0,69.7,313.55,18.44,1741.04 +3048,4,E09000012,0,59.45,367.77,18.44,1394.47 +3374,6,E09000012,0,69.7,648.32,18.44,2471.28 +3700,8,E09000012,0,59.45,648.32,18.44,2471.28 +3961,5,E09000012,1,66.17,310.85,26.1,1185.45 +4175,7,E09000012,1,58.72,310.85,26.1,1185.45 +4576,5,E09000012,2,78.29,374.07,26.1,1429.33 +4676,7,E09000012,2,64.31,374.07,26.1,1429.33 +5228,5,E09000012,3,84.82,442.67,26.1,1688.23 +5328,7,E09000012,3,71.78,442.67,26.1,1688.23 +5880,7,E09000012,4,83.89,589.54,26.1,2247.21 +5913,5,E09000012,4,102.51,589.54,26.1,2247.21 +6634,9,E09000012,1,66.17,388.57,26.1,1481.9 +6960,9,E09000012,2,78.29,467.6,26.1,1786.72 +7286,9,E09000012,3,84.82,553.35,26.1,2110.29 +7612,9,E09000012,4,102.51,736.91,26.1,2808.96 +7938,10,E09000012,0,69.7,810.39,18.44,3089.07 +115,1,E06000006,1,52.2,94.33,26.1,412.65 +441,1,E06000006,2,59.66,108.27,26.1,476.46 +767,1,E06000006,3,66.17,121.11,26.1,513.94 +1093,1,E06000006,4,72.71,135.06,26.1,562.73 +1419,3,E06000006,1,43.8,86.81,26.1,356.41 +1745,3,E06000006,2,54.06,95.42,26.1,401.38 +2071,3,E06000006,3,58.72,106.12,26.1,438.9 +2397,3,E06000006,4,55.93,120.05,26.1,472.71 +2723,2,E06000006,0,55.36,236.93,18.44,1184.02 +3049,4,E06000006,0,32.8,464.43,18.44,2075.22 +3375,6,E06000006,0,55.36,226.32,18.44,862.26 +3701,8,E06000006,0,32.8,226.32,18.44,862.26 +4366,5,E06000006,1,52.2,103.98,26.1,397.64 +4478,7,E06000006,1,43.8,103.98,26.1,397.64 +4936,5,E06000006,2,59.66,115.76,26.1,438.9 +5074,7,E06000006,2,54.06,115.76,26.1,438.9 +5579,5,E06000006,3,66.17,136.13,26.1,521.47 +5754,7,E06000006,3,58.72,136.13,26.1,521.47 +6327,5,E06000006,4,72.71,205.81,26.1,784.04 +6378,7,E06000006,4,55.93,205.81,26.1,784.04 +6635,9,E06000006,1,52.2,129.97,26.1,497.07 +6961,9,E06000006,2,59.66,144.7,26.1,548.7 +7287,9,E06000006,3,66.17,170.16,26.1,651.81 +7613,9,E06000006,4,72.71,257.26,26.1,980.11 +7939,10,E06000006,0,55.36,282.91,18.44,1077.83 +116,1,E07000164,1,51.27,92.19,26.1,401.38 +442,1,E07000164,2,58.72,109.33,26.1,495.22 +768,1,E07000164,3,63.38,121.11,26.1,570.26 +1094,1,E07000164,4,73.64,145.77,26.1,630.28 +1420,3,E07000164,1,46.6,82.54,26.1,326.41 +1746,3,E07000164,2,53.13,113.61,26.1,510.2 +2072,3,E07000164,3,56.86,105.05,26.1,401.38 +2398,3,E07000164,4,64.31,122.19,26.1,619.01 +2724,2,E07000164,0,52.28,232.2,18.44,1118.04 +3050,4,E07000164,0,51.26,159.13,18.44,660.1 +3376,6,E07000164,0,52.28,248.71,18.44,953.05 +3702,8,E07000164,0,51.26,248.71,18.44,953.05 +4396,5,E07000164,1,51.27,103.98,26.1,397.64 +4550,7,E07000164,1,46.6,103.98,26.1,397.64 +4818,7,E07000164,2,53.13,126.48,26.1,483.95 +4876,5,E07000164,2,58.72,126.48,26.1,483.95 +5507,5,E07000164,3,63.38,148.99,26.1,566.51 +5854,7,E07000164,3,56.86,148.99,26.1,566.51 +6112,5,E07000164,4,73.64,228.29,26.1,866.6 +6210,7,E07000164,4,64.31,228.29,26.1,866.6 +6636,9,E07000164,1,51.27,129.97,26.1,497.07 +6962,9,E07000164,2,53.13,158.09,26.1,604.94 +7288,9,E07000164,3,63.38,186.23,26.1,708.19 +7614,9,E07000164,4,73.64,285.39,26.1,1083.25 +7940,10,E07000164,0,52.28,310.9,18.44,1191.33 +117,1,E09000013,1,66.17,146.84,26.1,697.83 +443,1,E09000013,2,78.29,158.63,26.1,679.04 +769,1,E09000013,3,84.82,168.29,26.1,799.02 +1095,1,E09000013,4,102.51,188.66,26.1,889.11 +1421,3,E09000013,1,58.72,120.05,26.1,517.69 +1747,3,E09000013,2,64.31,140.42,26.1,619.01 +2073,3,E09000013,3,71.78,160.78,26.1,709.03 +2399,3,E09000013,4,83.89,262.61,26.1,922.88 +2725,2,E09000013,0,69.7,313.55,18.44,1741.04 +3051,4,E09000013,0,59.45,367.77,18.44,1394.47 +3377,6,E09000013,0,69.7,1078.55,18.44,4117.37 +3703,8,E09000013,0,59.45,1078.55,18.44,4117.37 +3962,5,E09000013,1,66.17,320.49,26.1,1222.97 +4176,7,E09000013,1,58.72,320.49,26.1,1222.97 +4577,5,E09000013,2,78.29,427.69,26.1,1631.91 +4677,7,E09000013,2,64.31,427.69,26.1,1631.91 +5229,5,E09000013,3,84.82,614.19,26.1,2340.98 +5329,7,E09000013,3,71.78,614.19,26.1,2340.98 +5881,7,E09000013,4,83.89,981.83,26.1,3744.06 +5914,5,E09000013,4,102.51,981.83,26.1,3744.06 +6637,9,E09000013,1,66.17,400.6,26.1,1528.8 +6963,9,E09000013,2,78.29,534.61,26.1,2039.84 +7289,9,E09000013,3,84.82,767.74,26.1,2926.25 +7615,9,E09000013,4,102.51,1227.29,26.1,4680.13 +7941,10,E09000013,0,69.7,1348.21,18.44,5146.75 +118,1,E07000131,1,52.2,100.76,26.1,431.41 +444,1,E07000131,2,62.45,115.76,26.1,457.7 +770,1,E07000131,3,68.97,127.56,26.1,487.69 +1096,1,E07000131,4,76.43,159.7,26.1,589.02 +1422,3,E07000131,1,46.6,91.12,26.1,378.95 +1748,3,E07000131,2,53.13,97.54,26.1,382.66 +2074,3,E07000131,3,58.72,105.05,26.1,420.18 +2400,3,E07000131,4,64.31,123.26,26.1,431.41 +2726,2,E07000131,0,51.26,238.1,18.44,1250.1 +3052,4,E07000131,0,49.2,113.15,18.44,429.07 +3378,6,E07000131,0,51.26,275.83,18.44,1052.03 +3704,8,E07000131,0,49.2,275.83,18.44,1052.03 +4328,5,E07000131,1,52.2,108.27,26.1,412.65 +4428,7,E07000131,1,46.6,108.27,26.1,412.65 +5024,5,E07000131,2,62.45,126.48,26.1,483.95 +5164,7,E07000131,2,53.13,126.48,26.1,483.95 +5667,5,E07000131,3,68.97,159.7,26.1,611.52 +5825,7,E07000131,3,58.72,159.7,26.1,611.52 +6242,5,E07000131,4,76.43,250.82,26.1,956.69 +6486,7,E07000131,4,64.31,250.82,26.1,956.69 +6638,9,E07000131,1,52.2,135.33,26.1,515.83 +6964,9,E07000131,2,62.45,158.09,26.1,604.94 +7290,9,E07000131,3,68.97,199.62,26.1,764.33 +7616,9,E07000131,4,76.43,313.51,26.1,1195.85 +7942,10,E07000131,0,51.26,344.81,18.44,1315.06 +119,1,E09000014,1,66.17,146.84,26.1,697.83 +445,1,E09000014,2,78.29,158.63,26.1,679.04 +771,1,E09000014,3,84.82,168.29,26.1,799.02 +1097,1,E09000014,4,102.51,188.66,26.1,889.11 +1423,3,E09000014,1,58.72,120.05,26.1,517.69 +1749,3,E09000014,2,64.31,140.42,26.1,619.01 +2075,3,E09000014,3,71.78,160.78,26.1,709.03 +2401,3,E09000014,4,83.89,262.61,26.1,922.88 +2727,2,E09000014,0,69.7,313.55,18.44,1741.04 +3053,4,E09000014,0,59.45,367.77,18.44,1394.47 +3379,6,E09000014,0,69.7,701.37,18.44,2681.67 +3705,8,E09000014,0,59.45,701.37,18.44,2681.67 +3963,5,E09000014,1,66.17,262.61,26.1,997.89 +4177,7,E09000014,1,58.72,262.61,26.1,997.89 +4578,5,E09000014,2,78.29,335.49,26.1,1279.25 +4678,7,E09000014,2,64.31,335.49,26.1,1279.25 +5230,5,E09000014,3,84.82,419.11,26.1,1598.17 +5330,7,E09000014,3,71.78,419.11,26.1,1598.17 +5882,7,E09000014,4,83.89,638.84,26.1,2438.49 +5915,5,E09000014,4,102.51,638.84,26.1,2438.49 +6639,9,E09000014,1,66.17,328.26,26.1,1247.4 +6965,9,E09000014,2,78.29,419.36,26.1,1599.08 +7291,9,E09000014,3,84.82,523.89,26.1,1997.66 +7617,9,E09000014,4,102.51,798.54,26.1,3048.15 +7943,10,E09000014,0,69.7,876.7,18.44,3352.06 +120,1,E07000073,1,54.99,120.05,26.1,525.21 +446,1,E07000073,2,65.24,143.62,26.1,592.76 +772,1,E07000073,3,71.78,157.56,26.1,637.77 +1098,1,E07000073,4,82.02,172.58,26.1,630.28 +1424,3,E07000073,1,50.34,100.76,26.1,465.19 +1750,3,E07000073,2,58.72,118.97,26.1,468.93 +2076,3,E07000073,3,64.31,131.84,26.1,506.45 +2402,3,E07000073,4,71.78,150.06,26.1,562.73 +2728,2,E07000073,0,35.87,223.96,18.44,1464.58 +3054,4,E07000073,0,55.36,134.38,18.44,1101.56 +3380,6,E07000073,0,35.87,351.26,18.44,1340.82 +3706,8,E07000073,0,55.36,351.26,18.44,1340.82 +4137,5,E07000073,1,54.99,133.98,26.1,513.94 +4254,7,E07000073,1,50.34,133.98,26.1,513.94 +4718,5,E07000073,2,65.24,181.15,26.1,694.05 +4980,7,E07000073,2,58.72,181.15,26.1,694.05 +5437,5,E07000073,3,71.78,216.52,26.1,829.12 +5623,7,E07000073,3,64.31,216.52,26.1,829.12 +6147,5,E07000073,4,82.02,319.42,26.1,1219.26 +6285,7,E07000073,4,71.78,319.42,26.1,1219.26 +6640,9,E07000073,1,54.99,167.48,26.1,642.46 +6966,9,E07000073,2,65.24,226.44,26.1,867.58 +7292,9,E07000073,3,71.78,270.66,26.1,1036.39 +7618,9,E07000073,4,82.02,399.29,26.1,1524.08 +7944,10,E07000073,0,35.87,439.1,18.44,1676.01 +121,1,E07000165,1,51.27,92.19,26.1,401.38 +447,1,E07000165,2,58.72,109.33,26.1,495.22 +773,1,E07000165,3,63.38,121.11,26.1,570.26 +1099,1,E07000165,4,73.64,145.77,26.1,630.28 +1425,3,E07000165,1,46.6,82.54,26.1,326.41 +1751,3,E07000165,2,53.13,113.61,26.1,510.2 +2077,3,E07000165,3,56.86,105.05,26.1,401.38 +2403,3,E07000165,4,64.31,122.19,26.1,619.01 +2729,2,E07000165,0,52.28,232.2,18.44,1118.04 +3055,4,E07000165,0,51.26,159.13,18.44,660.1 +3381,6,E07000165,0,52.28,412.57,18.44,1576.02 +3707,8,E07000165,0,51.26,412.57,18.44,1576.02 +4397,5,E07000165,1,51.27,126.48,26.1,483.95 +4551,7,E07000165,1,46.6,126.48,26.1,483.95 +4819,7,E07000165,2,53.13,158.63,26.1,611.52 +4877,5,E07000165,2,58.72,158.63,26.1,611.52 +5508,5,E07000165,3,63.38,194.01,26.1,742.84 +5855,7,E07000165,3,56.86,194.01,26.1,742.84 +6113,5,E07000165,4,73.64,375.16,26.1,1433.08 +6211,7,E07000165,4,64.31,375.16,26.1,1433.08 +6641,9,E07000165,1,51.27,158.09,26.1,604.94 +6967,9,E07000165,2,53.13,198.3,26.1,764.33 +7293,9,E07000165,3,63.38,242.51,26.1,928.52 +7619,9,E07000165,4,73.64,468.95,26.1,1791.41 +7945,10,E07000165,0,52.28,515.71,18.44,1970.05 +122,1,E09000015,1,66.17,146.84,26.1,697.83 +448,1,E09000015,2,78.29,158.63,26.1,679.04 +774,1,E09000015,3,84.82,168.29,26.1,799.02 +1100,1,E09000015,4,102.51,188.66,26.1,889.11 +1426,3,E09000015,1,58.72,120.05,26.1,517.69 +1752,3,E09000015,2,64.31,140.42,26.1,619.01 +2078,3,E09000015,3,71.78,160.78,26.1,709.03 +2404,3,E09000015,4,83.89,262.61,26.1,922.88 +2730,2,E09000015,0,69.7,313.55,18.44,1741.04 +3056,4,E09000015,0,59.45,367.77,18.44,1394.47 +3382,6,E09000015,0,69.7,499.79,18.44,1906.07 +3708,8,E09000015,0,59.45,499.79,18.44,1906.07 +3964,5,E09000015,1,66.17,200.45,26.1,761.57 +4178,7,E09000015,1,58.72,200.45,26.1,761.57 +4579,5,E09000015,2,78.29,262.61,26.1,997.89 +4679,7,E09000015,2,64.31,262.61,26.1,997.89 +5231,5,E09000015,3,84.82,319.42,26.1,1219.26 +5331,7,E09000015,3,71.78,319.42,26.1,1219.26 +5883,7,E09000015,4,83.89,454.47,26.1,1733.24 +5916,5,E09000015,4,102.51,454.47,26.1,1733.24 +6642,9,E09000015,1,66.17,250.54,26.1,951.93 +6968,9,E09000015,2,78.29,328.26,26.1,1247.4 +7294,9,E09000015,3,84.82,399.29,26.1,1524.08 +7620,9,E09000015,4,102.51,568.09,26.1,2166.54 +7946,10,E09000015,0,69.7,624.74,18.44,2382.63 +123,1,E07000089,1,57.79,124.33,26.1,622.76 +449,1,E07000089,2,71.78,147.91,26.1,660.31 +775,1,E07000089,3,82.02,162.93,26.1,720.34 +1101,1,E07000089,4,90.42,180.08,26.1,784.04 +1427,3,E07000089,1,52.2,116.83,26.1,562.73 +1753,3,E07000089,2,63.38,130.77,26.1,513.94 +2079,3,E07000089,3,68.97,151.13,26.1,656.53 +2405,3,E07000089,4,73.64,186.51,26.1,686.53 +2731,2,E07000089,0,61.49,265.21,18.44,1192.28 +3057,4,E07000089,0,48.18,193.32,18.44,709.56 +3383,6,E07000089,0,61.49,462.06,18.44,1761.59 +3709,8,E07000089,0,48.18,462.06,18.44,1761.59 +4006,5,E07000089,1,57.79,166.14,26.1,634.03 +4073,7,E07000089,1,52.2,166.14,26.1,634.03 +4621,5,E07000089,2,71.78,200.45,26.1,761.57 +4768,7,E07000089,2,63.38,200.45,26.1,761.57 +5273,5,E07000089,3,82.02,273.34,26.1,1042.97 +5373,7,E07000089,3,68.97,273.34,26.1,1042.97 +5958,5,E07000089,4,90.42,420.18,26.1,1601.95 +6062,7,E07000089,4,73.64,420.18,26.1,1601.95 +6643,9,E07000089,1,57.79,207.68,26.1,792.54 +6969,9,E07000089,2,71.78,250.54,26.1,951.93 +7295,9,E07000089,3,82.02,341.67,26.1,1303.68 +7621,9,E07000089,4,90.42,525.22,26.1,2002.39 +7947,10,E07000089,0,61.49,577.59,18.44,2202.03 +124,1,E06000001,1,51.27,88.96,26.1,345.17 +450,1,E06000001,2,57.79,102.91,26.1,423.89 +776,1,E06000001,3,61.52,114.68,26.1,562.73 +1102,1,E06000001,4,70.84,128.63,26.1,491.47 +1428,3,E06000001,1,42.87,100.76,26.1,371.42 +1754,3,E06000001,2,50.34,91.12,26.1,393.89 +2080,3,E06000001,3,54.06,106.12,26.1,438.9 +2406,3,E06000001,4,56.86,116.83,26.1,423.89 +2732,2,E06000001,0,55.36,234.56,18.44,1179.92 +3058,4,E06000001,0,47.15,251.08,18.44,998.38 +3384,6,E06000001,0,55.36,189.79,18.44,721.98 +3710,8,E06000001,0,47.15,189.79,18.44,721.98 +4454,7,E06000001,1,42.87,93.26,26.1,356.41 +4535,5,E06000001,1,51.27,93.26,26.1,356.41 +5050,5,E06000001,2,57.79,105.05,26.1,405.16 +5101,7,E06000001,2,50.34,105.05,26.1,405.16 +5555,5,E06000001,3,61.52,136.13,26.1,521.47 +5730,7,E06000001,3,54.06,136.13,26.1,521.47 +6354,5,E06000001,4,70.84,172.58,26.1,656.53 +6512,7,E06000001,4,56.86,172.58,26.1,656.53 +6644,9,E06000001,1,42.87,116.56,26.1,445.52 +6970,9,E06000001,2,57.79,131.29,26.1,506.45 +7296,9,E06000001,3,61.52,170.16,26.1,651.81 +7622,9,E06000001,4,70.84,215.73,26.1,820.72 +7948,10,E06000001,0,55.36,237.24,18.44,902.44 +125,1,E07000062,1,57.79,124.33,26.1,622.76 +451,1,E07000062,2,71.78,147.91,26.1,660.31 +777,1,E07000062,3,82.02,162.93,26.1,720.34 +1103,1,E07000062,4,90.42,180.08,26.1,784.04 +1429,3,E07000062,1,52.2,116.83,26.1,562.73 +1755,3,E07000062,2,63.38,130.77,26.1,513.94 +2081,3,E07000062,3,68.97,151.13,26.1,656.53 +2407,3,E07000062,4,73.64,186.51,26.1,686.53 +2733,2,E07000062,0,61.49,265.21,18.44,1192.28 +3059,4,E07000062,0,48.18,193.32,18.44,709.56 +3385,6,E07000062,0,61.49,275.83,18.44,1052.03 +3711,8,E07000062,0,48.18,275.83,18.44,1052.03 +4007,5,E07000062,1,57.79,100.76,26.1,386.37 +4074,7,E07000062,1,52.2,100.76,26.1,386.37 +4622,5,E07000062,2,71.78,136.13,26.1,521.47 +4769,7,E07000062,2,63.38,136.13,26.1,521.47 +5274,5,E07000062,3,82.02,172.58,26.1,656.53 +5374,7,E07000062,3,68.97,172.58,26.1,656.53 +5959,5,E07000062,4,90.42,250.82,26.1,956.69 +6063,7,E07000062,4,73.64,250.82,26.1,956.69 +6645,9,E07000062,1,57.79,125.95,26.1,483.04 +6971,9,E07000062,2,71.78,170.16,26.1,651.81 +7297,9,E07000062,3,82.02,215.73,26.1,820.72 +7623,9,E07000062,4,90.42,313.51,26.1,1195.85 +7949,10,E07000062,0,61.49,344.81,18.44,1315.06 +126,1,E07000090,1,57.79,124.33,26.1,622.76 +452,1,E07000090,2,71.78,147.91,26.1,660.31 +778,1,E07000090,3,82.02,162.93,26.1,720.34 +1104,1,E07000090,4,90.42,180.08,26.1,784.04 +1430,3,E07000090,1,52.2,116.83,26.1,562.73 +1756,3,E07000090,2,63.38,130.77,26.1,513.94 +2082,3,E07000090,3,68.97,151.13,26.1,656.53 +2408,3,E07000090,4,73.64,186.51,26.1,686.53 +2734,2,E07000090,0,61.49,265.21,18.44,1192.28 +3060,4,E07000090,0,48.18,193.32,18.44,709.56 +3386,6,E07000090,0,61.49,312.38,18.44,1192.28 +3712,8,E07000090,0,48.18,312.38,18.44,1192.28 +4008,5,E07000090,1,57.79,131.84,26.1,506.45 +4075,7,E07000090,1,52.2,131.84,26.1,506.45 +4623,5,E07000090,2,71.78,160.78,26.1,615.23 +4770,7,E07000090,2,63.38,160.78,26.1,615.23 +5275,5,E07000090,3,82.02,194.01,26.1,742.84 +5375,7,E07000090,3,68.97,194.01,26.1,742.84 +5960,5,E07000090,4,90.42,284.04,26.1,1084.23 +6064,7,E07000090,4,73.64,284.04,26.1,1084.23 +6646,9,E07000090,1,57.79,164.8,26.1,633.05 +6972,9,E07000090,2,71.78,200.97,26.1,769.09 +7298,9,E07000090,3,82.02,242.51,26.1,928.52 +7624,9,E07000090,4,90.42,355.06,26.1,1355.24 +7950,10,E07000090,0,61.49,390.47,18.44,1490.37 +127,1,E09000016,1,66.17,146.84,26.1,697.83 +453,1,E09000016,2,78.29,158.63,26.1,679.04 +779,1,E09000016,3,84.82,168.29,26.1,799.02 +1105,1,E09000016,4,102.51,188.66,26.1,889.11 +1431,3,E09000016,1,58.72,120.05,26.1,517.69 +1757,3,E09000016,2,64.31,140.42,26.1,619.01 +2083,3,E09000016,3,71.78,160.78,26.1,709.03 +2409,3,E09000016,4,83.89,262.61,26.1,922.88 +2735,2,E09000016,0,69.7,313.55,18.44,1741.04 +3061,4,E09000016,0,59.45,367.77,18.44,1394.47 +3387,6,E09000016,0,69.7,450.29,18.44,1716.19 +3713,8,E09000016,0,59.45,450.29,18.44,1716.19 +3965,5,E09000016,1,66.17,162.93,26.1,622.76 +4179,7,E09000016,1,58.72,162.93,26.1,622.76 +4580,5,E09000016,2,78.29,205.81,26.1,784.04 +4680,7,E09000016,2,64.31,205.81,26.1,784.04 +5232,5,E09000016,3,84.82,250.82,26.1,956.69 +5332,7,E09000016,3,71.78,250.82,26.1,956.69 +5884,7,E09000016,4,83.89,409.45,26.1,1560.62 +5917,5,E09000016,4,102.51,409.45,26.1,1560.62 +6647,9,E09000016,1,66.17,203.65,26.1,778.51 +6973,9,E09000016,2,78.29,257.26,26.1,980.11 +7299,9,E09000016,3,84.82,313.51,26.1,1195.85 +7625,9,E09000016,4,102.51,511.83,26.1,1950.8 +7951,10,E09000016,0,69.7,562.87,18.44,2145.33 +128,1,E06000019,1,53.13,99.69,26.1,438.9 +454,1,E06000019,2,58.72,117.9,26.1,483.95 +780,1,E06000019,3,69.9,133.98,26.1,566.51 +1106,1,E06000019,4,81.09,162.93,26.1,630.28 +1432,3,E06000019,1,46.6,88.96,26.1,345.17 +1758,3,E06000019,2,50.34,95.42,26.1,363.93 +2084,3,E06000019,3,60.59,105.05,26.1,423.89 +2410,3,E06000019,4,68.97,128.63,26.1,450.21 +2736,2,E06000019,0,38.95,242.82,18.44,1324.3 +3062,4,E06000019,0,46.12,106.09,18.44,371.32 +3388,6,E06000019,0,38.95,238.1,18.44,911.75 +3714,8,E06000019,0,46.12,238.1,18.44,911.75 +4287,5,E06000019,1,53.13,110.39,26.1,420.18 +4508,7,E06000019,1,46.6,110.39,26.1,420.18 +4897,5,E06000019,2,58.72,131.84,26.1,506.45 +5193,7,E06000019,2,50.34,131.84,26.1,506.45 +5528,5,E06000019,3,69.9,159.7,26.1,611.52 +5784,7,E06000019,3,60.59,159.7,26.1,611.52 +6180,5,E06000019,4,81.09,216.52,26.1,829.12 +6445,7,E06000019,4,68.97,216.52,26.1,829.12 +6648,9,E06000019,1,53.13,138.01,26.1,525.21 +6974,9,E06000019,2,58.72,164.8,26.1,633.05 +7300,9,E06000019,3,69.9,199.62,26.1,764.33 +7626,9,E06000019,4,81.09,270.66,26.1,1036.39 +7952,10,E06000019,0,38.95,297.64,18.44,1139.71 +129,1,E07000098,1,54.99,120.05,26.1,525.21 +455,1,E07000098,2,65.24,143.62,26.1,592.76 +781,1,E07000098,3,71.78,157.56,26.1,637.77 +1107,1,E07000098,4,82.02,172.58,26.1,630.28 +1433,3,E07000098,1,50.34,100.76,26.1,465.19 +1759,3,E07000098,2,58.72,118.97,26.1,468.93 +2085,3,E07000098,3,64.31,131.84,26.1,506.45 +2411,3,E07000098,4,71.78,150.06,26.1,562.73 +2737,2,E07000098,0,35.87,223.96,18.44,1464.58 +3063,4,E07000098,0,55.36,134.38,18.44,1101.56 +3389,6,E07000098,0,35.87,584.67,18.44,2227.89 +3715,8,E07000098,0,55.36,584.67,18.44,2227.89 +4138,5,E07000098,1,54.99,177.93,26.1,675.29 +4255,7,E07000098,1,50.34,177.93,26.1,675.29 +4719,5,E07000098,2,65.24,229.37,26.1,870.35 +4981,7,E07000098,2,58.72,229.37,26.1,870.35 +5438,5,E07000098,3,71.78,319.42,26.1,1219.26 +5624,7,E07000098,3,64.31,319.42,26.1,1219.26 +6148,5,E07000098,4,82.02,531.67,26.1,2025.8 +6286,7,E07000098,4,71.78,531.67,26.1,2025.8 +6649,9,E07000098,1,54.99,222.43,26.1,844.13 +6975,9,E07000098,2,65.24,286.72,26.1,1087.94 +7301,9,E07000098,3,71.78,399.29,26.1,1524.08 +7627,9,E07000098,4,82.02,664.55,26.1,2532.29 +7953,10,E07000098,0,35.87,730.84,18.44,2784.81 +130,1,E07000037,1,52.2,100.76,26.1,431.41 +456,1,E07000037,2,62.45,115.76,26.1,457.7 +782,1,E07000037,3,68.97,127.56,26.1,487.69 +1108,1,E07000037,4,76.43,159.7,26.1,589.02 +1434,3,E07000037,1,46.6,91.12,26.1,378.95 +1760,3,E07000037,2,53.13,97.54,26.1,382.66 +2086,3,E07000037,3,58.72,105.05,26.1,420.18 +2412,3,E07000037,4,64.31,123.26,26.1,431.41 +2738,2,E07000037,0,51.26,238.1,18.44,1250.1 +3064,4,E07000037,0,49.2,113.15,18.44,429.07 +3390,6,E07000037,0,51.26,213.35,18.44,816.83 +3716,8,E07000037,0,49.2,213.35,18.44,816.83 +4329,5,E07000037,1,52.2,103.98,26.1,397.64 +4429,7,E07000037,1,46.6,103.98,26.1,397.64 +5025,5,E07000037,2,62.45,126.48,26.1,483.95 +5165,7,E07000037,2,53.13,126.48,26.1,483.95 +5668,5,E07000037,3,68.97,155.41,26.1,592.76 +5826,7,E07000037,3,58.72,155.41,26.1,592.76 +6243,5,E07000037,4,76.43,194.01,26.1,742.84 +6487,7,E07000037,4,64.31,194.01,26.1,742.84 +6650,9,E07000037,1,52.2,129.97,26.1,497.07 +6976,9,E07000037,2,62.45,158.09,26.1,604.94 +7302,9,E07000037,3,68.97,194.27,26.1,740.92 +7628,9,E07000037,4,76.43,242.51,26.1,928.52 +7954,10,E07000037,0,51.26,266.69,18.44,1021.09 +131,1,E09000017,1,66.17,146.84,26.1,697.83 +457,1,E09000017,2,78.29,158.63,26.1,679.04 +783,1,E09000017,3,84.82,168.29,26.1,799.02 +1109,1,E09000017,4,102.51,188.66,26.1,889.11 +1435,3,E09000017,1,58.72,120.05,26.1,517.69 +1761,3,E09000017,2,64.31,140.42,26.1,619.01 +2087,3,E09000017,3,71.78,160.78,26.1,709.03 +2413,3,E09000017,4,83.89,262.61,26.1,922.88 +2739,2,E09000017,0,69.7,313.55,18.44,1741.04 +3065,4,E09000017,0,59.45,367.77,18.44,1394.47 +3391,6,E09000017,0,69.7,473.86,18.44,1811.15 +3717,8,E09000017,0,59.45,473.86,18.44,1811.15 +3966,5,E09000017,1,66.17,183.29,26.1,701.58 +4180,7,E09000017,1,58.72,183.29,26.1,701.58 +4581,5,E09000017,2,78.29,250.82,26.1,956.69 +4681,7,E09000017,2,64.31,250.82,26.1,956.69 +5233,5,E09000017,3,84.82,295.83,26.1,1129.24 +5333,7,E09000017,3,71.78,295.83,26.1,1129.24 +5885,7,E09000017,4,83.89,430.9,26.1,1646.93 +5918,5,E09000017,4,102.51,430.9,26.1,1646.93 +6651,9,E09000017,1,66.17,229.13,26.1,876.89 +6977,9,E09000017,2,78.29,313.51,26.1,1195.85 +7303,9,E09000017,3,84.82,369.81,26.1,1411.55 +7629,9,E09000017,4,102.51,538.61,26.1,2058.67 +7955,10,E09000017,0,69.7,592.32,18.44,2263.94 +132,1,E07000132,1,52.2,100.76,26.1,431.41 +458,1,E07000132,2,62.45,115.76,26.1,457.7 +784,1,E07000132,3,68.97,127.56,26.1,487.69 +1110,1,E07000132,4,76.43,159.7,26.1,589.02 +1436,3,E07000132,1,46.6,91.12,26.1,378.95 +1762,3,E07000132,2,53.13,97.54,26.1,382.66 +2088,3,E07000132,3,58.72,105.05,26.1,420.18 +2414,3,E07000132,4,64.31,123.26,26.1,431.41 +2740,2,E07000132,0,51.26,238.1,18.44,1250.1 +3066,4,E07000132,0,49.2,113.15,18.44,429.07 +3392,6,E07000132,0,51.26,238.1,18.44,911.75 +3718,8,E07000132,0,49.2,238.1,18.44,911.75 +4330,5,E07000132,1,52.2,93.26,26.1,352.66 +4430,7,E07000132,1,46.6,93.26,26.1,352.66 +5026,5,E07000132,2,62.45,121.11,26.1,461.44 +5166,7,E07000132,2,53.13,121.11,26.1,461.44 +5669,5,E07000132,3,68.97,142.56,26.1,543.94 +5827,7,E07000132,3,58.72,142.56,26.1,543.94 +6244,5,E07000132,4,76.43,216.52,26.1,829.12 +6488,7,E07000132,4,64.31,216.52,26.1,829.12 +6652,9,E07000132,1,52.2,116.56,26.1,440.83 +6978,9,E07000132,2,62.45,151.41,26.1,576.8 +7304,9,E07000132,3,68.97,178.2,26.1,679.95 +7630,9,E07000132,4,76.43,270.66,26.1,1036.39 +7956,10,E07000132,0,51.26,297.64,18.44,1139.71 +133,1,E07000227,1,57.79,124.33,26.1,622.76 +459,1,E07000227,2,71.78,147.91,26.1,660.31 +785,1,E07000227,3,82.02,162.93,26.1,720.34 +1111,1,E07000227,4,90.42,180.08,26.1,784.04 +1437,3,E07000227,1,52.2,116.83,26.1,562.73 +1763,3,E07000227,2,63.38,130.77,26.1,513.94 +2089,3,E07000227,3,68.97,151.13,26.1,656.53 +2415,3,E07000227,4,73.64,186.51,26.1,686.53 +2741,2,E07000227,0,61.49,265.21,18.44,1192.28 +3067,4,E07000227,0,48.18,193.32,18.44,709.56 +3393,6,E07000227,0,61.49,473.86,18.44,1811.15 +3719,8,E07000227,0,48.18,473.86,18.44,1811.15 +4009,5,E07000227,1,57.79,148.99,26.1,566.51 +4076,7,E07000227,1,52.2,148.99,26.1,566.51 +4624,5,E07000227,2,71.78,188.66,26.1,720.34 +4771,7,E07000227,2,63.38,188.66,26.1,720.34 +5276,5,E07000227,3,82.02,262.61,26.1,997.89 +5376,7,E07000227,3,68.97,262.61,26.1,997.89 +5961,5,E07000227,4,90.42,430.9,26.1,1646.93 +6065,7,E07000227,4,73.64,430.9,26.1,1646.93 +6653,9,E07000227,1,57.79,186.23,26.1,708.19 +6979,9,E07000227,2,71.78,235.82,26.1,900.41 +7305,9,E07000227,3,82.02,328.26,26.1,1247.4 +7631,9,E07000227,4,90.42,538.61,26.1,2058.67 +7957,10,E07000227,0,61.49,592.32,18.44,2263.94 +134,1,E09000018,1,66.17,146.84,26.1,697.83 +460,1,E09000018,2,78.29,158.63,26.1,679.04 +786,1,E09000018,3,84.82,168.29,26.1,799.02 +1112,1,E09000018,4,102.51,188.66,26.1,889.11 +1438,3,E09000018,1,58.72,120.05,26.1,517.69 +1764,3,E09000018,2,64.31,140.42,26.1,619.01 +2090,3,E09000018,3,71.78,160.78,26.1,709.03 +2416,3,E09000018,4,83.89,262.61,26.1,922.88 +2742,2,E09000018,0,69.7,313.55,18.44,1741.04 +3068,4,E09000018,0,59.45,367.77,18.44,1394.47 +3394,6,E09000018,0,69.7,808.63,18.44,3090.15 +3720,8,E09000018,0,59.45,808.63,18.44,3090.15 +3967,5,E09000018,1,66.17,217.59,26.1,832.86 +4181,7,E09000018,1,58.72,217.59,26.1,832.86 +4582,5,E09000018,2,78.29,295.83,26.1,1129.24 +4682,7,E09000018,2,64.31,295.83,26.1,1129.24 +5234,5,E09000018,3,84.82,319.42,26.1,1219.26 +5334,7,E09000018,3,71.78,319.42,26.1,1219.26 +5886,7,E09000018,4,83.89,735.31,26.1,2809.91 +5919,5,E09000018,4,102.51,735.31,26.1,2809.91 +6654,9,E09000018,1,66.17,271.98,26.1,1041.11 +6980,9,E09000018,2,78.29,369.81,26.1,1411.55 +7306,9,E09000018,3,84.82,399.29,26.1,1524.08 +7632,9,E09000018,4,102.51,919.14,26.1,3512.36 +7958,10,E09000018,0,69.7,1010.78,18.44,3862.64 +135,1,E07000011,1,54.99,120.05,26.1,525.21 +461,1,E07000011,2,65.24,143.62,26.1,592.76 +787,1,E07000011,3,71.78,157.56,26.1,637.77 +1113,1,E07000011,4,82.02,172.58,26.1,630.28 +1439,3,E07000011,1,50.34,100.76,26.1,465.19 +1765,3,E07000011,2,58.72,118.97,26.1,468.93 +2091,3,E07000011,3,64.31,131.84,26.1,506.45 +2417,3,E07000011,4,71.78,150.06,26.1,562.73 +2743,2,E07000011,0,35.87,223.96,18.44,1464.58 +3069,4,E07000011,0,55.36,134.38,18.44,1101.56 +3395,6,E07000011,0,35.87,312.38,18.44,1192.28 +3721,8,E07000011,0,55.36,312.38,18.44,1192.28 +4139,5,E07000011,1,54.99,114.68,26.1,435.16 +4256,7,E07000011,1,50.34,114.68,26.1,435.16 +4720,5,E07000011,2,65.24,144.7,26.1,551.46 +4982,7,E07000011,2,58.72,144.7,26.1,551.46 +5439,5,E07000011,3,71.78,172.58,26.1,656.53 +5625,7,E07000011,3,64.31,172.58,26.1,656.53 +6149,5,E07000011,4,82.02,284.04,26.1,1084.23 +6287,7,E07000011,4,71.78,284.04,26.1,1084.23 +6655,9,E07000011,1,54.99,143.37,26.1,543.94 +6981,9,E07000011,2,65.24,180.87,26.1,689.33 +7307,9,E07000011,3,71.78,215.73,26.1,820.72 +7633,9,E07000011,4,82.02,355.06,26.1,1355.24 +7959,10,E07000011,0,35.87,390.47,18.44,1490.37 +136,1,E07000120,1,52.2,94.33,26.1,412.65 +462,1,E07000120,2,59.66,108.27,26.1,476.46 +788,1,E07000120,3,66.17,121.11,26.1,513.94 +1114,1,E07000120,4,72.71,135.06,26.1,562.73 +1440,3,E07000120,1,43.8,86.81,26.1,356.41 +1766,3,E07000120,2,54.06,95.42,26.1,401.38 +2092,3,E07000120,3,58.72,106.12,26.1,438.9 +2418,3,E07000120,4,55.93,120.05,26.1,472.71 +2744,2,E07000120,0,55.36,236.93,18.44,1184.02 +3070,4,E07000120,0,32.8,464.43,18.44,2075.22 +3396,6,E07000120,0,55.36,189.79,18.44,721.98 +3722,8,E07000120,0,32.8,189.79,18.44,721.98 +4367,5,E07000120,1,52.2,91.12,26.1,345.17 +4479,7,E07000120,1,43.8,91.12,26.1,345.17 +4937,5,E07000120,2,59.66,99.69,26.1,382.66 +5075,7,E07000120,2,54.06,99.69,26.1,382.66 +5580,5,E07000120,3,66.17,126.48,26.1,483.95 +5755,7,E07000120,3,58.72,126.48,26.1,483.95 +6328,5,E07000120,4,72.71,172.58,26.1,656.53 +6379,7,E07000120,4,55.93,172.58,26.1,656.53 +6656,9,E07000120,1,52.2,113.9,26.1,431.41 +6982,9,E07000120,2,59.66,124.6,26.1,478.35 +7308,9,E07000120,3,66.17,158.09,26.1,604.94 +7634,9,E07000120,4,72.71,215.73,26.1,820.72 +7960,10,E07000120,0,55.36,237.24,18.44,902.44 +137,1,E07000202,1,54.99,120.05,26.1,525.21 +463,1,E07000202,2,65.24,143.62,26.1,592.76 +789,1,E07000202,3,71.78,157.56,26.1,637.77 +1115,1,E07000202,4,82.02,172.58,26.1,630.28 +1441,3,E07000202,1,50.34,100.76,26.1,465.19 +1767,3,E07000202,2,58.72,118.97,26.1,468.93 +2093,3,E07000202,3,64.31,131.84,26.1,506.45 +2419,3,E07000202,4,71.78,150.06,26.1,562.73 +2745,2,E07000202,0,35.87,223.96,18.44,1464.58 +3071,4,E07000202,0,55.36,134.38,18.44,1101.56 +3397,6,E07000202,0,35.87,271.13,18.44,1035.55 +3723,8,E07000202,0,55.36,271.13,18.44,1035.55 +4140,5,E07000202,1,54.99,103.98,26.1,397.64 +4257,7,E07000202,1,50.34,103.98,26.1,397.64 +4721,5,E07000202,2,65.24,126.48,26.1,483.95 +4983,7,E07000202,2,58.72,126.48,26.1,483.95 +5440,5,E07000202,3,71.78,147.91,26.1,558.95 +5626,7,E07000202,3,64.31,147.91,26.1,558.95 +6150,5,E07000202,4,82.02,247.6,26.1,941.64 +6288,7,E07000202,4,71.78,247.6,26.1,941.64 +6657,9,E07000202,1,54.99,129.97,26.1,497.07 +6983,9,E07000202,2,65.24,158.09,26.1,604.94 +7309,9,E07000202,3,71.78,184.89,26.1,698.67 +7635,9,E07000202,4,82.02,309.5,26.1,1177.09 +7961,10,E07000202,0,35.87,338.9,18.44,1294.44 +138,1,E06000046,1,57.79,124.33,26.1,622.76 +464,1,E06000046,2,71.78,147.91,26.1,660.31 +790,1,E06000046,3,82.02,162.93,26.1,720.34 +1116,1,E06000046,4,90.42,180.08,26.1,784.04 +1442,3,E06000046,1,52.2,116.83,26.1,562.73 +1768,3,E06000046,2,63.38,130.77,26.1,513.94 +2094,3,E06000046,3,68.97,151.13,26.1,656.53 +2420,3,E06000046,4,73.64,186.51,26.1,686.53 +2746,2,E06000046,0,61.49,265.21,18.44,1192.28 +3072,4,E06000046,0,48.18,193.32,18.44,709.56 +3398,6,E06000046,0,61.49,264.04,18.44,1006.67 +3724,8,E06000046,0,48.18,264.04,18.44,1006.67 +4010,5,E06000046,1,57.79,108.27,26.1,412.65 +4077,7,E06000046,1,52.2,108.27,26.1,412.65 +4625,5,E06000046,2,71.78,138.27,26.1,525.21 +4772,7,E06000046,2,63.38,138.27,26.1,525.21 +5277,5,E06000046,3,82.02,172.58,26.1,656.53 +5377,7,E06000046,3,68.97,172.58,26.1,656.53 +5962,5,E06000046,4,90.42,240.09,26.1,915.39 +6066,7,E06000046,4,73.64,240.09,26.1,915.39 +6658,9,E06000046,1,57.79,135.33,26.1,515.83 +6984,9,E06000046,2,71.78,172.84,26.1,656.5 +7310,9,E06000046,3,82.02,215.73,26.1,820.72 +7636,9,E06000046,4,90.42,300.12,26.1,1144.22 +7962,10,E06000046,0,61.49,330.05,18.44,1258.36 +139,1,E06000053,1,49.41,108.27,26.1,495.22 +465,1,E06000053,2,55.93,122.19,26.1,510.2 +791,1,E06000053,3,62.45,142.56,26.1,570.26 +1117,1,E06000053,4,71.78,159.7,26.1,686.53 +1443,3,E06000053,1,47.54,90.03,26.1,742.84 +1769,3,E06000053,2,54.99,101.83,26.1,393.89 +2095,3,E06000053,3,62.45,110.39,26.1,446.46 +2421,3,E06000053,4,74.57,131.84,26.1,461.44 +2747,2,E06000053,0,54.33,228.68,18.44,1241.8 +3073,4,E06000053,0,54.33,114.33,18.44,490.95 +3399,6,E06000053,0,54.33,213.35,18.44,816.83 +3725,8,E06000053,0,54.33,213.35,18.44,816.83 +3925,7,E06000053,1,47.54,130.77,26.1,502.67 +4209,5,E06000053,1,49.41,130.77,26.1,502.67 +4845,5,E06000053,2,55.93,166.14,26.1,634.03 +5122,7,E06000053,2,54.99,166.14,26.1,634.03 +5476,5,E06000053,3,62.45,194.01,26.1,742.84 +5702,7,E06000053,3,62.45,194.01,26.1,742.84 +6014,5,E06000053,4,71.78,295.83,26.1,1129.24 +6414,7,E06000053,4,74.57,295.83,26.1,1129.24 +6659,9,E06000053,1,49.41,163.46,26.1,628.36 +6985,9,E06000053,2,55.93,207.68,26.1,792.54 +7311,9,E06000053,3,62.45,242.51,26.1,928.52 +7637,9,E06000053,4,71.78,369.81,26.1,1411.55 +7963,10,E06000053,0,54.33,266.69,18.44,1021.09 +140,1,E09000019,1,66.17,146.84,26.1,697.83 +466,1,E09000019,2,78.29,158.63,26.1,679.04 +792,1,E09000019,3,84.82,168.29,26.1,799.02 +1118,1,E09000019,4,102.51,188.66,26.1,889.11 +1444,3,E09000019,1,58.72,120.05,26.1,517.69 +1770,3,E09000019,2,64.31,140.42,26.1,619.01 +2096,3,E09000019,3,71.78,160.78,26.1,709.03 +2422,3,E09000019,4,83.89,262.61,26.1,922.88 +2748,2,E09000019,0,69.7,313.55,18.44,1741.04 +3074,4,E09000019,0,59.45,367.77,18.44,1394.47 +3400,6,E09000019,0,69.7,723.76,18.44,2764.16 +3726,8,E09000019,0,59.45,723.76,18.44,2764.16 +3968,5,E09000019,1,66.17,335.49,26.1,1279.25 +4182,7,E09000019,1,58.72,335.49,26.1,1279.25 +4583,5,E09000019,2,78.29,452.33,26.1,1725.75 +4683,7,E09000019,2,64.31,452.33,26.1,1725.75 +5235,5,E09000019,3,84.82,529.51,26.1,2018.35 +5335,7,E09000019,3,71.78,529.51,26.1,2018.35 +5887,7,E09000019,4,83.89,658.13,26.1,2513.53 +5920,5,E09000019,4,102.51,658.13,26.1,2513.53 +6660,9,E09000019,1,66.17,419.36,26.1,1599.08 +6986,9,E09000019,2,78.29,565.41,26.1,2157.12 +7312,9,E09000019,3,84.82,661.89,26.1,2522.91 +7638,9,E09000019,4,102.51,822.66,26.1,3141.95 +7964,10,E09000019,0,69.7,904.69,18.44,3455.24 +141,1,E09000020,1,66.17,146.84,26.1,697.83 +467,1,E09000020,2,78.29,158.63,26.1,679.04 +793,1,E09000020,3,84.82,168.29,26.1,799.02 +1119,1,E09000020,4,102.51,188.66,26.1,889.11 +1445,3,E09000020,1,58.72,120.05,26.1,517.69 +1771,3,E09000020,2,64.31,140.42,26.1,619.01 +2097,3,E09000020,3,71.78,160.78,26.1,709.03 +2423,3,E09000020,4,83.89,262.61,26.1,922.88 +2749,2,E09000020,0,69.7,313.55,18.44,1741.04 +3075,4,E09000020,0,59.45,367.77,18.44,1394.47 +3401,6,E09000020,0,69.7,3175.58,18.44,12125.3 +3727,8,E09000020,0,59.45,3175.58,18.44,12125.3 +3969,5,E09000020,1,66.17,486.62,26.1,1860.85 +4183,7,E09000020,1,58.72,486.62,26.1,1860.85 +4584,5,E09000020,2,78.29,735.31,26.1,2809.91 +4684,7,E09000020,2,64.31,735.31,26.1,2809.91 +5236,5,E09000020,3,84.82,1568.16,26.1,5983.74 +5336,7,E09000020,3,71.78,1568.16,26.1,5983.74 +5888,7,E09000020,4,83.89,2888.71,26.1,11025.81 +5921,5,E09000020,4,102.51,2888.71,26.1,11025.81 +6661,9,E09000020,1,66.17,608.29,26.1,2325.93 +6987,9,E09000020,2,78.29,919.14,26.1,3512.36 +7313,9,E09000020,3,84.82,1960.2,26.1,7479.64 +7639,9,E09000020,4,102.51,3610.88,26.1,13782.23 +7965,10,E09000020,0,69.7,3969.47,18.44,15156.61 +143,1,E07000146,1,54.99,120.05,26.1,525.21 +469,1,E07000146,2,65.24,143.62,26.1,592.76 +795,1,E07000146,3,71.78,157.56,26.1,637.77 +1121,1,E07000146,4,82.02,172.58,26.1,630.28 +1447,3,E07000146,1,50.34,100.76,26.1,465.19 +1773,3,E07000146,2,58.72,118.97,26.1,468.93 +2099,3,E07000146,3,64.31,131.84,26.1,506.45 +2425,3,E07000146,4,71.78,150.06,26.1,562.73 +2751,2,E07000146,0,35.87,223.96,18.44,1464.58 +3077,4,E07000146,0,55.36,134.38,18.44,1101.56 +3403,6,E07000146,0,35.87,269.94,18.44,1031.49 +3729,8,E07000146,0,55.36,269.94,18.44,1031.49 +4141,5,E07000146,1,54.99,100.76,26.1,386.37 +4258,7,E07000146,1,50.34,100.76,26.1,386.37 +4722,5,E07000146,2,65.24,126.48,26.1,483.95 +4984,7,E07000146,2,58.72,126.48,26.1,483.95 +5441,5,E07000146,3,71.78,148.99,26.1,566.51 +5627,7,E07000146,3,64.31,148.99,26.1,566.51 +6151,5,E07000146,4,82.02,245.47,26.1,937.9 +6289,7,E07000146,4,71.78,245.47,26.1,937.9 +6663,9,E07000146,1,54.99,125.95,26.1,483.04 +6989,9,E07000146,2,65.24,158.09,26.1,604.94 +7315,9,E07000146,3,71.78,186.23,26.1,708.19 +7641,9,E07000146,4,82.02,306.81,26.1,1172.43 +7967,10,E07000146,0,35.87,337.42,18.44,1289.3 +144,1,E06000010,1,51.27,92.19,26.1,401.38 +470,1,E06000010,2,58.72,109.33,26.1,495.22 +796,1,E06000010,3,63.38,121.11,26.1,570.26 +1122,1,E06000010,4,73.64,145.77,26.1,630.28 +1448,3,E06000010,1,46.6,82.54,26.1,326.41 +1774,3,E06000010,2,53.13,113.61,26.1,510.2 +2100,3,E06000010,3,56.86,105.05,26.1,401.38 +2426,3,E06000010,4,64.31,122.19,26.1,619.01 +2752,2,E06000010,0,52.28,232.2,18.44,1118.04 +3078,4,E06000010,0,51.26,159.13,18.44,660.1 +3404,6,E06000010,0,52.28,189.79,18.44,721.98 +3730,8,E06000010,0,51.26,189.79,18.44,721.98 +4398,5,E06000010,1,51.27,82.54,26.1,311.36 +4552,7,E06000010,1,46.6,82.54,26.1,311.36 +4820,7,E06000010,2,53.13,103.98,26.1,397.64 +4878,5,E06000010,2,58.72,103.98,26.1,397.64 +5509,5,E06000010,3,63.38,126.48,26.1,483.95 +5856,7,E06000010,3,56.86,126.48,26.1,483.95 +6114,5,E06000010,4,73.64,172.58,26.1,656.53 +6212,7,E06000010,4,64.31,172.58,26.1,656.53 +6664,9,E06000010,1,51.27,103.19,26.1,389.24 +6990,9,E06000010,2,53.13,129.97,26.1,497.07 +7316,9,E06000010,3,63.38,158.09,26.1,604.94 +7642,9,E06000010,4,73.64,215.73,26.1,820.72 +7968,10,E06000010,0,52.28,237.24,18.44,902.44 +145,1,E09000021,1,66.17,146.84,26.1,697.83 +471,1,E09000021,2,78.29,158.63,26.1,679.04 +797,1,E09000021,3,84.82,168.29,26.1,799.02 +1123,1,E09000021,4,102.51,188.66,26.1,889.11 +1449,3,E09000021,1,58.72,120.05,26.1,517.69 +1775,3,E09000021,2,64.31,140.42,26.1,619.01 +2101,3,E09000021,3,71.78,160.78,26.1,709.03 +2427,3,E09000021,4,83.89,262.61,26.1,922.88 +2753,2,E09000021,0,69.7,313.55,18.44,1741.04 +3079,4,E09000021,0,59.45,367.77,18.44,1394.47 +3405,6,E09000021,0,69.7,623.56,18.44,2376.4 +3731,8,E09000021,0,59.45,623.56,18.44,2376.4 +3970,5,E09000021,1,66.17,211.17,26.1,806.54 +4184,7,E09000021,1,58.72,211.17,26.1,806.54 +4585,5,E09000021,2,78.29,273.34,26.1,1042.97 +4685,7,E09000021,2,64.31,273.34,26.1,1042.97 +5237,5,E09000021,3,84.82,339.77,26.1,1298.05 +5337,7,E09000021,3,71.78,339.77,26.1,1298.05 +5889,7,E09000021,4,83.89,567.02,26.1,2160.9 +5922,5,E09000021,4,102.51,567.02,26.1,2160.9 +6665,9,E09000021,1,66.17,263.95,26.1,1008.25 +6991,9,E09000021,2,78.29,341.67,26.1,1303.68 +7317,9,E09000021,3,84.82,424.73,26.1,1622.57 +7643,9,E09000021,4,102.51,708.78,26.1,2701.13 +7969,10,E09000021,0,69.7,779.44,18.44,2970.49 +146,1,E08000034,1,51.27,92.19,26.1,401.38 +472,1,E08000034,2,58.72,109.33,26.1,495.22 +798,1,E08000034,3,63.38,121.11,26.1,570.26 +1124,1,E08000034,4,73.64,145.77,26.1,630.28 +1450,3,E08000034,1,46.6,82.54,26.1,326.41 +1776,3,E08000034,2,53.13,113.61,26.1,510.2 +2102,3,E08000034,3,56.86,105.05,26.1,401.38 +2428,3,E08000034,4,64.31,122.19,26.1,619.01 +2754,2,E08000034,0,52.28,232.2,18.44,1118.04 +3080,4,E08000034,0,51.26,159.13,18.44,660.1 +3406,6,E08000034,0,52.28,213.35,18.44,816.83 +3732,8,E08000034,0,51.26,213.35,18.44,816.83 +4399,5,E08000034,1,51.27,97.54,26.1,371.42 +4553,7,E08000034,1,46.6,97.54,26.1,371.42 +4821,7,E08000034,2,53.13,114.68,26.1,435.16 +4879,5,E08000034,2,58.72,114.68,26.1,435.16 +5510,5,E08000034,3,63.38,136.13,26.1,521.47 +5857,7,E08000034,3,56.86,136.13,26.1,521.47 +6115,5,E08000034,4,73.64,194.01,26.1,742.84 +6213,7,E08000034,4,64.31,194.01,26.1,742.84 +6666,9,E08000034,1,51.27,121.95,26.1,464.28 +6992,9,E08000034,2,53.13,143.37,26.1,543.94 +7318,9,E08000034,3,63.38,170.16,26.1,651.81 +7644,9,E08000034,4,73.64,242.51,26.1,928.52 +7970,10,E08000034,0,52.28,266.69,18.44,1021.09 +147,1,E08000011,1,52.2,94.33,26.1,412.65 +473,1,E08000011,2,59.66,108.27,26.1,476.46 +799,1,E08000011,3,66.17,121.11,26.1,513.94 +1125,1,E08000011,4,72.71,135.06,26.1,562.73 +1451,3,E08000011,1,43.8,86.81,26.1,356.41 +1777,3,E08000011,2,54.06,95.42,26.1,401.38 +2103,3,E08000011,3,58.72,106.12,26.1,438.9 +2429,3,E08000011,4,55.93,120.05,26.1,472.71 +2755,2,E08000011,0,55.36,236.93,18.44,1184.02 +3081,4,E08000011,0,32.8,464.43,18.44,2075.22 +3407,6,E08000011,0,55.36,226.32,18.44,862.26 +3733,8,E08000011,0,32.8,226.32,18.44,862.26 +4368,5,E08000011,1,52.2,110.39,26.1,420.18 +4480,7,E08000011,1,43.8,110.39,26.1,420.18 +4938,5,E08000011,2,59.66,126.48,26.1,483.95 +5076,7,E08000011,2,54.06,126.48,26.1,483.95 +5581,5,E08000011,3,66.17,143.62,26.1,547.72 +5756,7,E08000011,3,58.72,143.62,26.1,547.72 +6329,5,E08000011,4,72.71,205.81,26.1,784.04 +6380,7,E08000011,4,55.93,205.81,26.1,784.04 +6667,9,E08000011,1,52.2,138.01,26.1,525.21 +6993,9,E08000011,2,59.66,158.09,26.1,604.94 +7319,9,E08000011,3,66.17,179.53,26.1,684.6 +7645,9,E08000011,4,72.71,257.26,26.1,980.11 +7971,10,E08000011,0,55.36,282.91,18.44,1077.83 +148,1,E09000022,1,66.17,146.84,26.1,697.83 +474,1,E09000022,2,78.29,158.63,26.1,679.04 +800,1,E09000022,3,84.82,168.29,26.1,799.02 +1126,1,E09000022,4,102.51,188.66,26.1,889.11 +1452,3,E09000022,1,58.72,120.05,26.1,517.69 +1778,3,E09000022,2,64.31,140.42,26.1,619.01 +2104,3,E09000022,3,71.78,160.78,26.1,709.03 +2430,3,E09000022,4,83.89,262.61,26.1,922.88 +2756,2,E09000022,0,69.7,313.55,18.44,1741.04 +3082,4,E09000022,0,59.45,367.77,18.44,1394.47 +3408,6,E09000022,0,69.7,678.97,18.44,2595.01 +3734,8,E09000022,0,59.45,678.97,18.44,2595.01 +3971,5,E09000022,1,66.17,276.55,26.1,1054.2 +4185,7,E09000022,1,58.72,276.55,26.1,1054.2 +4586,5,E09000022,2,78.29,330.14,26.1,1260.53 +4686,7,E09000022,2,64.31,330.14,26.1,1260.53 +5238,5,E09000022,3,84.82,433.04,26.1,1654.45 +5338,7,E09000022,3,71.78,433.04,26.1,1654.45 +5890,7,E09000022,4,83.89,619.55,26.1,2359.77 +5923,5,E09000022,4,102.51,619.55,26.1,2359.77 +6668,9,E09000022,1,66.17,345.69,26.1,1317.79 +6994,9,E09000022,2,78.29,412.67,26.1,1575.63 +7320,9,E09000022,3,84.82,541.3,26.1,2068.01 +7646,9,E09000022,4,102.51,774.45,26.1,2949.66 +7972,10,E09000022,0,69.7,848.71,18.44,3243.8 +149,1,E07000121,1,52.2,94.33,26.1,412.65 +475,1,E07000121,2,59.66,108.27,26.1,476.46 +801,1,E07000121,3,66.17,121.11,26.1,513.94 +1127,1,E07000121,4,72.71,135.06,26.1,562.73 +1453,3,E07000121,1,43.8,86.81,26.1,356.41 +1779,3,E07000121,2,54.06,95.42,26.1,401.38 +2105,3,E07000121,3,58.72,106.12,26.1,438.9 +2431,3,E07000121,4,55.93,120.05,26.1,472.71 +2757,2,E07000121,0,55.36,236.93,18.44,1184.02 +3083,4,E07000121,0,32.8,464.43,18.44,2075.22 +3409,6,E07000121,0,55.36,200.38,18.44,767.38 +3735,8,E07000121,0,32.8,200.38,18.44,767.38 +4369,5,E07000121,1,52.2,110.39,26.1,420.18 +4481,7,E07000121,1,43.8,110.39,26.1,420.18 +4939,5,E07000121,2,59.66,131.84,26.1,506.45 +5077,7,E07000121,2,54.06,131.84,26.1,506.45 +5582,5,E07000121,3,66.17,148.99,26.1,566.51 +5757,7,E07000121,3,58.72,148.99,26.1,566.51 +6330,5,E07000121,4,72.71,182.22,26.1,697.83 +6381,7,E07000121,4,55.93,182.22,26.1,697.83 +6669,9,E07000121,1,52.2,138.01,26.1,525.21 +6995,9,E07000121,2,59.66,164.8,26.1,633.05 +7321,9,E07000121,3,66.17,186.23,26.1,708.19 +7647,9,E07000121,4,72.71,227.8,26.1,872.27 +7973,10,E07000121,0,55.36,250.47,18.44,959.18 +150,1,E08000035,1,51.27,92.19,26.1,401.38 +476,1,E08000035,2,58.72,109.33,26.1,495.22 +802,1,E08000035,3,63.38,121.11,26.1,570.26 +1128,1,E08000035,4,73.64,145.77,26.1,630.28 +1454,3,E08000035,1,46.6,82.54,26.1,326.41 +1780,3,E08000035,2,53.13,113.61,26.1,510.2 +2106,3,E08000035,3,56.86,105.05,26.1,401.38 +2432,3,E08000035,4,64.31,122.19,26.1,619.01 +2758,2,E08000035,0,52.28,232.2,18.44,1118.04 +3084,4,E08000035,0,51.26,159.13,18.44,660.1 +3410,6,E08000035,0,52.28,455,18.44,1736.91 +3736,8,E08000035,0,51.26,455,18.44,1736.91 +4400,5,E08000035,1,51.27,126.48,26.1,483.95 +4554,7,E08000035,1,46.6,126.48,26.1,483.95 +4822,7,E08000035,2,53.13,155.41,26.1,592.76 +4880,5,E08000035,2,58.72,155.41,26.1,592.76 +5511,5,E08000035,3,63.38,190.79,26.1,727.86 +5858,7,E08000035,3,56.86,190.79,26.1,727.86 +6116,5,E08000035,4,73.64,413.74,26.1,1579.45 +6214,7,E08000035,4,64.31,413.74,26.1,1579.45 +6670,9,E08000035,1,51.27,158.09,26.1,604.94 +6996,9,E08000035,2,53.13,194.27,26.1,740.92 +7322,9,E08000035,3,63.38,238.5,26.1,909.76 +7648,9,E08000035,4,73.64,517.19,26.1,1974.21 +7974,10,E08000035,0,52.28,568.74,18.44,2171.05 +151,1,E06000016,1,52.2,100.76,26.1,431.41 +477,1,E06000016,2,62.45,115.76,26.1,457.7 +803,1,E06000016,3,68.97,127.56,26.1,487.69 +1129,1,E06000016,4,76.43,159.7,26.1,589.02 +1455,3,E06000016,1,46.6,91.12,26.1,378.95 +1781,3,E06000016,2,53.13,97.54,26.1,382.66 +2107,3,E06000016,3,58.72,105.05,26.1,420.18 +2433,3,E06000016,4,64.31,123.26,26.1,431.41 +2759,2,E06000016,0,51.26,238.1,18.44,1250.1 +3085,4,E06000016,0,49.2,113.15,18.44,429.07 +3411,6,E06000016,0,51.26,218.08,18.44,833.35 +3737,8,E06000016,0,49.2,218.08,18.44,833.35 +4332,5,E06000016,1,52.2,108.27,26.1,412.65 +4432,7,E06000016,1,46.6,108.27,26.1,412.65 +5028,5,E06000016,2,62.45,126.48,26.1,483.95 +5168,7,E06000016,2,53.13,126.48,26.1,483.95 +5671,5,E06000016,3,68.97,138.27,26.1,525.21 +5829,7,E06000016,3,58.72,138.27,26.1,525.21 +6246,5,E06000016,4,76.43,199.38,26.1,757.82 +6490,7,E06000016,4,64.31,199.38,26.1,757.82 +6671,9,E06000016,1,52.2,135.33,26.1,515.83 +6997,9,E06000016,2,62.45,158.09,26.1,604.94 +7323,9,E06000016,3,68.97,172.84,26.1,656.5 +7649,9,E06000016,4,76.43,249.22,26.1,947.31 +7975,10,E06000016,0,51.26,272.59,18.44,1041.74 +152,1,E07000063,1,57.79,124.33,26.1,622.76 +478,1,E07000063,2,71.78,147.91,26.1,660.31 +804,1,E07000063,3,82.02,162.93,26.1,720.34 +1130,1,E07000063,4,90.42,180.08,26.1,784.04 +1456,3,E07000063,1,52.2,116.83,26.1,562.73 +1782,3,E07000063,2,63.38,130.77,26.1,513.94 +2108,3,E07000063,3,68.97,151.13,26.1,656.53 +2434,3,E07000063,4,73.64,186.51,26.1,686.53 +2760,2,E07000063,0,61.49,265.21,18.44,1192.28 +3086,4,E07000063,0,48.18,193.32,18.44,709.56 +3412,6,E07000063,0,61.49,374.83,18.44,1431.61 +3738,8,E07000063,0,48.18,374.83,18.44,1431.61 +4011,5,E07000063,1,57.79,143.62,26.1,547.72 +4078,7,E07000063,1,52.2,143.62,26.1,547.72 +4626,5,E07000063,2,71.78,188.66,26.1,720.34 +4773,7,E07000063,2,63.38,188.66,26.1,720.34 +5278,5,E07000063,3,82.02,228.29,26.1,866.6 +5378,7,E07000063,3,68.97,228.29,26.1,866.6 +5963,5,E07000063,4,90.42,340.85,26.1,1301.79 +6067,7,E07000063,4,73.64,340.85,26.1,1301.79 +6672,9,E07000063,1,57.79,179.53,26.1,684.6 +6998,9,E07000063,2,71.78,235.82,26.1,900.41 +7324,9,E07000063,3,82.02,285.39,26.1,1083.25 +7650,9,E07000063,4,90.42,426.06,26.1,1627.19 +7976,10,E07000063,0,61.49,468.55,18.44,1789.55 +153,1,E09000023,1,66.17,146.84,26.1,697.83 +479,1,E09000023,2,78.29,158.63,26.1,679.04 +805,1,E09000023,3,84.82,168.29,26.1,799.02 +1131,1,E09000023,4,102.51,188.66,26.1,889.11 +1457,3,E09000023,1,58.72,120.05,26.1,517.69 +1783,3,E09000023,2,64.31,140.42,26.1,619.01 +2109,3,E09000023,3,71.78,160.78,26.1,709.03 +2435,3,E09000023,4,83.89,262.61,26.1,922.88 +2761,2,E09000023,0,69.7,313.55,18.44,1741.04 +3087,4,E09000023,0,59.45,367.77,18.44,1394.47 +3413,6,E09000023,0,69.7,519.83,18.44,1980.34 +3739,8,E09000023,0,59.45,519.83,18.44,1980.34 +3972,5,E09000023,1,66.17,194.01,26.1,742.84 +4186,7,E09000023,1,58.72,194.01,26.1,742.84 +4587,5,E09000023,2,78.29,250.82,26.1,956.69 +4687,7,E09000023,2,64.31,250.82,26.1,956.69 +5239,5,E09000023,3,84.82,319.42,26.1,1219.26 +5339,7,E09000023,3,71.78,319.42,26.1,1219.26 +5891,7,E09000023,4,83.89,472.7,26.1,1800.75 +5924,5,E09000023,4,102.51,472.7,26.1,1800.75 +6673,9,E09000023,1,66.17,242.51,26.1,928.52 +6999,9,E09000023,2,78.29,313.51,26.1,1195.85 +7325,9,E09000023,3,84.82,399.29,26.1,1524.08 +7651,9,E09000023,4,102.51,590.86,26.1,2250.96 +7977,10,E09000023,0,69.7,649.79,18.44,2475.41 +154,1,E07000194,1,53.13,99.69,26.1,438.9 +480,1,E07000194,2,58.72,117.9,26.1,483.95 +806,1,E07000194,3,69.9,133.98,26.1,566.51 +1132,1,E07000194,4,81.09,162.93,26.1,630.28 +1458,3,E07000194,1,46.6,88.96,26.1,345.17 +1784,3,E07000194,2,50.34,95.42,26.1,363.93 +2110,3,E07000194,3,60.59,105.05,26.1,423.89 +2436,3,E07000194,4,68.97,128.63,26.1,450.21 +2762,2,E07000194,0,38.95,242.82,18.44,1324.3 +3088,4,E07000194,0,46.12,106.09,18.44,371.32 +3414,6,E07000194,0,38.95,299.41,18.44,1142.82 +3740,8,E07000194,0,46.12,299.41,18.44,1142.82 +4288,5,E07000194,1,53.13,114.68,26.1,435.16 +4509,7,E07000194,1,46.6,114.68,26.1,435.16 +4898,5,E07000194,2,58.72,136.13,26.1,521.47 +5194,7,E07000194,2,50.34,136.13,26.1,521.47 +5529,5,E07000194,3,69.9,172.58,26.1,656.53 +5785,7,E07000194,3,60.59,172.58,26.1,656.53 +6181,5,E07000194,4,81.09,272.26,26.1,1039.19 +6446,7,E07000194,4,68.97,272.26,26.1,1039.19 +6674,9,E07000194,1,53.13,143.37,26.1,543.94 +7000,9,E07000194,2,58.72,170.16,26.1,651.81 +7326,9,E07000194,3,69.9,215.73,26.1,820.72 +7652,9,E07000194,4,81.09,340.33,26.1,1298.96 +7978,10,E07000194,0,38.95,374.27,18.44,1428.49 +155,1,E07000138,1,52.2,100.76,26.1,431.41 +481,1,E07000138,2,62.45,115.76,26.1,457.7 +807,1,E07000138,3,68.97,127.56,26.1,487.69 +1133,1,E07000138,4,76.43,159.7,26.1,589.02 +1459,3,E07000138,1,46.6,91.12,26.1,378.95 +1785,3,E07000138,2,53.13,97.54,26.1,382.66 +2111,3,E07000138,3,58.72,105.05,26.1,420.18 +2437,3,E07000138,4,64.31,123.26,26.1,431.41 +2763,2,E07000138,0,51.26,238.1,18.44,1250.1 +3089,4,E07000138,0,49.2,113.15,18.44,429.07 +3415,6,E07000138,0,51.26,194.49,18.44,738.47 +3741,8,E07000138,0,49.2,194.49,18.44,738.47 +4333,5,E07000138,1,52.2,103.98,26.1,397.64 +4433,7,E07000138,1,46.6,103.98,26.1,397.64 +5029,5,E07000138,2,62.45,118.97,26.1,453.95 +5169,7,E07000138,2,53.13,118.97,26.1,453.95 +5672,5,E07000138,3,68.97,136.13,26.1,521.47 +5830,7,E07000138,3,58.72,136.13,26.1,521.47 +6247,5,E07000138,4,76.43,176.86,26.1,671.51 +6491,7,E07000138,4,64.31,176.86,26.1,671.51 +6675,9,E07000138,1,52.2,129.97,26.1,497.07 +7001,9,E07000138,2,62.45,148.72,26.1,567.46 +7327,9,E07000138,3,68.97,170.16,26.1,651.81 +7653,9,E07000138,4,76.43,221.08,26.1,839.44 +7979,10,E07000138,0,51.26,243.12,18.44,923.06 +156,1,E08000012,1,52.2,94.33,26.1,412.65 +482,1,E08000012,2,59.66,108.27,26.1,476.46 +808,1,E08000012,3,66.17,121.11,26.1,513.94 +1134,1,E08000012,4,72.71,135.06,26.1,562.73 +1460,3,E08000012,1,43.8,86.81,26.1,356.41 +1786,3,E08000012,2,54.06,95.42,26.1,401.38 +2112,3,E08000012,3,58.72,106.12,26.1,438.9 +2438,3,E08000012,4,55.93,120.05,26.1,472.71 +2764,2,E08000012,0,55.36,236.93,18.44,1184.02 +3090,4,E08000012,0,32.8,464.43,18.44,2075.22 +3416,6,E08000012,0,55.36,252.25,18.44,957.15 +3742,8,E08000012,0,32.8,252.25,18.44,957.15 +4370,5,E08000012,1,52.2,114.68,26.1,435.16 +4482,7,E08000012,1,43.8,114.68,26.1,435.16 +4940,5,E08000012,2,59.66,148.99,26.1,566.51 +5078,7,E08000012,2,54.06,148.99,26.1,566.51 +5583,5,E08000012,3,66.17,143.62,26.1,547.72 +5758,7,E08000012,3,58.72,143.62,26.1,547.72 +6331,5,E08000012,4,72.71,229.37,26.1,870.35 +6382,7,E08000012,4,55.93,229.37,26.1,870.35 +6676,9,E08000012,1,52.2,143.37,26.1,543.94 +7002,9,E08000012,2,59.66,186.23,26.1,708.19 +7328,9,E08000012,3,66.17,179.53,26.1,684.6 +7654,9,E08000012,4,72.71,286.72,26.1,1087.94 +7980,10,E08000012,0,55.36,315.32,18.44,1196.44 +157,1,E06000032,1,54.99,120.05,26.1,525.21 +483,1,E06000032,2,65.24,143.62,26.1,592.76 +809,1,E06000032,3,71.78,157.56,26.1,637.77 +1135,1,E06000032,4,82.02,172.58,26.1,630.28 +1461,3,E06000032,1,50.34,100.76,26.1,465.19 +1787,3,E06000032,2,58.72,118.97,26.1,468.93 +2113,3,E06000032,3,64.31,131.84,26.1,506.45 +2439,3,E06000032,4,71.78,150.06,26.1,562.73 +2765,2,E06000032,0,35.87,223.96,18.44,1464.58 +3091,4,E06000032,0,55.36,134.38,18.44,1101.56 +3417,6,E06000032,0,35.87,275.83,18.44,1052.03 +3743,8,E06000032,0,55.36,275.83,18.44,1052.03 +4142,5,E06000032,1,54.99,121.11,26.1,461.44 +4259,7,E06000032,1,50.34,121.11,26.1,461.44 +4723,5,E06000032,2,65.24,148.99,26.1,566.51 +4985,7,E06000032,2,58.72,148.99,26.1,566.51 +5442,5,E06000032,3,71.78,182.22,26.1,697.83 +5628,7,E06000032,3,64.31,182.22,26.1,697.83 +6152,5,E06000032,4,82.02,250.82,26.1,956.69 +6290,7,E06000032,4,71.78,250.82,26.1,956.69 +6677,9,E06000032,1,54.99,151.41,26.1,576.8 +7003,9,E06000032,2,65.24,186.23,26.1,708.19 +7329,9,E06000032,3,71.78,227.8,26.1,872.27 +7655,9,E06000032,4,82.02,313.51,26.1,1195.85 +7981,10,E06000032,0,35.87,344.81,18.44,1315.06 +158,1,E07000110,1,57.79,124.33,26.1,622.76 +484,1,E07000110,2,71.78,147.91,26.1,660.31 +810,1,E07000110,3,82.02,162.93,26.1,720.34 +1136,1,E07000110,4,90.42,180.08,26.1,784.04 +1462,3,E07000110,1,52.2,116.83,26.1,562.73 +1788,3,E07000110,2,63.38,130.77,26.1,513.94 +2114,3,E07000110,3,68.97,151.13,26.1,656.53 +2440,3,E07000110,4,73.64,186.51,26.1,686.53 +2766,2,E07000110,0,61.49,265.21,18.44,1192.28 +3092,4,E07000110,0,48.18,193.32,18.44,709.56 +3418,6,E07000110,0,61.49,312.38,18.44,1192.28 +3744,8,E07000110,0,48.18,312.38,18.44,1192.28 +4012,5,E07000110,1,57.79,136.13,26.1,521.47 +4079,7,E07000110,1,52.2,136.13,26.1,521.47 +4627,5,E07000110,2,71.78,166.14,26.1,634.03 +4774,7,E07000110,2,63.38,166.14,26.1,634.03 +5279,5,E07000110,3,82.02,194.01,26.1,742.84 +5379,7,E07000110,3,68.97,194.01,26.1,742.84 +5964,5,E07000110,4,90.42,284.04,26.1,1084.23 +6068,7,E07000110,4,73.64,284.04,26.1,1084.23 +6678,9,E07000110,1,57.79,170.16,26.1,651.81 +7004,9,E07000110,2,71.78,207.68,26.1,792.54 +7330,9,E07000110,3,82.02,242.51,26.1,928.52 +7656,9,E07000110,4,90.42,355.06,26.1,1355.24 +7982,10,E07000110,0,61.49,390.47,18.44,1490.37 +159,1,E07000074,1,54.99,120.05,26.1,525.21 +485,1,E07000074,2,65.24,143.62,26.1,592.76 +811,1,E07000074,3,71.78,157.56,26.1,637.77 +1137,1,E07000074,4,82.02,172.58,26.1,630.28 +1463,3,E07000074,1,50.34,100.76,26.1,465.19 +1789,3,E07000074,2,58.72,118.97,26.1,468.93 +2115,3,E07000074,3,64.31,131.84,26.1,506.45 +2441,3,E07000074,4,71.78,150.06,26.1,562.73 +2767,2,E07000074,0,35.87,223.96,18.44,1464.58 +3093,4,E07000074,0,55.36,134.38,18.44,1101.56 +3419,6,E07000074,0,35.87,325.34,18.44,1241.8 +3745,8,E07000074,0,55.36,325.34,18.44,1241.8 +4143,5,E07000074,1,54.99,126.48,26.1,483.95 +4260,7,E07000074,1,50.34,126.48,26.1,483.95 +4724,5,E07000074,2,65.24,166.14,26.1,634.03 +4986,7,E07000074,2,58.72,166.14,26.1,634.03 +5443,5,E07000074,3,71.78,194.01,26.1,742.84 +5629,7,E07000074,3,64.31,194.01,26.1,742.84 +6153,5,E07000074,4,82.02,295.83,26.1,1129.24 +6291,7,E07000074,4,71.78,295.83,26.1,1129.24 +6679,9,E07000074,1,54.99,158.09,26.1,604.94 +7005,9,E07000074,2,65.24,207.68,26.1,792.54 +7331,9,E07000074,3,71.78,242.51,26.1,928.52 +7657,9,E07000074,4,82.02,369.81,26.1,1411.55 +7983,10,E07000074,0,35.87,406.66,18.44,1552.29 +160,1,E07000235,1,53.13,99.69,26.1,438.9 +486,1,E07000235,2,58.72,117.9,26.1,483.95 +812,1,E07000235,3,69.9,133.98,26.1,566.51 +1138,1,E07000235,4,81.09,162.93,26.1,630.28 +1464,3,E07000235,1,46.6,88.96,26.1,345.17 +1790,3,E07000235,2,50.34,95.42,26.1,363.93 +2116,3,E07000235,3,60.59,105.05,26.1,423.89 +2442,3,E07000235,4,68.97,128.63,26.1,450.21 +2768,2,E07000235,0,38.95,242.82,18.44,1324.3 +3094,4,E07000235,0,46.12,106.09,18.44,371.32 +3420,6,E07000235,0,38.95,300.58,18.44,1146.92 +3746,8,E07000235,0,46.12,300.58,18.44,1146.92 +4289,5,E07000235,1,53.13,114.68,26.1,435.16 +4510,7,E07000235,1,46.6,114.68,26.1,435.16 +4899,5,E07000235,2,58.72,136.13,26.1,521.47 +5195,7,E07000235,2,50.34,136.13,26.1,521.47 +5530,5,E07000235,3,69.9,166.14,26.1,634.03 +5786,7,E07000235,3,60.59,166.14,26.1,634.03 +6182,5,E07000235,4,81.09,273.34,26.1,1042.97 +6447,7,E07000235,4,68.97,273.34,26.1,1042.97 +6680,9,E07000235,1,53.13,143.37,26.1,543.94 +7006,9,E07000235,2,58.72,170.16,26.1,651.81 +7332,9,E07000235,3,69.9,207.68,26.1,792.54 +7658,9,E07000235,4,81.09,341.67,26.1,1303.68 +7984,10,E07000235,0,38.95,375.73,18.44,1433.64 +61,1,E08000003,1,52.2,94.33,26.1,412.65 +387,1,E08000003,2,59.66,108.27,26.1,476.46 +713,1,E08000003,3,66.17,121.11,26.1,513.94 +1039,1,E08000003,4,72.71,135.06,26.1,562.73 +1365,3,E08000003,1,43.8,86.81,26.1,356.41 +1691,3,E08000003,2,54.06,95.42,26.1,401.38 +2017,3,E08000003,3,58.72,106.12,26.1,438.9 +2343,3,E08000003,4,55.93,120.05,26.1,472.71 +2669,2,E08000003,0,55.36,236.93,18.44,1184.02 +2995,4,E08000003,0,32.8,464.43,18.44,2075.22 +3321,6,E08000003,0,55.36,300.58,18.44,1146.92 +3647,8,E08000003,0,32.8,300.58,18.44,1146.92 +4361,5,E08000003,1,52.2,131.84,26.1,506.45 +4473,7,E08000003,1,43.8,131.84,26.1,506.45 +4931,5,E08000003,2,59.66,155.41,26.1,592.76 +5069,7,E08000003,2,54.06,155.41,26.1,592.76 +5574,5,E08000003,3,66.17,175.78,26.1,671.51 +5749,7,E08000003,3,58.72,175.78,26.1,671.51 +6322,5,E08000003,4,72.71,273.34,26.1,1042.97 +6373,7,E08000003,4,55.93,273.34,26.1,1042.97 +6581,9,E08000003,1,52.2,164.8,26.1,633.05 +6907,9,E08000003,2,59.66,194.27,26.1,740.92 +7233,9,E08000003,3,66.17,219.74,26.1,839.44 +7559,9,E08000003,4,72.71,341.67,26.1,1303.68 +7885,10,E08000003,0,55.36,375.73,18.44,1433.64 +161,1,E07000174,1,52.2,100.76,26.1,431.41 +487,1,E07000174,2,62.45,115.76,26.1,457.7 +813,1,E07000174,3,68.97,127.56,26.1,487.69 +1139,1,E07000174,4,76.43,159.7,26.1,589.02 +1465,3,E07000174,1,46.6,91.12,26.1,378.95 +1791,3,E07000174,2,53.13,97.54,26.1,382.66 +2117,3,E07000174,3,58.72,105.05,26.1,420.18 +2443,3,E07000174,4,64.31,123.26,26.1,431.41 +2769,2,E07000174,0,51.26,238.1,18.44,1250.1 +3095,4,E07000174,0,49.2,113.15,18.44,429.07 +3421,6,E07000174,0,51.26,200.38,18.44,767.38 +3747,8,E07000174,0,49.2,200.38,18.44,767.38 +4334,5,E07000174,1,52.2,88.96,26.1,341.39 +4434,7,E07000174,1,46.6,88.96,26.1,341.39 +5030,5,E07000174,2,62.45,110.39,26.1,420.18 +5170,7,E07000174,2,53.13,110.39,26.1,420.18 +5673,5,E07000174,3,68.97,126.48,26.1,483.95 +5831,7,E07000174,3,58.72,126.48,26.1,483.95 +6248,5,E07000174,4,76.43,182.22,26.1,697.83 +6492,7,E07000174,4,64.31,182.22,26.1,697.83 +6681,9,E07000174,1,52.2,111.21,26.1,426.83 +7007,9,E07000174,2,62.45,138.01,26.1,525.21 +7333,9,E07000174,3,68.97,158.09,26.1,604.94 +7659,9,E07000174,4,76.43,227.8,26.1,872.27 +7985,10,E07000174,0,51.26,250.47,18.44,959.18 +280,1,E06000035,1,57.79,124.33,26.1,622.76 +606,1,E06000035,2,71.78,147.91,26.1,660.31 +932,1,E06000035,3,82.02,162.93,26.1,720.34 +1258,1,E06000035,4,90.42,180.08,26.1,784.04 +1584,3,E06000035,1,52.2,116.83,26.1,562.73 +1910,3,E06000035,2,63.38,130.77,26.1,513.94 +2236,3,E06000035,3,68.97,151.13,26.1,656.53 +2562,3,E06000035,4,73.64,186.51,26.1,686.53 +2888,2,E06000035,0,61.49,265.21,18.44,1192.28 +3214,4,E06000035,0,48.18,193.32,18.44,709.56 +3540,6,E06000035,0,61.49,300.58,18.44,1146.92 +3866,8,E06000035,0,48.18,300.58,18.44,1146.92 +4036,5,E06000035,1,57.79,126.48,26.1,483.95 +4103,7,E06000035,1,52.2,126.48,26.1,483.95 +4651,5,E06000035,2,71.78,148.99,26.1,566.51 +4798,7,E06000035,2,63.38,148.99,26.1,566.51 +5303,5,E06000035,3,82.02,172.58,26.1,656.53 +5403,7,E06000035,3,68.97,172.58,26.1,656.53 +5988,5,E06000035,4,90.42,273.34,26.1,1042.97 +6092,7,E06000035,4,73.64,273.34,26.1,1042.97 +6800,9,E06000035,1,57.79,158.09,26.1,604.94 +7126,9,E06000035,2,71.78,186.23,26.1,708.19 +7452,9,E06000035,3,82.02,215.73,26.1,820.72 +7778,9,E06000035,4,90.42,341.67,26.1,1303.68 +8104,10,E06000035,0,61.49,375.73,18.44,1433.64 +162,1,E07000133,1,52.2,100.76,26.1,431.41 +488,1,E07000133,2,62.45,115.76,26.1,457.7 +814,1,E07000133,3,68.97,127.56,26.1,487.69 +1140,1,E07000133,4,76.43,159.7,26.1,589.02 +1466,3,E07000133,1,46.6,91.12,26.1,378.95 +1792,3,E07000133,2,53.13,97.54,26.1,382.66 +2118,3,E07000133,3,58.72,105.05,26.1,420.18 +2444,3,E07000133,4,64.31,123.26,26.1,431.41 +2770,2,E07000133,0,51.26,238.1,18.44,1250.1 +3096,4,E07000133,0,49.2,113.15,18.44,429.07 +3422,6,E07000133,0,51.26,312.38,18.44,1192.28 +3748,8,E07000133,0,49.2,312.38,18.44,1192.28 +4335,5,E07000133,1,52.2,98.62,26.1,378.95 +4435,7,E07000133,1,46.6,98.62,26.1,378.95 +5031,5,E07000133,2,62.45,121.11,26.1,461.44 +5171,7,E07000133,2,53.13,121.11,26.1,461.44 +5674,5,E07000133,3,68.97,138.27,26.1,525.21 +5832,7,E07000133,3,58.72,138.27,26.1,525.21 +6249,5,E07000133,4,76.43,284.04,26.1,1084.23 +6493,7,E07000133,4,64.31,284.04,26.1,1084.23 +6682,9,E07000133,1,52.2,123.26,26.1,473.66 +7008,9,E07000133,2,62.45,151.41,26.1,576.8 +7334,9,E07000133,3,68.97,172.84,26.1,656.5 +7660,9,E07000133,4,76.43,355.06,26.1,1355.24 +7986,10,E07000133,0,51.26,390.47,18.44,1490.37 +163,1,E07000187,1,49.41,108.27,26.1,495.22 +489,1,E07000187,2,55.93,122.19,26.1,510.2 +815,1,E07000187,3,62.45,142.56,26.1,570.26 +1141,1,E07000187,4,71.78,159.7,26.1,686.53 +1467,3,E07000187,1,47.54,90.03,26.1,742.84 +1793,3,E07000187,2,54.99,101.83,26.1,393.89 +2119,3,E07000187,3,62.45,110.39,26.1,446.46 +2445,3,E07000187,4,74.57,131.84,26.1,461.44 +2771,2,E07000187,0,54.33,228.68,18.44,1241.8 +3097,4,E07000187,0,54.33,114.33,18.44,490.95 +3423,6,E07000187,0,54.33,300.58,18.44,1146.92 +3749,8,E07000187,0,54.33,300.58,18.44,1146.92 +3926,7,E07000187,1,47.54,108.27,26.1,412.65 +4210,5,E07000187,1,49.41,108.27,26.1,412.65 +4846,5,E07000187,2,55.93,136.13,26.1,521.47 +5123,7,E07000187,2,54.99,136.13,26.1,521.47 +5477,5,E07000187,3,62.45,172.58,26.1,656.53 +5703,7,E07000187,3,62.45,172.58,26.1,656.53 +6015,5,E07000187,4,71.78,273.34,26.1,1042.97 +6415,7,E07000187,4,74.57,273.34,26.1,1042.97 +6683,9,E07000187,1,49.41,135.33,26.1,515.83 +7009,9,E07000187,2,55.93,170.16,26.1,651.81 +7335,9,E07000187,3,62.45,215.73,26.1,820.72 +7661,9,E07000187,4,71.78,341.67,26.1,1303.68 +7987,10,E07000187,0,54.33,375.73,18.44,1433.64 +164,1,E09000024,1,66.17,146.84,26.1,697.83 +490,1,E09000024,2,78.29,158.63,26.1,679.04 +816,1,E09000024,3,84.82,168.29,26.1,799.02 +1142,1,E09000024,4,102.51,188.66,26.1,889.11 +1468,3,E09000024,1,58.72,120.05,26.1,517.69 +1794,3,E09000024,2,64.31,140.42,26.1,619.01 +2120,3,E09000024,3,71.78,160.78,26.1,709.03 +2446,3,E09000024,4,83.89,262.61,26.1,922.88 +2772,2,E09000024,0,69.7,313.55,18.44,1741.04 +3098,4,E09000024,0,59.45,367.77,18.44,1394.47 +3424,6,E09000024,0,69.7,648.32,18.44,2471.28 +3750,8,E09000024,0,59.45,648.32,18.44,2471.28 +3973,5,E09000024,1,66.17,240.09,26.1,915.39 +4187,7,E09000024,1,58.72,240.09,26.1,915.39 +4588,5,E09000024,2,78.29,307.63,26.1,1174.22 +4688,7,E09000024,2,64.31,307.63,26.1,1174.22 +5240,5,E09000024,3,84.82,375.16,26.1,1433.08 +5340,7,E09000024,3,71.78,375.16,26.1,1433.08 +5892,7,E09000024,4,83.89,589.54,26.1,2247.21 +5925,5,E09000024,4,102.51,589.54,26.1,2247.21 +6684,9,E09000024,1,66.17,300.12,26.1,1144.22 +7010,9,E09000024,2,78.29,384.53,26.1,1467.76 +7336,9,E09000024,3,84.82,468.95,26.1,1791.41 +7662,9,E09000024,4,102.51,736.91,26.1,2808.96 +7988,10,E09000024,0,69.7,810.39,18.44,3089.07 +165,1,E07000042,1,49.41,108.27,26.1,495.22 +491,1,E07000042,2,55.93,122.19,26.1,510.2 +817,1,E07000042,3,62.45,142.56,26.1,570.26 +1143,1,E07000042,4,71.78,159.7,26.1,686.53 +1469,3,E07000042,1,47.54,90.03,26.1,742.84 +1795,3,E07000042,2,54.99,101.83,26.1,393.89 +2121,3,E07000042,3,62.45,110.39,26.1,446.46 +2447,3,E07000042,4,74.57,131.84,26.1,461.44 +2773,2,E07000042,0,54.33,228.68,18.44,1241.8 +3099,4,E07000042,0,54.33,114.33,18.44,490.95 +3425,6,E07000042,0,54.33,275.83,18.44,1052.03 +3751,8,E07000042,0,54.33,275.83,18.44,1052.03 +3927,7,E07000042,1,47.54,103.98,26.1,397.64 +4211,5,E07000042,1,49.41,103.98,26.1,397.64 +4847,5,E07000042,2,55.93,131.84,26.1,506.45 +5124,7,E07000042,2,54.99,131.84,26.1,506.45 +5478,5,E07000042,3,62.45,166.14,26.1,637.77 +5704,7,E07000042,3,62.45,166.14,26.1,637.77 +6016,5,E07000042,4,71.78,250.82,26.1,956.69 +6416,7,E07000042,4,74.57,250.82,26.1,956.69 +6685,9,E07000042,1,49.41,129.97,26.1,497.07 +7011,9,E07000042,2,55.93,164.8,26.1,633.05 +7337,9,E07000042,3,62.45,207.68,26.1,797.3 +7663,9,E07000042,4,71.78,313.51,26.1,1195.85 +7989,10,E07000042,0,54.33,344.81,18.44,1315.06 +166,1,E07000203,1,54.99,120.05,26.1,525.21 +492,1,E07000203,2,65.24,143.62,26.1,592.76 +818,1,E07000203,3,71.78,157.56,26.1,637.77 +1144,1,E07000203,4,82.02,172.58,26.1,630.28 +1470,3,E07000203,1,50.34,100.76,26.1,465.19 +1796,3,E07000203,2,58.72,118.97,26.1,468.93 +2122,3,E07000203,3,64.31,131.84,26.1,506.45 +2448,3,E07000203,4,71.78,150.06,26.1,562.73 +2774,2,E07000203,0,35.87,223.96,18.44,1464.58 +3100,4,E07000203,0,55.36,134.38,18.44,1101.56 +3426,6,E07000203,0,35.87,319.44,18.44,1217.02 +3752,8,E07000203,0,55.36,319.44,18.44,1217.02 +4144,5,E07000203,1,54.99,101.83,26.1,390.15 +4261,7,E07000203,1,50.34,101.83,26.1,390.15 +4725,5,E07000203,2,65.24,126.48,26.1,483.95 +4987,7,E07000203,2,58.72,126.48,26.1,483.95 +5444,5,E07000203,3,71.78,160.78,26.1,615.23 +5630,7,E07000203,3,64.31,160.78,26.1,615.23 +6154,5,E07000203,4,82.02,290.49,26.1,1106.74 +6292,7,E07000203,4,71.78,290.49,26.1,1106.74 +6686,9,E07000203,1,54.99,127.29,26.1,487.69 +7012,9,E07000203,2,65.24,158.09,26.1,604.94 +7338,9,E07000203,3,71.78,200.97,26.1,769.09 +7664,9,E07000203,4,82.02,363.1,26.1,1383.41 +7990,10,E07000203,0,35.87,399.32,18.44,1521.31 +167,1,E07000228,1,57.79,124.33,26.1,622.76 +493,1,E07000228,2,71.78,147.91,26.1,660.31 +819,1,E07000228,3,82.02,162.93,26.1,720.34 +1145,1,E07000228,4,90.42,180.08,26.1,784.04 +1471,3,E07000228,1,52.2,116.83,26.1,562.73 +1797,3,E07000228,2,63.38,130.77,26.1,513.94 +2123,3,E07000228,3,68.97,151.13,26.1,656.53 +2449,3,E07000228,4,73.64,186.51,26.1,686.53 +2775,2,E07000228,0,61.49,265.21,18.44,1192.28 +3101,4,E07000228,0,48.18,193.32,18.44,709.56 +3427,6,E07000228,0,61.49,497.44,18.44,1901.94 +3753,8,E07000228,0,48.18,497.44,18.44,1901.94 +4013,5,E07000228,1,57.79,155.41,26.1,592.76 +4080,7,E07000228,1,52.2,155.41,26.1,592.76 +4628,5,E07000228,2,71.78,194.01,26.1,742.84 +4775,7,E07000228,2,63.38,194.01,26.1,742.84 +5280,5,E07000228,3,82.02,271.19,26.1,1035.41 +5380,7,E07000228,3,68.97,271.19,26.1,1035.41 +5965,5,E07000228,4,90.42,453.4,26.1,1729.49 +6069,7,E07000228,4,73.64,453.4,26.1,1729.49 +6687,9,E07000228,1,57.79,194.27,26.1,740.92 +7013,9,E07000228,2,71.78,242.51,26.1,928.52 +7339,9,E07000228,3,82.02,338.98,26.1,1294.34 +7665,9,E07000228,4,90.42,566.75,26.1,2161.85 +7991,10,E07000228,0,61.49,621.79,18.44,2377.41 +168,1,E06000002,1,51.27,88.96,26.1,345.17 +494,1,E06000002,2,57.79,102.91,26.1,423.89 +820,1,E06000002,3,61.52,114.68,26.1,562.73 +1146,1,E06000002,4,70.84,128.63,26.1,491.47 +1472,3,E06000002,1,42.87,100.76,26.1,371.42 +1798,3,E06000002,2,50.34,91.12,26.1,393.89 +2124,3,E06000002,3,54.06,106.12,26.1,438.9 +2450,3,E06000002,4,56.86,116.83,26.1,423.89 +2776,2,E06000002,0,55.36,234.56,18.44,1179.92 +3102,4,E06000002,0,47.15,251.08,18.44,998.38 +3428,6,E06000002,0,55.36,213.35,18.44,816.83 +3754,8,E06000002,0,47.15,213.35,18.44,816.83 +4455,7,E06000002,1,42.87,98.62,26.1,378.95 +4536,5,E06000002,1,51.27,98.62,26.1,378.95 +5051,5,E06000002,2,57.79,115.76,26.1,438.9 +5102,7,E06000002,2,50.34,115.76,26.1,438.9 +5556,5,E06000002,3,61.52,133.98,26.1,513.94 +5731,7,E06000002,3,54.06,133.98,26.1,513.94 +6355,5,E06000002,4,70.84,194.01,26.1,742.84 +6513,7,E06000002,4,56.86,194.01,26.1,742.84 +6688,9,E06000002,1,42.87,123.26,26.1,473.66 +7014,9,E06000002,2,57.79,144.7,26.1,548.7 +7340,9,E06000002,3,61.52,167.48,26.1,642.46 +7666,9,E06000002,4,70.84,242.51,26.1,928.52 +7992,10,E06000002,0,55.36,266.69,18.44,1021.09 +169,1,E06000042,1,57.79,124.33,26.1,622.76 +495,1,E06000042,2,71.78,147.91,26.1,660.31 +821,1,E06000042,3,82.02,162.93,26.1,720.34 +1147,1,E06000042,4,90.42,180.08,26.1,784.04 +1473,3,E06000042,1,52.2,116.83,26.1,562.73 +1799,3,E06000042,2,63.38,130.77,26.1,513.94 +2125,3,E06000042,3,68.97,151.13,26.1,656.53 +2451,3,E06000042,4,73.64,186.51,26.1,686.53 +2777,2,E06000042,0,61.49,265.21,18.44,1192.28 +3103,4,E06000042,0,48.18,193.32,18.44,709.56 +3429,6,E06000042,0,61.49,363.05,18.44,1386.18 +3755,8,E06000042,0,48.18,363.05,18.44,1386.18 +4014,5,E06000042,1,57.79,136.13,26.1,521.47 +4081,7,E06000042,1,52.2,136.13,26.1,521.47 +4629,5,E06000042,2,71.78,166.14,26.1,634.03 +4776,7,E06000042,2,63.38,166.14,26.1,634.03 +5281,5,E06000042,3,82.02,188.66,26.1,720.34 +5381,7,E06000042,3,68.97,188.66,26.1,720.34 +5966,5,E06000042,4,90.42,330.14,26.1,1260.53 +6070,7,E06000042,4,73.64,330.14,26.1,1260.53 +6689,9,E06000042,1,57.79,170.16,26.1,651.81 +7015,9,E06000042,2,71.78,207.68,26.1,792.54 +7341,9,E06000042,3,82.02,235.82,26.1,900.41 +7667,9,E06000042,4,90.42,412.67,26.1,1575.63 +7993,10,E06000042,0,61.49,453.82,18.44,1732.78 +170,1,E07000210,1,57.79,124.33,26.1,622.76 +496,1,E07000210,2,71.78,147.91,26.1,660.31 +822,1,E07000210,3,82.02,162.93,26.1,720.34 +1148,1,E07000210,4,90.42,180.08,26.1,784.04 +1474,3,E07000210,1,52.2,116.83,26.1,562.73 +1800,3,E07000210,2,63.38,130.77,26.1,513.94 +2126,3,E07000210,3,68.97,151.13,26.1,656.53 +2452,3,E07000210,4,73.64,186.51,26.1,686.53 +2778,2,E07000210,0,61.49,265.21,18.44,1192.28 +3104,4,E07000210,0,48.18,193.32,18.44,709.56 +3430,6,E07000210,0,61.49,623.56,18.44,2376.4 +3756,8,E07000210,0,48.18,623.56,18.44,2376.4 +4015,5,E07000210,1,57.79,166.14,26.1,634.03 +4082,7,E07000210,1,52.2,166.14,26.1,634.03 +4630,5,E07000210,2,71.78,240.09,26.1,915.39 +4777,7,E07000210,2,63.38,240.09,26.1,915.39 +5282,5,E07000210,3,82.02,330.14,26.1,1260.53 +5382,7,E07000210,3,68.97,330.14,26.1,1260.53 +5967,5,E07000210,4,90.42,567.02,26.1,2160.9 +6071,7,E07000210,4,73.64,567.02,26.1,2160.9 +6690,9,E07000210,1,57.79,207.68,26.1,792.54 +7016,9,E07000210,2,71.78,300.12,26.1,1144.22 +7342,9,E07000210,3,82.02,412.67,26.1,1575.63 +7668,9,E07000210,4,90.42,708.78,26.1,2701.13 +7994,10,E07000210,0,61.49,779.44,18.44,2970.49 +171,1,E07000091,1,57.79,124.33,26.1,622.76 +497,1,E07000091,2,71.78,147.91,26.1,660.31 +823,1,E07000091,3,82.02,162.93,26.1,720.34 +1149,1,E07000091,4,90.42,180.08,26.1,784.04 +1475,3,E07000091,1,52.2,116.83,26.1,562.73 +1801,3,E07000091,2,63.38,130.77,26.1,513.94 +2127,3,E07000091,3,68.97,151.13,26.1,656.53 +2453,3,E07000091,4,73.64,186.51,26.1,686.53 +2779,2,E07000091,0,61.49,265.21,18.44,1192.28 +3105,4,E07000091,0,48.18,193.32,18.44,709.56 +3431,6,E07000091,0,61.49,374.83,18.44,1431.61 +3757,8,E07000091,0,48.18,374.83,18.44,1431.61 +4016,5,E07000091,1,57.79,136.13,26.1,521.47 +4083,7,E07000091,1,52.2,136.13,26.1,521.47 +4631,5,E07000091,2,71.78,175.78,26.1,667.77 +4778,7,E07000091,2,63.38,175.78,26.1,667.77 +5283,5,E07000091,3,82.02,216.52,26.1,829.12 +5383,7,E07000091,3,68.97,216.52,26.1,829.12 +5968,5,E07000091,4,90.42,340.85,26.1,1301.79 +6072,7,E07000091,4,73.64,340.85,26.1,1301.79 +6691,9,E07000091,1,57.79,170.16,26.1,651.81 +7017,9,E07000091,2,71.78,219.74,26.1,834.75 +7343,9,E07000091,3,82.02,270.66,26.1,1036.39 +7669,9,E07000091,4,90.42,426.06,26.1,1627.19 +7995,10,E07000091,0,61.49,468.55,18.44,1789.55 +172,1,E07000175,1,52.2,100.76,26.1,431.41 +498,1,E07000175,2,62.45,115.76,26.1,457.7 +824,1,E07000175,3,68.97,127.56,26.1,487.69 +1150,1,E07000175,4,76.43,159.7,26.1,589.02 +1476,3,E07000175,1,46.6,91.12,26.1,378.95 +1802,3,E07000175,2,53.13,97.54,26.1,382.66 +2128,3,E07000175,3,58.72,105.05,26.1,420.18 +2454,3,E07000175,4,64.31,123.26,26.1,431.41 +2780,2,E07000175,0,51.26,238.1,18.44,1250.1 +3106,4,E07000175,0,49.2,113.15,18.44,429.07 +3432,6,E07000175,0,51.26,225.15,18.44,858.13 +3758,8,E07000175,0,49.2,225.15,18.44,858.13 +4336,5,E07000175,1,52.2,93.26,26.1,352.66 +4436,7,E07000175,1,46.6,93.26,26.1,352.66 +5032,5,E07000175,2,62.45,114.68,26.1,435.16 +5172,7,E07000175,2,53.13,114.68,26.1,435.16 +5675,5,E07000175,3,68.97,133.98,26.1,513.94 +5833,7,E07000175,3,58.72,133.98,26.1,513.94 +6250,5,E07000175,4,76.43,204.74,26.1,780.33 +6494,7,E07000175,4,64.31,204.74,26.1,780.33 +6692,9,E07000175,1,52.2,116.56,26.1,440.83 +7018,9,E07000175,2,62.45,143.37,26.1,543.94 +7344,9,E07000175,3,68.97,167.48,26.1,642.46 +7670,9,E07000175,4,76.43,255.92,26.1,975.42 +7996,10,E07000175,0,51.26,281.43,18.44,1072.58 +174,1,E08000021,1,51.27,88.96,26.1,345.17 +500,1,E08000021,2,57.79,102.91,26.1,423.89 +826,1,E08000021,3,61.52,114.68,26.1,562.73 +1152,1,E08000021,4,70.84,128.63,26.1,491.47 +1478,3,E08000021,1,42.87,100.76,26.1,371.42 +1804,3,E08000021,2,50.34,91.12,26.1,393.89 +2130,3,E08000021,3,54.06,106.12,26.1,438.9 +2456,3,E08000021,4,56.86,116.83,26.1,423.89 +2782,2,E08000021,0,55.36,234.56,18.44,1179.92 +3108,4,E08000021,0,47.15,251.08,18.44,998.38 +3434,6,E08000021,0,55.36,239.29,18.44,915.88 +3760,8,E08000021,0,47.15,239.29,18.44,915.88 +4456,7,E08000021,1,42.87,114.68,26.1,435.16 +4537,5,E08000021,1,51.27,114.68,26.1,435.16 +5052,5,E08000021,2,57.79,136.13,26.1,521.47 +5103,7,E08000021,2,50.34,136.13,26.1,521.47 +5557,5,E08000021,3,61.52,143.62,26.1,547.72 +5732,7,E08000021,3,54.06,143.62,26.1,547.72 +6356,5,E08000021,4,70.84,217.59,26.1,832.86 +6514,7,E08000021,4,56.86,217.59,26.1,832.86 +6694,9,E08000021,1,42.87,143.37,26.1,543.94 +7020,9,E08000021,2,57.79,170.16,26.1,651.81 +7346,9,E08000021,3,61.52,179.53,26.1,684.6 +7672,9,E08000021,4,70.84,271.98,26.1,1041.11 +7998,10,E08000021,0,55.36,299.12,18.44,1144.89 +173,1,E07000195,1,53.13,99.69,26.1,438.9 +499,1,E07000195,2,58.72,117.9,26.1,483.95 +825,1,E07000195,3,69.9,133.98,26.1,566.51 +1151,1,E07000195,4,81.09,162.93,26.1,630.28 +1477,3,E07000195,1,46.6,88.96,26.1,345.17 +1803,3,E07000195,2,50.34,95.42,26.1,363.93 +2129,3,E07000195,3,60.59,105.05,26.1,423.89 +2455,3,E07000195,4,68.97,128.63,26.1,450.21 +2781,2,E07000195,0,38.95,242.82,18.44,1324.3 +3107,4,E07000195,0,46.12,106.09,18.44,371.32 +3433,6,E07000195,0,38.95,220.42,18.44,837.52 +3759,8,E07000195,0,46.12,220.42,18.44,837.52 +4290,5,E07000195,1,53.13,98.62,26.1,378.95 +4511,7,E07000195,1,46.6,98.62,26.1,378.95 +4900,5,E07000195,2,58.72,114.68,26.1,435.16 +5196,7,E07000195,2,50.34,114.68,26.1,435.16 +5531,5,E07000195,3,69.9,136.13,26.1,521.47 +5787,7,E07000195,3,60.59,136.13,26.1,521.47 +6183,5,E07000195,4,81.09,200.45,26.1,761.57 +6448,7,E07000195,4,68.97,200.45,26.1,761.57 +6693,9,E07000195,1,53.13,123.26,26.1,473.66 +7019,9,E07000195,2,58.72,143.37,26.1,543.94 +7345,9,E07000195,3,69.9,170.16,26.1,651.81 +7671,9,E07000195,4,81.09,250.54,26.1,951.93 +7997,10,E07000195,0,38.95,275.54,18.44,1046.92 +175,1,E09000025,1,66.17,146.84,26.1,697.83 +501,1,E09000025,2,78.29,158.63,26.1,679.04 +827,1,E09000025,3,84.82,168.29,26.1,799.02 +1153,1,E09000025,4,102.51,188.66,26.1,889.11 +1479,3,E09000025,1,58.72,120.05,26.1,517.69 +1805,3,E09000025,2,64.31,140.42,26.1,619.01 +2131,3,E09000025,3,71.78,160.78,26.1,709.03 +2457,3,E09000025,4,83.89,262.61,26.1,922.88 +2783,2,E09000025,0,69.7,313.55,18.44,1741.04 +3109,4,E09000025,0,59.45,367.77,18.44,1394.47 +3435,6,E09000025,0,69.7,409.03,18.44,1559.43 +3761,8,E09000025,0,59.45,409.03,18.44,1559.43 +3974,5,E09000025,1,66.17,210.1,26.1,802.8 +4188,7,E09000025,1,58.72,210.1,26.1,802.8 +4589,5,E09000025,2,78.29,256.17,26.1,979.16 +4689,7,E09000025,2,64.31,256.17,26.1,979.16 +5241,5,E09000025,3,84.82,295.83,26.1,1129.24 +5341,7,E09000025,3,71.78,295.83,26.1,1129.24 +5893,7,E09000025,4,83.89,371.94,26.1,1418.13 +5926,5,E09000025,4,102.51,371.94,26.1,1418.13 +6695,9,E09000025,1,66.17,262.61,26.1,1003.52 +7021,9,E09000025,2,78.29,320.22,26.1,1223.95 +7347,9,E09000025,3,84.82,369.81,26.1,1411.55 +7673,9,E09000025,4,102.51,464.91,26.1,1772.61 +7999,10,E09000025,0,69.7,511.3,18.44,1949.4 +176,1,E07000043,1,49.41,108.27,26.1,495.22 +502,1,E07000043,2,55.93,122.19,26.1,510.2 +828,1,E07000043,3,62.45,142.56,26.1,570.26 +1154,1,E07000043,4,71.78,159.7,26.1,686.53 +1480,3,E07000043,1,47.54,90.03,26.1,742.84 +1806,3,E07000043,2,54.99,101.83,26.1,393.89 +2132,3,E07000043,3,62.45,110.39,26.1,446.46 +2458,3,E07000043,4,74.57,131.84,26.1,461.44 +2784,2,E07000043,0,54.33,228.68,18.44,1241.8 +3110,4,E07000043,0,54.33,114.33,18.44,490.95 +3436,6,E07000043,0,54.33,244,18.44,932.37 +3762,8,E07000043,0,54.33,244,18.44,932.37 +3928,7,E07000043,1,47.54,103.98,26.1,397.64 +4212,5,E07000043,1,49.41,103.98,26.1,397.64 +4848,5,E07000043,2,55.93,136.13,26.1,521.47 +5125,7,E07000043,2,54.99,136.13,26.1,521.47 +5479,5,E07000043,3,62.45,160.78,26.1,615.23 +5705,7,E07000043,3,62.45,160.78,26.1,615.23 +6017,5,E07000043,4,71.78,221.88,26.1,847.88 +6417,7,E07000043,4,74.57,221.88,26.1,847.88 +6696,9,E07000043,1,49.41,129.97,26.1,497.07 +7022,9,E07000043,2,55.93,170.16,26.1,651.81 +7348,9,E07000043,3,62.45,200.97,26.1,769.09 +7674,9,E07000043,4,71.78,277.34,26.1,1059.84 +8000,10,E07000043,0,54.33,305,18.44,1165.47 +178,1,E07000038,1,52.2,100.76,26.1,431.41 +504,1,E07000038,2,62.45,115.76,26.1,457.7 +830,1,E07000038,3,68.97,127.56,26.1,487.69 +1156,1,E07000038,4,76.43,159.7,26.1,589.02 +1482,3,E07000038,1,46.6,91.12,26.1,378.95 +1808,3,E07000038,2,53.13,97.54,26.1,382.66 +2134,3,E07000038,3,58.72,105.05,26.1,420.18 +2460,3,E07000038,4,64.31,123.26,26.1,431.41 +2786,2,E07000038,0,51.26,238.1,18.44,1250.1 +3112,4,E07000038,0,49.2,113.15,18.44,429.07 +3438,6,E07000038,0,51.26,225.15,18.44,858.13 +3764,8,E07000038,0,49.2,225.15,18.44,858.13 +4337,5,E07000038,1,52.2,92.19,26.1,348.92 +4437,7,E07000038,1,46.6,92.19,26.1,348.92 +5033,5,E07000038,2,62.45,115.76,26.1,438.9 +5173,7,E07000038,2,53.13,115.76,26.1,438.9 +5676,5,E07000038,3,68.97,148.99,26.1,566.51 +5834,7,E07000038,3,58.72,148.99,26.1,566.51 +6251,5,E07000038,4,76.43,204.74,26.1,780.33 +6495,7,E07000038,4,64.31,204.74,26.1,780.33 +6698,9,E07000038,1,52.2,115.24,26.1,436.1 +7024,9,E07000038,2,62.45,144.7,26.1,548.7 +7350,9,E07000038,3,68.97,186.23,26.1,708.19 +7676,9,E07000038,4,76.43,255.92,26.1,975.42 +8002,10,E07000038,0,51.26,281.43,18.44,1072.58 +179,1,E06000012,1,51.27,92.19,26.1,401.38 +505,1,E06000012,2,58.72,109.33,26.1,495.22 +831,1,E06000012,3,63.38,121.11,26.1,570.26 +1157,1,E06000012,4,73.64,145.77,26.1,630.28 +1483,3,E06000012,1,46.6,82.54,26.1,326.41 +1809,3,E06000012,2,53.13,113.61,26.1,510.2 +2135,3,E06000012,3,56.86,105.05,26.1,401.38 +2461,3,E06000012,4,64.31,122.19,26.1,619.01 +2787,2,E06000012,0,52.28,232.2,18.44,1118.04 +3113,4,E06000012,0,51.26,159.13,18.44,660.1 +3439,6,E06000012,0,52.28,176.82,18.44,676.62 +3765,8,E06000012,0,51.26,176.82,18.44,676.62 +4401,5,E06000012,1,51.27,85.75,26.1,326.41 +4555,7,E06000012,1,46.6,85.75,26.1,326.41 +4823,7,E06000012,2,53.13,108.27,26.1,412.65 +4881,5,E06000012,2,58.72,108.27,26.1,412.65 +5512,5,E06000012,3,63.38,114.68,26.1,435.16 +5859,7,E06000012,3,56.86,114.68,26.1,435.16 +6117,5,E06000012,4,73.64,160.78,26.1,615.23 +6215,7,E06000012,4,64.31,160.78,26.1,615.23 +6699,9,E06000012,1,51.27,107.2,26.1,407.96 +7025,9,E06000012,2,53.13,135.33,26.1,515.83 +7351,9,E06000012,3,63.38,143.37,26.1,543.94 +7677,9,E06000012,4,73.64,200.97,26.1,769.09 +8003,10,E06000012,0,52.28,221.02,18.44,845.81 +180,1,E07000099,1,54.99,120.05,26.1,525.21 +506,1,E07000099,2,65.24,143.62,26.1,592.76 +832,1,E07000099,3,71.78,157.56,26.1,637.77 +1158,1,E07000099,4,82.02,172.58,26.1,630.28 +1484,3,E07000099,1,50.34,100.76,26.1,465.19 +1810,3,E07000099,2,58.72,118.97,26.1,468.93 +2136,3,E07000099,3,64.31,131.84,26.1,506.45 +2462,3,E07000099,4,71.78,150.06,26.1,562.73 +2788,2,E07000099,0,35.87,223.96,18.44,1464.58 +3114,4,E07000099,0,55.36,134.38,18.44,1101.56 +3440,6,E07000099,0,35.87,467.95,18.44,1786.37 +3766,8,E07000099,0,55.36,467.95,18.44,1786.37 +4145,5,E07000099,1,54.99,131.84,26.1,506.45 +4262,7,E07000099,1,50.34,131.84,26.1,506.45 +4726,5,E07000099,2,65.24,171.5,26.1,652.79 +4988,7,E07000099,2,58.72,171.5,26.1,652.79 +5445,5,E07000099,3,71.78,219.73,26.1,840.32 +5631,7,E07000099,3,64.31,219.73,26.1,840.32 +6155,5,E07000099,4,82.02,425.54,26.1,1624.42 +6293,7,E07000099,4,71.78,425.54,26.1,1624.42 +6700,9,E07000099,1,54.99,164.8,26.1,633.05 +7026,9,E07000099,2,65.24,214.37,26.1,815.99 +7352,9,E07000099,3,71.78,274.67,26.1,1050.42 +7678,9,E07000099,4,82.02,531.92,26.1,2030.53 +8004,10,E07000099,0,35.87,584.95,18.44,2233 +181,1,E07000139,1,52.2,100.76,26.1,431.41 +507,1,E07000139,2,62.45,115.76,26.1,457.7 +833,1,E07000139,3,68.97,127.56,26.1,487.69 +1159,1,E07000139,4,76.43,159.7,26.1,589.02 +1485,3,E07000139,1,46.6,91.12,26.1,378.95 +1811,3,E07000139,2,53.13,97.54,26.1,382.66 +2137,3,E07000139,3,58.72,105.05,26.1,420.18 +2463,3,E07000139,4,64.31,123.26,26.1,431.41 +2789,2,E07000139,0,51.26,238.1,18.44,1250.1 +3115,4,E07000139,0,49.2,113.15,18.44,429.07 +3441,6,E07000139,0,51.26,213.35,18.44,816.83 +3767,8,E07000139,0,49.2,213.35,18.44,816.83 +4338,5,E07000139,1,52.2,103.98,26.1,397.64 +4438,7,E07000139,1,46.6,103.98,26.1,397.64 +5034,5,E07000139,2,62.45,114.68,26.1,435.16 +5174,7,E07000139,2,53.13,114.68,26.1,435.16 +5677,5,E07000139,3,68.97,138.27,26.1,525.21 +5835,7,E07000139,3,58.72,138.27,26.1,525.21 +6252,5,E07000139,4,76.43,194.01,26.1,742.84 +6496,7,E07000139,4,64.31,194.01,26.1,742.84 +6701,9,E07000139,1,52.2,129.97,26.1,497.07 +7027,9,E07000139,2,62.45,143.37,26.1,543.94 +7353,9,E07000139,3,68.97,172.84,26.1,656.5 +7679,9,E07000139,4,76.43,242.51,26.1,928.52 +8005,10,E07000139,0,51.26,266.69,18.44,1021.09 +182,1,E06000013,1,51.27,92.19,26.1,401.38 +508,1,E06000013,2,58.72,109.33,26.1,495.22 +834,1,E06000013,3,63.38,121.11,26.1,570.26 +1160,1,E06000013,4,73.64,145.77,26.1,630.28 +1486,3,E06000013,1,46.6,82.54,26.1,326.41 +1812,3,E06000013,2,53.13,113.61,26.1,510.2 +2138,3,E06000013,3,56.86,105.05,26.1,401.38 +2464,3,E06000013,4,64.31,122.19,26.1,619.01 +2790,2,E06000013,0,52.28,232.2,18.44,1118.04 +3116,4,E06000013,0,51.26,159.13,18.44,660.1 +3442,6,E06000013,0,52.28,200.38,18.44,767.38 +3768,8,E06000013,0,51.26,200.38,18.44,767.38 +4402,5,E06000013,1,51.27,82.54,26.1,311.36 +4556,7,E06000013,1,46.6,82.54,26.1,311.36 +4824,7,E06000013,2,53.13,103.98,26.1,397.64 +4882,5,E06000013,2,58.72,103.98,26.1,397.64 +5513,5,E06000013,3,63.38,115.76,26.1,438.9 +5860,7,E06000013,3,56.86,115.76,26.1,438.9 +6118,5,E06000013,4,73.64,182.22,26.1,697.83 +6216,7,E06000013,4,64.31,182.22,26.1,697.83 +6702,9,E06000013,1,51.27,103.19,26.1,389.24 +7028,9,E06000013,2,53.13,129.97,26.1,497.07 +7354,9,E06000013,3,63.38,144.7,26.1,548.7 +7680,9,E06000013,4,73.64,227.8,26.1,872.27 +8006,10,E06000013,0,52.28,250.47,18.44,959.18 +183,1,E07000147,1,54.99,120.05,26.1,525.21 +509,1,E07000147,2,65.24,143.62,26.1,592.76 +835,1,E07000147,3,71.78,157.56,26.1,637.77 +1161,1,E07000147,4,82.02,172.58,26.1,630.28 +1487,3,E07000147,1,50.34,100.76,26.1,465.19 +1813,3,E07000147,2,58.72,118.97,26.1,468.93 +2139,3,E07000147,3,64.31,131.84,26.1,506.45 +2465,3,E07000147,4,71.78,150.06,26.1,562.73 +2791,2,E07000147,0,35.87,223.96,18.44,1464.58 +3117,4,E07000147,0,55.36,134.38,18.44,1101.56 +3443,6,E07000147,0,35.87,300.58,18.44,1146.92 +3769,8,E07000147,0,55.36,300.58,18.44,1146.92 +4146,5,E07000147,1,54.99,100.76,26.1,386.37 +4263,7,E07000147,1,50.34,100.76,26.1,386.37 +4727,5,E07000147,2,65.24,126.48,26.1,483.95 +4989,7,E07000147,2,58.72,126.48,26.1,483.95 +5446,5,E07000147,3,71.78,166.14,26.1,634.03 +5632,7,E07000147,3,64.31,166.14,26.1,634.03 +6156,5,E07000147,4,82.02,273.34,26.1,1042.97 +6294,7,E07000147,4,71.78,273.34,26.1,1042.97 +6703,9,E07000147,1,54.99,125.95,26.1,483.04 +7029,9,E07000147,2,65.24,158.09,26.1,604.94 +7355,9,E07000147,3,71.78,207.68,26.1,792.54 +7681,9,E07000147,4,82.02,341.67,26.1,1303.68 +8007,10,E07000147,0,35.87,375.73,18.44,1433.64 +184,1,E06000024,1,49.41,108.27,26.1,495.22 +510,1,E06000024,2,55.93,122.19,26.1,510.2 +836,1,E06000024,3,62.45,142.56,26.1,570.26 +1162,1,E06000024,4,71.78,159.7,26.1,686.53 +1488,3,E06000024,1,47.54,90.03,26.1,742.84 +1814,3,E06000024,2,54.99,101.83,26.1,393.89 +2140,3,E06000024,3,62.45,110.39,26.1,446.46 +2466,3,E06000024,4,74.57,131.84,26.1,461.44 +2792,2,E06000024,0,54.33,228.68,18.44,1241.8 +3118,4,E06000024,0,54.33,114.33,18.44,490.95 +3444,6,E06000024,0,54.33,275.83,18.44,1052.03 +3770,8,E06000024,0,54.33,275.83,18.44,1052.03 +3930,7,E06000024,1,47.54,114.68,26.1,435.16 +4214,5,E06000024,1,49.41,114.68,26.1,435.16 +4850,5,E06000024,2,55.93,138.27,26.1,525.21 +5127,7,E06000024,2,54.99,138.27,26.1,525.21 +5481,5,E06000024,3,62.45,166.14,26.1,634.03 +5707,7,E06000024,3,62.45,166.14,26.1,634.03 +6019,5,E06000024,4,71.78,250.82,26.1,956.69 +6419,7,E06000024,4,74.57,250.82,26.1,956.69 +6704,9,E06000024,1,49.41,143.37,26.1,543.94 +7030,9,E06000024,2,55.93,172.84,26.1,656.5 +7356,9,E06000024,3,62.45,207.68,26.1,792.54 +7682,9,E06000024,4,71.78,313.51,26.1,1195.85 +8008,10,E06000024,0,54.33,344.81,18.44,1315.06 +185,1,E08000022,1,51.27,88.96,26.1,345.17 +511,1,E08000022,2,57.79,102.91,26.1,423.89 +837,1,E08000022,3,61.52,114.68,26.1,562.73 +1163,1,E08000022,4,70.84,128.63,26.1,491.47 +1489,3,E08000022,1,42.87,100.76,26.1,371.42 +1815,3,E08000022,2,50.34,91.12,26.1,393.89 +2141,3,E08000022,3,54.06,106.12,26.1,438.9 +2467,3,E08000022,4,56.86,116.83,26.1,423.89 +2793,2,E08000022,0,55.36,234.56,18.44,1179.92 +3119,4,E08000022,0,47.15,251.08,18.44,998.38 +3445,6,E08000022,0,55.36,252.25,18.44,957.15 +3771,8,E08000022,0,47.15,252.25,18.44,957.15 +4457,7,E08000022,1,42.87,99.69,26.1,382.66 +4538,5,E08000022,1,51.27,99.69,26.1,382.66 +5053,5,E08000022,2,57.79,126.48,26.1,483.95 +5104,7,E08000022,2,50.34,126.48,26.1,483.95 +5558,5,E08000022,3,61.52,148.99,26.1,566.51 +5733,7,E08000022,3,54.06,148.99,26.1,566.51 +6357,5,E08000022,4,70.84,229.37,26.1,870.35 +6515,7,E08000022,4,56.86,229.37,26.1,870.35 +6705,9,E08000022,1,42.87,124.6,26.1,478.35 +7031,9,E08000022,2,57.79,158.09,26.1,604.94 +7357,9,E08000022,3,61.52,186.23,26.1,708.19 +7683,9,E08000022,4,70.84,286.72,26.1,1087.94 +8009,10,E08000022,0,55.36,315.32,18.44,1196.44 +186,1,E07000218,1,53.13,99.69,26.1,438.9 +512,1,E07000218,2,58.72,117.9,26.1,483.95 +838,1,E07000218,3,69.9,133.98,26.1,566.51 +1164,1,E07000218,4,81.09,162.93,26.1,630.28 +1490,3,E07000218,1,46.6,88.96,26.1,345.17 +1816,3,E07000218,2,50.34,95.42,26.1,363.93 +2142,3,E07000218,3,60.59,105.05,26.1,423.89 +2468,3,E07000218,4,68.97,128.63,26.1,450.21 +2794,2,E07000218,0,38.95,242.82,18.44,1324.3 +3120,4,E07000218,0,46.12,106.09,18.44,371.32 +3446,6,E07000218,0,38.95,213.35,18.44,816.83 +3772,8,E07000218,0,46.12,213.35,18.44,816.83 +4291,5,E07000218,1,53.13,103.98,26.1,397.64 +4512,7,E07000218,1,46.6,103.98,26.1,397.64 +4901,5,E07000218,2,58.72,126.48,26.1,483.95 +5197,7,E07000218,2,50.34,126.48,26.1,483.95 +5532,5,E07000218,3,69.9,148.99,26.1,566.51 +5788,7,E07000218,3,60.59,148.99,26.1,566.51 +6184,5,E07000218,4,81.09,194.01,26.1,742.84 +6449,7,E07000218,4,68.97,194.01,26.1,742.84 +6706,9,E07000218,1,53.13,129.97,26.1,497.07 +7032,9,E07000218,2,58.72,158.09,26.1,604.94 +7358,9,E07000218,3,69.9,186.23,26.1,708.19 +7684,9,E07000218,4,81.09,242.51,26.1,928.52 +8010,10,E07000218,0,38.95,266.69,18.44,1021.09 +187,1,E07000134,1,52.2,100.76,26.1,431.41 +513,1,E07000134,2,62.45,115.76,26.1,457.7 +839,1,E07000134,3,68.97,127.56,26.1,487.69 +1165,1,E07000134,4,76.43,159.7,26.1,589.02 +1491,3,E07000134,1,46.6,91.12,26.1,378.95 +1817,3,E07000134,2,53.13,97.54,26.1,382.66 +2143,3,E07000134,3,58.72,105.05,26.1,420.18 +2469,3,E07000134,4,64.31,123.26,26.1,431.41 +2795,2,E07000134,0,51.26,238.1,18.44,1250.1 +3121,4,E07000134,0,49.2,113.15,18.44,429.07 +3447,6,E07000134,0,51.26,225.15,18.44,858.13 +3773,8,E07000134,0,49.2,225.15,18.44,858.13 +4339,5,E07000134,1,52.2,98.62,26.1,378.95 +4439,7,E07000134,1,46.6,98.62,26.1,378.95 +5035,5,E07000134,2,62.45,121.11,26.1,461.44 +5175,7,E07000134,2,53.13,121.11,26.1,461.44 +5678,5,E07000134,3,68.97,138.27,26.1,525.21 +5836,7,E07000134,3,58.72,138.27,26.1,525.21 +6253,5,E07000134,4,76.43,204.74,26.1,780.33 +6497,7,E07000134,4,64.31,204.74,26.1,780.33 +6707,9,E07000134,1,52.2,123.26,26.1,473.66 +7033,9,E07000134,2,62.45,151.41,26.1,576.8 +7359,9,E07000134,3,68.97,172.84,26.1,656.5 +7685,9,E07000134,4,76.43,255.92,26.1,975.42 +8011,10,E07000134,0,51.26,281.43,18.44,1072.58 +189,1,E06000057,1,51.27,88.96,26.1,345.17 +515,1,E06000057,2,57.79,102.91,26.1,423.89 +841,1,E06000057,3,61.52,114.68,26.1,562.73 +1167,1,E06000057,4,70.84,128.63,26.1,491.47 +1493,3,E06000057,1,42.87,100.76,26.1,371.42 +1819,3,E06000057,2,50.34,91.12,26.1,393.89 +2145,3,E06000057,3,54.06,106.12,26.1,438.9 +2471,3,E06000057,4,56.86,116.83,26.1,423.89 +2797,2,E06000057,0,55.36,234.56,18.44,1179.92 +3123,4,E06000057,0,47.15,251.08,18.44,998.38 +3449,6,E06000057,0,55.36,225.15,18.44,858.13 +3775,8,E06000057,0,47.15,225.15,18.44,858.13 +4458,7,E06000057,1,42.87,92.19,26.1,348.92 +4539,5,E06000057,1,51.27,92.19,26.1,348.92 +5054,5,E06000057,2,57.79,110.39,26.1,420.18 +5105,7,E06000057,2,50.34,110.39,26.1,420.18 +5559,5,E06000057,3,61.52,126.48,26.1,483.95 +5734,7,E06000057,3,54.06,126.48,26.1,483.95 +6358,5,E06000057,4,70.84,204.74,26.1,780.33 +6516,7,E06000057,4,56.86,204.74,26.1,780.33 +6709,9,E06000057,1,42.87,115.24,26.1,436.1 +7035,9,E06000057,2,57.79,138.01,26.1,525.21 +7361,9,E06000057,3,61.52,158.09,26.1,604.94 +7687,9,E06000057,4,70.84,255.92,26.1,975.42 +8013,10,E06000057,0,55.36,281.43,18.44,1072.58 +190,1,E07000148,1,54.99,120.05,26.1,525.21 +516,1,E07000148,2,65.24,143.62,26.1,592.76 +842,1,E07000148,3,71.78,157.56,26.1,637.77 +1168,1,E07000148,4,82.02,172.58,26.1,630.28 +1494,3,E07000148,1,50.34,100.76,26.1,465.19 +1820,3,E07000148,2,58.72,118.97,26.1,468.93 +2146,3,E07000148,3,64.31,131.84,26.1,506.45 +2472,3,E07000148,4,71.78,150.06,26.1,562.73 +2798,2,E07000148,0,35.87,223.96,18.44,1464.58 +3124,4,E07000148,0,55.36,134.38,18.44,1101.56 +3450,6,E07000148,0,35.87,271.13,18.44,1035.55 +3776,8,E07000148,0,55.36,271.13,18.44,1035.55 +4147,5,E07000148,1,54.99,114.68,26.1,435.16 +4264,7,E07000148,1,50.34,114.68,26.1,435.16 +4728,5,E07000148,2,65.24,136.13,26.1,521.47 +4990,7,E07000148,2,58.72,136.13,26.1,521.47 +5447,5,E07000148,3,71.78,172.58,26.1,656.53 +5633,7,E07000148,3,64.31,172.58,26.1,656.53 +6157,5,E07000148,4,82.02,246.53,26.1,941.64 +6295,7,E07000148,4,71.78,246.53,26.1,941.64 +6710,9,E07000148,1,54.99,143.37,26.1,543.94 +7036,9,E07000148,2,65.24,170.16,26.1,651.81 +7362,9,E07000148,3,71.78,215.73,26.1,820.72 +7688,9,E07000148,4,82.02,308.16,26.1,1177.09 +8014,10,E07000148,0,35.87,338.9,18.44,1294.44 +191,1,E06000018,1,52.2,100.76,26.1,431.41 +517,1,E06000018,2,62.45,115.76,26.1,457.7 +843,1,E06000018,3,68.97,127.56,26.1,487.69 +1169,1,E06000018,4,76.43,159.7,26.1,589.02 +1495,3,E06000018,1,46.6,91.12,26.1,378.95 +1821,3,E06000018,2,53.13,97.54,26.1,382.66 +2147,3,E06000018,3,58.72,105.05,26.1,420.18 +2473,3,E06000018,4,64.31,123.26,26.1,431.41 +2799,2,E06000018,0,51.26,238.1,18.44,1250.1 +3125,4,E06000018,0,49.2,113.15,18.44,429.07 +3451,6,E06000018,0,51.26,351.26,18.44,1340.82 +3777,8,E06000018,0,49.2,351.26,18.44,1340.82 +4341,5,E06000018,1,52.2,121.11,26.1,461.44 +4441,7,E06000018,1,46.6,121.11,26.1,461.44 +5037,5,E06000018,2,62.45,148.99,26.1,566.51 +5177,7,E06000018,2,53.13,148.99,26.1,566.51 +5680,5,E06000018,3,68.97,148.99,26.1,566.51 +5838,7,E06000018,3,58.72,148.99,26.1,566.51 +6255,5,E06000018,4,76.43,319.42,26.1,1219.26 +6499,7,E06000018,4,64.31,319.42,26.1,1219.26 +6711,9,E06000018,1,52.2,151.41,26.1,576.8 +7037,9,E06000018,2,62.45,186.23,26.1,708.19 +7363,9,E06000018,3,68.97,186.23,26.1,708.19 +7689,9,E06000018,4,76.43,399.29,26.1,1524.08 +8015,10,E06000018,0,51.26,439.1,18.44,1676.01 +192,1,E07000219,1,53.13,99.69,26.1,438.9 +518,1,E07000219,2,58.72,117.9,26.1,483.95 +844,1,E07000219,3,69.9,133.98,26.1,566.51 +1170,1,E07000219,4,81.09,162.93,26.1,630.28 +1496,3,E07000219,1,46.6,88.96,26.1,345.17 +1822,3,E07000219,2,50.34,95.42,26.1,363.93 +2148,3,E07000219,3,60.59,105.05,26.1,423.89 +2474,3,E07000219,4,68.97,128.63,26.1,450.21 +2800,2,E07000219,0,38.95,242.82,18.44,1324.3 +3126,4,E07000219,0,46.12,106.09,18.44,371.32 +3452,6,E07000219,0,38.95,220.42,18.44,837.52 +3778,8,E07000219,0,46.12,220.42,18.44,837.52 +4292,5,E07000219,1,53.13,98.62,26.1,378.95 +4513,7,E07000219,1,46.6,98.62,26.1,378.95 +4902,5,E07000219,2,58.72,120.05,26.1,457.7 +5198,7,E07000219,2,50.34,120.05,26.1,457.7 +5533,5,E07000219,3,69.9,143.62,26.1,547.72 +5789,7,E07000219,3,60.59,143.62,26.1,547.72 +6185,5,E07000219,4,81.09,200.45,26.1,761.57 +6450,7,E07000219,4,68.97,200.45,26.1,761.57 +6712,9,E07000219,1,53.13,123.26,26.1,473.66 +7038,9,E07000219,2,58.72,150.06,26.1,572.11 +7364,9,E07000219,3,69.9,179.53,26.1,684.6 +7690,9,E07000219,4,81.09,250.54,26.1,951.93 +8016,10,E07000219,0,38.95,275.54,18.44,1046.92 +193,1,E07000135,1,52.2,100.76,26.1,431.41 +519,1,E07000135,2,62.45,115.76,26.1,457.7 +845,1,E07000135,3,68.97,127.56,26.1,487.69 +1171,1,E07000135,4,76.43,159.7,26.1,589.02 +1497,3,E07000135,1,46.6,91.12,26.1,378.95 +1823,3,E07000135,2,53.13,97.54,26.1,382.66 +2149,3,E07000135,3,58.72,105.05,26.1,420.18 +2475,3,E07000135,4,64.31,123.26,26.1,431.41 +2801,2,E07000135,0,51.26,238.1,18.44,1250.1 +3127,4,E07000135,0,49.2,113.15,18.44,429.07 +3453,6,E07000135,0,51.26,252.25,18.44,957.15 +3779,8,E07000135,0,49.2,252.25,18.44,957.15 +4342,5,E07000135,1,52.2,103.98,26.1,397.64 +4442,7,E07000135,1,46.6,103.98,26.1,397.64 +5038,5,E07000135,2,62.45,126.48,26.1,483.95 +5178,7,E07000135,2,53.13,126.48,26.1,483.95 +5681,5,E07000135,3,68.97,148.99,26.1,566.51 +5839,7,E07000135,3,58.72,148.99,26.1,566.51 +6256,5,E07000135,4,76.43,229.37,26.1,870.35 +6500,7,E07000135,4,64.31,229.37,26.1,870.35 +6713,9,E07000135,1,52.2,129.97,26.1,497.07 +7039,9,E07000135,2,62.45,158.09,26.1,604.94 +7365,9,E07000135,3,68.97,186.23,26.1,708.19 +7691,9,E07000135,4,76.43,286.72,26.1,1087.94 +8017,10,E07000135,0,51.26,315.32,18.44,1196.44 +194,1,E08000004,1,52.2,94.33,26.1,412.65 +520,1,E08000004,2,59.66,108.27,26.1,476.46 +846,1,E08000004,3,66.17,121.11,26.1,513.94 +1172,1,E08000004,4,72.71,135.06,26.1,562.73 +1498,3,E08000004,1,43.8,86.81,26.1,356.41 +1824,3,E08000004,2,54.06,95.42,26.1,401.38 +2150,3,E08000004,3,58.72,106.12,26.1,438.9 +2476,3,E08000004,4,55.93,120.05,26.1,472.71 +2802,2,E08000004,0,55.36,236.93,18.44,1184.02 +3128,4,E08000004,0,32.8,464.43,18.44,2075.22 +3454,6,E08000004,0,55.36,213.35,18.44,816.83 +3780,8,E08000004,0,32.8,213.35,18.44,816.83 +4371,5,E08000004,1,52.2,103.98,26.1,397.64 +4483,7,E08000004,1,43.8,103.98,26.1,397.64 +4941,5,E08000004,2,59.66,114.68,26.1,435.16 +5079,7,E08000004,2,54.06,114.68,26.1,435.16 +5584,5,E08000004,3,66.17,138.27,26.1,525.21 +5759,7,E08000004,3,58.72,138.27,26.1,525.21 +6332,5,E08000004,4,72.71,194.01,26.1,742.84 +6383,7,E08000004,4,55.93,194.01,26.1,742.84 +6714,9,E08000004,1,52.2,129.97,26.1,497.07 +7040,9,E08000004,2,59.66,143.37,26.1,543.94 +7366,9,E08000004,3,66.17,172.84,26.1,656.5 +7692,9,E08000004,4,72.71,242.51,26.1,928.52 +8018,10,E08000004,0,55.36,266.69,18.44,1021.09 +195,1,E07000178,1,57.79,124.33,26.1,622.76 +521,1,E07000178,2,71.78,147.91,26.1,660.31 +847,1,E07000178,3,82.02,162.93,26.1,720.34 +1173,1,E07000178,4,90.42,180.08,26.1,784.04 +1499,3,E07000178,1,52.2,116.83,26.1,562.73 +1825,3,E07000178,2,63.38,130.77,26.1,513.94 +2151,3,E07000178,3,68.97,151.13,26.1,656.53 +2477,3,E07000178,4,73.64,186.51,26.1,686.53 +2803,2,E07000178,0,61.49,265.21,18.44,1192.28 +3129,4,E07000178,0,48.18,193.32,18.44,709.56 +3455,6,E07000178,0,61.49,485.64,18.44,1852.41 +3781,8,E07000178,0,48.18,485.64,18.44,1852.41 +4017,5,E07000178,1,57.79,191.86,26.1,735.35 +4084,7,E07000178,1,52.2,191.86,26.1,735.35 +4632,5,E07000178,2,71.78,240.09,26.1,915.39 +4779,7,E07000178,2,63.38,240.09,26.1,915.39 +5284,5,E07000178,3,82.02,295.83,26.1,1129.24 +5384,7,E07000178,3,68.97,295.83,26.1,1129.24 +5969,5,E07000178,4,90.42,441.6,26.1,1684.45 +6073,7,E07000178,4,73.64,441.6,26.1,1684.45 +6715,9,E07000178,1,57.79,239.84,26.1,919.14 +7041,9,E07000178,2,71.78,300.12,26.1,1144.22 +7367,9,E07000178,3,82.02,369.81,26.1,1411.55 +7693,9,E07000178,4,90.42,552,26.1,2105.5 +8019,10,E07000178,0,61.49,607.06,18.44,2315.53 +196,1,E07000122,1,52.2,94.33,26.1,412.65 +522,1,E07000122,2,59.66,108.27,26.1,476.46 +848,1,E07000122,3,66.17,121.11,26.1,513.94 +1174,1,E07000122,4,72.71,135.06,26.1,562.73 +1500,3,E07000122,1,43.8,86.81,26.1,356.41 +1826,3,E07000122,2,54.06,95.42,26.1,401.38 +2152,3,E07000122,3,58.72,106.12,26.1,438.9 +2478,3,E07000122,4,55.93,120.05,26.1,472.71 +2804,2,E07000122,0,55.36,236.93,18.44,1184.02 +3130,4,E07000122,0,32.8,464.43,18.44,2075.22 +3456,6,E07000122,0,55.36,200.38,18.44,767.38 +3782,8,E07000122,0,32.8,200.38,18.44,767.38 +4372,5,E07000122,1,52.2,91.12,26.1,345.17 +4484,7,E07000122,1,43.8,91.12,26.1,345.17 +4942,5,E07000122,2,59.66,98.62,26.1,382.66 +5080,7,E07000122,2,54.06,98.62,26.1,382.66 +5585,5,E07000122,3,66.17,126.48,26.1,483.95 +5760,7,E07000122,3,58.72,126.48,26.1,483.95 +6333,5,E07000122,4,72.71,182.22,26.1,697.83 +6384,7,E07000122,4,55.93,182.22,26.1,697.83 +6716,9,E07000122,1,52.2,113.9,26.1,431.41 +7042,9,E07000122,2,59.66,123.26,26.1,478.35 +7368,9,E07000122,3,66.17,158.09,26.1,604.94 +7694,9,E07000122,4,72.71,227.8,26.1,872.27 +8020,10,E07000122,0,55.36,250.47,18.44,959.18 +197,1,E06000031,1,54.99,120.05,26.1,525.21 +523,1,E06000031,2,65.24,143.62,26.1,592.76 +849,1,E06000031,3,71.78,157.56,26.1,637.77 +1175,1,E06000031,4,82.02,172.58,26.1,630.28 +1501,3,E06000031,1,50.34,100.76,26.1,465.19 +1827,3,E06000031,2,58.72,118.97,26.1,468.93 +2153,3,E06000031,3,64.31,131.84,26.1,506.45 +2479,3,E06000031,4,71.78,150.06,26.1,562.73 +2805,2,E06000031,0,35.87,223.96,18.44,1464.58 +3131,4,E06000031,0,55.36,134.38,18.44,1101.56 +3457,6,E06000031,0,35.87,226.32,18.44,862.26 +3783,8,E06000031,0,55.36,226.32,18.44,862.26 +4148,5,E06000031,1,54.99,103.98,26.1,397.64 +4265,7,E06000031,1,50.34,103.98,26.1,397.64 +4729,5,E06000031,2,65.24,126.48,26.1,483.95 +4991,7,E06000031,2,58.72,126.48,26.1,483.95 +5448,5,E06000031,3,71.78,148.99,26.1,566.51 +5634,7,E06000031,3,64.31,148.99,26.1,566.51 +6158,5,E06000031,4,82.02,205.81,26.1,784.04 +6296,7,E06000031,4,71.78,205.81,26.1,784.04 +6717,9,E06000031,1,54.99,129.97,26.1,497.07 +7043,9,E06000031,2,65.24,158.09,26.1,604.94 +7369,9,E06000031,3,71.78,186.23,26.1,708.19 +7695,9,E06000031,4,82.02,257.26,26.1,980.11 +8021,10,E06000031,0,35.87,282.91,18.44,1077.83 +198,1,E06000026,1,49.41,108.27,26.1,495.22 +524,1,E06000026,2,55.93,122.19,26.1,510.2 +850,1,E06000026,3,62.45,142.56,26.1,570.26 +1176,1,E06000026,4,71.78,159.7,26.1,686.53 +1502,3,E06000026,1,47.54,90.03,26.1,742.84 +1828,3,E06000026,2,54.99,101.83,26.1,393.89 +2154,3,E06000026,3,62.45,110.39,26.1,446.46 +2480,3,E06000026,4,74.57,131.84,26.1,461.44 +2806,2,E06000026,0,54.33,228.68,18.44,1241.8 +3132,4,E06000026,0,54.33,114.33,18.44,490.95 +3458,6,E06000026,0,54.33,301.76,18.44,1151.01 +3784,8,E06000026,0,54.33,301.76,18.44,1151.01 +3931,7,E06000026,1,47.54,111.47,26.1,423.89 +4215,5,E06000026,1,49.41,111.47,26.1,423.89 +4851,5,E06000026,2,55.93,138.27,26.1,525.21 +5128,7,E06000026,2,54.99,138.27,26.1,525.21 +5482,5,E06000026,3,62.45,160.78,26.1,615.23 +5708,7,E06000026,3,62.45,160.78,26.1,615.23 +6020,5,E06000026,4,71.78,274.41,26.1,1046.71 +6420,7,E06000026,4,74.57,274.41,26.1,1046.71 +6718,9,E06000026,1,49.41,139.34,26.1,529.94 +7044,9,E06000026,2,55.93,172.84,26.1,656.5 +7370,9,E06000026,3,62.45,200.97,26.1,769.09 +7696,9,E06000026,4,71.78,343.01,26.1,1308.37 +8022,10,E06000026,0,54.33,377.19,18.44,1438.78 +200,1,E06000044,1,57.79,124.33,26.1,622.76 +526,1,E06000044,2,71.78,147.91,26.1,660.31 +852,1,E06000044,3,82.02,162.93,26.1,720.34 +1178,1,E06000044,4,90.42,180.08,26.1,784.04 +1504,3,E06000044,1,52.2,116.83,26.1,562.73 +1830,3,E06000044,2,63.38,130.77,26.1,513.94 +2156,3,E06000044,3,68.97,151.13,26.1,656.53 +2482,3,E06000044,4,73.64,186.51,26.1,686.53 +2808,2,E06000044,0,61.49,265.21,18.44,1192.28 +3134,4,E06000044,0,48.18,193.32,18.44,709.56 +3460,6,E06000044,0,61.49,351.26,18.44,1340.82 +3786,8,E06000044,0,48.18,351.26,18.44,1340.82 +4018,5,E06000044,1,57.79,126.48,26.1,483.95 +4085,7,E06000044,1,52.2,126.48,26.1,483.95 +4633,5,E06000044,2,71.78,155.41,26.1,592.76 +4780,7,E06000044,2,63.38,155.41,26.1,592.76 +5285,5,E06000044,3,82.02,194.01,26.1,742.84 +5385,7,E06000044,3,68.97,194.01,26.1,742.84 +5970,5,E06000044,4,90.42,319.42,26.1,1219.26 +6074,7,E06000044,4,73.64,319.42,26.1,1219.26 +6720,9,E06000044,1,57.79,158.09,26.1,604.94 +7046,9,E06000044,2,71.78,194.27,26.1,740.92 +7372,9,E06000044,3,82.02,242.51,26.1,928.52 +7698,9,E06000044,4,90.42,399.29,26.1,1524.08 +8024,10,E06000044,0,61.49,439.1,18.44,1676.01 +201,1,E07000123,1,52.2,94.33,26.1,412.65 +527,1,E07000123,2,59.66,108.27,26.1,476.46 +853,1,E07000123,3,66.17,121.11,26.1,513.94 +1179,1,E07000123,4,72.71,135.06,26.1,562.73 +1505,3,E07000123,1,43.8,86.81,26.1,356.41 +1831,3,E07000123,2,54.06,95.42,26.1,401.38 +2157,3,E07000123,3,58.72,106.12,26.1,438.9 +2483,3,E07000123,4,55.93,120.05,26.1,472.71 +2809,2,E07000123,0,55.36,236.93,18.44,1184.02 +3135,4,E07000123,0,32.8,464.43,18.44,2075.22 +3461,6,E07000123,0,55.36,226.32,18.44,862.26 +3787,8,E07000123,0,32.8,226.32,18.44,862.26 +4373,5,E07000123,1,52.2,103.98,26.1,397.64 +4485,7,E07000123,1,43.8,103.98,26.1,397.64 +4943,5,E07000123,2,59.66,131.84,26.1,506.45 +5081,7,E07000123,2,54.06,131.84,26.1,506.45 +5586,5,E07000123,3,66.17,148.99,26.1,566.51 +5761,7,E07000123,3,58.72,148.99,26.1,566.51 +6334,5,E07000123,4,72.71,205.81,26.1,784.04 +6385,7,E07000123,4,55.93,205.81,26.1,784.04 +6721,9,E07000123,1,52.2,129.97,26.1,497.07 +7047,9,E07000123,2,59.66,164.8,26.1,633.05 +7373,9,E07000123,3,66.17,186.23,26.1,708.19 +7699,9,E07000123,4,72.71,257.26,26.1,980.11 +8025,10,E07000123,0,55.36,282.91,18.44,1077.83 +203,1,E06000038,1,57.79,124.33,26.1,622.76 +529,1,E06000038,2,71.78,147.91,26.1,660.31 +855,1,E06000038,3,82.02,162.93,26.1,720.34 +1181,1,E06000038,4,90.42,180.08,26.1,784.04 +1507,3,E06000038,1,52.2,116.83,26.1,562.73 +1833,3,E06000038,2,63.38,130.77,26.1,513.94 +2159,3,E06000038,3,68.97,151.13,26.1,656.53 +2485,3,E06000038,4,73.64,186.51,26.1,686.53 +2811,2,E06000038,0,61.49,265.21,18.44,1192.28 +3137,4,E06000038,0,48.18,193.32,18.44,709.56 +3463,6,E06000038,0,61.49,493.9,18.44,1885.45 +3789,8,E06000038,0,48.18,493.9,18.44,1885.45 +4019,5,E06000038,1,57.79,160.78,26.1,615.23 +4086,7,E06000038,1,52.2,160.78,26.1,615.23 +4634,5,E06000038,2,71.78,204.74,26.1,780.33 +4781,7,E06000038,2,63.38,204.74,26.1,780.33 +5286,5,E06000038,3,82.02,221.88,26.1,847.88 +5386,7,E06000038,3,68.97,221.88,26.1,847.88 +5971,5,E06000038,4,90.42,450.18,26.1,1714.48 +6075,7,E06000038,4,73.64,450.18,26.1,1714.48 +6723,9,E06000038,1,57.79,200.97,26.1,769.09 +7049,9,E06000038,2,71.78,255.92,26.1,975.42 +7375,9,E06000038,3,82.02,277.34,26.1,1059.84 +7701,9,E06000038,4,90.42,562.74,26.1,2143.09 +8027,10,E06000038,0,61.49,617.37,18.44,2356.76 +204,1,E09000026,1,66.17,146.84,26.1,697.83 +530,1,E09000026,2,78.29,158.63,26.1,679.04 +856,1,E09000026,3,84.82,168.29,26.1,799.02 +1182,1,E09000026,4,102.51,188.66,26.1,889.11 +1508,3,E09000026,1,58.72,120.05,26.1,517.69 +1834,3,E09000026,2,64.31,140.42,26.1,619.01 +2160,3,E09000026,3,71.78,160.78,26.1,709.03 +2486,3,E09000026,4,83.89,262.61,26.1,922.88 +2812,2,E09000026,0,69.7,313.55,18.44,1741.04 +3138,4,E09000026,0,59.45,367.77,18.44,1394.47 +3464,6,E09000026,0,69.7,412.57,18.44,1576.02 +3790,8,E09000026,0,59.45,412.57,18.44,1576.02 +3975,5,E09000026,1,66.17,183.29,26.1,701.58 +4189,7,E09000026,1,58.72,183.29,26.1,701.58 +4590,5,E09000026,2,78.29,240.09,26.1,915.39 +4690,7,E09000026,2,64.31,240.09,26.1,915.39 +5242,5,E09000026,3,84.82,295.83,26.1,1129.24 +5342,7,E09000026,3,71.78,295.83,26.1,1129.24 +5894,7,E09000026,4,83.89,375.16,26.1,1433.08 +5927,5,E09000026,4,102.51,375.16,26.1,1433.08 +6724,9,E09000026,1,66.17,229.13,26.1,876.89 +7050,9,E09000026,2,78.29,300.12,26.1,1144.22 +7376,9,E09000026,3,84.82,369.81,26.1,1411.55 +7702,9,E09000026,4,102.51,468.95,26.1,1791.41 +8028,10,E09000026,0,69.7,515.71,18.44,1970.05 +205,1,E06000003,1,51.27,88.96,26.1,345.17 +531,1,E06000003,2,57.79,102.91,26.1,423.89 +857,1,E06000003,3,61.52,114.68,26.1,562.73 +1183,1,E06000003,4,70.84,128.63,26.1,491.47 +1509,3,E06000003,1,42.87,100.76,26.1,371.42 +1835,3,E06000003,2,50.34,91.12,26.1,393.89 +2161,3,E06000003,3,54.06,106.12,26.1,438.9 +2487,3,E06000003,4,56.86,116.83,26.1,423.89 +2813,2,E06000003,0,55.36,234.56,18.44,1179.92 +3139,4,E06000003,0,47.15,251.08,18.44,998.38 +3465,6,E06000003,0,55.36,189.79,18.44,721.98 +3791,8,E06000003,0,47.15,189.79,18.44,721.98 +4459,7,E06000003,1,42.87,98.62,26.1,378.95 +4540,5,E06000003,1,51.27,98.62,26.1,378.95 +5055,5,E06000003,2,57.79,115.76,26.1,438.9 +5106,7,E06000003,2,50.34,115.76,26.1,438.9 +5560,5,E06000003,3,61.52,133.98,26.1,513.94 +5735,7,E06000003,3,54.06,133.98,26.1,513.94 +6359,5,E06000003,4,70.84,172.58,26.1,656.53 +6517,7,E06000003,4,56.86,172.58,26.1,656.53 +6725,9,E06000003,1,42.87,123.26,26.1,473.66 +7051,9,E06000003,2,57.79,144.7,26.1,548.7 +7377,9,E06000003,3,61.52,167.48,26.1,642.46 +7703,9,E06000003,4,70.84,215.73,26.1,820.72 +8029,10,E06000003,0,55.36,237.24,18.44,902.44 +206,1,E07000236,1,53.13,99.69,26.1,438.9 +532,1,E07000236,2,58.72,117.9,26.1,483.95 +858,1,E07000236,3,69.9,133.98,26.1,566.51 +1184,1,E07000236,4,81.09,162.93,26.1,630.28 +1510,3,E07000236,1,46.6,88.96,26.1,345.17 +1836,3,E07000236,2,50.34,95.42,26.1,363.93 +2162,3,E07000236,3,60.59,105.05,26.1,423.89 +2488,3,E07000236,4,68.97,128.63,26.1,450.21 +2814,2,E07000236,0,38.95,242.82,18.44,1324.3 +3140,4,E07000236,0,46.12,106.09,18.44,371.32 +3466,6,E07000236,0,38.95,213.35,18.44,816.83 +3792,8,E07000236,0,46.12,213.35,18.44,816.83 +4293,5,E07000236,1,53.13,110.39,26.1,420.18 +4514,7,E07000236,1,46.6,110.39,26.1,420.18 +4903,5,E07000236,2,58.72,131.84,26.1,506.45 +5199,7,E07000236,2,50.34,131.84,26.1,506.45 +5534,5,E07000236,3,69.9,148.99,26.1,566.51 +5790,7,E07000236,3,60.59,148.99,26.1,566.51 +6186,5,E07000236,4,81.09,194.01,26.1,742.84 +6451,7,E07000236,4,68.97,194.01,26.1,742.84 +6726,9,E07000236,1,53.13,138.01,26.1,525.21 +7052,9,E07000236,2,58.72,164.8,26.1,633.05 +7378,9,E07000236,3,69.9,186.23,26.1,708.19 +7704,9,E07000236,4,81.09,242.51,26.1,928.52 +8030,10,E07000236,0,38.95,266.69,18.44,1021.09 +207,1,E07000211,1,57.79,124.33,26.1,622.76 +533,1,E07000211,2,71.78,147.91,26.1,660.31 +859,1,E07000211,3,82.02,162.93,26.1,720.34 +1185,1,E07000211,4,90.42,180.08,26.1,784.04 +1511,3,E07000211,1,52.2,116.83,26.1,562.73 +1837,3,E07000211,2,63.38,130.77,26.1,513.94 +2163,3,E07000211,3,68.97,151.13,26.1,656.53 +2489,3,E07000211,4,73.64,186.51,26.1,686.53 +2815,2,E07000211,0,61.49,265.21,18.44,1192.28 +3141,4,E07000211,0,48.18,193.32,18.44,709.56 +3467,6,E07000211,0,61.49,486.82,18.44,1856.54 +3793,8,E07000211,0,48.18,486.82,18.44,1856.54 +4020,5,E07000211,1,57.79,160.78,26.1,615.23 +4087,7,E07000211,1,52.2,160.78,26.1,615.23 +4635,5,E07000211,2,71.78,211.17,26.1,806.54 +4782,7,E07000211,2,63.38,211.17,26.1,806.54 +5287,5,E07000211,3,82.02,272.26,26.1,1039.19 +5387,7,E07000211,3,68.97,272.26,26.1,1039.19 +5972,5,E07000211,4,90.42,442.67,26.1,1688.23 +6076,7,E07000211,4,73.64,442.67,26.1,1688.23 +6727,9,E07000211,1,57.79,200.97,26.1,769.09 +7053,9,E07000211,2,71.78,263.95,26.1,1008.25 +7379,9,E07000211,3,82.02,340.33,26.1,1298.96 +7705,9,E07000211,4,90.42,553.35,26.1,2110.29 +8031,10,E07000211,0,61.49,608.53,18.44,2320.68 +208,1,E07000124,1,52.2,94.33,26.1,412.65 +534,1,E07000124,2,59.66,108.27,26.1,476.46 +860,1,E07000124,3,66.17,121.11,26.1,513.94 +1186,1,E07000124,4,72.71,135.06,26.1,562.73 +1512,3,E07000124,1,43.8,86.81,26.1,356.41 +1838,3,E07000124,2,54.06,95.42,26.1,401.38 +2164,3,E07000124,3,58.72,106.12,26.1,438.9 +2490,3,E07000124,4,55.93,120.05,26.1,472.71 +2816,2,E07000124,0,55.36,236.93,18.44,1184.02 +3142,4,E07000124,0,32.8,464.43,18.44,2075.22 +3468,6,E07000124,0,55.36,275.83,18.44,1052.03 +3794,8,E07000124,0,32.8,275.83,18.44,1052.03 +4374,5,E07000124,1,52.2,103.98,26.1,397.64 +4486,7,E07000124,1,43.8,103.98,26.1,397.64 +4944,5,E07000124,2,59.66,131.84,26.1,506.45 +5082,7,E07000124,2,54.06,131.84,26.1,506.45 +5587,5,E07000124,3,66.17,159.7,26.1,611.52 +5762,7,E07000124,3,58.72,159.7,26.1,611.52 +6335,5,E07000124,4,72.71,250.82,26.1,956.69 +6386,7,E07000124,4,55.93,250.82,26.1,956.69 +6728,9,E07000124,1,52.2,129.97,26.1,497.07 +7054,9,E07000124,2,59.66,164.8,26.1,633.05 +7380,9,E07000124,3,66.17,199.62,26.1,764.33 +7706,9,E07000124,4,72.71,313.51,26.1,1195.85 +8032,10,E07000124,0,55.36,344.81,18.44,1315.06 +210,1,E09000027,1,66.17,146.84,26.1,697.83 +536,1,E09000027,2,78.29,158.63,26.1,679.04 +862,1,E09000027,3,84.82,168.29,26.1,799.02 +1188,1,E09000027,4,102.51,188.66,26.1,889.11 +1514,3,E09000027,1,58.72,120.05,26.1,517.69 +1840,3,E09000027,2,64.31,140.42,26.1,619.01 +2166,3,E09000027,3,71.78,160.78,26.1,709.03 +2492,3,E09000027,4,83.89,262.61,26.1,922.88 +2818,2,E09000027,0,69.7,313.55,18.44,1741.04 +3144,4,E09000027,0,59.45,367.77,18.44,1394.47 +3470,6,E09000027,0,69.7,994.86,18.44,3799.74 +3796,8,E09000027,0,59.45,994.86,18.44,3799.74 +3976,5,E09000027,1,66.17,250.82,26.1,956.69 +4190,7,E09000027,1,58.72,250.82,26.1,956.69 +4591,5,E09000027,2,78.29,339.77,26.1,1298.05 +4691,7,E09000027,2,64.31,339.77,26.1,1298.05 +5243,5,E09000027,3,84.82,476.98,26.1,1819.51 +5343,7,E09000027,3,71.78,476.98,26.1,1819.51 +5895,7,E09000027,4,83.89,904.65,26.1,3455.17 +5928,5,E09000027,4,102.51,904.65,26.1,3455.17 +6730,9,E09000027,1,66.17,313.51,26.1,1195.85 +7056,9,E09000027,2,78.29,424.73,26.1,1622.57 +7382,9,E09000027,3,84.82,596.23,26.1,2274.44 +7708,9,E09000027,4,102.51,1130.82,26.1,4319 +8034,10,E09000027,0,69.7,1243.58,18.44,4749.68 +209,1,E07000166,1,51.27,92.19,26.1,401.38 +535,1,E07000166,2,58.72,109.33,26.1,495.22 +861,1,E07000166,3,63.38,121.11,26.1,570.26 +1187,1,E07000166,4,73.64,145.77,26.1,630.28 +1513,3,E07000166,1,46.6,82.54,26.1,326.41 +1839,3,E07000166,2,53.13,113.61,26.1,510.2 +2165,3,E07000166,3,56.86,105.05,26.1,401.38 +2491,3,E07000166,4,64.31,122.19,26.1,619.01 +2817,2,E07000166,0,52.28,232.2,18.44,1118.04 +3143,4,E07000166,0,51.26,159.13,18.44,660.1 +3469,6,E07000166,0,52.28,225.15,18.44,858.13 +3795,8,E07000166,0,51.26,225.15,18.44,858.13 +4403,5,E07000166,1,51.27,97.54,26.1,371.42 +4557,7,E07000166,1,46.6,97.54,26.1,371.42 +4825,7,E07000166,2,53.13,126.48,26.1,483.95 +4883,5,E07000166,2,58.72,126.48,26.1,483.95 +5514,5,E07000166,3,63.38,148.99,26.1,566.51 +5861,7,E07000166,3,56.86,148.99,26.1,566.51 +6119,5,E07000166,4,73.64,204.74,26.1,780.33 +6217,7,E07000166,4,64.31,204.74,26.1,780.33 +6729,9,E07000166,1,51.27,121.95,26.1,464.28 +7055,9,E07000166,2,53.13,158.09,26.1,604.94 +7381,9,E07000166,3,63.38,186.23,26.1,708.19 +7707,9,E07000166,4,73.64,255.92,26.1,975.42 +8033,10,E07000166,0,52.28,281.43,18.44,1072.58 +211,1,E08000005,1,52.2,94.33,26.1,412.65 +537,1,E08000005,2,59.66,108.27,26.1,476.46 +863,1,E08000005,3,66.17,121.11,26.1,513.94 +1189,1,E08000005,4,72.71,135.06,26.1,562.73 +1515,3,E08000005,1,43.8,86.81,26.1,356.41 +1841,3,E08000005,2,54.06,95.42,26.1,401.38 +2167,3,E08000005,3,58.72,106.12,26.1,438.9 +2493,3,E08000005,4,55.93,120.05,26.1,472.71 +2819,2,E08000005,0,55.36,236.93,18.44,1184.02 +3145,4,E08000005,0,32.8,464.43,18.44,2075.22 +3471,6,E08000005,0,55.36,213.35,18.44,816.83 +3797,8,E08000005,0,32.8,213.35,18.44,816.83 +4375,5,E08000005,1,52.2,96.49,26.1,367.68 +4487,7,E08000005,1,43.8,96.49,26.1,367.68 +4945,5,E08000005,2,59.66,110.39,26.1,420.18 +5083,7,E08000005,2,54.06,110.39,26.1,420.18 +5588,5,E08000005,3,66.17,131.84,26.1,506.45 +5763,7,E08000005,3,58.72,131.84,26.1,506.45 +6336,5,E08000005,4,72.71,194.01,26.1,742.84 +6387,7,E08000005,4,55.93,194.01,26.1,742.84 +6731,9,E08000005,1,52.2,120.59,26.1,459.52 +7057,9,E08000005,2,59.66,138.01,26.1,525.21 +7383,9,E08000005,3,66.17,164.8,26.1,633.05 +7709,9,E08000005,4,72.71,242.51,26.1,928.52 +8035,10,E08000005,0,55.36,266.69,18.44,1021.09 +212,1,E07000075,1,54.99,120.05,26.1,525.21 +538,1,E07000075,2,65.24,143.62,26.1,592.76 +864,1,E07000075,3,71.78,157.56,26.1,637.77 +1190,1,E07000075,4,82.02,172.58,26.1,630.28 +1516,3,E07000075,1,50.34,100.76,26.1,465.19 +1842,3,E07000075,2,58.72,118.97,26.1,468.93 +2168,3,E07000075,3,64.31,131.84,26.1,506.45 +2494,3,E07000075,4,71.78,150.06,26.1,562.73 +2820,2,E07000075,0,35.87,223.96,18.44,1464.58 +3146,4,E07000075,0,55.36,134.38,18.44,1101.56 +3472,6,E07000075,0,35.87,325.34,18.44,1241.8 +3798,8,E07000075,0,55.36,325.34,18.44,1241.8 +4149,5,E07000075,1,54.99,136.13,26.1,521.47 +4266,7,E07000075,1,50.34,136.13,26.1,521.47 +4730,5,E07000075,2,65.24,182.22,26.1,697.83 +4992,7,E07000075,2,58.72,182.22,26.1,697.83 +5449,5,E07000075,3,71.78,216.52,26.1,829.12 +5635,7,E07000075,3,64.31,216.52,26.1,829.12 +6159,5,E07000075,4,82.02,295.83,26.1,1129.24 +6297,7,E07000075,4,71.78,295.83,26.1,1129.24 +6732,9,E07000075,1,54.99,170.16,26.1,651.81 +7058,9,E07000075,2,65.24,227.8,26.1,872.27 +7384,9,E07000075,3,71.78,270.66,26.1,1036.39 +7710,9,E07000075,4,82.02,369.81,26.1,1411.55 +8036,10,E07000075,0,35.87,406.66,18.44,1552.29 +213,1,E07000125,1,52.2,94.33,26.1,412.65 +539,1,E07000125,2,59.66,108.27,26.1,476.46 +865,1,E07000125,3,66.17,121.11,26.1,513.94 +1191,1,E07000125,4,72.71,135.06,26.1,562.73 +1517,3,E07000125,1,43.8,86.81,26.1,356.41 +1843,3,E07000125,2,54.06,95.42,26.1,401.38 +2169,3,E07000125,3,58.72,106.12,26.1,438.9 +2495,3,E07000125,4,55.93,120.05,26.1,472.71 +2821,2,E07000125,0,55.36,236.93,18.44,1184.02 +3147,4,E07000125,0,32.8,464.43,18.44,2075.22 +3473,6,E07000125,0,55.36,201.56,18.44,771.47 +3799,8,E07000125,0,32.8,201.56,18.44,771.47 +4376,5,E07000125,1,52.2,92.19,26.1,348.92 +4488,7,E07000125,1,43.8,92.19,26.1,348.92 +4946,5,E07000125,2,59.66,110.39,26.1,420.18 +5084,7,E07000125,2,54.06,110.39,26.1,420.18 +5589,5,E07000125,3,66.17,126.48,26.1,483.95 +5764,7,E07000125,3,58.72,126.48,26.1,483.95 +6337,5,E07000125,4,72.71,183.29,26.1,701.58 +6388,7,E07000125,4,55.93,183.29,26.1,701.58 +6733,9,E07000125,1,52.2,115.24,26.1,436.1 +7059,9,E07000125,2,59.66,138.01,26.1,525.21 +7385,9,E07000125,3,66.17,158.09,26.1,604.94 +7711,9,E07000125,4,72.71,229.13,26.1,876.89 +8037,10,E07000125,0,55.36,251.95,18.44,964.39 +214,1,E07000064,1,57.79,124.33,26.1,622.76 +540,1,E07000064,2,71.78,147.91,26.1,660.31 +866,1,E07000064,3,82.02,162.93,26.1,720.34 +1192,1,E07000064,4,90.42,180.08,26.1,784.04 +1518,3,E07000064,1,52.2,116.83,26.1,562.73 +1844,3,E07000064,2,63.38,130.77,26.1,513.94 +2170,3,E07000064,3,68.97,151.13,26.1,656.53 +2496,3,E07000064,4,73.64,186.51,26.1,686.53 +2822,2,E07000064,0,61.49,265.21,18.44,1192.28 +3148,4,E07000064,0,48.18,193.32,18.44,709.56 +3474,6,E07000064,0,61.49,312.38,18.44,1192.28 +3800,8,E07000064,0,48.18,312.38,18.44,1192.28 +4021,5,E07000064,1,57.79,117.9,26.1,450.21 +4088,7,E07000064,1,52.2,117.9,26.1,450.21 +4636,5,E07000064,2,71.78,148.99,26.1,566.51 +4783,7,E07000064,2,63.38,148.99,26.1,566.51 +5288,5,E07000064,3,82.02,200.45,26.1,761.57 +5388,7,E07000064,3,68.97,200.45,26.1,761.57 +5973,5,E07000064,4,90.42,284.04,26.1,1084.23 +6077,7,E07000064,4,73.64,284.04,26.1,1084.23 +6734,9,E07000064,1,57.79,147.38,26.1,562.73 +7060,9,E07000064,2,71.78,186.23,26.1,708.19 +7386,9,E07000064,3,82.02,250.54,26.1,951.93 +7712,9,E07000064,4,90.42,355.06,26.1,1355.24 +8038,10,E07000064,0,61.49,390.47,18.44,1490.37 +215,1,E08000018,1,51.27,92.19,26.1,401.38 +541,1,E08000018,2,58.72,109.33,26.1,495.22 +867,1,E08000018,3,63.38,121.11,26.1,570.26 +1193,1,E08000018,4,73.64,145.77,26.1,630.28 +1519,3,E08000018,1,46.6,82.54,26.1,326.41 +1845,3,E08000018,2,53.13,113.61,26.1,510.2 +2171,3,E08000018,3,56.86,105.05,26.1,401.38 +2497,3,E08000018,4,64.31,122.19,26.1,619.01 +2823,2,E08000018,0,52.28,232.2,18.44,1118.04 +3149,4,E08000018,0,51.26,159.13,18.44,660.1 +3475,6,E08000018,0,52.28,189.79,18.44,721.98 +3801,8,E08000018,0,51.26,189.79,18.44,721.98 +4404,5,E08000018,1,51.27,87.89,26.1,333.97 +4558,7,E08000018,1,46.6,87.89,26.1,333.97 +4826,7,E08000018,2,53.13,114.68,26.1,435.16 +4884,5,E08000018,2,58.72,114.68,26.1,435.16 +5515,5,E08000018,3,63.38,126.48,26.1,483.95 +5862,7,E08000018,3,56.86,126.48,26.1,483.95 +6120,5,E08000018,4,73.64,172.58,26.1,656.53 +6218,7,E08000018,4,64.31,172.58,26.1,656.53 +6735,9,E08000018,1,51.27,109.88,26.1,417.38 +7061,9,E08000018,2,53.13,143.37,26.1,543.94 +7387,9,E08000018,3,63.38,158.09,26.1,604.94 +7713,9,E08000018,4,73.64,215.73,26.1,820.72 +8039,10,E08000018,0,52.28,237.24,18.44,902.44 +216,1,E07000220,1,53.13,99.69,26.1,438.9 +542,1,E07000220,2,58.72,117.9,26.1,483.95 +868,1,E07000220,3,69.9,133.98,26.1,566.51 +1194,1,E07000220,4,81.09,162.93,26.1,630.28 +1520,3,E07000220,1,46.6,88.96,26.1,345.17 +1846,3,E07000220,2,50.34,95.42,26.1,363.93 +2172,3,E07000220,3,60.59,105.05,26.1,423.89 +2498,3,E07000220,4,68.97,128.63,26.1,450.21 +2824,2,E07000220,0,38.95,242.82,18.44,1324.3 +3150,4,E07000220,0,46.12,106.09,18.44,371.32 +3476,6,E07000220,0,38.95,294.71,18.44,1126.3 +3802,8,E07000220,0,46.12,294.71,18.44,1126.3 +4294,5,E07000220,1,53.13,103.98,26.1,397.64 +4515,7,E07000220,1,46.6,103.98,26.1,397.64 +4904,5,E07000220,2,58.72,126.48,26.1,483.95 +5200,7,E07000220,2,50.34,126.48,26.1,483.95 +5535,5,E07000220,3,69.9,155.41,26.1,592.76 +5791,7,E07000220,3,60.59,155.41,26.1,592.76 +6187,5,E07000220,4,81.09,267.97,26.1,1024.14 +6452,7,E07000220,4,68.97,267.97,26.1,1024.14 +6736,9,E07000220,1,53.13,129.97,26.1,497.07 +7062,9,E07000220,2,58.72,158.09,26.1,604.94 +7388,9,E07000220,3,69.9,194.27,26.1,740.92 +7714,9,E07000220,4,81.09,334.98,26.1,1280.27 +8040,10,E07000220,0,38.95,368.37,18.44,1407.95 +217,1,E07000212,1,57.79,124.33,26.1,622.76 +543,1,E07000212,2,71.78,147.91,26.1,660.31 +869,1,E07000212,3,82.02,162.93,26.1,720.34 +1195,1,E07000212,4,90.42,180.08,26.1,784.04 +1521,3,E07000212,1,52.2,116.83,26.1,562.73 +1847,3,E07000212,2,63.38,130.77,26.1,513.94 +2173,3,E07000212,3,68.97,151.13,26.1,656.53 +2499,3,E07000212,4,73.64,186.51,26.1,686.53 +2825,2,E07000212,0,61.49,265.21,18.44,1192.28 +3151,4,E07000212,0,48.18,193.32,18.44,709.56 +3477,6,E07000212,0,61.49,598.8,18.44,2285.64 +3803,8,E07000212,0,48.18,598.8,18.44,2285.64 +4022,5,E07000212,1,57.79,183.29,26.1,701.58 +4089,7,E07000212,1,52.2,183.29,26.1,701.58 +4637,5,E07000212,2,71.78,250.82,26.1,956.69 +4784,7,E07000212,2,63.38,250.82,26.1,956.69 +5289,5,E07000212,3,82.02,307.63,26.1,1174.22 +5389,7,E07000212,3,68.97,307.63,26.1,1174.22 +5974,5,E07000212,4,90.42,544.51,26.1,2078.37 +6078,7,E07000212,4,73.64,544.51,26.1,2078.37 +6737,9,E07000212,1,57.79,229.13,26.1,876.89 +7063,9,E07000212,2,71.78,313.51,26.1,1195.85 +7389,9,E07000212,3,82.02,384.53,26.1,1467.76 +7715,9,E07000212,4,90.42,680.64,26.1,2598.02 +8041,10,E07000212,0,61.49,748.51,18.44,2857.02 +218,1,E07000176,1,52.2,100.76,26.1,431.41 +544,1,E07000176,2,62.45,115.76,26.1,457.7 +870,1,E07000176,3,68.97,127.56,26.1,487.69 +1196,1,E07000176,4,76.43,159.7,26.1,589.02 +1522,3,E07000176,1,46.6,91.12,26.1,378.95 +1848,3,E07000176,2,53.13,97.54,26.1,382.66 +2174,3,E07000176,3,58.72,105.05,26.1,420.18 +2500,3,E07000176,4,64.31,123.26,26.1,431.41 +2826,2,E07000176,0,51.26,238.1,18.44,1250.1 +3152,4,E07000176,0,49.2,113.15,18.44,429.07 +3478,6,E07000176,0,51.26,300.58,18.44,1146.92 +3804,8,E07000176,0,49.2,300.58,18.44,1146.92 +4343,5,E07000176,1,52.2,110.39,26.1,420.18 +4443,7,E07000176,1,46.6,110.39,26.1,420.18 +5039,5,E07000176,2,62.45,136.13,26.1,521.47 +5179,7,E07000176,2,53.13,136.13,26.1,521.47 +5682,5,E07000176,3,68.97,172.58,26.1,656.53 +5840,7,E07000176,3,58.72,172.58,26.1,656.53 +6257,5,E07000176,4,76.43,273.34,26.1,1042.97 +6501,7,E07000176,4,64.31,273.34,26.1,1042.97 +6738,9,E07000176,1,52.2,138.01,26.1,525.21 +7064,9,E07000176,2,62.45,170.16,26.1,651.81 +7390,9,E07000176,3,68.97,215.73,26.1,820.72 +7716,9,E07000176,4,76.43,341.67,26.1,1303.68 +8042,10,E07000176,0,51.26,375.73,18.44,1433.64 +219,1,E07000092,1,57.79,124.33,26.1,622.76 +545,1,E07000092,2,71.78,147.91,26.1,660.31 +871,1,E07000092,3,82.02,162.93,26.1,720.34 +1197,1,E07000092,4,90.42,180.08,26.1,784.04 +1523,3,E07000092,1,52.2,116.83,26.1,562.73 +1849,3,E07000092,2,63.38,130.77,26.1,513.94 +2175,3,E07000092,3,68.97,151.13,26.1,656.53 +2501,3,E07000092,4,73.64,186.51,26.1,686.53 +2827,2,E07000092,0,61.49,265.21,18.44,1192.28 +3153,4,E07000092,0,48.18,193.32,18.44,709.56 +3479,6,E07000092,0,61.49,374.83,18.44,1431.61 +3805,8,E07000092,0,48.18,374.83,18.44,1431.61 +4023,5,E07000092,1,57.79,148.99,26.1,566.51 +4090,7,E07000092,1,52.2,148.99,26.1,566.51 +4638,5,E07000092,2,71.78,183.29,26.1,701.58 +4785,7,E07000092,2,63.38,183.29,26.1,701.58 +5290,5,E07000092,3,82.02,240.09,26.1,915.39 +5390,7,E07000092,3,68.97,240.09,26.1,915.39 +5975,5,E07000092,4,90.42,340.85,26.1,1301.79 +6079,7,E07000092,4,73.64,340.85,26.1,1301.79 +6739,9,E07000092,1,57.79,186.23,26.1,708.19 +7065,9,E07000092,2,71.78,229.13,26.1,876.89 +7391,9,E07000092,3,82.02,300.12,26.1,1144.22 +7717,9,E07000092,4,90.42,426.06,26.1,1627.19 +8043,10,E07000092,0,61.49,468.55,18.44,1789.55 +220,1,E06000017,1,52.2,100.76,26.1,431.41 +546,1,E06000017,2,62.45,115.76,26.1,457.7 +872,1,E06000017,3,68.97,127.56,26.1,487.69 +1198,1,E06000017,4,76.43,159.7,26.1,589.02 +1524,3,E06000017,1,46.6,91.12,26.1,378.95 +1850,3,E06000017,2,53.13,97.54,26.1,382.66 +2176,3,E06000017,3,58.72,105.05,26.1,420.18 +2502,3,E06000017,4,64.31,123.26,26.1,431.41 +2828,2,E06000017,0,51.26,238.1,18.44,1250.1 +3154,4,E06000017,0,49.2,113.15,18.44,429.07 +3480,6,E06000017,0,51.26,319.44,18.44,1212.93 +3806,8,E06000017,0,49.2,319.44,18.44,1212.93 +4344,5,E06000017,1,52.2,110.39,26.1,420.18 +4444,7,E06000017,1,46.6,110.39,26.1,420.18 +5040,5,E06000017,2,62.45,131.84,26.1,506.45 +5180,7,E06000017,2,53.13,131.84,26.1,506.45 +5683,5,E06000017,3,68.97,166.14,26.1,634.03 +5841,7,E06000017,3,58.72,166.14,26.1,634.03 +6258,5,E06000017,4,76.43,290.49,26.1,1102.99 +6502,7,E06000017,4,64.31,290.49,26.1,1102.99 +6740,9,E06000017,1,52.2,138.01,26.1,525.21 +7066,9,E06000017,2,62.45,164.8,26.1,633.05 +7392,9,E06000017,3,68.97,207.68,26.1,792.54 +7718,9,E06000017,4,76.43,363.1,26.1,1378.69 +8044,10,E06000017,0,51.26,399.32,18.44,1516.17 +221,1,E07000167,1,51.27,92.19,26.1,401.38 +547,1,E07000167,2,58.72,109.33,26.1,495.22 +873,1,E07000167,3,63.38,121.11,26.1,570.26 +1199,1,E07000167,4,73.64,145.77,26.1,630.28 +1525,3,E07000167,1,46.6,82.54,26.1,326.41 +1851,3,E07000167,2,53.13,113.61,26.1,510.2 +2177,3,E07000167,3,56.86,105.05,26.1,401.38 +2503,3,E07000167,4,64.31,122.19,26.1,619.01 +2829,2,E07000167,0,52.28,232.2,18.44,1118.04 +3155,4,E07000167,0,51.26,159.13,18.44,660.1 +3481,6,E07000167,0,52.28,252.25,18.44,957.15 +3807,8,E07000167,0,51.26,252.25,18.44,957.15 +4405,5,E07000167,1,51.27,100.76,26.1,386.37 +4559,7,E07000167,1,46.6,100.76,26.1,386.37 +4827,7,E07000167,2,53.13,126.48,26.1,483.95 +4885,5,E07000167,2,58.72,126.48,26.1,483.95 +5516,5,E07000167,3,63.38,148.99,26.1,566.51 +5863,7,E07000167,3,56.86,148.99,26.1,566.51 +6121,5,E07000167,4,73.64,229.37,26.1,870.35 +6219,7,E07000167,4,64.31,229.37,26.1,870.35 +6741,9,E07000167,1,51.27,125.95,26.1,483.04 +7067,9,E07000167,2,53.13,158.09,26.1,604.94 +7393,9,E07000167,3,63.38,186.23,26.1,708.19 +7719,9,E07000167,4,73.64,286.72,26.1,1087.94 +8045,10,E07000167,0,52.28,315.32,18.44,1196.44 +222,1,E08000006,1,52.2,94.33,26.1,412.65 +548,1,E08000006,2,59.66,108.27,26.1,476.46 +874,1,E08000006,3,66.17,121.11,26.1,513.94 +1200,1,E08000006,4,72.71,135.06,26.1,562.73 +1526,3,E08000006,1,43.8,86.81,26.1,356.41 +1852,3,E08000006,2,54.06,95.42,26.1,401.38 +2178,3,E08000006,3,58.72,106.12,26.1,438.9 +2504,3,E08000006,4,55.93,120.05,26.1,472.71 +2830,2,E08000006,0,55.36,236.93,18.44,1184.02 +3156,4,E08000006,0,32.8,464.43,18.44,2075.22 +3482,6,E08000006,0,55.36,269.94,18.44,1031.49 +3808,8,E08000006,0,32.8,269.94,18.44,1031.49 +4377,5,E08000006,1,52.2,114.68,26.1,435.16 +4489,7,E08000006,1,43.8,114.68,26.1,435.16 +4947,5,E08000006,2,59.66,131.84,26.1,506.45 +5085,7,E08000006,2,54.06,131.84,26.1,506.45 +5590,5,E08000006,3,66.17,148.99,26.1,566.51 +5765,7,E08000006,3,58.72,148.99,26.1,566.51 +6338,5,E08000006,4,72.71,245.47,26.1,937.9 +6389,7,E08000006,4,55.93,245.47,26.1,937.9 +6742,9,E08000006,1,52.2,143.37,26.1,543.94 +7068,9,E08000006,2,59.66,164.8,26.1,633.05 +7394,9,E08000006,3,66.17,186.23,26.1,708.19 +7720,9,E08000006,4,72.71,306.81,26.1,1172.43 +8046,10,E08000006,0,55.36,337.42,18.44,1289.3 +223,1,E08000028,1,53.13,99.69,26.1,438.9 +549,1,E08000028,2,58.72,117.9,26.1,483.95 +875,1,E08000028,3,69.9,133.98,26.1,566.51 +1201,1,E08000028,4,81.09,162.93,26.1,630.28 +1527,3,E08000028,1,46.6,88.96,26.1,345.17 +1853,3,E08000028,2,50.34,95.42,26.1,363.93 +2179,3,E08000028,3,60.59,105.05,26.1,423.89 +2505,3,E08000028,4,68.97,128.63,26.1,450.21 +2831,2,E08000028,0,38.95,242.82,18.44,1324.3 +3157,4,E08000028,0,46.12,106.09,18.44,371.32 +3483,6,E08000028,0,38.95,201.56,18.44,771.47 +3809,8,E08000028,0,46.12,201.56,18.44,771.47 +4295,5,E08000028,1,53.13,100.76,26.1,386.37 +4516,7,E08000028,1,46.6,100.76,26.1,386.37 +4905,5,E08000028,2,58.72,121.11,26.1,461.44 +5201,7,E08000028,2,50.34,121.11,26.1,461.44 +5536,5,E08000028,3,69.9,136.13,26.1,521.47 +5792,7,E08000028,3,60.59,136.13,26.1,521.47 +6188,5,E08000028,4,81.09,183.29,26.1,701.58 +6453,7,E08000028,4,68.97,183.29,26.1,701.58 +6743,9,E08000028,1,53.13,125.95,26.1,483.04 +7069,9,E08000028,2,58.72,151.41,26.1,576.8 +7395,9,E08000028,3,69.9,170.16,26.1,651.81 +7721,9,E08000028,4,81.09,229.13,26.1,876.89 +8047,10,E08000028,0,38.95,251.95,18.44,964.39 +224,1,E07000168,1,51.27,92.19,26.1,401.38 +550,1,E07000168,2,58.72,109.33,26.1,495.22 +876,1,E07000168,3,63.38,121.11,26.1,570.26 +1202,1,E07000168,4,73.64,145.77,26.1,630.28 +1528,3,E07000168,1,46.6,82.54,26.1,326.41 +1854,3,E07000168,2,53.13,113.61,26.1,510.2 +2180,3,E07000168,3,56.86,105.05,26.1,401.38 +2506,3,E07000168,4,64.31,122.19,26.1,619.01 +2832,2,E07000168,0,52.28,232.2,18.44,1118.04 +3158,4,E07000168,0,51.26,159.13,18.44,660.1 +3484,6,E07000168,0,52.28,174.46,18.44,672.49 +3810,8,E07000168,0,51.26,174.46,18.44,672.49 +4406,5,E07000168,1,51.27,91.12,26.1,345.17 +4560,7,E07000168,1,46.6,91.12,26.1,345.17 +4828,7,E07000168,2,53.13,120.05,26.1,457.7 +4886,5,E07000168,2,58.72,120.05,26.1,457.7 +5517,5,E07000168,3,63.38,138.27,26.1,525.21 +5864,7,E07000168,3,56.86,138.27,26.1,525.21 +6122,5,E07000168,4,73.64,159.7,26.1,611.52 +6220,7,E07000168,4,64.31,159.7,26.1,611.52 +6744,9,E07000168,1,51.27,113.9,26.1,431.41 +7070,9,E07000168,2,53.13,150.06,26.1,572.11 +7396,9,E07000168,3,63.38,172.84,26.1,656.5 +7722,9,E07000168,4,73.64,199.62,26.1,764.33 +8048,10,E07000168,0,52.28,218.08,18.44,840.6 +225,1,E07000188,1,49.41,108.27,26.1,495.22 +551,1,E07000188,2,55.93,122.19,26.1,510.2 +877,1,E07000188,3,62.45,142.56,26.1,570.26 +1203,1,E07000188,4,71.78,159.7,26.1,686.53 +1529,3,E07000188,1,47.54,90.03,26.1,742.84 +1855,3,E07000188,2,54.99,101.83,26.1,393.89 +2181,3,E07000188,3,62.45,110.39,26.1,446.46 +2507,3,E07000188,4,74.57,131.84,26.1,461.44 +2833,2,E07000188,0,54.33,228.68,18.44,1241.8 +3159,4,E07000188,0,54.33,114.33,18.44,490.95 +3485,6,E07000188,0,54.33,244,18.44,932.37 +3811,8,E07000188,0,54.33,244,18.44,932.37 +3934,7,E07000188,1,47.54,103.98,26.1,397.64 +4218,5,E07000188,1,49.41,103.98,26.1,397.64 +4854,5,E07000188,2,55.93,128.63,26.1,495.22 +5131,7,E07000188,2,54.99,128.63,26.1,495.22 +5485,5,E07000188,3,62.45,159.7,26.1,611.52 +5711,7,E07000188,3,62.45,159.7,26.1,611.52 +6023,5,E07000188,4,71.78,221.88,26.1,847.88 +6423,7,E07000188,4,74.57,221.88,26.1,847.88 +6745,9,E07000188,1,49.41,129.97,26.1,497.07 +7071,9,E07000188,2,55.93,160.78,26.1,619.01 +7397,9,E07000188,3,62.45,199.62,26.1,764.33 +7723,9,E07000188,4,71.78,277.34,26.1,1059.84 +8049,10,E07000188,0,54.33,305,18.44,1165.47 +226,1,E08000014,1,52.2,94.33,26.1,412.65 +552,1,E08000014,2,59.66,108.27,26.1,476.46 +878,1,E08000014,3,66.17,121.11,26.1,513.94 +1204,1,E08000014,4,72.71,135.06,26.1,562.73 +1530,3,E08000014,1,43.8,86.81,26.1,356.41 +1856,3,E08000014,2,54.06,95.42,26.1,401.38 +2182,3,E08000014,3,58.72,106.12,26.1,438.9 +2508,3,E08000014,4,55.93,120.05,26.1,472.71 +2834,2,E08000014,0,55.36,236.93,18.44,1184.02 +3160,4,E08000014,0,32.8,464.43,18.44,2075.22 +3486,6,E08000014,0,55.36,244,18.44,932.37 +3812,8,E08000014,0,32.8,244,18.44,932.37 +4378,5,E08000014,1,52.2,103.98,26.1,397.64 +4490,7,E08000014,1,43.8,103.98,26.1,397.64 +4948,5,E08000014,2,59.66,132.91,26.1,510.2 +5086,7,E08000014,2,54.06,132.91,26.1,510.2 +5591,5,E08000014,3,66.17,155.41,26.1,592.76 +5766,7,E08000014,3,58.72,155.41,26.1,592.76 +6339,5,E08000014,4,72.71,221.88,26.1,847.88 +6390,7,E08000014,4,55.93,221.88,26.1,847.88 +6746,9,E08000014,1,52.2,129.97,26.1,497.07 +7072,9,E08000014,2,59.66,166.13,26.1,637.74 +7398,9,E08000014,3,66.17,194.27,26.1,740.92 +7724,9,E08000014,4,72.71,277.34,26.1,1059.84 +8050,10,E08000014,0,55.36,305,18.44,1165.47 +227,1,E07000169,1,51.27,92.19,26.1,401.38 +553,1,E07000169,2,58.72,109.33,26.1,495.22 +879,1,E07000169,3,63.38,121.11,26.1,570.26 +1205,1,E07000169,4,73.64,145.77,26.1,630.28 +1531,3,E07000169,1,46.6,82.54,26.1,326.41 +1857,3,E07000169,2,53.13,113.61,26.1,510.2 +2183,3,E07000169,3,56.86,105.05,26.1,401.38 +2509,3,E07000169,4,64.31,122.19,26.1,619.01 +2835,2,E07000169,0,52.28,232.2,18.44,1118.04 +3161,4,E07000169,0,51.26,159.13,18.44,660.1 +3487,6,E07000169,0,52.28,213.35,18.44,816.83 +3813,8,E07000169,0,51.26,213.35,18.44,816.83 +4407,5,E07000169,1,51.27,102.91,26.1,393.89 +4561,7,E07000169,1,46.6,102.91,26.1,393.89 +4829,7,E07000169,2,53.13,121.11,26.1,461.44 +4887,5,E07000169,2,58.72,121.11,26.1,461.44 +5518,5,E07000169,3,63.38,148.99,26.1,566.51 +5865,7,E07000169,3,56.86,148.99,26.1,566.51 +6123,5,E07000169,4,73.64,194.01,26.1,742.84 +6221,7,E07000169,4,64.31,194.01,26.1,742.84 +6747,9,E07000169,1,51.27,128.63,26.1,492.38 +7073,9,E07000169,2,53.13,151.41,26.1,576.8 +7399,9,E07000169,3,63.38,186.23,26.1,708.19 +7725,9,E07000169,4,73.64,242.51,26.1,928.52 +8051,10,E07000169,0,52.28,266.69,18.44,1021.09 +228,1,E07000111,1,57.79,124.33,26.1,622.76 +554,1,E07000111,2,71.78,147.91,26.1,660.31 +880,1,E07000111,3,82.02,162.93,26.1,720.34 +1206,1,E07000111,4,90.42,180.08,26.1,784.04 +1532,3,E07000111,1,52.2,116.83,26.1,562.73 +1858,3,E07000111,2,63.38,130.77,26.1,513.94 +2184,3,E07000111,3,68.97,151.13,26.1,656.53 +2510,3,E07000111,4,73.64,186.51,26.1,686.53 +2836,2,E07000111,0,61.49,265.21,18.44,1192.28 +3162,4,E07000111,0,48.18,193.32,18.44,709.56 +3488,6,E07000111,0,61.49,697.84,18.44,2665.15 +3814,8,E07000111,0,48.18,697.84,18.44,2665.15 +4024,5,E07000111,1,57.79,160.78,26.1,615.23 +4091,7,E07000111,1,52.2,160.78,26.1,615.23 +4639,5,E07000111,2,71.78,216.52,26.1,829.12 +4786,7,E07000111,2,63.38,216.52,26.1,829.12 +5291,5,E07000111,3,82.02,318.35,26.1,1211.77 +5391,7,E07000111,3,68.97,318.35,26.1,1211.77 +5976,5,E07000111,4,90.42,634.56,26.1,2423.51 +6080,7,E07000111,4,73.64,634.56,26.1,2423.51 +6748,9,E07000111,1,57.79,200.97,26.1,769.09 +7074,9,E07000111,2,71.78,270.66,26.1,1036.39 +7400,9,E07000111,3,82.02,397.93,26.1,1514.63 +7726,9,E07000111,4,90.42,793.2,26.1,3029.39 +8052,10,E07000111,0,61.49,872.3,18.44,3331.41 +229,1,E08000019,1,51.27,92.19,26.1,401.38 +555,1,E08000019,2,58.72,109.33,26.1,495.22 +881,1,E08000019,3,63.38,121.11,26.1,570.26 +1207,1,E08000019,4,73.64,145.77,26.1,630.28 +1533,3,E08000019,1,46.6,82.54,26.1,326.41 +1859,3,E08000019,2,53.13,113.61,26.1,510.2 +2185,3,E08000019,3,56.86,105.05,26.1,401.38 +2511,3,E08000019,4,64.31,122.19,26.1,619.01 +2837,2,E08000019,0,52.28,232.2,18.44,1118.04 +3163,4,E08000019,0,51.26,159.13,18.44,660.1 +3489,6,E08000019,0,52.28,232.2,18.44,886.97 +3815,8,E08000019,0,51.26,232.2,18.44,886.97 +4408,5,E08000019,1,51.27,115.76,26.1,438.9 +4562,7,E08000019,1,46.6,115.76,26.1,438.9 +4830,7,E08000019,2,53.13,131.84,26.1,506.45 +4888,5,E08000019,2,58.72,131.84,26.1,506.45 +5519,5,E08000019,3,63.38,138.27,26.1,525.21 +5866,7,E08000019,3,56.86,138.27,26.1,525.21 +6124,5,E08000019,4,73.64,211.17,26.1,806.54 +6222,7,E08000019,4,64.31,211.17,26.1,806.54 +6749,9,E08000019,1,51.27,144.7,26.1,548.7 +7075,9,E08000019,2,53.13,164.8,26.1,633.05 +7401,9,E08000019,3,63.38,172.84,26.1,656.5 +7727,9,E08000019,4,73.64,263.95,26.1,1008.25 +8053,10,E08000019,0,52.28,290.27,18.44,1108.77 +230,1,E07000112,1,57.79,124.33,26.1,622.76 +556,1,E07000112,2,71.78,147.91,26.1,660.31 +882,1,E07000112,3,82.02,162.93,26.1,720.34 +1208,1,E07000112,4,90.42,180.08,26.1,784.04 +1534,3,E07000112,1,52.2,116.83,26.1,562.73 +1860,3,E07000112,2,63.38,130.77,26.1,513.94 +2186,3,E07000112,3,68.97,151.13,26.1,656.53 +2512,3,E07000112,4,73.64,186.51,26.1,686.53 +2838,2,E07000112,0,61.49,265.21,18.44,1192.28 +3164,4,E07000112,0,48.18,193.32,18.44,709.56 +3490,6,E07000112,0,61.49,294.71,18.44,1126.3 +3816,8,E07000112,0,48.18,294.71,18.44,1126.3 +4025,5,E07000112,1,57.79,103.98,26.1,397.64 +4092,7,E07000112,1,52.2,103.98,26.1,397.64 +4640,5,E07000112,2,71.78,142.56,26.1,543.94 +4787,7,E07000112,2,63.38,142.56,26.1,543.94 +5292,5,E07000112,3,82.02,172.58,26.1,656.53 +5392,7,E07000112,3,68.97,172.58,26.1,656.53 +5977,5,E07000112,4,90.42,267.97,26.1,1024.14 +6081,7,E07000112,4,73.64,267.97,26.1,1024.14 +6750,9,E07000112,1,57.79,129.97,26.1,497.07 +7076,9,E07000112,2,71.78,178.2,26.1,679.95 +7402,9,E07000112,3,82.02,215.73,26.1,820.72 +7728,9,E07000112,4,90.42,334.98,26.1,1280.27 +8054,10,E07000112,0,61.49,368.37,18.44,1407.95 +231,1,E06000051,1,53.13,99.69,26.1,438.9 +557,1,E06000051,2,58.72,117.9,26.1,483.95 +883,1,E06000051,3,69.9,133.98,26.1,566.51 +1209,1,E06000051,4,81.09,162.93,26.1,630.28 +1535,3,E06000051,1,46.6,88.96,26.1,345.17 +1861,3,E06000051,2,50.34,95.42,26.1,363.93 +2187,3,E06000051,3,60.59,105.05,26.1,423.89 +2513,3,E06000051,4,68.97,128.63,26.1,450.21 +2839,2,E06000051,0,38.95,242.82,18.44,1324.3 +3165,4,E06000051,0,46.12,106.09,18.44,371.32 +3491,6,E06000051,0,38.95,244,18.44,932.37 +3817,8,E06000051,0,46.12,244,18.44,932.37 +4296,5,E06000051,1,53.13,103.98,26.1,397.64 +4517,7,E06000051,1,46.6,103.98,26.1,397.64 +4906,5,E06000051,2,58.72,126.48,26.1,483.95 +5202,7,E06000051,2,50.34,126.48,26.1,483.95 +5537,5,E06000051,3,69.9,148.99,26.1,566.51 +5793,7,E06000051,3,60.59,148.99,26.1,566.51 +6189,5,E06000051,4,81.09,221.88,26.1,847.88 +6454,7,E06000051,4,68.97,221.88,26.1,847.88 +6751,9,E06000051,1,53.13,129.97,26.1,497.07 +7077,9,E06000051,2,58.72,158.09,26.1,604.94 +7403,9,E06000051,3,69.9,186.23,26.1,708.19 +7729,9,E06000051,4,81.09,277.34,26.1,1059.84 +8055,10,E06000051,0,38.95,305,18.44,1165.47 +232,1,E06000039,1,57.79,124.33,26.1,622.76 +558,1,E06000039,2,71.78,147.91,26.1,660.31 +884,1,E06000039,3,82.02,162.93,26.1,720.34 +1210,1,E06000039,4,90.42,180.08,26.1,784.04 +1536,3,E06000039,1,52.2,116.83,26.1,562.73 +1862,3,E06000039,2,63.38,130.77,26.1,513.94 +2188,3,E06000039,3,68.97,151.13,26.1,656.53 +2514,3,E06000039,4,73.64,186.51,26.1,686.53 +2840,2,E06000039,0,61.49,265.21,18.44,1192.28 +3166,4,E06000039,0,48.18,193.32,18.44,709.56 +3492,6,E06000039,0,61.49,374.83,18.44,1431.61 +3818,8,E06000039,0,48.18,374.83,18.44,1431.61 +4026,5,E06000039,1,57.79,155.41,26.1,592.76 +4093,7,E06000039,1,52.2,155.41,26.1,592.76 +4641,5,E06000039,2,71.78,194.01,26.1,742.84 +4788,7,E06000039,2,63.38,194.01,26.1,742.84 +5293,5,E06000039,3,82.02,240.09,26.1,915.39 +5393,7,E06000039,3,68.97,240.09,26.1,915.39 +5978,5,E06000039,4,90.42,340.85,26.1,1301.79 +6082,7,E06000039,4,73.64,340.85,26.1,1301.79 +6752,9,E06000039,1,57.79,194.27,26.1,740.92 +7078,9,E06000039,2,71.78,242.51,26.1,928.52 +7404,9,E06000039,3,82.02,300.12,26.1,1144.22 +7730,9,E06000039,4,90.42,426.06,26.1,1627.19 +8056,10,E06000039,0,61.49,468.55,18.44,1789.55 +233,1,E08000029,1,53.13,99.69,26.1,438.9 +559,1,E08000029,2,58.72,117.9,26.1,483.95 +885,1,E08000029,3,69.9,133.98,26.1,566.51 +1211,1,E08000029,4,81.09,162.93,26.1,630.28 +1537,3,E08000029,1,46.6,88.96,26.1,345.17 +1863,3,E08000029,2,50.34,95.42,26.1,363.93 +2189,3,E08000029,3,60.59,105.05,26.1,423.89 +2515,3,E08000029,4,68.97,128.63,26.1,450.21 +2841,2,E08000029,0,38.95,242.82,18.44,1324.3 +3167,4,E08000029,0,46.12,106.09,18.44,371.32 +3493,6,E08000029,0,38.95,398.42,18.44,1522.36 +3819,8,E08000029,0,46.12,398.42,18.44,1522.36 +4297,5,E08000029,1,53.13,126.48,26.1,483.95 +4518,7,E08000029,1,46.6,126.48,26.1,483.95 +4907,5,E08000029,2,58.72,160.78,26.1,615.23 +5203,7,E08000029,2,50.34,160.78,26.1,615.23 +5538,5,E08000029,3,69.9,194.01,26.1,742.84 +5794,7,E08000029,3,60.59,194.01,26.1,742.84 +6190,5,E08000029,4,81.09,362.28,26.1,1384.32 +6455,7,E08000029,4,68.97,362.28,26.1,1384.32 +6753,9,E08000029,1,53.13,158.09,26.1,604.94 +7079,9,E08000029,2,58.72,200.97,26.1,769.09 +7405,9,E08000029,3,69.9,242.51,26.1,928.52 +7731,9,E08000029,4,81.09,452.87,26.1,1730.47 +8057,10,E08000029,0,38.95,498.02,18.44,1902.99 +309,1,E07000246,1,49.41,108.27,26.1,495.22 +635,1,E07000246,2,55.93,122.19,26.1,510.2 +961,1,E07000246,3,62.45,142.56,26.1,570.26 +1287,1,E07000246,4,71.78,159.7,26.1,686.53 +1613,3,E07000246,1,47.54,90.03,26.1,742.84 +1939,3,E07000246,2,54.99,101.83,26.1,393.89 +2265,3,E07000246,3,62.45,110.39,26.1,446.46 +2591,3,E07000246,4,74.57,131.84,26.1,461.44 +2917,2,E07000246,0,54.33,228.68,18.44,1241.8 +3243,4,E07000246,0,54.33,114.33,18.44,490.95 +3569,6,E07000246,0,54.33,275.83,18.44,1052.03 +3895,8,E07000246,0,54.33,275.83,18.44,1052.03 +3947,7,E07000246,1,47.54,114.68,26.1,435.16 +4231,5,E07000246,1,49.41,114.68,26.1,435.16 +4867,5,E07000246,2,55.93,138.27,26.1,525.21 +5144,7,E07000246,2,54.99,138.27,26.1,525.21 +5498,5,E07000246,3,62.45,166.14,26.1,634.03 +5724,7,E07000246,3,62.45,166.14,26.1,634.03 +6036,5,E07000246,4,71.78,250.82,26.1,956.69 +6436,7,E07000246,4,74.57,250.82,26.1,956.69 +6829,9,E07000246,1,49.41,143.37,26.1,543.94 +7155,9,E07000246,2,55.93,172.84,26.1,656.5 +7481,9,E07000246,3,62.45,207.68,26.1,792.54 +7807,9,E07000246,4,71.78,313.51,26.1,1195.85 +8133,10,E07000246,0,54.33,344.81,18.44,1315.06 +235,1,E07000012,1,54.99,120.05,26.1,525.21 +561,1,E07000012,2,65.24,143.62,26.1,592.76 +887,1,E07000012,3,71.78,157.56,26.1,637.77 +1213,1,E07000012,4,82.02,172.58,26.1,630.28 +1539,3,E07000012,1,50.34,100.76,26.1,465.19 +1865,3,E07000012,2,58.72,118.97,26.1,468.93 +2191,3,E07000012,3,64.31,131.84,26.1,506.45 +2517,3,E07000012,4,71.78,150.06,26.1,562.73 +2843,2,E07000012,0,35.87,223.96,18.44,1464.58 +3169,4,E07000012,0,55.36,134.38,18.44,1101.56 +3495,6,E07000012,0,35.87,351.26,18.44,1340.82 +3821,8,E07000012,0,55.36,351.26,18.44,1340.82 +4150,5,E07000012,1,54.99,148.99,26.1,566.51 +4267,7,E07000012,1,50.34,148.99,26.1,566.51 +4731,5,E07000012,2,65.24,172.58,26.1,656.53 +4993,7,E07000012,2,58.72,172.58,26.1,656.53 +5450,5,E07000012,3,71.78,204.74,26.1,780.33 +5636,7,E07000012,3,64.31,204.74,26.1,780.33 +6160,5,E07000012,4,82.02,319.42,26.1,1219.26 +6298,7,E07000012,4,71.78,319.42,26.1,1219.26 +6755,9,E07000012,1,54.99,186.23,26.1,708.19 +7081,9,E07000012,2,65.24,215.73,26.1,820.72 +7407,9,E07000012,3,71.78,255.92,26.1,975.42 +7733,9,E07000012,4,82.02,399.29,26.1,1524.08 +8059,10,E07000012,0,35.87,439.1,18.44,1676.01 +236,1,E07000039,1,52.2,100.76,26.1,431.41 +562,1,E07000039,2,62.45,115.76,26.1,457.7 +888,1,E07000039,3,68.97,127.56,26.1,487.69 +1214,1,E07000039,4,76.43,159.7,26.1,589.02 +1540,3,E07000039,1,46.6,91.12,26.1,378.95 +1866,3,E07000039,2,53.13,97.54,26.1,382.66 +2192,3,E07000039,3,58.72,105.05,26.1,420.18 +2518,3,E07000039,4,64.31,123.26,26.1,431.41 +2844,2,E07000039,0,51.26,238.1,18.44,1250.1 +3170,4,E07000039,0,49.2,113.15,18.44,429.07 +3496,6,E07000039,0,51.26,274.65,18.44,1052.03 +3822,8,E07000039,0,49.2,274.65,18.44,1052.03 +4345,5,E07000039,1,52.2,103.98,26.1,397.64 +4445,7,E07000039,1,46.6,103.98,26.1,397.64 +5041,5,E07000039,2,62.45,126.48,26.1,483.95 +5181,7,E07000039,2,53.13,126.48,26.1,483.95 +5684,5,E07000039,3,68.97,148.99,26.1,566.51 +5842,7,E07000039,3,58.72,148.99,26.1,566.51 +6259,5,E07000039,4,76.43,249.75,26.1,956.69 +6503,7,E07000039,4,64.31,249.75,26.1,956.69 +6756,9,E07000039,1,52.2,129.97,26.1,497.07 +7082,9,E07000039,2,62.45,158.09,26.1,604.94 +7408,9,E07000039,3,68.97,186.23,26.1,708.19 +7734,9,E07000039,4,76.43,312.18,26.1,1195.85 +8060,10,E07000039,0,51.26,343.33,18.44,1315.06 +237,1,E06000025,1,49.41,108.27,26.1,495.22 +563,1,E06000025,2,55.93,122.19,26.1,510.2 +889,1,E06000025,3,62.45,142.56,26.1,570.26 +1215,1,E06000025,4,71.78,159.7,26.1,686.53 +1541,3,E06000025,1,47.54,90.03,26.1,742.84 +1867,3,E06000025,2,54.99,101.83,26.1,393.89 +2193,3,E06000025,3,62.45,110.39,26.1,446.46 +2519,3,E06000025,4,74.57,131.84,26.1,461.44 +2845,2,E06000025,0,54.33,228.68,18.44,1241.8 +3171,4,E06000025,0,54.33,114.33,18.44,490.95 +3497,6,E06000025,0,54.33,299.41,18.44,1142.82 +3823,8,E06000025,0,54.33,299.41,18.44,1142.82 +3935,7,E06000025,1,47.54,126.48,26.1,483.95 +4219,5,E06000025,1,49.41,126.48,26.1,483.95 +4855,5,E06000025,2,55.93,152.21,26.1,581.49 +5132,7,E06000025,2,54.99,152.21,26.1,581.49 +5486,5,E06000025,3,62.45,188.66,26.1,720.34 +5712,7,E06000025,3,62.45,188.66,26.1,720.34 +6024,5,E06000025,4,71.78,272.26,26.1,1039.19 +6424,7,E06000025,4,74.57,272.26,26.1,1039.19 +6757,9,E06000025,1,49.41,158.09,26.1,604.94 +7083,9,E06000025,2,55.93,190.26,26.1,726.88 +7409,9,E06000025,3,62.45,235.82,26.1,900.41 +7735,9,E06000025,4,71.78,340.33,26.1,1298.96 +8061,10,E06000025,0,54.33,374.27,18.44,1428.49 +238,1,E07000044,1,49.41,108.27,26.1,495.22 +564,1,E07000044,2,55.93,122.19,26.1,510.2 +890,1,E07000044,3,62.45,142.56,26.1,570.26 +1216,1,E07000044,4,71.78,159.7,26.1,686.53 +1542,3,E07000044,1,47.54,90.03,26.1,742.84 +1868,3,E07000044,2,54.99,101.83,26.1,393.89 +2194,3,E07000044,3,62.45,110.39,26.1,446.46 +2520,3,E07000044,4,74.57,131.84,26.1,461.44 +2846,2,E07000044,0,54.33,228.68,18.44,1241.8 +3172,4,E07000044,0,54.33,114.33,18.44,490.95 +3498,6,E07000044,0,54.33,275.83,18.44,1052.03 +3824,8,E07000044,0,54.33,275.83,18.44,1052.03 +3936,7,E07000044,1,47.54,114.68,26.1,438.9 +4220,5,E07000044,1,49.41,114.68,26.1,438.9 +4856,5,E07000044,2,55.93,143.62,26.1,547.72 +5133,7,E07000044,2,54.99,143.62,26.1,547.72 +5487,5,E07000044,3,62.45,182.22,26.1,697.83 +5713,7,E07000044,3,62.45,182.22,26.1,697.83 +6025,5,E07000044,4,71.78,250.82,26.1,956.69 +6425,7,E07000044,4,74.57,250.82,26.1,956.69 +6758,9,E07000044,1,49.41,143.37,26.1,548.7 +7084,9,E07000044,2,55.93,179.53,26.1,684.6 +7410,9,E07000044,3,62.45,227.8,26.1,872.27 +7736,9,E07000044,4,71.78,313.51,26.1,1195.85 +8062,10,E07000044,0,54.33,344.81,18.44,1315.06 +239,1,E07000140,1,52.2,100.76,26.1,431.41 +565,1,E07000140,2,62.45,115.76,26.1,457.7 +891,1,E07000140,3,68.97,127.56,26.1,487.69 +1217,1,E07000140,4,76.43,159.7,26.1,589.02 +1543,3,E07000140,1,46.6,91.12,26.1,378.95 +1869,3,E07000140,2,53.13,97.54,26.1,382.66 +2195,3,E07000140,3,58.72,105.05,26.1,420.18 +2521,3,E07000140,4,64.31,123.26,26.1,431.41 +2847,2,E07000140,0,51.26,238.1,18.44,1250.1 +3173,4,E07000140,0,49.2,113.15,18.44,429.07 +3499,6,E07000140,0,51.26,200.38,18.44,767.38 +3825,8,E07000140,0,49.2,200.38,18.44,767.38 +4346,5,E07000140,1,52.2,100.76,26.1,386.37 +4446,7,E07000140,1,46.6,100.76,26.1,386.37 +5042,5,E07000140,2,62.45,121.11,26.1,461.44 +5182,7,E07000140,2,53.13,121.11,26.1,461.44 +5685,5,E07000140,3,68.97,138.27,26.1,525.21 +5843,7,E07000140,3,58.72,138.27,26.1,525.21 +6260,5,E07000140,4,76.43,182.22,26.1,697.83 +6504,7,E07000140,4,64.31,182.22,26.1,697.83 +6759,9,E07000140,1,52.2,125.95,26.1,483.04 +7085,9,E07000140,2,62.45,151.41,26.1,576.8 +7411,9,E07000140,3,68.97,172.84,26.1,656.5 +7737,9,E07000140,4,76.43,227.8,26.1,872.27 +8063,10,E07000140,0,51.26,250.47,18.44,959.18 +240,1,E07000141,1,52.2,100.76,26.1,431.41 +566,1,E07000141,2,62.45,115.76,26.1,457.7 +892,1,E07000141,3,68.97,127.56,26.1,487.69 +1218,1,E07000141,4,76.43,159.7,26.1,589.02 +1544,3,E07000141,1,46.6,91.12,26.1,378.95 +1870,3,E07000141,2,53.13,97.54,26.1,382.66 +2196,3,E07000141,3,58.72,105.05,26.1,420.18 +2522,3,E07000141,4,64.31,123.26,26.1,431.41 +2848,2,E07000141,0,51.26,238.1,18.44,1250.1 +3174,4,E07000141,0,49.2,113.15,18.44,429.07 +3500,6,E07000141,0,51.26,226.32,18.44,862.26 +3826,8,E07000141,0,49.2,226.32,18.44,862.26 +4347,5,E07000141,1,52.2,98.62,26.1,378.95 +4447,7,E07000141,1,46.6,98.62,26.1,378.95 +5043,5,E07000141,2,62.45,126.48,26.1,483.95 +5183,7,E07000141,2,53.13,126.48,26.1,483.95 +5686,5,E07000141,3,68.97,148.99,26.1,566.51 +5844,7,E07000141,3,58.72,148.99,26.1,566.51 +6261,5,E07000141,4,76.43,205.81,26.1,784.04 +6505,7,E07000141,4,64.31,205.81,26.1,784.04 +6760,9,E07000141,1,52.2,123.26,26.1,473.66 +7086,9,E07000141,2,62.45,158.09,26.1,604.94 +7412,9,E07000141,3,68.97,186.23,26.1,708.19 +7738,9,E07000141,4,76.43,257.26,26.1,980.11 +8064,10,E07000141,0,51.26,282.91,18.44,1077.83 +241,1,E07000031,1,52.2,94.33,26.1,412.65 +567,1,E07000031,2,59.66,108.27,26.1,476.46 +893,1,E07000031,3,66.17,121.11,26.1,513.94 +1219,1,E07000031,4,72.71,135.06,26.1,562.73 +1545,3,E07000031,1,43.8,86.81,26.1,356.41 +1871,3,E07000031,2,54.06,95.42,26.1,401.38 +2197,3,E07000031,3,58.72,106.12,26.1,438.9 +2523,3,E07000031,4,55.93,120.05,26.1,472.71 +2849,2,E07000031,0,55.36,236.93,18.44,1184.02 +3175,4,E07000031,0,32.8,464.43,18.44,2075.22 +3501,6,E07000031,0,55.36,238.1,18.44,911.75 +3827,8,E07000031,0,32.8,238.1,18.44,911.75 +4379,5,E07000031,1,52.2,115.76,26.1,438.9 +4491,7,E07000031,1,43.8,115.76,26.1,438.9 +4949,5,E07000031,2,59.66,143.62,26.1,547.72 +5087,7,E07000031,2,54.06,143.62,26.1,547.72 +5592,5,E07000031,3,66.17,172.58,26.1,656.53 +5767,7,E07000031,3,58.72,172.58,26.1,656.53 +6340,5,E07000031,4,72.71,216.52,26.1,829.12 +6391,7,E07000031,4,55.93,216.52,26.1,829.12 +6761,9,E07000031,1,52.2,144.7,26.1,548.7 +7087,9,E07000031,2,59.66,179.53,26.1,684.6 +7413,9,E07000031,3,66.17,215.73,26.1,820.72 +7739,9,E07000031,4,72.71,270.66,26.1,1036.39 +8065,10,E07000031,0,55.36,297.64,18.44,1139.71 +242,1,E07000149,1,54.99,120.05,26.1,525.21 +568,1,E07000149,2,65.24,143.62,26.1,592.76 +894,1,E07000149,3,71.78,157.56,26.1,637.77 +1220,1,E07000149,4,82.02,172.58,26.1,630.28 +1546,3,E07000149,1,50.34,100.76,26.1,465.19 +1872,3,E07000149,2,58.72,118.97,26.1,468.93 +2198,3,E07000149,3,64.31,131.84,26.1,506.45 +2524,3,E07000149,4,71.78,150.06,26.1,562.73 +2850,2,E07000149,0,35.87,223.96,18.44,1464.58 +3176,4,E07000149,0,55.36,134.38,18.44,1101.56 +3502,6,E07000149,0,35.87,238.1,18.44,911.75 +3828,8,E07000149,0,55.36,238.1,18.44,911.75 +4151,5,E07000149,1,54.99,103.98,26.1,397.64 +4268,7,E07000149,1,50.34,103.98,26.1,397.64 +4732,5,E07000149,2,65.24,126.48,26.1,483.95 +4994,7,E07000149,2,58.72,126.48,26.1,483.95 +5451,5,E07000149,3,71.78,148.99,26.1,566.51 +5637,7,E07000149,3,64.31,148.99,26.1,566.51 +6161,5,E07000149,4,82.02,216.52,26.1,829.12 +6299,7,E07000149,4,71.78,216.52,26.1,829.12 +6762,9,E07000149,1,54.99,129.97,26.1,497.07 +7088,9,E07000149,2,65.24,158.09,26.1,604.94 +7414,9,E07000149,3,71.78,186.23,26.1,708.19 +7740,9,E07000149,4,82.02,270.66,26.1,1036.39 +8066,10,E07000149,0,35.87,297.64,18.44,1139.71 +243,1,E06000062,1,52.2,100.76,26.1,431.41 +569,1,E06000062,2,62.45,115.76,26.1,457.7 +895,1,E06000062,3,68.97,127.56,26.1,487.69 +1221,1,E06000062,4,76.43,159.7,26.1,589.02 +1547,3,E06000062,1,46.6,91.12,26.1,378.95 +1873,3,E06000062,2,53.13,97.54,26.1,382.66 +2199,3,E06000062,3,58.72,105.05,26.1,420.18 +2525,3,E06000062,4,64.31,123.26,26.1,431.41 +2851,2,E06000062,0,51.26,238.1,18.44,1250.1 +3177,4,E06000062,0,49.2,113.15,18.44,429.07 +3503,6,E06000062,0,51.26,325.34,18.44,1241.8 +3829,8,E06000062,0,49.2,325.34,18.44,1241.8 +4348,5,E06000062,1,52.2,126.48,26.1,483.95 +4448,7,E06000062,1,46.6,126.48,26.1,483.95 +5044,5,E06000062,2,62.45,155.41,26.1,596.51 +5184,7,E06000062,2,53.13,155.41,26.1,596.51 +5687,5,E06000062,3,68.97,186.51,26.1,712.78 +5845,7,E06000062,3,58.72,186.51,26.1,712.78 +6262,5,E06000062,4,76.43,295.83,26.1,1129.24 +6506,7,E06000062,4,64.31,295.83,26.1,1129.24 +6763,9,E06000062,1,52.2,158.09,26.1,604.94 +7089,9,E06000062,2,62.45,194.27,26.1,745.64 +7415,9,E06000062,3,68.97,233.14,26.1,891 +7741,9,E06000062,4,76.43,369.81,26.1,1411.55 +8067,10,E06000062,0,51.26,406.66,18.44,1552.29 +244,1,E07000179,1,57.79,124.33,26.1,622.76 +570,1,E07000179,2,71.78,147.91,26.1,660.31 +896,1,E07000179,3,82.02,162.93,26.1,720.34 +1222,1,E07000179,4,90.42,180.08,26.1,784.04 +1548,3,E07000179,1,52.2,116.83,26.1,562.73 +1874,3,E07000179,2,63.38,130.77,26.1,513.94 +2200,3,E07000179,3,68.97,151.13,26.1,656.53 +2526,3,E07000179,4,73.64,186.51,26.1,686.53 +2852,2,E07000179,0,61.49,265.21,18.44,1192.28 +3178,4,E07000179,0,48.18,193.32,18.44,709.56 +3504,6,E07000179,0,61.49,499.79,18.44,1906.07 +3830,8,E07000179,0,48.18,499.79,18.44,1906.07 +4028,5,E07000179,1,57.79,158.63,26.1,604.03 +4095,7,E07000179,1,52.2,158.63,26.1,604.03 +4643,5,E07000179,2,71.78,194.01,26.1,742.84 +4790,7,E07000179,2,63.38,194.01,26.1,742.84 +5295,5,E07000179,3,82.02,284.04,26.1,1084.23 +5395,7,E07000179,3,68.97,284.04,26.1,1084.23 +5980,5,E07000179,4,90.42,454.47,26.1,1733.24 +6084,7,E07000179,4,73.64,454.47,26.1,1733.24 +6764,9,E07000179,1,57.79,198.3,26.1,755.06 +7090,9,E07000179,2,71.78,242.51,26.1,928.52 +7416,9,E07000179,3,82.02,355.06,26.1,1355.24 +7742,9,E07000179,4,90.42,568.09,26.1,2166.54 +8068,10,E07000179,0,61.49,624.74,18.44,2382.63 +245,1,E07000126,1,52.2,94.33,26.1,412.65 +571,1,E07000126,2,59.66,108.27,26.1,476.46 +897,1,E07000126,3,66.17,121.11,26.1,513.94 +1223,1,E07000126,4,72.71,135.06,26.1,562.73 +1549,3,E07000126,1,43.8,86.81,26.1,356.41 +1875,3,E07000126,2,54.06,95.42,26.1,401.38 +2201,3,E07000126,3,58.72,106.12,26.1,438.9 +2527,3,E07000126,4,55.93,120.05,26.1,472.71 +2853,2,E07000126,0,55.36,236.93,18.44,1184.02 +3179,4,E07000126,0,32.8,464.43,18.44,2075.22 +3505,6,E07000126,0,55.36,225.15,18.44,858.13 +3831,8,E07000126,0,32.8,225.15,18.44,858.13 +4380,5,E07000126,1,52.2,102.91,26.1,397.64 +4492,7,E07000126,1,43.8,102.91,26.1,397.64 +4950,5,E07000126,2,59.66,126.48,26.1,483.95 +5088,7,E07000126,2,54.06,126.48,26.1,483.95 +5593,5,E07000126,3,66.17,143.62,26.1,547.72 +5768,7,E07000126,3,58.72,143.62,26.1,547.72 +6341,5,E07000126,4,72.71,204.74,26.1,780.33 +6392,7,E07000126,4,55.93,204.74,26.1,780.33 +6765,9,E07000126,1,52.2,128.63,26.1,497.07 +7091,9,E07000126,2,59.66,158.09,26.1,604.94 +7417,9,E07000126,3,66.17,179.53,26.1,684.6 +7743,9,E07000126,4,72.71,255.92,26.1,975.42 +8069,10,E07000126,0,55.36,281.43,18.44,1072.58 +246,1,E07000189,1,49.41,108.27,26.1,495.22 +572,1,E07000189,2,55.93,122.19,26.1,510.2 +898,1,E07000189,3,62.45,142.56,26.1,570.26 +1224,1,E07000189,4,71.78,159.7,26.1,686.53 +1550,3,E07000189,1,47.54,90.03,26.1,742.84 +1876,3,E07000189,2,54.99,101.83,26.1,393.89 +2202,3,E07000189,3,62.45,110.39,26.1,446.46 +2528,3,E07000189,4,74.57,131.84,26.1,461.44 +2854,2,E07000189,0,54.33,228.68,18.44,1241.8 +3180,4,E07000189,0,54.33,114.33,18.44,490.95 +3506,6,E07000189,0,54.33,300.58,18.44,1146.92 +3832,8,E07000189,0,54.33,300.58,18.44,1146.92 +3937,7,E07000189,1,47.54,103.98,26.1,397.64 +4221,5,E07000189,1,49.41,103.98,26.1,397.64 +4857,5,E07000189,2,55.93,136.13,26.1,521.47 +5134,7,E07000189,2,54.99,136.13,26.1,521.47 +5488,5,E07000189,3,62.45,166.14,26.1,634.03 +5714,7,E07000189,3,62.45,166.14,26.1,634.03 +6026,5,E07000189,4,71.78,273.34,26.1,1042.97 +6426,7,E07000189,4,74.57,273.34,26.1,1042.97 +6766,9,E07000189,1,49.41,129.97,26.1,497.07 +7092,9,E07000189,2,55.93,170.16,26.1,651.81 +7418,9,E07000189,3,62.45,207.68,26.1,792.54 +7744,9,E07000189,4,71.78,341.67,26.1,1303.68 +8070,10,E07000189,0,54.33,375.73,18.44,1433.64 +247,1,E07000196,1,53.13,99.69,26.1,438.9 +573,1,E07000196,2,58.72,117.9,26.1,483.95 +899,1,E07000196,3,69.9,133.98,26.1,566.51 +1225,1,E07000196,4,81.09,162.93,26.1,630.28 +1551,3,E07000196,1,46.6,88.96,26.1,345.17 +1877,3,E07000196,2,50.34,95.42,26.1,363.93 +2203,3,E07000196,3,60.59,105.05,26.1,423.89 +2529,3,E07000196,4,68.97,128.63,26.1,450.21 +2855,2,E07000196,0,38.95,242.82,18.44,1324.3 +3181,4,E07000196,0,46.12,106.09,18.44,371.32 +3507,6,E07000196,0,38.95,252.25,18.44,957.15 +3833,8,E07000196,0,46.12,252.25,18.44,957.15 +4298,5,E07000196,1,53.13,103.98,26.1,397.64 +4519,7,E07000196,1,46.6,103.98,26.1,397.64 +4908,5,E07000196,2,58.72,126.48,26.1,483.95 +5204,7,E07000196,2,50.34,126.48,26.1,483.95 +5539,5,E07000196,3,69.9,148.99,26.1,566.51 +5795,7,E07000196,3,60.59,148.99,26.1,566.51 +6191,5,E07000196,4,81.09,229.37,26.1,870.35 +6456,7,E07000196,4,68.97,229.37,26.1,870.35 +6767,9,E07000196,1,53.13,129.97,26.1,497.07 +7093,9,E07000196,2,58.72,158.09,26.1,604.94 +7419,9,E07000196,3,69.9,186.23,26.1,708.19 +7745,9,E07000196,4,81.09,286.72,26.1,1087.94 +8071,10,E07000196,0,38.95,315.32,18.44,1196.44 +248,1,E08000023,1,51.27,88.96,26.1,345.17 +574,1,E08000023,2,57.79,102.91,26.1,423.89 +900,1,E08000023,3,61.52,114.68,26.1,562.73 +1226,1,E08000023,4,70.84,128.63,26.1,491.47 +1552,3,E08000023,1,42.87,100.76,26.1,371.42 +1878,3,E08000023,2,50.34,91.12,26.1,393.89 +2204,3,E08000023,3,54.06,106.12,26.1,438.9 +2530,3,E08000023,4,56.86,116.83,26.1,423.89 +2856,2,E08000023,0,55.36,234.56,18.44,1179.92 +3182,4,E08000023,0,47.15,251.08,18.44,998.38 +3508,6,E08000023,0,55.36,189.79,18.44,721.98 +3834,8,E08000023,0,47.15,189.79,18.44,721.98 +4460,7,E08000023,1,42.87,93.26,26.1,352.66 +4541,5,E08000023,1,51.27,93.26,26.1,352.66 +5056,5,E08000023,2,57.79,115.76,26.1,438.9 +5107,7,E08000023,2,50.34,115.76,26.1,438.9 +5561,5,E08000023,3,61.52,131.84,26.1,506.45 +5736,7,E08000023,3,54.06,131.84,26.1,506.45 +6360,5,E08000023,4,70.84,172.58,26.1,656.53 +6518,7,E08000023,4,56.86,172.58,26.1,656.53 +6768,9,E08000023,1,42.87,116.56,26.1,440.83 +7094,9,E08000023,2,57.79,144.7,26.1,548.7 +7420,9,E08000023,3,61.52,164.8,26.1,633.05 +7746,9,E08000023,4,70.84,215.73,26.1,820.72 +8072,10,E08000023,0,55.36,237.24,18.44,902.44 +249,1,E06000045,1,57.79,124.33,26.1,622.76 +575,1,E06000045,2,71.78,147.91,26.1,660.31 +901,1,E06000045,3,82.02,162.93,26.1,720.34 +1227,1,E06000045,4,90.42,180.08,26.1,784.04 +1553,3,E06000045,1,52.2,116.83,26.1,562.73 +1879,3,E06000045,2,63.38,130.77,26.1,513.94 +2205,3,E06000045,3,68.97,151.13,26.1,656.53 +2531,3,E06000045,4,73.64,186.51,26.1,686.53 +2857,2,E06000045,0,61.49,265.21,18.44,1192.28 +3183,4,E06000045,0,48.18,193.32,18.44,709.56 +3509,6,E06000045,0,61.49,351.26,18.44,1340.82 +3835,8,E06000045,0,48.18,351.26,18.44,1340.82 +4029,5,E06000045,1,57.79,126.48,26.1,483.95 +4096,7,E06000045,1,52.2,126.48,26.1,483.95 +4644,5,E06000045,2,71.78,172.58,26.1,656.53 +4791,7,E06000045,2,63.38,172.58,26.1,656.53 +5296,5,E06000045,3,82.02,204.74,26.1,780.33 +5396,7,E06000045,3,68.97,204.74,26.1,780.33 +5981,5,E06000045,4,90.42,319.42,26.1,1219.26 +6085,7,E06000045,4,73.64,319.42,26.1,1219.26 +6769,9,E06000045,1,57.79,158.09,26.1,604.94 +7095,9,E06000045,2,71.78,215.73,26.1,820.72 +7421,9,E06000045,3,82.02,255.92,26.1,975.42 +7747,9,E06000045,4,90.42,399.29,26.1,1524.08 +8073,10,E06000045,0,61.49,439.1,18.44,1676.01 +250,1,E06000033,1,54.99,120.05,26.1,525.21 +576,1,E06000033,2,65.24,143.62,26.1,592.76 +902,1,E06000033,3,71.78,157.56,26.1,637.77 +1228,1,E06000033,4,82.02,172.58,26.1,630.28 +1554,3,E06000033,1,50.34,100.76,26.1,465.19 +1880,3,E06000033,2,58.72,118.97,26.1,468.93 +2206,3,E06000033,3,64.31,131.84,26.1,506.45 +2532,3,E06000033,4,71.78,150.06,26.1,562.73 +2858,2,E06000033,0,35.87,223.96,18.44,1464.58 +3184,4,E06000033,0,55.36,134.38,18.44,1101.56 +3510,6,E06000033,0,35.87,300.58,18.44,1146.92 +3836,8,E06000033,0,55.36,300.58,18.44,1146.92 +4152,5,E06000033,1,54.99,126.48,26.1,483.95 +4269,7,E06000033,1,50.34,126.48,26.1,483.95 +4733,5,E06000033,2,65.24,160.78,26.1,615.23 +4995,7,E06000033,2,58.72,160.78,26.1,615.23 +5452,5,E06000033,3,71.78,204.74,26.1,780.33 +5638,7,E06000033,3,64.31,204.74,26.1,780.33 +6162,5,E06000033,4,82.02,273.34,26.1,1042.97 +6300,7,E06000033,4,71.78,273.34,26.1,1042.97 +6770,9,E06000033,1,54.99,158.09,26.1,604.94 +7096,9,E06000033,2,65.24,200.97,26.1,769.09 +7422,9,E06000033,3,71.78,255.92,26.1,975.42 +7748,9,E06000033,4,82.02,341.67,26.1,1303.68 +8074,10,E06000033,0,35.87,375.73,18.44,1433.64 +251,1,E09000028,1,66.17,146.84,26.1,697.83 +577,1,E09000028,2,78.29,158.63,26.1,679.04 +903,1,E09000028,3,84.82,168.29,26.1,799.02 +1229,1,E09000028,4,102.51,188.66,26.1,889.11 +1555,3,E09000028,1,58.72,120.05,26.1,517.69 +1881,3,E09000028,2,64.31,140.42,26.1,619.01 +2207,3,E09000028,3,71.78,160.78,26.1,709.03 +2533,3,E09000028,4,83.89,262.61,26.1,922.88 +2859,2,E09000028,0,69.7,313.55,18.44,1741.04 +3185,4,E09000028,0,59.45,367.77,18.44,1394.47 +3511,6,E09000028,0,69.7,594.11,18.44,2269.12 +3837,8,E09000028,0,59.45,594.11,18.44,2269.12 +3977,5,E09000028,1,66.17,295.83,26.1,1129.24 +4191,7,E09000028,1,58.72,295.83,26.1,1129.24 +4592,5,E09000028,2,78.29,389.09,26.1,1485.65 +4692,7,E09000028,2,64.31,389.09,26.1,1485.65 +5244,5,E09000028,3,84.82,397.66,26.1,1515.64 +5344,7,E09000028,3,71.78,397.66,26.1,1515.64 +5896,7,E09000028,4,83.89,541.3,26.1,2063.39 +5929,5,E09000028,4,102.51,541.3,26.1,2063.39 +6771,9,E09000028,1,66.17,369.81,26.1,1411.55 +7097,9,E09000028,2,78.29,486.38,26.1,1857.07 +7423,9,E09000028,3,84.82,497.09,26.1,1894.55 +7749,9,E09000028,4,102.51,676.64,26.1,2579.19 +8075,10,E09000028,0,69.7,742.61,18.44,2836.37 +252,1,E07000213,1,57.79,124.33,26.1,622.76 +578,1,E07000213,2,71.78,147.91,26.1,660.31 +904,1,E07000213,3,82.02,162.93,26.1,720.34 +1230,1,E07000213,4,90.42,180.08,26.1,784.04 +1556,3,E07000213,1,52.2,116.83,26.1,562.73 +1882,3,E07000213,2,63.38,130.77,26.1,513.94 +2208,3,E07000213,3,68.97,151.13,26.1,656.53 +2534,3,E07000213,4,73.64,186.51,26.1,686.53 +2860,2,E07000213,0,61.49,265.21,18.44,1192.28 +3186,4,E07000213,0,48.18,193.32,18.44,709.56 +3512,6,E07000213,0,61.49,424.35,18.44,1617.21 +3838,8,E07000213,0,48.18,424.35,18.44,1617.21 +4030,5,E07000213,1,57.79,182.22,26.1,697.83 +4097,7,E07000213,1,52.2,182.22,26.1,697.83 +4645,5,E07000213,2,71.78,216.52,26.1,829.12 +4792,7,E07000213,2,63.38,216.52,26.1,829.12 +5297,5,E07000213,3,82.02,284.04,26.1,1084.23 +5397,7,E07000213,3,68.97,284.04,26.1,1084.23 +5982,5,E07000213,4,90.42,385.87,26.1,1470.63 +6086,7,E07000213,4,73.64,385.87,26.1,1470.63 +6772,9,E07000213,1,57.79,227.8,26.1,872.27 +7098,9,E07000213,2,71.78,270.66,26.1,1036.39 +7424,9,E07000213,3,82.02,355.06,26.1,1355.24 +7750,9,E07000213,4,90.42,482.35,26.1,1838.27 +8076,10,E07000213,0,61.49,530.44,18.44,2021.57 +253,1,E07000240,1,54.99,120.05,26.1,525.21 +579,1,E07000240,2,65.24,143.62,26.1,592.76 +905,1,E07000240,3,71.78,157.56,26.1,637.77 +1231,1,E07000240,4,82.02,172.58,26.1,630.28 +1557,3,E07000240,1,50.34,100.76,26.1,465.19 +1883,3,E07000240,2,58.72,118.97,26.1,468.93 +2209,3,E07000240,3,64.31,131.84,26.1,506.45 +2535,3,E07000240,4,71.78,150.06,26.1,562.73 +2861,2,E07000240,0,35.87,223.96,18.44,1464.58 +3187,4,E07000240,0,55.36,134.38,18.44,1101.56 +3513,6,E07000240,0,35.87,648.32,18.44,2471.28 +3839,8,E07000240,0,55.36,648.32,18.44,2471.28 +4153,5,E07000240,1,54.99,172.58,26.1,656.53 +4270,7,E07000240,1,50.34,172.58,26.1,656.53 +4734,5,E07000240,2,65.24,262.61,26.1,997.89 +4996,7,E07000240,2,58.72,262.61,26.1,997.89 +5453,5,E07000240,3,71.78,319.42,26.1,1219.26 +5639,7,E07000240,3,64.31,319.42,26.1,1219.26 +6163,5,E07000240,4,82.02,589.54,26.1,2247.21 +6301,7,E07000240,4,71.78,589.54,26.1,2247.21 +6773,9,E07000240,1,54.99,215.73,26.1,820.72 +7099,9,E07000240,2,65.24,328.26,26.1,1247.4 +7425,9,E07000240,3,71.78,399.29,26.1,1524.08 +7751,9,E07000240,4,82.02,736.91,26.1,2808.96 +8077,10,E07000240,0,35.87,810.39,18.44,3089.07 +255,1,E08000013,1,52.2,94.33,26.1,412.65 +581,1,E08000013,2,59.66,108.27,26.1,476.46 +907,1,E08000013,3,66.17,121.11,26.1,513.94 +1233,1,E08000013,4,72.71,135.06,26.1,562.73 +1559,3,E08000013,1,43.8,86.81,26.1,356.41 +1885,3,E08000013,2,54.06,95.42,26.1,401.38 +2211,3,E08000013,3,58.72,106.12,26.1,438.9 +2537,3,E08000013,4,55.93,120.05,26.1,472.71 +2863,2,E08000013,0,55.36,236.93,18.44,1184.02 +3189,4,E08000013,0,32.8,464.43,18.44,2075.22 +3515,6,E08000013,0,55.36,213.35,18.44,816.83 +3841,8,E08000013,0,32.8,213.35,18.44,816.83 +4381,5,E08000013,1,52.2,98.62,26.1,378.95 +4493,7,E08000013,1,43.8,98.62,26.1,378.95 +4951,5,E08000013,2,59.66,112.54,26.1,427.67 +5089,7,E08000013,2,54.06,112.54,26.1,427.67 +5594,5,E08000013,3,66.17,136.13,26.1,521.47 +5769,7,E08000013,3,58.72,136.13,26.1,521.47 +6342,5,E08000013,4,72.71,194.01,26.1,742.84 +6393,7,E08000013,4,55.93,194.01,26.1,742.84 +6775,9,E08000013,1,52.2,123.26,26.1,473.66 +7101,9,E08000013,2,59.66,140.68,26.1,534.59 +7427,9,E08000013,3,66.17,170.16,26.1,651.81 +7753,9,E08000013,4,72.71,242.51,26.1,928.52 +8079,10,E08000013,0,55.36,266.69,18.44,1021.09 +256,1,E07000197,1,53.13,99.69,26.1,438.9 +582,1,E07000197,2,58.72,117.9,26.1,483.95 +908,1,E07000197,3,69.9,133.98,26.1,566.51 +1234,1,E07000197,4,81.09,162.93,26.1,630.28 +1560,3,E07000197,1,46.6,88.96,26.1,345.17 +1886,3,E07000197,2,50.34,95.42,26.1,363.93 +2212,3,E07000197,3,60.59,105.05,26.1,423.89 +2538,3,E07000197,4,68.97,128.63,26.1,450.21 +2864,2,E07000197,0,38.95,242.82,18.44,1324.3 +3190,4,E07000197,0,46.12,106.09,18.44,371.32 +3516,6,E07000197,0,38.95,226.32,18.44,862.26 +3842,8,E07000197,0,46.12,226.32,18.44,862.26 +4299,5,E07000197,1,53.13,103.98,26.1,397.64 +4520,7,E07000197,1,46.6,103.98,26.1,397.64 +4909,5,E07000197,2,58.72,126.48,26.1,483.95 +5205,7,E07000197,2,50.34,126.48,26.1,483.95 +5540,5,E07000197,3,69.9,148.99,26.1,566.51 +5796,7,E07000197,3,60.59,148.99,26.1,566.51 +6192,5,E07000197,4,81.09,205.81,26.1,784.04 +6457,7,E07000197,4,68.97,205.81,26.1,784.04 +6776,9,E07000197,1,53.13,129.97,26.1,497.07 +7102,9,E07000197,2,58.72,158.09,26.1,604.94 +7428,9,E07000197,3,69.9,186.23,26.1,708.19 +7754,9,E07000197,4,81.09,257.26,26.1,980.11 +8080,10,E07000197,0,38.95,282.91,18.44,1077.83 +257,1,E07000198,1,53.13,99.69,26.1,438.9 +583,1,E07000198,2,58.72,117.9,26.1,483.95 +909,1,E07000198,3,69.9,133.98,26.1,566.51 +1235,1,E07000198,4,81.09,162.93,26.1,630.28 +1561,3,E07000198,1,46.6,88.96,26.1,345.17 +1887,3,E07000198,2,50.34,95.42,26.1,363.93 +2213,3,E07000198,3,60.59,105.05,26.1,423.89 +2539,3,E07000198,4,68.97,128.63,26.1,450.21 +2865,2,E07000198,0,38.95,242.82,18.44,1324.3 +3191,4,E07000198,0,46.12,106.09,18.44,371.32 +3517,6,E07000198,0,38.95,203.92,18.44,779.73 +3843,8,E07000198,0,46.12,203.92,18.44,779.73 +4300,5,E07000198,1,53.13,92.19,26.1,348.92 +4521,7,E07000198,1,46.6,92.19,26.1,348.92 +4910,5,E07000198,2,58.72,110.39,26.1,420.18 +5206,7,E07000198,2,50.34,110.39,26.1,420.18 +5541,5,E07000198,3,69.9,136.13,26.1,521.47 +5797,7,E07000198,3,60.59,136.13,26.1,521.47 +6193,5,E07000198,4,81.09,185.44,26.1,709.03 +6458,7,E07000198,4,68.97,185.44,26.1,709.03 +6777,9,E07000198,1,53.13,115.24,26.1,436.1 +7103,9,E07000198,2,58.72,138.01,26.1,525.21 +7429,9,E07000198,3,69.9,170.16,26.1,651.81 +7755,9,E07000198,4,81.09,231.8,26.1,886.31 +8081,10,E07000198,0,38.95,254.89,18.44,974.65 +258,1,E07000243,1,54.99,120.05,26.1,525.21 +584,1,E07000243,2,65.24,143.62,26.1,592.76 +910,1,E07000243,3,71.78,157.56,26.1,637.77 +1236,1,E07000243,4,82.02,172.58,26.1,630.28 +1562,3,E07000243,1,50.34,100.76,26.1,465.19 +1888,3,E07000243,2,58.72,118.97,26.1,468.93 +2214,3,E07000243,3,64.31,131.84,26.1,506.45 +2540,3,E07000243,4,71.78,150.06,26.1,562.73 +2866,2,E07000243,0,35.87,223.96,18.44,1464.58 +3192,4,E07000243,0,55.36,134.38,18.44,1101.56 +3518,6,E07000243,0,35.87,325.34,18.44,1241.8 +3844,8,E07000243,0,55.36,325.34,18.44,1241.8 +4155,5,E07000243,1,54.99,132.91,26.1,510.2 +4272,7,E07000243,1,50.34,132.91,26.1,510.2 +4736,5,E07000243,2,65.24,172.58,26.1,656.53 +4998,7,E07000243,2,58.72,172.58,26.1,656.53 +5455,5,E07000243,3,71.78,183.29,26.1,701.58 +5641,7,E07000243,3,64.31,183.29,26.1,701.58 +6165,5,E07000243,4,82.02,295.83,26.1,1129.24 +6303,7,E07000243,4,71.78,295.83,26.1,1129.24 +6778,9,E07000243,1,54.99,166.13,26.1,637.74 +7104,9,E07000243,2,65.24,215.73,26.1,820.72 +7430,9,E07000243,3,71.78,229.13,26.1,876.89 +7756,9,E07000243,4,82.02,369.81,26.1,1411.55 +8082,10,E07000243,0,35.87,406.66,18.44,1552.29 +259,1,E08000007,1,52.2,94.33,26.1,412.65 +585,1,E08000007,2,59.66,108.27,26.1,476.46 +911,1,E08000007,3,66.17,121.11,26.1,513.94 +1237,1,E08000007,4,72.71,135.06,26.1,562.73 +1563,3,E08000007,1,43.8,86.81,26.1,356.41 +1889,3,E08000007,2,54.06,95.42,26.1,401.38 +2215,3,E08000007,3,58.72,106.12,26.1,438.9 +2541,3,E08000007,4,55.93,120.05,26.1,472.71 +2867,2,E08000007,0,55.36,236.93,18.44,1184.02 +3193,4,E08000007,0,32.8,464.43,18.44,2075.22 +3519,6,E08000007,0,55.36,252.25,18.44,957.15 +3845,8,E08000007,0,32.8,252.25,18.44,957.15 +4382,5,E08000007,1,52.2,114.68,26.1,435.16 +4494,7,E08000007,1,43.8,114.68,26.1,435.16 +4952,5,E08000007,2,59.66,136.13,26.1,521.47 +5090,7,E08000007,2,54.06,136.13,26.1,521.47 +5595,5,E08000007,3,66.17,160.78,26.1,615.23 +5770,7,E08000007,3,58.72,160.78,26.1,615.23 +6343,5,E08000007,4,72.71,229.37,26.1,870.35 +6394,7,E08000007,4,55.93,229.37,26.1,870.35 +6779,9,E08000007,1,52.2,143.37,26.1,543.94 +7105,9,E08000007,2,59.66,170.16,26.1,651.81 +7431,9,E08000007,3,66.17,200.97,26.1,769.09 +7757,9,E08000007,4,72.71,286.72,26.1,1087.94 +8083,10,E08000007,0,55.36,315.32,18.44,1196.44 +260,1,E06000004,1,51.27,88.96,26.1,345.17 +586,1,E06000004,2,57.79,102.91,26.1,423.89 +912,1,E06000004,3,61.52,114.68,26.1,562.73 +1238,1,E06000004,4,70.84,128.63,26.1,491.47 +1564,3,E06000004,1,42.87,100.76,26.1,371.42 +1890,3,E06000004,2,50.34,91.12,26.1,393.89 +2216,3,E06000004,3,54.06,106.12,26.1,438.9 +2542,3,E06000004,4,56.86,116.83,26.1,423.89 +2868,2,E06000004,0,55.36,234.56,18.44,1179.92 +3194,4,E06000004,0,47.15,251.08,18.44,998.38 +3520,6,E06000004,0,55.36,213.35,18.44,816.83 +3846,8,E06000004,0,47.15,213.35,18.44,816.83 +4461,7,E06000004,1,42.87,95.42,26.1,363.93 +4542,5,E06000004,1,51.27,95.42,26.1,363.93 +5057,5,E06000004,2,57.79,126.48,26.1,483.95 +5108,7,E06000004,2,50.34,126.48,26.1,483.95 +5562,5,E06000004,3,61.52,138.27,26.1,525.21 +5737,7,E06000004,3,54.06,138.27,26.1,525.21 +6361,5,E06000004,4,70.84,194.01,26.1,742.84 +6519,7,E06000004,4,56.86,194.01,26.1,742.84 +6780,9,E06000004,1,42.87,119.25,26.1,454.9 +7106,9,E06000004,2,57.79,158.09,26.1,604.94 +7432,9,E06000004,3,61.52,172.84,26.1,656.5 +7758,9,E06000004,4,70.84,242.51,26.1,928.52 +8084,10,E06000004,0,55.36,266.69,18.44,1021.09 +261,1,E06000021,1,53.13,99.69,26.1,438.9 +587,1,E06000021,2,58.72,117.9,26.1,483.95 +913,1,E06000021,3,69.9,133.98,26.1,566.51 +1239,1,E06000021,4,81.09,162.93,26.1,630.28 +1565,3,E06000021,1,46.6,88.96,26.1,345.17 +1891,3,E06000021,2,50.34,95.42,26.1,363.93 +2217,3,E06000021,3,60.59,105.05,26.1,423.89 +2543,3,E06000021,4,68.97,128.63,26.1,450.21 +2869,2,E06000021,0,38.95,242.82,18.44,1324.3 +3195,4,E06000021,0,46.12,106.09,18.44,371.32 +3521,6,E06000021,0,38.95,199.2,18.44,763.28 +3847,8,E06000021,0,46.12,199.2,18.44,763.28 +4301,5,E06000021,1,53.13,92.19,26.1,348.92 +4522,7,E06000021,1,46.6,92.19,26.1,348.92 +4911,5,E06000021,2,58.72,103.98,26.1,397.64 +5207,7,E06000021,2,50.34,103.98,26.1,397.64 +5542,5,E06000021,3,69.9,131.84,26.1,506.45 +5798,7,E06000021,3,60.59,131.84,26.1,506.45 +6194,5,E06000021,4,81.09,182.22,26.1,694.05 +6459,7,E06000021,4,68.97,182.22,26.1,694.05 +6781,9,E06000021,1,53.13,115.24,26.1,436.1 +7107,9,E06000021,2,58.72,129.97,26.1,497.07 +7433,9,E06000021,3,69.9,164.8,26.1,633.05 +7759,9,E06000021,4,81.09,227.8,26.1,867.58 +8085,10,E06000021,0,38.95,249,18.44,954.07 +262,1,E07000221,1,53.13,99.69,26.1,438.9 +588,1,E07000221,2,58.72,117.9,26.1,483.95 +914,1,E07000221,3,69.9,133.98,26.1,566.51 +1240,1,E07000221,4,81.09,162.93,26.1,630.28 +1566,3,E07000221,1,46.6,88.96,26.1,345.17 +1892,3,E07000221,2,50.34,95.42,26.1,363.93 +2218,3,E07000221,3,60.59,105.05,26.1,423.89 +2544,3,E07000221,4,68.97,128.63,26.1,450.21 +2870,2,E07000221,0,38.95,242.82,18.44,1324.3 +3196,4,E07000221,0,46.12,106.09,18.44,371.32 +3522,6,E07000221,0,38.95,373.65,18.44,1427.48 +3848,8,E07000221,0,46.12,373.65,18.44,1427.48 +4302,5,E07000221,1,53.13,128.63,26.1,495.22 +4523,7,E07000221,1,46.6,128.63,26.1,495.22 +4912,5,E07000221,2,58.72,158.63,26.1,611.52 +5208,7,E07000221,2,50.34,158.63,26.1,611.52 +5543,5,E07000221,3,69.9,204.74,26.1,780.33 +5799,7,E07000221,3,60.59,204.74,26.1,780.33 +6195,5,E07000221,4,81.09,339.77,26.1,1298.05 +6460,7,E07000221,4,68.97,339.77,26.1,1298.05 +6782,9,E07000221,1,53.13,160.78,26.1,619.01 +7108,9,E07000221,2,58.72,198.3,26.1,764.33 +7434,9,E07000221,3,69.9,255.92,26.1,975.42 +7760,9,E07000221,4,81.09,424.73,26.1,1622.57 +8086,10,E07000221,0,38.95,467.08,18.44,1784.37 +263,1,E07000082,1,49.41,108.27,26.1,495.22 +589,1,E07000082,2,55.93,122.19,26.1,510.2 +915,1,E07000082,3,62.45,142.56,26.1,570.26 +1241,1,E07000082,4,71.78,159.7,26.1,686.53 +1567,3,E07000082,1,47.54,90.03,26.1,742.84 +1893,3,E07000082,2,54.99,101.83,26.1,393.89 +2219,3,E07000082,3,62.45,110.39,26.1,446.46 +2545,3,E07000082,4,74.57,131.84,26.1,461.44 +2871,2,E07000082,0,54.33,228.68,18.44,1241.8 +3197,4,E07000082,0,54.33,114.33,18.44,490.95 +3523,6,E07000082,0,54.33,351.26,18.44,1340.82 +3849,8,E07000082,0,54.33,351.26,18.44,1340.82 +3938,7,E07000082,1,47.54,113.61,26.1,431.41 +4222,5,E07000082,1,49.41,113.61,26.1,431.41 +4858,5,E07000082,2,55.93,148.99,26.1,566.51 +5135,7,E07000082,2,54.99,148.99,26.1,566.51 +5489,5,E07000082,3,62.45,183.29,26.1,701.58 +5715,7,E07000082,3,62.45,183.29,26.1,701.58 +6027,5,E07000082,4,71.78,319.42,26.1,1219.26 +6427,7,E07000082,4,74.57,319.42,26.1,1219.26 +6783,9,E07000082,1,49.41,142.02,26.1,539.32 +7109,9,E07000082,2,55.93,186.23,26.1,708.19 +7435,9,E07000082,3,62.45,229.13,26.1,876.89 +7761,9,E07000082,4,71.78,399.29,26.1,1524.08 +8087,10,E07000082,0,54.33,439.1,18.44,1676.01 +265,1,E08000024,1,51.27,88.96,26.1,345.17 +591,1,E08000024,2,57.79,102.91,26.1,423.89 +917,1,E08000024,3,61.52,114.68,26.1,562.73 +1243,1,E08000024,4,70.84,128.63,26.1,491.47 +1569,3,E08000024,1,42.87,100.76,26.1,371.42 +1895,3,E08000024,2,50.34,91.12,26.1,393.89 +2221,3,E08000024,3,54.06,106.12,26.1,438.9 +2547,3,E08000024,4,56.86,116.83,26.1,423.89 +2873,2,E08000024,0,55.36,234.56,18.44,1179.92 +3199,4,E08000024,0,47.15,251.08,18.44,998.38 +3525,6,E08000024,0,55.36,200.38,18.44,767.38 +3851,8,E08000024,0,47.15,200.38,18.44,767.38 +4462,7,E08000024,1,42.87,103.98,26.1,397.64 +4543,5,E08000024,1,51.27,103.98,26.1,397.64 +5058,5,E08000024,2,57.79,126.48,26.1,483.95 +5109,7,E08000024,2,50.34,126.48,26.1,483.95 +5563,5,E08000024,3,61.52,136.13,26.1,521.47 +5738,7,E08000024,3,54.06,136.13,26.1,521.47 +6362,5,E08000024,4,70.84,182.22,26.1,697.83 +6520,7,E08000024,4,56.86,182.22,26.1,697.83 +6785,9,E08000024,1,42.87,129.97,26.1,497.07 +7111,9,E08000024,2,57.79,158.09,26.1,604.94 +7437,9,E08000024,3,61.52,170.16,26.1,651.81 +7763,9,E08000024,4,70.84,227.8,26.1,872.27 +8089,10,E08000024,0,55.36,250.47,18.44,959.18 +266,1,E07000214,1,57.79,124.33,26.1,622.76 +592,1,E07000214,2,71.78,147.91,26.1,660.31 +918,1,E07000214,3,82.02,162.93,26.1,720.34 +1244,1,E07000214,4,90.42,180.08,26.1,784.04 +1570,3,E07000214,1,52.2,116.83,26.1,562.73 +1896,3,E07000214,2,63.38,130.77,26.1,513.94 +2222,3,E07000214,3,68.97,151.13,26.1,656.53 +2548,3,E07000214,4,73.64,186.51,26.1,686.53 +2874,2,E07000214,0,61.49,265.21,18.44,1192.28 +3200,4,E07000214,0,48.18,193.32,18.44,709.56 +3526,6,E07000214,0,61.49,511.57,18.44,1955.63 +3852,8,E07000214,0,48.18,511.57,18.44,1955.63 +4031,5,E07000214,1,57.79,160.78,26.1,615.23 +4098,7,E07000214,1,52.2,160.78,26.1,615.23 +4646,5,E07000214,2,71.78,211.17,26.1,806.54 +4793,7,E07000214,2,63.38,211.17,26.1,806.54 +5298,5,E07000214,3,82.02,284.04,26.1,1084.23 +5398,7,E07000214,3,68.97,284.04,26.1,1084.23 +5983,5,E07000214,4,90.42,465.19,26.1,1778.28 +6087,7,E07000214,4,73.64,465.19,26.1,1778.28 +6786,9,E07000214,1,57.79,200.97,26.1,769.09 +7112,9,E07000214,2,71.78,263.95,26.1,1008.25 +7438,9,E07000214,3,82.02,355.06,26.1,1355.24 +7764,9,E07000214,4,90.42,581.5,26.1,2222.82 +8090,10,E07000214,0,61.49,639.47,18.44,2444.44 +267,1,E09000029,1,66.17,146.84,26.1,697.83 +593,1,E09000029,2,78.29,158.63,26.1,679.04 +919,1,E09000029,3,84.82,168.29,26.1,799.02 +1245,1,E09000029,4,102.51,188.66,26.1,889.11 +1571,3,E09000029,1,58.72,120.05,26.1,517.69 +1897,3,E09000029,2,64.31,140.42,26.1,619.01 +2223,3,E09000029,3,71.78,160.78,26.1,709.03 +2549,3,E09000029,4,83.89,262.61,26.1,922.88 +2875,2,E09000029,0,69.7,313.55,18.44,1741.04 +3201,4,E09000029,0,59.45,367.77,18.44,1394.47 +3527,6,E09000029,0,69.7,524.54,18.44,2000.99 +3853,8,E09000029,0,59.45,524.54,18.44,2000.99 +3978,5,E09000029,1,66.17,172.58,26.1,656.53 +4192,7,E09000029,1,58.72,172.58,26.1,656.53 +4593,5,E09000029,2,78.29,216.52,26.1,829.12 +4693,7,E09000029,2,64.31,216.52,26.1,829.12 +5245,5,E09000029,3,84.82,295.83,26.1,1129.24 +5345,7,E09000029,3,71.78,295.83,26.1,1129.24 +5897,7,E09000029,4,83.89,476.98,26.1,1819.51 +5930,5,E09000029,4,102.51,476.98,26.1,1819.51 +6787,9,E09000029,1,66.17,215.73,26.1,820.72 +7113,9,E09000029,2,78.29,270.66,26.1,1036.39 +7439,9,E09000029,3,84.82,369.81,26.1,1411.55 +7765,9,E09000029,4,102.51,596.23,26.1,2274.44 +8091,10,E09000029,0,69.7,655.68,18.44,2501.17 +268,1,E07000113,1,57.79,124.33,26.1,622.76 +594,1,E07000113,2,71.78,147.91,26.1,660.31 +920,1,E07000113,3,82.02,162.93,26.1,720.34 +1246,1,E07000113,4,90.42,180.08,26.1,784.04 +1572,3,E07000113,1,52.2,116.83,26.1,562.73 +1898,3,E07000113,2,63.38,130.77,26.1,513.94 +2224,3,E07000113,3,68.97,151.13,26.1,656.53 +2550,3,E07000113,4,73.64,186.51,26.1,686.53 +2876,2,E07000113,0,61.49,265.21,18.44,1192.28 +3202,4,E07000113,0,48.18,193.32,18.44,709.56 +3528,6,E07000113,0,61.49,251.08,18.44,957.15 +3854,8,E07000113,0,48.18,251.08,18.44,957.15 +4032,5,E07000113,1,57.79,123.26,26.1,468.93 +4099,7,E07000113,1,52.2,123.26,26.1,468.93 +4647,5,E07000113,2,71.78,148.99,26.1,566.51 +4794,7,E07000113,2,63.38,148.99,26.1,566.51 +5299,5,E07000113,3,82.02,172.58,26.1,656.53 +5399,7,E07000113,3,68.97,172.58,26.1,656.53 +5984,5,E07000113,4,90.42,228.29,26.1,870.35 +6088,7,E07000113,4,73.64,228.29,26.1,870.35 +6788,9,E07000113,1,57.79,154.09,26.1,586.18 +7114,9,E07000113,2,71.78,186.23,26.1,708.19 +7440,9,E07000113,3,82.02,215.73,26.1,820.72 +7766,9,E07000113,4,90.42,285.39,26.1,1087.94 +8092,10,E07000113,0,61.49,313.84,18.44,1196.44 +269,1,E06000030,1,49.41,108.27,26.1,495.22 +595,1,E06000030,2,55.93,122.19,26.1,510.2 +921,1,E06000030,3,62.45,142.56,26.1,570.26 +1247,1,E06000030,4,71.78,159.7,26.1,686.53 +1573,3,E06000030,1,47.54,90.03,26.1,742.84 +1899,3,E06000030,2,54.99,101.83,26.1,393.89 +2225,3,E06000030,3,62.45,110.39,26.1,446.46 +2551,3,E06000030,4,74.57,131.84,26.1,461.44 +2877,2,E06000030,0,54.33,228.68,18.44,1241.8 +3203,4,E06000030,0,54.33,114.33,18.44,490.95 +3529,6,E06000030,0,54.33,264.04,18.44,1006.67 +3855,8,E06000030,0,54.33,264.04,18.44,1006.67 +3939,7,E06000030,1,47.54,114.68,26.1,435.16 +4223,5,E06000030,1,49.41,114.68,26.1,435.16 +4859,5,E06000030,2,55.93,136.13,26.1,521.47 +5136,7,E06000030,2,54.99,136.13,26.1,521.47 +5490,5,E06000030,3,62.45,172.58,26.1,656.53 +5716,7,E06000030,3,62.45,172.58,26.1,656.53 +6028,5,E06000030,4,71.78,240.09,26.1,915.39 +6428,7,E06000030,4,74.57,240.09,26.1,915.39 +6789,9,E06000030,1,49.41,143.37,26.1,543.94 +7115,9,E06000030,2,55.93,170.16,26.1,651.81 +7441,9,E06000030,3,62.45,215.73,26.1,820.72 +7767,9,E06000030,4,71.78,300.12,26.1,1144.22 +8093,10,E06000030,0,54.33,330.05,18.44,1258.36 +270,1,E08000008,1,52.2,94.33,26.1,412.65 +596,1,E08000008,2,59.66,108.27,26.1,476.46 +922,1,E08000008,3,66.17,121.11,26.1,513.94 +1248,1,E08000008,4,72.71,135.06,26.1,562.73 +1574,3,E08000008,1,43.8,86.81,26.1,356.41 +1900,3,E08000008,2,54.06,95.42,26.1,401.38 +2226,3,E08000008,3,58.72,106.12,26.1,438.9 +2552,3,E08000008,4,55.93,120.05,26.1,472.71 +2878,2,E08000008,0,55.36,236.93,18.44,1184.02 +3204,4,E08000008,0,32.8,464.43,18.44,2075.22 +3530,6,E08000008,0,55.36,201.56,18.44,771.47 +3856,8,E08000008,0,32.8,201.56,18.44,771.47 +4383,5,E08000008,1,52.2,103.98,26.1,397.64 +4495,7,E08000008,1,43.8,103.98,26.1,397.64 +4953,5,E08000008,2,59.66,114.68,26.1,435.16 +5091,7,E08000008,2,54.06,114.68,26.1,435.16 +5596,5,E08000008,3,66.17,138.27,26.1,525.21 +5771,7,E08000008,3,58.72,138.27,26.1,525.21 +6344,5,E08000008,4,72.71,183.29,26.1,701.58 +6395,7,E08000008,4,55.93,183.29,26.1,701.58 +6790,9,E08000008,1,52.2,129.97,26.1,497.07 +7116,9,E08000008,2,59.66,143.37,26.1,543.94 +7442,9,E08000008,3,66.17,172.84,26.1,656.5 +7768,9,E08000008,4,72.71,229.13,26.1,876.89 +8094,10,E08000008,0,55.36,251.95,18.44,964.39 +271,1,E07000199,1,53.13,99.69,26.1,438.9 +597,1,E07000199,2,58.72,117.9,26.1,483.95 +923,1,E07000199,3,69.9,133.98,26.1,566.51 +1249,1,E07000199,4,81.09,162.93,26.1,630.28 +1575,3,E07000199,1,46.6,88.96,26.1,345.17 +1901,3,E07000199,2,50.34,95.42,26.1,363.93 +2227,3,E07000199,3,60.59,105.05,26.1,423.89 +2553,3,E07000199,4,68.97,128.63,26.1,450.21 +2879,2,E07000199,0,38.95,242.82,18.44,1324.3 +3205,4,E07000199,0,46.12,106.09,18.44,371.32 +3531,6,E07000199,0,38.95,225.15,18.44,858.13 +3857,8,E07000199,0,46.12,225.15,18.44,858.13 +4303,5,E07000199,1,53.13,103.98,26.1,397.64 +4524,7,E07000199,1,46.6,103.98,26.1,397.64 +4913,5,E07000199,2,58.72,126.48,26.1,483.95 +5209,7,E07000199,2,50.34,126.48,26.1,483.95 +5544,5,E07000199,3,69.9,148.99,26.1,566.51 +5800,7,E07000199,3,60.59,148.99,26.1,566.51 +6196,5,E07000199,4,81.09,204.74,26.1,780.33 +6461,7,E07000199,4,68.97,204.74,26.1,780.33 +6791,9,E07000199,1,53.13,129.97,26.1,497.07 +7117,9,E07000199,2,58.72,158.09,26.1,604.94 +7443,9,E07000199,3,69.9,186.23,26.1,708.19 +7769,9,E07000199,4,81.09,255.92,26.1,975.42 +8095,10,E07000199,0,38.95,281.43,18.44,1072.58 +272,1,E07000215,1,57.79,124.33,26.1,622.76 +598,1,E07000215,2,71.78,147.91,26.1,660.31 +924,1,E07000215,3,82.02,162.93,26.1,720.34 +1250,1,E07000215,4,90.42,180.08,26.1,784.04 +1576,3,E07000215,1,52.2,116.83,26.1,562.73 +1902,3,E07000215,2,63.38,130.77,26.1,513.94 +2228,3,E07000215,3,68.97,151.13,26.1,656.53 +2554,3,E07000215,4,73.64,186.51,26.1,686.53 +2880,2,E07000215,0,61.49,265.21,18.44,1192.28 +3206,4,E07000215,0,48.18,193.32,18.44,709.56 +3532,6,E07000215,0,61.49,735.54,18.44,2805.46 +3858,8,E07000215,0,48.18,735.54,18.44,2805.46 +4033,5,E07000215,1,57.79,166.14,26.1,634.03 +4100,7,E07000215,1,52.2,166.14,26.1,634.03 +4648,5,E07000215,2,71.78,211.17,26.1,806.54 +4795,7,E07000215,2,63.38,211.17,26.1,806.54 +5300,5,E07000215,3,82.02,307.63,26.1,1174.22 +5400,7,E07000215,3,68.97,307.63,26.1,1174.22 +5985,5,E07000215,4,90.42,668.85,26.1,2551.08 +6089,7,E07000215,4,73.64,668.85,26.1,2551.08 +6792,9,E07000215,1,57.79,207.68,26.1,792.54 +7118,9,E07000215,2,71.78,263.95,26.1,1008.25 +7444,9,E07000215,3,82.02,384.53,26.1,1467.76 +7770,9,E07000215,4,90.42,836.07,26.1,3188.82 +8096,10,E07000215,0,61.49,919.43,18.44,3506.83 +274,1,E07000045,1,49.41,108.27,26.1,495.22 +600,1,E07000045,2,55.93,122.19,26.1,510.2 +926,1,E07000045,3,62.45,142.56,26.1,570.26 +1252,1,E07000045,4,71.78,159.7,26.1,686.53 +1578,3,E07000045,1,47.54,90.03,26.1,742.84 +1904,3,E07000045,2,54.99,101.83,26.1,393.89 +2230,3,E07000045,3,62.45,110.39,26.1,446.46 +2556,3,E07000045,4,74.57,131.84,26.1,461.44 +2882,2,E07000045,0,54.33,228.68,18.44,1241.8 +3208,4,E07000045,0,54.33,114.33,18.44,490.95 +3534,6,E07000045,0,54.33,275.83,18.44,1052.03 +3860,8,E07000045,0,54.33,275.83,18.44,1052.03 +3941,7,E07000045,1,47.54,114.68,26.1,435.16 +4225,5,E07000045,1,49.41,114.68,26.1,435.16 +4861,5,E07000045,2,55.93,148.99,26.1,566.51 +5138,7,E07000045,2,54.99,148.99,26.1,566.51 +5492,5,E07000045,3,62.45,177.93,26.1,675.29 +5718,7,E07000045,3,62.45,177.93,26.1,675.29 +6030,5,E07000045,4,71.78,250.82,26.1,956.69 +6430,7,E07000045,4,74.57,250.82,26.1,956.69 +6794,9,E07000045,1,49.41,143.37,26.1,543.94 +7120,9,E07000045,2,55.93,186.23,26.1,708.19 +7446,9,E07000045,3,62.45,222.43,26.1,844.13 +7772,9,E07000045,4,71.78,313.51,26.1,1195.85 +8098,10,E07000045,0,54.33,344.81,18.44,1315.06 +275,1,E06000020,1,53.13,99.69,26.1,438.9 +601,1,E06000020,2,58.72,117.9,26.1,483.95 +927,1,E06000020,3,69.9,133.98,26.1,566.51 +1253,1,E06000020,4,81.09,162.93,26.1,630.28 +1579,3,E06000020,1,46.6,88.96,26.1,345.17 +1905,3,E06000020,2,50.34,95.42,26.1,363.93 +2231,3,E06000020,3,60.59,105.05,26.1,423.89 +2557,3,E06000020,4,68.97,128.63,26.1,450.21 +2883,2,E06000020,0,38.95,242.82,18.44,1324.3 +3209,4,E06000020,0,46.12,106.09,18.44,371.32 +3535,6,E06000020,0,38.95,226.32,18.44,862.26 +3861,8,E06000020,0,46.12,226.32,18.44,862.26 +4304,5,E06000020,1,53.13,103.98,26.1,397.64 +4525,7,E06000020,1,46.6,103.98,26.1,397.64 +4914,5,E06000020,2,58.72,126.48,26.1,483.95 +5210,7,E06000020,2,50.34,126.48,26.1,483.95 +5545,5,E06000020,3,69.9,143.62,26.1,547.72 +5801,7,E06000020,3,60.59,143.62,26.1,547.72 +6197,5,E06000020,4,81.09,205.81,26.1,784.04 +6462,7,E06000020,4,68.97,205.81,26.1,784.04 +6795,9,E06000020,1,53.13,129.97,26.1,497.07 +7121,9,E06000020,2,58.72,158.09,26.1,604.94 +7447,9,E06000020,3,69.9,179.53,26.1,684.6 +7773,9,E06000020,4,81.09,257.26,26.1,980.11 +8099,10,E06000020,0,38.95,282.91,18.44,1077.83 +276,1,E07000076,1,54.99,120.05,26.1,525.21 +602,1,E07000076,2,65.24,143.62,26.1,592.76 +928,1,E07000076,3,71.78,157.56,26.1,637.77 +1254,1,E07000076,4,82.02,172.58,26.1,630.28 +1580,3,E07000076,1,50.34,100.76,26.1,465.19 +1906,3,E07000076,2,58.72,118.97,26.1,468.93 +2232,3,E07000076,3,64.31,131.84,26.1,506.45 +2558,3,E07000076,4,71.78,150.06,26.1,562.73 +2884,2,E07000076,0,35.87,223.96,18.44,1464.58 +3210,4,E07000076,0,55.36,134.38,18.44,1101.56 +3536,6,E07000076,0,35.87,248.71,18.44,953.05 +3862,8,E07000076,0,55.36,248.71,18.44,953.05 +4157,5,E07000076,1,54.99,112.54,26.1,427.67 +4274,7,E07000076,1,50.34,112.54,26.1,427.67 +4738,5,E07000076,2,65.24,145.77,26.1,551.46 +5000,7,E07000076,2,58.72,145.77,26.1,551.46 +5457,5,E07000076,3,71.78,172.58,26.1,656.53 +5643,7,E07000076,3,64.31,172.58,26.1,656.53 +6167,5,E07000076,4,82.02,228.29,26.1,866.6 +6305,7,E07000076,4,71.78,228.29,26.1,866.6 +6796,9,E07000076,1,54.99,140.68,26.1,534.59 +7122,9,E07000076,2,65.24,182.21,26.1,689.33 +7448,9,E07000076,3,71.78,215.73,26.1,820.72 +7774,9,E07000076,4,82.02,285.39,26.1,1083.25 +8100,10,E07000076,0,35.87,310.9,18.44,1191.33 +277,1,E07000093,1,57.79,124.33,26.1,622.76 +603,1,E07000093,2,71.78,147.91,26.1,660.31 +929,1,E07000093,3,82.02,162.93,26.1,720.34 +1255,1,E07000093,4,90.42,180.08,26.1,784.04 +1581,3,E07000093,1,52.2,116.83,26.1,562.73 +1907,3,E07000093,2,63.38,130.77,26.1,513.94 +2233,3,E07000093,3,68.97,151.13,26.1,656.53 +2559,3,E07000093,4,73.64,186.51,26.1,686.53 +2885,2,E07000093,0,61.49,265.21,18.44,1192.28 +3211,4,E07000093,0,48.18,193.32,18.44,709.56 +3537,6,E07000093,0,61.49,424.35,18.44,1621.38 +3863,8,E07000093,0,48.18,424.35,18.44,1621.38 +4034,5,E07000093,1,57.79,138.27,26.1,525.21 +4101,7,E07000093,1,52.2,138.27,26.1,525.21 +4649,5,E07000093,2,71.78,182.22,26.1,697.83 +4796,7,E07000093,2,63.38,182.22,26.1,697.83 +5301,5,E07000093,3,82.02,216.52,26.1,829.12 +5401,7,E07000093,3,68.97,216.52,26.1,829.12 +5986,5,E07000093,4,90.42,385.87,26.1,1474.38 +6090,7,E07000093,4,73.64,385.87,26.1,1474.38 +6797,9,E07000093,1,57.79,172.84,26.1,656.5 +7123,9,E07000093,2,71.78,227.8,26.1,872.27 +7449,9,E07000093,3,82.02,270.66,26.1,1036.39 +7775,9,E07000093,4,90.42,482.35,26.1,1842.96 +8101,10,E07000093,0,61.49,530.44,18.44,2026.71 +278,1,E07000083,1,49.41,108.27,26.1,495.22 +604,1,E07000083,2,55.93,122.19,26.1,510.2 +930,1,E07000083,3,62.45,142.56,26.1,570.26 +1256,1,E07000083,4,71.78,159.7,26.1,686.53 +1582,3,E07000083,1,47.54,90.03,26.1,742.84 +1908,3,E07000083,2,54.99,101.83,26.1,393.89 +2234,3,E07000083,3,62.45,110.39,26.1,446.46 +2560,3,E07000083,4,74.57,131.84,26.1,461.44 +2886,2,E07000083,0,54.33,228.68,18.44,1241.8 +3212,4,E07000083,0,54.33,114.33,18.44,490.95 +3538,6,E07000083,0,54.33,351.26,18.44,1340.82 +3864,8,E07000083,0,54.33,351.26,18.44,1340.82 +3942,7,E07000083,1,47.54,114.68,26.1,435.16 +4226,5,E07000083,1,49.41,114.68,26.1,435.16 +4862,5,E07000083,2,55.93,148.99,26.1,566.51 +5139,7,E07000083,2,54.99,148.99,26.1,566.51 +5493,5,E07000083,3,62.45,177.93,26.1,675.29 +5719,7,E07000083,3,62.45,177.93,26.1,675.29 +6031,5,E07000083,4,71.78,319.42,26.1,1219.26 +6431,7,E07000083,4,74.57,319.42,26.1,1219.26 +6798,9,E07000083,1,49.41,143.37,26.1,543.94 +7124,9,E07000083,2,55.93,186.23,26.1,708.19 +7450,9,E07000083,3,62.45,222.43,26.1,844.13 +7776,9,E07000083,4,71.78,399.29,26.1,1524.08 +8102,10,E07000083,0,54.33,439.1,18.44,1676.01 +279,1,E07000114,1,57.79,124.33,26.1,622.76 +605,1,E07000114,2,71.78,147.91,26.1,660.31 +931,1,E07000114,3,82.02,162.93,26.1,720.34 +1257,1,E07000114,4,90.42,180.08,26.1,784.04 +1583,3,E07000114,1,52.2,116.83,26.1,562.73 +1909,3,E07000114,2,63.38,130.77,26.1,513.94 +2235,3,E07000114,3,68.97,151.13,26.1,656.53 +2561,3,E07000114,4,73.64,186.51,26.1,686.53 +2887,2,E07000114,0,61.49,265.21,18.44,1192.28 +3213,4,E07000114,0,48.18,193.32,18.44,709.56 +3539,6,E07000114,0,61.49,248.71,18.44,953.05 +3865,8,E07000114,0,48.18,248.71,18.44,953.05 +4035,5,E07000114,1,57.79,98.62,26.1,378.95 +4102,7,E07000114,1,52.2,98.62,26.1,378.95 +4650,5,E07000114,2,71.78,132.91,26.1,510.2 +4797,7,E07000114,2,63.38,132.91,26.1,510.2 +5302,5,E07000114,3,82.02,166.14,26.1,634.03 +5402,7,E07000114,3,68.97,166.14,26.1,634.03 +5987,5,E07000114,4,90.42,228.29,26.1,866.6 +6091,7,E07000114,4,73.64,228.29,26.1,866.6 +6799,9,E07000114,1,57.79,123.26,26.1,473.66 +7125,9,E07000114,2,71.78,166.13,26.1,637.74 +7451,9,E07000114,3,82.02,207.68,26.1,792.54 +7777,9,E07000114,4,90.42,285.39,26.1,1083.25 +8103,10,E07000114,0,61.49,310.9,18.44,1191.33 +281,1,E07000102,1,54.99,120.05,26.1,525.21 +607,1,E07000102,2,65.24,143.62,26.1,592.76 +933,1,E07000102,3,71.78,157.56,26.1,637.77 +1259,1,E07000102,4,82.02,172.58,26.1,630.28 +1585,3,E07000102,1,50.34,100.76,26.1,465.19 +1911,3,E07000102,2,58.72,118.97,26.1,468.93 +2237,3,E07000102,3,64.31,131.84,26.1,506.45 +2563,3,E07000102,4,71.78,150.06,26.1,562.73 +2889,2,E07000102,0,35.87,223.96,18.44,1464.58 +3215,4,E07000102,0,55.36,134.38,18.44,1101.56 +3541,6,E07000102,0,35.87,623.56,18.44,2376.4 +3867,8,E07000102,0,55.36,623.56,18.44,2376.4 +4158,5,E07000102,1,54.99,172.58,26.1,656.53 +4275,7,E07000102,1,50.34,172.58,26.1,656.53 +4739,5,E07000102,2,65.24,262.61,26.1,997.89 +5001,7,E07000102,2,58.72,262.61,26.1,997.89 +5458,5,E07000102,3,71.78,386.95,26.1,1474.38 +5644,7,E07000102,3,64.31,386.95,26.1,1474.38 +6168,5,E07000102,4,82.02,567.02,26.1,2160.9 +6306,7,E07000102,4,71.78,567.02,26.1,2160.9 +6801,9,E07000102,1,54.99,215.73,26.1,820.72 +7127,9,E07000102,2,65.24,328.26,26.1,1247.4 +7453,9,E07000102,3,71.78,483.69,26.1,1842.96 +7779,9,E07000102,4,82.02,708.78,26.1,2701.13 +8105,10,E07000102,0,35.87,779.44,18.44,2970.49 +282,1,E06000034,1,54.99,120.05,26.1,525.21 +608,1,E06000034,2,65.24,143.62,26.1,592.76 +934,1,E06000034,3,71.78,157.56,26.1,637.77 +1260,1,E06000034,4,82.02,172.58,26.1,630.28 +1586,3,E06000034,1,50.34,100.76,26.1,465.19 +1912,3,E06000034,2,58.72,118.97,26.1,468.93 +2238,3,E06000034,3,64.31,131.84,26.1,506.45 +2564,3,E06000034,4,71.78,150.06,26.1,562.73 +2890,2,E06000034,0,35.87,223.96,18.44,1464.58 +3216,4,E06000034,0,55.36,134.38,18.44,1101.56 +3542,6,E06000034,0,35.87,325.34,18.44,1241.8 +3868,8,E06000034,0,55.36,325.34,18.44,1241.8 +4159,5,E06000034,1,54.99,136.13,26.1,521.47 +4276,7,E06000034,1,50.34,136.13,26.1,521.47 +4740,5,E06000034,2,65.24,172.58,26.1,656.53 +5002,7,E06000034,2,58.72,172.58,26.1,656.53 +5459,5,E06000034,3,71.78,205.81,26.1,784.04 +5645,7,E06000034,3,64.31,205.81,26.1,784.04 +6169,5,E06000034,4,82.02,295.83,26.1,1129.24 +6307,7,E06000034,4,71.78,295.83,26.1,1129.24 +6802,9,E06000034,1,54.99,170.16,26.1,651.81 +7128,9,E06000034,2,65.24,215.73,26.1,820.72 +7454,9,E06000034,3,71.78,257.26,26.1,980.11 +7780,9,E06000034,4,82.02,369.81,26.1,1411.55 +8106,10,E06000034,0,35.87,406.66,18.44,1552.29 +283,1,E07000115,1,57.79,124.33,26.1,622.76 +609,1,E07000115,2,71.78,147.91,26.1,660.31 +935,1,E07000115,3,82.02,162.93,26.1,720.34 +1261,1,E07000115,4,90.42,180.08,26.1,784.04 +1587,3,E07000115,1,52.2,116.83,26.1,562.73 +1913,3,E07000115,2,63.38,130.77,26.1,513.94 +2239,3,E07000115,3,68.97,151.13,26.1,656.53 +2565,3,E07000115,4,73.64,186.51,26.1,686.53 +2891,2,E07000115,0,61.49,265.21,18.44,1192.28 +3217,4,E07000115,0,48.18,193.32,18.44,709.56 +3543,6,E07000115,0,61.49,486.82,18.44,1856.54 +3869,8,E07000115,0,48.18,486.82,18.44,1856.54 +4037,5,E07000115,1,57.79,138.27,26.1,525.21 +4104,7,E07000115,1,52.2,138.27,26.1,525.21 +4652,5,E07000115,2,71.78,182.22,26.1,697.83 +4799,7,E07000115,2,63.38,182.22,26.1,697.83 +5304,5,E07000115,3,82.02,209.03,26.1,799.02 +5404,7,E07000115,3,68.97,209.03,26.1,799.02 +5989,5,E07000115,4,90.42,442.67,26.1,1688.23 +6093,7,E07000115,4,73.64,442.67,26.1,1688.23 +6803,9,E07000115,1,57.79,172.84,26.1,656.5 +7129,9,E07000115,2,71.78,227.8,26.1,872.27 +7455,9,E07000115,3,82.02,261.26,26.1,998.87 +7781,9,E07000115,4,90.42,553.35,26.1,2110.29 +8107,10,E07000115,0,61.49,608.53,18.44,2320.68 +284,1,E06000027,1,49.41,108.27,26.1,495.22 +610,1,E06000027,2,55.93,122.19,26.1,510.2 +936,1,E06000027,3,62.45,142.56,26.1,570.26 +1262,1,E06000027,4,71.78,159.7,26.1,686.53 +1588,3,E06000027,1,47.54,90.03,26.1,742.84 +1914,3,E06000027,2,54.99,101.83,26.1,393.89 +2240,3,E06000027,3,62.45,110.39,26.1,446.46 +2566,3,E06000027,4,74.57,131.84,26.1,461.44 +2892,2,E06000027,0,54.33,228.68,18.44,1241.8 +3218,4,E06000027,0,54.33,114.33,18.44,490.95 +3544,6,E06000027,0,54.33,241.64,18.44,924.14 +3870,8,E06000027,0,54.33,241.64,18.44,924.14 +3943,7,E06000027,1,47.54,110.39,26.1,420.18 +4227,5,E06000027,1,49.41,110.39,26.1,420.18 +4863,5,E06000027,2,55.93,141.49,26.1,540.23 +5140,7,E06000027,2,54.99,141.49,26.1,540.23 +5494,5,E06000027,3,62.45,166.14,26.1,634.03 +5720,7,E06000027,3,62.45,166.14,26.1,634.03 +6032,5,E06000027,4,71.78,219.73,26.1,840.32 +6432,7,E06000027,4,74.57,219.73,26.1,840.32 +6804,9,E06000027,1,49.41,138.01,26.1,525.21 +7130,9,E06000027,2,55.93,176.86,26.1,675.26 +7456,9,E06000027,3,62.45,207.68,26.1,792.54 +7782,9,E06000027,4,71.78,274.67,26.1,1050.42 +8108,10,E06000027,0,54.33,302.04,18.44,1155.18 +285,1,E07000046,1,49.41,108.27,26.1,495.22 +611,1,E07000046,2,55.93,122.19,26.1,510.2 +937,1,E07000046,3,62.45,142.56,26.1,570.26 +1263,1,E07000046,4,71.78,159.7,26.1,686.53 +1589,3,E07000046,1,47.54,90.03,26.1,742.84 +1915,3,E07000046,2,54.99,101.83,26.1,393.89 +2241,3,E07000046,3,62.45,110.39,26.1,446.46 +2567,3,E07000046,4,74.57,131.84,26.1,461.44 +2893,2,E07000046,0,54.33,228.68,18.44,1241.8 +3219,4,E07000046,0,54.33,114.33,18.44,490.95 +3545,6,E07000046,0,54.33,213.35,18.44,816.83 +3871,8,E07000046,0,54.33,213.35,18.44,816.83 +3944,7,E07000046,1,47.54,98.62,26.1,378.95 +4228,5,E07000046,1,49.41,98.62,26.1,378.95 +4864,5,E07000046,2,55.93,124.33,26.1,472.71 +5141,7,E07000046,2,54.99,124.33,26.1,472.71 +5495,5,E07000046,3,62.45,148.99,26.1,566.51 +5721,7,E07000046,3,62.45,148.99,26.1,566.51 +6033,5,E07000046,4,71.78,194.01,26.1,742.84 +6433,7,E07000046,4,74.57,194.01,26.1,742.84 +6805,9,E07000046,1,49.41,123.26,26.1,473.66 +7131,9,E07000046,2,55.93,155.41,26.1,590.87 +7457,9,E07000046,3,62.45,186.23,26.1,708.19 +7783,9,E07000046,4,71.78,242.51,26.1,928.52 +8109,10,E07000046,0,54.33,266.69,18.44,1021.09 +286,1,E09000030,1,66.17,146.84,26.1,697.83 +612,1,E09000030,2,78.29,158.63,26.1,679.04 +938,1,E09000030,3,84.82,168.29,26.1,799.02 +1264,1,E09000030,4,102.51,188.66,26.1,889.11 +1590,3,E09000030,1,58.72,120.05,26.1,517.69 +1916,3,E09000030,2,64.31,140.42,26.1,619.01 +2242,3,E09000030,3,71.78,160.78,26.1,709.03 +2568,3,E09000030,4,83.89,262.61,26.1,922.88 +2894,2,E09000030,0,69.7,313.55,18.44,1741.04 +3220,4,E09000030,0,59.45,367.77,18.44,1394.47 +3546,6,E09000030,0,69.7,594.11,18.44,2269.12 +3872,8,E09000030,0,59.45,594.11,18.44,2269.12 +3979,5,E09000030,1,66.17,320.49,26.1,1222.97 +4193,7,E09000030,1,58.72,320.49,26.1,1222.97 +4594,5,E09000030,2,78.29,393.38,26.1,1500.66 +4694,7,E09000030,2,64.31,393.38,26.1,1500.66 +5246,5,E09000030,3,84.82,476.98,26.1,1819.51 +5346,7,E09000030,3,71.78,476.98,26.1,1819.51 +5898,7,E09000030,4,83.89,541.3,26.1,2063.39 +5931,5,E09000030,4,102.51,541.3,26.1,2063.39 +6806,9,E09000030,1,66.17,400.6,26.1,1528.8 +7132,9,E09000030,2,78.29,491.71,26.1,1875.83 +7458,9,E09000030,3,84.82,596.23,26.1,2274.44 +7784,9,E09000030,4,102.51,676.64,26.1,2579.19 +8110,10,E09000030,0,69.7,742.61,18.44,2836.37 +287,1,E08000009,1,52.2,94.33,26.1,412.65 +613,1,E08000009,2,59.66,108.27,26.1,476.46 +939,1,E08000009,3,66.17,121.11,26.1,513.94 +1265,1,E08000009,4,72.71,135.06,26.1,562.73 +1591,3,E08000009,1,43.8,86.81,26.1,356.41 +1917,3,E08000009,2,54.06,95.42,26.1,401.38 +2243,3,E08000009,3,58.72,106.12,26.1,438.9 +2569,3,E08000009,4,55.93,120.05,26.1,472.71 +2895,2,E08000009,0,55.36,236.93,18.44,1184.02 +3221,4,E08000009,0,32.8,464.43,18.44,2075.22 +3547,6,E08000009,0,55.36,398.42,18.44,1522.36 +3873,8,E08000009,0,32.8,398.42,18.44,1522.36 +4384,5,E08000009,1,52.2,125.4,26.1,476.46 +4496,7,E08000009,1,43.8,125.4,26.1,476.46 +4954,5,E08000009,2,59.66,158.63,26.1,611.52 +5092,7,E08000009,2,54.06,158.63,26.1,611.52 +5597,5,E08000009,3,66.17,194.01,26.1,742.84 +5772,7,E08000009,3,58.72,194.01,26.1,742.84 +6345,5,E08000009,4,72.71,362.28,26.1,1384.32 +6396,7,E08000009,4,55.93,362.28,26.1,1384.32 +6807,9,E08000009,1,52.2,156.77,26.1,595.56 +7133,9,E08000009,2,59.66,198.3,26.1,764.33 +7459,9,E08000009,3,66.17,242.51,26.1,928.52 +7785,9,E08000009,4,72.71,452.87,26.1,1730.47 +8111,10,E08000009,0,55.36,498.02,18.44,1902.99 +288,1,E07000116,1,57.79,124.33,26.1,622.76 +614,1,E07000116,2,71.78,147.91,26.1,660.31 +940,1,E07000116,3,82.02,162.93,26.1,720.34 +1266,1,E07000116,4,90.42,180.08,26.1,784.04 +1592,3,E07000116,1,52.2,116.83,26.1,562.73 +1918,3,E07000116,2,63.38,130.77,26.1,513.94 +2244,3,E07000116,3,68.97,151.13,26.1,656.53 +2570,3,E07000116,4,73.64,186.51,26.1,686.53 +2896,2,E07000116,0,61.49,265.21,18.44,1192.28 +3222,4,E07000116,0,48.18,193.32,18.44,709.56 +3548,6,E07000116,0,61.49,587.03,18.44,2236.12 +3874,8,E07000116,0,48.18,587.03,18.44,2236.12 +4038,5,E07000116,1,57.79,153.28,26.1,589.02 +4105,7,E07000116,1,52.2,153.28,26.1,589.02 +4653,5,E07000116,2,71.78,204.74,26.1,780.33 +4800,7,E07000116,2,63.38,204.74,26.1,780.33 +5305,5,E07000116,3,82.02,284.04,26.1,1084.23 +5405,7,E07000116,3,68.97,284.04,26.1,1084.23 +5990,5,E07000116,4,90.42,533.8,26.1,2033.29 +6094,7,E07000116,4,73.64,533.8,26.1,2033.29 +6808,9,E07000116,1,57.79,191.6,26.1,736.3 +7134,9,E07000116,2,71.78,255.92,26.1,975.42 +7460,9,E07000116,3,82.02,355.06,26.1,1355.24 +7786,9,E07000116,4,90.42,667.24,26.1,2541.63 +8112,10,E07000116,0,61.49,733.79,18.44,2795.1 +289,1,E07000077,1,54.99,120.05,26.1,525.21 +615,1,E07000077,2,65.24,143.62,26.1,592.76 +941,1,E07000077,3,71.78,157.56,26.1,637.77 +1267,1,E07000077,4,82.02,172.58,26.1,630.28 +1593,3,E07000077,1,50.34,100.76,26.1,465.19 +1919,3,E07000077,2,58.72,118.97,26.1,468.93 +2245,3,E07000077,3,64.31,131.84,26.1,506.45 +2571,3,E07000077,4,71.78,150.06,26.1,562.73 +2897,2,E07000077,0,35.87,223.96,18.44,1464.58 +3223,4,E07000077,0,55.36,134.38,18.44,1101.56 +3549,6,E07000077,0,35.87,437.32,18.44,1666.77 +3875,8,E07000077,0,55.36,437.32,18.44,1666.77 +4160,5,E07000077,1,54.99,136.13,26.1,521.47 +4277,7,E07000077,1,50.34,136.13,26.1,521.47 +4741,5,E07000077,2,65.24,177.93,26.1,675.29 +5003,7,E07000077,2,58.72,177.93,26.1,675.29 +5460,5,E07000077,3,71.78,221.88,26.1,847.88 +5646,7,E07000077,3,64.31,221.88,26.1,847.88 +6170,5,E07000077,4,82.02,397.66,26.1,1515.64 +6308,7,E07000077,4,71.78,397.66,26.1,1515.64 +6809,9,E07000077,1,54.99,170.16,26.1,651.81 +7135,9,E07000077,2,65.24,222.43,26.1,844.13 +7461,9,E07000077,3,71.78,277.34,26.1,1059.84 +7787,9,E07000077,4,82.02,497.09,26.1,1894.55 +8113,10,E07000077,0,35.87,546.66,18.44,2083.48 +290,1,E07000180,1,57.79,124.33,26.1,622.76 +616,1,E07000180,2,71.78,147.91,26.1,660.31 +942,1,E07000180,3,82.02,162.93,26.1,720.34 +1268,1,E07000180,4,90.42,180.08,26.1,784.04 +1594,3,E07000180,1,52.2,116.83,26.1,562.73 +1920,3,E07000180,2,63.38,130.77,26.1,513.94 +2246,3,E07000180,3,68.97,151.13,26.1,656.53 +2572,3,E07000180,4,73.64,186.51,26.1,686.53 +2898,2,E07000180,0,61.49,265.21,18.44,1192.28 +3224,4,E07000180,0,48.18,193.32,18.44,709.56 +3550,6,E07000180,0,61.49,437.32,18.44,1666.77 +3876,8,E07000180,0,48.18,437.32,18.44,1666.77 +4039,5,E07000180,1,57.79,160.78,26.1,615.23 +4106,7,E07000180,1,52.2,160.78,26.1,615.23 +4654,5,E07000180,2,71.78,194.01,26.1,742.84 +4801,7,E07000180,2,63.38,194.01,26.1,742.84 +5306,5,E07000180,3,82.02,240.09,26.1,915.39 +5406,7,E07000180,3,68.97,240.09,26.1,915.39 +5991,5,E07000180,4,90.42,397.66,26.1,1515.64 +6095,7,E07000180,4,73.64,397.66,26.1,1515.64 +6810,9,E07000180,1,57.79,200.97,26.1,769.09 +7136,9,E07000180,2,71.78,242.51,26.1,928.52 +7462,9,E07000180,3,82.02,300.12,26.1,1144.22 +7788,9,E07000180,4,90.42,497.09,26.1,1894.55 +8114,10,E07000180,0,61.49,546.66,18.44,2083.48 +291,1,E08000036,1,51.27,92.19,26.1,401.38 +617,1,E08000036,2,58.72,109.33,26.1,495.22 +943,1,E08000036,3,63.38,121.11,26.1,570.26 +1269,1,E08000036,4,73.64,145.77,26.1,630.28 +1595,3,E08000036,1,46.6,82.54,26.1,326.41 +1921,3,E08000036,2,53.13,113.61,26.1,510.2 +2247,3,E08000036,3,56.86,105.05,26.1,401.38 +2573,3,E08000036,4,64.31,122.19,26.1,619.01 +2899,2,E08000036,0,52.28,232.2,18.44,1118.04 +3225,4,E08000036,0,51.26,159.13,18.44,660.1 +3551,6,E08000036,0,52.28,213.35,18.44,816.83 +3877,8,E08000036,0,51.26,213.35,18.44,816.83 +4409,5,E08000036,1,51.27,110.39,26.1,420.18 +4563,7,E08000036,1,46.6,110.39,26.1,420.18 +4831,7,E08000036,2,53.13,126.48,26.1,483.95 +4889,5,E08000036,2,58.72,126.48,26.1,483.95 +5520,5,E08000036,3,63.38,138.27,26.1,525.21 +5867,7,E08000036,3,56.86,138.27,26.1,525.21 +6125,5,E08000036,4,73.64,194.01,26.1,742.84 +6223,7,E08000036,4,64.31,194.01,26.1,742.84 +6811,9,E08000036,1,51.27,138.01,26.1,525.21 +7137,9,E08000036,2,53.13,158.09,26.1,604.94 +7463,9,E08000036,3,63.38,172.84,26.1,656.5 +7789,9,E08000036,4,73.64,242.51,26.1,928.52 +8115,10,E08000036,0,52.28,266.69,18.44,1021.09 +292,1,E08000030,1,53.13,99.69,26.1,438.9 +618,1,E08000030,2,58.72,117.9,26.1,483.95 +944,1,E08000030,3,69.9,133.98,26.1,566.51 +1270,1,E08000030,4,81.09,162.93,26.1,630.28 +1596,3,E08000030,1,46.6,88.96,26.1,345.17 +1922,3,E08000030,2,50.34,95.42,26.1,363.93 +2248,3,E08000030,3,60.59,105.05,26.1,423.89 +2574,3,E08000030,4,68.97,128.63,26.1,450.21 +2900,2,E08000030,0,38.95,242.82,18.44,1324.3 +3226,4,E08000030,0,46.12,106.09,18.44,371.32 +3552,6,E08000030,0,38.95,213.35,18.44,816.83 +3878,8,E08000030,0,46.12,213.35,18.44,816.83 +4305,5,E08000030,1,53.13,98.62,26.1,378.95 +4526,7,E08000030,1,46.6,98.62,26.1,378.95 +4915,5,E08000030,2,58.72,121.11,26.1,461.44 +5211,7,E08000030,2,50.34,121.11,26.1,461.44 +5546,5,E08000030,3,69.9,131.84,26.1,506.45 +5802,7,E08000030,3,60.59,131.84,26.1,506.45 +6198,5,E08000030,4,81.09,194.01,26.1,742.84 +6463,7,E08000030,4,68.97,194.01,26.1,742.84 +6812,9,E08000030,1,53.13,123.26,26.1,473.66 +7138,9,E08000030,2,58.72,151.41,26.1,576.8 +7464,9,E08000030,3,69.9,164.8,26.1,633.05 +7790,9,E08000030,4,81.09,242.51,26.1,928.52 +8116,10,E08000030,0,38.95,266.69,18.44,1021.09 +293,1,E09000031,1,66.17,146.84,26.1,697.83 +619,1,E09000031,2,78.29,158.63,26.1,679.04 +945,1,E09000031,3,84.82,168.29,26.1,799.02 +1271,1,E09000031,4,102.51,188.66,26.1,889.11 +1597,3,E09000031,1,58.72,120.05,26.1,517.69 +1923,3,E09000031,2,64.31,140.42,26.1,619.01 +2249,3,E09000031,3,71.78,160.78,26.1,709.03 +2575,3,E09000031,4,83.89,262.61,26.1,922.88 +2901,2,E09000031,0,69.7,313.55,18.44,1741.04 +3227,4,E09000031,0,59.45,367.77,18.44,1394.47 +3553,6,E09000031,0,69.7,394.88,18.44,1509.97 +3879,8,E09000031,0,59.45,394.88,18.44,1509.97 +3980,5,E09000031,1,66.17,188.66,26.1,720.34 +4194,7,E09000031,1,58.72,188.66,26.1,720.34 +4595,5,E09000031,2,78.29,240.09,26.1,915.39 +4695,7,E09000031,2,64.31,240.09,26.1,915.39 +5247,5,E09000031,3,84.82,295.83,26.1,1129.24 +5347,7,E09000031,3,71.78,295.83,26.1,1129.24 +5899,7,E09000031,4,83.89,360.15,26.1,1373.09 +5932,5,E09000031,4,102.51,360.15,26.1,1373.09 +6813,9,E09000031,1,66.17,235.82,26.1,900.41 +7139,9,E09000031,2,78.29,300.12,26.1,1144.22 +7465,9,E09000031,3,84.82,369.81,26.1,1411.55 +7791,9,E09000031,4,102.51,450.18,26.1,1716.4 +8117,10,E09000031,0,69.7,493.61,18.44,1887.48 +294,1,E09000032,1,66.17,146.84,26.1,697.83 +620,1,E09000032,2,78.29,158.63,26.1,679.04 +946,1,E09000032,3,84.82,168.29,26.1,799.02 +1272,1,E09000032,4,102.51,188.66,26.1,889.11 +1598,3,E09000032,1,58.72,120.05,26.1,517.69 +1924,3,E09000032,2,64.31,140.42,26.1,619.01 +2250,3,E09000032,3,71.78,160.78,26.1,709.03 +2576,3,E09000032,4,83.89,262.61,26.1,922.88 +2902,2,E09000032,0,69.7,313.55,18.44,1741.04 +3228,4,E09000032,0,59.45,367.77,18.44,1394.47 +3554,6,E09000032,0,69.7,744.99,18.44,2846.73 +3880,8,E09000032,0,59.45,744.99,18.44,2846.73 +3981,5,E09000032,1,66.17,295.83,26.1,1129.24 +4195,7,E09000032,1,58.72,295.83,26.1,1129.24 +4596,5,E09000032,2,78.29,368.73,26.1,1406.83 +4696,7,E09000032,2,64.31,368.73,26.1,1406.83 +5248,5,E09000032,3,84.82,457.7,26.1,1748.18 +5348,7,E09000032,3,71.78,457.7,26.1,1748.18 +5900,7,E09000032,4,83.89,677.43,26.1,2588.57 +5933,5,E09000032,4,102.51,677.43,26.1,2588.57 +6814,9,E09000032,1,66.17,369.81,26.1,1411.55 +7140,9,E09000032,2,78.29,460.91,26.1,1758.58 +7466,9,E09000032,3,84.82,572.11,26.1,2185.26 +7792,9,E09000032,4,102.51,846.77,26.1,3235.72 +8118,10,E09000032,0,69.7,931.22,18.44,3558.42 +295,1,E06000007,1,52.2,94.33,26.1,412.65 +621,1,E06000007,2,59.66,108.27,26.1,476.46 +947,1,E06000007,3,66.17,121.11,26.1,513.94 +1273,1,E06000007,4,72.71,135.06,26.1,562.73 +1599,3,E06000007,1,43.8,86.81,26.1,356.41 +1925,3,E06000007,2,54.06,95.42,26.1,401.38 +2251,3,E06000007,3,58.72,106.12,26.1,438.9 +2577,3,E06000007,4,55.93,120.05,26.1,472.71 +2903,2,E06000007,0,55.36,236.93,18.44,1184.02 +3229,4,E06000007,0,32.8,464.43,18.44,2075.22 +3555,6,E06000007,0,55.36,238.1,18.44,911.75 +3881,8,E06000007,0,32.8,238.1,18.44,911.75 +4385,5,E06000007,1,52.2,103.98,26.1,397.64 +4497,7,E06000007,1,43.8,103.98,26.1,397.64 +4955,5,E06000007,2,59.66,126.48,26.1,483.95 +5093,7,E06000007,2,54.06,126.48,26.1,483.95 +5598,5,E06000007,3,66.17,155.41,26.1,592.76 +5773,7,E06000007,3,58.72,155.41,26.1,592.76 +6346,5,E06000007,4,72.71,216.52,26.1,829.12 +6397,7,E06000007,4,55.93,216.52,26.1,829.12 +6815,9,E06000007,1,52.2,129.97,26.1,497.07 +7141,9,E06000007,2,59.66,158.09,26.1,604.94 +7467,9,E06000007,3,66.17,194.27,26.1,740.92 +7793,9,E06000007,4,72.71,270.66,26.1,1036.39 +8119,10,E06000007,0,55.36,297.64,18.44,1139.71 +296,1,E07000222,1,53.13,99.69,26.1,438.9 +622,1,E07000222,2,58.72,117.9,26.1,483.95 +948,1,E07000222,3,69.9,133.98,26.1,566.51 +1274,1,E07000222,4,81.09,162.93,26.1,630.28 +1600,3,E07000222,1,46.6,88.96,26.1,345.17 +1926,3,E07000222,2,50.34,95.42,26.1,363.93 +2252,3,E07000222,3,60.59,105.05,26.1,423.89 +2578,3,E07000222,4,68.97,128.63,26.1,450.21 +2904,2,E07000222,0,38.95,242.82,18.44,1324.3 +3230,4,E07000222,0,46.12,106.09,18.44,371.32 +3556,6,E07000222,0,38.95,374.83,18.44,1431.61 +3882,8,E07000222,0,46.12,374.83,18.44,1431.61 +4306,5,E07000222,1,53.13,131.84,26.1,506.45 +4527,7,E07000222,1,46.6,131.84,26.1,506.45 +4916,5,E07000222,2,58.72,166.14,26.1,634.03 +5212,7,E07000222,2,50.34,166.14,26.1,634.03 +5547,5,E07000222,3,69.9,194.01,26.1,742.84 +5803,7,E07000222,3,60.59,194.01,26.1,742.84 +6199,5,E07000222,4,81.09,340.85,26.1,1301.79 +6464,7,E07000222,4,68.97,340.85,26.1,1301.79 +6816,9,E07000222,1,53.13,164.8,26.1,633.05 +7142,9,E07000222,2,58.72,207.68,26.1,792.54 +7468,9,E07000222,3,69.9,242.51,26.1,928.52 +7794,9,E07000222,4,81.09,426.06,26.1,1627.19 +8120,10,E07000222,0,38.95,468.55,18.44,1789.55 +297,1,E07000103,1,54.99,120.05,26.1,525.21 +623,1,E07000103,2,65.24,143.62,26.1,592.76 +949,1,E07000103,3,71.78,157.56,26.1,637.77 +1275,1,E07000103,4,82.02,172.58,26.1,630.28 +1601,3,E07000103,1,50.34,100.76,26.1,465.19 +1927,3,E07000103,2,58.72,118.97,26.1,468.93 +2253,3,E07000103,3,64.31,131.84,26.1,506.45 +2579,3,E07000103,4,71.78,150.06,26.1,562.73 +2905,2,E07000103,0,35.87,223.96,18.44,1464.58 +3231,4,E07000103,0,55.36,134.38,18.44,1101.56 +3557,6,E07000103,0,35.87,623.56,18.44,2376.4 +3883,8,E07000103,0,55.36,623.56,18.44,2376.4 +4161,5,E07000103,1,54.99,172.58,26.1,656.53 +4278,7,E07000103,1,50.34,172.58,26.1,656.53 +4742,5,E07000103,2,65.24,229.37,26.1,870.35 +5004,7,E07000103,2,58.72,229.37,26.1,870.35 +5461,5,E07000103,3,71.78,284.04,26.1,1084.23 +5647,7,E07000103,3,64.31,284.04,26.1,1084.23 +6171,5,E07000103,4,82.02,567.02,26.1,2160.9 +6309,7,E07000103,4,71.78,567.02,26.1,2160.9 +6817,9,E07000103,1,54.99,215.73,26.1,820.72 +7143,9,E07000103,2,65.24,286.72,26.1,1087.94 +7469,9,E07000103,3,71.78,355.06,26.1,1355.24 +7795,9,E07000103,4,82.02,708.78,26.1,2701.13 +8121,10,E07000103,0,35.87,779.44,18.44,2970.49 +299,1,E07000216,1,57.79,124.33,26.1,622.76 +625,1,E07000216,2,71.78,147.91,26.1,660.31 +951,1,E07000216,3,82.02,162.93,26.1,720.34 +1277,1,E07000216,4,90.42,180.08,26.1,784.04 +1603,3,E07000216,1,52.2,116.83,26.1,562.73 +1929,3,E07000216,2,63.38,130.77,26.1,513.94 +2255,3,E07000216,3,68.97,151.13,26.1,656.53 +2581,3,E07000216,4,73.64,186.51,26.1,686.53 +2907,2,E07000216,0,61.49,265.21,18.44,1192.28 +3233,4,E07000216,0,48.18,193.32,18.44,709.56 +3559,6,E07000216,0,61.49,623.56,18.44,2376.4 +3885,8,E07000216,0,48.18,623.56,18.44,2376.4 +4040,5,E07000216,1,57.79,175.78,26.1,667.77 +4107,7,E07000216,1,52.2,175.78,26.1,667.77 +4655,5,E07000216,2,71.78,226.16,26.1,866.6 +4802,7,E07000216,2,63.38,226.16,26.1,866.6 +5307,5,E07000216,3,82.02,307.63,26.1,1174.22 +5407,7,E07000216,3,68.97,307.63,26.1,1174.22 +5992,5,E07000216,4,90.42,567.02,26.1,2160.9 +6096,7,E07000216,4,73.64,567.02,26.1,2160.9 +6819,9,E07000216,1,57.79,219.74,26.1,834.75 +7145,9,E07000216,2,71.78,282.71,26.1,1083.25 +7471,9,E07000216,3,82.02,384.53,26.1,1467.76 +7797,9,E07000216,4,90.42,708.78,26.1,2701.13 +8123,10,E07000216,0,61.49,779.44,18.44,2970.49 +300,1,E07000065,1,57.79,124.33,26.1,622.76 +626,1,E07000065,2,71.78,147.91,26.1,660.31 +952,1,E07000065,3,82.02,162.93,26.1,720.34 +1278,1,E07000065,4,90.42,180.08,26.1,784.04 +1604,3,E07000065,1,52.2,116.83,26.1,562.73 +1930,3,E07000065,2,63.38,130.77,26.1,513.94 +2256,3,E07000065,3,68.97,151.13,26.1,656.53 +2582,3,E07000065,4,73.64,186.51,26.1,686.53 +2908,2,E07000065,0,61.49,265.21,18.44,1192.28 +3234,4,E07000065,0,48.18,193.32,18.44,709.56 +3560,6,E07000065,0,61.49,419.63,18.44,1600.69 +3886,8,E07000065,0,48.18,419.63,18.44,1600.69 +4041,5,E07000065,1,57.79,136.13,26.1,521.47 +4108,7,E07000065,1,52.2,136.13,26.1,521.47 +4656,5,E07000065,2,71.78,177.93,26.1,675.29 +4803,7,E07000065,2,63.38,177.93,26.1,675.29 +5308,5,E07000065,3,82.02,211.17,26.1,806.54 +5408,7,E07000065,3,68.97,211.17,26.1,806.54 +5993,5,E07000065,4,90.42,381.6,26.1,1455.65 +6097,7,E07000065,4,73.64,381.6,26.1,1455.65 +6820,9,E07000065,1,57.79,170.16,26.1,651.81 +7146,9,E07000065,2,71.78,222.43,26.1,844.13 +7472,9,E07000065,3,82.02,263.95,26.1,1008.25 +7798,9,E07000065,4,90.42,476.99,26.1,1819.51 +8124,10,E07000065,0,61.49,524.54,18.44,2000.99 +302,1,E07000241,1,54.99,120.05,26.1,525.21 +628,1,E07000241,2,65.24,143.62,26.1,592.76 +954,1,E07000241,3,71.78,157.56,26.1,637.77 +1280,1,E07000241,4,82.02,172.58,26.1,630.28 +1606,3,E07000241,1,50.34,100.76,26.1,465.19 +1932,3,E07000241,2,58.72,118.97,26.1,468.93 +2258,3,E07000241,3,64.31,131.84,26.1,506.45 +2584,3,E07000241,4,71.78,150.06,26.1,562.73 +2910,2,E07000241,0,35.87,223.96,18.44,1464.58 +3236,4,E07000241,0,55.36,134.38,18.44,1101.56 +3562,6,E07000241,0,35.87,449.11,18.44,1712.06 +3888,8,E07000241,0,55.36,449.11,18.44,1712.06 +4163,5,E07000241,1,54.99,155.41,26.1,596.51 +4280,7,E07000241,1,50.34,155.41,26.1,596.51 +4744,5,E07000241,2,65.24,194.01,26.1,742.84 +5006,7,E07000241,2,58.72,194.01,26.1,742.84 +5463,5,E07000241,3,71.78,273.34,26.1,1042.97 +5649,7,E07000241,3,64.31,273.34,26.1,1042.97 +6173,5,E07000241,4,82.02,408.38,26.1,1556.87 +6311,7,E07000241,4,71.78,408.38,26.1,1556.87 +6822,9,E07000241,1,54.99,194.27,26.1,745.64 +7148,9,E07000241,2,65.24,242.51,26.1,928.52 +7474,9,E07000241,3,71.78,341.67,26.1,1303.68 +7800,9,E07000241,4,82.02,510.49,26.1,1946.18 +8126,10,E07000241,0,35.87,561.4,18.44,2140.15 +303,1,E06000037,1,57.79,124.33,26.1,622.76 +629,1,E06000037,2,71.78,147.91,26.1,660.31 +955,1,E06000037,3,82.02,162.93,26.1,720.34 +1281,1,E06000037,4,90.42,180.08,26.1,784.04 +1607,3,E06000037,1,52.2,116.83,26.1,562.73 +1933,3,E06000037,2,63.38,130.77,26.1,513.94 +2259,3,E06000037,3,68.97,151.13,26.1,656.53 +2585,3,E06000037,4,73.64,186.51,26.1,686.53 +2911,2,E06000037,0,61.49,265.21,18.44,1192.28 +3237,4,E06000037,0,48.18,193.32,18.44,709.56 +3563,6,E06000037,0,61.49,437.32,18.44,1666.77 +3889,8,E06000037,0,48.18,437.32,18.44,1666.77 +4042,5,E06000037,1,57.79,143.62,26.1,547.72 +4109,7,E06000037,1,52.2,143.62,26.1,547.72 +4657,5,E06000037,2,71.78,182.22,26.1,697.83 +4804,7,E06000037,2,63.38,182.22,26.1,697.83 +5309,5,E06000037,3,82.02,216.52,26.1,829.12 +5409,7,E06000037,3,68.97,216.52,26.1,829.12 +5994,5,E06000037,4,90.42,397.66,26.1,1515.64 +6098,7,E06000037,4,73.64,397.66,26.1,1515.64 +6823,9,E06000037,1,57.79,179.53,26.1,684.6 +7149,9,E06000037,2,71.78,227.8,26.1,872.27 +7475,9,E06000037,3,82.02,270.66,26.1,1036.39 +7801,9,E06000037,4,90.42,497.09,26.1,1894.55 +8127,10,E06000037,0,61.49,546.66,18.44,2083.48 +304,1,E07000047,1,49.41,108.27,26.1,495.22 +630,1,E07000047,2,55.93,122.19,26.1,510.2 +956,1,E07000047,3,62.45,142.56,26.1,570.26 +1282,1,E07000047,4,71.78,159.7,26.1,686.53 +1608,3,E07000047,1,47.54,90.03,26.1,742.84 +1934,3,E07000047,2,54.99,101.83,26.1,393.89 +2260,3,E07000047,3,62.45,110.39,26.1,446.46 +2586,3,E07000047,4,74.57,131.84,26.1,461.44 +2912,2,E07000047,0,54.33,228.68,18.44,1241.8 +3238,4,E07000047,0,54.33,114.33,18.44,490.95 +3564,6,E07000047,0,54.33,244,18.44,932.37 +3890,8,E07000047,0,54.33,244,18.44,932.37 +3945,7,E07000047,1,47.54,103.98,26.1,397.64 +4229,5,E07000047,1,49.41,103.98,26.1,397.64 +4865,5,E07000047,2,55.93,128.63,26.1,495.22 +5142,7,E07000047,2,54.99,128.63,26.1,495.22 +5496,5,E07000047,3,62.45,159.7,26.1,611.52 +5722,7,E07000047,3,62.45,159.7,26.1,611.52 +6034,5,E07000047,4,71.78,221.88,26.1,847.88 +6434,7,E07000047,4,74.57,221.88,26.1,847.88 +6824,9,E07000047,1,49.41,129.97,26.1,497.07 +7150,9,E07000047,2,55.93,160.78,26.1,619.01 +7476,9,E07000047,3,62.45,199.62,26.1,764.33 +7802,9,E07000047,4,71.78,277.34,26.1,1059.84 +8128,10,E07000047,0,54.33,305,18.44,1165.47 +306,1,E07000127,1,52.2,94.33,26.1,412.65 +632,1,E07000127,2,59.66,108.27,26.1,476.46 +958,1,E07000127,3,66.17,121.11,26.1,513.94 +1284,1,E07000127,4,72.71,135.06,26.1,562.73 +1610,3,E07000127,1,43.8,86.81,26.1,356.41 +1936,3,E07000127,2,54.06,95.42,26.1,401.38 +2262,3,E07000127,3,58.72,106.12,26.1,438.9 +2588,3,E07000127,4,55.93,120.05,26.1,472.71 +2914,2,E07000127,0,55.36,236.93,18.44,1184.02 +3240,4,E07000127,0,32.8,464.43,18.44,2075.22 +3566,6,E07000127,0,55.36,238.1,18.44,911.75 +3892,8,E07000127,0,32.8,238.1,18.44,911.75 +4386,5,E07000127,1,52.2,103.98,26.1,397.64 +4498,7,E07000127,1,43.8,103.98,26.1,397.64 +4956,5,E07000127,2,59.66,136.13,26.1,521.47 +5094,7,E07000127,2,54.06,136.13,26.1,521.47 +5599,5,E07000127,3,66.17,148.99,26.1,566.51 +5774,7,E07000127,3,58.72,148.99,26.1,566.51 +6347,5,E07000127,4,72.71,216.52,26.1,829.12 +6398,7,E07000127,4,55.93,216.52,26.1,829.12 +6826,9,E07000127,1,52.2,129.97,26.1,497.07 +7152,9,E07000127,2,59.66,170.16,26.1,651.81 +7478,9,E07000127,3,66.17,186.23,26.1,708.19 +7804,9,E07000127,4,72.71,270.66,26.1,1036.39 +8130,10,E07000127,0,55.36,297.64,18.44,1139.71 +307,1,E07000142,1,52.2,100.76,26.1,431.41 +633,1,E07000142,2,62.45,115.76,26.1,457.7 +959,1,E07000142,3,68.97,127.56,26.1,487.69 +1285,1,E07000142,4,76.43,159.7,26.1,589.02 +1611,3,E07000142,1,46.6,91.12,26.1,378.95 +1937,3,E07000142,2,53.13,97.54,26.1,382.66 +2263,3,E07000142,3,58.72,105.05,26.1,420.18 +2589,3,E07000142,4,64.31,123.26,26.1,431.41 +2915,2,E07000142,0,51.26,238.1,18.44,1250.1 +3241,4,E07000142,0,49.2,113.15,18.44,429.07 +3567,6,E07000142,0,51.26,213.35,18.44,816.83 +3893,8,E07000142,0,49.2,213.35,18.44,816.83 +4350,5,E07000142,1,52.2,85.75,26.1,326.41 +4450,7,E07000142,1,46.6,85.75,26.1,326.41 +5046,5,E07000142,2,62.45,110.39,26.1,420.18 +5186,7,E07000142,2,53.13,110.39,26.1,420.18 +5689,5,E07000142,3,68.97,130.77,26.1,502.67 +5847,7,E07000142,3,58.72,130.77,26.1,502.67 +6264,5,E07000142,4,76.43,194.01,26.1,742.84 +6508,7,E07000142,4,64.31,194.01,26.1,742.84 +6827,9,E07000142,1,52.2,107.2,26.1,407.96 +7153,9,E07000142,2,62.45,138.01,26.1,525.21 +7479,9,E07000142,3,68.97,163.46,26.1,628.36 +7805,9,E07000142,4,76.43,242.51,26.1,928.52 +8131,10,E07000142,0,51.26,266.69,18.44,1021.09 +308,1,E07000181,1,57.79,124.33,26.1,622.76 +634,1,E07000181,2,71.78,147.91,26.1,660.31 +960,1,E07000181,3,82.02,162.93,26.1,720.34 +1286,1,E07000181,4,90.42,180.08,26.1,784.04 +1612,3,E07000181,1,52.2,116.83,26.1,562.73 +1938,3,E07000181,2,63.38,130.77,26.1,513.94 +2264,3,E07000181,3,68.97,151.13,26.1,656.53 +2590,3,E07000181,4,73.64,186.51,26.1,686.53 +2916,2,E07000181,0,61.49,265.21,18.44,1192.28 +3242,4,E07000181,0,48.18,193.32,18.44,709.56 +3568,6,E07000181,0,61.49,443.21,18.44,1695.61 +3894,8,E07000181,0,48.18,443.21,18.44,1695.61 +4043,5,E07000181,1,57.79,148.99,26.1,566.51 +4110,7,E07000181,1,52.2,148.99,26.1,566.51 +4658,5,E07000181,2,71.78,183.29,26.1,701.58 +4805,7,E07000181,2,63.38,183.29,26.1,701.58 +5310,5,E07000181,3,82.02,228.29,26.1,866.6 +5410,7,E07000181,3,68.97,228.29,26.1,866.6 +5995,5,E07000181,4,90.42,403.03,26.1,1541.89 +6099,7,E07000181,4,73.64,403.03,26.1,1541.89 +6828,9,E07000181,1,57.79,186.23,26.1,708.19 +7154,9,E07000181,2,71.78,229.13,26.1,876.89 +7480,9,E07000181,3,82.02,285.39,26.1,1083.25 +7806,9,E07000181,4,90.42,503.79,26.1,1927.38 +8132,10,E07000181,0,61.49,554.02,18.44,2119.53 +254,1,E07000245,1,54.99,120.05,26.1,525.21 +580,1,E07000245,2,65.24,143.62,26.1,592.76 +906,1,E07000245,3,71.78,157.56,26.1,637.77 +1232,1,E07000245,4,82.02,172.58,26.1,630.28 +1558,3,E07000245,1,50.34,100.76,26.1,465.19 +1884,3,E07000245,2,58.72,118.97,26.1,468.93 +2210,3,E07000245,3,64.31,131.84,26.1,506.45 +2536,3,E07000245,4,71.78,150.06,26.1,562.73 +2862,2,E07000245,0,35.87,223.96,18.44,1464.58 +3188,4,E07000245,0,55.36,134.38,18.44,1101.56 +3514,6,E07000245,0,35.87,368.95,18.44,1406.83 +3840,8,E07000245,0,55.36,368.95,18.44,1406.83 +4154,5,E07000245,1,54.99,126.48,26.1,483.95 +4271,7,E07000245,1,50.34,126.48,26.1,483.95 +4735,5,E07000245,2,65.24,148.99,26.1,566.51 +4997,7,E07000245,2,58.72,148.99,26.1,566.51 +5454,5,E07000245,3,71.78,183.29,26.1,701.58 +5640,7,E07000245,3,64.31,183.29,26.1,701.58 +6164,5,E07000245,4,82.02,335.49,26.1,1279.25 +6302,7,E07000245,4,71.78,335.49,26.1,1279.25 +6774,9,E07000245,1,54.99,158.09,26.1,604.94 +7100,9,E07000245,2,65.24,186.23,26.1,708.19 +7426,9,E07000245,3,71.78,229.13,26.1,876.89 +7752,9,E07000245,4,82.02,419.36,26.1,1599.08 +8078,10,E07000245,0,35.87,461.19,18.44,1758.54 +310,1,E09000033,1,66.17,146.84,26.1,697.83 +636,1,E09000033,2,78.29,158.63,26.1,679.04 +962,1,E09000033,3,84.82,168.29,26.1,799.02 +1288,1,E09000033,4,102.51,188.66,26.1,889.11 +1614,3,E09000033,1,58.72,120.05,26.1,517.69 +1940,3,E09000033,2,64.31,140.42,26.1,619.01 +2266,3,E09000033,3,71.78,160.78,26.1,709.03 +2592,3,E09000033,4,83.89,262.61,26.1,922.88 +2918,2,E09000033,0,69.7,313.55,18.44,1741.04 +3244,4,E09000033,0,59.45,367.77,18.44,1394.47 +3570,6,E09000033,0,69.7,2503.67,18.44,9559.1 +3896,8,E09000033,0,59.45,2503.67,18.44,9559.1 +3982,5,E09000033,1,66.17,442.67,26.1,1688.23 +4196,7,E09000033,1,58.72,442.67,26.1,1688.23 +4597,5,E09000033,2,78.29,637.77,26.1,2438.49 +4697,7,E09000033,2,64.31,637.77,26.1,2438.49 +5249,5,E09000033,3,84.82,932.53,26.1,3560.2 +5349,7,E09000033,3,71.78,932.53,26.1,3560.2 +5901,7,E09000033,4,83.89,2276.66,26.1,8692.36 +5934,5,E09000033,4,102.51,2276.66,26.1,8692.36 +6830,9,E09000033,1,66.17,553.35,26.1,2110.29 +7156,9,E09000033,2,78.29,797.22,26.1,3048.15 +7482,9,E09000033,3,84.82,1165.67,26.1,4450.32 +7808,9,E09000033,4,102.51,2845.82,26.1,10865.47 +8134,10,E09000033,0,69.7,3129.61,18.44,11948.9 +312,1,E08000010,1,52.2,94.33,26.1,412.65 +638,1,E08000010,2,59.66,108.27,26.1,476.46 +964,1,E08000010,3,66.17,121.11,26.1,513.94 +1290,1,E08000010,4,72.71,135.06,26.1,562.73 +1616,3,E08000010,1,43.8,86.81,26.1,356.41 +1942,3,E08000010,2,54.06,95.42,26.1,401.38 +2268,3,E08000010,3,58.72,106.12,26.1,438.9 +2594,3,E08000010,4,55.93,120.05,26.1,472.71 +2920,2,E08000010,0,55.36,236.93,18.44,1184.02 +3246,4,E08000010,0,32.8,464.43,18.44,2075.22 +3572,6,E08000010,0,55.36,201.56,18.44,771.47 +3898,8,E08000010,0,32.8,201.56,18.44,771.47 +4387,5,E08000010,1,52.2,93.26,26.1,352.66 +4499,7,E08000010,1,43.8,93.26,26.1,352.66 +4957,5,E08000010,2,59.66,110.39,26.1,420.18 +5095,7,E08000010,2,54.06,110.39,26.1,420.18 +5600,5,E08000010,3,66.17,131.84,26.1,506.45 +5775,7,E08000010,3,58.72,131.84,26.1,506.45 +6348,5,E08000010,4,72.71,183.29,26.1,701.58 +6399,7,E08000010,4,55.93,183.29,26.1,701.58 +6832,9,E08000010,1,52.2,116.56,26.1,440.83 +7158,9,E08000010,2,59.66,138.01,26.1,525.21 +7484,9,E08000010,3,66.17,164.8,26.1,633.05 +7810,9,E08000010,4,72.71,229.13,26.1,876.89 +8136,10,E08000010,0,55.36,251.95,18.44,964.39 +313,1,E06000054,1,49.41,108.27,26.1,495.22 +639,1,E06000054,2,55.93,122.19,26.1,510.2 +965,1,E06000054,3,62.45,142.56,26.1,570.26 +1291,1,E06000054,4,71.78,159.7,26.1,686.53 +1617,3,E06000054,1,47.54,90.03,26.1,742.84 +1943,3,E06000054,2,54.99,101.83,26.1,393.89 +2269,3,E06000054,3,62.45,110.39,26.1,446.46 +2595,3,E06000054,4,74.57,131.84,26.1,461.44 +2921,2,E06000054,0,54.33,228.68,18.44,1241.8 +3247,4,E06000054,0,54.33,114.33,18.44,490.95 +3573,6,E06000054,0,54.33,325.34,18.44,1241.8 +3899,8,E06000054,0,54.33,325.34,18.44,1241.8 +3949,7,E06000054,1,47.54,126.48,26.1,483.95 +4233,5,E06000054,1,49.41,126.48,26.1,483.95 +4869,5,E06000054,2,55.93,156.49,26.1,600.25 +5146,7,E06000054,2,54.99,156.49,26.1,600.25 +5500,5,E06000054,3,62.45,194.01,26.1,742.84 +5726,7,E06000054,3,62.45,194.01,26.1,742.84 +6038,5,E06000054,4,71.78,295.83,26.1,1129.24 +6438,7,E06000054,4,74.57,295.83,26.1,1129.24 +6833,9,E06000054,1,49.41,158.09,26.1,604.94 +7159,9,E06000054,2,55.93,195.6,26.1,750.3 +7485,9,E06000054,3,62.45,242.51,26.1,928.52 +7811,9,E06000054,4,71.78,369.81,26.1,1411.55 +8137,10,E06000054,0,54.33,406.66,18.44,1552.29 +314,1,E07000094,1,57.79,124.33,26.1,622.76 +640,1,E07000094,2,71.78,147.91,26.1,660.31 +966,1,E07000094,3,82.02,162.93,26.1,720.34 +1292,1,E07000094,4,90.42,180.08,26.1,784.04 +1618,3,E07000094,1,52.2,116.83,26.1,562.73 +1944,3,E07000094,2,63.38,130.77,26.1,513.94 +2270,3,E07000094,3,68.97,151.13,26.1,656.53 +2596,3,E07000094,4,73.64,186.51,26.1,686.53 +2922,2,E07000094,0,61.49,265.21,18.44,1192.28 +3248,4,E07000094,0,48.18,193.32,18.44,709.56 +3574,6,E07000094,0,61.49,467.95,18.44,1786.37 +3900,8,E07000094,0,48.18,467.95,18.44,1786.37 +4044,5,E07000094,1,57.79,172.58,26.1,656.53 +4111,7,E07000094,1,52.2,172.58,26.1,656.53 +4659,5,E07000094,2,71.78,216.52,26.1,829.12 +4806,7,E07000094,2,63.38,216.52,26.1,829.12 +5311,5,E07000094,3,82.02,284.04,26.1,1084.23 +5411,7,E07000094,3,68.97,284.04,26.1,1084.23 +5996,5,E07000094,4,90.42,425.54,26.1,1624.42 +6100,7,E07000094,4,73.64,425.54,26.1,1624.42 +6834,9,E07000094,1,57.79,215.73,26.1,820.72 +7160,9,E07000094,2,71.78,270.66,26.1,1036.39 +7486,9,E07000094,3,82.02,355.06,26.1,1355.24 +7812,9,E07000094,4,90.42,531.92,26.1,2030.53 +8138,10,E07000094,0,61.49,584.95,18.44,2233 +315,1,E06000040,1,57.79,124.33,26.1,622.76 +641,1,E06000040,2,71.78,147.91,26.1,660.31 +967,1,E06000040,3,82.02,162.93,26.1,720.34 +1293,1,E06000040,4,90.42,180.08,26.1,784.04 +1619,3,E06000040,1,52.2,116.83,26.1,562.73 +1945,3,E06000040,2,63.38,130.77,26.1,513.94 +2271,3,E06000040,3,68.97,151.13,26.1,656.53 +2597,3,E06000040,4,73.64,186.51,26.1,686.53 +2923,2,E06000040,0,61.49,265.21,18.44,1192.28 +3249,4,E06000040,0,48.18,193.32,18.44,709.56 +3575,6,E06000040,0,61.49,847.54,18.44,3234.53 +3901,8,E06000040,0,48.18,847.54,18.44,3234.53 +4045,5,E06000040,1,57.79,200.45,26.1,761.57 +4112,7,E06000040,1,52.2,200.45,26.1,761.57 +4660,5,E06000040,2,71.78,284.04,26.1,1084.23 +4807,7,E06000040,2,63.38,284.04,26.1,1084.23 +5312,5,E06000040,3,82.02,346.22,26.1,1324.33 +5412,7,E06000040,3,68.97,346.22,26.1,1324.33 +5997,5,E06000040,4,90.42,770.67,26.1,2941.26 +6101,7,E06000040,4,73.64,770.67,26.1,2941.26 +6835,9,E06000040,1,57.79,250.54,26.1,951.93 +7161,9,E06000040,2,71.78,355.06,26.1,1355.24 +7487,9,E06000040,3,82.02,432.75,26.1,1655.43 +7813,9,E06000040,4,90.42,963.35,26.1,3676.58 +8139,10,E06000040,0,61.49,1059.42,18.44,4043.13 +316,1,E08000015,1,52.2,94.33,26.1,412.65 +642,1,E08000015,2,59.66,108.27,26.1,476.46 +968,1,E08000015,3,66.17,121.11,26.1,513.94 +1294,1,E08000015,4,72.71,135.06,26.1,562.73 +1620,3,E08000015,1,43.8,86.81,26.1,356.41 +1946,3,E08000015,2,54.06,95.42,26.1,401.38 +2272,3,E08000015,3,58.72,106.12,26.1,438.9 +2598,3,E08000015,4,55.93,120.05,26.1,472.71 +2924,2,E08000015,0,55.36,236.93,18.44,1184.02 +3250,4,E08000015,0,32.8,464.43,18.44,2075.22 +3576,6,E08000015,0,55.36,213.35,18.44,816.83 +3902,8,E08000015,0,32.8,213.35,18.44,816.83 +4388,5,E08000015,1,52.2,103.98,26.1,397.64 +4500,7,E08000015,1,43.8,103.98,26.1,397.64 +4958,5,E08000015,2,59.66,126.48,26.1,483.95 +5096,7,E08000015,2,54.06,126.48,26.1,483.95 +5601,5,E08000015,3,66.17,148.99,26.1,566.51 +5776,7,E08000015,3,58.72,148.99,26.1,566.51 +6349,5,E08000015,4,72.71,194.01,26.1,742.84 +6400,7,E08000015,4,55.93,194.01,26.1,742.84 +6836,9,E08000015,1,52.2,129.97,26.1,497.07 +7162,9,E08000015,2,59.66,158.09,26.1,604.94 +7488,9,E08000015,3,66.17,186.23,26.1,708.19 +7814,9,E08000015,4,72.71,242.51,26.1,928.52 +8140,10,E08000015,0,55.36,266.69,18.44,1021.09 +317,1,E07000217,1,57.79,124.33,26.1,622.76 +643,1,E07000217,2,71.78,147.91,26.1,660.31 +969,1,E07000217,3,82.02,162.93,26.1,720.34 +1295,1,E07000217,4,90.42,180.08,26.1,784.04 +1621,3,E07000217,1,52.2,116.83,26.1,562.73 +1947,3,E07000217,2,63.38,130.77,26.1,513.94 +2273,3,E07000217,3,68.97,151.13,26.1,656.53 +2599,3,E07000217,4,73.64,186.51,26.1,686.53 +2925,2,E07000217,0,61.49,265.21,18.44,1192.28 +3251,4,E07000217,0,48.18,193.32,18.44,709.56 +3577,6,E07000217,0,61.49,748.51,18.44,2854.99 +3903,8,E07000217,0,48.18,748.51,18.44,2854.99 +4046,5,E07000217,1,57.79,177.93,26.1,675.29 +4113,7,E07000217,1,52.2,177.93,26.1,675.29 +4661,5,E07000217,2,71.78,250.82,26.1,956.69 +4808,7,E07000217,2,63.38,250.82,26.1,956.69 +5313,5,E07000217,3,82.02,302.28,26.1,1151.71 +5413,7,E07000217,3,68.97,302.28,26.1,1151.71 +5998,5,E07000217,4,90.42,680.64,26.1,2596.09 +6102,7,E07000217,4,73.64,680.64,26.1,2596.09 +6837,9,E07000217,1,57.79,222.43,26.1,844.13 +7163,9,E07000217,2,71.78,313.51,26.1,1195.85 +7489,9,E07000217,3,82.02,377.83,26.1,1439.66 +7815,9,E07000217,4,90.42,850.81,26.1,3245.1 +8141,10,E07000217,0,61.49,935.63,18.44,3568.67 +318,1,E06000041,1,57.79,124.33,26.1,622.76 +644,1,E06000041,2,71.78,147.91,26.1,660.31 +970,1,E06000041,3,82.02,162.93,26.1,720.34 +1296,1,E06000041,4,90.42,180.08,26.1,784.04 +1622,3,E06000041,1,52.2,116.83,26.1,562.73 +1948,3,E06000041,2,63.38,130.77,26.1,513.94 +2274,3,E06000041,3,68.97,151.13,26.1,656.53 +2600,3,E06000041,4,73.64,186.51,26.1,686.53 +2926,2,E06000041,0,61.49,265.21,18.44,1192.28 +3252,4,E06000041,0,48.18,193.32,18.44,709.56 +3578,6,E06000041,0,61.49,473.86,18.44,1811.15 +3904,8,E06000041,0,48.18,473.86,18.44,1811.15 +4047,5,E06000041,1,57.79,166.14,26.1,634.03 +4114,7,E06000041,1,52.2,166.14,26.1,634.03 +4662,5,E06000041,2,71.78,207.96,26.1,791.56 +4809,7,E06000041,2,63.38,207.96,26.1,791.56 +5314,5,E06000041,3,82.02,272.26,26.1,1039.19 +5414,7,E06000041,3,68.97,272.26,26.1,1039.19 +5999,5,E06000041,4,90.42,430.9,26.1,1646.93 +6103,7,E06000041,4,73.64,430.9,26.1,1646.93 +6838,9,E06000041,1,57.79,207.68,26.1,792.54 +7164,9,E06000041,2,71.78,259.93,26.1,989.49 +7490,9,E06000041,3,82.02,340.33,26.1,1298.96 +7816,9,E06000041,4,90.42,538.61,26.1,2058.67 +8142,10,E06000041,0,61.49,592.32,18.44,2263.94 +319,1,E08000031,1,53.13,99.69,26.1,438.9 +645,1,E08000031,2,58.72,117.9,26.1,483.95 +971,1,E08000031,3,69.9,133.98,26.1,566.51 +1297,1,E08000031,4,81.09,162.93,26.1,630.28 +1623,3,E08000031,1,46.6,88.96,26.1,345.17 +1949,3,E08000031,2,50.34,95.42,26.1,363.93 +2275,3,E08000031,3,60.59,105.05,26.1,423.89 +2601,3,E08000031,4,68.97,128.63,26.1,450.21 +2927,2,E08000031,0,38.95,242.82,18.44,1324.3 +3253,4,E08000031,0,46.12,106.09,18.44,371.32 +3579,6,E08000031,0,38.95,189.79,18.44,721.98 +3905,8,E08000031,0,46.12,189.79,18.44,721.98 +4307,5,E08000031,1,53.13,98.62,26.1,378.95 +4528,7,E08000031,1,46.6,98.62,26.1,378.95 +4917,5,E08000031,2,58.72,121.11,26.1,461.44 +5213,7,E08000031,2,50.34,121.11,26.1,461.44 +5548,5,E08000031,3,69.9,136.13,26.1,521.47 +5804,7,E08000031,3,60.59,136.13,26.1,521.47 +6200,5,E08000031,4,81.09,172.58,26.1,656.53 +6465,7,E08000031,4,68.97,172.58,26.1,656.53 +6839,9,E08000031,1,53.13,123.26,26.1,473.66 +7165,9,E08000031,2,58.72,151.41,26.1,576.8 +7491,9,E08000031,3,69.9,170.16,26.1,651.81 +7817,9,E08000031,4,81.09,215.73,26.1,820.72 +8143,10,E08000031,0,38.95,237.24,18.44,902.44 +320,1,E07000237,1,53.13,99.69,26.1,438.9 +646,1,E07000237,2,58.72,117.9,26.1,483.95 +972,1,E07000237,3,69.9,133.98,26.1,566.51 +1298,1,E07000237,4,81.09,162.93,26.1,630.28 +1624,3,E07000237,1,46.6,88.96,26.1,345.17 +1950,3,E07000237,2,50.34,95.42,26.1,363.93 +2276,3,E07000237,3,60.59,105.05,26.1,423.89 +2602,3,E07000237,4,68.97,128.63,26.1,450.21 +2928,2,E07000237,0,38.95,242.82,18.44,1324.3 +3254,4,E07000237,0,46.12,106.09,18.44,371.32 +3580,6,E07000237,0,38.95,238.1,18.44,911.75 +3906,8,E07000237,0,46.12,238.1,18.44,911.75 +4308,5,E07000237,1,53.13,115.76,26.1,438.9 +4529,7,E07000237,1,46.6,115.76,26.1,438.9 +4918,5,E07000237,2,58.72,143.62,26.1,547.72 +5214,7,E07000237,2,50.34,143.62,26.1,547.72 +5549,5,E07000237,3,69.9,166.14,26.1,634.03 +5805,7,E07000237,3,60.59,166.14,26.1,634.03 +6201,5,E07000237,4,81.09,216.52,26.1,829.12 +6466,7,E07000237,4,68.97,216.52,26.1,829.12 +6840,9,E07000237,1,53.13,144.7,26.1,548.7 +7166,9,E07000237,2,58.72,179.53,26.1,684.6 +7492,9,E07000237,3,69.9,207.68,26.1,792.54 +7818,9,E07000237,4,81.09,270.66,26.1,1036.39 +8144,10,E07000237,0,38.95,297.64,18.44,1139.71 +321,1,E07000229,1,57.79,124.33,26.1,622.76 +647,1,E07000229,2,71.78,147.91,26.1,660.31 +973,1,E07000229,3,82.02,162.93,26.1,720.34 +1299,1,E07000229,4,90.42,180.08,26.1,784.04 +1625,3,E07000229,1,52.2,116.83,26.1,562.73 +1951,3,E07000229,2,63.38,130.77,26.1,513.94 +2277,3,E07000229,3,68.97,151.13,26.1,656.53 +2603,3,E07000229,4,73.64,186.51,26.1,686.53 +2929,2,E07000229,0,61.49,265.21,18.44,1192.28 +3255,4,E07000229,0,48.18,193.32,18.44,709.56 +3581,6,E07000229,0,61.49,322.99,18.44,1233.54 +3907,8,E07000229,0,48.18,322.99,18.44,1233.54 +4048,5,E07000229,1,57.79,131.84,26.1,506.45 +4115,7,E07000229,1,52.2,131.84,26.1,506.45 +4663,5,E07000229,2,71.78,172.58,26.1,656.53 +4810,7,E07000229,2,63.38,172.58,26.1,656.53 +5315,5,E07000229,3,82.02,216.52,26.1,829.12 +5415,7,E07000229,3,68.97,216.52,26.1,829.12 +6000,5,E07000229,4,90.42,294.76,26.1,1121.72 +6104,7,E07000229,4,73.64,294.76,26.1,1121.72 +6841,9,E07000229,1,57.79,164.8,26.1,633.05 +7167,9,E07000229,2,71.78,215.73,26.1,820.72 +7493,9,E07000229,3,82.02,270.66,26.1,1036.39 +7819,9,E07000229,4,90.42,368.46,26.1,1402.1 +8145,10,E07000229,0,61.49,403.75,18.44,1542 +322,1,E07000238,1,53.13,99.69,26.1,438.9 +648,1,E07000238,2,58.72,117.9,26.1,483.95 +974,1,E07000238,3,69.9,133.98,26.1,566.51 +1300,1,E07000238,4,81.09,162.93,26.1,630.28 +1626,3,E07000238,1,46.6,88.96,26.1,345.17 +1952,3,E07000238,2,50.34,95.42,26.1,363.93 +2278,3,E07000238,3,60.59,105.05,26.1,423.89 +2604,3,E07000238,4,68.97,128.63,26.1,450.21 +2930,2,E07000238,0,38.95,242.82,18.44,1324.3 +3256,4,E07000238,0,46.12,106.09,18.44,371.32 +3582,6,E07000238,0,38.95,275.83,18.44,1052.03 +3908,8,E07000238,0,46.12,275.83,18.44,1052.03 +4309,5,E07000238,1,53.13,114.68,26.1,435.16 +4530,7,E07000238,1,46.6,114.68,26.1,435.16 +4919,5,E07000238,2,58.72,139.34,26.1,532.74 +5215,7,E07000238,2,50.34,139.34,26.1,532.74 +5550,5,E07000238,3,69.9,172.58,26.1,656.53 +5806,7,E07000238,3,60.59,172.58,26.1,656.53 +6202,5,E07000238,4,81.09,250.82,26.1,956.69 +6467,7,E07000238,4,68.97,250.82,26.1,956.69 +6842,9,E07000238,1,53.13,143.37,26.1,543.94 +7168,9,E07000238,2,58.72,174.17,26.1,665.91 +7494,9,E07000238,3,69.9,215.73,26.1,820.72 +7820,9,E07000238,4,81.09,313.51,26.1,1195.85 +8146,10,E07000238,0,38.95,344.81,18.44,1315.06 +324,1,E07000128,1,52.2,94.33,26.1,412.65 +650,1,E07000128,2,59.66,108.27,26.1,476.46 +976,1,E07000128,3,66.17,121.11,26.1,513.94 +1302,1,E07000128,4,72.71,135.06,26.1,562.73 +1628,3,E07000128,1,43.8,86.81,26.1,356.41 +1954,3,E07000128,2,54.06,95.42,26.1,401.38 +2280,3,E07000128,3,58.72,106.12,26.1,438.9 +2606,3,E07000128,4,55.93,120.05,26.1,472.71 +2932,2,E07000128,0,55.36,236.93,18.44,1184.02 +3258,4,E07000128,0,32.8,464.43,18.44,2075.22 +3584,6,E07000128,0,55.36,213.35,18.44,816.83 +3910,8,E07000128,0,32.8,213.35,18.44,816.83 +4389,5,E07000128,1,52.2,103.98,26.1,401.38 +4501,7,E07000128,1,43.8,103.98,26.1,401.38 +4959,5,E07000128,2,59.66,133.98,26.1,513.94 +5097,7,E07000128,2,54.06,133.98,26.1,513.94 +5602,5,E07000128,3,66.17,148.99,26.1,566.51 +5777,7,E07000128,3,58.72,148.99,26.1,566.51 +6350,5,E07000128,4,72.71,194.01,26.1,742.84 +6401,7,E07000128,4,55.93,194.01,26.1,742.84 +6844,9,E07000128,1,52.2,129.97,26.1,501.8 +7170,9,E07000128,2,59.66,167.48,26.1,642.46 +7496,9,E07000128,3,66.17,186.23,26.1,708.19 +7822,9,E07000128,4,72.71,242.51,26.1,928.52 +8148,10,E07000128,0,55.36,266.69,18.44,1021.09 +325,1,E07000239,1,53.13,99.69,26.1,438.9 +651,1,E07000239,2,58.72,117.9,26.1,483.95 +977,1,E07000239,3,69.9,133.98,26.1,566.51 +1303,1,E07000239,4,81.09,162.93,26.1,630.28 +1629,3,E07000239,1,46.6,88.96,26.1,345.17 +1955,3,E07000239,2,50.34,95.42,26.1,363.93 +2281,3,E07000239,3,60.59,105.05,26.1,423.89 +2607,3,E07000239,4,68.97,128.63,26.1,450.21 +2933,2,E07000239,0,38.95,242.82,18.44,1324.3 +3259,4,E07000239,0,46.12,106.09,18.44,371.32 +3585,6,E07000239,0,38.95,213.35,18.44,816.83 +3911,8,E07000239,0,46.12,213.35,18.44,816.83 +4310,5,E07000239,1,53.13,98.62,26.1,378.95 +4531,7,E07000239,1,46.6,98.62,26.1,378.95 +4920,5,E07000239,2,58.72,126.48,26.1,483.95 +5216,7,E07000239,2,50.34,126.48,26.1,483.95 +5551,5,E07000239,3,69.9,143.62,26.1,547.72 +5807,7,E07000239,3,60.59,143.62,26.1,547.72 +6203,5,E07000239,4,81.09,194.01,26.1,742.84 +6468,7,E07000239,4,68.97,194.01,26.1,742.84 +6845,9,E07000239,1,53.13,123.26,26.1,473.66 +7171,9,E07000239,2,58.72,158.09,26.1,604.94 +7497,9,E07000239,3,69.9,179.53,26.1,684.6 +7823,9,E07000239,4,81.09,242.51,26.1,928.52 +8149,10,E07000239,0,38.95,266.69,18.44,1021.09 +326,1,E06000014,1,51.27,92.19,26.1,401.38 +652,1,E06000014,2,58.72,109.33,26.1,495.22 +978,1,E06000014,3,63.38,121.11,26.1,570.26 +1304,1,E06000014,4,73.64,145.77,26.1,630.28 +1630,3,E06000014,1,46.6,82.54,26.1,326.41 +1956,3,E06000014,2,53.13,113.61,26.1,510.2 +2282,3,E06000014,3,56.86,105.05,26.1,401.38 +2608,3,E06000014,4,64.31,122.19,26.1,619.01 +2934,2,E06000014,0,52.28,232.2,18.44,1118.04 +3260,4,E06000014,0,51.26,159.13,18.44,660.1 +3586,6,E06000014,0,52.28,390.17,18.44,1489.36 +3912,8,E06000014,0,51.26,390.17,18.44,1489.36 +4410,5,E06000014,1,51.27,136.13,26.1,521.47 +4564,7,E06000014,1,46.6,136.13,26.1,521.47 +4832,7,E06000014,2,53.13,158.63,26.1,611.52 +4890,5,E06000014,2,58.72,158.63,26.1,611.52 +5521,5,E06000014,3,63.38,204.74,26.1,780.33 +5868,7,E06000014,3,56.86,204.74,26.1,780.33 +6126,5,E06000014,4,73.64,354.8,26.1,1354.33 +6224,7,E06000014,4,64.31,354.8,26.1,1354.33 +6846,9,E06000014,1,51.27,170.16,26.1,651.81 +7172,9,E06000014,2,53.13,198.3,26.1,764.33 +7498,9,E06000014,3,63.38,255.92,26.1,975.42 +7824,9,E06000014,4,73.64,443.49,26.1,1692.92 +8150,10,E06000014,0,52.28,487.72,18.44,1861.69 \ No newline at end of file diff --git a/db/migrate/20230110094518_remove_managing_organisation_id_from_sales_logs.rb b/db/migrate/20230110094518_remove_managing_organisation_id_from_sales_logs.rb new file mode 100644 index 000000000..b2aa71d76 --- /dev/null +++ b/db/migrate/20230110094518_remove_managing_organisation_id_from_sales_logs.rb @@ -0,0 +1,13 @@ +class RemoveManagingOrganisationIdFromSalesLogs < ActiveRecord::Migration[7.0] + def up + change_table :sales_logs, bulk: true do |t| + t.remove :managing_organisation_id + end + end + + def down + change_table :sales_logs, bulk: true do |t| + t.column :managing_organisation_id, :bigint + end + end +end diff --git a/db/migrate/20230118170602_add_extra_borrowing_value_check_to_sales.rb b/db/migrate/20230118170602_add_extra_borrowing_value_check_to_sales.rb new file mode 100644 index 000000000..ce4e79718 --- /dev/null +++ b/db/migrate/20230118170602_add_extra_borrowing_value_check_to_sales.rb @@ -0,0 +1,7 @@ +class AddExtraBorrowingValueCheckToSales < ActiveRecord::Migration[7.0] + def change + change_table :sales_logs, bulk: true do |t| + t.column :extrabor_value_check, :integer + end + end +end diff --git a/db/migrate/20230123160741_add_grant_value_check_to_sales_log.rb b/db/migrate/20230123160741_add_grant_value_check_to_sales_log.rb new file mode 100644 index 000000000..9a9cfb8ea --- /dev/null +++ b/db/migrate/20230123160741_add_grant_value_check_to_sales_log.rb @@ -0,0 +1,5 @@ +class AddGrantValueCheckToSalesLog < ActiveRecord::Migration[7.0] + def change + add_column :sales_logs, :grant_value_check, :integer + end +end diff --git a/db/schema.rb b/db/schema.rb index 1bb8e14a2..8722ec6a4 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -10,7 +10,7 @@ # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema[7.0].define(version: 2023_01_24_111328) do +ActiveRecord::Schema[7.0].define(version: 2023_01_23_160741) do # These are extensions that must be enabled in order to support this database enable_extension "plpgsql" @@ -69,17 +69,6 @@ ActiveRecord::Schema[7.0].define(version: 2023_01_24_111328) do t.index ["start_year", "lettype", "beds", "la"], name: "index_la_rent_ranges_on_start_year_and_lettype_and_beds_and_la", unique: true end - create_table "la_sale_ranges", force: :cascade do |t| - t.string "la" - t.integer "bedrooms" - t.decimal "soft_min", precision: 10, scale: 2 - t.decimal "soft_max", precision: 10, scale: 2 - t.integer "start_year" - t.datetime "created_at", null: false - t.datetime "updated_at", null: false - t.index ["start_year", "bedrooms", "la"], name: "index_la_sale_ranges_on_start_year_bedrooms_la", unique: true - end - create_table "legacy_users", force: :cascade do |t| t.string "old_user_id" t.integer "user_id" @@ -378,7 +367,6 @@ ActiveRecord::Schema[7.0].define(version: 2023_01_24_111328) do t.datetime "created_at", null: false t.datetime "updated_at", null: false t.bigint "owning_organisation_id" - t.bigint "managing_organisation_id" t.bigint "created_by_id" t.string "purchid" t.integer "type" @@ -498,9 +486,9 @@ ActiveRecord::Schema[7.0].define(version: 2023_01_24_111328) do t.integer "hoyear" t.integer "fromprop" t.integer "socprevten" + t.integer "mortlen" t.integer "mortgagelender" t.string "mortgagelenderother" - t.integer "mortlen" t.integer "extrabor" t.integer "hhmemb" t.integer "totadult" @@ -513,11 +501,12 @@ ActiveRecord::Schema[7.0].define(version: 2023_01_24_111328) do t.boolean "is_la_inferred" t.bigint "bulk_upload_id" t.integer "retirement_value_check" + t.integer "deposit_and_mortgage_value_check" + t.integer "grant_value_check" t.integer "hodate_check" - t.integer "value_value_check" + t.integer "extrabor_value_check" t.index ["bulk_upload_id"], name: "index_sales_logs_on_bulk_upload_id" t.index ["created_by_id"], name: "index_sales_logs_on_created_by_id" - t.index ["managing_organisation_id"], name: "index_sales_logs_on_managing_organisation_id" t.index ["owning_organisation_id"], name: "index_sales_logs_on_owning_organisation_id" t.index ["updated_by_id"], name: "index_sales_logs_on_updated_by_id" end diff --git a/db/seeds.rb b/db/seeds.rb index f9c9124b1..592c489c9 100644 --- a/db/seeds.rb +++ b/db/seeds.rb @@ -160,7 +160,7 @@ unless Rails.env.test? saledate: Date.new(1, 1, 1), purchid: "1", ownershipsch: 2, - type: 8, + type: 9, jointpur: 1, jointmore: 1, ) diff --git a/spec/components/log_summary_component_spec.rb b/spec/components/log_summary_component_spec.rb index 78d5a73ad..f8edfb948 100644 --- a/spec/components/log_summary_component_spec.rb +++ b/spec/components/log_summary_component_spec.rb @@ -5,15 +5,16 @@ RSpec.describe LogSummaryComponent, type: :component do let(:coordinator_user) { FactoryBot.create(:user) } let(:propcode) { "P3647" } let(:tenancycode) { "T62863" } - let(:log) { FactoryBot.create(:lettings_log, needstype: 1, startdate: Time.utc(2022, 1, 1), tenancycode:, propcode:) } + let(:lettings_log) { FactoryBot.create(:lettings_log, needstype: 1, startdate: Time.utc(2022, 1, 1), tenancycode:, propcode:) } + let(:sales_log) { FactoryBot.create(:sales_log) } - context "when rendering log for a support user" do + context "when rendering lettings log for a support user" do it "show the log summary with organisational relationships" do - result = render_inline(described_class.new(current_user: support_user, log:)) + result = render_inline(described_class.new(current_user: support_user, log: lettings_log)) - expect(result).to have_link(log.id.to_s) - expect(result).to have_text(log.tenancycode) - expect(result).to have_text(log.propcode) + expect(result).to have_link(lettings_log.id.to_s) + expect(result).to have_text(lettings_log.tenancycode) + expect(result).to have_text(lettings_log.propcode) expect(result).to have_text("General needs") expect(result).to have_text("Tenancy starts 1 January 2022") expect(result).to have_text("Created 8 February 2022") @@ -23,12 +24,30 @@ RSpec.describe LogSummaryComponent, type: :component do end end - context "when rendering log for a data coordinator user" do + context "when rendering lettings log for a data coordinator user" do it "show the log summary" do - result = render_inline(described_class.new(current_user: coordinator_user, log:)) + result = render_inline(described_class.new(current_user: coordinator_user, log: lettings_log)) - expect(result).not_to have_content("Owned by\n DLUHC") - expect(result).not_to have_content("Managed by\n DLUHC") + expect(result).not_to have_content("Owned by") + expect(result).not_to have_content("Managed by") + end + end + + context "when rendering sales log for a support user" do + it "show the log summary with organisational relationships" do + result = render_inline(described_class.new(current_user: support_user, log: sales_log)) + + expect(result).to have_content("Owned by\n DLUHC") + expect(result).not_to have_content("Managed by") + end + end + + context "when rendering sales log for a data coordinator user" do + it "show the log summary" do + result = render_inline(described_class.new(current_user: coordinator_user, log: sales_log)) + + expect(result).not_to have_content("Owned by") + expect(result).not_to have_content("Managed by") end end end diff --git a/spec/factories/sales_log.rb b/spec/factories/sales_log.rb index fb0461d99..f83d102d3 100644 --- a/spec/factories/sales_log.rb +++ b/spec/factories/sales_log.rb @@ -2,7 +2,6 @@ FactoryBot.define do factory :sales_log do created_by { FactoryBot.create(:user) } owning_organisation { created_by.organisation } - managing_organisation { created_by.organisation } created_at { Time.utc(2022, 2, 8, 16, 52, 15) } updated_at { Time.utc(2022, 2, 8, 16, 52, 15) } trait :in_progress do @@ -71,10 +70,10 @@ FactoryBot.define do ecstat5 { 2 } ecstat6 { 1 } disabled { 1 } - deposit { 10_000 } + deposit { 80_000 } cashdis { 1_000 } value { 110_000 } - grant { 1_000 } + grant { 10_000 } proplen { 10 } pregyrha { 1 } pregla { 1 } diff --git a/spec/features/form/check_answers_page_lettings_logs_spec.rb b/spec/features/form/check_answers_page_lettings_logs_spec.rb index f8f0b8064..9062e1abc 100644 --- a/spec/features/form/check_answers_page_lettings_logs_spec.rb +++ b/spec/features/form/check_answers_page_lettings_logs_spec.rb @@ -143,7 +143,7 @@ RSpec.describe "Lettings Log Check Answers Page" do end context "when the user is checking their answers for the household characteristics subsection" do - it "they see a seperate summary card for each member of the household" do + it "they see a separate summary card for each member of the household" do visit("/lettings-logs/#{completed_lettings_log.id}/#{subsection}/check-answers") assert_selector ".x-govuk-summary-card__title", text: "Lead tenant", count: 1 assert_selector ".x-govuk-summary-card__title", text: "Person 2", count: 1 diff --git a/spec/features/form/check_answers_page_sales_logs_spec.rb b/spec/features/form/check_answers_page_sales_logs_spec.rb index 9d1f33d64..2c6dc050d 100644 --- a/spec/features/form/check_answers_page_sales_logs_spec.rb +++ b/spec/features/form/check_answers_page_sales_logs_spec.rb @@ -39,7 +39,7 @@ RSpec.describe "Sales Log Check Answers Page" do context "when the user is checking their answers for the household characteristics subsection" do context "and the log is for a joint purchase" do - it "they see a seperate summary card for each member of the household" do + it "they see a separate summary card for each member of the household" do visit("/sales-logs/#{completed_sales_log_joint_purchase.id}/#{subsection}/check-answers") assert_selector ".x-govuk-summary-card__title", text: "Buyer 1", count: 1 assert_selector ".x-govuk-summary-card__title", text: "Buyer 2", count: 1 @@ -49,7 +49,7 @@ RSpec.describe "Sales Log Check Answers Page" do end context "and the log is for a non-joint purchase" do - it "they see a seperate summary card for each member of the household" do + it "they see a separate summary card for each member of the household" do visit("/sales-logs/#{completed_sales_log_non_joint_purchase.id}/#{subsection}/check-answers") assert_selector ".x-govuk-summary-card__title", text: "Buyer 1", count: 1 assert_selector ".x-govuk-summary-card__title", text: "Buyer 2", count: 0 diff --git a/spec/features/organisation_spec.rb b/spec/features/organisation_spec.rb index 9d2478d9f..bc6aa243a 100644 --- a/spec/features/organisation_spec.rb +++ b/spec/features/organisation_spec.rb @@ -215,7 +215,7 @@ RSpec.describe "User Features" do let(:number_of_sales_logs) { SalesLog.count } before do - FactoryBot.create_list(:sales_log, 4, owning_organisation_id: organisation.id, managing_organisation_id: organisation.id) + FactoryBot.create_list(:sales_log, 4, owning_organisation_id: organisation.id) visit("/organisations/#{org_id}/sales-logs") end diff --git a/spec/helpers/tab_nav_helper_spec.rb b/spec/helpers/tab_nav_helper_spec.rb index b2273aa11..7b4efc5eb 100644 --- a/spec/helpers/tab_nav_helper_spec.rb +++ b/spec/helpers/tab_nav_helper_spec.rb @@ -34,26 +34,4 @@ RSpec.describe TabNavHelper do expect(scheme_cell(scheme)).to match(expected_html) end end - - describe "#tab_items" do - context "when user is a data_coordinator" do - let(:user) { FactoryBot.build(:user, :data_coordinator, organisation:) } - - it "returns details and user tabs" do - result = tab_items(user).map { |i| i[:name] } - expect(result.count).to eq(2) - expect(result.first).to match("Details") - expect(result.second).to match("Users") - end - end - - context "when user is a data_provider" do - it "returns details and user tabs" do - result = tab_items(user).map { |i| i[:name] } - expect(result.count).to eq(2) - expect(result.first).to match("Details") - expect(result.second).to match("Users") - end - end - end end diff --git a/spec/models/form/sales/questions/buyer1_income_known_spec.rb b/spec/models/form/sales/questions/buyer1_income_known_spec.rb index a9d3ed9c8..aafe16c2d 100644 --- a/spec/models/form/sales/questions/buyer1_income_known_spec.rb +++ b/spec/models/form/sales/questions/buyer1_income_known_spec.rb @@ -44,15 +44,6 @@ RSpec.describe Form::Sales::Questions::Buyer1IncomeKnown, type: :model do }) end - it "has the correct guidance_partial" do - expect(question.guidance_partial).to eq("what_counts_as_income_sales") - end - - it "has the correct guidance position", :aggregate_failures do - expect(question.bottom_guidance?).to eq(true) - expect(question.top_guidance?).to eq(false) - end - it "has the correct check_answers_card_number" do expect(question.check_answers_card_number).to eq(1) end diff --git a/spec/models/form/sales/questions/buyer1_income_spec.rb b/spec/models/form/sales/questions/buyer1_income_spec.rb index 978e2d0bb..8482f0558 100644 --- a/spec/models/form/sales/questions/buyer1_income_spec.rb +++ b/spec/models/form/sales/questions/buyer1_income_spec.rb @@ -32,7 +32,7 @@ RSpec.describe Form::Sales::Questions::Buyer1Income, type: :model do end it "has the correct hint" do - expect(question.hint_text).to be_nil + expect(question.hint_text).to eq("Provide the gross annual income (i.e. salary before tax) plus the annual amount of benefits, Universal Credit or pensions, and income from investments.") end it "has correct width" do diff --git a/spec/models/form/sales/questions/buyer2_income_known_spec.rb b/spec/models/form/sales/questions/buyer2_income_known_spec.rb index ead045245..a1be51ad4 100644 --- a/spec/models/form/sales/questions/buyer2_income_known_spec.rb +++ b/spec/models/form/sales/questions/buyer2_income_known_spec.rb @@ -44,15 +44,6 @@ RSpec.describe Form::Sales::Questions::Buyer2IncomeKnown, type: :model do }) end - it "has the correct guidance_partial" do - expect(question.guidance_partial).to eq("what_counts_as_income_sales") - end - - it "has the correct guidance position", :aggregate_failures do - expect(question.bottom_guidance?).to eq(true) - expect(question.top_guidance?).to eq(false) - end - it "has the correct check_answers_card_number" do expect(question.check_answers_card_number).to eq(2) end diff --git a/spec/models/form/sales/questions/buyer2_income_spec.rb b/spec/models/form/sales/questions/buyer2_income_spec.rb index baf97a2f5..2a863f7cb 100644 --- a/spec/models/form/sales/questions/buyer2_income_spec.rb +++ b/spec/models/form/sales/questions/buyer2_income_spec.rb @@ -32,7 +32,7 @@ RSpec.describe Form::Sales::Questions::Buyer2Income, type: :model do end it "has the correct hint" do - expect(question.hint_text).to be_nil + expect(question.hint_text).to eq("Provide the gross annual income (i.e. salary before tax) plus the annual amount of benefits, Universal Credit or pensions, and income from investments.") end it "has correct width" do diff --git a/spec/models/form/sales/questions/mortgage_length_spec.rb b/spec/models/form/sales/questions/mortgage_length_spec.rb index 519289607..e96a05174 100644 --- a/spec/models/form/sales/questions/mortgage_length_spec.rb +++ b/spec/models/form/sales/questions/mortgage_length_spec.rb @@ -32,7 +32,9 @@ RSpec.describe Form::Sales::Questions::MortgageLength, type: :model do end it "has the correct hint" do - expect(question.hint_text).to be_nil + expect(question.hint_text).to eq( + "You should round up to the nearest year. Value should not exceed 60 years.", + ) end it "has correct width" do diff --git a/spec/models/form/sales/questions/number_of_others_in_property_spec.rb b/spec/models/form/sales/questions/number_of_others_in_property_spec.rb index 0742a98b6..81c49770a 100644 --- a/spec/models/form/sales/questions/number_of_others_in_property_spec.rb +++ b/spec/models/form/sales/questions/number_of_others_in_property_spec.rb @@ -16,7 +16,7 @@ RSpec.describe Form::Sales::Questions::NumberOfOthersInProperty, type: :model do end it "has the correct header" do - expect(question.header).to eq("Besides the buyers, how many other people live in the property?") + expect(question.header).to eq("Besides the buyer(s), how many other people live or will live in the property?") end it "has the correct check_answer_label" do diff --git a/spec/models/form/sales/subsections/discounted_ownership_scheme_spec.rb b/spec/models/form/sales/subsections/discounted_ownership_scheme_spec.rb index 632ba85bc..7df741091 100644 --- a/spec/models/form/sales/subsections/discounted_ownership_scheme_spec.rb +++ b/spec/models/form/sales/subsections/discounted_ownership_scheme_spec.rb @@ -16,15 +16,20 @@ RSpec.describe Form::Sales::Subsections::DiscountedOwnershipScheme, type: :model %w[ living_before_purchase_discounted_ownership about_price_rtb + extra_borrowing_price_value_check about_price_not_rtb + grant_value_check purchase_price_discounted_ownership mortgage_used_discounted_ownership mortgage_amount_discounted_ownership + extra_borrowing_mortgage_value_check mortgage_lender_discounted_ownership mortgage_lender_other_discounted_ownership mortgage_length_discounted_ownership extra_borrowing_discounted_ownership + extra_borrowing_value_check about_deposit_discounted_ownership + extra_borrowing_deposit_value_check discounted_ownership_deposit_value_check leasehold_charges_discounted_ownership ], diff --git a/spec/models/form_handler_spec.rb b/spec/models/form_handler_spec.rb index be9733321..f31037f48 100644 --- a/spec/models/form_handler_spec.rb +++ b/spec/models/form_handler_spec.rb @@ -52,14 +52,14 @@ RSpec.describe FormHandler do it "is able to load a current sales form" do form = form_handler.get_form("current_sales") expect(form).to be_a(Form) - expect(form.pages.count).to eq(184) + expect(form.pages.count).to eq(189) expect(form.name).to eq("2022_2023_sales") end it "is able to load a previous sales form" do form = form_handler.get_form("previous_sales") expect(form).to be_a(Form) - expect(form.pages.count).to eq(184) + expect(form.pages.count).to eq(189) expect(form.name).to eq("2021_2022_sales") end end diff --git a/spec/models/lettings_log_spec.rb b/spec/models/lettings_log_spec.rb index 8a4325880..c8cdc466e 100644 --- a/spec/models/lettings_log_spec.rb +++ b/spec/models/lettings_log_spec.rb @@ -2392,12 +2392,6 @@ RSpec.describe LettingsLog do FactoryBot.create(:lettings_log, :completed, owning_organisation: organisation_2, managing_organisation: organisation_2, created_by: nil) end - it "filters by given organisation id" do - expect(described_class.filter_by_organisation([organisation_1.id]).count).to eq(3) - expect(described_class.filter_by_organisation([organisation_1.id, organisation_2.id]).count).to eq(4) - expect(described_class.filter_by_organisation([organisation_3.id]).count).to eq(0) - end - it "filters by given organisation" do expect(described_class.filter_by_organisation([organisation_1]).count).to eq(3) expect(described_class.filter_by_organisation([organisation_1, organisation_2]).count).to eq(4) diff --git a/spec/models/organisation_spec.rb b/spec/models/organisation_spec.rb index 6d402fa80..0b69fd504 100644 --- a/spec/models/organisation_spec.rb +++ b/spec/models/organisation_spec.rb @@ -196,7 +196,7 @@ RSpec.describe Organisation, type: :model do let!(:user) { FactoryBot.create(:user, :support, last_sign_in_at: Time.zone.now, organisation:) } let!(:scheme_to_delete) { FactoryBot.create(:scheme, owning_organisation: user.organisation) } let!(:log_to_delete) { FactoryBot.create(:lettings_log, owning_organisation: user.organisation) } - let!(:sales_log_to_delete) { FactoryBot.create(:sales_log, owning_organisation: user.organisation, managing_organisation: user.organisation) } + let!(:sales_log_to_delete) { FactoryBot.create(:sales_log, owning_organisation: user.organisation) } context "when organisation is deleted" do it "child relationships ie logs, schemes and users are deleted too - application" do diff --git a/spec/models/sales_log_spec.rb b/spec/models/sales_log_spec.rb index 3720dba56..ccfff433f 100644 --- a/spec/models/sales_log_spec.rb +++ b/spec/models/sales_log_spec.rb @@ -93,21 +93,14 @@ RSpec.describe SalesLog, type: :model do let(:organisation_3) { create(:organisation) } before do - create(:sales_log, :in_progress, owning_organisation: organisation_1, managing_organisation: organisation_1) - create(:sales_log, :completed, owning_organisation: organisation_1, managing_organisation: organisation_2) - create(:sales_log, :completed, owning_organisation: organisation_2, managing_organisation: organisation_1) - create(:sales_log, :completed, owning_organisation: organisation_2, managing_organisation: organisation_2) - end - - it "filters by given organisation id" do - expect(described_class.filter_by_organisation([organisation_1.id]).count).to eq(3) - expect(described_class.filter_by_organisation([organisation_1.id, organisation_2.id]).count).to eq(4) - expect(described_class.filter_by_organisation([organisation_3.id]).count).to eq(0) + create(:sales_log, :in_progress, owning_organisation: organisation_1) + create(:sales_log, :completed, owning_organisation: organisation_1) + create(:sales_log, :completed, owning_organisation: organisation_2) end it "filters by given organisation" do - expect(described_class.filter_by_organisation([organisation_1]).count).to eq(3) - expect(described_class.filter_by_organisation([organisation_1, organisation_2]).count).to eq(4) + expect(described_class.filter_by_organisation([organisation_1]).count).to eq(2) + expect(described_class.filter_by_organisation([organisation_1, organisation_2]).count).to eq(3) expect(described_class.filter_by_organisation([organisation_3]).count).to eq(0) end end @@ -165,7 +158,6 @@ RSpec.describe SalesLog, type: :model do FactoryBot.create( :sales_log, :completed, - managing_organisation: owning_organisation, owning_organisation:, created_by: created_by_user, pcodenk: 0, @@ -297,7 +289,6 @@ RSpec.describe SalesLog, type: :model do let!(:address_sales_log) do described_class.create({ - managing_organisation: owning_organisation, owning_organisation:, created_by: created_by_user, ppcodenk: 1, diff --git a/spec/models/validations/sales/sale_information_validations_spec.rb b/spec/models/validations/sales/sale_information_validations_spec.rb index 51bba9dd2..222023cd1 100644 --- a/spec/models/validations/sales/sale_information_validations_spec.rb +++ b/spec/models/validations/sales/sale_information_validations_spec.rb @@ -5,48 +5,6 @@ RSpec.describe Validations::Sales::SaleInformationValidations do let(:validator_class) { Class.new { include Validations::Sales::SaleInformationValidations } } - describe "#validate_deposit_range" do - context "when within permitted bounds" do - let(:record) { build(:sales_log, deposit: 0) } - - it "does not add an error" do - sale_information_validator.validate_deposit_range(record) - - expect(record.errors[:deposit]).not_to be_present - end - end - - context "when blank" do - let(:record) { build(:sales_log, deposit: nil) } - - it "does not add an error" do - sale_information_validator.validate_deposit_range(record) - - expect(record.errors[:deposit]).not_to be_present - end - end - - context "when below lower bound" do - let(:record) { build(:sales_log, deposit: -1) } - - it "adds an error" do - sale_information_validator.validate_deposit_range(record) - - expect(record.errors[:deposit]).to be_present - end - end - - context "when higher than upper bound" do - let(:record) { build(:sales_log, deposit: 1_000_000) } - - it "adds an error" do - sale_information_validator.validate_deposit_range(record) - - expect(record.errors[:deposit]).to be_present - end - end - end - describe "#validate_practical_completion_date_before_exdate" do context "when hodate blank" do let(:record) { build(:sales_log, hodate: nil) } @@ -109,6 +67,82 @@ RSpec.describe Validations::Sales::SaleInformationValidations do end end + describe "#validate_exchange_date" do + context "when exdate blank" do + let(:record) { build(:sales_log, exdate: nil) } + + it "does not add an error" do + sale_information_validator.validate_exchange_date(record) + + expect(record.errors[:exdate]).not_to be_present + end + end + + context "when saledate blank" do + let(:record) { build(:sales_log, saledate: nil) } + + it "does not add an error" do + sale_information_validator.validate_exchange_date(record) + + expect(record.errors[:exdate]).not_to be_present + end + end + + context "when saledate and exdate blank" do + let(:record) { build(:sales_log, exdate: nil, saledate: nil) } + + it "does not add an error" do + sale_information_validator.validate_exchange_date(record) + + expect(record.errors[:exdate]).not_to be_present + end + end + + context "when exdate before saledate" do + let(:record) { build(:sales_log, exdate: 2.months.ago, saledate: 1.month.ago) } + + it "does not add the error" do + sale_information_validator.validate_exchange_date(record) + + expect(record.errors[:exdate]).not_to be_present + end + end + + context "when exdate more than 1 year before saledate" do + let(:record) { build(:sales_log, exdate: 2.years.ago, saledate: 1.month.ago) } + + it "does not add the error" do + sale_information_validator.validate_exchange_date(record) + + expect(record.errors[:exdate]).to eq( + ["Contract exchange date must be less than 1 year before completion date"], + ) + end + end + + context "when exdate after saledate" do + let(:record) { build(:sales_log, exdate: 1.month.ago, saledate: 2.months.ago) } + + it "adds error" do + sale_information_validator.validate_exchange_date(record) + + expect(record.errors[:exdate]).to eq( + ["Contract exchange date must be less than 1 year before completion date"], + ) + end + end + + context "when exdate == saledate" do + let(:record) { build(:sales_log, exdate: Time.zone.parse("2023-07-01"), saledate: Time.zone.parse("2023-07-01")) } + + it "does not add an error" do + sale_information_validator.validate_exchange_date(record) + + expect(record.errors[:exdate]).not_to be_present + end + end + end + describe "#validate_previous_property_unit_type" do context "when number of bedrooms is <= 1" do let(:record) { FactoryBot.build(:sales_log, frombeds: 1, fromprop: 2) } @@ -130,4 +164,211 @@ RSpec.describe Validations::Sales::SaleInformationValidations do end end end + + describe "#validate_years_living_in_property_before_purchase" do + context "when proplen blank" do + let(:record) { build(:sales_log, proplen: nil) } + + it "does not add an error" do + sale_information_validator.validate_years_living_in_property_before_purchase(record) + + expect(record.errors).not_to be_present + end + end + + context "when type blank" do + let(:record) { build(:sales_log, type: nil) } + + it "does not add an error" do + sale_information_validator.validate_years_living_in_property_before_purchase(record) + + expect(record.errors).not_to be_present + end + end + + context "when proplen 0" do + let(:record) { build(:sales_log, proplen: 0) } + + it "does not add an error" do + sale_information_validator.validate_years_living_in_property_before_purchase(record) + + expect(record.errors).not_to be_present + end + end + + context "when type Rent to Buy and proplen > 0" do + let(:record) { build(:sales_log, proplen: 1, type: 28) } + + it "adds an error" do + sale_information_validator.validate_years_living_in_property_before_purchase(record) + + expect(record.errors[:type]).to include(I18n.t("validations.sale_information.proplen.rent_to_buy")) + expect(record.errors[:proplen]).to include(I18n.t("validations.sale_information.proplen.rent_to_buy")) + end + end + + context "when type Social HomeBuy and proplen > 0" do + let(:record) { build(:sales_log, proplen: 1, type: 18) } + + it "adds an error" do + sale_information_validator.validate_years_living_in_property_before_purchase(record) + + expect(record.errors[:type]).to include(I18n.t("validations.sale_information.proplen.social_homebuy")) + expect(record.errors[:proplen]).to include(I18n.t("validations.sale_information.proplen.social_homebuy")) + end + end + end + + describe "#validate_discounted_ownership_value" do + context "when grant is routed to" do + let(:record) { FactoryBot.build(:sales_log, mortgage: 10_000, deposit: 5_000, value: 30_000, ownershipsch: 2, type: 8) } + + context "and not provided" do + before do + record.grant = nil + end + + it "does not add an error" do + sale_information_validator.validate_discounted_ownership_value(record) + + expect(record.errors).to be_empty + end + end + + context "and is provided" do + it "adds an error if mortgage, deposit and grant total does not equal market value" do + record.grant = 3_000 + sale_information_validator.validate_discounted_ownership_value(record) + expect(record.errors[:mortgage]).to include(I18n.t("validations.sale_information.discounted_ownership_value", value_with_discount: "30000.00")) + expect(record.errors[:deposit]).to include(I18n.t("validations.sale_information.discounted_ownership_value", value_with_discount: "30000.00")) + expect(record.errors[:grant]).to include(I18n.t("validations.sale_information.discounted_ownership_value", value_with_discount: "30000.00")) + expect(record.errors[:value]).to include(I18n.t("validations.sale_information.discounted_ownership_value", value_with_discount: "30000.00")) + expect(record.errors[:discount]).to include(I18n.t("validations.sale_information.discounted_ownership_value", value_with_discount: "30000.00")) + end + + it "does not add an error if mortgage, deposit and grant total equals market value" do + record.grant = 15_000 + sale_information_validator.validate_discounted_ownership_value(record) + expect(record.errors).to be_empty + end + end + end + + context "when discount is routed to" do + let(:record) { FactoryBot.build(:sales_log, mortgage: 10_000, deposit: 5_000, value: 30_000, ownershipsch: 2, type: 9) } + + context "and not provided" do + before do + record.discount = nil + end + + it "does not add an error" do + sale_information_validator.validate_discounted_ownership_value(record) + + expect(record.errors).to be_empty + end + end + + context "and is provided" do + it "adds an error if mortgage and deposit total does not equal market value - discount" do + record.discount = 10 + sale_information_validator.validate_discounted_ownership_value(record) + expect(record.errors[:mortgage]).to include(I18n.t("validations.sale_information.discounted_ownership_value", value_with_discount: "27000.00")) + expect(record.errors[:deposit]).to include(I18n.t("validations.sale_information.discounted_ownership_value", value_with_discount: "27000.00")) + expect(record.errors[:grant]).to include(I18n.t("validations.sale_information.discounted_ownership_value", value_with_discount: "27000.00")) + expect(record.errors[:value]).to include(I18n.t("validations.sale_information.discounted_ownership_value", value_with_discount: "27000.00")) + expect(record.errors[:discount]).to include(I18n.t("validations.sale_information.discounted_ownership_value", value_with_discount: "27000.00")) + end + + it "does not add an error if mortgage and deposit total equals market value - discount" do + record.discount = 50 + sale_information_validator.validate_discounted_ownership_value(record) + expect(record.errors).to be_empty + end + end + end + + context "when neither discount nor grant is routed to" do + let(:record) { FactoryBot.build(:sales_log, mortgage: 10_000, value: 30_000, ownershipsch: 2, type: 29) } + + it "adds an error if mortgage and deposit total does not equal market value" do + record.deposit = 2_000 + sale_information_validator.validate_discounted_ownership_value(record) + expect(record.errors[:mortgage]).to include(I18n.t("validations.sale_information.discounted_ownership_value", value_with_discount: "30000.00")) + expect(record.errors[:deposit]).to include(I18n.t("validations.sale_information.discounted_ownership_value", value_with_discount: "30000.00")) + expect(record.errors[:grant]).to include(I18n.t("validations.sale_information.discounted_ownership_value", value_with_discount: "30000.00")) + expect(record.errors[:value]).to include(I18n.t("validations.sale_information.discounted_ownership_value", value_with_discount: "30000.00")) + expect(record.errors[:discount]).to include(I18n.t("validations.sale_information.discounted_ownership_value", value_with_discount: "30000.00")) + end + + it "does not add an error if mortgage and deposit total equals market value" do + record.deposit = 20_000 + sale_information_validator.validate_discounted_ownership_value(record) + expect(record.errors).to be_empty + end + end + + context "when mortgage is routed to" do + let(:record) { FactoryBot.build(:sales_log, mortgageused: 1, deposit: 5_000, grant: 3_000, value: 20_000, discount: 10, ownershipsch: 2) } + + context "and not provided" do + before do + record.mortgage = nil + end + + it "does not add an error" do + sale_information_validator.validate_discounted_ownership_value(record) + + expect(record.errors).to be_empty + end + end + + context "and is provided" do + it "adds an error if mortgage, grant and deposit total does not equal market value - discount" do + record.mortgage = 10 + sale_information_validator.validate_discounted_ownership_value(record) + expect(record.errors[:mortgage]).to include(I18n.t("validations.sale_information.discounted_ownership_value", value_with_discount: "18000.00")) + expect(record.errors[:deposit]).to include(I18n.t("validations.sale_information.discounted_ownership_value", value_with_discount: "18000.00")) + expect(record.errors[:grant]).to include(I18n.t("validations.sale_information.discounted_ownership_value", value_with_discount: "18000.00")) + expect(record.errors[:value]).to include(I18n.t("validations.sale_information.discounted_ownership_value", value_with_discount: "18000.00")) + expect(record.errors[:discount]).to include(I18n.t("validations.sale_information.discounted_ownership_value", value_with_discount: "18000.00")) + end + + it "does not add an error if mortgage, grant and deposit total equals market value - discount" do + record.mortgage = 10_000 + sale_information_validator.validate_discounted_ownership_value(record) + expect(record.errors).to be_empty + end + end + end + + context "when mortgage is not routed to" do + let(:record) { FactoryBot.build(:sales_log, mortgageused: 2, deposit: 5_000, grant: 3_000, value: 20_000, discount: 10, ownershipsch: 2) } + + it "adds an error if grant and deposit total does not equal market value - discount" do + sale_information_validator.validate_discounted_ownership_value(record) + expect(record.errors[:mortgage]).to include(I18n.t("validations.sale_information.discounted_ownership_value", value_with_discount: "18000.00")) + expect(record.errors[:deposit]).to include(I18n.t("validations.sale_information.discounted_ownership_value", value_with_discount: "18000.00")) + expect(record.errors[:grant]).to include(I18n.t("validations.sale_information.discounted_ownership_value", value_with_discount: "18000.00")) + expect(record.errors[:value]).to include(I18n.t("validations.sale_information.discounted_ownership_value", value_with_discount: "18000.00")) + expect(record.errors[:discount]).to include(I18n.t("validations.sale_information.discounted_ownership_value", value_with_discount: "18000.00")) + end + + it "does not add an error if mortgage, grant and deposit total equals market value - discount" do + record.grant = 13_000 + sale_information_validator.validate_discounted_ownership_value(record) + expect(record.errors).to be_empty + end + end + + context "when owhership is not discounted" do + let(:record) { FactoryBot.build(:sales_log, mortgage: 10_000, deposit: 5_000, grant: 3_000, value: 20_000, discount: 10, ownershipsch: 1) } + + it "does not add an error" do + sale_information_validator.validate_discounted_ownership_value(record) + + expect(record.errors).to be_empty + end + end + end end diff --git a/spec/models/validations/sales/soft_validations_spec.rb b/spec/models/validations/sales/soft_validations_spec.rb index a360bd7bf..13cc09125 100644 --- a/spec/models/validations/sales/soft_validations_spec.rb +++ b/spec/models/validations/sales/soft_validations_spec.rb @@ -128,7 +128,7 @@ RSpec.describe Validations::Sales::SoftValidations do .not_to be_mortgage_over_soft_max end - it "returns true if only income1 is used for morgage and it is less than 1/5 of the morgage" do + it "returns true if only income1 is used for mortgage and it is less than 1/5 of the mortgage" do record.inc1mort = 1 record.income1 = 10_000 record.mortgage = 51_000 @@ -137,7 +137,7 @@ RSpec.describe Validations::Sales::SoftValidations do .to be_mortgage_over_soft_max end - it "returns false if only income1 is used for morgage and it is more than 1/5 of the morgage" do + it "returns false if only income1 is used for mortgage and it is more than 1/5 of the mortgage" do record.inc1mort = 1 record.income1 = 10_000 record.mortgage = 44_000 @@ -146,7 +146,7 @@ RSpec.describe Validations::Sales::SoftValidations do .not_to be_mortgage_over_soft_max end - it "returns true if only income2 is used for morgage and it is less than 1/5 of the morgage" do + it "returns true if only income2 is used for mortgage and it is less than 1/5 of the mortgage" do record.inc1mort = 2 record.inc2mort = 1 record.income2 = 10_000 @@ -155,7 +155,7 @@ RSpec.describe Validations::Sales::SoftValidations do .to be_mortgage_over_soft_max end - it "returns false if only income2 is used for morgage and it is more than 1/5 of the morgage" do + it "returns false if only income2 is used for mortgage and it is more than 1/5 of the mortgage" do record.inc1mort = 2 record.inc2mort = 1 record.income2 = 10_000 @@ -164,7 +164,7 @@ RSpec.describe Validations::Sales::SoftValidations do .not_to be_mortgage_over_soft_max end - it "returns true if income1 and income2 are used for morgage and their sum is less than 1/5 of the morgage" do + it "returns true if income1 and income2 are used for mortgage and their sum is less than 1/5 of the mortgage" do record.inc1mort = 1 record.inc2mort = 1 record.income1 = 10_000 @@ -174,7 +174,7 @@ RSpec.describe Validations::Sales::SoftValidations do .to be_mortgage_over_soft_max end - it "returns false if income1 and income2 are used for morgage and their sum is more than 1/5 of the morgage" do + it "returns false if income1 and income2 are used for mortgage and their sum is more than 1/5 of the mortgage" do record.inc1mort = 1 record.inc2mort = 1 record.income1 = 8_000 @@ -184,7 +184,7 @@ RSpec.describe Validations::Sales::SoftValidations do .not_to be_mortgage_over_soft_max end - it "returns true if neither of the incomes are used for morgage and the morgage is more than 0" do + it "returns true if neither of the incomes are used for mortgage and the mortgage is more than 0" do record.inc1mort = 2 record.inc2mort = 2 record.mortgage = 124_000 @@ -192,7 +192,7 @@ RSpec.describe Validations::Sales::SoftValidations do .to be_mortgage_over_soft_max end - it "returns true if neither of the incomes are used for morgage and the morgage is 0" do + it "returns false if neither of the incomes are used for mortgage and the mortgage is 0" do record.inc1mort = 2 record.inc2mort = 2 record.mortgage = 0 @@ -200,6 +200,73 @@ RSpec.describe Validations::Sales::SoftValidations do .not_to be_mortgage_over_soft_max end end + + context "when validating extra borrowing" do + it "returns false if extrabor not present" do + record.mortgage = 50_000 + record.deposit = 40_000 + record.value = 100_000 + record.discount = 11 + expect(record) + .not_to be_extra_borrowing_expected_but_not_reported + end + + it "returns false if mortgage not present" do + record.extrabor = 2 + record.deposit = 40_000 + record.value = 100_000 + record.discount = 11 + expect(record) + .not_to be_extra_borrowing_expected_but_not_reported + end + + it "returns false if deposit not present" do + record.extrabor = 2 + record.mortgage = 50_000 + record.value = 100_000 + record.discount = 11 + expect(record) + .not_to be_extra_borrowing_expected_but_not_reported + end + + it "returns false if value not present" do + record.extrabor = 2 + record.mortgage = 50_000 + record.deposit = 40_000 + record.discount = 11 + expect(record) + .not_to be_extra_borrowing_expected_but_not_reported + end + + it "returns false if discount not present" do + record.extrabor = 2 + record.mortgage = 50_000 + record.deposit = 40_000 + record.value = 100_000 + expect(record) + .not_to be_extra_borrowing_expected_but_not_reported + end + + it "returns false if extra borrowing expected and reported" do + record.extrabor = 1 + record.mortgage = 50_000 + record.deposit = 40_000 + record.value = 100_000 + record.discount = 11 + expect(record) + .not_to be_extra_borrowing_expected_but_not_reported + end + + it "returns true if extra borrowing expected but not reported" do + record.extrabor = 2 + record.mortgage = 50_000 + record.deposit = 40_000 + record.value = 100_000 + record.discount = 11 + expect(record) + .to be_extra_borrowing_expected_but_not_reported + end + end end describe "savings amount validations" do @@ -392,4 +459,24 @@ RSpec.describe Validations::Sales::SoftValidations do expect(record).not_to be_purchase_price_out_of_soft_range end end + + describe "#grant_outside_common_range?" do + it "returns true if grant is below 9000" do + record.grant = 1_000 + + expect(record).to be_grant_outside_common_range + end + + it "returns true if grant is above 16000" do + record.grant = 100_000 + + expect(record).to be_grant_outside_common_range + end + + it "returns false if grant is within expected range" do + record.grant = 10_000 + + expect(record).not_to be_grant_outside_common_range + end + end end diff --git a/spec/requests/lettings_logs_controller_spec.rb b/spec/requests/lettings_logs_controller_spec.rb index dc009a16d..9565f08ec 100644 --- a/spec/requests/lettings_logs_controller_spec.rb +++ b/spec/requests/lettings_logs_controller_spec.rb @@ -458,6 +458,7 @@ RSpec.describe LettingsLogsController, type: :request do it "includes the search on the CSV link" do search_term = "foo" + FactoryBot.create(:lettings_log, created_by: user, owning_organisation: user.organisation, tenancycode: "foo") get "/lettings-logs?search=#{search_term}", headers: headers, params: {} expect(page).to have_link("Download (CSV)", href: "/lettings-logs/csv-download?search=#{search_term}") end diff --git a/spec/requests/organisations_controller_spec.rb b/spec/requests/organisations_controller_spec.rb index ab5dcb6af..004ea538a 100644 --- a/spec/requests/organisations_controller_spec.rb +++ b/spec/requests/organisations_controller_spec.rb @@ -734,8 +734,8 @@ RSpec.describe OrganisationsController, type: :request do let(:number_of_org2_sales_logs) { 4 } before do - FactoryBot.create_list(:sales_log, number_of_org1_sales_logs, owning_organisation_id: organisation.id, managing_organisation_id: organisation.id) - FactoryBot.create_list(:sales_log, number_of_org2_sales_logs, owning_organisation_id: unauthorised_organisation.id, managing_organisation_id: unauthorised_organisation.id) + FactoryBot.create_list(:sales_log, number_of_org1_sales_logs, owning_organisation_id: organisation.id) + FactoryBot.create_list(:sales_log, number_of_org2_sales_logs, owning_organisation_id: unauthorised_organisation.id) get "/organisations/#{organisation.id}/sales-logs", headers:, params: {} end @@ -1141,10 +1141,11 @@ RSpec.describe OrganisationsController, type: :request do context "when they view the logs tab" do before do + FactoryBot.create(:lettings_log, owning_organisation: organisation) get "/organisations/#{organisation.id}/lettings-logs" end - it "has a CSV download button with the correct path" do + it "has a CSV download button with the correct path if at least 1 log exists" do expect(page).to have_link("Download (CSV)", href: "/organisations/#{organisation.id}/logs/csv-download") end @@ -1152,7 +1153,7 @@ RSpec.describe OrganisationsController, type: :request do let(:other_organisation) { FactoryBot.create(:organisation) } before do - FactoryBot.create_list(:lettings_log, 3, owning_organisation: organisation) + FactoryBot.create_list(:lettings_log, 2, owning_organisation: organisation) FactoryBot.create_list(:lettings_log, 2, owning_organisation: other_organisation) end diff --git a/spec/requests/sales_logs_controller_spec.rb b/spec/requests/sales_logs_controller_spec.rb index 65b3f94ef..f8690a71b 100644 --- a/spec/requests/sales_logs_controller_spec.rb +++ b/spec/requests/sales_logs_controller_spec.rb @@ -3,7 +3,6 @@ require "rails_helper" RSpec.describe SalesLogsController, type: :request do let(:user) { FactoryBot.create(:user) } let(:owning_organisation) { user.organisation } - let(:managing_organisation) { owning_organisation } let(:api_username) { "test_user" } let(:api_password) { "test_password" } let(:basic_credentials) do @@ -14,7 +13,6 @@ RSpec.describe SalesLogsController, type: :request do let(:params) do { "owning_organisation_id": owning_organisation.id, - "managing_organisation_id": managing_organisation.id, "created_by_id": user.id, } end @@ -51,7 +49,6 @@ RSpec.describe SalesLogsController, type: :request do it "creates a sales log with the values passed" do json_response = JSON.parse(response.body) expect(json_response["owning_organisation_id"]).to eq(owning_organisation.id) - expect(json_response["managing_organisation_id"]).to eq(managing_organisation.id) expect(json_response["created_by_id"]).to eq(user.id) end @@ -94,14 +91,12 @@ RSpec.describe SalesLogsController, type: :request do FactoryBot.create( :sales_log, owning_organisation: organisation, - managing_organisation: organisation, ) end let!(:unauthorized_sales_log) do FactoryBot.create( :sales_log, owning_organisation: other_organisation, - managing_organisation: other_organisation, ) end @@ -119,7 +114,7 @@ RSpec.describe SalesLogsController, type: :request do it "does have organisation values" do get "/sales-logs", headers: headers, params: {} expect(page).to have_content("Owned by") - expect(page).to have_content("Managed by") + expect(page).not_to have_content("Managed by") end it "shows sales logs for all organisations" do @@ -146,13 +141,11 @@ RSpec.describe SalesLogsController, type: :request do let!(:not_started_sales_log) do FactoryBot.create(:sales_log, owning_organisation: organisation, - managing_organisation: organisation, created_by: user) end let!(:completed_sales_log) do FactoryBot.create(:sales_log, :completed, owning_organisation: organisation_2, - managing_organisation: organisation, created_by: user_2) end @@ -189,14 +182,12 @@ RSpec.describe SalesLogsController, type: :request do let!(:sales_log_2021) do FactoryBot.create(:sales_log, :in_progress, owning_organisation: organisation, - saledate: Time.zone.local(2022, 3, 1), - managing_organisation: organisation) + saledate: Time.zone.local(2022, 3, 1)) end let!(:sales_log_2022) do sales_log = FactoryBot.build(:sales_log, :completed, owning_organisation: organisation, - saledate: Time.zone.local(2022, 12, 1), - managing_organisation: organisation) + saledate: Time.zone.local(2022, 12, 1)) sales_log.save!(validate: false) sales_log end @@ -227,14 +218,12 @@ RSpec.describe SalesLogsController, type: :request do FactoryBot.create(:sales_log, :completed, owning_organisation: organisation, saledate: Time.zone.local(2022, 3, 1), - managing_organisation: organisation, created_by: user) end let!(:sales_log_2022) do FactoryBot.create(:sales_log, owning_organisation: organisation, saledate: Time.zone.local(2022, 12, 1), - managing_organisation: organisation, created_by: user) end @@ -362,7 +351,7 @@ RSpec.describe SalesLogsController, type: :request do context "when there are more than 20 logs" do before do - FactoryBot.create_list(:sales_log, 25, owning_organisation: organisation, managing_organisation: organisation) + FactoryBot.create_list(:sales_log, 25, owning_organisation: organisation) end context "when on the first page" do